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

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

?? acsi_slm.c

?? linux和2410結合開發 用他可以生成2410所需的zImage文件
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* * acsi_slm.c -- Device driver for the Atari SLM laser printer * * Copyright 1995 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de> * * This file is subject to the terms and conditions of the GNU General Public * License.  See the file COPYING in the main directory of this archive for * more details. *  *//*Notes:The major number for SLM printers is 28 (like ACSI), but as a characterdevice, not block device. The minor number is the number of the printer (ifyou have more than one SLM; currently max. 2 (#define-constant) SLMs aresupported). The device can be opened for reading and writing. If reading it,you get some status infos (MODE SENSE data). Writing mode is used for the datato be printed. Some ioctls allow to get the printer status and to tune printermodes and some internal variables.A special problem of the SLM driver is the timing and thus the buffering ofthe print data. The problem is that all the data for one page must be presentin memory when printing starts, else --when swapping occurs-- the timing couldnot be guaranteed. There are several ways to assure this: 1) Reserve a buffer of 1196k (maximum page size) statically by    atari_stram_alloc(). The data are collected there until they're complete,	and then printing starts. Since the buffer is reserved, no further	considerations about memory and swapping are needed. So this is the	simplest method, but it needs a lot of memory for just the SLM.    An striking advantage of this method is (supposed the SLM_CONT_CNT_REPROG	method works, see there), that there are no timing problems with the DMA	anymore.	 2) The other method would be to reserve the buffer dynamically each time    printing is required. I could think of looking at mem_map where the	largest unallocted ST-RAM area is, taking the area, and then extending it	by swapping out the neighbored pages, until the needed size is reached.	This requires some mm hacking, but seems possible. The only obstacle could	be pages that cannot be swapped out (reserved pages)... 3) Another possibility would be to leave the real data in user space and to    work with two dribble buffers of about 32k in the driver: While the one	buffer is DMAed to the SLM, the other can be filled with new data. But	to keep the timing, that requires that the user data remain in memory and	are not swapped out. Requires mm hacking, too, but maybe not so bad as	method 2).*/#include <linux/module.h>#include <linux/errno.h>#include <linux/sched.h>#include <linux/timer.h>#include <linux/fs.h>#include <linux/major.h>#include <linux/kernel.h>#include <linux/delay.h>#include <linux/interrupt.h>#include <linux/time.h>#include <linux/mm.h>#include <linux/slab.h>#include <linux/devfs_fs_kernel.h>#include <linux/smp_lock.h>#include <asm/pgtable.h>#include <asm/system.h>#include <asm/uaccess.h>#include <asm/atarihw.h>#include <asm/atariints.h>#include <asm/atari_acsi.h>#include <asm/atari_stdma.h>#include <asm/atari_stram.h>#include <asm/atari_SLM.h>#undef	DEBUG/* Define this if the page data are continuous in physical memory. That * requires less reprogramming of the ST-DMA */#define	SLM_CONTINUOUS_DMA/* Use continuous reprogramming of the ST-DMA counter register. This is * --strictly speaking-- not allowed, Atari recommends not to look at the * counter register while a DMA is going on. But I don't know if that applies * only for reading the register, or also writing to it. Writing only works * fine for me... The advantage is that the timing becomes absolutely * uncritical: Just update each, say 200ms, the counter reg to its maximum, * and the DMA will work until the status byte interrupt occurs. */#define	SLM_CONT_CNT_REPROG#define MAJOR_NR ACSI_MAJOR#define CMDSET_TARG_LUN(cmd,targ,lun)			\    do {										\		cmd[0] = (cmd[0] & ~0xe0) | (targ)<<5;	\		cmd[1] = (cmd[1] & ~0xe0) | (lun)<<5;	\	} while(0)#define	START_TIMER(to)	mod_timer(&slm_timer, jiffies + (to))#define	STOP_TIMER()	del_timer(&slm_timer)static char slmreqsense_cmd[6] = { 0x03, 0, 0, 0, 0, 0 };static char slmprint_cmd[6]    = { 0x0a, 0, 0, 0, 0, 0 };static char slminquiry_cmd[6]  = { 0x12, 0, 0, 0, 0, 0x80 };static char slmmsense_cmd[6]   = { 0x1a, 0, 0, 0, 255, 0 };#if 0static char slmmselect_cmd[6]  = { 0x15, 0, 0, 0, 0, 0 };#endif#define	MAX_SLM		2static struct slm {	unsigned	target;			/* target number */	unsigned	lun;			/* LUN in target controller */	unsigned	wbusy : 1;		/* output part busy */	unsigned	rbusy : 1;		/* status part busy */} slm_info[MAX_SLM];int N_SLM_Printers = 0;/* printer buffer */static unsigned char	*SLMBuffer;	/* start of buffer */static unsigned char	*BufferP;	/* current position in buffer */static int				BufferSize;	/* length of buffer for page size */typedef enum { IDLE, FILLING, PRINTING } SLMSTATE;static SLMSTATE			SLMState;static int				SLMBufOwner;	/* SLM# currently using the buffer *//* DMA variables */#ifndef SLM_CONT_CNT_REPROGstatic unsigned long	SLMCurAddr;		/* current base addr of DMA chunk */static unsigned long	SLMEndAddr;		/* expected end addr */static unsigned long	SLMSliceSize;	/* size of one DMA chunk */#endifstatic int				SLMError;/* wait queues */static DECLARE_WAIT_QUEUE_HEAD(slm_wait);	/* waiting for buffer */static DECLARE_WAIT_QUEUE_HEAD(print_wait);	/* waiting for printing finished *//* status codes */#define	SLMSTAT_OK		0x00#define	SLMSTAT_ORNERY	0x02#define	SLMSTAT_TONER	0x03#define	SLMSTAT_WARMUP	0x04#define	SLMSTAT_PAPER	0x05#define	SLMSTAT_DRUM	0x06#define	SLMSTAT_INJAM	0x07#define	SLMSTAT_THRJAM	0x08#define	SLMSTAT_OUTJAM	0x09#define	SLMSTAT_COVER	0x0a#define	SLMSTAT_FUSER	0x0b#define	SLMSTAT_IMAGER	0x0c#define	SLMSTAT_MOTOR	0x0d#define	SLMSTAT_VIDEO	0x0e#define	SLMSTAT_SYSTO	0x10#define	SLMSTAT_OPCODE	0x12#define	SLMSTAT_DEVNUM	0x15#define	SLMSTAT_PARAM	0x1a#define	SLMSTAT_ACSITO	0x1b	/* driver defined */#define	SLMSTAT_NOTALL	0x1c	/* driver defined */static char *SLMErrors[] = {	/* 0x00 */	"OK and ready",	/* 0x01 */	NULL,	/* 0x02 */	"ornery printer",	/* 0x03 */	"toner empty",	/* 0x04 */	"warming up",	/* 0x05 */	"paper empty",	/* 0x06 */	"drum empty",	/* 0x07 */	"input jam",	/* 0x08 */	"through jam",	/* 0x09 */	"output jam",	/* 0x0a */	"cover open",	/* 0x0b */	"fuser malfunction",	/* 0x0c */	"imager malfunction",	/* 0x0d */	"motor malfunction",	/* 0x0e */	"video malfunction",	/* 0x0f */	NULL,	/* 0x10 */	"printer system timeout",	/* 0x11 */	NULL,	/* 0x12 */	"invalid operation code",	/* 0x13 */	NULL,	/* 0x14 */	NULL,	/* 0x15 */	"invalid device number",	/* 0x16 */	NULL,	/* 0x17 */	NULL,	/* 0x18 */	NULL,	/* 0x19 */	NULL,	/* 0x1a */	"invalid parameter list",	/* 0x1b */	"ACSI timeout",	/* 0x1c */	"not all printed"};#define	N_ERRORS	(sizeof(SLMErrors)/sizeof(*SLMErrors))/* real (driver caused) error? */#define	IS_REAL_ERROR(x)	(x > 0x10)static struct {	char	*name;	int 	w, h;} StdPageSize[] = {	{ "Letter", 2400, 3180 },	{ "Legal",  2400, 4080 },	{ "A4",     2336, 3386 },	{ "B5",     2016, 2914 }};#define	N_STD_SIZES		(sizeof(StdPageSize)/sizeof(*StdPageSize))#define	SLM_BUFFER_SIZE	(2336*3386/8)	/* A4 for now */#define	SLM_DMA_AMOUNT	255				/* #sectors to program the DMA for */#ifdef	SLM_CONTINUOUS_DMA# define	SLM_DMA_INT_OFFSET	0		/* DMA goes until seccnt 0, no offs */# define	SLM_DMA_END_OFFSET	32		/* 32 Byte ST-DMA FIFO */# define	SLM_SLICE_SIZE(w) 	(255*512)#else# define	SLM_DMA_INT_OFFSET	32		/* 32 Byte ST-DMA FIFO */# define	SLM_DMA_END_OFFSET	32		/* 32 Byte ST-DMA FIFO */# define	SLM_SLICE_SIZE(w)	((254*512)/(w/8)*(w/8))#endif/* calculate the number of jiffies to wait for 'n' bytes */#ifdef SLM_CONT_CNT_REPROG#define	DMA_TIME_FOR(n)		50#define	DMA_STARTUP_TIME	0#else#define	DMA_TIME_FOR(n)		(n/1400-1)#define	DMA_STARTUP_TIME	650#endif/***************************** Prototypes *****************************/static char *slm_errstr( int stat );static int slm_getstats( char *buffer, int device );static ssize_t slm_read( struct file* file, char *buf, size_t count, loff_t                         *ppos );static void start_print( int device );static void slm_interrupt(int irc, void *data, struct pt_regs *fp);static void slm_test_ready( unsigned long dummy );static void set_dma_addr( unsigned long paddr );static unsigned long get_dma_addr( void );static ssize_t slm_write( struct file *file, const char *buf, size_t count,                          loff_t *ppos );static int slm_ioctl( struct inode *inode, struct file *file, unsigned int                      cmd, unsigned long arg );static int slm_open( struct inode *inode, struct file *file );static int slm_release( struct inode *inode, struct file *file );static int slm_req_sense( int device );static int slm_mode_sense( int device, char *buffer, int abs_flag );#if 0static int slm_mode_select( int device, char *buffer, int len, int                            default_flag );#endifstatic int slm_get_pagesize( int device, int *w, int *h );/************************* End of Prototypes **************************/static struct timer_list slm_timer = { function: slm_test_ready };static struct file_operations slm_fops = {	owner:		THIS_MODULE,	read:		slm_read,	write:		slm_write,	ioctl:		slm_ioctl,	open:		slm_open,	release:	slm_release,};/* ---------------------------------------------------------------------- *//*							   Status Functions							  */static char *slm_errstr( int stat ){	char *p;	static char	str[22];	stat &= 0x1f;	if (stat >= 0 && stat < N_ERRORS && (p = SLMErrors[stat]))		return( p );	sprintf( str, "unknown status 0x%02x", stat );	return( str );}static int slm_getstats( char *buffer, int device ){	int 			len = 0, stat, i, w, h;	unsigned char	buf[256];		stat = slm_mode_sense( device, buf, 0 );	if (IS_REAL_ERROR(stat))		return( -EIO );	#define SHORTDATA(i)		((buf[i] << 8) | buf[i+1])#define	BOOLDATA(i,mask)	((buf[i] & mask) ? "on" : "off")	w = SHORTDATA( 3 );	h = SHORTDATA( 1 );			len += sprintf( buffer+len, "Status\t\t%s\n",					slm_errstr( stat ) );	len += sprintf( buffer+len, "Page Size\t%dx%d",					w, h );	for( i = 0; i < N_STD_SIZES; ++i ) {		if (w == StdPageSize[i].w && h == StdPageSize[i].h)			break;	}	if (i < N_STD_SIZES)		len += sprintf( buffer+len, " (%s)", StdPageSize[i].name );	buffer[len++] = '\n';	len += sprintf( buffer+len, "Top/Left Margin\t%d/%d\n",					SHORTDATA( 5 ), SHORTDATA( 7 ) );	len += sprintf( buffer+len, "Manual Feed\t%s\n",					BOOLDATA( 9, 0x01 ) );	len += sprintf( buffer+len, "Input Select\t%d\n",					(buf[9] >> 1) & 7 );	len += sprintf( buffer+len, "Auto Select\t%s\n",					BOOLDATA( 9, 0x10 ) );	len += sprintf( buffer+len, "Prefeed Paper\t%s\n",					BOOLDATA( 9, 0x20 ) );	len += sprintf( buffer+len, "Thick Pixels\t%s\n",					BOOLDATA( 9, 0x40 ) );	len += sprintf( buffer+len, "H/V Resol.\t%d/%d dpi\n",					SHORTDATA( 12 ), SHORTDATA( 10 ) );	len += sprintf( buffer+len, "System Timeout\t%d\n",					buf[14] );	len += sprintf( buffer+len, "Scan Time\t%d\n",					SHORTDATA( 15 ) );	len += sprintf( buffer+len, "Page Count\t%d\n",					SHORTDATA( 17 ) );	len += sprintf( buffer+len, "In/Out Cap.\t%d/%d\n",					SHORTDATA( 19 ), SHORTDATA( 21 ) );	len += sprintf( buffer+len, "Stagger Output\t%s\n",					BOOLDATA( 23, 0x01 ) );	len += sprintf( buffer+len, "Output Select\t%d\n",					(buf[23] >> 1) & 7 );	len += sprintf( buffer+len, "Duplex Print\t%s\n",					BOOLDATA( 23, 0x10 ) );	len += sprintf( buffer+len, "Color Sep.\t%s\n",					BOOLDATA( 23, 0x20 ) );	return( len );}static ssize_t slm_read( struct file *file, char *buf, size_t count,						 loff_t *ppos ){	struct inode *node = file->f_dentry->d_inode;	unsigned long page;	int length;	int end;	if (count < 0)		return( -EINVAL );	if (!(page = __get_free_page( GFP_KERNEL )))		return( -ENOMEM );		length = slm_getstats( (char *)page, MINOR(node->i_rdev) );	if (length < 0) {		count = length;		goto out;	}	if (file->f_pos >= length) {		count = 0;		goto out;	}	if (count + file->f_pos > length)		count = length - file->f_pos;	end = count + file->f_pos;	if (copy_to_user(buf, (char *)page + file->f_pos, count)) {		count = -EFAULT;		goto out;	}	file->f_pos = end;out:	free_page( page );	return( count );}/* ---------------------------------------------------------------------- *//*								   Printing								  */static void start_print( int device ){	struct slm *sip = &slm_info[device];	unsigned char	*cmd;	unsigned long	paddr;	int				i;		stdma_lock( slm_interrupt, NULL );	CMDSET_TARG_LUN( slmprint_cmd, sip->target, sip->lun );	cmd = slmprint_cmd;	paddr = virt_to_phys( SLMBuffer );	dma_cache_maintenance( paddr, virt_to_phys(BufferP)-paddr, 1 );	DISABLE_IRQ();	/* Low on A1 */	dma_wd.dma_mode_status = 0x88;	MFPDELAY();	/* send the command bytes except the last */	for( i = 0; i < 5; ++i ) {		DMA_LONG_WRITE( *cmd++, 0x8a );		udelay(20);		if (!acsi_wait_for_IRQ( HZ/2 )) {			SLMError = 1;			return; /* timeout */		}	}	/* last command byte */	DMA_LONG_WRITE( *cmd++, 0x82 );	MFPDELAY();	/* set DMA address */	set_dma_addr( paddr );	/* program DMA for write and select sector counter reg */	dma_wd.dma_mode_status = 0x192;	MFPDELAY();	/* program for 255*512 bytes and start DMA */	DMA_LONG_WRITE( SLM_DMA_AMOUNT, 0x112 );#ifndef SLM_CONT_CNT_REPROG	SLMCurAddr = paddr;	SLMEndAddr = paddr + SLMSliceSize + SLM_DMA_INT_OFFSET;#endif	START_TIMER( DMA_STARTUP_TIME + DMA_TIME_FOR( SLMSliceSize ));#if !defined(SLM_CONT_CNT_REPROG) && defined(DEBUG)	printk( "SLM: CurAddr=%#lx EndAddr=%#lx timer=%ld\n",			SLMCurAddr, SLMEndAddr, DMA_TIME_FOR( SLMSliceSize ) );#endif		ENABLE_IRQ();}/* Only called when an error happened or at the end of a page */static void slm_interrupt(int irc, void *data, struct pt_regs *fp){	unsigned long	addr;	int				stat;		STOP_TIMER();	addr = get_dma_addr();	stat = acsi_getstatus();	SLMError = (stat < 0)             ? SLMSTAT_ACSITO :		       (addr < virt_to_phys(BufferP)) ? SLMSTAT_NOTALL :									    stat;	dma_wd.dma_mode_status = 0x80;	MFPDELAY();#ifdef DEBUG	printk( "SLM: interrupt, addr=%#lx, error=%d\n", addr, SLMError );#endif	wake_up( &print_wait );	stdma_release();	ENABLE_IRQ();}static void slm_test_ready( unsigned long dummy ){#ifdef SLM_CONT_CNT_REPROG	/* program for 255*512 bytes again */	dma_wd.fdc_acces_seccount = SLM_DMA_AMOUNT;	START_TIMER( DMA_TIME_FOR(0) );#ifdef DEBUG	printk( "SLM: reprogramming timer for %d jiffies, addr=%#lx\n",			DMA_TIME_FOR(0), get_dma_addr() );#endif	#else /* !SLM_CONT_CNT_REPROG */	unsigned long	flags, addr;	int				d, ti;#ifdef DEBUG	struct timeval start_tm, end_tm;	int			   did_wait = 0;#endif	save_flags(flags);	cli();		addr = get_dma_addr();	if ((d = SLMEndAddr - addr) > 0) {		restore_flags(flags);				/* slice not yet finished, decide whether to start another timer or to		 * busy-wait */		ti = DMA_TIME_FOR( d );		if (ti > 0) {#ifdef DEBUG			printk( "SLM: reprogramming timer for %d jiffies, rest %d bytes\n",					ti, d );#endif			START_TIMER( ti );			return;		}		/* wait for desired end address to be reached */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久久久毛片软件| 中文字幕视频一区二区三区久| 美女网站在线免费欧美精品| 26uuu色噜噜精品一区二区| 日本午夜一区二区| 国产农村妇女精品| 欧美亚洲国产一区二区三区| 午夜精品一区二区三区三上悠亚| 精品国产凹凸成av人网站| 成人激情av网| 日本亚洲三级在线| 中文字幕视频一区| 欧美成人精品二区三区99精品| 91色九色蝌蚪| caoporm超碰国产精品| 日本aⅴ精品一区二区三区| 国产欧美精品一区二区色综合朱莉| 久久久高清一区二区三区| 国产成人无遮挡在线视频| 亚洲视频一区在线| 欧美大尺度电影在线| 在线观看网站黄不卡| 风流少妇一区二区| 免播放器亚洲一区| 亚洲国产日日夜夜| 国产精品国产三级国产普通话蜜臀 | 成人高清视频免费观看| 在线视频欧美精品| 不卡一区中文字幕| 国产91在线观看| 国产成人啪免费观看软件| 久久国产综合精品| 麻豆精品视频在线观看视频| 亚洲影视资源网| 亚洲日本va在线观看| 国产精品日日摸夜夜摸av| 久久免费偷拍视频| 国产欧美精品一区| 亚洲欧洲一区二区在线播放| 中文字幕亚洲在| 亚洲制服丝袜av| 蜜臀久久久久久久| av高清不卡在线| 日本韩国精品在线| 717成人午夜免费福利电影| 日韩免费看的电影| 日本一区二区高清| 亚洲色图欧美偷拍| 免费欧美在线视频| 成人av在线网| 欧美一区二区美女| 中文字幕中文在线不卡住| 午夜视频在线观看一区二区| 国产在线精品一区二区 | 亚洲一区影音先锋| 粉嫩久久99精品久久久久久夜| 成人精品国产免费网站| 777午夜精品视频在线播放| 久久久亚洲欧洲日产国码αv| 一区二区三区中文字幕电影| 丁香天五香天堂综合| 日韩欧美中文一区| 亚洲国产精品久久久久秋霞影院| 国产成人精品免费| 欧美大白屁股肥臀xxxxxx| 亚洲图片有声小说| 在线一区二区三区四区| 亚洲乱码国产乱码精品精小说| 另类小说欧美激情| 欧美美女bb生活片| 三级久久三级久久| 欧美精品视频www在线观看| 亚洲愉拍自拍另类高清精品| 欧美亚洲国产bt| 午夜影院在线观看欧美| 在线国产亚洲欧美| 免费高清成人在线| 久久美女高清视频| 成人综合激情网| 国产蜜臀av在线一区二区三区 | 国产成人丝袜美腿| 中文字幕日韩欧美一区二区三区| 日本道色综合久久| 午夜精品123| 国产日韩一级二级三级| 91影院在线观看| 日韩高清不卡一区二区| 国产亚洲一区二区在线观看| 92国产精品观看| 日本欧美一区二区三区| 欧美韩国日本一区| 欧美精品v国产精品v日韩精品| 国产酒店精品激情| 亚洲mv在线观看| 亚洲欧美一区二区三区极速播放| 777精品伊人久久久久大香线蕉| 国产精品自产自拍| 热久久免费视频| 亚洲九九爱视频| 国产精品无圣光一区二区| 日韩欧美一卡二卡| 欧美视频一区在线| 99re视频这里只有精品| 久久99精品久久只有精品| 日韩激情一二三区| 亚洲一二三四久久| 综合婷婷亚洲小说| 亚洲精品一线二线三线无人区| 久久69国产一区二区蜜臀| 26uuu久久综合| 91麻豆视频网站| 国内精品写真在线观看| 精品久久99ma| 欧美刺激午夜性久久久久久久| 欧美主播一区二区三区美女| 色网综合在线观看| 成人av片在线观看| 99热这里都是精品| 91蝌蚪porny九色| 色一情一乱一乱一91av| 欧美视频日韩视频在线观看| 欧美日韩亚洲综合一区二区三区| 91久久一区二区| 91高清视频免费看| 亚洲黄网站在线观看| 99久久国产综合精品女不卡| 久久99精品久久久久久动态图 | 精品综合久久久久久8888| 美女诱惑一区二区| 成人在线综合网| 91国产成人在线| 国产精品毛片无遮挡高清| 亚洲综合自拍偷拍| 日韩国产欧美一区二区三区| 国产精品一级片| 欧美日韩黄视频| 久久理论电影网| 国产精品久久久久久久蜜臀 | 欧美中文一区二区三区| 日韩欧美一级二级三级久久久| 国产精品美女久久久久久久| 麻豆91在线播放免费| 欧美日韩视频专区在线播放| 欧美经典一区二区| 日韩精品乱码免费| 欧美性色aⅴ视频一区日韩精品| 久久久国际精品| 乱中年女人伦av一区二区| 欧美午夜精品一区二区蜜桃| 亚洲欧洲在线观看av| 国产激情视频一区二区在线观看| 欧美三级日韩三级| 国产精品久久777777| 中文字幕av一区二区三区| 亚洲在线免费播放| 欧美天天综合网| 婷婷六月综合亚洲| 91精品国产入口| 免费人成精品欧美精品| 日韩精品一区二区三区视频| 激情综合色播激情啊| 欧美成人精品高清在线播放| 国产真实乱子伦精品视频| 久久精品夜夜夜夜久久| 成人aaaa免费全部观看| 国产欧美一区二区精品性色| 成人白浆超碰人人人人| 一区二区在线观看免费| 欧美亚洲动漫精品| 国产精品亚洲а∨天堂免在线| 国产日本亚洲高清| 91精品欧美一区二区三区综合在| 日韩成人一区二区三区在线观看| 国内精品不卡在线| 亚洲三级电影全部在线观看高清| 欧美狂野另类xxxxoooo| 成人免费视频一区| 亚洲你懂的在线视频| 精品播放一区二区| 色婷婷久久久亚洲一区二区三区 | 日本中文一区二区三区| 国产精品视频免费看| 欧美一区二区视频免费观看| av一区二区三区四区| 国产在线视频精品一区| 亚洲激情网站免费观看| 久久亚洲综合色一区二区三区| 日本高清无吗v一区| 成人午夜私人影院| 久久精品国产77777蜜臀| 樱花影视一区二区| 亚洲色欲色欲www| 国产视频视频一区| 精品播放一区二区| 精品国产凹凸成av人网站| 717成人午夜免费福利电影| 色综合天天综合色综合av| 成人一区二区视频| 国产精品一区免费视频| 激情综合网最新|