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

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

?? samsung s3c24xx sdmmc driver.c

?? Samsung S3C24xx SD/MMC 驅動 This a MMC/SD driver for the Samsung S3C24xx SD/MMC controller, originall
?? C
?? 第 1 頁 / 共 3 頁
字號:
Samsung S3C24xx SD/MMC driver
From: 	 	Harald Welte <laforge@openmoko.org>
To: 	 	linux-kernel@vger.kernel.org
Subject: 	 	[PATCH] Samsung S3C24xx SD/MMC driver
Date: 	 	Wed, 19 Dec 2007 15:22:13 +0100
Message-ID: 	 	<20071219142213.GD29882@prithivi.gnumonks.org>
Cc: 	 	drzeus-mmc@drzeus.cx, tk@maintech.de, ben-linux@fluff.org
Archive-link: 	 	Article, Thread

Hi!

This is a MMC/SD driver for the Samsung S3C24xx SD/MMC controller, originally
developed years ago by Thomas Kleffel <tk@maintech.de>.

Due to time constraints, he had no time to further maintain the driver
and follow the mainline Linux changes in the SD/MMC stack.

With his authorization, I have taken over the task of making it
compliant to the current mainline SD/MMC API and take care of the
mainline kernel merge.

So please advise on whatever changes you deem neccessary and I'll try to
do my best to incorporate them for a hopefully not-too-distant mainline
merge.

After a potential kernel inclusion, we would co-maintain the driver.

Acked-by: Thomas Kleffel <tk@maintech.de>
Signed-off-by: Harald Welte <laforge@openmoko.org>

---

Index: linux-2.6/include/asm-arm/arch-s3c2410/regs-sdi.h
===================================================================
--- linux-2.6.orig/include/asm-arm/arch-s3c2410/regs-sdi.h
+++ linux-2.6/include/asm-arm/arch-s3c2410/regs-sdi.h
@@ -28,9 +28,15 @@
 #define S3C2410_SDIDCNT               (0x30)
 #define S3C2410_SDIDSTA               (0x34)
 #define S3C2410_SDIFSTA               (0x38)
+
 #define S3C2410_SDIDATA               (0x3C)
 #define S3C2410_SDIIMSK               (0x40)
 
+#define S3C2440_SDIDATA               (0x40)
+#define S3C2440_SDIIMSK               (0x3C)
+
+#define S3C2440_SDICON_SDRESET        (1<<8)
+#define S3C2440_SDICON_MMCCLOCK       (1<<5)
 #define S3C2410_SDICON_BYTEORDER      (1<<4)
 #define S3C2410_SDICON_SDIOIRQ        (1<<3)
 #define S3C2410_SDICON_RWAITEN        (1<<2)
@@ -42,7 +48,8 @@
 #define S3C2410_SDICMDCON_LONGRSP     (1<<10)
 #define S3C2410_SDICMDCON_WAITRSP     (1<<9)
 #define S3C2410_SDICMDCON_CMDSTART    (1<<8)
-#define S3C2410_SDICMDCON_INDEX       (0xff)
+#define S3C2410_SDICMDCON_SENDERHOST  (1<<6)
+#define S3C2410_SDICMDCON_INDEX       (0x3f)
 
 #define S3C2410_SDICMDSTAT_CRCFAIL    (1<<12)
 #define S3C2410_SDICMDSTAT_CMDSENT    (1<<11)
@@ -51,6 +58,9 @@
 #define S3C2410_SDICMDSTAT_XFERING    (1<<8)
 #define S3C2410_SDICMDSTAT_INDEX      (0xff)
 
+#define S3C2440_SDIDCON_DS_BYTE       (0<<22)
+#define S3C2440_SDIDCON_DS_HALFWORD   (1<<22)
+#define S3C2440_SDIDCON_DS_WORD       (2<<22)
 #define S3C2410_SDIDCON_IRQPERIOD     (1<<21)
 #define S3C2410_SDIDCON_TXAFTERRESP   (1<<20)
 #define S3C2410_SDIDCON_RXAFTERCMD    (1<<19)
@@ -59,6 +69,7 @@
 #define S3C2410_SDIDCON_WIDEBUS       (1<<16)
 #define S3C2410_SDIDCON_DMAEN         (1<<15)
 #define S3C2410_SDIDCON_STOP          (1<<14)
