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

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

?? dma-sa1100.c

?? linux-2.4.29操作系統的源碼
?? C
字號:
/* * arch/arm/kernel/dma-sa1100.c * * Support functions for the SA11x0 internal DMA channels. * (see also Documentation/arm/SA1100/DMA) * * Copyright (C) 2000 Nicolas Pitre * * 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/init.h>#include <linux/sched.h>#include <linux/spinlock.h>#include <linux/slab.h>#include <linux/errno.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>#undef DEBUG#ifdef DEBUG#define DPRINTK( s, arg... )  printk( "dma<%s>: " s, dma->device_id , ##arg )#else#define DPRINTK( x... )#endif/* * DMA control register structure */typedef struct {	volatile u_long DDAR;	volatile u_long SetDCSR;	volatile u_long ClrDCSR;	volatile u_long RdDCSR;	volatile dma_addr_t DBSA;	volatile u_long DBTA;	volatile dma_addr_t DBSB;	volatile u_long DBTB;} dma_regs_t;#include "dma.h"sa1100_dma_t dma_chan[MAX_SA1100_DMA_CHANNELS];/* * Maximum physical DMA buffer size */#define MAX_DMA_SIZE		0x1fff#define MAX_DMA_ORDER		12/* * DMA processing... */static inline int start_sa1100_dma(sa1100_dma_t * dma, dma_addr_t dma_ptr, int size){	dma_regs_t *regs = dma->regs;	int status;	status = regs->RdDCSR;	/* If both DMA buffers are started, there's nothing else we can do. */	if ((status & (DCSR_STRTA | DCSR_STRTB)) == (DCSR_STRTA | DCSR_STRTB)) {		DPRINTK("start: st %#x busy\n", status);		return -EBUSY;	}	if (((status & DCSR_BIU) && (status & DCSR_STRTB)) ||	    (!(status & DCSR_BIU) && !(status & DCSR_STRTA))) {		if (status & DCSR_DONEA) {			/* give a chance for the interrupt to be processed */			goto irq_pending;		}		regs->DBSA = dma_ptr;		regs->DBTA = size;		regs->SetDCSR = DCSR_STRTA | DCSR_IE | DCSR_RUN;		DPRINTK("start a=%#x s=%d on A\n", dma_ptr, size);	} else {		if (status & DCSR_DONEB) {			/* give a chance for the interrupt to be processed */			goto irq_pending;		}		regs->DBSB = dma_ptr;		regs->DBTB = size;		regs->SetDCSR = DCSR_STRTB | DCSR_IE | DCSR_RUN;		DPRINTK("start a=%#x s=%d on B\n", dma_ptr, size);	}	return 0;irq_pending:	return -EAGAIN;}static int start_dma(sa1100_dma_t *dma, dma_addr_t dma_ptr, int size){	if (channel_is_sa1111_sac(dma - dma_chan))		return start_sa1111_sac_dma(dma, dma_ptr, size);	return start_sa1100_dma(dma, dma_ptr, size);}/* This must be called with IRQ disabled */static void process_dma(sa1100_dma_t * dma){	dma_buf_t *buf;	int chunksize;	for (;;) {		buf = dma->tail;		if (!buf || dma->stopped) {			/* no more data available */			DPRINTK("process: no more buf (dma %s)\n",				dma->curr ? "active" : "inactive");			/*			 * Some devices may require DMA still sending data			 * at any time for clock reference, etc.			 * Note: if there is still a data buffer being			 * processed then the ref count is negative.  This			 * allows for the DMA termination to be accounted in			 * the proper order.			 */			if (dma->spin_size && dma->spin_ref >= 0) {				chunksize = dma->spin_size;				if (chunksize > MAX_DMA_SIZE)					chunksize = (1 << MAX_DMA_ORDER);				while (start_dma(dma, dma->spin_addr, chunksize) == 0)					dma->spin_ref++;				if (dma->curr != NULL)					dma->spin_ref = -dma->spin_ref;			}			break;		}		/*		 * This improves latency if there are some active spinning		 * buffers.  We kill them altogether.		 */		if (dma->spin_ref > 0) {			if (channel_is_sa1111_sac(dma - dma_chan))				sa1111_reset_sac_dma(dma - dma_chan);			else				dma->regs->ClrDCSR =				    DCSR_STRTA|DCSR_STRTB|DCSR_DONEA|DCSR_DONEB;			dma->spin_ref = 0;		}		/*		 * Let's try to start DMA on the current buffer.		 * If DMA is busy then we break here.		 */		chunksize = buf->size;		if (chunksize > MAX_DMA_SIZE)			chunksize = (1 << MAX_DMA_ORDER);		DPRINTK("process: b=%#x s=%d\n", (int) buf->id, buf->size);		if (start_dma(dma, buf->dma_ptr, chunksize) != 0)			break;		if (!dma->curr)			dma->curr = buf;		buf->ref++;		buf->dma_ptr += chunksize;		buf->size -= chunksize;		if (buf->size == 0) {			/* current buffer is done: move tail to the next one */			dma->tail = buf->next;			DPRINTK("process: next b=%#x\n", (int) dma->tail);		}	}}/* This must be called with IRQ disabled */void sa1100_dma_done (sa1100_dma_t *dma){	dma_buf_t *buf = dma->curr;	if (dma->spin_ref > 0) {		dma->spin_ref--;	} else if (buf) {		buf->ref--;		if (buf->ref == 0 && buf->size == 0) {			/*			 * Current buffer is done.			 * Move current reference to the next one and send			 * the processed buffer to the callback function,			 * then discard it.			 */			DPRINTK("IRQ: buf done\n");			dma->curr = buf->next;			dma->spin_ref = -dma->spin_ref;			if (dma->head == buf)				dma->head = NULL;			if (dma->callback) {				int size = buf->dma_ptr - buf->dma_start;				dma->callback(buf->id, size);			}			kfree(buf);		}	}	process_dma(dma);}static void dma_irq_handler(int irq, void *dev_id, struct pt_regs *regs){	sa1100_dma_t *dma = (sa1100_dma_t *) dev_id;	int status = dma->regs->RdDCSR;	DPRINTK("IRQ: b=%#x st=%#x\n", (int) dma->curr->id, status);	if (status & (DCSR_ERROR)) {		printk(KERN_ERR "DMA on \"%s\" caused an error\n", dma->device_id);		dma->regs->ClrDCSR = DCSR_ERROR;	}	dma->regs->ClrDCSR = status & (DCSR_DONEA | DCSR_DONEB);	if (status & DCSR_DONEA)		sa1100_dma_done (dma);	if (status & DCSR_DONEB)		sa1100_dma_done (dma);}/* * DMA interface functions */static spinlock_t dma_list_lock;int sa1100_request_dma (dmach_t * channel, const char *device_id,			dma_device_t device){	sa1100_dma_t *dma = NULL;	dma_regs_t *regs;	int i, err;	*channel = -1;		/* to be sure we catch the freeing of a misregistered channel */	err = 0;	spin_lock(&dma_list_lock);	for (i = 0; i < SA1100_DMA_CHANNELS; i++) {		if (dma_chan[i].in_use) {			if (dma_chan[i].device == device) {				err = -EBUSY;				break;			}		} else if (!dma) {			dma = &dma_chan[i];		}	}	if (!err) {	       if (dma)		       dma->in_use = 1;	       else		       err = -ENOSR;	}	spin_unlock(&dma_list_lock);	if (err)		return err;	err = request_irq(dma->irq, dma_irq_handler, SA_INTERRUPT,			  device_id, (void *) dma);	if (err) {		printk(KERN_ERR		       "%s: unable to request IRQ %d for DMA channel\n",		       device_id, dma->irq);		return err;	}	*channel = dma - dma_chan;	dma->device_id = device_id;	dma->device = device;	dma->callback = NULL;	dma->spin_size = 0;	regs = dma->regs;	regs->ClrDCSR =		(DCSR_DONEA | DCSR_DONEB | DCSR_STRTA | DCSR_STRTB |		 DCSR_IE | DCSR_ERROR | DCSR_RUN);	regs->DDAR = device;	DPRINTK("requested\n");	return 0;}int sa1100_dma_set_callback(dmach_t channel, dma_callback_t cb){	sa1100_dma_t *dma = &dma_chan[channel];	if ((unsigned)channel >= MAX_SA1100_DMA_CHANNELS || !dma->in_use)		return -EINVAL;	dma->callback = cb;	DPRINTK("cb = %p\n", cb);	return 0;}int sa1100_dma_set_spin(dmach_t channel, dma_addr_t addr, int size){	sa1100_dma_t *dma = &dma_chan[channel];	int flags;	if ((unsigned)channel >= MAX_SA1100_DMA_CHANNELS || !dma->in_use)		return -EINVAL;	DPRINTK("set spin %d at %#x\n", size, addr);	local_irq_save(flags);	dma->spin_addr = addr;	dma->spin_size = size;	if (size)		process_dma(dma);	local_irq_restore(flags);	return 0;}int sa1100_dma_queue_buffer(dmach_t channel, void *buf_id,			    dma_addr_t data, int size){	sa1100_dma_t *dma;	dma_buf_t *buf;	int flags;	dma = &dma_chan[channel];	if ((unsigned)channel >= MAX_SA1100_DMA_CHANNELS || !dma->in_use)		return -EINVAL;	buf = kmalloc(sizeof(*buf), GFP_ATOMIC);	if (!buf)		return -ENOMEM;	buf->next = NULL;	buf->ref = 0;	buf->dma_ptr = buf->dma_start = data;	buf->size = size;	buf->id = buf_id;	DPRINTK("queueing b=%#x a=%#x s=%d\n", (int) buf_id, data, size);	local_irq_save(flags);	if (dma->head)		dma->head->next = buf;	dma->head = buf;	if (!dma->tail)		dma->tail = buf;	process_dma(dma);	local_irq_restore(flags);	return 0;}int sa1100_dma_get_current(dmach_t channel, void **buf_id, dma_addr_t *addr){	sa1100_dma_t *dma = &dma_chan[channel];	dma_regs_t *regs;	int flags, ret;	if ((unsigned)channel >= MAX_SA1100_DMA_CHANNELS || !dma->in_use)		return -EINVAL;	if (channel_is_sa1111_sac(channel))		return sa1111_dma_get_current(channel, buf_id, addr);	regs = dma->regs;	local_irq_save(flags);	if (dma->curr && dma->spin_ref <= 0) {		dma_buf_t *buf = dma->curr;		int status, using_bufa;		status = regs->RdDCSR;		/*		 * If we got here, that's because there is, or recently was, a		 * buffer being processed.  We must determine whether buffer		 * A or B is active.  Two possibilities: either we are		 * in the middle of a buffer, or the DMA controller just		 * switched to the next toggle but the interrupt hasn't been		 * serviced yet.  The former case is straight forward.  In		 * the later case, we'll do like if DMA is just at the end		 * of the previous toggle since all registers haven't been		 * reset yet.  This goes around the edge case and since we're		 * always a little behind anyways it shouldn't make a big		 * difference.  If DMA has been stopped prior calling this		 * then the position is always exact.		 */		using_bufa = ((!(status & DCSR_BIU) &&  (status & DCSR_STRTA)) ||			      ( (status & DCSR_BIU) && !(status & DCSR_STRTB)));		if (buf_id)			*buf_id = buf->id;		*addr = (using_bufa) ? regs->DBSA : regs->DBSB;		/*		 * Clamp funky pointers sometimes returned by the hardware		 * on completed DMA transfers		 */		if (*addr < buf->dma_start ||		    *addr > buf->dma_ptr)			*addr = buf->dma_ptr;		DPRINTK("curr_pos: b=%#x a=%#x\n", (int)dma->curr->id, *addr);		ret = 0;	} else if (dma->tail && dma->stopped) {		dma_buf_t *buf = dma->tail;		if (buf_id)			*buf_id = buf->id;		*addr = buf->dma_ptr;		ret = 0;	} else {		if (buf_id)			*buf_id = NULL;		*addr = 0;		ret = -ENXIO;	}	local_irq_restore(flags);	return ret;}int sa1100_dma_stop(dmach_t channel){	sa1100_dma_t *dma = &dma_chan[channel];	int flags;	if (channel_is_sa1111_sac(channel))		return sa1111_dma_stop(channel);	if (dma->stopped)		return 0;	local_irq_save(flags);	dma->stopped = 1;	/*	 * Stop DMA and tweak state variables so everything could restart	 * from there when resume/wakeup occurs.	 */	dma->regs->ClrDCSR = DCSR_RUN | DCSR_IE;	if (dma->curr) {		dma_buf_t *buf = dma->curr;		if (dma->spin_ref <= 0) {			dma_addr_t curpos;			sa1100_dma_get_current(channel, NULL, &curpos);			buf->size += buf->dma_ptr - curpos;			buf->dma_ptr = curpos;		}		buf->ref = 0;		dma->tail = buf;		dma->curr = NULL;	}	dma->spin_ref = 0;	dma->regs->ClrDCSR = DCSR_STRTA|DCSR_STRTB|DCSR_DONEA|DCSR_DONEB;	process_dma(dma);	local_irq_restore(flags);	return 0;}int sa1100_dma_resume(dmach_t channel){	sa1100_dma_t *dma = &dma_chan[channel];	if ((unsigned)channel >= MAX_SA1100_DMA_CHANNELS || !dma->in_use)		return -EINVAL;	if (channel_is_sa1111_sac(channel))		return sa1111_dma_resume(channel);	if (dma->stopped) {		unsigned long flags;		local_irq_save(flags);		dma->stopped = 0;		process_dma(dma);		local_irq_restore(flags);	}	return 0;}int sa1100_dma_flush_all(dmach_t channel){	sa1100_dma_t *dma = &dma_chan[channel];	dma_buf_t *buf, *next_buf;	int flags;	if ((unsigned)channel >= MAX_SA1100_DMA_CHANNELS || !dma->in_use)		return -EINVAL;	local_irq_save(flags);	if (channel_is_sa1111_sac(channel))		sa1111_reset_sac_dma(channel);	else		dma->regs->ClrDCSR = DCSR_STRTA|DCSR_STRTB|DCSR_DONEA|DCSR_DONEB|DCSR_RUN|DCSR_IE;	buf = dma->curr;	if (!buf)		buf = dma->tail;	dma->head = dma->tail = dma->curr = NULL;	dma->stopped = 0;	dma->spin_ref = 0;	process_dma(dma);	local_irq_restore(flags);	while (buf) {		next_buf = buf->next;		kfree(buf);		buf = next_buf;	}	DPRINTK("flushed\n");	return 0;}void sa1100_free_dma(dmach_t channel){	sa1100_dma_t *dma;	if ((unsigned)channel >= MAX_SA1100_DMA_CHANNELS)		return;	dma = &dma_chan[channel];	if (!dma->in_use) {		printk(KERN_ERR "Trying to free free DMA%d\n", channel);		return;	}	sa1100_dma_set_spin(channel, 0, 0);	sa1100_dma_flush_all(channel);	if (channel_is_sa1111_sac(channel)) {		sa1111_cleanup_sac_dma(channel);	} else {		free_irq(IRQ_DMA0 + channel, (void *) dma);	}	dma->in_use = 0;	DPRINTK("freed\n");}EXPORT_SYMBOL(sa1100_request_dma);EXPORT_SYMBOL(sa1100_dma_set_callback);EXPORT_SYMBOL(sa1100_dma_set_spin);EXPORT_SYMBOL(sa1100_dma_queue_buffer);EXPORT_SYMBOL(sa1100_dma_get_current);EXPORT_SYMBOL(sa1100_dma_stop);EXPORT_SYMBOL(sa1100_dma_resume);EXPORT_SYMBOL(sa1100_dma_flush_all);EXPORT_SYMBOL(sa1100_free_dma);#ifdef CONFIG_PM/* Drivers should call this from their PM callback function */int sa1100_dma_sleep(dmach_t channel){        sa1100_dma_t *dma = &dma_chan[channel];	int orig_state;	if ((unsigned)channel >= MAX_SA1100_DMA_CHANNELS || !dma->in_use)		return -EINVAL;	if (channel_is_sa1111_sac(channel)) {		/* We'll cheat a little until someone actually		 * write the real thing.		 */		sa1111_reset_sac_dma(channel);		return 0;	}	orig_state = dma->stopped;	sa1100_dma_stop(channel);	dma->regs->ClrDCSR = DCSR_RUN | DCSR_IE | DCSR_STRTA | DCSR_STRTB;	dma->stopped = orig_state;	dma->spin_ref = 0;	return 0;}int sa1100_dma_wakeup(dmach_t channel){        sa1100_dma_t *dma = &dma_chan[channel];	dma_regs_t *regs;	int flags;	if ((unsigned)channel >= MAX_SA1100_DMA_CHANNELS || !dma->in_use)		return -EINVAL;	if (channel_is_sa1111_sac(channel)) {		/* We'll cheat a little until someone actually		 * write the real thing.		 */		return 0;	}	regs = dma->regs;	regs->ClrDCSR =		(DCSR_DONEA | DCSR_DONEB | DCSR_STRTA | DCSR_STRTB |		 DCSR_IE | DCSR_ERROR | DCSR_RUN);	regs->DDAR = dma->device;	local_irq_save(flags);	process_dma(dma);	local_irq_restore(flags);	return 0;}EXPORT_SYMBOL(sa1100_dma_sleep);EXPORT_SYMBOL(sa1100_dma_wakeup);#endifstatic int __init sa1100_init_dma(void){	int channel;	for (channel = 0; channel < SA1100_DMA_CHANNELS; channel++) {		dma_chan[channel].regs =		    (dma_regs_t *) &DDAR(channel);		dma_chan[channel].irq = IRQ_DMA0 + channel;	}	return 0;}__initcall(sa1100_init_dma);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久九九视频| 欧美美女一区二区三区| 久久精品夜夜夜夜久久| 国产一区二区伦理| 中文字幕国产一区二区| 91在线精品一区二区三区| 亚洲欧洲av一区二区三区久久| 99国产精品久久久久久久久久久| 一区二区三区四区激情| 在线综合视频播放| 久久国产夜色精品鲁鲁99| 久久久久久日产精品| 成+人+亚洲+综合天堂| 一区二区三区中文字幕精品精品| 欧美日韩aaaaa| 国内精品国产成人| 亚洲欧美视频在线观看视频| 欧美日本国产一区| 国产成人午夜精品影院观看视频| 中文字幕在线观看不卡视频| 欧美日韩中文精品| 韩国成人在线视频| 亚洲精品视频免费看| 91精品蜜臀在线一区尤物| 国产精品538一区二区在线| 自拍偷拍亚洲激情| 91精品在线一区二区| 成人精品gif动图一区| 午夜电影久久久| 亚洲国产成人一区二区三区| 欧美三区免费完整视频在线观看| 激情五月婷婷综合网| 亚洲乱码国产乱码精品精小说| 欧美一区二视频| 99视频精品全部免费在线| 午夜伦欧美伦电影理论片| 国产日本欧美一区二区| 7777女厕盗摄久久久| av一本久道久久综合久久鬼色| 亚洲r级在线视频| 综合久久给合久久狠狠狠97色| 欧美一区二区三区色| 一本大道久久a久久综合| 国产麻豆视频精品| 亚洲成人手机在线| 中文字幕一区二区三区在线播放| 日韩久久精品一区| 欧美午夜精品久久久久久超碰 | 美女任你摸久久| 亚洲精品久久7777| 欧美激情一区二区三区蜜桃视频 | 欧美日韩国产大片| av一区二区三区在线| 国产精品资源在线| 蜜臀av一区二区在线观看| 亚洲免费观看高清在线观看| 久久精品水蜜桃av综合天堂| 日韩欧美一区二区免费| 欧美日韩国产高清一区| 精品国产自在久精品国产| 色一情一伦一子一伦一区| 成人深夜福利app| 国产乱妇无码大片在线观看| 欧美a级理论片| 日日夜夜精品视频天天综合网| 亚洲精品一二三四区| 中国色在线观看另类| 久久婷婷一区二区三区| 欧美zozozo| 欧美va亚洲va在线观看蝴蝶网| 欧美高清www午色夜在线视频| 91久久一区二区| 色婷婷av一区二区三区大白胸| 波多野结衣在线aⅴ中文字幕不卡| 国产成人在线免费观看| 成人性生交大片免费看中文网站| 国产一区视频在线看| 国产一区二区三区在线观看免费视频 | 蜜桃视频第一区免费观看| 日韩和欧美一区二区三区| 日韩av在线播放中文字幕| 亚洲电影一级黄| 亚洲成人动漫精品| 性久久久久久久久久久久| 亚洲午夜久久久久久久久电影网| 亚洲自拍偷拍av| 日本在线不卡一区| 九九九久久久精品| 黑人巨大精品欧美黑白配亚洲| 国产在线日韩欧美| 成人免费不卡视频| 91久久人澡人人添人人爽欧美| 欧美性猛交xxxx乱大交退制版| 欧美午夜精品久久久久久孕妇| 在线不卡欧美精品一区二区三区| 91精品国产91久久久久久一区二区| 日韩三级中文字幕| 国产嫩草影院久久久久| 一区精品在线播放| 亚洲一区二区三区三| 偷拍一区二区三区| 国产资源在线一区| 不卡视频免费播放| 91麻豆国产福利在线观看| 欧美日韩久久一区| 精品国产污网站| 亚洲啪啪综合av一区二区三区| 午夜av电影一区| 国产成人免费高清| 欧美日韩在线三区| 久久久一区二区三区捆绑**| 亚洲女人的天堂| 免费观看成人鲁鲁鲁鲁鲁视频| 成人的网站免费观看| 欧美区视频在线观看| 久久嫩草精品久久久久| 日韩毛片精品高清免费| 免费在线看成人av| 成人美女在线观看| 欧美绝品在线观看成人午夜影视| 国产亚洲欧美色| 一区二区高清在线| 国精品**一区二区三区在线蜜桃| 一本久久综合亚洲鲁鲁五月天| 精品国产乱码久久久久久老虎| 亚洲日本乱码在线观看| 激情六月婷婷综合| 91成人在线观看喷潮| 欧美经典一区二区| 日本sm残虐另类| 欧美性猛交xxxx黑人交| 中文字幕第一页久久| 日本va欧美va精品发布| 欧美亚日韩国产aⅴ精品中极品| 国产欧美一区二区在线观看| 日本欧美韩国一区三区| 91麻豆免费看| 国产欧美综合在线观看第十页| 奇米888四色在线精品| 91福利视频网站| 亚洲免费观看高清完整| 国产成人免费高清| 精品国产一区二区三区忘忧草| 天堂精品中文字幕在线| 一本大道久久a久久综合婷婷| 国产日产欧美一区| 激情欧美一区二区| 日韩欧美亚洲国产精品字幕久久久| 一区二区三区四区高清精品免费观看 | 中文在线免费一区三区高中清不卡| 免费成人小视频| 欧美人妖巨大在线| 亚洲综合自拍偷拍| av激情成人网| 亚洲国产精品国自产拍av| 国产尤物一区二区| 精品av综合导航| 久久电影网电视剧免费观看| 欧美猛男男办公室激情| 一区二区免费视频| 欧美日韩五月天| 亚洲第一精品在线| 欧美日韩极品在线观看一区| 亚洲一卡二卡三卡四卡无卡久久| 色综合天天综合色综合av| 国产精品久久久久久亚洲毛片| 岛国一区二区三区| 中文字幕在线一区免费| 91在线云播放| 亚洲一二三区在线观看| 欧美日韩精品一二三区| 亚洲第一狼人社区| 欧美一区二区视频在线观看2020| 亚洲6080在线| 日韩精品一区二| 国产suv精品一区二区6| 国产精品天干天干在线综合| 99久久免费国产| 亚洲一区二区三区不卡国产欧美| 色天天综合久久久久综合片| 亚洲国产成人va在线观看天堂| 欧美日韩视频在线第一区| 欧美aa在线视频| 亚洲国产成人一区二区三区| 一本一本大道香蕉久在线精品 | 亚洲视频网在线直播| 色偷偷成人一区二区三区91| 亚洲大片免费看| 精品日韩在线一区| 成人一区二区三区| 一级精品视频在线观看宜春院 | 精品99一区二区三区| 大美女一区二区三区| 一区二区三区在线观看视频 | 日韩精品一区二区三区在线播放| 国产一区二区三区在线观看精品| 中文字幕亚洲区| 欧美日韩不卡一区二区| 国产高清不卡二三区| 亚洲精品成人天堂一二三|