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

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

?? pci-sh7751.c

?? 嵌入式系統設計與實例開發源碼
?? C
字號:
/* *	Low-Level PCI Support for the SH7751 * *  Dustin McIntire (dustin@sensoria.com) *	Derived from arch/i386/kernel/pci-*.c which bore the message: *	(c) 1999--2000 Martin Mares <mj@ucw.cz> *	 *  May be copied or modified under the terms of the GNU General Public *  License.  See linux/COPYING for more information. **/#include <linux/config.h>#include <linux/types.h>#include <linux/kernel.h>#include <linux/init.h>#include <linux/pci.h>#include <linux/sched.h>#include <linux/ioport.h>#include <linux/errno.h>#include <linux/irq.h>#include <asm/machvec.h>#include <asm/io.h>#include <asm/pci-sh7751.h>struct pci_ops *pci_check_direct(void);void pcibios_resource_survey(void);static u8 pcibios_swizzle(struct pci_dev *dev, u8 *pin);static int pcibios_lookup_irq(struct pci_dev *dev, u8 slot, u8 pin);unsigned int pci_probe = PCI_PROBE_BIOS | PCI_PROBE_CONF1;int pcibios_last_bus = -1;struct pci_bus *pci_root_bus;struct pci_ops *pci_root_ops;/* * Direct access to PCI hardware... */#ifdef CONFIG_PCI_DIRECT#define CONFIG_CMD(dev, where) (0x80000000 | (dev->bus->number << 16) | (dev->devfn << 8) | (where & ~3))#define PCI_REG(reg) (SH7751_PCIREG_BASE+reg)/* * Functions for accessing PCI configuration space with type 1 accesses */static int pci_conf1_read_config_byte(struct pci_dev *dev, int where, u8 *value){	u32 word;	unsigned long flags;    /* PCIPDR may only be accessed as 32 bit words,      * so we must do byte alignment by hand      */	save_and_cli(flags);	outl(CONFIG_CMD(dev,where), PCI_REG(SH7751_PCIPAR));	word = inl(PCI_REG(SH7751_PCIPDR));	restore_flags(flags);	switch (where & 0x3) {	    case 3:		    *value = (u8)(word >> 24);			break;		case 2:		    *value = (u8)(word >> 16);			break;		case 1:		    *value = (u8)(word >> 8);			break;		default:		    *value = (u8)word;			break;    }	PCIDBG(4,"pci_conf1_read_config_byte@0x%08x=0x%x\n",	     CONFIG_CMD(dev,where),*value);	return PCIBIOS_SUCCESSFUL;}static int pci_conf1_read_config_word(struct pci_dev *dev, int where, u16 *value){	u32 word;	unsigned long flags;    /* PCIPDR may only be accessed as 32 bit words,      * so we must do word alignment by hand      */	save_and_cli(flags);	outl(CONFIG_CMD(dev,where), PCI_REG(SH7751_PCIPAR));	word = inl(PCI_REG(SH7751_PCIPDR));	restore_flags(flags);	switch (where & 0x3) {	    case 3:		    // This should never happen...			printk(KERN_ERR "PCI BIOS: read_config_word: Illegal u16 alignment");	        return PCIBIOS_BAD_REGISTER_NUMBER;		case 2:		    *value = (u16)(word >> 16);			break;		case 1:		    *value = (u16)(word >> 8);			break;		default:		    *value = (u16)word;			break;    }	PCIDBG(4,"pci_conf1_read_config_word@0x%08x=0x%x\n",	     CONFIG_CMD(dev,where),*value);	return PCIBIOS_SUCCESSFUL;}static int pci_conf1_read_config_dword(struct pci_dev *dev, int where, u32 *value){	unsigned long flags;		save_and_cli(flags);	outl(CONFIG_CMD(dev,where), PCI_REG(SH7751_PCIPAR));	*value = inl(PCI_REG(SH7751_PCIPDR));	restore_flags(flags);	PCIDBG(4,"pci_conf1_read_config_dword@0x%08x=0x%x\n",	     CONFIG_CMD(dev,where),*value);	return PCIBIOS_SUCCESSFUL;    }static int pci_conf1_write_config_byte(struct pci_dev *dev, int where, u8 value){	u32 word;	u32 shift = (where & 3) * 8;	u32 mask = ((1 << 8) - 1) << shift;  // create the byte mask	unsigned long flags;    /* Since SH7751 only does 32bit access we'll have to do a     * read,mask,write operation     */ 	save_and_cli(flags);	outl(CONFIG_CMD(dev,where), PCI_REG(SH7751_PCIPAR));	word = inl(PCI_REG(SH7751_PCIPDR)) ;	word &= ~mask;	word |= value << shift; 	outl(word, PCI_REG(SH7751_PCIPDR));	restore_flags(flags);	PCIDBG(4,"pci_conf1_write_config_byte@0x%08x=0x%x\n",	     CONFIG_CMD(dev,where),word);	return PCIBIOS_SUCCESSFUL;}static int pci_conf1_write_config_word(struct pci_dev *dev, int where, u16 value){	u32 word;	u32 shift = (where & 3) * 8;	u32 mask = ((1 << 16) - 1) << shift;  // create the word mask	unsigned long flags;    /* Since SH7751 only does 32bit access we'll have to do a     * read,mask,write operation.  We'll allow an odd byte offset,	 * though it should be illegal.     */ 	if (shift == 24)	    return PCIBIOS_BAD_REGISTER_NUMBER;	save_and_cli(flags);	outl(CONFIG_CMD(dev,where), PCI_REG(SH7751_PCIPAR));	word = inl(PCI_REG(SH7751_PCIPDR)) ;	word &= ~mask;	word |= value << shift; 	outl(value, PCI_REG(SH7751_PCIPDR));	restore_flags(flags);	PCIDBG(4,"pci_conf1_write_config_word@0x%08x=0x%x\n",	     CONFIG_CMD(dev,where),word);	return PCIBIOS_SUCCESSFUL;}static int pci_conf1_write_config_dword(struct pci_dev *dev, int where, u32 value){	unsigned long flags;	save_and_cli(flags);	outl(CONFIG_CMD(dev,where), PCI_REG(SH7751_PCIPAR));	outl(value, PCI_REG(SH7751_PCIPDR));	restore_flags(flags);	PCIDBG(4,"pci_conf1_write_config_dword@0x%08x=0x%x\n",	     CONFIG_CMD(dev,where),value);	return PCIBIOS_SUCCESSFUL;}#undef CONFIG_CMDstatic struct pci_ops pci_direct_conf1 = {	pci_conf1_read_config_byte,	pci_conf1_read_config_word,	pci_conf1_read_config_dword,	pci_conf1_write_config_byte,	pci_conf1_write_config_word,	pci_conf1_write_config_dword};struct pci_ops * __init pci_check_direct(void){	unsigned int tmp, id;	/* check for SH7751 hardware */	id = (SH7751_DEVICE_ID << 16) | SH7751_VENDOR_ID;	if(inl(SH7751_PCIREG_BASE+SH7751_PCICONF0) != id) {		PCIDBG(2,"PCI: This is not an SH7751\n");		return NULL;	}	/*	 * Check if configuration works.	 */	if (pci_probe & PCI_PROBE_CONF1) {		tmp = inl (PCI_REG(SH7751_PCIPAR));		outl (0x80000000, PCI_REG(SH7751_PCIPAR));		if (inl (PCI_REG(SH7751_PCIPAR)) == 0x80000000) {			outl (tmp, PCI_REG(SH7751_PCIPAR));			printk(KERN_INFO "PCI: Using configuration type 1\n");			request_region(PCI_REG(SH7751_PCIPAR), 8, "PCI conf1");			return &pci_direct_conf1;		}		outl (tmp, PCI_REG(SH7751_PCIPAR));	}	PCIDBG(2,"PCI: pci_check_direct failed\n");	return NULL;}#endif/* * BIOS32 and PCI BIOS handling. *  * The BIOS version of the pci functions is not yet implemented but it is left * in for completeness.  Currently an error will be generated at compile time.  */ #ifdef CONFIG_PCI_BIOS#error PCI BIOS is not yet supported on SH7751#endif /* CONFIG_PCI_BIOS *//***************************************************************************************//* *  Handle bus scanning and fixups .... *//* * Discover remaining PCI buses in case there are peer host bridges. * We use the number of last PCI bus provided by the PCI BIOS. */static void __init pcibios_fixup_peer_bridges(void){	int n;	struct pci_bus bus;	struct pci_dev dev;	u16 l;	if (pcibios_last_bus <= 0 || pcibios_last_bus >= 0xff)		return;	PCIDBG(2,"PCI: Peer bridge fixup\n");	for (n=0; n <= pcibios_last_bus; n++) {		if (pci_bus_exists(&pci_root_buses, n))			continue;		bus.number = n;		bus.ops = pci_root_ops;		dev.bus = &bus;		for(dev.devfn=0; dev.devfn<256; dev.devfn += 8)			if (!pci_read_config_word(&dev, PCI_VENDOR_ID, &l) &&			    l != 0x0000 && l != 0xffff) {				PCIDBG(3,"Found device at %02x:%02x [%04x]\n", n, dev.devfn, l);				printk(KERN_INFO "PCI: Discovered peer bus %02x\n", n);				pci_scan_bus(n, pci_root_ops, NULL);				break;			}	}}static void __init pci_fixup_ide_bases(struct pci_dev *d){	int i;	/*	 * PCI IDE controllers use non-standard I/O port decoding, respect it.	 */	if ((d->class >> 8) != PCI_CLASS_STORAGE_IDE)		return;	PCIDBG(3,"PCI: IDE base address fixup for %s\n", d->slot_name);	for(i=0; i<4; i++) {		struct resource *r = &d->resource[i];		if ((r->start & ~0x80) == 0x374) {			r->start |= 2;			r->end = r->start;		}	}}/* Add future fixups here... */struct pci_fixup pcibios_fixups[] = {	{ PCI_FIXUP_HEADER,	PCI_ANY_ID,	PCI_ANY_ID,	pci_fixup_ide_bases },	{ 0 }};void __init pcibios_fixup_pbus_ranges(struct pci_bus *b,		struct pbus_set_ranges_data *range){	/* No fixups needed */}/* *  Called after each bus is probed, but before its children *  are examined. */void __init pcibios_fixup_bus(struct pci_bus *b){	pci_read_bridge_bases(b);}/* * Initialization. Try all known PCI access methods. Note that we support * using both PCI BIOS and direct access: in such cases, we use I/O ports * to access config space. *  * Note that the platform specific initialization (BSC registers, and memory * space mapping) will be called via the machine vectors (sh_mv.mv_pci_init()) if it * exitst and via the platform defined function pcibios_init_platform().   * See pci_bigsur.c for implementation; *  * The BIOS version of the pci functions is not yet implemented but it is left * in for completeness.  Currently an error will be genereated at compile time.  */void __init pcibios_init(void){	struct pci_ops *bios = NULL;	struct pci_ops *dir = NULL;	PCIDBG(1,"PCI: Starting intialization.\n");#ifdef CONFIG_PCI_BIOS	if ((pci_probe & PCI_PROBE_BIOS) && ((bios = pci_find_bios()))) {		pci_probe |= PCI_BIOS_SORT;		pci_bios_present = 1;	}#endif#ifdef CONFIG_PCI_DIRECT	if (pci_probe & PCI_PROBE_CONF1 )		dir = pci_check_direct();#endif	if (dir) {		pci_root_ops = dir;	    if(!pcibios_init_platform())			PCIDBG(1,"PCI: Initialization failed\n");	    if (sh_mv.mv_init_pci != NULL)            sh_mv.mv_init_pci();	}	else if (bios)		pci_root_ops = bios;	else {		PCIDBG(1,"PCI: No PCI bus detected\n");		return;	}	PCIDBG(1,"PCI: Probing PCI hardware\n");	pci_root_bus = pci_scan_bus(0, pci_root_ops, NULL);	//pci_assign_unassigned_resources();	pci_fixup_irqs(pcibios_swizzle, pcibios_lookup_irq);	pcibios_fixup_peer_bridges();	pcibios_resource_survey();#ifdef CONFIG_PCI_BIOS	if ((pci_probe & PCI_BIOS_SORT) && !(pci_probe & PCI_NO_SORT))		pcibios_sort();#endif}char * __init pcibios_setup(char *str){	if (!strcmp(str, "off")) {		pci_probe = 0;		return NULL;	}#ifdef CONFIG_PCI_BIOS	else if (!strcmp(str, "bios")) {		pci_probe = PCI_PROBE_BIOS;		return NULL;	} else if (!strcmp(str, "nobios")) {		pci_probe &= ~PCI_PROBE_BIOS;		return NULL;	} else if (!strcmp(str, "nosort")) {		pci_probe |= PCI_NO_SORT;		return NULL;	} else if (!strcmp(str, "biosirq")) {		pci_probe |= PCI_BIOS_IRQ_SCAN;		return NULL;	}#endif#ifdef CONFIG_PCI_DIRECT	else if (!strcmp(str, "conf1")) {		pci_probe = PCI_PROBE_CONF1 | PCI_NO_CHECKS;		return NULL;	}#endif	else if (!strcmp(str, "rom")) {		pci_probe |= PCI_ASSIGN_ROMS;		return NULL;	} else if (!strncmp(str, "lastbus=", 8)) {		pcibios_last_bus = simple_strtol(str+8, NULL, 0);		return NULL;	}	return str;}/* *    Allocate the bridge and device resources */static void __init pcibios_allocate_bus_resources(struct list_head *bus_list){	struct list_head *ln;	struct pci_bus *bus;	struct pci_dev *dev;	int idx;	struct resource *r, *pr;		PCIDBG(2,"PCI: pcibios_allocate_bus_reasources called\n" );	/* Depth-First Search on bus tree */	for (ln=bus_list->next; ln != bus_list; ln=ln->next) {		bus = pci_bus_b(ln);		if ((dev = bus->self)) {			for (idx = PCI_BRIDGE_RESOURCES; idx < PCI_NUM_RESOURCES; idx++) {				r = &dev->resource[idx];				if (!r->start)					continue;				pr = pci_find_parent_resource(dev, r);				if (!pr || request_resource(pr, r) < 0)					printk(KERN_ERR "PCI: Cannot allocate resource region %d of bridge %s\n", idx, dev->slot_name);			}		}		pcibios_allocate_bus_resources(&bus->children);	}}static void __init pcibios_allocate_resources(int pass){	struct pci_dev *dev;	int idx, disabled;	u16 command;	struct resource *r, *pr;	PCIDBG(2,"PCI: pcibios_allocate_resources pass %d called\n", pass);	pci_for_each_dev(dev) {		pci_read_config_word(dev, PCI_COMMAND, &command);		for(idx = 0; idx < 6; idx++) {			r = &dev->resource[idx];			if (r->parent)		/* Already allocated */				continue;			if (!r->start)		/* Address not assigned at all */				continue;			if (r->flags & IORESOURCE_IO)				disabled = !(command & PCI_COMMAND_IO);			else				disabled = !(command & PCI_COMMAND_MEMORY);			if (pass == disabled) {				PCIDBG(3,"PCI: Resource %08lx-%08lx (f=%lx, d=%d, p=%d)\n",				    r->start, r->end, r->flags, disabled, pass);				pr = pci_find_parent_resource(dev, r);				if (!pr || request_resource(pr, r) < 0) {					printk(KERN_ERR "PCI: Cannot allocate resource region %d of device %s\n", idx, dev->slot_name);					/* We'll assign a new address later */					r->end -= r->start;					r->start = 0;				}			}		}		if (!pass) {			r = &dev->resource[PCI_ROM_RESOURCE];			if (r->flags & PCI_ROM_ADDRESS_ENABLE) {				/* Turn the ROM off, leave the resource region, but keep it unregistered. */				u32 reg;				PCIDBG(3,"PCI: Switching off ROM of %s\n", dev->slot_name);				r->flags &= ~PCI_ROM_ADDRESS_ENABLE;				pci_read_config_dword(dev, dev->rom_base_reg, &reg);				pci_write_config_dword(dev, dev->rom_base_reg, reg & ~PCI_ROM_ADDRESS_ENABLE);			}		}	}}static void __init pcibios_assign_resources(void){	struct pci_dev *dev;	int idx;	struct resource *r;	PCIDBG(2,"PCI: pcibios_assign_resources called\n");	pci_for_each_dev(dev) {		int class = dev->class >> 8;		/* Don't touch classless devices and host bridges */		if (!class || class == PCI_CLASS_BRIDGE_HOST)			continue;		for(idx=0; idx<6; idx++) {			r = &dev->resource[idx];			/*			 *  Don't touch IDE controllers and I/O ports of video cards!			 */			if ((class == PCI_CLASS_STORAGE_IDE && idx < 4) ||			    (class == PCI_CLASS_DISPLAY_VGA && (r->flags & IORESOURCE_IO)))				continue;			/*			 *  We shall assign a new address to this resource, either because			 *  the BIOS forgot to do so or because we have decided the old			 *  address was unusable for some reason.			 */			if (!r->start && r->end)				pci_assign_resource(dev, idx);		}		if (pci_probe & PCI_ASSIGN_ROMS) {			r = &dev->resource[PCI_ROM_RESOURCE];			r->end -= r->start;			r->start = 0;			if (r->end)				pci_assign_resource(dev, PCI_ROM_RESOURCE);		}	}}void __init pcibios_resource_survey(void){	PCIDBG(1,"PCI: Allocating resources\n");	pcibios_allocate_bus_resources(&pci_root_buses);	pcibios_allocate_resources(0);	pcibios_allocate_resources(1);	pcibios_assign_resources();}/***************************************************************************************//*  * 	IRQ functions  */static u8 __init pcibios_swizzle(struct pci_dev *dev, u8 *pin){	/* no swizzling */	return PCI_SLOT(dev->devfn);}static int pcibios_lookup_irq(struct pci_dev *dev, u8 slot, u8 pin){	int irq = -1;	/* now lookup the actual IRQ on a platform specific basis (pci-'platform'.c) */	irq = pcibios_map_platform_irq(slot,pin);	if( irq < 0 ) {	    PCIDBG(3,"PCI: Error mapping IRQ on device %s\n", dev->name);		return irq;	}		PCIDBG(2,"Setting IRQ for slot %s to %d\n", dev->slot_name, irq);	return irq;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91丝袜呻吟高潮美腿白嫩在线观看| 爽好久久久欧美精品| 成人一区二区三区| 中文一区一区三区高中清不卡| 成人午夜激情视频| 亚洲免费资源在线播放| 91福利国产精品| 日韩电影在线免费观看| 欧美mv日韩mv亚洲| 国产精品一区二区黑丝| 亚洲人成网站色在线观看| 在线观看视频一区二区欧美日韩| 偷偷要91色婷婷| 国产女主播视频一区二区| 99视频一区二区| 香蕉成人啪国产精品视频综合网| 欧美大白屁股肥臀xxxxxx| 国产99久久久国产精品 | 国产欧美日韩精品在线| 91香蕉视频污| 经典三级视频一区| 亚洲欧美综合网| 91精品国产综合久久久久| 国产成人在线观看| 亚洲图片欧美视频| 久久综合资源网| 欧美三级日韩在线| 国产精品欧美久久久久一区二区| 国产曰批免费观看久久久| 亚洲精品久久久蜜桃| 26uuu色噜噜精品一区二区| 色成人在线视频| 久久99蜜桃精品| 亚洲黄色片在线观看| 精品欧美乱码久久久久久 | 北岛玲一区二区三区四区| 亚洲国产日产av| 国产精品午夜在线| 欧美一区二区三区精品| 99久久精品免费| 韩国精品久久久| 婷婷开心激情综合| 一区视频在线播放| 国产亚洲精品bt天堂精选| 欧美乱妇一区二区三区不卡视频| 粉嫩av一区二区三区粉嫩| 麻豆精品国产传媒mv男同| 亚洲精品成人少妇| 中文在线免费一区三区高中清不卡| 日韩视频在线你懂得| 欧美日韩中字一区| 91在线精品一区二区三区| 国产高清不卡一区| 国产一区久久久| 麻豆91免费观看| 日韩精品欧美成人高清一区二区| 亚洲日本乱码在线观看| 国产欧美一区二区精品性色| 精品国产乱子伦一区| 欧美一二三在线| 91精品在线观看入口| 欧美精品视频www在线观看 | 成人综合婷婷国产精品久久免费| 美女一区二区三区在线观看| 天天综合日日夜夜精品| 午夜精品免费在线| 亚洲制服欧美中文字幕中文字幕| 综合在线观看色| 中文字幕在线不卡视频| 国产精品女人毛片| 国产精品久久久久久亚洲伦| 国产欧美一区二区三区在线老狼| 久久日韩精品一区二区五区| 精品国产第一区二区三区观看体验| 欧美浪妇xxxx高跟鞋交| 欧美三级电影网站| 欧美精品九九99久久| 欧美精品三级在线观看| 91精品国产手机| 精品sm在线观看| 久久久久久久久97黄色工厂| 日本一区二区成人| 国产精品久久毛片a| 亚洲男人的天堂在线aⅴ视频| 国产精品灌醉下药二区| 亚洲免费三区一区二区| 亚洲国产视频一区| 中文字幕成人av| 亚洲综合一区二区精品导航| 日本中文在线一区| 日日夜夜精品视频天天综合网| 偷拍日韩校园综合在线| 久久精品999| 成人晚上爱看视频| 色婷婷综合久久久久中文一区二区 | 国产成人免费在线视频| 99久久国产综合精品色伊| 在线精品视频一区二区| 91麻豆精品国产91久久久| 精品播放一区二区| 亚洲天堂网中文字| 天天av天天翘天天综合网色鬼国产| 蜜臀va亚洲va欧美va天堂| 国产成人精品午夜视频免费 | 久久er99精品| 97se狠狠狠综合亚洲狠狠| 91精品国产综合久久久久久久久久 | 国产午夜精品一区二区三区嫩草| 中文字幕中文字幕中文字幕亚洲无线| 日韩一区日韩二区| 婷婷开心激情综合| 成人午夜精品在线| 欧美精品高清视频| 中文字幕av一区二区三区| 五月婷婷激情综合网| 国产成人一区在线| 欧美日韩国产精品自在自线| 久久久99精品免费观看不卡| 中文字幕日韩一区| 色综合久久久久网| 国产精品动漫网站| 国产伦精品一区二区三区免费迷| 99国产精品久久久久| 欧美一区二区三区日韩视频| 国产精品久久久一本精品| 性欧美疯狂xxxxbbbb| 成人福利视频在线| 91精品国产综合久久久久久久| 国产精品久久久久久久第一福利| 男女激情视频一区| 欧美在线高清视频| 国产精品久久久久三级| 久久99精品久久久久| 欧美日韩专区在线| 亚洲人成精品久久久久久| 国产成人自拍在线| 精品国产免费久久| 日韩精品免费专区| 在线免费观看日本一区| 国产精品成人免费 | 极品瑜伽女神91| 欧美日韩一区二区三区四区五区| 国产精品美女久久久久久久| 秋霞午夜av一区二区三区| 欧美亚洲愉拍一区二区| 国产精品美女www爽爽爽| 亚洲色图在线播放| 免费高清在线视频一区·| 国产乱码一区二区三区| 在线播放亚洲一区| 亚洲国产乱码最新视频| av网站免费线看精品| 国产欧美日本一区视频| 国产麻豆精品在线| 精品乱人伦小说| 免费看日韩a级影片| 宅男在线国产精品| 日韩电影在线免费观看| 7777精品伊人久久久大香线蕉完整版| 亚洲精品免费在线观看| 色噜噜夜夜夜综合网| 亚洲女同女同女同女同女同69| 成人免费高清视频在线观看| 中文字幕免费不卡在线| 成人网在线播放| 1024亚洲合集| 色综合激情五月| 亚洲精品写真福利| 在线观看视频一区二区欧美日韩| 亚洲综合精品自拍| 欧美精品v国产精品v日韩精品 | 亚洲h动漫在线| 欧美日韩1234| 裸体歌舞表演一区二区| 26uuu精品一区二区三区四区在线| 精品一区二区三区的国产在线播放| 日韩欧美黄色影院| 国内精品写真在线观看| 中文字幕国产一区二区| 91啦中文在线观看| 亚洲成人tv网| 欧美成人激情免费网| 国产一区二区主播在线| 国产精品毛片a∨一区二区三区 | 在线区一区二视频| 天天综合日日夜夜精品| 亚洲精品在线网站| 成人黄色777网| 亚洲影院在线观看| 欧美一级在线观看| 成人一区二区三区视频| 夜夜嗨av一区二区三区中文字幕| 3d成人h动漫网站入口| 久久久久综合网| 久久免费看少妇高潮| 欧美精品一区二区久久婷婷| 久久66热偷产精品| 欧美一区二区视频在线观看| 九九久久精品视频| 亚洲欧洲成人自拍|