+#define S3C2440_SDIDCON_DATSTART      (1<<14)
 #define S3C2410_SDIDCON_DATMODE	      (3<<12)
 #define S3C2410_SDIDCON_BLKNUM        (0x7ff)
 
@@ -68,6 +79,7 @@
 #define S3C2410_SDIDCON_XFER_RXSTART  (2<<12)
 #define S3C2410_SDIDCON_XFER_TXSTART  (3<<12)
 
+#define S3C2410_SDIDCON_BLKNUM_MASK   (0xFFF)
 #define S3C2410_SDIDCNT_BLKNUM_SHIFT  (12)
 
 #define S3C2410_SDIDSTA_RDYWAITREQ    (1<<10)
@@ -82,10 +94,12 @@
 #define S3C2410_SDIDSTA_TXDATAON      (1<<1)
 #define S3C2410_SDIDSTA_RXDATAON      (1<<0)
 
+#define S3C2440_SDIFSTA_FIFORESET      (1<<16)
+#define S3C2440_SDIFSTA_FIFOFAIL       (3<<14)  /* 3 is correct (2 bits) */
 #define S3C2410_SDIFSTA_TFDET          (1<<13)
 #define S3C2410_SDIFSTA_RFDET          (1<<12)
-#define S3C2410_SDIFSTA_TXHALF         (1<<11)
-#define S3C2410_SDIFSTA_TXEMPTY        (1<<10)
+#define S3C2410_SDIFSTA_TFHALF         (1<<11)
+#define S3C2410_SDIFSTA_TFEMPTY        (1<<10)
 #define S3C2410_SDIFSTA_RFLAST         (1<<9)
 #define S3C2410_SDIFSTA_RFFULL         (1<<8)
 #define S3C2410_SDIFSTA_RFHALF         (1<<7)
