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

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

?? dma.c

?? 本驅動程序在linux2.6.17中測試通過。yangxing msn:lelma_yx@hotmail.com 希望對SPI操作的朋友有所幫助。 一、工作方式: 從設備:SPI為MASTE
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* linux/arch/arm/mach-bast/dma.c * * (c) 2003-2005 Simtec Electronics *	Ben Dooks <ben@simtec.co.uk> * * S3C2410 DMA core * * http://www.simtec.co.uk/products/EB2410ITX/ * * 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. * * Changelog: *  27-Feb-2005 BJD  Added kmem cache for dma descriptors *  18-Nov-2004 BJD  Removed error for loading onto stopped channel *  10-Nov-2004 BJD  Ensure all external symbols exported for modules *  10-Nov-2004 BJD  Use sys_device and sysdev_class for power management *  08-Aug-2004 BJD  Apply rmk's suggestions *  21-Jul-2004 BJD  Ported to linux 2.6 *  12-Jul-2004 BJD  Finished re-write and change of API *  06-Jul-2004 BJD  Rewrote dma code to try and cope with various problems *  23-May-2003 BJD  Created file *  19-Aug-2003 BJD  Cleanup, header fix, added URL * * This file is based on the Sangwook Lee/Samsung patches, re-written due * to various ommisions from the code (such as flexible dma configuration) * for use with the BAST system board. * * The re-write is pretty much complete, and should be good enough for any * possible DMA function */#include <linux/config.h>#ifdef CONFIG_S3C2410_DMA_DEBUG#define DEBUG#endif#include <linux/module.h>#include <linux/init.h>#include <linux/sched.h>#include <linux/spinlock.h>#include <linux/interrupt.h>#include <linux/sysdev.h>#include <linux/slab.h>#include <linux/errno.h>#include <linux/delay.h>#include <asm/system.h>#include <asm/irq.h>#include <asm/hardware.h>#include <asm/io.h>#include <asm/dma.h>#include <asm/mach/dma.h>#include <asm/arch/map.h>/* io map for dma */static void __iomem *dma_base;static kmem_cache_t *dma_kmem;/* dma channel state information */s3c2410_dma_chan_t s3c2410_chans[S3C2410_DMA_CHANNELS];/* debugging functions */#define BUF_MAGIC (0xcafebabe)#define dmawarn(fmt...) printk(KERN_DEBUG fmt)#define dma_regaddr(chan, reg) ((chan)->regs + (reg))#if 1#define dma_wrreg(chan, reg, val) writel((val), (chan)->regs + (reg))#elsestatic inline voiddma_wrreg(s3c2410_dma_chan_t *chan, int reg, unsigned long val){	pr_debug("writing %08x to register %08x\n",(unsigned int)val,reg);	writel(val, dma_regaddr(chan, reg));}#endif#define dma_rdreg(chan, reg) readl((chan)->regs + (reg))/* captured register state for debug */struct s3c2410_dma_regstate {	unsigned long         dcsrc;	unsigned long         disrc;	unsigned long         dstat;	unsigned long         dcon;	unsigned long         dmsktrig;};#ifdef CONFIG_S3C2410_DMA_DEBUG/* dmadbg_showregs * * simple debug routine to print the current state of the dma registers*/static voiddmadbg_capture(s3c2410_dma_chan_t *chan, struct s3c2410_dma_regstate *regs){	regs->dcsrc    = dma_rdreg(chan, S3C2410_DMA_DCSRC);	regs->disrc    = dma_rdreg(chan, S3C2410_DMA_DISRC);	regs->dstat    = dma_rdreg(chan, S3C2410_DMA_DSTAT);	regs->dcon     = dma_rdreg(chan, S3C2410_DMA_DCON);	regs->dmsktrig = dma_rdreg(chan, S3C2410_DMA_DMASKTRIG);}static voiddmadbg_showregs(const char *fname, int line, s3c2410_dma_chan_t *chan,		 struct s3c2410_dma_regstate *regs){	printk(KERN_DEBUG "dma%d: %s:%d: DCSRC=%08lx, DISRC=%08lx, DSTAT=%08lx DMT=%02lx, DCON=%08lx\n",	       chan->number, fname, line,	       regs->dcsrc, regs->disrc, regs->dstat, regs->dmsktrig,	       regs->dcon);}static voiddmadbg_showchan(const char *fname, int line, s3c2410_dma_chan_t *chan){	struct s3c2410_dma_regstate state;	dmadbg_capture(chan, &state);	printk(KERN_DEBUG "dma%d: %s:%d: ls=%d, cur=%p, %p %p\n",	       chan->number, fname, line, chan->load_state,	       chan->curr, chan->next, chan->end);	dmadbg_showregs(fname, line, chan, &state);}#define dbg_showregs(chan) dmadbg_showregs(__FUNCTION__, __LINE__, (chan))#define dbg_showchan(chan) dmadbg_showchan(__FUNCTION__, __LINE__, (chan))#else#define dbg_showregs(chan) do { } while(0)#define dbg_showchan(chan) do { } while(0)#endif /* CONFIG_S3C2410_DMA_DEBUG */#define check_channel(chan) \  do { if ((chan) >= S3C2410_DMA_CHANNELS) { \    printk(KERN_ERR "%s: invalid channel %d\n", __FUNCTION__, (chan)); \    return -EINVAL; \  } } while(0)/* s3c2410_dma_stats_timeout * * Update DMA stats from timeout info*/static voids3c2410_dma_stats_timeout(s3c2410_dma_stats_t *stats, int val){	if (stats == NULL)		return;	if (val > stats->timeout_longest)		stats->timeout_longest = val;	if (val < stats->timeout_shortest)		stats->timeout_shortest = val;	stats->timeout_avg += val;}/* s3c2410_dma_waitforload * * wait for the DMA engine to load a buffer, and update the state accordingly*/static ints3c2410_dma_waitforload(s3c2410_dma_chan_t *chan, int line){	int timeout = chan->load_timeout;	int took;	if (chan->load_state != S3C2410_DMALOAD_1LOADED) {		printk(KERN_ERR "dma%d: s3c2410_dma_waitforload() called in loadstate %d from line %d\n", chan->number, chan->load_state, line);		return 0;	}	if (chan->stats != NULL)		chan->stats->loads++;	while (--timeout > 0) {		if ((dma_rdreg(chan, S3C2410_DMA_DSTAT) << (32-20)) != 0) {			took = chan->load_timeout - timeout;			s3c2410_dma_stats_timeout(chan->stats, took);			switch (chan->load_state) {			case S3C2410_DMALOAD_1LOADED:				chan->load_state = S3C2410_DMALOAD_1RUNNING;				break;			default:				printk(KERN_ERR "dma%d: unknown load_state in s3c2410_dma_waitforload() %d\n", chan->number, chan->load_state);			}			return 1;		}	}	if (chan->stats != NULL) {		chan->stats->timeout_failed++;	}	return 0;}/* s3c2410_dma_loadbuffer * * load a buffer, and update the channel state*/static inline ints3c2410_dma_loadbuffer(s3c2410_dma_chan_t *chan,		       s3c2410_dma_buf_t *buf){	unsigned long reload;	pr_debug("s3c2410_chan_loadbuffer: loading buff %p (0x%08lx,0x%06x)\n",		 buf, (unsigned long)buf->data, buf->size);	if (buf == NULL) {		dmawarn("buffer is NULL\n");		return -EINVAL;	}	/* check the state of the channel before we do anything */	if (chan->load_state == S3C2410_DMALOAD_1LOADED) {		dmawarn("load_state is S3C2410_DMALOAD_1LOADED\n");	}	if (chan->load_state == S3C2410_DMALOAD_1LOADED_1RUNNING) {		dmawarn("state is S3C2410_DMALOAD_1LOADED_1RUNNING\n");	}	/* it would seem sensible if we are the last buffer to not bother	 * with the auto-reload bit, so that the DMA engine will not try	 * and load another transfer after this one has finished...	 */	if (chan->load_state == S3C2410_DMALOAD_NONE) {		pr_debug("load_state is none, checking for noreload (next=%p)\n",			 buf->next);		reload = (buf->next == NULL) ? S3C2410_DCON_NORELOAD : 0;	} else {		pr_debug("load_state is %d => autoreload\n", chan->load_state);		reload = S3C2410_DCON_AUTORELOAD;	}	writel(buf->data, chan->addr_reg);	dma_wrreg(chan, S3C2410_DMA_DCON,		  chan->dcon | reload | (buf->size/chan->xfer_unit));	chan->next = buf->next;	/* update the state of the channel */	switch (chan->load_state) {	case S3C2410_DMALOAD_NONE:		chan->load_state = S3C2410_DMALOAD_1LOADED;		break;	case S3C2410_DMALOAD_1RUNNING:		chan->load_state = S3C2410_DMALOAD_1LOADED_1RUNNING;		break;	default:		dmawarn("dmaload: unknown state %d in loadbuffer\n",			chan->load_state);		break;	}	return 0;}/* s3c2410_dma_call_op * * small routine to call the op routine with the given op if it has been * registered*/static voids3c2410_dma_call_op(s3c2410_dma_chan_t *chan, s3c2410_chan_op_t op){	if (chan->op_fn != NULL) {		(chan->op_fn)(chan, op);	}}/* s3c2410_dma_buffdone * * small wrapper to check if callback routine needs to be called, and * if so, call it*/static inline voids3c2410_dma_buffdone(s3c2410_dma_chan_t *chan, s3c2410_dma_buf_t *buf,		     s3c2410_dma_buffresult_t result){	pr_debug("callback_fn=%p, buf=%p, id=%p, size=%d, result=%d\n",		 chan->callback_fn, buf, buf->id, buf->size, result);	if (chan->callback_fn != NULL) {		(chan->callback_fn)(chan, buf->id, buf->size, result);	}}/* s3c2410_dma_start * * start a dma channel going*/static int s3c2410_dma_start(s3c2410_dma_chan_t *chan){	unsigned long tmp;	unsigned long flags;	pr_debug("s3c2410_start_dma: channel=%d\n", chan->number);	local_irq_save(flags);	if (chan->state == S3C2410_DMA_RUNNING) {		pr_debug("s3c2410_start_dma: already running (%d)\n", chan->state);		local_irq_restore(flags);		return 0;	}	chan->state = S3C2410_DMA_RUNNING;	/* check wether there is anything to load, and if not, see	 * if we can find anything to load	 */	if (chan->load_state == S3C2410_DMALOAD_NONE) {		if (chan->next == NULL) {			printk(KERN_ERR "dma%d: channel has nothing loaded\n",			       chan->number);			chan->state = S3C2410_DMA_IDLE;			local_irq_restore(flags);			return -EINVAL;		}		s3c2410_dma_loadbuffer(chan, chan->next);	}	dbg_showchan(chan);	/* enable the channel */	if (!chan->irq_enabled) {		enable_irq(chan->irq);		chan->irq_enabled = 1;	}	/* start the channel going */	tmp = dma_rdreg(chan, S3C2410_DMA_DMASKTRIG);	tmp &= ~S3C2410_DMASKTRIG_STOP;	tmp |= S3C2410_DMASKTRIG_ON;	dma_wrreg(chan, S3C2410_DMA_DMASKTRIG, tmp);	pr_debug("wrote %08lx to DMASKTRIG\n", tmp);#if 0	/* the dma buffer loads should take care of clearing the AUTO	 * reloading feature */	tmp = dma_rdreg(chan, S3C2410_DMA_DCON);	tmp &= ~S3C2410_DCON_NORELOAD;	dma_wrreg(chan, S3C2410_DMA_DCON, tmp);#endif	s3c2410_dma_call_op(chan, S3C2410_DMAOP_START);	dbg_showchan(chan);	local_irq_restore(flags);	return 0;}/* s3c2410_dma_canload * * work out if we can queue another buffer into the DMA engine*/static ints3c2410_dma_canload(s3c2410_dma_chan_t *chan){	if (chan->load_state == S3C2410_DMALOAD_NONE ||	    chan->load_state == S3C2410_DMALOAD_1RUNNING)		return 1;	return 0;}/* s3c2410_dma_enqueue * * queue an given buffer for dma transfer. * * id         the device driver's id information for this buffer * data       the physical address of the buffer data * size       the size of the buffer in bytes * * If the channel is not running, then the flag S3C2410_DMAF_AUTOSTART * is checked, and if set, the channel is started. If this flag isn't set, * then an error will be returned. * * It is possible to queue more than one DMA buffer onto a channel at * once, and the code will deal with the re-loading of the next buffer * when necessary.*/int s3c2410_dma_enqueue(unsigned int channel, void *id,			dma_addr_t data, int size){	s3c2410_dma_chan_t *chan = &s3c2410_chans[channel];	s3c2410_dma_buf_t *buf;	unsigned long flags;	check_channel(channel);	pr_debug("%s: id=%p, data=%08x, size=%d\n",		 __FUNCTION__, id, (unsigned int)data, size);	buf = kmem_cache_alloc(dma_kmem, GFP_ATOMIC);	if (buf == NULL) {		pr_debug("%s: out of memory (%ld alloc)\n",			 __FUNCTION__, sizeof(*buf));		return -ENOMEM;	}	pr_debug("%s: new buffer %p\n", __FUNCTION__, buf);	//dbg_showchan(chan);	buf->next  = NULL;	buf->data  = buf->ptr = data;	buf->size  = size;	buf->id    = id;	buf->magic = BUF_MAGIC;	local_irq_save(flags);	if (chan->curr == NULL) {		/* we've got nothing loaded... */		pr_debug("%s: buffer %p queued onto empty channel\n",			 __FUNCTION__, buf);		chan->curr = buf;		chan->end  = buf;		chan->next = NULL;	} else {		pr_debug("dma%d: %s: buffer %p queued onto non-empty channel\n",			 chan->number, __FUNCTION__, buf);		if (chan->end == NULL)			pr_debug("dma%d: %s: %p not empty, and chan->end==NULL?\n",				 chan->number, __FUNCTION__, chan);		chan->end->next = buf;		chan->end = buf;	}	/* if necessary, update the next buffer field */	if (chan->next == NULL)		chan->next = buf;	/* check to see if we can load a buffer */	if (chan->state == S3C2410_DMA_RUNNING) {		if (chan->load_state == S3C2410_DMALOAD_1LOADED && 1) {			if (s3c2410_dma_waitforload(chan, __LINE__) == 0) {				printk(KERN_ERR "dma%d: loadbuffer:"				       "timeout loading buffer\n",				       chan->number);				dbg_showchan(chan);				local_irq_restore(flags);				return -EINVAL;			}		}		while (s3c2410_dma_canload(chan) && chan->next != NULL) {			s3c2410_dma_loadbuffer(chan, chan->next);		}	} else if (chan->state == S3C2410_DMA_IDLE) {		if (chan->flags & S3C2410_DMAF_AUTOSTART) {			s3c2410_dma_ctrl(chan->number, S3C2410_DMAOP_START);		}	}	local_irq_restore(flags);	return 0;}EXPORT_SYMBOL(s3c2410_dma_enqueue);static inline voids3c2410_dma_freebuf(s3c2410_dma_buf_t *buf){	int magicok = (buf->magic == BUF_MAGIC);	buf->magic = -1;	if (magicok) {		kmem_cache_free(dma_kmem, buf);	} else {		printk("s3c2410_dma_freebuf: buff %p with bad magic\n", buf);	}}/* s3c2410_dma_lastxfer * * called when the system is out of buffers, to ensure that the channel * is prepared for shutdown.*/static inline voids3c2410_dma_lastxfer(s3c2410_dma_chan_t *chan){	pr_debug("dma%d: s3c2410_dma_lastxfer: load_state %d\n",		 chan->number, chan->load_state);	switch (chan->load_state) {	case S3C2410_DMALOAD_NONE:		break;	case S3C2410_DMALOAD_1LOADED:		if (s3c2410_dma_waitforload(chan, __LINE__) == 0) {				/* flag error? */			printk(KERN_ERR "dma%d: timeout waiting for load\n",			       chan->number);			return;		}		break;	default:		pr_debug("dma%d: lastxfer: unhandled load_state %d with no next",			 chan->number, chan->load_state);		return;	}	/* hopefully this'll shut the damned thing up after the transfer... */	dma_wrreg(chan, S3C2410_DMA_DCON, chan->dcon | S3C2410_DCON_NORELOAD);}#define dmadbg2(x...)static irqreturn_ts3c2410_dma_irq(int irq, void *devpw, struct pt_regs *regs){	s3c2410_dma_chan_t *chan = (s3c2410_dma_chan_t *)devpw;	s3c2410_dma_buf_t  *buf;	buf = chan->curr;	dbg_showchan(chan);	/* modify the channel state */	switch (chan->load_state) {	case S3C2410_DMALOAD_1RUNNING:		/* TODO - if we are running only one buffer, we probably		 * want to reload here, and then worry about the buffer		 * callback */		chan->load_state = S3C2410_DMALOAD_NONE;		break;	case S3C2410_DMALOAD_1LOADED:		/* iirc, we should go back to NONE loaded here, we		 * had a buffer, and it was never verified as being		 * loaded.		 */		chan->load_state = S3C2410_DMALOAD_NONE;		break;	case S3C2410_DMALOAD_1LOADED_1RUNNING:		/* we'll worry about checking to see if another buffer is		 * ready after we've called back the owner. This should		 * ensure we do not wait around too long for the DMA		 * engine to start the next transfer		 */		chan->load_state = S3C2410_DMALOAD_1LOADED;		break;	case S3C2410_DMALOAD_NONE:		printk(KERN_ERR "dma%d: IRQ with no loaded buffer?\n",		       chan->number);		break;	default:		printk(KERN_ERR "dma%d: IRQ in invalid load_state %d\n",		       chan->number, chan->load_state);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产亚洲精品aa午夜观看| 日本视频一区二区三区| 国产精品18久久久| 久久综合色婷婷| 国模一区二区三区白浆| 久久综合狠狠综合久久激情| 国内成人免费视频| 中文字幕日本不卡| 在线精品视频一区二区| 亚洲综合丝袜美腿| 欧美丰满少妇xxxxx高潮对白| 偷窥国产亚洲免费视频| 精品国产成人系列| 成人在线综合网站| 亚洲综合成人在线| 91精品国产综合久久蜜臀 | 国产在线播精品第三| 久久久91精品国产一区二区三区| 国产在线麻豆精品观看| 国产午夜精品福利| 99国产精品国产精品久久| 亚洲成人午夜影院| 日韩欧美精品在线视频| 国产精品自在欧美一区| 亚洲欧美日韩一区二区 | 国产呦精品一区二区三区网站| 久久精品在线观看| 91麻豆123| 久久99久久久久久久久久久| 欧美高清在线一区二区| 欧美在线free| 国内精品国产成人| 亚洲卡通欧美制服中文| 日韩精品中文字幕一区二区三区| 成人高清免费在线播放| 午夜久久电影网| 国产女人aaa级久久久级| 在线观看不卡视频| 精品影院一区二区久久久| 国产精品第四页| 91精品国产乱码| av激情综合网| 麻豆一区二区三| 亚洲乱码国产乱码精品精小说 | 精品剧情在线观看| 91麻豆免费在线观看| 精品一区二区三区免费播放| 亚洲人成网站影音先锋播放| 精品国产伦一区二区三区观看体验| 成人高清免费在线播放| 免费成人av在线播放| 自拍av一区二区三区| 日韩精品中文字幕在线一区| 91久久人澡人人添人人爽欧美| 精品一区二区三区视频在线观看| 夜夜嗨av一区二区三区四季av | 成人自拍视频在线| 久久激情五月婷婷| 亚洲一区在线电影| 中文字幕中文字幕一区| 久久久777精品电影网影网| 欧美午夜在线一二页| 波多野结衣中文一区| 久久99久久久久久久久久久| 午夜精品久久久久久久久| 亚洲丝袜美腿综合| 国产精品美女视频| 国产亚洲一二三区| 亚洲精品一区二区三区香蕉| 美女视频黄频大全不卡视频在线播放| 日本久久一区二区三区| 日本最新不卡在线| 综合久久久久久| 欧美一区二区三区免费观看视频 | 欧美大片拔萝卜| 黄色小说综合网站| 中文字幕日韩av资源站| 69p69国产精品| 国产一本一道久久香蕉| 在线不卡免费av| 欧美性大战久久久久久久蜜臀| 99久久婷婷国产综合精品电影| 色综合久久久久综合| 国产毛片精品视频| 国产高清亚洲一区| 国产麻豆9l精品三级站| 国产一区二区精品在线观看| 国内一区二区在线| 国产精品一二三区在线| 成人丝袜视频网| 欧美一区二区三区免费在线看| 99久久99久久久精品齐齐| 国内成人免费视频| 亚洲五月六月丁香激情| 欧美亚洲精品一区| 亚洲综合在线免费观看| 欧美精品一区二区三区蜜桃| 91日韩在线专区| 成人精品国产一区二区4080| 成人黄色大片在线观看| 高清beeg欧美| 欧美喷潮久久久xxxxx| 午夜视频在线观看一区| 精品久久久久一区| 欧美日韩精品一区视频| 在线观看国产日韩| 欧美系列一区二区| 欧美成人乱码一区二区三区| 99re视频精品| 五月综合激情婷婷六月色窝| 欧美大片国产精品| av激情综合网| 国产一区二区三区在线观看免费| 中文字幕av不卡| 国产免费观看久久| 国产精品麻豆久久久| 日韩理论片中文av| 亚洲国产精品久久艾草纯爱| 日韩精品一二三区| 黄一区二区三区| 色8久久精品久久久久久蜜| 99精品视频一区| 日韩精品专区在线影院重磅| 亚洲欧美日韩国产另类专区| 日日夜夜免费精品视频| 亚洲精品第1页| 免费在线看一区| 成人一级视频在线观看| 欧美色视频在线观看| 久久色在线观看| 亚洲国产毛片aaaaa无费看| 国内精品伊人久久久久影院对白| thepron国产精品| 91精品视频网| 亚洲男同1069视频| 国产伦精品一区二区三区视频青涩| 91蝌蚪porny| 久久人人爽人人爽| 爽好多水快深点欧美视频| 成人a级免费电影| 欧美本精品男人aⅴ天堂| 一区二区三区国产豹纹内裤在线| 国产乱理伦片在线观看夜一区| 欧美午夜精品一区二区三区| 久久久国产综合精品女国产盗摄| 亚洲丶国产丶欧美一区二区三区| 丁香六月久久综合狠狠色| 日韩欧美一区在线观看| 亚洲国产精品二十页| 欧美xxxxxxxx| 午夜伊人狠狠久久| 91福利视频网站| 国产精品久久久久影视| 久久99国产精品久久99果冻传媒| 色一情一乱一乱一91av| 国产精品美女久久久久av爽李琼| 久久疯狂做爰流白浆xx| 欧美久久久久久久久久| 亚洲精品乱码久久久久久日本蜜臀| 国产成a人亚洲精品| 久久男人中文字幕资源站| 日韩av电影免费观看高清完整版在线观看| 91麻豆高清视频| 自拍偷拍国产精品| jlzzjlzz亚洲日本少妇| 中文字幕乱码亚洲精品一区| 国产麻豆91精品| 国产清纯白嫩初高生在线观看91 | 日韩成人免费在线| 欧美色综合天天久久综合精品| 亚洲欧洲日韩av| 成人精品gif动图一区| 欧美国产精品一区| 成人h动漫精品一区二| 中文字幕不卡三区| av激情综合网| 亚洲欧美日韩在线播放| 欧洲精品在线观看| 亚洲成人激情自拍| 91精品啪在线观看国产60岁| 蜜臀精品久久久久久蜜臀| 日韩精品中午字幕| 精品在线一区二区三区| 精品国产乱码久久久久久免费| 美女网站视频久久| 精品成人在线观看| 国产成人在线影院 | 国产日产欧美一区二区三区 | 97精品国产露脸对白| 亚洲天堂精品在线观看| 972aa.com艺术欧美| 一区二区三区欧美亚洲| 欧美日韩一区三区| 免费精品视频在线| 久久久久九九视频| 91片在线免费观看| 亚洲 欧美综合在线网络| 欧美大白屁股肥臀xxxxxx| 国产麻豆一精品一av一免费| 中文字幕免费不卡|