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

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

?? cfi_cmdset_0001.c

?? 根據fs2410移植過后的mtd驅動源碼
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* * Common Flash Interface support: *   Intel Extended Vendor Command Set (ID 0x0001) * * (C) 2000 Red Hat. GPL'd * * $Id: cfi_cmdset_0001.c,v 1.186 2005/11/23 22:07:52 nico Exp $ * * * 10/10/2000	Nicolas Pitre <nico@cam.org> * 	- completely revamped method functions so they are aware and * 	  independent of the flash geometry (buswidth, interleave, etc.) * 	- scalability vs code size is completely set at compile-time * 	  (see include/linux/mtd/cfi.h for selection) *	- optimized write buffer method * 02/05/2002	Christopher Hoover <ch@hpl.hp.com>/<ch@murgatroid.com> *	- reworked lock/unlock/erase support for var size flash */#include <linux/module.h>#include <linux/types.h>#include <linux/kernel.h>#include <linux/sched.h>#include <linux/init.h>#include <asm/io.h>#include <asm/byteorder.h>#include <linux/errno.h>#include <linux/slab.h>#include <linux/delay.h>#include <linux/interrupt.h>#include <linux/reboot.h>#include <linux/mtd/xip.h>#include <linux/mtd/map.h>#include <linux/mtd/mtd.h>#include <linux/mtd/compatmac.h>#include <linux/mtd/cfi.h>/* #define CMDSET0001_DISABLE_ERASE_SUSPEND_ON_WRITE *//* #define CMDSET0001_DISABLE_WRITE_SUSPEND */// debugging, turns off buffer write mode if set to 1#define FORCE_WORD_WRITE 0#define MANUFACTURER_INTEL	0x0089#define I82802AB	0x00ad#define I82802AC	0x00ac#define MANUFACTURER_ST         0x0020#define M50LPW080       0x002Fstatic int cfi_intelext_read (struct mtd_info *, loff_t, size_t, size_t *, u_char *);static int cfi_intelext_write_words(struct mtd_info *, loff_t, size_t, size_t *, const u_char *);static int cfi_intelext_write_buffers(struct mtd_info *, loff_t, size_t, size_t *, const u_char *);static int cfi_intelext_writev(struct mtd_info *, const struct kvec *, unsigned long, loff_t, size_t *);static int cfi_intelext_erase_varsize(struct mtd_info *, struct erase_info *);static void cfi_intelext_sync (struct mtd_info *);static int cfi_intelext_lock(struct mtd_info *mtd, loff_t ofs, size_t len);static int cfi_intelext_unlock(struct mtd_info *mtd, loff_t ofs, size_t len);#ifdef CONFIG_MTD_OTPstatic int cfi_intelext_read_fact_prot_reg (struct mtd_info *, loff_t, size_t, size_t *, u_char *);static int cfi_intelext_read_user_prot_reg (struct mtd_info *, loff_t, size_t, size_t *, u_char *);static int cfi_intelext_write_user_prot_reg (struct mtd_info *, loff_t, size_t, size_t *, u_char *);static int cfi_intelext_lock_user_prot_reg (struct mtd_info *, loff_t, size_t);static int cfi_intelext_get_fact_prot_info (struct mtd_info *,					    struct otp_info *, size_t);static int cfi_intelext_get_user_prot_info (struct mtd_info *,					    struct otp_info *, size_t);#endifstatic int cfi_intelext_suspend (struct mtd_info *);static void cfi_intelext_resume (struct mtd_info *);static int cfi_intelext_reboot (struct notifier_block *, unsigned long, void *);static void cfi_intelext_destroy(struct mtd_info *);struct mtd_info *cfi_cmdset_0001(struct map_info *, int);static struct mtd_info *cfi_intelext_setup (struct mtd_info *);static int cfi_intelext_partition_fixup(struct mtd_info *, struct cfi_private **);static int cfi_intelext_point (struct mtd_info *mtd, loff_t from, size_t len,		     size_t *retlen, u_char **mtdbuf);static void cfi_intelext_unpoint (struct mtd_info *mtd, u_char *addr, loff_t from,			size_t len);static int get_chip(struct map_info *map, struct flchip *chip, unsigned long adr, int mode);static void put_chip(struct map_info *map, struct flchip *chip, unsigned long adr);#include "fwh_lock.h"/* *  *********** SETUP AND PROBE BITS  *********** */static struct mtd_chip_driver cfi_intelext_chipdrv = {	.probe		= NULL, /* Not usable directly */	.destroy	= cfi_intelext_destroy,	.name		= "cfi_cmdset_0001",	.module		= THIS_MODULE};/* #define DEBUG_LOCK_BITS *//* #define DEBUG_CFI_FEATURES */#ifdef DEBUG_CFI_FEATURESstatic void cfi_tell_features(struct cfi_pri_intelext *extp){	int i;	printk("  Extended Query version %c.%c\n", extp->MajorVersion, extp->MinorVersion);	printk("  Feature/Command Support:      %4.4X\n", extp->FeatureSupport);	printk("     - Chip Erase:              %s\n", extp->FeatureSupport&1?"supported":"unsupported");	printk("     - Suspend Erase:           %s\n", extp->FeatureSupport&2?"supported":"unsupported");	printk("     - Suspend Program:         %s\n", extp->FeatureSupport&4?"supported":"unsupported");	printk("     - Legacy Lock/Unlock:      %s\n", extp->FeatureSupport&8?"supported":"unsupported");	printk("     - Queued Erase:            %s\n", extp->FeatureSupport&16?"supported":"unsupported");	printk("     - Instant block lock:      %s\n", extp->FeatureSupport&32?"supported":"unsupported");	printk("     - Protection Bits:         %s\n", extp->FeatureSupport&64?"supported":"unsupported");	printk("     - Page-mode read:          %s\n", extp->FeatureSupport&128?"supported":"unsupported");	printk("     - Synchronous read:        %s\n", extp->FeatureSupport&256?"supported":"unsupported");	printk("     - Simultaneous operations: %s\n", extp->FeatureSupport&512?"supported":"unsupported");	printk("     - Extended Flash Array:    %s\n", extp->FeatureSupport&1024?"supported":"unsupported");	for (i=11; i<32; i++) {		if (extp->FeatureSupport & (1<<i))			printk("     - Unknown Bit %X:      supported\n", i);	}	printk("  Supported functions after Suspend: %2.2X\n", extp->SuspendCmdSupport);	printk("     - Program after Erase Suspend: %s\n", extp->SuspendCmdSupport&1?"supported":"unsupported");	for (i=1; i<8; i++) {		if (extp->SuspendCmdSupport & (1<<i))			printk("     - Unknown Bit %X:               supported\n", i);	}	printk("  Block Status Register Mask: %4.4X\n", extp->BlkStatusRegMask);	printk("     - Lock Bit Active:      %s\n", extp->BlkStatusRegMask&1?"yes":"no");	printk("     - Lock-Down Bit Active: %s\n", extp->BlkStatusRegMask&2?"yes":"no");	for (i=2; i<3; i++) {		if (extp->BlkStatusRegMask & (1<<i))			printk("     - Unknown Bit %X Active: yes\n",i);	}	printk("     - EFA Lock Bit:         %s\n", extp->BlkStatusRegMask&16?"yes":"no");	printk("     - EFA Lock-Down Bit:    %s\n", extp->BlkStatusRegMask&32?"yes":"no");	for (i=6; i<16; i++) {		if (extp->BlkStatusRegMask & (1<<i))			printk("     - Unknown Bit %X Active: yes\n",i);	}	printk("  Vcc Logic Supply Optimum Program/Erase Voltage: %d.%d V\n",	       extp->VccOptimal >> 4, extp->VccOptimal & 0xf);	if (extp->VppOptimal)		printk("  Vpp Programming Supply Optimum Program/Erase Voltage: %d.%d V\n",		       extp->VppOptimal >> 4, extp->VppOptimal & 0xf);}#endif#ifdef CMDSET0001_DISABLE_ERASE_SUSPEND_ON_WRITE/* Some Intel Strata Flash prior to FPO revision C has bugs in this area */static void fixup_intel_strataflash(struct mtd_info *mtd, void* param){	struct map_info *map = mtd->priv;	struct cfi_private *cfi = map->fldrv_priv;	struct cfi_pri_amdstd *extp = cfi->cmdset_priv;	printk(KERN_WARNING "cfi_cmdset_0001: Suspend "	                    "erase on write disabled.\n");	extp->SuspendCmdSupport &= ~1;}#endif#ifdef CMDSET0001_DISABLE_WRITE_SUSPENDstatic void fixup_no_write_suspend(struct mtd_info *mtd, void* param){	struct map_info *map = mtd->priv;	struct cfi_private *cfi = map->fldrv_priv;	struct cfi_pri_intelext *cfip = cfi->cmdset_priv;	if (cfip && (cfip->FeatureSupport&4)) {		cfip->FeatureSupport &= ~4;		printk(KERN_WARNING "cfi_cmdset_0001: write suspend disabled\n");	}}#endifstatic void fixup_st_m28w320ct(struct mtd_info *mtd, void* param){	struct map_info *map = mtd->priv;	struct cfi_private *cfi = map->fldrv_priv;	cfi->cfiq->BufWriteTimeoutTyp = 0;	/* Not supported */	cfi->cfiq->BufWriteTimeoutMax = 0;	/* Not supported */}static void fixup_st_m28w320cb(struct mtd_info *mtd, void* param){	struct map_info *map = mtd->priv;	struct cfi_private *cfi = map->fldrv_priv;	/* Note this is done after the region info is endian swapped */	cfi->cfiq->EraseRegionInfo[1] =		(cfi->cfiq->EraseRegionInfo[1] & 0xffff0000) | 0x3e;};static void fixup_use_point(struct mtd_info *mtd, void *param){	struct map_info *map = mtd->priv;	if (!mtd->point && map_is_linear(map)) {		mtd->point   = cfi_intelext_point;		mtd->unpoint = cfi_intelext_unpoint;	}}static void fixup_use_write_buffers(struct mtd_info *mtd, void *param){	struct map_info *map = mtd->priv;	struct cfi_private *cfi = map->fldrv_priv;	if (cfi->cfiq->BufWriteTimeoutTyp) {		printk(KERN_INFO "Using buffer write method\n" );		mtd->write = cfi_intelext_write_buffers;		mtd->writev = cfi_intelext_writev;	}}static struct cfi_fixup cfi_fixup_table[] = {#ifdef CMDSET0001_DISABLE_ERASE_SUSPEND_ON_WRITE	{ CFI_MFR_ANY, CFI_ID_ANY, fixup_intel_strataflash, NULL },#endif#ifdef CMDSET0001_DISABLE_WRITE_SUSPEND	{ CFI_MFR_ANY, CFI_ID_ANY, fixup_no_write_suspend, NULL },#endif#if !FORCE_WORD_WRITE	{ CFI_MFR_ANY, CFI_ID_ANY, fixup_use_write_buffers, NULL },#endif	{ CFI_MFR_ST, 0x00ba, /* M28W320CT */ fixup_st_m28w320ct, NULL },	{ CFI_MFR_ST, 0x00bb, /* M28W320CB */ fixup_st_m28w320cb, NULL },	{ 0, 0, NULL, NULL }};static struct cfi_fixup jedec_fixup_table[] = {	{ MANUFACTURER_INTEL, I82802AB,   fixup_use_fwh_lock, NULL, },	{ MANUFACTURER_INTEL, I82802AC,   fixup_use_fwh_lock, NULL, },	{ MANUFACTURER_ST,    M50LPW080,  fixup_use_fwh_lock, NULL, },	{ 0, 0, NULL, NULL }};static struct cfi_fixup fixup_table[] = {	/* The CFI vendor ids and the JEDEC vendor IDs appear	 * to be common.  It is like the devices id's are as	 * well.  This table is to pick all cases where	 * we know that is the case.	 */	{ CFI_MFR_ANY, CFI_ID_ANY, fixup_use_point, NULL },	{ 0, 0, NULL, NULL }};static inline struct cfi_pri_intelext *read_pri_intelext(struct map_info *map, __u16 adr){	struct cfi_pri_intelext *extp;	unsigned int extp_size = sizeof(*extp); again:	extp = (struct cfi_pri_intelext *)cfi_read_pri(map, adr, extp_size, "Intel/Sharp");	if (!extp)		return NULL;	if (extp->MajorVersion != '1' ||	    (extp->MinorVersion < '0' || extp->MinorVersion > '4')) {		printk(KERN_ERR "  Unknown Intel/Sharp Extended Query "		       "version %c.%c.\n",  extp->MajorVersion,		       extp->MinorVersion);		kfree(extp);		return NULL;	}	/* Do some byteswapping if necessary */	extp->FeatureSupport = le32_to_cpu(extp->FeatureSupport);	extp->BlkStatusRegMask = le16_to_cpu(extp->BlkStatusRegMask);	extp->ProtRegAddr = le16_to_cpu(extp->ProtRegAddr);	if (extp->MajorVersion == '1' && extp->MinorVersion >= '3') {		unsigned int extra_size = 0;		int nb_parts, i;		/* Protection Register info */		extra_size += (extp->NumProtectionFields - 1) *			      sizeof(struct cfi_intelext_otpinfo);		/* Burst Read info */		extra_size += 2;		if (extp_size < sizeof(*extp) + extra_size)			goto need_more;		extra_size += extp->extra[extra_size-1];		/* Number of hardware-partitions */		extra_size += 1;		if (extp_size < sizeof(*extp) + extra_size)			goto need_more;		nb_parts = extp->extra[extra_size - 1];		/* skip the sizeof(partregion) field in CFI 1.4 */		if (extp->MinorVersion >= '4')			extra_size += 2;		for (i = 0; i < nb_parts; i++) {			struct cfi_intelext_regioninfo *rinfo;			rinfo = (struct cfi_intelext_regioninfo *)&extp->extra[extra_size];			extra_size += sizeof(*rinfo);			if (extp_size < sizeof(*extp) + extra_size)				goto need_more;			rinfo->NumIdentPartitions=le16_to_cpu(rinfo->NumIdentPartitions);			extra_size += (rinfo->NumBlockTypes - 1)				      * sizeof(struct cfi_intelext_blockinfo);		}		if (extp->MinorVersion >= '4')			extra_size += sizeof(struct cfi_intelext_programming_regioninfo);		if (extp_size < sizeof(*extp) + extra_size) {			need_more:			extp_size = sizeof(*extp) + extra_size;			kfree(extp);			if (extp_size > 4096) {				printk(KERN_ERR					"%s: cfi_pri_intelext is too fat\n",					__FUNCTION__);				return NULL;			}			goto again;		}	}	return extp;}/* This routine is made available to other mtd code via * inter_module_register.  It must only be accessed through * inter_module_get which will bump the use count of this module.  The * addresses passed back in cfi are valid as long as the use count of * this module is non-zero, i.e. between inter_module_get and * inter_module_put.  Keith Owens <kaos@ocs.com.au> 29 Oct 2000. */struct mtd_info *cfi_cmdset_0001(struct map_info *map, int primary){	struct cfi_private *cfi = map->fldrv_priv;	struct mtd_info *mtd;	int i;	mtd = kmalloc(sizeof(*mtd), GFP_KERNEL);	if (!mtd) {		printk(KERN_ERR "Failed to allocate memory for MTD device\n");		return NULL;	}	memset(mtd, 0, sizeof(*mtd));	mtd->priv = map;	mtd->type = MTD_NORFLASH;	/* Fill in the default mtd operations */	mtd->erase   = cfi_intelext_erase_varsize;	mtd->read    = cfi_intelext_read;	mtd->write   = cfi_intelext_write_words;	mtd->sync    = cfi_intelext_sync;	mtd->lock    = cfi_intelext_lock;	mtd->unlock  = cfi_intelext_unlock;	mtd->suspend = cfi_intelext_suspend;	mtd->resume  = cfi_intelext_resume;	mtd->flags   = MTD_CAP_NORFLASH;	mtd->name    = map->name;	mtd->reboot_notifier.notifier_call = cfi_intelext_reboot;	if (cfi->cfi_mode == CFI_MODE_CFI) {		/*		 * It's a real CFI chip, not one for which the probe		 * routine faked a CFI structure. So we read the feature		 * table from it.		 */		__u16 adr = primary?cfi->cfiq->P_ADR:cfi->cfiq->A_ADR;		struct cfi_pri_intelext *extp;		extp = read_pri_intelext(map, adr);		if (!extp) {			kfree(mtd);			return NULL;		}		/* Install our own private info structure */		cfi->cmdset_priv = extp;		cfi_fixup(mtd, cfi_fixup_table);#ifdef DEBUG_CFI_FEATURES		/* Tell the user about it in lots of lovely detail */		cfi_tell_features(extp);#endif		if(extp->SuspendCmdSupport & 1) {			printk(KERN_NOTICE "cfi_cmdset_0001: Erase suspend on write enabled\n");		}	}	else if (cfi->cfi_mode == CFI_MODE_JEDEC) {		/* Apply jedec specific fixups */		cfi_fixup(mtd, jedec_fixup_table);	}	/* Apply generic fixups */	cfi_fixup(mtd, fixup_table);	for (i=0; i< cfi->numchips; i++) {		cfi->chips[i].word_write_time = 1<<cfi->cfiq->WordWriteTimeoutTyp;		cfi->chips[i].buffer_write_time = 1<<cfi->cfiq->BufWriteTimeoutTyp;		cfi->chips[i].erase_time = 1<<cfi->cfiq->BlockEraseTimeoutTyp;		cfi->chips[i].ref_point_counter = 0;	}	map->fldrv = &cfi_intelext_chipdrv;	return cfi_intelext_setup(mtd);}static struct mtd_info *cfi_intelext_setup(struct mtd_info *mtd){	struct map_info *map = mtd->priv;	struct cfi_private *cfi = map->fldrv_priv;	unsigned long offset = 0;	int i,j;	unsigned long devsize = (1<<cfi->cfiq->DevSize) * cfi->interleave;	//printk(KERN_DEBUG "number of CFI chips: %d\n", cfi->numchips);	mtd->size = devsize * cfi->numchips;	mtd->numeraseregions = cfi->cfiq->NumEraseRegions * cfi->numchips;	mtd->eraseregions = kmalloc(sizeof(struct mtd_erase_region_info)			* mtd->numeraseregions, GFP_KERNEL);	if (!mtd->eraseregions) {		printk(KERN_ERR "Failed to allocate memory for MTD erase region info\n");		goto setup_err;	}	for (i=0; i<cfi->cfiq->NumEraseRegions; i++) {		unsigned long ernum, ersize;		ersize = ((cfi->cfiq->EraseRegionInfo[i] >> 8) & ~0xff) * cfi->interleave;		ernum = (cfi->cfiq->EraseRegionInfo[i] & 0xffff) + 1;		if (mtd->erasesize < ersize) {			mtd->erasesize = ersize;		}		for (j=0; j<cfi->numchips; j++) {			mtd->eraseregions[(j*cfi->cfiq->NumEraseRegions)+i].offset = (j*devsize)+offset;			mtd->eraseregions[(j*cfi->cfiq->NumEraseRegions)+i].erasesize = ersize;			mtd->eraseregions[(j*cfi->cfiq->NumEraseRegions)+i].numblocks = ernum;		}		offset += (ersize * ernum);	}	if (offset != devsize) {		/* Argh */		printk(KERN_WARNING "Sum of regions (%lx) != total size of set of interleaved chips (%lx)\n", offset, devsize);		goto setup_err;	}	for (i=0; i<mtd->numeraseregions;i++){		printk(KERN_DEBUG "erase region %d: offset=0x%x,size=0x%x,blocks=%d\n",		       i,mtd->eraseregions[i].offset,		       mtd->eraseregions[i].erasesize,		       mtd->eraseregions[i].numblocks);	}#ifdef CONFIG_MTD_OTP	mtd->read_fact_prot_reg = cfi_intelext_read_fact_prot_reg;	mtd->read_user_prot_reg = cfi_intelext_read_user_prot_reg;	mtd->write_user_prot_reg = cfi_intelext_write_user_prot_reg;	mtd->lock_user_prot_reg = cfi_intelext_lock_user_prot_reg;	mtd->get_fact_prot_info = cfi_intelext_get_fact_prot_info;	mtd->get_user_prot_info = cfi_intelext_get_user_prot_info;#endif	/* This function has the potential to distort the reality	   a bit and therefore should be called last. */	if (cfi_intelext_partition_fixup(mtd, &cfi) != 0)		goto setup_err;	__module_get(THIS_MODULE);	register_reboot_notifier(&mtd->reboot_notifier);	return mtd; setup_err:	if(mtd) {		kfree(mtd->eraseregions);		kfree(mtd);	}	kfree(cfi->cmdset_priv);	return NULL;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
天天做天天摸天天爽国产一区 | 日本麻豆一区二区三区视频| 久久er精品视频| 91在线视频网址| 4438成人网| 国产精品的网站| 日本一区二区综合亚洲| 日韩福利视频导航| 99久久er热在这里只有精品15| 欧美一区在线视频| 国产精品成人免费| 国产91精品免费| 日韩欧美国产精品一区| 日日骚欧美日韩| 91久久久免费一区二区| 国产午夜精品一区二区三区视频 | 精品美女一区二区| 午夜伊人狠狠久久| 91久久线看在观草草青青 | 国产综合成人久久大片91| 日韩女同互慰一区二区| 日韩av一二三| 久久综合狠狠综合久久综合88| 国产在线不卡一卡二卡三卡四卡| 国产亚洲精品bt天堂精选| www.成人在线| 日韩国产欧美三级| 国产午夜精品一区二区三区嫩草| av成人老司机| 美日韩一级片在线观看| 中文字幕av免费专区久久| 91在线观看免费视频| 奇米影视在线99精品| 国产人久久人人人人爽| 欧美精品日韩精品| 成人免费av资源| 日本一区中文字幕| 国产午夜一区二区三区| 在线成人av网站| 91在线观看免费视频| 精品一区二区三区影院在线午夜| 亚洲日本免费电影| 精品国产伦一区二区三区观看体验 | 欧美日韩激情在线| 国产99精品在线观看| 人人狠狠综合久久亚洲| 国产精品国产精品国产专区不片| 91视频.com| 成人免费视频播放| 国产综合一区二区| 麻豆精品视频在线观看视频| 一区二区三区精密机械公司| 国产喷白浆一区二区三区| 91天堂素人约啪| 91香蕉视频mp4| 99精品热视频| 丁香五精品蜜臀久久久久99网站 | 亚洲视频在线一区二区| 日本一区二区不卡视频| 国产色产综合产在线视频| 精品欧美黑人一区二区三区| 欧美一区二区三区爱爱| 欧美三级视频在线| 欧美一区二区久久| 欧美mv和日韩mv国产网站| 精品福利一二区| 欧美一级电影网站| 久久天堂av综合合色蜜桃网| 精品国产人成亚洲区| 欧美激情艳妇裸体舞| 亚洲欧美日韩一区| 亚洲国产成人高清精品| 亚洲综合在线五月| 丝袜诱惑制服诱惑色一区在线观看 | 3atv在线一区二区三区| 日韩精品在线一区二区| 欧美国产国产综合| 一区二区三区在线高清| 亚洲一区在线观看免费| 理论片日本一区| 色综合婷婷久久| 欧美二区乱c少妇| 国产精品午夜在线观看| 亚洲一区二区三区视频在线播放| 蜜臂av日日欢夜夜爽一区| 国产99久久久久| 91精品国产综合久久久蜜臀图片 | 久久99精品国产麻豆婷婷洗澡| 成人高清视频在线观看| 欧美久久久久久久久中文字幕| 久久久国产综合精品女国产盗摄| 亚洲精选免费视频| 粉嫩嫩av羞羞动漫久久久| 99精品视频中文字幕| 精品国产凹凸成av人网站| 亚洲在线免费播放| av在线不卡网| 欧美激情一区在线观看| 奇米影视在线99精品| 国产成人自拍网| 激情综合五月婷婷| 911精品国产一区二区在线| 国产精品国产三级国产aⅴ入口| 久久激五月天综合精品| 7878成人国产在线观看| 一二三四区精品视频| 国产乱子伦视频一区二区三区| 日韩免费一区二区| 亚洲国产美女搞黄色| 成人性色生活片| 精品日本一线二线三线不卡| 另类小说欧美激情| 国产女主播一区| av成人免费在线观看| 亚洲欧美日韩一区| 欧美在线你懂得| 天堂av在线一区| 精品国产一区二区三区忘忧草| 美腿丝袜一区二区三区| 国产亚洲欧美一区在线观看| 激情五月激情综合网| 久久嫩草精品久久久久| av网站一区二区三区| 一区二区三区免费网站| 亚洲不卡av一区二区三区| 久久综合成人精品亚洲另类欧美| 91在线高清观看| 国内精品视频666| 亚洲午夜日本在线观看| 国产色91在线| 精品电影一区二区| 欧美喷水一区二区| 一本大道av伊人久久综合| 极品少妇xxxx精品少妇偷拍| 亚欧色一区w666天堂| 亚洲欧美二区三区| 国产精品久久久久aaaa樱花| 日韩精品综合一本久道在线视频| 欧美性猛交xxxx黑人交| 99精品视频中文字幕| 成人av集中营| aaa亚洲精品一二三区| 国产精品亚洲视频| 国产精品中文字幕日韩精品| 国产一区三区三区| 国模无码大尺度一区二区三区| 日韩激情av在线| 精品综合久久久久久8888| 激情文学综合丁香| 粉嫩av一区二区三区在线播放 | 欧美国产综合色视频| 国产精品你懂的在线欣赏| 国产精品麻豆网站| 亚洲人成在线播放网站岛国| 亚洲免费av高清| 亚洲18女电影在线观看| 久久国产麻豆精品| 成人丝袜高跟foot| 一本大道久久a久久综合婷婷| 91福利视频网站| 26uuu亚洲| 18成人在线观看| 日韩av在线播放中文字幕| 国产精品一区二区视频| 日本高清免费不卡视频| 欧美福利视频导航| 国产精品美女一区二区在线观看| 亚洲欧美福利一区二区| 麻豆成人在线观看| 91网站在线观看视频| 欧美顶级少妇做爰| **性色生活片久久毛片| 蜜臀av亚洲一区中文字幕| 91丨porny丨国产入口| 欧美成人性战久久| 亚洲色图在线播放| 久久国产精品区| 欧美日韩一区二区电影| 国产无一区二区| 欧美bbbbb| 欧美老人xxxx18| 一区二区三区小说| hitomi一区二区三区精品| 久久久夜色精品亚洲| 免费成人你懂的| 欧美疯狂性受xxxxx喷水图片| 亚洲精品视频在线观看网站| 国产黑丝在线一区二区三区| 91精品国产麻豆| 午夜精品福利一区二区三区av| av不卡免费电影| 国产精品女主播在线观看| 国产成人精品网址| 日本一区二区三区久久久久久久久不 | 色吧成人激情小说| 亚洲色大成网站www久久九九| 99r精品视频| 亚洲中国最大av网站| 91久久一区二区| 无吗不卡中文字幕|