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

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

?? wbsd.c

?? mmc 記憶棒驅動 for linux ,可以看一看
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* *  linux/drivers/mmc/wbsd.c - Winbond W83L51xD SD/MMC driver * *  Copyright (C) 2004-2005 Pierre Ossman, All Rights Reserved. * * 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. * * * Warning! * * Changes to the FIFO system should be done with extreme care since * the hardware is full of bugs related to the FIFO. Known issues are: * * - FIFO size field in FSR is always zero. * * - FIFO interrupts tend not to work as they should. Interrupts are *   triggered only for full/empty events, not for threshold values. * * - On APIC systems the FIFO empty interrupt is sometimes lost. */#include <linux/config.h>#include <linux/module.h>#include <linux/moduleparam.h>#include <linux/init.h>#include <linux/ioport.h>#include <linux/platform_device.h>#include <linux/interrupt.h>#include <linux/dma-mapping.h>#include <linux/delay.h>#include <linux/pnp.h>#include <linux/highmem.h>#include <linux/mmc/host.h>#include <linux/mmc/protocol.h>#include <asm/io.h>#include <asm/dma.h>#include <asm/scatterlist.h>#include "wbsd.h"#define DRIVER_NAME "wbsd"#define DRIVER_VERSION "1.5"#ifdef CONFIG_MMC_DEBUG#define DBG(x...) \	printk(KERN_DEBUG DRIVER_NAME ": " x)#define DBGF(f, x...) \	printk(KERN_DEBUG DRIVER_NAME " [%s()]: " f, __func__ , ##x)#else#define DBG(x...)	do { } while (0)#define DBGF(x...)	do { } while (0)#endif/* * Device resources */#ifdef CONFIG_PNPstatic const struct pnp_device_id pnp_dev_table[] = {	{ "WEC0517", 0 },	{ "WEC0518", 0 },	{ "", 0 },};MODULE_DEVICE_TABLE(pnp, pnp_dev_table);#endif /* CONFIG_PNP */static const int config_ports[] = { 0x2E, 0x4E };static const int unlock_codes[] = { 0x83, 0x87 };static const int valid_ids[] = {	0x7112,	};#ifdef CONFIG_PNPstatic unsigned int nopnp = 0;#elsestatic const unsigned int nopnp = 1;#endifstatic unsigned int io = 0x248;static unsigned int irq = 6;static int dma = 2;/* * Basic functions */static inline void wbsd_unlock_config(struct wbsd_host *host){	BUG_ON(host->config == 0);	outb(host->unlock_code, host->config);	outb(host->unlock_code, host->config);}static inline void wbsd_lock_config(struct wbsd_host *host){	BUG_ON(host->config == 0);	outb(LOCK_CODE, host->config);}static inline void wbsd_write_config(struct wbsd_host *host, u8 reg, u8 value){	BUG_ON(host->config == 0);	outb(reg, host->config);	outb(value, host->config + 1);}static inline u8 wbsd_read_config(struct wbsd_host *host, u8 reg){	BUG_ON(host->config == 0);	outb(reg, host->config);	return inb(host->config + 1);}static inline void wbsd_write_index(struct wbsd_host *host, u8 index, u8 value){	outb(index, host->base + WBSD_IDXR);	outb(value, host->base + WBSD_DATAR);}static inline u8 wbsd_read_index(struct wbsd_host *host, u8 index){	outb(index, host->base + WBSD_IDXR);	return inb(host->base + WBSD_DATAR);}/* * Common routines */static void wbsd_init_device(struct wbsd_host *host){	u8 setup, ier;	/*	 * Reset chip (SD/MMC part) and fifo.	 */	setup = wbsd_read_index(host, WBSD_IDX_SETUP);	setup |= WBSD_FIFO_RESET | WBSD_SOFT_RESET;	wbsd_write_index(host, WBSD_IDX_SETUP, setup);	/*	 * Set DAT3 to input	 */	setup &= ~WBSD_DAT3_H;	wbsd_write_index(host, WBSD_IDX_SETUP, setup);	host->flags &= ~WBSD_FIGNORE_DETECT;	/*	 * Read back default clock.	 */	host->clk = wbsd_read_index(host, WBSD_IDX_CLK);	/*	 * Power down port.	 */	outb(WBSD_POWER_N, host->base + WBSD_CSR);	/*	 * Set maximum timeout.	 */	wbsd_write_index(host, WBSD_IDX_TAAC, 0x7F);	/*	 * Test for card presence	 */	if (inb(host->base + WBSD_CSR) & WBSD_CARDPRESENT)		host->flags |= WBSD_FCARD_PRESENT;	else		host->flags &= ~WBSD_FCARD_PRESENT;	/*	 * Enable interesting interrupts.	 */	ier = 0;	ier |= WBSD_EINT_CARD;	ier |= WBSD_EINT_FIFO_THRE;	ier |= WBSD_EINT_CCRC;	ier |= WBSD_EINT_TIMEOUT;	ier |= WBSD_EINT_CRC;	ier |= WBSD_EINT_TC;	outb(ier, host->base + WBSD_EIR);	/*	 * Clear interrupts.	 */	inb(host->base + WBSD_ISR);}static void wbsd_reset(struct wbsd_host *host){	u8 setup;	printk(KERN_ERR "%s: Resetting chip\n", mmc_hostname(host->mmc));	/*	 * Soft reset of chip (SD/MMC part).	 */	setup = wbsd_read_index(host, WBSD_IDX_SETUP);	setup |= WBSD_SOFT_RESET;	wbsd_write_index(host, WBSD_IDX_SETUP, setup);}static void wbsd_request_end(struct wbsd_host *host, struct mmc_request *mrq){	unsigned long dmaflags;	DBGF("Ending request, cmd (%x)\n", mrq->cmd->opcode);	if (host->dma >= 0) {		/*		 * Release ISA DMA controller.		 */		dmaflags = claim_dma_lock();		disable_dma(host->dma);		clear_dma_ff(host->dma);		release_dma_lock(dmaflags);		/*		 * Disable DMA on host.		 */		wbsd_write_index(host, WBSD_IDX_DMA, 0);	}	host->mrq = NULL;	/*	 * MMC layer might call back into the driver so first unlock.	 */	spin_unlock(&host->lock);	mmc_request_done(host->mmc, mrq);	spin_lock(&host->lock);}/* * Scatter/gather functions */static inline void wbsd_init_sg(struct wbsd_host *host, struct mmc_data *data){	/*	 * Get info. about SG list from data structure.	 */	host->cur_sg = data->sg;	host->num_sg = data->sg_len;	host->offset = 0;	host->remain = host->cur_sg->length;}static inline int wbsd_next_sg(struct wbsd_host *host){	/*	 * Skip to next SG entry.	 */	host->cur_sg++;	host->num_sg--;	/*	 * Any entries left?	 */	if (host->num_sg > 0) {		host->offset = 0;		host->remain = host->cur_sg->length;	}	return host->num_sg;}static inline char *wbsd_kmap_sg(struct wbsd_host *host){	host->mapped_sg = kmap_atomic(host->cur_sg->page, KM_BIO_SRC_IRQ) +		host->cur_sg->offset;	return host->mapped_sg;}static inline void wbsd_kunmap_sg(struct wbsd_host *host){	kunmap_atomic(host->mapped_sg, KM_BIO_SRC_IRQ);}static inline void wbsd_sg_to_dma(struct wbsd_host *host, struct mmc_data *data){	unsigned int len, i, size;	struct scatterlist *sg;	char *dmabuf = host->dma_buffer;	char *sgbuf;	size = host->size;	sg = data->sg;	len = data->sg_len;	/*	 * Just loop through all entries. Size might not	 * be the entire list though so make sure that	 * we do not transfer too much.	 */	for (i = 0; i < len; i++) {		sgbuf = kmap_atomic(sg[i].page, KM_BIO_SRC_IRQ) + sg[i].offset;		if (size < sg[i].length)			memcpy(dmabuf, sgbuf, size);		else			memcpy(dmabuf, sgbuf, sg[i].length);		kunmap_atomic(sgbuf, KM_BIO_SRC_IRQ);		dmabuf += sg[i].length;		if (size < sg[i].length)			size = 0;		else			size -= sg[i].length;		if (size == 0)			break;	}	/*	 * Check that we didn't get a request to transfer	 * more data than can fit into the SG list.	 */	BUG_ON(size != 0);	host->size -= size;}static inline void wbsd_dma_to_sg(struct wbsd_host *host, struct mmc_data *data){	unsigned int len, i, size;	struct scatterlist *sg;	char *dmabuf = host->dma_buffer;	char *sgbuf;	size = host->size;	sg = data->sg;	len = data->sg_len;	/*	 * Just loop through all entries. Size might not	 * be the entire list though so make sure that	 * we do not transfer too much.	 */	for (i = 0; i < len; i++) {		sgbuf = kmap_atomic(sg[i].page, KM_BIO_SRC_IRQ) + sg[i].offset;		if (size < sg[i].length)			memcpy(sgbuf, dmabuf, size);		else			memcpy(sgbuf, dmabuf, sg[i].length);		kunmap_atomic(sgbuf, KM_BIO_SRC_IRQ);		dmabuf += sg[i].length;		if (size < sg[i].length)			size = 0;		else			size -= sg[i].length;		if (size == 0)			break;	}	/*	 * Check that we didn't get a request to transfer	 * more data than can fit into the SG list.	 */	BUG_ON(size != 0);	host->size -= size;}/* * Command handling */static inline void wbsd_get_short_reply(struct wbsd_host *host,					struct mmc_command *cmd){	/*	 * Correct response type?	 */	if (wbsd_read_index(host, WBSD_IDX_RSPLEN) != WBSD_RSP_SHORT) {		cmd->error = MMC_ERR_INVALID;		return;	}	cmd->resp[0]  = wbsd_read_index(host, WBSD_IDX_RESP12) << 24;	cmd->resp[0] |= wbsd_read_index(host, WBSD_IDX_RESP13) << 16;	cmd->resp[0] |= wbsd_read_index(host, WBSD_IDX_RESP14) << 8;	cmd->resp[0] |= wbsd_read_index(host, WBSD_IDX_RESP15) << 0;	cmd->resp[1]  = wbsd_read_index(host, WBSD_IDX_RESP16) << 24;}static inline void wbsd_get_long_reply(struct wbsd_host *host,	struct mmc_command *cmd){	int i;	/*	 * Correct response type?	 */	if (wbsd_read_index(host, WBSD_IDX_RSPLEN) != WBSD_RSP_LONG) {		cmd->error = MMC_ERR_INVALID;		return;	}	for (i = 0; i < 4; i++) {		cmd->resp[i] =			wbsd_read_index(host, WBSD_IDX_RESP1 + i * 4) << 24;		cmd->resp[i] |=			wbsd_read_index(host, WBSD_IDX_RESP2 + i * 4) << 16;		cmd->resp[i] |=			wbsd_read_index(host, WBSD_IDX_RESP3 + i * 4) << 8;		cmd->resp[i] |=			wbsd_read_index(host, WBSD_IDX_RESP4 + i * 4) << 0;	}}static void wbsd_send_command(struct wbsd_host *host, struct mmc_command *cmd){	int i;	u8 status, isr;	DBGF("Sending cmd (%x)\n", cmd->opcode);	/*	 * Clear accumulated ISR. The interrupt routine	 * will fill this one with events that occur during	 * transfer.	 */	host->isr = 0;	/*	 * Send the command (CRC calculated by host).	 */	outb(cmd->opcode, host->base + WBSD_CMDR);	for (i = 3; i >= 0; i--)		outb((cmd->arg >> (i * 8)) & 0xff, host->base + WBSD_CMDR);	cmd->error = MMC_ERR_NONE;	/*	 * Wait for the request to complete.	 */	do {		status = wbsd_read_index(host, WBSD_IDX_STATUS);	} while (status & WBSD_CARDTRAFFIC);	/*	 * Do we expect a reply?	 */	if (cmd->flags & MMC_RSP_PRESENT) {		/*		 * Read back status.		 */		isr = host->isr;		/* Card removed? */		if (isr & WBSD_INT_CARD)			cmd->error = MMC_ERR_TIMEOUT;		/* Timeout? */		else if (isr & WBSD_INT_TIMEOUT)			cmd->error = MMC_ERR_TIMEOUT;		/* CRC? */		else if ((cmd->flags & MMC_RSP_CRC) && (isr & WBSD_INT_CRC))			cmd->error = MMC_ERR_BADCRC;		/* All ok */		else {			if (cmd->flags & MMC_RSP_136)				wbsd_get_long_reply(host, cmd);			else				wbsd_get_short_reply(host, cmd);		}	}	DBGF("Sent cmd (%x), res %d\n", cmd->opcode, cmd->error);}/* * Data functions */static void wbsd_empty_fifo(struct wbsd_host *host){	struct mmc_data *data = host->mrq->cmd->data;	char *buffer;	int i, fsr, fifo;	/*	 * Handle excessive data.	 */	if (data->bytes_xfered == host->size)		return;	buffer = wbsd_kmap_sg(host) + host->offset;	/*	 * Drain the fifo. This has a tendency to loop longer	 * than the FIFO length (usually one block).	 */	while (!((fsr = inb(host->base + WBSD_FSR)) & WBSD_FIFO_EMPTY)) {		/*		 * The size field in the FSR is broken so we have to		 * do some guessing.		 */		if (fsr & WBSD_FIFO_FULL)			fifo = 16;		else if (fsr & WBSD_FIFO_FUTHRE)			fifo = 8;		else			fifo = 1;		for (i = 0; i < fifo; i++) {			*buffer = inb(host->base + WBSD_DFR);			buffer++;			host->offset++;			host->remain--;			data->bytes_xfered++;			/*			 * Transfer done?			 */			if (data->bytes_xfered == host->size) {				wbsd_kunmap_sg(host);				return;			}			/*			 * End of scatter list entry?			 */			if (host->remain == 0) {				wbsd_kunmap_sg(host);				/*				 * Get next entry. Check if last.				 */				if (!wbsd_next_sg(host)) {					/*					 * We should never reach this point.					 * It means that we're trying to					 * transfer more blocks than can fit					 * into the scatter list.					 */					BUG_ON(1);					host->size = data->bytes_xfered;					return;				}				buffer = wbsd_kmap_sg(host);			}		}	}	wbsd_kunmap_sg(host);	/*	 * This is a very dirty hack to solve a	 * hardware problem. The chip doesn't trigger	 * FIFO threshold interrupts properly.	 */	if ((host->size - data->bytes_xfered) < 16)		tasklet_schedule(&host->fifo_tasklet);}static void wbsd_fill_fifo(struct wbsd_host *host){	struct mmc_data *data = host->mrq->cmd->data;	char *buffer;	int i, fsr, fifo;	/*	 * Check that we aren't being called after the	 * entire buffer has been transfered.	 */	if (data->bytes_xfered == host->size)		return;	buffer = wbsd_kmap_sg(host) + host->offset;	/*	 * Fill the fifo. This has a tendency to loop longer	 * than the FIFO length (usually one block).	 */	while (!((fsr = inb(host->base + WBSD_FSR)) & WBSD_FIFO_FULL)) {		/*		 * The size field in the FSR is broken so we have to		 * do some guessing.		 */		if (fsr & WBSD_FIFO_EMPTY)			fifo = 0;		else if (fsr & WBSD_FIFO_EMTHRE)			fifo = 8;		else			fifo = 15;		for (i = 16; i > fifo; i--) {			outb(*buffer, host->base + WBSD_DFR);			buffer++;			host->offset++;			host->remain--;			data->bytes_xfered++;			/*			 * Transfer done?			 */			if (data->bytes_xfered == host->size) {				wbsd_kunmap_sg(host);				return;			}			/*			 * End of scatter list entry?			 */			if (host->remain == 0) {				wbsd_kunmap_sg(host);				/*				 * Get next entry. Check if last.				 */				if (!wbsd_next_sg(host)) {					/*					 * We should never reach this point.					 * It means that we're trying to					 * transfer more blocks than can fit					 * into the scatter list.					 */					BUG_ON(1);					host->size = data->bytes_xfered;					return;				}				buffer = wbsd_kmap_sg(host);			}		}	}	wbsd_kunmap_sg(host);	/*	 * The controller stops sending interrupts for	 * 'FIFO empty' under certain conditions. So we	 * need to be a bit more pro-active.	 */	tasklet_schedule(&host->fifo_tasklet);}static void wbsd_prepare_data(struct wbsd_host *host, struct mmc_data *data){	u16 blksize;	u8 setup;	unsigned long dmaflags;	DBGF("blksz %04x blks %04x flags %08x\n",		1 << data->blksz_bits, data->blocks, data->flags);	DBGF("tsac %d ms nsac %d clk\n",		data->timeout_ns / 1000000, data->timeout_clks);	/*	 * Calculate size.	 */	host->size = data->blocks << data->blksz_bits;	/*	 * Check timeout values for overflow.	 * (Yes, some cards cause this value to overflow).	 */	if (data->timeout_ns > 127000000)		wbsd_write_index(host, WBSD_IDX_TAAC, 127);	else {		wbsd_write_index(host, WBSD_IDX_TAAC,			data->timeout_ns / 1000000);	}	if (data->timeout_clks > 255)		wbsd_write_index(host, WBSD_IDX_NSAC, 255);	else		wbsd_write_index(host, WBSD_IDX_NSAC, data->timeout_clks);	/*	 * Inform the chip of how large blocks will be	 * sent. It needs this to determine when to	 * calculate CRC.	 *	 * Space for CRC must be included in the size.	 * Two bytes are needed for each data line.	 */	if (host->bus_width == MMC_BUS_WIDTH_1) {		blksize = (1 << data->blksz_bits) + 2;		wbsd_write_index(host, WBSD_IDX_PBSMSB, (blksize >> 4) & 0xF0);		wbsd_write_index(host, WBSD_IDX_PBSLSB, blksize & 0xFF);	} else if (host->bus_width == MMC_BUS_WIDTH_4) {		blksize = (1 << data->blksz_bits) + 2 * 4;		wbsd_write_index(host, WBSD_IDX_PBSMSB,			((blksize >> 4) & 0xF0) | WBSD_DATA_WIDTH);		wbsd_write_index(host, WBSD_IDX_PBSLSB, blksize & 0xFF);	} else {		data->error = MMC_ERR_INVALID;		return;	}	/*

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩精品一区二区| 国产精品美女久久久久久久久久久 | 欧美日免费三级在线| 在线不卡免费欧美| 国产精品白丝在线| 激情综合色综合久久| 欧美亚洲国产bt| 国产精品久久久一区麻豆最新章节| 日韩精品欧美成人高清一区二区| av不卡一区二区三区| 26uuu国产在线精品一区二区| 亚洲午夜一区二区| 成人av网址在线观看| 精品成人一区二区三区| 日韩中文字幕1| 欧美图区在线视频| 亚洲日本在线天堂| 成人免费福利片| 欧美经典一区二区三区| 精品一区二区三区视频 | av激情成人网| 久久久久久久久久久久久女国产乱| 亚洲成人动漫在线观看| 91久久国产综合久久| 亚洲视频中文字幕| 成人的网站免费观看| 国产精品区一区二区三区| 狠狠色狠狠色综合系列| 日韩一区二区麻豆国产| 日韩成人av影视| 日韩一区二区在线观看视频| 亚洲国产成人精品视频| 欧美在线免费观看视频| 亚洲国产欧美一区二区三区丁香婷| 91亚洲精品久久久蜜桃| 亚洲精品免费在线观看| 91免费国产在线| 亚洲在线中文字幕| 555www色欧美视频| 久久精品国产久精国产| 精品国产污网站| 国产精品小仙女| 中文字幕一区日韩精品欧美| 99久久99久久精品免费观看| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 成人一区二区三区视频在线观看| 中文字幕制服丝袜成人av| 色综合色狠狠天天综合色| 一区二区三区四区中文字幕| 欧美视频精品在线| 人人超碰91尤物精品国产| wwww国产精品欧美| 99久久婷婷国产| 亚洲电影激情视频网站| 91精品国产手机| 国产精品一区二区视频| 亚洲乱码一区二区三区在线观看| 欧美日韩免费一区二区三区 | 亚洲国产综合色| 欧美成人激情免费网| 国产精品亚洲专一区二区三区| 中文无字幕一区二区三区| 欧美亚洲日本一区| 日本麻豆一区二区三区视频| 国产婷婷色一区二区三区四区| 色94色欧美sute亚洲线路一ni| 日本一区中文字幕| 亚洲欧洲精品一区二区精品久久久| 欧美三级中文字| 成人中文字幕在线| 午夜精品福利视频网站| 久久久精品影视| 欧美日韩电影在线| 丁香婷婷综合色啪| 日韩在线卡一卡二| 亚洲欧美另类小说视频| 日韩欧美另类在线| 色综合天天综合在线视频| 精品一区二区三区免费| 亚洲视频一区二区在线观看| 日韩女优av电影| 91久久精品一区二区三| 国产成人综合网站| 日韩av中文在线观看| 一区二区免费视频| 国产精品麻豆视频| 久久婷婷成人综合色| 精品视频资源站| 97久久超碰国产精品| 国产精一品亚洲二区在线视频| 天天色综合天天| 亚洲综合无码一区二区| 亚洲日本va午夜在线电影| 精品电影一区二区| 91麻豆精品国产91久久久使用方法| 色8久久精品久久久久久蜜| 国产成人一区二区精品非洲| 日本欧美大码aⅴ在线播放| 亚洲欧美日韩国产成人精品影院 | 亚洲成人免费电影| 国产精品动漫网站| 国产欧美日韩在线看| 久久久综合视频| 欧美一区二区三区色| 欧美日韩中文字幕一区二区| 91网站在线观看视频| 成人黄色一级视频| 成人丝袜高跟foot| 国产成人精品网址| 国产一区二区三区免费看| 老司机免费视频一区二区| 香蕉影视欧美成人| 日日摸夜夜添夜夜添精品视频| 亚洲二区在线视频| 亚洲成人在线观看视频| 亚洲国产成人tv| 亚洲国产美国国产综合一区二区| 亚洲另类春色校园小说| 亚洲精品自拍动漫在线| 亚洲综合男人的天堂| 亚洲永久免费视频| 亚洲成人免费视频| 青青草成人在线观看| 麻豆精品精品国产自在97香蕉| 蜜臀久久久99精品久久久久久| 美国十次了思思久久精品导航| 久久国产精品一区二区| 精品无人区卡一卡二卡三乱码免费卡| 免费观看91视频大全| 国产精品综合av一区二区国产馆| 国产永久精品大片wwwapp| 国产盗摄一区二区三区| av亚洲精华国产精华| 欧美性感一类影片在线播放| 欧美日韩中文字幕一区| 欧美大片免费久久精品三p| 国产亚洲一二三区| 亚洲品质自拍视频网站| 丝袜美腿一区二区三区| 狠狠久久亚洲欧美| 91在线精品一区二区| 欧美日韩精品一区二区三区四区 | 日韩欧美一区在线观看| 国产色一区二区| 亚洲综合免费观看高清完整版在线 | 成人av免费在线播放| 欧美午夜精品一区二区三区 | 国产一区中文字幕| 99久久国产综合精品色伊 | 色综合天天做天天爱| 欧美一区二区在线播放| 久久久不卡网国产精品一区| 欧美国产成人精品| 视频一区在线视频| 国产成人在线影院| 欧美日韩日本视频| 国产欧美一区二区三区网站| 亚洲一卡二卡三卡四卡| 国产一区二区三区久久悠悠色av| 在线视频中文字幕一区二区| 精品国产百合女同互慰| 一区二区三区在线视频免费观看| 久久99精品久久久久婷婷| 91在线无精精品入口| 精品国产百合女同互慰| 亚洲午夜免费视频| www.亚洲在线| 欧美成人伊人久久综合网| 一区二区在线电影| 国产高清一区日本| 制服丝袜日韩国产| 亚洲精品写真福利| 国产xxx精品视频大全| 91精品国产色综合久久不卡电影| 国产精品国产三级国产aⅴ中文| 久久精品久久综合| 在线不卡一区二区| 一区二区三区不卡在线观看| 国产高清精品网站| 日韩女优电影在线观看| 日日嗨av一区二区三区四区| 色综合天天综合网天天看片| 欧美国产精品久久| 国产福利视频一区二区三区| 欧美r级在线观看| 日本不卡视频在线| 欧美精品xxxxbbbb| 一区二区三区日韩欧美| 99国产精品国产精品毛片| 国产欧美精品日韩区二区麻豆天美| 人禽交欧美网站| 日韩视频免费直播| 日韩国产精品久久久| 欧美群妇大交群中文字幕| 亚洲国产精品人人做人人爽| 欧洲视频一区二区| 亚洲一区二区在线免费观看视频| 色狠狠桃花综合| 亚洲午夜精品17c| 欧美区视频在线观看|