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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? pci-sh7751.c

?? 這個(gè)linux源代碼是很全面的~基本完整了~使用c編譯的~由于時(shí)間問題我沒有親自測試~但就算用來做參考資料也是非常好的
?? 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;}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
麻豆视频一区二区| 亚洲另类一区二区| 精品影视av免费| www日韩大片| 成人一区二区三区在线观看| 欧美韩国一区二区| 色综合久久久久网| 亚洲bt欧美bt精品| 日韩一区二区精品| 国产91高潮流白浆在线麻豆| 亚洲欧洲日韩在线| 欧美日韩一级二级| 国模大尺度一区二区三区| 久久久噜噜噜久噜久久综合| 91伊人久久大香线蕉| 亚洲成a人在线观看| 日韩精品一区二区在线观看| 盗摄精品av一区二区三区| 亚洲少妇最新在线视频| 在线播放一区二区三区| 国产福利一区二区三区在线视频| 国产精品欧美一级免费| 欧美日韩精品电影| 国产精品一区二区三区四区| 亚洲卡通动漫在线| 日韩一区二区三区视频| 成人av在线资源网| 日韩中文欧美在线| 亚洲国产精品99久久久久久久久| 在线免费观看一区| 韩国精品在线观看| 亚洲一区免费在线观看| 久久久久九九视频| 欧美日韩性生活| 成人av电影免费在线播放| 日韩电影网1区2区| **性色生活片久久毛片| 日韩欧美国产wwwww| 91同城在线观看| 精品综合免费视频观看| 一二三四社区欧美黄| 久久亚洲影视婷婷| 欧美日韩视频在线观看一区二区三区 | 亚洲超碰精品一区二区| 精品国产91乱码一区二区三区| 91视频com| 国产精品一区免费视频| 婷婷国产在线综合| 亚洲色图20p| 久久久99久久| 日韩欧美美女一区二区三区| 91久久奴性调教| 成人理论电影网| 国产一区二区三区日韩| 秋霞成人午夜伦在线观看| 亚洲一区二区视频| 国产精品美女视频| 国产欧美精品一区二区三区四区| 日韩欧美一级二级三级| 欧美日本精品一区二区三区| 色婷婷综合激情| 99综合影院在线| 大尺度一区二区| 国产福利不卡视频| 国产一区二区三区在线观看精品 | 国产亚洲欧洲一区高清在线观看| 欧美日韩视频在线第一区 | 国产酒店精品激情| 老司机精品视频一区二区三区| 一级女性全黄久久生活片免费| 中文字幕日韩av资源站| 欧美激情自拍偷拍| 欧美国产欧美亚州国产日韩mv天天看完整| 日韩欧美中文一区| 欧美本精品男人aⅴ天堂| 欧美一区二区精品久久911| 欧美肥妇bbw| 欧美高清视频在线高清观看mv色露露十八 | 欧美人伦禁忌dvd放荡欲情| 欧美在线观看视频在线| 欧美丝袜自拍制服另类| 欧美午夜一区二区三区免费大片| 在线一区二区三区| 欧美四级电影网| 91麻豆精品91久久久久久清纯| 欧美午夜电影一区| 欧美视频在线播放| 宅男在线国产精品| 精品美女一区二区三区| 久久色在线视频| 国产调教视频一区| 国产精品久久久久一区二区三区 | 奇米影视在线99精品| 免费看欧美女人艹b| 久久97超碰色| 国产ts人妖一区二区| 91在线国内视频| 欧美午夜精品一区二区三区| 91精品国产aⅴ一区二区| 日韩精品一区二区三区在线播放| 精品国产一区二区精华| 国产精品欧美久久久久无广告| 亚洲视频在线一区| 日韩va欧美va亚洲va久久| 国产在线一区二区| 99久久精品久久久久久清纯| 欧美撒尿777hd撒尿| 精品美女一区二区| 亚洲视频一区二区在线| 婷婷中文字幕综合| 国产一区999| 欧美三级一区二区| 久久久久综合网| 亚洲第四色夜色| 国产精品一卡二卡在线观看| 99久久久精品| 欧美一区二区不卡视频| 国产精品久久久久久久久久久免费看 | xfplay精品久久| 亚洲精选一二三| 狠狠狠色丁香婷婷综合激情| 91污在线观看| 精品精品国产高清a毛片牛牛| 综合分类小说区另类春色亚洲小说欧美 | 日韩女优视频免费观看| 亚洲欧洲日韩一区二区三区| 首页欧美精品中文字幕| 成人av资源站| 日韩一区二区三区观看| 中文字幕一区二区不卡| 久久国产欧美日韩精品| 色欧美片视频在线观看在线视频| 欧美一区二区三区在线| 亚洲女厕所小便bbb| 国产在线精品一区二区| 欧美日韩一级片在线观看| 国产精品视频看| 久久精品国产亚洲高清剧情介绍| 一本到不卡精品视频在线观看| 精品国产一二三| 天天综合网天天综合色| 成人免费三级在线| 亚洲精品在线网站| 五月天亚洲婷婷| 色网综合在线观看| 日本一区二区电影| 国产美女主播视频一区| 欧美日韩不卡在线| 亚洲精品国久久99热| 成人免费黄色在线| 久久综合五月天婷婷伊人| 青青草国产精品亚洲专区无| 欧美在线观看视频在线| 一区二区三区中文在线观看| 成人av资源下载| 国产精品美女一区二区| 国产精品乡下勾搭老头1| 日韩一二三四区| 日本大胆欧美人术艺术动态| 欧美怡红院视频| 亚洲综合男人的天堂| 在线观看亚洲精品视频| 亚洲狼人国产精品| 91在线一区二区三区| 中文字幕字幕中文在线中不卡视频| 国产精品一区二区三区99 | 久久久蜜桃精品| 91精品国产91综合久久蜜臀| 亚洲成人午夜影院| 欧美午夜精品久久久久久孕妇 | 日本一区二区三级电影在线观看 | 亚洲成人一区二区| 欧美日韩国产综合一区二区 | 人人超碰91尤物精品国产| 欧洲视频一区二区| 亚洲综合另类小说| 欧美嫩在线观看| 日韩国产欧美在线播放| 日韩精品一区二区三区在线播放| 日韩国产欧美在线视频| 日韩欧美一区二区免费| 国产麻豆91精品| 综合电影一区二区三区| 日本道精品一区二区三区| 亚洲第一久久影院| 日韩欧美综合一区| 国产精品456露脸| 亚洲欧美激情一区二区| 欧美性猛片xxxx免费看久爱| 日本麻豆一区二区三区视频| 26uuu国产电影一区二区| 99在线精品视频| 亚洲国产成人高清精品| 精品国产乱码久久久久久牛牛| 国产精品一区在线观看你懂的| 亚洲色图欧洲色图婷婷| 欧美丰满一区二区免费视频| 国产美女在线观看一区| 亚洲黄色小视频| 日韩精品一区国产麻豆|