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

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

?? nand.c

?? 在PXA255下用做擴展NAND Flash芯片的程序源代碼
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* *  drivers/mtd/nand.c * *  Overview: *   This is the generic MTD driver for NAND flash devices. It should be *   capable of working with almost all NAND chips currently available. *    *	Additional technical information is available on *	http://www.linux-mtd.infradead.org/tech/nand.html *	 *  Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com) * 		  2002 Thomas Gleixner (tglx@linutronix.de) * *  10-29-2001  Thomas Gleixner (tglx@linutronix.de) * 		- Changed nand_chip structure for controlline function to *		support different hardware structures (Access to *		controllines ALE,CLE,NCE via hardware specific function.  *		- exit out of "failed erase block" changed, to avoid *		driver hangup *		- init_waitqueue_head added in function nand_scan !! * *  01-30-2002  Thomas Gleixner (tglx@linutronix.de) *		change in nand_writev to block invalid vecs entries * *  02-11-2002  Thomas Gleixner (tglx@linutronix.de) *		- major rewrite to avoid duplicated code *		  common nand_write_page function   *		  common get_chip function  *		- added oob_config structure for out of band layouts *		- write_oob changed for partial programming *		- read cache for faster access for subsequent reads *		from the same page. *		- support for different read/write address *		- support for device ready/busy line *		- read oob for more than one page enabled * *  02-27-2002	Thomas Gleixner (tglx@linutronix.de) *		- command-delay can be programmed *		- fixed exit from erase with callback-function enabled * *  03-21-2002  Thomas Gleixner (tglx@linutronix.de) *		- DEBUG improvements provided by Elizabeth Clarke  *		(eclarke@aminocom.com) *		- added zero check for this->chip_delay * *  04-03-2002  Thomas Gleixner (tglx@linutronix.de) *		- added added hw-driver supplied command and wait functions *		- changed blocking for erase (erase suspend enabled) *		- check pointers before accessing flash provided by *		John Hall (john.hall@optionexist.co.uk) * *  04-09-2002  Thomas Gleixner (tglx@linutronix.de) *		- nand_wait repaired * *  04-28-2002  Thomas Gleixner (tglx@linutronix.de)	 *		- OOB config defines moved to nand.h  * *  08-01-2002  Thomas Gleixner (tglx@linutronix.de)	 *		- changed my mailaddress, added pointer to tech/nand.html * *  08-07-2002 	Thomas Gleixner (tglx@linutronix.de) *		forced bad block location to byte 5 of OOB, even if *		CONFIG_MTD_NAND_ECC_JFFS2 is not set, to prevent *		erase /dev/mtdX from erasing bad blocks and destroying *		bad block info * *  08-10-2002 	Thomas Gleixner (tglx@linutronix.de) *		Fixed writing tail of data. Thanks to Alice Hennessy *		<ahennessy@mvista.com>. * *  08-10-2002 	Thomas Gleixner (tglx@linutronix.de) *		nand_read_ecc and nand_write_page restructured to support *		hardware ECC. Thanks to Steven Hein (ssh@sgi.com) *		for basic implementation and suggestions. *		3 new pointers in nand_chip structure: *		calculate_ecc, correct_data, enabled_hwecc 					  *		forcing all hw-drivers to support page cache *		eccvalid_pos is now mandatory * *  08-17-2002	tglx: fixed signed/unsigned missmatch in write.c *		Thanks to Ken Offer <koffer@arlut.utexas.edu> 	 * *  08-29-2002  tglx: use buffered read/write only for non pagealigned  *		access, speed up the aligned path by using the fs-buffer *		reset chip removed from nand_select(), implicit done *		only, when erase is interrupted *		waitfuntion use yield, instead of schedule_timeout *		support for 6byte/512byte hardware ECC *		read_ecc, write_ecc extended for different oob-layout *		selections: Implemented NAND_NONE_OOB, NAND_JFFS2_OOB, *		NAND_YAFFS_OOB. fs-driver gives one of these constants *		to select the oob-layout fitting the filesystem. *		oobdata can be read together with the raw data, when *		the fs-driver supplies a big enough buffer. *		size = 12 * number of pages to read (256B pagesize) *		       24 * number of pages to read (512B pagesize) *		the buffer contains 8/16 byte oobdata and 4/8 byte *		returncode from calculate_ecc *		oobdata can be given from filesystem to program them *		in one go together with the raw data. ECC codes are *		filled in at the place selected by oobsel. * *  09-04-2002  tglx: fixed write_verify (John Hall (john.hall@optionexist.co.uk)) * *  11-11-2002  tglx: fixed debug output in nand_write_page  *		(John Hall (john.hall@optionexist.co.uk)) * *  11-25-2002  tglx: Moved device ID/ manufacturer ID from nand_ids.h *		Splitted device ID and manufacturer ID table.  *		Removed CONFIG_MTD_NAND_ECC, as it defaults to ECC_NONE for *		mtd->read / mtd->write and is controllable by the fs driver *		for mtd->read_ecc / mtd->write_ecc *		some minor cleanups * *  12-05-2002  tglx: Dave Ellis (DGE@sixnetio) provided the fix for *		WRITE_VERIFY long time ago. Thanks for remembering me.	 * *  02-14-2003  tglx: Reject non page aligned writes 	 *		Fixed ecc select in nand_write_page to match semantics.  * *  02-18-2003	tglx: Changed oobsel to pointer. Added a default oob-selector *			 *  02-18-2003	tglx: Implemented oobsel again. Now it uses a pointer to +		a structure, which will be supplied by a filesystem driver *		If NULL is given, then the defaults (none or defaults *		supplied by ioctl (MEMSETOOBSEL) are used. *		For partitions the partition defaults are used (mtdpart.c) * *  06-04-2003  tglx: fix compile errors and fix write verify problem for *		some chips, which need either a delay between the readback *		and the next write command or have the CE removed. The *		CE disable/enable is much faster than a 20us delay and *		it should work on all available chips. *	 * $Id: nand.c,v 1.60 2003/10/23 08:28:43 dwmw2 Exp $ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * */#include <linux/delay.h>#include <linux/errno.h>#include <linux/sched.h>#include <linux/types.h>#include <linux/mtd/mtd.h>#include <linux/mtd/nand.h>#include <linux/mtd/nand_ecc.h>#include <linux/mtd/compatmac.h>#include <linux/interrupt.h>#include <asm/io.h>/* * NAND low-level MTD interface functions */static void nand_write_buf(struct mtd_info *mtd, const u_char *buf, int len);static void nand_read_buf(struct mtd_info *mtd, u_char *buf, int len);static int nand_verify_buf(struct mtd_info *mtd, const u_char *buf, int len);static int nand_read (struct mtd_info *mtd, loff_t from, size_t len, size_t * retlen, u_char * buf);static int nand_read_ecc (struct mtd_info *mtd, loff_t from, size_t len,			  size_t * retlen, u_char * buf, u_char * eccbuf, struct nand_oobinfo *oobsel);static int nand_read_oob (struct mtd_info *mtd, loff_t from, size_t len, size_t * retlen, u_char * buf);static int nand_write (struct mtd_info *mtd, loff_t to, size_t len, size_t * retlen, const u_char * buf);static int nand_write_ecc (struct mtd_info *mtd, loff_t to, size_t len,			   size_t * retlen, const u_char * buf, u_char * eccbuf, struct nand_oobinfo *oobsel);static int nand_write_oob (struct mtd_info *mtd, loff_t to, size_t len, size_t * retlen, const u_char *buf);static int nand_writev (struct mtd_info *mtd, const struct iovec *vecs,			unsigned long count, loff_t to, size_t * retlen);static int nand_writev_ecc (struct mtd_info *mtd, const struct iovec *vecs,			unsigned long count, loff_t to, size_t * retlen, u_char *eccbuf, struct nand_oobinfo *oobsel);static int nand_erase (struct mtd_info *mtd, struct erase_info *instr);static void nand_sync (struct mtd_info *mtd);static int nand_write_page (struct mtd_info *mtd, struct nand_chip *this, int page, u_char *oob_buf,  struct nand_oobinfo *oobsel);static u_char nand_read_byte(struct mtd_info *mtd){	struct nand_chip *this = mtd->priv;	return readb(this->IO_ADDR_R);}static void nand_write_byte(struct mtd_info *mtd, u_char byte){	struct nand_chip *this = mtd->priv;	writeb(byte, this->IO_ADDR_W);}static void nand_select_chip(struct mtd_info *mtd, int chip){	struct nand_chip *this = mtd->priv;	switch(chip) {	case -1:		this->hwcontrol(mtd, NAND_CTL_CLRNCE);			break;	case 0:		this->hwcontrol(mtd, NAND_CTL_SETNCE);		break;	default:		BUG();	}}static void nand_write_buf(struct mtd_info *mtd, const u_char *buf, int len){	int i;	struct nand_chip *this = mtd->priv;	for (i=0; i<len; i++)		writeb(buf[i], this->IO_ADDR_W);}static void nand_read_buf(struct mtd_info *mtd, u_char *buf, int len){	int i;	struct nand_chip *this = mtd->priv;	for (i=0; i<len; i++)		buf[i] = readb(this->IO_ADDR_R);}static int nand_verify_buf(struct mtd_info *mtd, const u_char *buf, int len){	int i;	struct nand_chip *this = mtd->priv;	for (i=0; i<len; i++)		if (buf[i] != readb(this->IO_ADDR_R))			return i;	return 0;}/* Appropriate chip should already be selected */static int nand_block_bad(struct mtd_info *mtd, unsigned long page){	struct nand_chip *this = mtd->priv;		this->cmdfunc (mtd, NAND_CMD_READOOB, NAND_BADBLOCK_POS, page);	if (this->read_byte(mtd) != 0xff)		return 1;	return 0;}/* * Send command to NAND device */static void nand_command (struct mtd_info *mtd, unsigned command, int column, int page_addr){	register struct nand_chip *this = mtd->priv;	/* Begin command latch cycle */	this->hwcontrol(mtd, NAND_CTL_SETCLE);	/*	 * Write out the command to the device.	 */	if (command == NAND_CMD_SEQIN) {		int readcmd;		if (column >= mtd->oobblock) {			/* OOB area */			column -= mtd->oobblock;			readcmd = NAND_CMD_READOOB;		} else if (column < 256) {			/* First 256 bytes --> READ0 */			readcmd = NAND_CMD_READ0;		} else {			column -= 256;			readcmd = NAND_CMD_READ1;		}		this->write_byte(mtd, readcmd);	}	this->write_byte(mtd, command);	/* Set ALE and clear CLE to start address cycle */	this->hwcontrol(mtd, NAND_CTL_CLRCLE);	if (column != -1 || page_addr != -1) {		this->hwcontrol(mtd, NAND_CTL_SETALE);		/* Serially input address */		if (column != -1)			this->write_byte(mtd, column);		if (page_addr != -1) {			this->write_byte(mtd, (unsigned char) (page_addr & 0xff));			this->write_byte(mtd, (unsigned char) ((page_addr >> 8) & 0xff));			/* One more address cycle for higher density devices */			if (mtd->size & 0x0c000000) 				this->write_byte(mtd, (unsigned char) ((page_addr >> 16) & 0x0f));		}		/* Latch in address */		this->hwcontrol(mtd, NAND_CTL_CLRALE);	}		/* 	 * program and erase have their own busy handlers 	 * status and sequential in needs no delay	*/	switch (command) {				case NAND_CMD_PAGEPROG:	case NAND_CMD_ERASE1:	case NAND_CMD_ERASE2:	case NAND_CMD_SEQIN:	case NAND_CMD_STATUS:		return;	case NAND_CMD_RESET:		if (this->dev_ready)				break;		udelay(this->chip_delay);		this->hwcontrol(mtd, NAND_CTL_SETCLE);		this->write_byte(mtd, NAND_CMD_STATUS);		this->hwcontrol(mtd, NAND_CTL_CLRCLE);		while ( !(this->read_byte(mtd) & 0x40));		return;	/* This applies to read commands */		default:		/* 		 * If we don't have access to the busy pin, we apply the given		 * command delay		*/		if (!this->dev_ready) {			udelay (this->chip_delay);			return;		}		}		/* wait until command is processed */	while (!this->dev_ready(mtd));}/* *	Get chip for selected access */static inline void nand_get_chip (struct nand_chip *this, struct mtd_info *mtd, int new_state, int *erase_state){	DECLARE_WAITQUEUE (wait, current);	/* 	 * Grab the lock and see if the device is available 	 * For erasing, we keep the spinlock until the	 * erase command is written. 	*/retry:	spin_lock_bh (&this->chip_lock);	if (this->state == FL_READY) {		this->state = new_state;		if (new_state != FL_ERASING)			spin_unlock_bh (&this->chip_lock);		return;	}#if 0 /* This was broken. And of dubious utility */	if (this->state == FL_ERASING) {		if (new_state != FL_ERASING) {			this->state = new_state;			spin_unlock_bh (&this->chip_lock);			this->select_chip(mtd, 0);	/* select in any case */			this->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);			return;		}	}#endif	set_current_state (TASK_UNINTERRUPTIBLE);	add_wait_queue (&this->wq, &wait);	spin_unlock_bh (&this->chip_lock);	schedule ();	remove_wait_queue (&this->wq, &wait);	goto retry;}/* * Wait for command done. This applies to erase and program only * Erase can take up to 400ms and program up to 20ms according to  * general NAND and SmartMedia specs **/static int nand_wait(struct mtd_info *mtd, struct nand_chip *this, int state){	unsigned long	timeo = jiffies;	int	status;		if (state == FL_ERASING)		 timeo += (HZ * 400) / 1000;	else		 timeo += (HZ * 20) / 1000;	spin_lock_bh (&this->chip_lock);	this->cmdfunc (mtd, NAND_CMD_STATUS, -1, -1);	while (time_before(jiffies, timeo)) {				/* Check, if we were interrupted */		if (this->state != state) {			spin_unlock_bh (&this->chip_lock);			return 0;		}		if (this->dev_ready) {			if (this->dev_ready(mtd))				break;		}		if (this->read_byte(mtd) & 0x40)			break;								spin_unlock_bh (&this->chip_lock);		yield ();		spin_lock_bh (&this->chip_lock);	}	status = (int) this->read_byte(mtd);	spin_unlock_bh (&this->chip_lock);	return status;}/* *	Nand_page_program function is used for write and writev ! *	This function will always program a full page of data *	If you call it with a non page aligned buffer, you're lost :) */static int nand_write_page (struct mtd_info *mtd, struct nand_chip *this, int page, u_char *oob_buf,  struct nand_oobinfo *oobsel){	int 	i, status;	u_char	ecc_code[6], *oob_data;	int	eccmode = oobsel->useecc ? this->eccmode : NAND_ECC_NONE;	int  	*oob_config = oobsel->eccpos;		/* pad oob area, if we have no oob buffer from fs-driver */	if (!oob_buf) {		oob_data = &this->data_buf[mtd->oobblock];		for (i = 0; i < mtd->oobsize; i++)			oob_data[i] = 0xff;	} else 		oob_data = oob_buf;		/* Send command to begin auto page programming */	this->cmdfunc (mtd, NAND_CMD_SEQIN, 0x00, page);	/* Write out complete page of data, take care of eccmode */	switch (eccmode) {	/* No ecc and software ecc 3/256, write all */	case NAND_ECC_NONE:		//printk (KERN_WARNING "Writing data without ECC to NAND-FLASH is not recommended\n");		this->write_buf(mtd, this->data_poi, mtd->oobblock);		break;	case NAND_ECC_SOFT:		this->calculate_ecc(mtd, &this->data_poi[0], &(ecc_code[0]));		for (i = 0; i < 3; i++)			oob_data[oob_config[i]] = ecc_code[i];		/* Calculate and write the second ECC for 512 Byte page size */		if (mtd->oobblock == 512) {			this->calculate_ecc(mtd, &this->data_poi[256], &(ecc_code[3]));			for (i = 3; i < 6; i++)				oob_data[oob_config[i]] = ecc_code[i];		} 		this->write_buf(mtd, this->data_poi, mtd->oobblock);		break;			/* Hardware ecc 3 byte / 256 data, write first half, get ecc, then second, if 512 byte pagesize */		case NAND_ECC_HW3_256:				this->enable_hwecc(mtd, NAND_ECC_WRITE);	/* enable hardware ecc logic for write */		this->write_buf(mtd, this->data_poi, mtd->eccsize);				this->calculate_ecc(mtd, NULL, &(ecc_code[0]));		for (i = 0; i < 3; i++)			oob_data[oob_config[i]] = ecc_code[i];					if (mtd->oobblock == 512) {			this->enable_hwecc(mtd, NAND_ECC_WRITE);	/* enable hardware ecc logic for write*/			this->write_buf(mtd, &this->data_poi[mtd->eccsize], mtd->oobblock - mtd->eccsize);			this->calculate_ecc(mtd, NULL, &(ecc_code[3]));			for (i = 3; i < 6; i++)				oob_data[oob_config[i]] = ecc_code[i];		}		break;					/* Hardware ecc 3 byte / 512 byte data, write full page */		case NAND_ECC_HW3_512:			this->enable_hwecc(mtd, NAND_ECC_WRITE);	/* enable hardware ecc logic */		this->write_buf(mtd, this->data_poi, mtd->oobblock);		this->calculate_ecc(mtd, NULL, &(ecc_code[0]));		for (i = 0; i < 3; i++)			oob_data[oob_config[i]] = ecc_code[i];		break;	/* Hardware ecc 6 byte / 512 byte data, write full page */		case NAND_ECC_HW6_512:			this->enable_hwecc(mtd, NAND_ECC_WRITE);	/* enable hardware ecc logic */		this->write_buf(mtd, this->data_poi, mtd->oobblock);		this->calculate_ecc(mtd, NULL, &(ecc_code[0]));		for (i = 0; i < 6; i++)			oob_data[oob_config[i]] = ecc_code[i];		break;			default:		printk (KERN_WARNING "Invalid NAND_ECC_MODE %d\n", this->eccmode);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩一区二区三区观看| 日本二三区不卡| 成人毛片老司机大片| 丰满少妇久久久久久久| 欧美自拍偷拍午夜视频| 欧美精品日韩一本| 精品久久人人做人人爱| 久久久久高清精品| 一区在线观看免费| 亚洲一区二区三区视频在线播放| 亚洲成人综合在线| 国产在线视频不卡二| 99riav一区二区三区| 日韩亚洲国产中文字幕欧美| 久久亚洲一级片| 亚洲一区二区精品久久av| 九九国产精品视频| 91亚洲资源网| 欧美va亚洲va| 成人sese在线| 欧美大片在线观看一区| 亚洲男人的天堂一区二区| 激情小说欧美图片| 欧美日韩精品一区视频| 亚洲精品五月天| 成人福利电影精品一区二区在线观看| 欧美日韩免费高清一区色橹橹| 亚洲国产成人一区二区三区| 日韩成人精品视频| 欧美日韩在线播放三区四区| 国产精品美女久久久久aⅴ| 免费欧美在线视频| 777久久久精品| 亚洲高清一区二区三区| 在线视频欧美区| 亚洲在线视频一区| 欧美在线观看18| 亚洲国产综合人成综合网站| 91福利小视频| 亚洲一区在线观看免费| 日本精品免费观看高清观看| 自拍视频在线观看一区二区| 91免费看`日韩一区二区| 亚洲男女毛片无遮挡| 欧美在线视频日韩| 天堂va蜜桃一区二区三区| 中文文精品字幕一区二区| 成人app软件下载大全免费| 亚洲色欲色欲www| 欧美日韩中文字幕一区二区| 老司机免费视频一区二区| 久久蜜臀精品av| 欧美亚洲动漫制服丝袜| 精彩视频一区二区| 中文字幕一区三区| 日韩手机在线导航| 95精品视频在线| 美女一区二区视频| 国产精品狼人久久影院观看方式| 色婷婷亚洲综合| 国产一区二区精品在线观看| 亚洲人成影院在线观看| 欧美mv日韩mv国产网站| 91免费看视频| 国产·精品毛片| 色诱亚洲精品久久久久久| 久久精品国产第一区二区三区| 亚洲日本护士毛茸茸| 久久人人超碰精品| 日韩精品专区在线影院观看| 国产不卡免费视频| 国产一区二三区好的| 美国毛片一区二区| 日本一区中文字幕 | 国产资源在线一区| 奇米综合一区二区三区精品视频| 中文字幕在线一区| 欧美国产1区2区| 国产拍揄自揄精品视频麻豆| 精品国产制服丝袜高跟| 日韩精品一区二区三区在线| 91精品免费在线观看| 91精品国产一区二区三区| 欧美日韩高清一区二区不卡| 欧美日韩亚洲不卡| 欧美一区二区日韩| 精品电影一区二区| 欧美α欧美αv大片| 久久久国产精品不卡| 国产欧美精品国产国产专区| 国产欧美日本一区视频| 国产精品久久夜| 亚洲国产欧美在线人成| 天堂久久久久va久久久久| 秋霞午夜av一区二区三区| 日韩成人dvd| 大胆亚洲人体视频| 色婷婷精品大视频在线蜜桃视频| 欧美优质美女网站| 久久综合九色综合欧美亚洲| 中文字幕中文字幕中文字幕亚洲无线| 国产精品入口麻豆九色| 日韩精品国产精品| 成人免费毛片嘿嘿连载视频| 欧美日韩精品一区二区天天拍小说| 日韩一级大片在线| 亚洲品质自拍视频网站| 免费成人在线视频观看| 日本黄色一区二区| xnxx国产精品| 日日摸夜夜添夜夜添国产精品 | 欧美韩国日本综合| 五月婷婷色综合| 91免费国产在线| 久久久99精品免费观看不卡| 偷偷要91色婷婷| 色香色香欲天天天影视综合网| 久久夜色精品国产噜噜av| 爽好久久久欧美精品| 欧美午夜片在线看| 亚洲综合在线五月| 色偷偷88欧美精品久久久| 国产精品久久久久久久久快鸭| 精品一区二区三区久久久| 91精品国产免费| 精彩视频一区二区| 日韩写真欧美这视频| 日本成人在线视频网站| 欧美一区二区三区在线视频| 日韩中文字幕一区二区三区| 777色狠狠一区二区三区| 日韩精品欧美精品| 日韩欧美电影在线| 高清久久久久久| 中文字幕一区二区日韩精品绯色| 成人网在线播放| 亚洲欧美怡红院| 欧美日韩一级二级| 久久99久久久欧美国产| 国产拍揄自揄精品视频麻豆| 波多野结衣欧美| 亚洲国产精品麻豆| 91精品福利在线一区二区三区| 精一区二区三区| 亚洲美女少妇撒尿| 日韩情涩欧美日韩视频| 成人黄色免费短视频| 午夜欧美2019年伦理 | 91福利小视频| 精品一区二区综合| 欧美videofree性高清杂交| 午夜激情一区二区| 91成人免费在线视频| 亚洲精品视频在线观看网站| 欧洲生活片亚洲生活在线观看| 国产精品电影一区二区三区| 亚洲电影欧美电影有声小说| 欧美一区二区精品| www.成人在线| 精品一区二区三区免费毛片爱| 亚洲免费毛片网站| 国产亚洲一区字幕| 日韩一区二区三区在线观看| 91年精品国产| www.亚洲色图| 成人综合在线网站| 黄色成人免费在线| 国产日产精品一区| 欧美xxxx老人做受| 在线成人免费观看| 欧美日韩一卡二卡三卡| 欧美亚洲免费在线一区| 色爱区综合激月婷婷| 成人午夜在线免费| www.成人网.com| 91网址在线看| 在线亚洲高清视频| 欧美区一区二区三区| 欧美午夜一区二区三区| 欧美日韩视频在线一区二区| 欧美三级韩国三级日本三斤| 欧美亚洲丝袜传媒另类| 欧美日韩国产首页| 91精品国产综合久久久久| 91精品国产乱| 久久久久久久久一| 国产精品美女久久久久aⅴ国产馆| 亚洲欧洲色图综合| 亚洲国产三级在线| 久久精品国产免费| 91小视频在线| 日韩一区二区三区四区| 国产精品久久久久天堂| 一区二区三区在线观看视频| 日本91福利区| 91在线免费看| 精品久久久久久久久久久久久久久久久 | 成人免费在线观看入口| 首页综合国产亚洲丝袜| 成人在线视频首页|