亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? pci.c

?? linux下的pci接口驅動程序
?? C
?? 第 1 頁 / 共 4 頁
字號:
		pci_read_config_dword(dev, rom, &sz);		pci_write_config_dword(dev, rom, l);		if (l == 0xffffffff)			l = 0;		if (sz && sz != 0xffffffff) {			res->flags = (l & PCI_ROM_ADDRESS_ENABLE) |			  IORESOURCE_MEM | IORESOURCE_PREFETCH | IORESOURCE_READONLY | IORESOURCE_CACHEABLE;			res->start = l & PCI_ROM_ADDRESS_MASK;			sz = pci_size(sz, PCI_ROM_ADDRESS_MASK);			res->end = res->start + (unsigned long) sz;		}		res->name = dev->name;	}}void __devinit pci_read_bridge_bases(struct pci_bus *child){	struct pci_dev *dev = child->self;	u8 io_base_lo, io_limit_lo;	u16 mem_base_lo, mem_limit_lo;	unsigned long base, limit;	struct resource *res;	int i;	if (!dev)		/* It's a host bus, nothing to read */		return;	for(i=0; i<3; i++)		child->resource[i] = &dev->resource[PCI_BRIDGE_RESOURCES+i];	res = child->resource[0];	pci_read_config_byte(dev, PCI_IO_BASE, &io_base_lo);	pci_read_config_byte(dev, PCI_IO_LIMIT, &io_limit_lo);	base = (io_base_lo & PCI_IO_RANGE_MASK) << 8;	limit = (io_limit_lo & PCI_IO_RANGE_MASK) << 8;	if ((io_base_lo & PCI_IO_RANGE_TYPE_MASK) == PCI_IO_RANGE_TYPE_32) {		u16 io_base_hi, io_limit_hi;		pci_read_config_word(dev, PCI_IO_BASE_UPPER16, &io_base_hi);		pci_read_config_word(dev, PCI_IO_LIMIT_UPPER16, &io_limit_hi);		base |= (io_base_hi << 16);		limit |= (io_limit_hi << 16);	}	if (base && base <= limit) {		res->flags = (io_base_lo & PCI_IO_RANGE_TYPE_MASK) | IORESOURCE_IO;		res->start = base;		res->end = limit + 0xfff;		res->name = child->name;	} else {		/*		 * Ugh. We don't know enough about this bridge. Just assume		 * that it's entirely transparent.		 */		printk(KERN_ERR "Unknown bridge resource %d: assuming transparent\n", 0);		child->resource[0] = child->parent->resource[0];	}	res = child->resource[1];	pci_read_config_word(dev, PCI_MEMORY_BASE, &mem_base_lo);	pci_read_config_word(dev, PCI_MEMORY_LIMIT, &mem_limit_lo);	base = (mem_base_lo & PCI_MEMORY_RANGE_MASK) << 16;	limit = (mem_limit_lo & PCI_MEMORY_RANGE_MASK) << 16;	if (base && base <= limit) {		res->flags = (mem_base_lo & PCI_MEMORY_RANGE_TYPE_MASK) | IORESOURCE_MEM;		res->start = base;		res->end = limit + 0xfffff;		res->name = child->name;	} else {		/* See comment above. Same thing */		printk(KERN_ERR "Unknown bridge resource %d: assuming transparent\n", 1);		child->resource[1] = child->parent->resource[1];	}	res = child->resource[2];	pci_read_config_word(dev, PCI_PREF_MEMORY_BASE, &mem_base_lo);	pci_read_config_word(dev, PCI_PREF_MEMORY_LIMIT, &mem_limit_lo);	base = (mem_base_lo & PCI_PREF_RANGE_MASK) << 16;	limit = (mem_limit_lo & PCI_PREF_RANGE_MASK) << 16;	if ((mem_base_lo & PCI_PREF_RANGE_TYPE_MASK) == PCI_PREF_RANGE_TYPE_64) {		u32 mem_base_hi, mem_limit_hi;		pci_read_config_dword(dev, PCI_PREF_BASE_UPPER32, &mem_base_hi);		pci_read_config_dword(dev, PCI_PREF_LIMIT_UPPER32, &mem_limit_hi);#if BITS_PER_LONG == 64		base |= ((long) mem_base_hi) << 32;		limit |= ((long) mem_limit_hi) << 32;#else		if (mem_base_hi || mem_limit_hi) {			printk(KERN_ERR "PCI: Unable to handle 64-bit address space for %s\n", child->name);			return;		}#endif	}	if (base && base <= limit) {		res->flags = (mem_base_lo & PCI_MEMORY_RANGE_TYPE_MASK) | IORESOURCE_MEM | IORESOURCE_PREFETCH;		res->start = base;		res->end = limit + 0xfffff;		res->name = child->name;	} else {		/* See comments above */		printk(KERN_ERR "Unknown bridge resource %d: assuming transparent\n", 2);		child->resource[2] = child->parent->resource[2];	}}static struct pci_bus * __devinit pci_alloc_bus(void){	struct pci_bus *b;	b = kmalloc(sizeof(*b), GFP_KERNEL);	if (b) {		memset(b, 0, sizeof(*b));		INIT_LIST_HEAD(&b->children);		INIT_LIST_HEAD(&b->devices);	}	return b;}struct pci_bus * __devinit pci_add_new_bus(struct pci_bus *parent, struct pci_dev *dev, int busnr){	struct pci_bus *child;	int i;	/*	 * Allocate a new bus, and inherit stuff from the parent..	 */	child = pci_alloc_bus();	list_add_tail(&child->node, &parent->children);	child->self = dev;	dev->subordinate = child;	child->parent = parent;	child->ops = parent->ops;	child->sysdata = parent->sysdata;	/*	 * Set up the primary, secondary and subordinate	 * bus numbers.	 */	child->number = child->secondary = busnr;	child->primary = parent->secondary;	child->subordinate = 0xff;	/* Set up default resource pointers.. */	for (i = 0; i < 4; i++)		child->resource[i] = &dev->resource[PCI_BRIDGE_RESOURCES+i];	return child;}unsigned int __devinit pci_do_scan_bus(struct pci_bus *bus);/* * If it's a bridge, configure it and scan the bus behind it. * For CardBus bridges, we don't scan behind as the devices will * be handled by the bridge driver itself. * * We need to process bridges in two passes -- first we scan those * already configured by the BIOS and after we are done with all of * them, we proceed to assigning numbers to the remaining buses in * order to avoid overlaps between old and new bus numbers. */static int __devinit pci_scan_bridge(struct pci_bus *bus, struct pci_dev * dev, int max, int pass){	unsigned int buses;	unsigned short cr;	struct pci_bus *child;	int is_cardbus = (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS);	pci_read_config_dword(dev, PCI_PRIMARY_BUS, &buses);	DBG("Scanning behind PCI bridge %s, config %06x, pass %d\n", dev->slot_name, buses & 0xffffff, pass);	if ((buses & 0xffff00) && !pcibios_assign_all_busses()) {		/*		 * Bus already configured by firmware, process it in the first		 * pass and just note the configuration.		 */		if (pass)			return max;		child = pci_add_new_bus(bus, dev, 0);		child->primary = buses & 0xFF;		child->secondary = (buses >> 8) & 0xFF;		child->subordinate = (buses >> 16) & 0xFF;		child->number = child->secondary;		if (!is_cardbus) {			unsigned int cmax = pci_do_scan_bus(child);			if (cmax > max) max = cmax;		} else {			unsigned int cmax = child->subordinate;			if (cmax > max) max = cmax;		}	} else {		/*		 * We need to assign a number to this bus which we always		 * do in the second pass. We also keep all address decoders		 * on the bridge disabled during scanning.  FIXME: Why?		 */		if (!pass)			return max;		pci_read_config_word(dev, PCI_COMMAND, &cr);		pci_write_config_word(dev, PCI_COMMAND, 0x0000);		pci_write_config_word(dev, PCI_STATUS, 0xffff);		child = pci_add_new_bus(bus, dev, ++max);		buses = (buses & 0xff000000)		      | ((unsigned int)(child->primary)     <<  0)		      | ((unsigned int)(child->secondary)   <<  8)		      | ((unsigned int)(child->subordinate) << 16);		/*		 * We need to blast all three values with a single write.		 */		pci_write_config_dword(dev, PCI_PRIMARY_BUS, buses);		if (!is_cardbus) {			/* Now we can scan all subordinate buses... */			max = pci_do_scan_bus(child);		} else {			/*			 * For CardBus bridges, we leave 4 bus numbers			 * as cards with a PCI-to-PCI bridge can be			 * inserted later.			 */			max += 3;		}		/*		 * Set the subordinate bus number to its real value.		 */		child->subordinate = max;		pci_write_config_byte(dev, PCI_SUBORDINATE_BUS, max);		pci_write_config_word(dev, PCI_COMMAND, cr);	}	sprintf(child->name, (is_cardbus ? "PCI CardBus #%02x" : "PCI Bus #%02x"), child->number);	return max;}/* * Read interrupt line and base address registers. * The architecture-dependent code can tweak these, of course. */static void pci_read_irq(struct pci_dev *dev){	unsigned char irq;	pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &irq);	if (irq)		pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &irq);	dev->irq = irq;}/** * pci_setup_device - fill in class and map information of a device * @dev: the device structure to fill * * Initialize the device structure with information about the device's  * vendor,class,memory and IO-space addresses,IRQ lines etc. * Called at initialisation of the PCI subsystem and by CardBus services. * Returns 0 on success and -1 if unknown type of device (not normal, bridge * or CardBus). */int pci_setup_device(struct pci_dev * dev){	u32 class;	sprintf(dev->slot_name, "%02x:%02x.%d", dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn));	sprintf(dev->name, "PCI device %04x:%04x", dev->vendor, dev->device);		pci_read_config_dword(dev, PCI_CLASS_REVISION, &class);	class >>= 8;				    /* upper 3 bytes */	dev->class = class;	class >>= 8;	DBG("Found %02x:%02x [%04x/%04x] %06x %02x\n", dev->bus->number, dev->devfn, dev->vendor, dev->device, class, dev->hdr_type);	/* "Unknown power state" */	dev->current_state = 4;	switch (dev->hdr_type) {		    /* header type */	case PCI_HEADER_TYPE_NORMAL:		    /* standard header */		if (class == PCI_CLASS_BRIDGE_PCI)			goto bad;		pci_read_irq(dev);		pci_read_bases(dev, 6, PCI_ROM_ADDRESS);		pci_read_config_word(dev, PCI_SUBSYSTEM_VENDOR_ID, &dev->subsystem_vendor);		pci_read_config_word(dev, PCI_SUBSYSTEM_ID, &dev->subsystem_device);		break;	case PCI_HEADER_TYPE_BRIDGE:		    /* bridge header */		if (class != PCI_CLASS_BRIDGE_PCI)			goto bad;		pci_read_bases(dev, 2, PCI_ROM_ADDRESS1);		break;	case PCI_HEADER_TYPE_CARDBUS:		    /* CardBus bridge header */		if (class != PCI_CLASS_BRIDGE_CARDBUS)			goto bad;		pci_read_irq(dev);		pci_read_bases(dev, 1, 0);		pci_read_config_word(dev, PCI_CB_SUBSYSTEM_VENDOR_ID, &dev->subsystem_vendor);		pci_read_config_word(dev, PCI_CB_SUBSYSTEM_ID, &dev->subsystem_device);		break;	default:				    /* unknown header */		printk(KERN_ERR "PCI: device %s has unknown header type %02x, ignoring.\n",			dev->slot_name, dev->hdr_type);		return -1;	bad:		printk(KERN_ERR "PCI: %s: class %x doesn't match header type %02x. Ignoring class.\n",		       dev->slot_name, class, dev->hdr_type);		dev->class = PCI_CLASS_NOT_DEFINED;	}	/* We found a fine healthy device, go go go... */	return 0;}/* * Read the config data for a PCI device, sanity-check it * and fill in the dev structure... */struct pci_dev * __devinit pci_scan_device(struct pci_dev *temp){	struct pci_dev *dev;	u32 l;	if (pci_read_config_dword(temp, PCI_VENDOR_ID, &l))		return NULL;	/* some broken boards return 0 or ~0 if a slot is empty: */	if (l == 0xffffffff || l == 0x00000000 || l == 0x0000ffff || l == 0xffff0000)		return NULL;	dev = kmalloc(sizeof(*dev), GFP_KERNEL);	if (!dev)		return NULL;	memcpy(dev, temp, sizeof(*dev));	dev->vendor = l & 0xffff;	dev->device = (l >> 16) & 0xffff;	/* Assume 32-bit PCI; let 64-bit PCI cards (which are far rarer)	   set this higher, assuming the system even supports it.  */	dev->dma_mask = 0xffffffff;	if (pci_setup_device(dev) < 0) {		kfree(dev);		dev = NULL;	}	return dev;}struct pci_dev * __devinit pci_scan_slot(struct pci_dev *temp){	struct pci_bus *bus = temp->bus;	struct pci_dev *dev;	struct pci_dev *first_dev = NULL;	int func = 0;	int is_multi = 0;	u8 hdr_type;	for (func = 0; func < 8; func++, temp->devfn++) {		if (func && !is_multi)		/* not a multi-function device */			continue;		if (pci_read_config_byte(temp, PCI_HEADER_TYPE, &hdr_type))			continue;		temp->hdr_type = hdr_type & 0x7f;		dev = pci_scan_device(temp);		if (!dev)			continue;		pci_name_device(dev);		if (!func) {			is_multi = hdr_type & 0x80;			first_dev = dev;		}		/*		 * Link the device to both the global PCI device chain and		 * the per-bus list of devices.		 */		list_add_tail(&dev->global_list, &pci_devices);		list_add_tail(&dev->bus_list, &bus->devices);		/* Fix up broken headers */		pci_fixup_device(PCI_FIXUP_HEADER, dev);	}	return first_dev;}unsigned int __devinit pci_do_scan_bus(struct pci_bus *bus){	unsigned int devfn, max, pass;	struct list_head *ln;	struct pci_dev *dev, dev0;	DBG("Scanning bus %02x\n", bus->number);	max = bus->secondary;	/* Create a device template */	memset(&dev0, 0, sizeof(dev0));	dev0.bus = bus;	dev0.sysdata = bus->sysdata;	/* Go find them, Rover! */	for (devfn = 0; devfn < 0x100; devfn += 8) {		dev0.devfn = devfn;		pci_scan_slot(&dev0);	}	/*	 * After performing arch-dependent fixup of the bus, look behind	 * all PCI-to-PCI bridges on this bus.	 */	DBG("Fixups for bus %02x\n", bus->number);	pcibios_fixup_bus(bus);	for (pass=0; pass < 2; pass++)		for (ln=bus->devices.next; ln != &bus->devices; ln=ln->next) {			dev = pci_dev_b(ln);			if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE || dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)				max = pci_scan_bridge(bus, dev, max, pass);		}	/*	 * We've scanned the bus and so we know all about what's on	 * the other side of any bridges that may be on this bus plus	 * any devices.	 *	 * Return how far we've got finding sub-buses.	 */	DBG("Bus scan for %02x returning with max=%02x\n", bus->number, max);	return max;}int __devinit pci_bus_exists(const struct list_head *list, int nr){	const struct list_head *l;	for(l=list->next; l != list; l = l->next) {		const struct pci_bus *b = pci_bus_b(l);		if (b->number == nr || pci_bus_exists(&b->children, nr))			return 1;	}	return 0;}struct pci_bus * __devinit pci_alloc_primary_bus(int bus){	struct pci_bus *b;	if (pci_bus_exists(&pci_root_buses, bus)) {		/* If we already got to this bus through a different bridge, ignore it */		DBG("PCI: Bus %02x already known\n", bus);		return NULL;	}	b = pci_alloc_bus();	list_add_tail(&b->node, &pci_root_buses);	b->number = b->secondary = bus;	b->resource[0] = &ioport_resource;	b->resource[1] = &iomem_resource;	return b;}struct pci_bus * __devinit pci_scan_bus(int bus, struct pci_ops *ops, void *sysdata){	struct pci_bus *b = pci_alloc_primary_bus(bus);	if (b) {		b->sysdata = sysdata;		b->ops = ops;		b->subordinate = pci_do_scan_bus(b);	}	return b;}#ifdef CONFIG_PM/* * PCI Power management.. * * This needs to be done centralized, so that we power manage PCI * devices in the right order: we should not shut down PCI bridges * before we've shut down the devices behind them, and we should * not wake up devices before we've woken up the bridge to the * device.. Eh? * * We do not touch devices that don't have a driver that exports * a suspend/resume function. That is just too dangerous. If the default * PCI suspend/resume functions work for a device, the driver can * easily implement them (ie just have a suspend function that calls * the pci_set_power_state() function). */static int pci_pm_save_state_device(struct pci_dev *dev, u32 state){	int error = 0;	if (dev) {		struct pci_driver *driver = dev->driver;		if (driver && driver->save_state) 			error = driver->save_state(dev,state);	}	return error;}static int pci_pm_suspend_device(struct pci_dev *dev, u32 state){	int error = 0;	if (dev) {		struct pci_driver *driver = dev->driver;		if (driver && driver->suspend)			error = driver->suspend(dev,state);	}	return error;}static int pci_pm_resume_device(struct pci_dev *dev){	int error = 0;	if (dev) {		struct pci_driver *driver = dev->driver;		if (driver && driver->resume)			error = driver->resume(dev);	}	return error;}static int pci_pm_save_state_bus(struct pci_bus *bus, u32 state){	struct list_head *list;	int error = 0;	list_for_each(list, &bus->children) {		error = pci_pm_save_state_bus(pci_bus_b(list),state);		if (error) return error;	}	list_for_each(list, &bus->devices) {		error = pci_pm_save_state_device(pci_dev_b(list),state);		if (error) return error;	}	return 0;}static int pci_pm_suspend_bus(struct pci_bus *bus, u32 state){	struct list_head *list;	/* Walk the bus children list */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久国产精麻豆99网站| 日韩—二三区免费观看av| 亚洲一区二区三区影院| 激情综合色丁香一区二区| 91视频一区二区| 久久久综合九色合综国产精品| 亚洲人成7777| 国产精品一二一区| 欧美军同video69gay| 中文在线一区二区| 国产一区在线视频| 欧美一区二区黄| 亚洲综合激情网| 91网站视频在线观看| 国产午夜精品美女毛片视频| 蜜臀av性久久久久蜜臀aⅴ四虎 | 欧美三级电影网| 国产精品免费av| 国产一区二区在线观看免费| 91精品国产色综合久久久蜜香臀| 亚洲欧美日韩国产一区二区三区 | 亚洲电影一级黄| 91网上在线视频| 国产亚洲精品中文字幕| 激情欧美日韩一区二区| 欧美一区二区日韩一区二区| 午夜精品视频一区| 欧美日韩一级黄| 亚洲地区一二三色| 欧美亚洲国产一区在线观看网站| 成人欧美一区二区三区黑人麻豆| 成人丝袜视频网| 欧美国产精品专区| 成人美女视频在线观看| 国产欧美一区二区精品婷婷 | 亚洲自拍偷拍欧美| 欧美亚洲综合久久| 亚洲综合在线电影| 欧美性一二三区| 亚洲电影视频在线| 欧美一区二区三区色| 久久se精品一区精品二区| 日韩精品一区国产麻豆| 国产一区二区三区四| 国产精品人人做人人爽人人添| 成人性生交大片免费看视频在线| 国产精品人成在线观看免费| 91免费版在线| 天堂久久久久va久久久久| 欧美一区二区视频在线观看2020| 裸体健美xxxx欧美裸体表演| 久久先锋资源网| 成人av在线电影| 亚洲日本一区二区| 欧美视频完全免费看| 久久国产精品免费| 欧美国产成人在线| 欧洲激情一区二区| 麻豆一区二区三区| 国产精品久久久久一区二区三区| 91高清视频免费看| 麻豆国产一区二区| 亚洲欧美在线另类| 91精品一区二区三区在线观看| 国产在线国偷精品产拍免费yy| 国产精品欧美经典| 欧美日本一区二区三区| 国产传媒久久文化传媒| 一区二区三区色| 久久综合色天天久久综合图片| 91丝袜国产在线播放| 麻豆精品一二三| 亚洲欧美日韩综合aⅴ视频| 日韩一区二区麻豆国产| av亚洲产国偷v产偷v自拍| 天天色综合成人网| 亚洲国产精品99久久久久久久久| 欧美日韩另类一区| 国产91丝袜在线观看| 三级影片在线观看欧美日韩一区二区 | 91啪在线观看| 国产一区二区在线看| 亚洲国产一二三| 欧美国产精品专区| 日韩欧美一二区| 91久久香蕉国产日韩欧美9色| 韩国女主播成人在线观看| 亚洲色图制服诱惑| 久久综合久久综合九色| 欧美视频一区二区三区在线观看| 国产精品亚洲午夜一区二区三区| 亚洲va在线va天堂| 亚洲日本在线天堂| 日本一区免费视频| 欧美sm美女调教| 欧美日韩五月天| 91色在线porny| 岛国精品在线观看| 国产麻豆精品95视频| 麻豆精品一区二区| 日韩在线一区二区| 亚洲午夜免费视频| 亚洲精品高清视频在线观看| 中文字幕av一区二区三区高| 精品理论电影在线观看 | 成人a区在线观看| 国产一区91精品张津瑜| 精品一区二区在线视频| 日本不卡123| 五月婷婷欧美视频| 亚洲成a人v欧美综合天堂| 亚洲色图另类专区| 中文字幕一区二区三区在线不卡 | 国产精品一区一区| 国产一区美女在线| 国产乱码字幕精品高清av | 亚洲综合在线第一页| 亚洲乱码国产乱码精品精可以看| 中文字幕一区三区| 亚洲欧美日韩国产综合| 亚洲精品老司机| 亚洲一区二区在线观看视频 | 日韩中文欧美在线| 日本中文一区二区三区| 免费日本视频一区| 久久黄色级2电影| 精品一区二区三区日韩| 黄页网站大全一区二区| 国产一区福利在线| 成人av在线电影| 一本大道久久a久久综合婷婷| 日本高清视频一区二区| 精品视频一区二区三区免费| 在线成人av影院| 精品国产免费人成电影在线观看四季| 欧美成人欧美edvon| 国产色爱av资源综合区| 亚洲人成在线观看一区二区| 亚洲图片一区二区| 蜜臀精品一区二区三区在线观看| 久久99精品久久只有精品| 国产成人综合自拍| 色激情天天射综合网| 欧美精品欧美精品系列| 久久久国产精华| 亚洲精品少妇30p| 奇米四色…亚洲| 99在线精品一区二区三区| 欧美日韩精品电影| 久久五月婷婷丁香社区| 亚洲欧美精品午睡沙发| 免费av成人在线| www.性欧美| 欧美一区二区三区视频| 国产精品成人免费在线| 日本美女视频一区二区| 成人免费毛片aaaaa**| 欧美日韩综合不卡| 国产女主播一区| 日韩精品免费专区| 成人精品高清在线| 日韩一区二区不卡| 亚洲女与黑人做爰| 国内精品国产三级国产a久久| 色中色一区二区| 久久久99精品久久| 日韩精品电影在线| 99re这里只有精品首页| 日韩美女主播在线视频一区二区三区 | 欧美精品丝袜中出| 国产精品沙发午睡系列990531| 亚洲国产精品人人做人人爽| 国产成人在线电影| 欧美剧在线免费观看网站 | 91无套直看片红桃| 国产精品网站在线| 成+人+亚洲+综合天堂| 91精品国产高清一区二区三区蜜臀| 国产精品成人一区二区艾草| 久久超碰97人人做人人爱| 欧美专区亚洲专区| 国产精品白丝在线| 国产电影精品久久禁18| 7777精品伊人久久久大香线蕉| 综合久久国产九一剧情麻豆| 国产精品香蕉一区二区三区| 日韩欧美成人激情| 日本亚洲电影天堂| 欧美女孩性生活视频| 亚洲午夜激情av| 欧洲亚洲国产日韩| 亚洲女同一区二区| 91小视频免费看| 亚洲人成在线观看一区二区| 成人aaaa免费全部观看| 国产精品二三区| 91亚洲精品乱码久久久久久蜜桃| 国产精品美女www爽爽爽| 国产一区二区不卡老阿姨| 久久综合久久综合亚洲|