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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? nand_legacy.c

?? UBOOT 源碼
?? C
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
			     ((ofs >> nand->page_shift) << nand->page_shift) + 				((ofs & (nand->oobblock - 1)) >> 1));	} else {		NanD_Address(nand, ADDR_COLUMN_PAGE, ofs);	}	/* treat crossing 8-byte OOB data for 2M x 8bit devices */	/* Note: datasheet says it should automaticaly wrap to the */	/*       next OOB block, but it didn't work here. mf.      */	if (nand->page256 && ofs + len > (ofs | 0x7) + 1) {		len256 = (ofs | 0x7) + 1 - ofs;		NanD_ReadBuf(nand, buf, len256);		NanD_Command(nand, NAND_CMD_READOOB);		NanD_Address(nand, ADDR_COLUMN_PAGE, ofs & (~0x1ff));	}	NanD_ReadBuf(nand, &buf[len256], len - len256);	*retlen = len;	/* Reading the full OOB data drops us off of the end of the page,	 * causing the flash device to go into busy mode, so we need	 * to wait until ready 11.4.1 and Toshiba TC58256FT nands */	ret = NanD_WaitReady(nand, 1);	NAND_DISABLE_CE(nand);  /* set pin high */	return ret;}/* write to the 16 bytes of oob data that correspond to a 512 byte * page or 2 256-byte pages. */int nand_write_oob(struct nand_chip* nand, size_t ofs, size_t len,		  size_t * retlen, const u_char * buf){	int len256 = 0;	int i;	unsigned long nandptr = nand->IO_ADDR;#ifdef PSYCHO_DEBUG	printf("nand_write_oob(%lx, %d): %2.2X %2.2X %2.2X %2.2X ... %2.2X %2.2X .. %2.2X %2.2X\n",	       (long)ofs, len, buf[0], buf[1], buf[2], buf[3],	       buf[8], buf[9], buf[14],buf[15]);#endif	NAND_ENABLE_CE(nand);  /* set pin low to enable chip */	/* Reset the chip */	NanD_Command(nand, NAND_CMD_RESET);	/* issue the Read2 command to set the pointer to the Spare Data Area. */	NanD_Command(nand, NAND_CMD_READOOB);	if (nand->bus16) { 		NanD_Address(nand, ADDR_COLUMN_PAGE,			     ((ofs >> nand->page_shift) << nand->page_shift) + 				((ofs & (nand->oobblock - 1)) >> 1));	} else { 		NanD_Address(nand, ADDR_COLUMN_PAGE, ofs);	}	/* update address for 2M x 8bit devices. OOB starts on the second */	/* page to maintain compatibility with nand_read_ecc. */	if (nand->page256) {		if (!(ofs & 0x8))			ofs += 0x100;		else			ofs -= 0x8;	}	/* issue the Serial Data In command to initial the Page Program process */	NanD_Command(nand, NAND_CMD_SEQIN);	if (nand->bus16) { 		NanD_Address(nand, ADDR_COLUMN_PAGE,			     ((ofs >> nand->page_shift) << nand->page_shift) + 				((ofs & (nand->oobblock - 1)) >> 1));	} else { 		NanD_Address(nand, ADDR_COLUMN_PAGE, ofs);	}	/* treat crossing 8-byte OOB data for 2M x 8bit devices */	/* Note: datasheet says it should automaticaly wrap to the */	/*       next OOB block, but it didn't work here. mf.      */	if (nand->page256 && ofs + len > (ofs | 0x7) + 1) {		len256 = (ofs | 0x7) + 1 - ofs;		for (i = 0; i < len256; i++)			WRITE_NAND(buf[i], nandptr);		NanD_Command(nand, NAND_CMD_PAGEPROG);		NanD_Command(nand, NAND_CMD_STATUS);#ifdef NAND_NO_RB   		{ u_char ret_val;			do {				ret_val = READ_NAND(nandptr); /* wait till ready */			} while ((ret_val & 0x40) != 0x40);		}#endif		if (READ_NAND(nandptr) & 1) {			puts ("Error programming oob data\n");			/* There was an error */			NAND_DISABLE_CE(nand);  /* set pin high */			*retlen = 0;			return -1;		}		NanD_Command(nand, NAND_CMD_SEQIN);		NanD_Address(nand, ADDR_COLUMN_PAGE, ofs & (~0x1ff));	}	if (nand->bus16) {		for (i = len256; i < len; i += 2) {			WRITE_NAND(buf[i] + (buf[i+1] << 8), nandptr);		}	} else {		for (i = len256; i < len; i++)			WRITE_NAND(buf[i], nandptr);	}	NanD_Command(nand, NAND_CMD_PAGEPROG);	NanD_Command(nand, NAND_CMD_STATUS);#ifdef NAND_NO_RB	{	u_char ret_val;		do {			ret_val = READ_NAND(nandptr); /* wait till ready */		} while ((ret_val & 0x40) != 0x40);	}#endif	if (READ_NAND(nandptr) & 1) {		puts ("Error programming oob data\n");		/* There was an error */		NAND_DISABLE_CE(nand);  /* set pin high */		*retlen = 0;		return -1;	}	NAND_DISABLE_CE(nand);  /* set pin high */	*retlen = len;	return 0;}int nand_legacy_erase(struct nand_chip* nand, size_t ofs, size_t len, int clean){	/* This is defined as a structure so it will work on any system	 * using native endian jffs2 (the default).	 */	static struct jffs2_unknown_node clean_marker = {		JFFS2_MAGIC_BITMASK,		JFFS2_NODETYPE_CLEANMARKER,		8		/* 8 bytes in this node */	};	unsigned long nandptr;	struct Nand *mychip;	int ret = 0;	if (ofs & (nand->erasesize-1) || len & (nand->erasesize-1)) {		printf ("Offset and size must be sector aligned, erasesize = %d\n",			(int) nand->erasesize);		return -1;	}	nandptr = nand->IO_ADDR;	/* Select the NAND device */#ifdef CONFIG_OMAP1510	archflashwp(0,0);#endif#ifdef CFG_NAND_WP	NAND_WP_OFF();#endif    NAND_ENABLE_CE(nand);  /* set pin low */	/* Check the WP bit */	NanD_Command(nand, NAND_CMD_STATUS);	if (!(READ_NAND(nand->IO_ADDR) & 0x80)) {		printf ("nand_write_ecc: Device is write protected!!!\n");		ret = -1;		goto out;	}	/* Check the WP bit */	NanD_Command(nand, NAND_CMD_STATUS);	if (!(READ_NAND(nand->IO_ADDR) & 0x80)) {		printf ("%s: Device is write protected!!!\n", __FUNCTION__);		ret = -1;		goto out;	}	/* FIXME: Do nand in the background. Use timers or schedule_task() */	while(len) {		/*mychip = &nand->chips[shr(ofs, nand->chipshift)];*/		mychip = &nand->chips[ofs >> nand->chipshift];		/* always check for bad block first, genuine bad blocks		 * should _never_  be erased.		 */		if (ALLOW_ERASE_BAD_DEBUG || !check_block(nand, ofs)) {			/* Select the NAND device */			NAND_ENABLE_CE(nand);  /* set pin low */			NanD_Command(nand, NAND_CMD_ERASE1);			NanD_Address(nand, ADDR_PAGE, ofs);			NanD_Command(nand, NAND_CMD_ERASE2);			NanD_Command(nand, NAND_CMD_STATUS);#ifdef NAND_NO_RB			{	u_char ret_val;				do {					ret_val = READ_NAND(nandptr); /* wait till ready */				} while ((ret_val & 0x40) != 0x40);			}#endif			if (READ_NAND(nandptr) & 1) {				printf ("%s: Error erasing at 0x%lx\n",					__FUNCTION__, (long)ofs);				/* There was an error */				ret = -1;				goto out;			}			if (clean) {				int n;	/* return value not used */				int p, l;				/* clean marker position and size depend				 * on the page size, since 256 byte pages				 * only have 8 bytes of oob data				 */				if (nand->page256) {					p = NAND_JFFS2_OOB8_FSDAPOS;					l = NAND_JFFS2_OOB8_FSDALEN;				} else {					p = NAND_JFFS2_OOB16_FSDAPOS;					l = NAND_JFFS2_OOB16_FSDALEN;				}				ret = nand_write_oob(nand, ofs + p, l, (size_t *)&n,						     (u_char *)&clean_marker);				/* quit here if write failed */				if (ret)					goto out;			}		}		ofs += nand->erasesize;		len -= nand->erasesize;	}out:	/* De-select the NAND device */	NAND_DISABLE_CE(nand);  /* set pin high */#ifdef CONFIG_OMAP1510    	archflashwp(0,1);#endif#ifdef CFG_NAND_WP	NAND_WP_ON();#endif	return ret;}static inline int nandcheck(unsigned long potential, unsigned long physadr){	return 0;}unsigned long nand_probe(unsigned long physadr){	struct nand_chip *nand = NULL;	int i = 0, ChipID = 1;#ifdef CONFIG_MTD_NAND_ECC_JFFS2	oob_config.ecc_pos[0] = NAND_JFFS2_OOB_ECCPOS0;	oob_config.ecc_pos[1] = NAND_JFFS2_OOB_ECCPOS1;	oob_config.ecc_pos[2] = NAND_JFFS2_OOB_ECCPOS2;	oob_config.ecc_pos[3] = NAND_JFFS2_OOB_ECCPOS3;	oob_config.ecc_pos[4] = NAND_JFFS2_OOB_ECCPOS4;	oob_config.ecc_pos[5] = NAND_JFFS2_OOB_ECCPOS5;	oob_config.eccvalid_pos = 4;#else	oob_config.ecc_pos[0] = NAND_NOOB_ECCPOS0;	oob_config.ecc_pos[1] = NAND_NOOB_ECCPOS1;	oob_config.ecc_pos[2] = NAND_NOOB_ECCPOS2;	oob_config.ecc_pos[3] = NAND_NOOB_ECCPOS3;	oob_config.ecc_pos[4] = NAND_NOOB_ECCPOS4;	oob_config.ecc_pos[5] = NAND_NOOB_ECCPOS5;	oob_config.eccvalid_pos = NAND_NOOB_ECCVPOS;#endif	oob_config.badblock_pos = 5;	for (i=0; i<CFG_MAX_NAND_DEVICE; i++) {		if (nand_dev_desc[i].ChipID == NAND_ChipID_UNKNOWN) {			nand = &nand_dev_desc[i];			break;		}	}	if (!nand)		return (0);	memset((char *)nand, 0, sizeof(struct nand_chip));	nand->IO_ADDR = physadr;	nand->cache_page = -1;  /* init the cache page */	NanD_ScanChips(nand);	if (nand->totlen == 0) {		/* no chips found, clean up and quit */		memset((char *)nand, 0, sizeof(struct nand_chip));		nand->ChipID = NAND_ChipID_UNKNOWN;		return (0);	}	nand->ChipID = ChipID;	if (curr_device == -1)		curr_device = i;	nand->data_buf = malloc (nand->oobblock + nand->oobsize);	if (!nand->data_buf) {		puts ("Cannot allocate memory for data structures.\n");		return (0);	}	return (nand->totlen);}#ifdef CONFIG_MTD_NAND_ECC/* * Pre-calculated 256-way 1 byte column parity */static const u_char nand_ecc_precalc_table[] = {	0x00, 0x55, 0x56, 0x03, 0x59, 0x0c, 0x0f, 0x5a,	0x5a, 0x0f, 0x0c, 0x59, 0x03, 0x56, 0x55, 0x00,	0x65, 0x30, 0x33, 0x66, 0x3c, 0x69, 0x6a, 0x3f,	0x3f, 0x6a, 0x69, 0x3c, 0x66, 0x33, 0x30, 0x65,	0x66, 0x33, 0x30, 0x65, 0x3f, 0x6a, 0x69, 0x3c,	0x3c, 0x69, 0x6a, 0x3f, 0x65, 0x30, 0x33, 0x66,	0x03, 0x56, 0x55, 0x00, 0x5a, 0x0f, 0x0c, 0x59,	0x59, 0x0c, 0x0f, 0x5a, 0x00, 0x55, 0x56, 0x03,	0x69, 0x3c, 0x3f, 0x6a, 0x30, 0x65, 0x66, 0x33,	0x33, 0x66, 0x65, 0x30, 0x6a, 0x3f, 0x3c, 0x69,	0x0c, 0x59, 0x5a, 0x0f, 0x55, 0x00, 0x03, 0x56,	0x56, 0x03, 0x00, 0x55, 0x0f, 0x5a, 0x59, 0x0c,	0x0f, 0x5a, 0x59, 0x0c, 0x56, 0x03, 0x00, 0x55,	0x55, 0x00, 0x03, 0x56, 0x0c, 0x59, 0x5a, 0x0f,	0x6a, 0x3f, 0x3c, 0x69, 0x33, 0x66, 0x65, 0x30,	0x30, 0x65, 0x66, 0x33, 0x69, 0x3c, 0x3f, 0x6a,	0x6a, 0x3f, 0x3c, 0x69, 0x33, 0x66, 0x65, 0x30,	0x30, 0x65, 0x66, 0x33, 0x69, 0x3c, 0x3f, 0x6a,	0x0f, 0x5a, 0x59, 0x0c, 0x56, 0x03, 0x00, 0x55,	0x55, 0x00, 0x03, 0x56, 0x0c, 0x59, 0x5a, 0x0f,	0x0c, 0x59, 0x5a, 0x0f, 0x55, 0x00, 0x03, 0x56,	0x56, 0x03, 0x00, 0x55, 0x0f, 0x5a, 0x59, 0x0c,	0x69, 0x3c, 0x3f, 0x6a, 0x30, 0x65, 0x66, 0x33,	0x33, 0x66, 0x65, 0x30, 0x6a, 0x3f, 0x3c, 0x69,	0x03, 0x56, 0x55, 0x00, 0x5a, 0x0f, 0x0c, 0x59,	0x59, 0x0c, 0x0f, 0x5a, 0x00, 0x55, 0x56, 0x03,	0x66, 0x33, 0x30, 0x65, 0x3f, 0x6a, 0x69, 0x3c,	0x3c, 0x69, 0x6a, 0x3f, 0x65, 0x30, 0x33, 0x66,	0x65, 0x30, 0x33, 0x66, 0x3c, 0x69, 0x6a, 0x3f,	0x3f, 0x6a, 0x69, 0x3c, 0x66, 0x33, 0x30, 0x65,	0x00, 0x55, 0x56, 0x03, 0x59, 0x0c, 0x0f, 0x5a,	0x5a, 0x0f, 0x0c, 0x59, 0x03, 0x56, 0x55, 0x00};/* * Creates non-inverted ECC code from line parity */static void nand_trans_result(u_char reg2, u_char reg3,	u_char *ecc_code){	u_char a, b, i, tmp1, tmp2;	/* Initialize variables */	a = b = 0x80;	tmp1 = tmp2 = 0;	/* Calculate first ECC byte */	for (i = 0; i < 4; i++) {		if (reg3 & a)		/* LP15,13,11,9 --> ecc_code[0] */			tmp1 |= b;		b >>= 1;		if (reg2 & a)		/* LP14,12,10,8 --> ecc_code[0] */			tmp1 |= b;		b >>= 1;		a >>= 1;	}	/* Calculate second ECC byte */	b = 0x80;	for (i = 0; i < 4; i++) {		if (reg3 & a)		/* LP7,5,3,1 --> ecc_code[1] */			tmp2 |= b;		b >>= 1;		if (reg2 & a)		/* LP6,4,2,0 --> ecc_code[1] */			tmp2 |= b;		b >>= 1;		a >>= 1;	}	/* Store two of the ECC bytes */	ecc_code[0] = tmp1;	ecc_code[1] = tmp2;}/* * Calculate 3 byte ECC code for 256 byte block */static void nand_calculate_ecc (const u_char *dat, u_char *ecc_code){	u_char idx, reg1, reg3;	int j;	/* Initialize variables */	reg1 = reg3 = 0;	ecc_code[0] = ecc_code[1] = ecc_code[2] = 0;	/* Build up column parity */	for(j = 0; j < 256; j++) {		/* Get CP0 - CP5 from table */		idx = nand_ecc_precalc_table[dat[j]];		reg1 ^= idx;		/* All bit XOR = 1 ? */		if (idx & 0x40) {			reg3 ^= (u_char) j;		}	}	/* Create non-inverted ECC code from line parity */	nand_trans_result((reg1 & 0x40) ? ~reg3 : reg3, reg3, ecc_code);	/* Calculate final ECC code */	ecc_code[0] = ~ecc_code[0];	ecc_code[1] = ~ecc_code[1];	ecc_code[2] = ((~reg1) << 2) | 0x03;}/* * Detect and correct a 1 bit error for 256 byte block */static int nand_correct_data (u_char *dat, u_char *read_ecc, u_char *calc_ecc){	u_char a, b, c, d1, d2, d3, add, bit, i;	/* Do error detection */	d1 = calc_ecc[0] ^ read_ecc[0];	d2 = calc_ecc[1] ^ read_ecc[1];	d3 = calc_ecc[2] ^ read_ecc[2];	if ((d1 | d2 | d3) == 0) {		/* No errors */		return 0;	} else {		a = (d1 ^ (d1 >> 1)) & 0x55;		b = (d2 ^ (d2 >> 1)) & 0x55;		c = (d3 ^ (d3 >> 1)) & 0x54;		/* Found and will correct single bit error in the data */		if ((a == 0x55) && (b == 0x55) && (c == 0x54)) {			c = 0x80;			add = 0;			a = 0x80;			for (i=0; i<4; i++) {				if (d1 & c)					add |= a;				c >>= 2;				a >>= 1;			}			c = 0x80;			for (i=0; i<4; i++) {				if (d2 & c)					add |= a;				c >>= 2;				a >>= 1;			}			bit = 0;			b = 0x04;			c = 0x80;			for (i=0; i<3; i++) {				if (d3 & c)					bit |= b;				c >>= 2;				b >>= 1;			}			b = 0x01;			a = dat[add];			a ^= (b << bit);			dat[add] = a;			return 1;		}		else {			i = 0;			while (d1) {				if (d1 & 0x01)					++i;				d1 >>= 1;			}			while (d2) {				if (d2 & 0x01)					++i;				d2 >>= 1;			}			while (d3) {				if (d3 & 0x01)					++i;				d3 >>= 1;			}			if (i == 1) {				/* ECC Code Error Correction */				read_ecc[0] = calc_ecc[0];				read_ecc[1] = calc_ecc[1];				read_ecc[2] = calc_ecc[2];				return 2;			}			else {				/* Uncorrectable Error */				return -1;			}		}	}	/* Should never happen */	return -1;}#endif#ifdef CONFIG_JFFS2_NANDint read_jffs2_nand(size_t start, size_t len,		size_t * retlen, u_char * buf, int nanddev){	return nand_legacy_rw(nand_dev_desc + nanddev, NANDRW_READ | NANDRW_JFFS2,			start, len, retlen, buf);}#endif /* CONFIG_JFFS2_NAND */#endif /* (CONFIG_COMMANDS & CFG_CMD_NAND) && defined(CFG_NAND_LEGACY) */

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91成人免费在线视频| 麻豆成人91精品二区三区| 亚洲va欧美va国产va天堂影院| 日日夜夜免费精品视频| 亚洲男女毛片无遮挡| 偷拍一区二区三区| 国产成人精品免费一区二区| 69堂成人精品免费视频| 亚洲色图在线视频| 国产九色sp调教91| 91在线观看成人| 国产精品伦理一区二区| 国产丝袜欧美中文另类| 日本欧美在线观看| 欧美伊人久久久久久久久影院| 中文字幕不卡的av| 久久99国产精品免费| 欧美裸体一区二区三区| 亚洲少妇中出一区| 99视频一区二区| 国产午夜精品在线观看| 激情欧美一区二区三区在线观看| 欧美日韩一区久久| 亚洲无线码一区二区三区| 97se狠狠狠综合亚洲狠狠| 久久久午夜精品理论片中文字幕| 日本aⅴ免费视频一区二区三区 | 欧美经典一区二区三区| 午夜精品视频在线观看| 97aⅴ精品视频一二三区| 精品久久久久久久久久久久久久久久久| 亚洲青青青在线视频| 99久久精品国产一区二区三区 | 日韩欧美视频一区| 亚洲欧美aⅴ...| 成人av在线一区二区三区| 在线国产电影不卡| 亚洲男人的天堂在线aⅴ视频| 国产麻豆一精品一av一免费 | 日韩专区中文字幕一区二区| 91丨porny丨国产入口| 日本一区二区电影| 风流少妇一区二区| 久久久久青草大香线综合精品| 日本少妇一区二区| 欧美亚洲国产怡红院影院| 亚洲电影你懂得| 欧美影院精品一区| 日本在线不卡视频一二三区| 欧美亚洲精品一区| 日韩精品欧美精品| 欧美日韩国产综合久久| 丝袜美腿亚洲色图| 欧美日韩国产免费一区二区| 性欧美疯狂xxxxbbbb| 色综合色狠狠综合色| 亚洲女人小视频在线观看| 欧美丰满高潮xxxx喷水动漫| 日韩电影在线观看网站| 精品福利在线导航| 国产精品69毛片高清亚洲| 亚洲视频一区二区免费在线观看 | 欧美三级电影一区| 久久精品久久精品| 久久久久国产精品免费免费搜索| 久久精品999| 亚洲国产精品传媒在线观看| 91蝌蚪porny成人天涯| 亚洲成人动漫在线观看| 日韩一区和二区| 韩国欧美一区二区| 亚洲欧美国产毛片在线| 69堂成人精品免费视频| 国产剧情一区二区| 亚洲精品欧美综合四区| 欧美一二区视频| 国产成人a级片| 日本亚洲三级在线| 久久夜色精品一区| 欧美日韩国产123区| 亚洲国产精品久久久久秋霞影院| 日韩欧美色电影| 91在线播放网址| 国产精品一品二品| 亚洲综合一区二区三区| 欧美xfplay| 91免费看`日韩一区二区| 首页国产欧美久久| 欧美国产激情二区三区| 国产清纯在线一区二区www| 成人动漫精品一区二区| 亚洲成人资源在线| 国产精品欧美一级免费| 欧美伦理影视网| 国产精品伊人色| 午夜久久久久久| 亚洲免费在线看| 中文字幕第一区综合| 日韩一区二区三区电影在线观看 | 欧美群妇大交群中文字幕| 天天综合天天做天天综合| 国产精品色眯眯| 国产日韩欧美制服另类| 91精品国产色综合久久不卡蜜臀| 色老汉一区二区三区| 国产精品夜夜嗨| 国内成人免费视频| 天天影视涩香欲综合网 | 欧美无砖砖区免费| 91亚洲精品久久久蜜桃网站| 精品一二线国产| 国产一区二区精品久久99| 日韩av一级电影| 日韩在线一区二区三区| 亚洲一区免费视频| 亚洲人成精品久久久久久 | 日韩三级电影网址| 91精品国产欧美日韩| 国产亚洲成av人在线观看导航| 欧美日韩一级二级| 欧日韩精品视频| 9久草视频在线视频精品| 国产河南妇女毛片精品久久久| 日韩av中文字幕一区二区三区| 日韩电影一区二区三区| 亚洲成人三级小说| 亚洲一区二区三区精品在线| 亚洲视频一区二区在线| 亚洲男人的天堂网| 亚洲乱码国产乱码精品精可以看 | 婷婷开心激情综合| 亚洲国产欧美一区二区三区丁香婷| 国产精品欧美一区二区三区| 26uuu久久天堂性欧美| 精品电影一区二区| 国产精品国产自产拍在线| 中文字幕av一区二区三区高| 国产欧美精品区一区二区三区| 久久综合九色综合欧美98| 精品国产免费人成在线观看| 日韩午夜在线影院| 欧美成人性战久久| 2024国产精品视频| 欧美激情一区二区| 国产精品剧情在线亚洲| 国产精品视频在线看| 亚洲日本免费电影| 亚洲综合区在线| 三级在线观看一区二区| 美女www一区二区| 天天爽夜夜爽夜夜爽精品视频| 极品少妇xxxx偷拍精品少妇| 国产精品一区二区你懂的| 欧美日韩1234| 日韩视频一区在线观看| 精品av久久707| 成人欧美一区二区三区在线播放| 亚洲人成电影网站色mp4| 爽好久久久欧美精品| 国产在线精品免费| 国产成人av一区二区三区在线| 免费一区二区视频| 92国产精品观看| 亚洲精品在线观| 亚洲美女在线一区| 国产剧情一区在线| 欧美综合天天夜夜久久| 欧美激情在线一区二区三区| 亚洲黄色在线视频| 国产高清一区日本| 欧美日韩高清一区二区不卡| 国产精品免费视频观看| 午夜久久久久久| 在线观看视频一区二区 | 欧美人妖巨大在线| 国产亚洲精品7777| 麻豆一区二区三区| 91色.com| 国产日韩av一区二区| 亚洲成人av电影在线| 91蜜桃婷婷狠狠久久综合9色| 在线观看欧美精品| 亚洲人成网站在线| 亚洲三级电影网站| 99久久久无码国产精品| 久久综合中文字幕| 图片区小说区国产精品视频| 色琪琪一区二区三区亚洲区| 国产欧美精品一区二区三区四区| 久久精品免费观看| 欧美放荡的少妇| 日本亚洲欧美天堂免费| 色88888久久久久久影院野外| 国产精品久久久久久久久快鸭| 六月丁香婷婷久久| 日韩午夜激情免费电影| 亚洲精品水蜜桃| 色噜噜狠狠色综合欧洲selulu| 26uuuu精品一区二区| 国产在线精品不卡|