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

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

?? alauda.c

?? usb 子設備程序 支持sd卡 mouse keyboard 的最單單的驅動程序 gcc編譯 支持
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* * Driver for Alauda-based card readers * * Current development and maintenance by: *   (c) 2005 Daniel Drake <dsd@gentoo.org> * * The 'Alauda' is a chip manufacturered by RATOC for OEM use. * * Alauda implements a vendor-specific command set to access two media reader * ports (XD, SmartMedia). This driver converts SCSI commands to the commands * which are accepted by these devices. * * The driver was developed through reverse-engineering, with the help of the * sddr09 driver which has many similarities, and with some help from the * (very old) vendor-supplied GPL sma03 driver. * * For protocol info, see http://alauda.sourceforge.net * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2, or (at your option) any * later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 675 Mass Ave, Cambridge, MA 02139, USA. */#include <scsi/scsi.h>#include <scsi/scsi_cmnd.h>#include <scsi/scsi_device.h>#include "usb.h"#include "transport.h"#include "protocol.h"#include "debug.h"#include "alauda.h"#define short_pack(lsb,msb) ( ((u16)(lsb)) | ( ((u16)(msb))<<8 ) )#define LSB_of(s) ((s)&0xFF)#define MSB_of(s) ((s)>>8)#define MEDIA_PORT(us) us->srb->device->lun#define MEDIA_INFO(us) ((struct alauda_info *)us->extra)->port[MEDIA_PORT(us)]#define PBA_LO(pba) ((pba & 0xF) << 5)#define PBA_HI(pba) (pba >> 3)#define PBA_ZONE(pba) (pba >> 11)/* * Media handling */struct alauda_card_info {	unsigned char id;		/* id byte */	unsigned char chipshift;	/* 1<<cs bytes total capacity */	unsigned char pageshift;	/* 1<<ps bytes in a page */	unsigned char blockshift;	/* 1<<bs pages per block */	unsigned char zoneshift;	/* 1<<zs blocks per zone */};static struct alauda_card_info alauda_card_ids[] = {	/* NAND flash */	{ 0x6e, 20, 8, 4, 8},	/* 1 MB */	{ 0xe8, 20, 8, 4, 8},	/* 1 MB */	{ 0xec, 20, 8, 4, 8},	/* 1 MB */	{ 0x64, 21, 8, 4, 9}, 	/* 2 MB */	{ 0xea, 21, 8, 4, 9},	/* 2 MB */	{ 0x6b, 22, 9, 4, 9},	/* 4 MB */	{ 0xe3, 22, 9, 4, 9},	/* 4 MB */	{ 0xe5, 22, 9, 4, 9},	/* 4 MB */	{ 0xe6, 23, 9, 4, 10},	/* 8 MB */	{ 0x73, 24, 9, 5, 10},	/* 16 MB */	{ 0x75, 25, 9, 5, 10},	/* 32 MB */	{ 0x76, 26, 9, 5, 10},	/* 64 MB */	{ 0x79, 27, 9, 5, 10},	/* 128 MB */	{ 0x71, 28, 9, 5, 10},	/* 256 MB */	/* MASK ROM */	{ 0x5d, 21, 9, 4, 8},	/* 2 MB */	{ 0xd5, 22, 9, 4, 9},	/* 4 MB */	{ 0xd6, 23, 9, 4, 10},	/* 8 MB */	{ 0x57, 24, 9, 4, 11},	/* 16 MB */	{ 0x58, 25, 9, 4, 12},	/* 32 MB */	{ 0,}};static struct alauda_card_info *alauda_card_find_id(unsigned char id) {	int i;	for (i = 0; alauda_card_ids[i].id != 0; i++)		if (alauda_card_ids[i].id == id)			return &(alauda_card_ids[i]);	return NULL;}/* * ECC computation. */static unsigned char parity[256];static unsigned char ecc2[256];static void nand_init_ecc(void) {	int i, j, a;	parity[0] = 0;	for (i = 1; i < 256; i++)		parity[i] = (parity[i&(i-1)] ^ 1);	for (i = 0; i < 256; i++) {		a = 0;		for (j = 0; j < 8; j++) {			if (i & (1<<j)) {				if ((j & 1) == 0)					a ^= 0x04;				if ((j & 2) == 0)					a ^= 0x10;				if ((j & 4) == 0)					a ^= 0x40;			}		}		ecc2[i] = ~(a ^ (a<<1) ^ (parity[i] ? 0xa8 : 0));	}}/* compute 3-byte ecc on 256 bytes */static void nand_compute_ecc(unsigned char *data, unsigned char *ecc) {	int i, j, a;	unsigned char par, bit, bits[8];	par = 0;	for (j = 0; j < 8; j++)		bits[j] = 0;	/* collect 16 checksum bits */	for (i = 0; i < 256; i++) {		par ^= data[i];		bit = parity[data[i]];		for (j = 0; j < 8; j++)			if ((i & (1<<j)) == 0)				bits[j] ^= bit;	}	/* put 4+4+4 = 12 bits in the ecc */	a = (bits[3] << 6) + (bits[2] << 4) + (bits[1] << 2) + bits[0];	ecc[0] = ~(a ^ (a<<1) ^ (parity[par] ? 0xaa : 0));	a = (bits[7] << 6) + (bits[6] << 4) + (bits[5] << 2) + bits[4];	ecc[1] = ~(a ^ (a<<1) ^ (parity[par] ? 0xaa : 0));	ecc[2] = ecc2[par];}static int nand_compare_ecc(unsigned char *data, unsigned char *ecc) {	return (data[0] == ecc[0] && data[1] == ecc[1] && data[2] == ecc[2]);}static void nand_store_ecc(unsigned char *data, unsigned char *ecc) {	memcpy(data, ecc, 3);}/* * Alauda driver *//* * Forget our PBA <---> LBA mappings for a particular port */static void alauda_free_maps (struct alauda_media_info *media_info){	unsigned int shift = media_info->zoneshift		+ media_info->blockshift + media_info->pageshift;	unsigned int num_zones = media_info->capacity >> shift;	unsigned int i;	if (media_info->lba_to_pba != NULL)		for (i = 0; i < num_zones; i++) {			kfree(media_info->lba_to_pba[i]);			media_info->lba_to_pba[i] = NULL;		}	if (media_info->pba_to_lba != NULL)		for (i = 0; i < num_zones; i++) {			kfree(media_info->pba_to_lba[i]);			media_info->pba_to_lba[i] = NULL;		}}/* * Returns 2 bytes of status data * The first byte describes media status, and second byte describes door status */static int alauda_get_media_status(struct us_data *us, unsigned char *data){	int rc;	unsigned char command;	if (MEDIA_PORT(us) == ALAUDA_PORT_XD)		command = ALAUDA_GET_XD_MEDIA_STATUS;	else		command = ALAUDA_GET_SM_MEDIA_STATUS;	rc = usb_stor_ctrl_transfer(us, us->recv_ctrl_pipe,		command, 0xc0, 0, 1, data, 2);	US_DEBUGP("alauda_get_media_status: Media status %02X %02X\n",		data[0], data[1]);	return rc;}/* * Clears the "media was changed" bit so that we know when it changes again * in the future. */static int alauda_ack_media(struct us_data *us){	unsigned char command;	if (MEDIA_PORT(us) == ALAUDA_PORT_XD)		command = ALAUDA_ACK_XD_MEDIA_CHANGE;	else		command = ALAUDA_ACK_SM_MEDIA_CHANGE;	return usb_stor_ctrl_transfer(us, us->send_ctrl_pipe,		command, 0x40, 0, 1, NULL, 0);}/* * Retrieves a 4-byte media signature, which indicates manufacturer, capacity, * and some other details. */static int alauda_get_media_signature(struct us_data *us, unsigned char *data){	unsigned char command;	if (MEDIA_PORT(us) == ALAUDA_PORT_XD)		command = ALAUDA_GET_XD_MEDIA_SIG;	else		command = ALAUDA_GET_SM_MEDIA_SIG;	return usb_stor_ctrl_transfer(us, us->recv_ctrl_pipe,		command, 0xc0, 0, 0, data, 4);}/* * Resets the media status (but not the whole device?) */static int alauda_reset_media(struct us_data *us){	unsigned char *command = us->iobuf;	memset(command, 0, 9);	command[0] = ALAUDA_BULK_CMD;	command[1] = ALAUDA_BULK_RESET_MEDIA;	command[8] = MEDIA_PORT(us);	return usb_stor_bulk_transfer_buf(us, us->send_bulk_pipe,		command, 9, NULL);}/* * Examines the media and deduces capacity, etc. */static int alauda_init_media(struct us_data *us){	unsigned char *data = us->iobuf;	int ready = 0;	struct alauda_card_info *media_info;	unsigned int num_zones;	while (ready == 0) {		msleep(20);		if (alauda_get_media_status(us, data) != USB_STOR_XFER_GOOD)			return USB_STOR_TRANSPORT_ERROR;		if (data[0] & 0x10)			ready = 1;	}	US_DEBUGP("alauda_init_media: We are ready for action!\n");	if (alauda_ack_media(us) != USB_STOR_XFER_GOOD)		return USB_STOR_TRANSPORT_ERROR;	msleep(10);	if (alauda_get_media_status(us, data) != USB_STOR_XFER_GOOD)		return USB_STOR_TRANSPORT_ERROR;	if (data[0] != 0x14) {		US_DEBUGP("alauda_init_media: Media not ready after ack\n");		return USB_STOR_TRANSPORT_ERROR;	}	if (alauda_get_media_signature(us, data) != USB_STOR_XFER_GOOD)		return USB_STOR_TRANSPORT_ERROR;	US_DEBUGP("alauda_init_media: Media signature: %02X %02X %02X %02X\n",		data[0], data[1], data[2], data[3]);	media_info = alauda_card_find_id(data[1]);	if (media_info == NULL) {		printk("alauda_init_media: Unrecognised media signature: "			"%02X %02X %02X %02X\n",			data[0], data[1], data[2], data[3]);		return USB_STOR_TRANSPORT_ERROR;	}	MEDIA_INFO(us).capacity = 1 << media_info->chipshift;	US_DEBUGP("Found media with capacity: %ldMB\n",		MEDIA_INFO(us).capacity >> 20);	MEDIA_INFO(us).pageshift = media_info->pageshift;	MEDIA_INFO(us).blockshift = media_info->blockshift;	MEDIA_INFO(us).zoneshift = media_info->zoneshift;	MEDIA_INFO(us).pagesize = 1 << media_info->pageshift;	MEDIA_INFO(us).blocksize = 1 << media_info->blockshift;	MEDIA_INFO(us).zonesize = 1 << media_info->zoneshift;	MEDIA_INFO(us).uzonesize = ((1 << media_info->zoneshift) / 128) * 125;	MEDIA_INFO(us).blockmask = MEDIA_INFO(us).blocksize - 1;	num_zones = MEDIA_INFO(us).capacity >> (MEDIA_INFO(us).zoneshift		+ MEDIA_INFO(us).blockshift + MEDIA_INFO(us).pageshift);	MEDIA_INFO(us).pba_to_lba = kcalloc(num_zones, sizeof(u16*), GFP_NOIO);	MEDIA_INFO(us).lba_to_pba = kcalloc(num_zones, sizeof(u16*), GFP_NOIO);	if (alauda_reset_media(us) != USB_STOR_XFER_GOOD)		return USB_STOR_TRANSPORT_ERROR;	return USB_STOR_TRANSPORT_GOOD;}/* * Examines the media status and does the right thing when the media has gone, * appeared, or changed. */static int alauda_check_media(struct us_data *us){	struct alauda_info *info = (struct alauda_info *) us->extra;	unsigned char status[2];	int rc;	rc = alauda_get_media_status(us, status);	/* Check for no media or door open */	if ((status[0] & 0x80) || ((status[0] & 0x1F) == 0x10)		|| ((status[1] & 0x01) == 0)) {		US_DEBUGP("alauda_check_media: No media, or door open\n");		alauda_free_maps(&MEDIA_INFO(us));		info->sense_key = 0x02;		info->sense_asc = 0x3A;		info->sense_ascq = 0x00;		return USB_STOR_TRANSPORT_FAILED;	}	/* Check for media change */	if (status[0] & 0x08) {		US_DEBUGP("alauda_check_media: Media change detected\n");		alauda_free_maps(&MEDIA_INFO(us));		alauda_init_media(us);		info->sense_key = UNIT_ATTENTION;		info->sense_asc = 0x28;		info->sense_ascq = 0x00;		return USB_STOR_TRANSPORT_FAILED;	}	return USB_STOR_TRANSPORT_GOOD;}/* * Checks the status from the 2nd status register * Returns 3 bytes of status data, only the first is known */static int alauda_check_status2(struct us_data *us){	int rc;	unsigned char command[] = {		ALAUDA_BULK_CMD, ALAUDA_BULK_GET_STATUS2,		0, 0, 0, 0, 3, 0, MEDIA_PORT(us)	};	unsigned char data[3];	rc = usb_stor_bulk_transfer_buf(us, us->send_bulk_pipe,		command, 9, NULL);	if (rc != USB_STOR_XFER_GOOD)		return rc;	rc = usb_stor_bulk_transfer_buf(us, us->recv_bulk_pipe,		data, 3, NULL);	if (rc != USB_STOR_XFER_GOOD)		return rc;	US_DEBUGP("alauda_check_status2: %02X %02X %02X\n", data[0], data[1], data[2]);	if (data[0] & ALAUDA_STATUS_ERROR)		return USB_STOR_XFER_ERROR;	return USB_STOR_XFER_GOOD;}/* * Gets the redundancy data for the first page of a PBA * Returns 16 bytes. */static int alauda_get_redu_data(struct us_data *us, u16 pba, unsigned char *data){	int rc;	unsigned char command[] = {		ALAUDA_BULK_CMD, ALAUDA_BULK_GET_REDU_DATA,		PBA_HI(pba), PBA_ZONE(pba), 0, PBA_LO(pba), 0, 0, MEDIA_PORT(us)	};	rc = usb_stor_bulk_transfer_buf(us, us->send_bulk_pipe,		command, 9, NULL);	if (rc != USB_STOR_XFER_GOOD)		return rc;	return usb_stor_bulk_transfer_buf(us, us->recv_bulk_pipe,		data, 16, NULL);}/* * Finds the first unused PBA in a zone * Returns the absolute PBA of an unused PBA, or 0 if none found. */static u16 alauda_find_unused_pba(struct alauda_media_info *info,	unsigned int zone){	u16 *pba_to_lba = info->pba_to_lba[zone];	unsigned int i;	for (i = 0; i < info->zonesize; i++)		if (pba_to_lba[i] == UNDEF)			return (zone << info->zoneshift) + i;	return 0;}/* * Reads the redundancy data for all PBA's in a zone * Produces lba <--> pba mappings */static int alauda_read_map(struct us_data *us, unsigned int zone){	unsigned char *data = us->iobuf;	int result;	int i, j;	unsigned int zonesize = MEDIA_INFO(us).zonesize;	unsigned int uzonesize = MEDIA_INFO(us).uzonesize;	unsigned int lba_offset, lba_real, blocknum;	unsigned int zone_base_lba = zone * uzonesize;	unsigned int zone_base_pba = zone * zonesize;	u16 *lba_to_pba = kcalloc(zonesize, sizeof(u16), GFP_NOIO);	u16 *pba_to_lba = kcalloc(zonesize, sizeof(u16), GFP_NOIO);	if (lba_to_pba == NULL || pba_to_lba == NULL) {		result = USB_STOR_TRANSPORT_ERROR;		goto error;	}	US_DEBUGP("alauda_read_map: Mapping blocks for zone %d\n", zone);	/* 1024 PBA's per zone */	for (i = 0; i < zonesize; i++)		lba_to_pba[i] = pba_to_lba[i] = UNDEF;	for (i = 0; i < zonesize; i++) {		blocknum = zone_base_pba + i;		result = alauda_get_redu_data(us, blocknum, data);		if (result != USB_STOR_XFER_GOOD) {			result = USB_STOR_TRANSPORT_ERROR;			goto error;		}		/* special PBAs have control field 0^16 */		for (j = 0; j < 16; j++)			if (data[j] != 0)				goto nonz;		pba_to_lba[i] = UNUSABLE;		US_DEBUGP("alauda_read_map: PBA %d has no logical mapping\n", blocknum);		continue;	nonz:		/* unwritten PBAs have control field FF^16 */		for (j = 0; j < 16; j++)			if (data[j] != 0xff)				goto nonff;		continue;	nonff:		/* normal PBAs start with six FFs */		if (j < 6) {			US_DEBUGP("alauda_read_map: PBA %d has no logical mapping: "			       "reserved area = %02X%02X%02X%02X "			       "data status %02X block status %02X\n",			       blocknum, data[0], data[1], data[2], data[3],			       data[4], data[5]);			pba_to_lba[i] = UNUSABLE;			continue;		}		if ((data[6] >> 4) != 0x01) {			US_DEBUGP("alauda_read_map: PBA %d has invalid address "			       "field %02X%02X/%02X%02X\n",			       blocknum, data[6], data[7], data[11], data[12]);			pba_to_lba[i] = UNUSABLE;			continue;		}		/* check even parity */		if (parity[data[6] ^ data[7]]) {			printk("alauda_read_map: Bad parity in LBA for block %d"			       " (%02X %02X)\n", i, data[6], data[7]);			pba_to_lba[i] = UNUSABLE;			continue;		}		lba_offset = short_pack(data[7], data[6]);		lba_offset = (lba_offset & 0x07FF) >> 1;		lba_real = lba_offset + zone_base_lba;		/*		 * Every 1024 physical blocks ("zone"), the LBA numbers		 * go back to zero, but are within a higher block of LBA's.		 * Also, there is a maximum of 1000 LBA's per zone.		 * In other words, in PBA 1024-2047 you will find LBA 0-999		 * which are really LBA 1000-1999. This allows for 24 bad		 * or special physical blocks per zone.		 */		if (lba_offset >= uzonesize) {			printk("alauda_read_map: Bad low LBA %d for block %d\n",			       lba_real, blocknum);			continue;		}		if (lba_to_pba[lba_offset] != UNDEF) {			printk("alauda_read_map: LBA %d seen for PBA %d and %d\n",			       lba_real, lba_to_pba[lba_offset], blocknum);			continue;		}		pba_to_lba[i] = lba_real;		lba_to_pba[lba_offset] = blocknum;		continue;	}	MEDIA_INFO(us).lba_to_pba[zone] = lba_to_pba;	MEDIA_INFO(us).pba_to_lba[zone] = pba_to_lba;	result = 0;	goto out;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线观看国产日韩| 高清久久久久久| 欧美日韩国产一二三| 亚洲一区二区美女| 欧美在线一二三四区| 日本欧美久久久久免费播放网| 欧美日韩大陆在线| 久久99热这里只有精品| 欧美国产一区视频在线观看| 色婷婷精品大在线视频| 午夜久久久久久| 久久久久久免费网| 99精品视频在线免费观看| 亚洲成人av在线电影| 精品国产乱码久久久久久久| 国产v日产∨综合v精品视频| 国产精品免费视频观看| 欧美视频一区二区| 精品一区二区三区欧美| 中文在线资源观看网站视频免费不卡| 91蜜桃免费观看视频| 午夜精品在线视频一区| 久久久久9999亚洲精品| 欧美在线一区二区三区| 国产精品一区二区无线| 一区二区在线观看免费视频播放| 欧美日本韩国一区二区三区视频 | 99精品视频一区二区| 亚洲精品国产高清久久伦理二区| 欧美一区二区精品久久911| 成人av综合一区| 日本不卡一区二区| 国产精品剧情在线亚洲| 欧美福利一区二区| 成人激情小说乱人伦| 蜜臀国产一区二区三区在线播放| 国产亚洲1区2区3区| 欧美嫩在线观看| 国产91高潮流白浆在线麻豆| 亚洲444eee在线观看| 国产精品无遮挡| 精品国产网站在线观看| 欧洲视频一区二区| 国产不卡在线一区| 蜜臀av性久久久久蜜臀aⅴ| 国产精品美女视频| 久久午夜电影网| 日韩一级二级三级精品视频| 91成人网在线| 99天天综合性| 国产在线视频精品一区| 性欧美疯狂xxxxbbbb| 国产精品乱子久久久久| 欧美成人一区二区三区片免费| 一本一道久久a久久精品| 丁香婷婷综合激情五月色| 麻豆成人在线观看| 奇米四色…亚洲| 三级成人在线视频| 亚洲国产美国国产综合一区二区| 国产精品久久久久久一区二区三区| 欧美一区二区三级| 在线成人高清不卡| 欧美在线高清视频| 在线欧美一区二区| 色香蕉成人二区免费| 91影院在线免费观看| 国产·精品毛片| 国产精品2024| 国产999精品久久| 国产一区不卡精品| 国内精品第一页| 精品一区二区在线看| 蜜桃av噜噜一区| 人人狠狠综合久久亚洲| 青娱乐精品在线视频| 日韩激情中文字幕| 欧美a级一区二区| 久久精品99国产精品日本| 秋霞av亚洲一区二区三| 精品一区二区免费看| 久久se精品一区二区| 黄色资源网久久资源365| 蜜桃av一区二区三区| 精品亚洲国产成人av制服丝袜| 久久99国产精品免费网站| 国产一区二区三区免费在线观看| 国内外精品视频| 成人中文字幕在线| 从欧美一区二区三区| caoporn国产一区二区| 色综合色综合色综合色综合色综合| 91亚洲国产成人精品一区二区三| 亚洲午夜精品一区二区三区他趣| 精品国产第一区二区三区观看体验| 成人99免费视频| 韩国成人精品a∨在线观看| 午夜欧美电影在线观看| 一区二区视频在线看| 2023国产一二三区日本精品2022| 91麻豆精品国产91久久久使用方法| 成人午夜伦理影院| 亚洲综合色视频| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 欧美影院一区二区| 欧美色中文字幕| 欧美成人高清电影在线| 日本一区二区成人| 亚洲黄色免费电影| 久久av资源站| 91在线视频免费观看| 在线不卡a资源高清| 久久精品在线免费观看| 亚洲欧美日韩精品久久久久| 视频精品一区二区| 成人国产在线观看| 欧美一区二区在线免费播放| 欧美国产97人人爽人人喊| 亚洲一区二区三区国产| 国产伦精品一区二区三区免费迷 | 欧美va日韩va| 亚洲天堂免费看| 久久99最新地址| 在线一区二区三区四区| 久久久久国产精品人| 香蕉久久一区二区不卡无毒影院| 国产麻豆一精品一av一免费| 91国模大尺度私拍在线视频| 欧美成人精品二区三区99精品| 中文字幕一区二区三区精华液| 奇米影视7777精品一区二区| 91美女精品福利| 久久久久久久综合日本| 热久久国产精品| 欧美日韩综合色| 国产精品高潮久久久久无| 精彩视频一区二区三区| 欧美日韩一区 二区 三区 久久精品| 亚洲精品在线一区二区| 水野朝阳av一区二区三区| 91美女福利视频| 国产精品不卡一区二区三区| 黄网站免费久久| 日韩欧美不卡在线观看视频| 亚洲午夜久久久久久久久久久| 波多野结衣一区二区三区 | 天天综合天天做天天综合| 色婷婷一区二区三区四区| 国产精品三级av在线播放| 国产激情一区二区三区桃花岛亚洲| 91精品国产综合久久久蜜臀粉嫩| 亚洲激情六月丁香| 91小视频免费观看| 亚洲人成网站色在线观看| 99免费精品在线| 中文字幕视频一区二区三区久| 国产盗摄一区二区三区| 精品国产凹凸成av人网站| 麻豆91在线观看| 亚洲精品一区二区三区蜜桃下载| 肉肉av福利一精品导航| 欧美日韩国产不卡| 午夜精品一区二区三区电影天堂| 91久久久免费一区二区| 亚洲精品日韩专区silk| 在线观看日产精品| 一区二区三区欧美日韩| 欧美性色黄大片| 午夜电影久久久| 欧美一级黄色大片| 免费高清在线视频一区·| 日韩亚洲欧美成人一区| 蜜臀av性久久久久蜜臀aⅴ四虎| 欧美高清一级片在线| 美女久久久精品| 欧美va在线播放| 国产精品99久久久久久似苏梦涵 | 日本免费新一区视频| 欧美日韩dvd在线观看| 午夜电影一区二区三区| 日韩一区二区精品葵司在线 | 国产精品亚洲一区二区三区妖精| 精品欧美一区二区三区精品久久| 美洲天堂一区二卡三卡四卡视频| 日韩精品一区国产麻豆| 国产一区二区三区在线观看免费 | 日韩国产精品久久久| 日韩丝袜情趣美女图片| 激情六月婷婷综合| 国产精品久久精品日日| 欧美性猛交xxxx乱大交退制版| 婷婷开心激情综合| 精品国产乱码久久久久久老虎 | 亚洲图片你懂的| 欧美精品久久一区| 韩国午夜理伦三级不卡影院| 中文字幕中文字幕在线一区| 欧美日韩在线观看一区二区| 韩国午夜理伦三级不卡影院| 亚洲欧美另类小说视频|