Index: linux-2.6/drivers/mmc/host/s3cmci.c
===================================================================
--- /dev/null
+++ linux-2.6/drivers/mmc/host/s3cmci.c
@@ -0,0 +1,1409 @@
+/*
+ *  linux/drivers/mmc/s3cmci.h - Samsung S3C MCI driver
+ *
+ *  Copyright (C) 2004-2006 maintech GmbH, Thomas Kleffel <tk@maintech.de>
+ *  Copyright (C) 2007 OpenMoko, Inc., Harald Welte <laforge@openmoko.org>
+ *
+ * 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/module.h>
+#include <linux/dma-mapping.h>
+#include <linux/clk.h>
+#include <linux/mmc/mmc.h>
+#include <linux/mmc/host.h>
+#include <linux/platform_device.h>
+#include <linux/irq.h>
+
+#include <asm/dma.h>
+#include <asm/dma-mapping.h>
+
+#include <asm/io.h>
+#include <asm/arch/regs-sdi.h>
+#include <asm/arch/regs-gpio.h>
+#include <asm/arch/mci.h>
+
+#include "s3cmci.h"
+
+#define DRIVER_NAME "s3c-mci"
+
+enum dbg_channels {
+	dbg_err   = (1 << 0),
+	dbg_debug = (1 << 1),
+	dbg_info  = (1 << 2),
+	dbg_irq   = (1 << 3),
+	dbg_sg    = (1 << 4),
+	dbg_dma   = (1 << 5),
+	dbg_pio   = (1 << 6),
+	dbg_fail  = (1 << 7),
+	dbg_conf  = (1 << 8),
+};
+
+static const int dbgmap_err   = dbg_err | dbg_fail;
+static const int dbgmap_info  = dbg_info | dbg_conf;
+static const int dbgmap_debug = dbg_debug;
+
+#define dbg(host, channels, args...)		 \
+	do {					 \
+	if (dbgmap_err & channels) 		 \
+		dev_err(&host->pdev->dev, args); \
+	else if (dbgmap_info & channels)	 \
+		dev_info(&host->pdev->dev, args);\
+	else if (dbgmap_debug & channels)	 \
+		dev_dbg(&host->pdev->dev, args); \
+	} while (0)
+
+#define RESSIZE(ressource) (((ressource)->end - (ressource)->start)+1)
+
+static struct s3c2410_dma_client s3cmci_dma_client = {
+	.name		= "s3c-mci",
+};
+
+static void finalize_request(struct s3cmci_host *host);
+static void s3cmci_send_request(struct mmc_host *mmc);
+static void s3cmci_reset(struct s3cmci_host *host);
+
+#ifdef CONFIG_MMC_DEBUG
+
+static char *mmc_cmd2str(int cmd)
+{
+	switch (cmd) {
+	case  0: return "GO_IDLE_STATE";
+	case  1: return "ALL_SEND_OCR";
+	case  2: return "ALL_SEND_CID";
+	case  3: return "ALL_SEND_RELATIVE_ADD";
+	case  6: return "ACMD: SD_SET_BUSWIDTH";
+	case  7: return "SEL_DESEL_CARD";
+	case  9: return "SEND_CSD";
+	case 10: return "SEND_CID";
+	case 11: return "READ_UNTIL_STOP";
+	case 12: return "STOP_TRANSMISSION";
+	case 13: return "SEND_STATUS";
+	case 15: return "GO_INACTIVE_STATE";
+	case 16: return "SET_BLOCKLEN";
+	case 17: return "READ_SINGLE_BLOCK";
+	case 18: return "READ_MULTIPLE_BLOCK";
+	case 24: return "WRITE_SINGLE_BLOCK";
+	case 25: return "WRITE_MULTIPLE_BLOCK";
+	case 41: return "ACMD: SD_APP_OP_COND";
+	case 55: return "APP_CMD";
+	default: return "UNKNOWN";
+	}
+}
+
+static char *mmc_err2str(int err)
+{
+	switch (err) {
+	case 0:			return "OK";
+	case -ETIMEDOUT:	return "TIMEOUT";
+	case -EILSEQ: 		return "BADCRC";
+	case -EINVAL: 		return "EINVAL";
+	case -ENOMEDIUM: 	return "NOMEDIUM";
+	default:		return "UNKNOWN";
+	}
+}
+
+static inline void dbg_dumpregs(struct s3cmci_host *host, char *prefix)
+{
+	u32 con, pre, cmdarg, cmdcon, cmdsta, r0, r1, r2, r3, timer, bsize;
+	u32 datcon, datcnt, datsta, fsta, imask;
+
+	con 	= readl(host->base + S3C2410_SDICON);
+	pre 	= readl(host->base + S3C2410_SDIPRE);
+	cmdarg 	= readl(host->base + S3C2410_SDICMDARG);
+	cmdcon 	= readl(host->base + S3C2410_SDICMDCON);
+	cmdsta 	= readl(host->base + S3C2410_SDICMDSTAT);
+	r0 	= readl(host->base + S3C2410_SDIRSP0);
+	r1 	= readl(host->base + S3C2410_SDIRSP1);
+	r2 	= readl(host->base + S3C2410_SDIRSP2);
+	r3 	= readl(host->base + S3C2410_SDIRSP3);
+	timer 	= readl(host->base + S3C2410_SDITIMER);
+	bsize 	= readl(host->base + S3C2410_SDIBSIZE);
+	datcon 	= readl(host->base + S3C2410_SDIDCON);
+	datcnt 	= readl(host->base + S3C2410_SDIDCNT);
+	datsta 	= readl(host->base + S3C2410_SDIDSTA);
+	fsta 	= readl(host->base + S3C2410_SDIFSTA);
+	imask   = readl(host->base + host->sdiimsk);
+
+	dbg(host, dbg_debug, "%s  CON:[%08x]  PRE:[%08x]  TMR:[%08x]\n",
+				prefix, con, pre, timer);
+
+	dbg(host, dbg_debug, "%s CCON:[%08x] CARG:[%08x] CSTA:[%08x]\n",
+				prefix, cmdcon, cmdarg, cmdsta);
+
+	dbg(host, dbg_debug, "%s DCON:[%08x] FSTA:[%08x]"
+			       " DSTA:[%08x] DCNT:[%08x]\n",
+				prefix, datcon, fsta, datsta, datcnt);
+
+	dbg(host, dbg_debug, "%s   R0:[%08x]   R1:[%08x]"
+			       "   R2:[%08x]   R3:[%08x]\n",
+				prefix, r0, r1, r2, r3);
+}
+
+static void prepare_dbgmsg(struct s3cmci_host *host, struct mmc_command *cmd,
+								int stop)
+{
+	snprintf(host->dbgmsg_cmd, 300,
+		"#%u%s op:%s(%i) arg:0x%08x flags:0x08%x retries:%u",
+		host->ccnt, (stop?" (STOP)":""), mmc_cmd2str(cmd->opcode),
+		cmd->opcode, cmd->arg, cmd->flags, cmd->retries);
+
+	if (cmd->data) {
+		snprintf(host->dbgmsg_dat, 300,
+			"#%u bsize:%u blocks:%u bytes:%u",
+			host->dcnt, cmd->data->blksz,
+			cmd->data->blocks,
+			cmd->data->blocks * cmd->data->blksz);
+	} else {
+		host->dbgmsg_dat[0] = '\0';
+	}
+}
+
+static void dbg_dumpcmd(struct s3cmci_host *host, struct mmc_command *cmd,
+								int fail)
+{
+	unsigned int dbglvl = fail?dbg_fail:dbg_debug;
+
+	if (!cmd)
+		return;
+
+	if (cmd->error == 0) {
+
+		dbg(host, dbglvl, "CMD[OK] %s R0:0x%08x\n",
+			host->dbgmsg_cmd, cmd->resp[0]);
+	} else {
+		dbg(host, dbglvl, "CMD[%s] %s Status:%s\n",
+			mmc_err2str(cmd->error), host->dbgmsg_cmd,
+			host->status);
+	}
+
+	if (!cmd->data)
+		return;
+
+	if (cmd->data->error == 0) {
+		dbg(host, dbglvl, "DAT[%s] %s\n",
+			mmc_err2str(cmd->data->error), host->dbgmsg_dat);
+	} else {
+		dbg(host, dbglvl, "DAT[%s] %s DCNT:0x%08x\n",
+			mmc_err2str(cmd->data->error), host->dbgmsg_dat,
+			readl(host->base + S3C2410_SDIDCNT));
+	}
+}
+#endif
+
+static inline u32 enable_imask(struct s3cmci_host *host, u32 imask)
+{
+	u32 newmask;
+
+	newmask = readl(host->base + host->sdiimsk);
+	newmask |= imask;
+
+	writel(newmask, host->base + host->sdiimsk);
+
+	return newmask;
+}
+
+static inline u32 disable_imask(struct s3cmci_host *host, u32 imask)
+{
+	u32 newmask;
+
+	newmask = readl(host->base + host->sdiimsk);
+	newmask &= ~imask;
+
+	writel(newmask, host->base + host->sdiimsk);
+
+	return newmask;
+}
+
+static inline void clear_imask(struct s3cmci_host *host)
+{
+	writel(0, host->base + host->sdiimsk);
+}
+
+static inline int get_data_buffer(struct s3cmci_host *host,
+				  u32 *words, u32 **pointer)
+{
+	struct scatterlist *sg;
+
+	if (host->pio_active == XFER_NONE)
+		return -EINVAL;
+
+	if ((!host->mrq) || (!host->mrq->data))
+		return -EINVAL;
+
+	if (host->pio_sgptr >= host->mrq->data->sg_len) {
+		dbg(host, dbg_debug, "no more buffers (%i/%i)\n",
+		      host->pio_sgptr, host->mrq->data->sg_len);
+		return -EBUSY;
+	}
+	sg = &host->mrq->data->sg[host->pio_sgptr];
+
+	*words = sg->length >> 2;
+	*pointer = page_address(sg_page(sg)) + sg->offset;
+
+	host->pio_sgptr++;
+
+	dbg(host, dbg_sg, "new buffer (%i/%i)\n",
+	      host->pio_sgptr, host->mrq->data->sg_len);
+
+	return 0;
+}
+
+#define FIFO_FILL(host) ((readl(host->base + S3C2410_SDIFSTA) & 	\
+				S3C2410_SDIFSTA_COUNTMASK) >> 2)
+#define FIFO_FREE(host) ((63 - (readl(host->base + S3C2410_SDIFSTA) 	\
+				& S3C2410_SDIFSTA_COUNTMASK)) >> 2)
+
+static inline void do_pio_read(struct s3cmci_host *host)
+{
+	int res;
+	u32 fifo;
+	void __iomem *from_ptr;
+
+	/* write real prescaler to host, it might be set slow to fix */
+	writel(host->prescaler, host->base + S3C2410_SDIPRE);
+
+	from_ptr = host->base + host->sdidata;
+
+	while ((fifo = FIFO_FILL(host))) {
+		if (!host->pio_words) {
+			res = get_data_buffer(host, &host->pio_words,
+							&host->pio_ptr);
+			if (res) {
+				host->pio_active = XFER_NONE;
+				host->complete_what = COMPLETION_FINALIZE;
+
+				dbg(host, dbg_pio, "pio_read(): "
+				    "complete (no more data).\n");
+				return;
+			}
+
+			dbg(host, dbg_pio, "pio_read(): new target: "
+			    "[%i]@[%p]\n", host->pio_words, host->pio_ptr);
+		}
+
+		dbg(host, dbg_pio, "pio_read(): fifo:[%02i] "
+		    "buffer:[%03i] dcnt:[%08X]\n", fifo, host->pio_words,
+		    readl(host->base + S3C2410_SDIDCNT));
+
+		if (fifo > host->pio_words)
+			fifo = host->pio_words;
+
+		host->pio_words -= fifo;
+		host->pio_count += fifo;
+
+		while (fifo--)
+			*(host->pio_ptr++) = readl(from_ptr);
+	}
+
+	if (!host->pio_words) {
+		res = get_data_buffer(host, &host->pio_words, &host->pio_ptr);
+		if (res) {
+			dbg(host, dbg_pio, "pio_read(): "
+			    "complete (no more buffers).\n");
+			host->pio_active = XFER_NONE;
+			host->complete_what = COMPLETION_FINALIZE;
+
+			return;
+		}
+	}
+
+	enable_imask(host, S3C2410_SDIIMSK_RXFIFOHALF
+						| S3C2410_SDIIMSK_RXFIFOLAST);
+}
+
+static inline void do_pio_write(struct s3cmci_host *host)
+{
+	int res;
+	u32 fifo;
+
+	void __iomem *to_ptr;
+
+	to_ptr = host->base + host->sdidata;
+
+	while ((fifo = FIFO_FREE(host))) {
+		if (!host->pio_words) {
+			res = get_data_buffer(host, &host->pio_words,
+							&host->pio_ptr);
+			if (res) {
+				dbg(host, dbg_pio, "pio_write(): "
+					"complete (no more data).\n");
+				host->pio_active = XFER_NONE;
+
+				return;
+			}
+
+			dbg(host, dbg_pio, "pio_write(): "
+				"new source: [%i]@[%p]\n",
+				host->pio_words, host->pio_ptr);
+
+		}
+
+		if (fifo > host->pio_words)
+			fifo = host->pio_words;
+
+		host->pio_words -= fifo;
+		host->pio_count += fifo;
+
+		while (fifo--)
+			writel(*(host->pio_ptr++), to_ptr);
+	}
+
+	enable_imask(host, S3C2410_SDIIMSK_TXFIFOHALF);
+}
+
+static void pio_tasklet(unsigned long data)
+{
+	struct s3cmci_host *host = (struct s3cmci_host *) data;
+
+	disable_irq(host->irq);
+
+	if (host->pio_active == XFER_WRITE)
+		do_pio_write(host);
+
+	if (host->pio_active == XFER_READ)
+		do_pio_read(host);
+
+	if (host->complete_what == COMPLETION_FINALIZE) {
+		clear_imask(host);
+		if (host->pio_active != XFER_NONE) {
+			dbg(host, dbg_err, "unfinished %s "
+				"- pio_count:[%u] pio_words:[%u]\n",
+				(host->pio_active == XFER_READ)?"read":"write",
+				host->pio_count, host->pio_words);
+
+			host->mrq->data->error = -EIO;
+		}
+
+		finalize_request(host);
+	} else
+		enable_irq(host->irq);
+}
+
+/*
+ * ISR for SDI Interface IRQ
+ * Communication between driver and ISR works as follows:
+ *   host->mrq 			points to current request
+ *   host->complete_what	tells ISR when the request is considered done
+ *     COMPLETION_CMDSENT	  when the command was sent
+ *     COMPLETION_RSPFIN          when a response was received
+ *     COMPLETION_XFERFINISH	  when the data transfer is finished
+ *     COMPLETION_XFERFINISH_RSPFIN both of the above.
+ *   host->complete_request	is the completion-object the driver waits for
+ *
+ * 1) Driver sets up host->mrq and host->complete_what
+ * 2) Driver prepares the transfer
+ * 3) Driver enables interrupts
+ * 4) Driver starts transfer
+ * 5) Driver waits for host->complete_rquest
+ * 6) ISR checks for request status (errors and success)
+ * 6) ISR sets host->mrq->cmd->error and host->mrq->data->error
+ * 7) ISR completes host->complete_request
+ * 8) ISR disables interrupts
+ * 9) Driver wakes up and takes care of the request
+ *
+ * Note: "->error"-fields are expected to be set to 0 before the request
+ *       was issued by mmc.c - therefore they are only set, when an error
+ *       contition comes up
+ */
+
+static irqreturn_t s3cmci_irq(int irq, void *dev_id)
+{
+	struct s3cmci_host *host;
+	struct mmc_command *cmd;
+	u32 mci_csta, mci_dsta, mci_fsta, mci_dcnt, mci_imsk;
+	u32 mci_cclear, mci_dclear;
+	unsigned long iflags;
+
+	host = (struct s3cmci_host *)dev_id;
+
+	spin_lock_irqsave(&host->complete_lock, iflags);
+
+	mci_csta 	= readl(host->base + S3C2410_SDICMDSTAT);
+	mci_dsta 	= readl(host->base + S3C2410_SDIDSTA);
+	mci_dcnt 	= readl(host->base + S3C2410_SDIDCNT);
+	mci_fsta 	= readl(host->base + S3C2410_SDIFSTA);
+	mci_imsk	= readl(host->base + host->sdiimsk);
+	mci_cclear	= 0;
+	mci_dclear	= 0;
+
+	if ((host->complete_what == COMPLETION_NONE) ||
+			(host->complete_what == COMPLETION_FINALIZE)) {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线视频一区二区三区| 国产精品第四页| 亚洲另类一区二区| 韩国v欧美v日本v亚洲v| 欧美理论电影在线| 国产免费久久精品| 国产精品一卡二| 日韩视频不卡中文| 精品一区在线看| 精品成人佐山爱一区二区| 久久不见久久见中文字幕免费| 欧美少妇性性性| 石原莉奈一区二区三区在线观看| 欧美色图一区二区三区| 亚洲成av人片在www色猫咪| 欧美日韩国产123区| 捆绑调教一区二区三区| 久久久久久久网| 色婷婷激情综合| 日韩精品免费专区| 久久夜色精品一区| 成人免费高清视频在线观看| 亚洲欧美日韩国产另类专区| 在线一区二区视频| 国产在线精品视频| 国产精品不卡视频| 日韩亚洲欧美一区| 91蜜桃在线观看| 国内精品视频666| 亚洲精品视频在线观看免费| 欧美一区二区精品久久911| 国产精品1区2区| 亚洲.国产.中文慕字在线| 久久久久国产精品人| 欧美日韩视频专区在线播放| 国产精品一区二区免费不卡| 亚洲精品自拍动漫在线| 久久综合色8888| 91麻豆精品国产自产在线| 成人av资源在线观看| 久久99精品国产麻豆婷婷洗澡| 国产日韩影视精品| 91精品国模一区二区三区| www.久久久久久久久| 国产一区二区在线视频| 亚洲18色成人| 午夜精品视频在线观看| 亚洲色欲色欲www在线观看| 亚洲精品在线免费观看视频| 欧美区一区二区三区| 欧美综合在线视频| 欧美日韩一本到| 欧美午夜不卡在线观看免费| 91视视频在线观看入口直接观看www | 亚洲欧美综合另类在线卡通| 欧美成人欧美edvon| 宅男噜噜噜66一区二区66| 欧美高清视频不卡网| 欧美曰成人黄网| 在线成人av影院| 日韩欧美一级在线播放| 欧美一级欧美三级| 久久综合狠狠综合久久激情 | 国产精品白丝jk黑袜喷水| 经典三级在线一区| 成人性视频免费网站| 91丨porny丨蝌蚪视频| 欧美撒尿777hd撒尿| 日韩一区二区在线看片| 久久久久综合网| 亚洲精品国产第一综合99久久 | 亚洲精品成人悠悠色影视| 亚洲一区二区成人在线观看| 日韩精品91亚洲二区在线观看 | 激情五月婷婷综合| 成人av资源在线观看| 欧美日韩中文精品| 久久精品一区二区三区不卡 | 美女一区二区在线观看| 国产精品中文有码| 欧美人妇做爰xxxⅹ性高电影 | 中文字幕五月欧美| 亚洲午夜精品网| 国产风韵犹存在线视精品| 欧美中文一区二区三区| 久久蜜桃av一区二区天堂| 亚洲一区二区三区国产| 国产电影一区在线| 91精品国产综合久久蜜臀| 亚洲日本va午夜在线影院| 国产一区二区不卡在线| 欧美男人的天堂一二区| 一区2区3区在线看| 丰满亚洲少妇av| 精品国精品国产尤物美女| 亚洲国产精品久久艾草纯爱| 97久久精品人人做人人爽50路 | 亚洲精品一区二区三区蜜桃下载 | 日韩欧美一区电影| 免费成人在线播放| 91麻豆精品国产91久久久使用方法 | 欧美日韩久久久一区| 一区二区激情视频| 欧美性做爰猛烈叫床潮| 国产精品电影一区二区| 97精品国产露脸对白| 成人欧美一区二区三区| 91碰在线视频| 亚洲一区二区三区三| 欧美最新大片在线看| 奇米影视一区二区三区小说| 日韩一区二区在线看片| 国产精品一品二品| 樱花影视一区二区| 91精品国产91综合久久蜜臀| 奇米777欧美一区二区| 日韩欧美色综合网站| 国产精品一区二区黑丝| 中文字幕欧美一| 欧美视频在线播放| 久久99精品一区二区三区 | 91黄色免费网站| 免费成人av在线播放| 国产日产亚洲精品系列| 91免费国产在线观看| 久久精品国产秦先生| 亚洲欧洲精品成人久久奇米网| 欧美在线免费播放| 国产福利一区二区| 久久众筹精品私拍模特| 色婷婷亚洲综合| 激情综合一区二区三区| 亚洲欧美偷拍另类a∨色屁股| 欧美高清精品3d| 欧洲一区在线电影| 国产成人亚洲综合a∨猫咪| 一二三四区精品视频| 欧美精品一区二区不卡| 91丨九色丨尤物| 国产成人精品亚洲日本在线桃色| 成人蜜臀av电影| 夜夜精品视频一区二区| 国产欧美日韩麻豆91| 久久蜜桃一区二区| 日韩限制级电影在线观看| 欧美在线三级电影| 欧美在线观看视频在线| 国产精品午夜在线观看| 欧美日韩亚洲高清一区二区| 日本韩国欧美一区| 色诱视频网站一区| 色综合久久久久久久久| 波波电影院一区二区三区| 丰满少妇在线播放bd日韩电影| 狠狠色丁香久久婷婷综| 韩国女主播一区| 国产91清纯白嫩初高中在线观看| 国产高清在线精品| 成人一区二区在线观看| 国产99久久久精品| 99久久99久久精品免费看蜜桃| 成人免费毛片a| 欧美日韩www| 2023国产精品自拍| 国产欧美日本一区二区三区| 国产精品大尺度| 亚洲素人一区二区| 日本vs亚洲vs韩国一区三区| 青青国产91久久久久久| 国产成人av资源| 欧美日韩在线亚洲一区蜜芽| 欧美一区二区三区在线| 欧美国产日本韩| 亚洲国产成人精品视频| 国产精品综合av一区二区国产馆| 色综合久久天天综合网| 欧美一区二区三区人| ...av二区三区久久精品| 日韩精品一二区| 97久久精品人人做人人爽50路| 日韩一区二区精品| 一级精品视频在线观看宜春院| 免费人成网站在线观看欧美高清| 国产麻豆成人精品| 在线不卡中文字幕播放| 成人免费一区二区三区在线观看| 日韩福利视频网| 在线观看日韩电影| 国产精品福利电影一区二区三区四区| 秋霞成人午夜伦在线观看| 91亚洲精品乱码久久久久久蜜桃| 欧美刺激午夜性久久久久久久| 亚洲午夜精品在线| 精品视频全国免费看| 亚洲精品国产无天堂网2021| 成人a免费在线看| 亚洲日本乱码在线观看| 99精品久久免费看蜜臀剧情介绍| 日韩欧美国产三级电影视频| 日韩av一区二|