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

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

?? clps711x.c

?? IXP425 平臺下嵌入式LINUX的串口的驅動程序
?? C
字號:
/* *  linux/drivers/char/serial_clps711x.c * *  Driver for CLPS711x serial ports * *  Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o. * *  Copyright 1999 ARM Limited *  Copyright (C) 2000 Deep Blue Solutions Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA * *  $Id: clps711x.c,v 1.12.2.2 2002/10/24 09:53:25 rmk Exp $ * */#include <linux/config.h>#include <linux/module.h>#include <linux/errno.h>#include <linux/signal.h>#include <linux/sched.h>#include <linux/interrupt.h>#include <linux/tty.h>#include <linux/tty_flip.h>#include <linux/major.h>#include <linux/string.h>#include <linux/fcntl.h>#include <linux/ptrace.h>#include <linux/ioport.h>#include <linux/mm.h>#include <linux/slab.h>#include <linux/init.h>#include <linux/circ_buf.h>#include <linux/serial.h>#include <linux/console.h>#include <linux/sysrq.h>#include <asm/bitops.h>#include <asm/hardware.h>#include <asm/io.h>#include <asm/irq.h>#include <asm/system.h>#include <asm/uaccess.h>#include <linux/serial_core.h>#include <asm/hardware/clps7111.h>#define UART_NR		2#define SERIAL_CLPS711X_NAME	"ttyAM"#define SERIAL_CLPS711X_MAJOR	204#define SERIAL_CLPS711X_MINOR	16#define SERIAL_CLPS711X_NR	UART_NR#define CALLOUT_CLPS711X_NAME	"cuaam"#define CALLOUT_CLPS711X_MAJOR	205#define CALLOUT_CLPS711X_MINOR	16#define CALLOUT_CLPS711X_NR	UART_NRstatic struct tty_driver normal, callout;static struct tty_struct *clps711x_table[UART_NR];static struct termios *clps711x_termios[UART_NR], *clps711x_termios_locked[UART_NR];/* * We use the relevant SYSCON register as a base address for these ports. */#define UBRLCR(port)		((port)->iobase + UBRLCR1 - SYSCON1)#define UARTDR(port)		((port)->iobase + UARTDR1 - SYSCON1)#define SYSFLG(port)		((port)->iobase + SYSFLG1 - SYSCON1)#define SYSCON(port)		((port)->iobase + SYSCON1 - SYSCON1)#define TX_IRQ(port)		((port)->irq)#define RX_IRQ(port)		((port)->irq + 1)#define UART_ANY_ERR		(UARTDR_FRMERR | UARTDR_PARERR | UARTDR_OVERR)static void clps711xuart_stop_tx(struct uart_port *port, u_int from_tty){	disable_irq(TX_IRQ(port));}static void clps711xuart_start_tx(struct uart_port *port, u_int nonempty, u_int from_tty){	if (nonempty)		enable_irq(TX_IRQ(port));}static void clps711xuart_stop_rx(struct uart_port *port){	disable_irq(RX_IRQ(port));}static void clps711xuart_enable_ms(struct uart_port *port){}#if 0static void ambauart_modem_status(struct uart_info *info){	unsigned int status, delta;	struct uart_icount *icount = &info->port->icount;	UART_PUT_ICR(info->port, 0);	status = UART_GET_FR(info->port) & AMBA_UARTFR_MODEM_ANY;	delta = status ^ info->port->old_status;	info->port->old_status = status;	if (!delta)		return;	if (delta & AMBA_UARTFR_DCD)		uart_handle_dcd_change(info, status & AMBA_UARTFR_DCD);	if (delta & AMBA_UARTFR_DSR)		icount->dsr++;	if (delta & AMBA_UARTFR_CTS)		uart_handle_cts_change(info, status & AMBA_UARTFR_CTS);	wake_up_interruptible(&info->delta_msr_wait);}#endifstatic void clps711xuart_int_rx(int irq, void *dev_id, struct pt_regs *regs){	struct uart_info *info = dev_id;	struct tty_struct *tty = info->tty;	unsigned int status, ch, flg, ignored = 0;	struct uart_port *port = info->port;	status = clps_readl(SYSFLG(port));	while (!(status & SYSFLG_URXFE)) {		ch = clps_readl(UARTDR(port));		if (tty->flip.count >= TTY_FLIPBUF_SIZE)			goto ignore_char;		port->icount.rx++;		flg = TTY_NORMAL;		/*		 * Note that the error handling code is		 * out of the main execution path		 */		if (ch & UART_ANY_ERR)			goto handle_error;		if (uart_handle_sysrq_char(info, ch, regs))			goto ignore_char;	error_return:		*tty->flip.flag_buf_ptr++ = flg;		*tty->flip.char_buf_ptr++ = ch;		tty->flip.count++;	ignore_char:		status = clps_readl(SYSFLG(port));	}out:	tty_flip_buffer_push(tty);	return;handle_error:	if (ch & UARTDR_PARERR)		port->icount.parity++;	else if (ch & UARTDR_FRMERR)		port->icount.frame++;	if (ch & UARTDR_OVERR)		port->icount.overrun++;	if (ch & port->ignore_status_mask) {		if (++ignored > 100)			goto out;		goto ignore_char;	}	ch &= port->read_status_mask;	if (ch & UARTDR_PARERR)		flg = TTY_PARITY;	else if (ch & UARTDR_FRMERR)		flg = TTY_FRAME;	if (ch & UARTDR_OVERR) {		/*		 * CHECK: does overrun affect the current character?		 * ASSUMPTION: it does not.		 */		*tty->flip.flag_buf_ptr++ = flg;		*tty->flip.char_buf_ptr++ = ch;		tty->flip.count++;		if (tty->flip.count >= TTY_FLIPBUF_SIZE)			goto ignore_char;		ch = 0;		flg = TTY_OVERRUN;	}#ifdef SUPPORT_SYSRQ	info->sysrq = 0;#endif	goto error_return;}static void clps711xuart_int_tx(int irq, void *dev_id, struct pt_regs *regs){	struct uart_info *info = dev_id;	struct uart_port *port = info->port;	int count;	if (port->x_char) {		clps_writel(port->x_char, UARTDR(port));		port->icount.tx++;		port->x_char = 0;		return;	}	if (info->xmit.head == info->xmit.tail	    || info->tty->stopped	    || info->tty->hw_stopped) {		clps711xuart_stop_tx(info->port, 0);		return;	}	count = port->fifosize >> 1;	do {		clps_writel(info->xmit.buf[info->xmit.tail], UARTDR(port));		info->xmit.tail = (info->xmit.tail + 1) & (UART_XMIT_SIZE - 1);		port->icount.tx++;		if (info->xmit.head == info->xmit.tail)			break;	} while (--count > 0);	if (CIRC_CNT(info->xmit.head,		     info->xmit.tail,		     UART_XMIT_SIZE) < WAKEUP_CHARS)		uart_event(info, EVT_WRITE_WAKEUP);	if (info->xmit.head == info->xmit.tail)		clps711xuart_stop_tx(info->port, 0);}static u_int clps711xuart_tx_empty(struct uart_port *port){	u_int status = clps_readl(SYSFLG(port));	return status & SYSFLG_UBUSY ? 0 : TIOCSER_TEMT;}static u_int clps711xuart_get_mctrl(struct uart_port *port){	unsigned int port_addr;	unsigned int result = 0;	unsigned int status;	port_addr = SYSFLG(port);	if (port_addr == SYSFLG1) {		status = clps_readl(SYSFLG1);		if (status & SYSFLG1_DCD)			result |= TIOCM_CAR;		if (status & SYSFLG1_DSR)			result |= TIOCM_DSR;		if (status & SYSFLG1_CTS)			result |= TIOCM_CTS;	}	return result;}static void clps711xuart_set_mctrl_null(struct uart_port *port, u_int mctrl){}static void clps711xuart_break_ctl(struct uart_port *port, int break_state){	unsigned int ubrlcr;	ubrlcr = clps_readl(UBRLCR(port));	if (break_state == -1)		ubrlcr |= UBRLCR_BREAK;	else		ubrlcr &= ~UBRLCR_BREAK;	clps_writel(ubrlcr, UBRLCR(port));}static int clps711xuart_startup(struct uart_port *port, struct uart_info *info){	u_int syscon;	int retval;	/*	 * Allocate the IRQs	 */	retval = request_irq(TX_IRQ(port), clps711xuart_int_tx, 0,			     "clps711xuart_tx", info);	if (retval)		return retval;	retval = request_irq(RX_IRQ(port), clps711xuart_int_rx, 0,			     "clps711xuart_rx", info);	if (retval) {		free_irq(TX_IRQ(port), info);		return retval;	}	port->ops->set_mctrl(port, info->mctrl);	/*	 * enable the port	 */	syscon = clps_readl(SYSCON(port));	syscon |= SYSCON_UARTEN;	clps_writel(syscon, SYSCON(port));	return 0;}static void clps711xuart_shutdown(struct uart_port *port, struct uart_info *info){	u_int ubrlcr, syscon;	/*	 * Free the interrupt	 */	free_irq(TX_IRQ(port), info);	/* TX interrupt */	free_irq(RX_IRQ(port), info);	/* RX interrupt */	/*	 * disable the port	 */	syscon = clps_readl(SYSCON(port));	syscon &= ~SYSCON_UARTEN;	clps_writel(syscon, SYSCON(port));	/*	 * disable break condition and fifos	 */	ubrlcr = clps_readl(UBRLCR(port));	ubrlcr &= ~(UBRLCR_FIFOEN | UBRLCR_BREAK);	clps_writel(ubrlcr, UBRLCR(port));}static void clps711xuart_change_speed(struct uart_port *port, u_int cflag, u_int iflag, u_int quot){	u_int ubrlcr;	unsigned long flags;#if DEBUG	printk("clps711xuart_change_speed(cflag=0x%x, iflag=0x%x, quot=%d) called\n",		cflag, iflag, quot);#endif	/* byte size and parity */	switch (cflag & CSIZE) {	case CS5: ubrlcr = UBRLCR_WRDLEN5; break;	case CS6: ubrlcr = UBRLCR_WRDLEN6; break;	case CS7: ubrlcr = UBRLCR_WRDLEN7; break;	default:  ubrlcr = UBRLCR_WRDLEN8; break; // CS8	}	if (cflag & CSTOPB)		ubrlcr |= UBRLCR_XSTOP;	if (cflag & PARENB) {		ubrlcr |= UBRLCR_PRTEN;		if (!(cflag & PARODD))			ubrlcr |= UBRLCR_EVENPRT;	}	if (port->fifosize > 1)		ubrlcr |= UBRLCR_FIFOEN;	port->read_status_mask = UARTDR_OVERR;	if (iflag & INPCK)		port->read_status_mask |= UARTDR_PARERR | UARTDR_FRMERR;//	if (iflag & (BRKINT | PARMRK))//		port->read_status_mask |= AMBA_UARTRSR_BE;	/*	 * Characters to ignore	 */	port->ignore_status_mask = 0;	if (iflag & IGNPAR)		port->ignore_status_mask |= UARTDR_FRMERR | UARTDR_PARERR;	if (iflag & IGNBRK) {//		port->ignore_status_mask |= AMBA_UARTRSR_BE;		/*		 * If we're ignoring parity and break indicators,		 * ignore overruns to (for real raw support).		 */		if (iflag & IGNPAR)			port->ignore_status_mask |= UARTDR_OVERR;	}	quot -= 1;	/* first, disable everything */	save_flags(flags); cli();	clps_writel(ubrlcr | quot, UBRLCR(port));	restore_flags(flags);}static const char *clps711xuart_type(struct uart_port *port){	return port->type == PORT_CLPS711X ? "CLPS711x" : NULL;}/* * Configure/autoconfigure the port. */static void clps711xuart_config_port(struct uart_port *port, int flags){	if (flags & UART_CONFIG_TYPE)		port->type = PORT_CLPS711X;}static void clps711xuart_release_port(struct uart_port *port){}static int clps711xuart_request_port(struct uart_port *port){	return 0;}static struct uart_ops clps711x_pops = {	tx_empty:	clps711xuart_tx_empty,	set_mctrl:	clps711xuart_set_mctrl_null,	get_mctrl:	clps711xuart_get_mctrl,	stop_tx:	clps711xuart_stop_tx,	start_tx:	clps711xuart_start_tx,	stop_rx:	clps711xuart_stop_rx,	enable_ms:	clps711xuart_enable_ms,	break_ctl:	clps711xuart_break_ctl,	startup:	clps711xuart_startup,	shutdown:	clps711xuart_shutdown,	change_speed:	clps711xuart_change_speed,	type:		clps711xuart_type,	config_port:	clps711xuart_config_port,	release_port:	clps711xuart_release_port,	request_port:	clps711xuart_request_port,};static struct uart_port clps711x_ports[UART_NR] = {	{		iobase:		SYSCON1,		irq:		IRQ_UTXINT1, /* IRQ_URXINT1, IRQ_UMSINT */		uartclk:	3686400,		fifosize:	16,		ops:		&clps711x_pops,		flags:		ASYNC_BOOT_AUTOCONF,	},	{		iobase:		SYSCON2,		irq:		IRQ_UTXINT2, /* IRQ_URXINT2 */		uartclk:	3686400,		fifosize:	16,		ops:		&clps711x_pops,		flags:		ASYNC_BOOT_AUTOCONF,	}};#ifdef CONFIG_SERIAL_CLPS711X_CONSOLE/* *	Print a string to the serial port trying not to disturb *	any possible real use of the port... * *	The console_lock must be held when we get here. * *	Note that this is called with interrupts already disabled */static void clps711xuart_console_write(struct console *co, const char *s, u_int count){	struct uart_port *port = clps711x_ports + co->index;	unsigned int status, syscon;	int i;	/*	 *	Ensure that the port is enabled.	 */	syscon = clps_readl(SYSCON(port));	clps_writel(syscon | SYSCON_UARTEN, SYSCON(port));	/*	 *	Now, do each character	 */	for (i = 0; i < count; i++) {		do {			status = clps_readl(SYSFLG(port));		} while (status & SYSFLG_UTXFF);		clps_writel(s[i], UARTDR(port));		if (s[i] == '\n') {			do {				status = clps_readl(SYSFLG(port));			} while (status & SYSFLG_UTXFF);			clps_writel('\r', UARTDR(port));		}	}	/*	 *	Finally, wait for transmitter to become empty	 *	and restore the uart state.	 */	do {		status = clps_readl(SYSFLG(port));	} while (status & SYSFLG_UBUSY);	clps_writel(syscon, SYSCON(port));}static kdev_t clps711xuart_console_device(struct console *co){	return MKDEV(SERIAL_CLPS711X_MAJOR, SERIAL_CLPS711X_MINOR + co->index);}static void __initclps711xuart_console_get_options(struct uart_port *port, int *baud, int *parity, int *bits){	if (clps_readl(SYSCON(port)) & SYSCON_UARTEN) {		u_int ubrlcr, quot;		ubrlcr = clps_readl(UBRLCR(port));		*parity = 'n';		if (ubrlcr & UBRLCR_PRTEN) {			if (ubrlcr & UBRLCR_EVENPRT)				*parity = 'e';			else				*parity = 'o';		}		if ((ubrlcr & UBRLCR_WRDLEN_MASK) == UBRLCR_WRDLEN7)			*bits = 7;		else			*bits = 8;		quot = ubrlcr & UBRLCR_BAUD_MASK;		*baud = port->uartclk / (16 * (quot + 1));	}}static int __init clps711xuart_console_setup(struct console *co, char *options){	struct uart_port *port;	int baud = 38400;	int bits = 8;	int parity = 'n';	int flow = 'n';	/*	 * Check whether an invalid uart number has been specified, and	 * if so, search for the first available port that does have	 * console support.	 */	port = uart_get_console(clps711x_ports, UART_NR, co);	if (options)		uart_parse_options(options, &baud, &parity, &bits, &flow);	else		clps711xuart_console_get_options(port, &baud, &parity, &bits);	return uart_set_options(port, co, baud, parity, bits, flow);}static struct console clps711x_console = {	name:		SERIAL_CLPS711X_NAME,	write:		clps711xuart_console_write,	device:		clps711xuart_console_device,	setup:		clps711xuart_console_setup,	flags:		CON_PRINTBUFFER,	index:		-1,};void __init clps711xuart_console_init(void){	register_console(&clps711x_console);}#define CLPS711X_CONSOLE	&clps711x_console#else#define CLPS711X_CONSOLE	NULL#endifstatic struct uart_driver clps711x_reg = {#ifdef CONFIG_DEVFS_FS	normal_name:		SERIAL_CLPS711X_NAME,	callout_name:		CALLOUT_CLPS711X_NAME,#else	normal_name:		SERIAL_CLPS711X_NAME,	callout_name:		CALLOUT_CLPS711X_NAME,#endif	normal_major:		SERIAL_CLPS711X_MAJOR,	normal_driver:		&normal,	callout_major:		CALLOUT_CLPS711X_MAJOR,	callout_driver:		&callout,	table:			clps711x_table,	termios:		clps711x_termios,	termios_locked:		clps711x_termios_locked,	minor:			SERIAL_CLPS711X_MINOR,	nr:			UART_NR,	port:			clps711x_ports,	cons:			CLPS711X_CONSOLE,};static int __init clps711xuart_init(void){	return uart_register_driver(&clps711x_reg);}static void __exit clps711xuart_exit(void){	uart_unregister_driver(&clps711x_reg);}module_init(clps711xuart_init);module_exit(clps711xuart_exit);EXPORT_NO_SYMBOLS;MODULE_AUTHOR("Deep Blue Solutions Ltd");MODULE_DESCRIPTION("CLPS-711x generic serial driver");MODULE_LICENSE("GPL");

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品免视看| 亚洲精品美国一| 91福利视频久久久久| 麻豆视频观看网址久久| 亚洲精品一二三| 国产亚洲精品免费| 91精品国产一区二区人妖| 99re热视频这里只精品| 精品一区二区久久| 婷婷六月综合网| 亚洲日本va午夜在线电影| 日韩免费观看高清完整版在线观看| 97精品视频在线观看自产线路二| 久久se这里有精品| 亚洲成av人在线观看| 亚洲日穴在线视频| 中文字幕精品一区| 久久久久久久精| 日韩欧美高清一区| 在线不卡一区二区| 欧美在线观看18| 色八戒一区二区三区| 99在线精品免费| 成人午夜av在线| 成人性生交大片| 国产精选一区二区三区| 麻豆国产欧美日韩综合精品二区| 亚洲国产精品久久艾草纯爱| 亚洲免费观看在线观看| 国产精品高潮久久久久无| 一本大道久久a久久精二百 | 国产欧美一区二区精品性色 | 日本一区二区免费在线| 精品对白一区国产伦| 日韩精品一区二区三区老鸭窝 | 欧美系列在线观看| 色综合久久88色综合天天免费| 成人毛片在线观看| www.亚洲激情.com| 99久久久久免费精品国产| av不卡在线观看| a级高清视频欧美日韩| 不卡的av电影| 色婷婷一区二区| 欧美综合色免费| 欧美日韩国产成人在线免费| 欧美精品久久一区二区三区| 欧美丰满一区二区免费视频| 欧美一卡二卡三卡| 欧美xxxx在线观看| 久久九九全国免费| 中文字幕在线一区| 一区二区三区中文在线观看| 一级精品视频在线观看宜春院| 亚洲无线码一区二区三区| 亚洲国产精品久久艾草纯爱| 日本欧美一区二区在线观看| 蜜桃av噜噜一区二区三区小说| 国模少妇一区二区三区| 成人小视频在线| 欧美中文字幕一区| 欧美一级淫片007| 久久久精品国产99久久精品芒果| 中文一区在线播放| 亚洲一卡二卡三卡四卡五卡| 蜜臀av一区二区三区| 国产福利一区在线| 色哟哟国产精品免费观看| 6080国产精品一区二区| 久久久久久久久99精品| 樱桃国产成人精品视频| 麻豆91在线看| 99综合电影在线视频| 91精品在线观看入口| 国产午夜亚洲精品理论片色戒| 亚洲色图20p| 麻豆免费精品视频| 91香蕉视频黄| 欧美xxxx老人做受| 一区二区三区资源| 国产米奇在线777精品观看| 99久久伊人久久99| 日韩欧美激情在线| 亚洲啪啪综合av一区二区三区| 首页国产丝袜综合| 从欧美一区二区三区| 在线成人免费观看| 亚洲欧洲精品一区二区精品久久久| 午夜欧美大尺度福利影院在线看 | 国内精品视频一区二区三区八戒 | 日韩三级中文字幕| 亚洲色图欧洲色图| 国产一区二区三区免费观看| 色综合天天天天做夜夜夜夜做| 日韩欧美国产wwwww| 一区二区欧美在线观看| 国产精品一区一区三区| 欧美丰满少妇xxxxx高潮对白| 国产精品免费视频网站| 久久99热99| 欧美日韩精品综合在线| 亚洲丝袜制服诱惑| 国产成人免费在线| 精品免费国产一区二区三区四区| 亚洲美女屁股眼交| 国产 欧美在线| 精品国产1区2区3区| 五月婷婷综合激情| 91国在线观看| 国产精品久久久久久久久免费丝袜 | 精品99999| 午夜成人免费视频| 日本精品视频一区二区三区| 欧美经典一区二区| 狠狠网亚洲精品| 51精品国自产在线| 亚洲午夜av在线| 色就色 综合激情| 国产精品久久久久久一区二区三区 | 99re热这里只有精品免费视频 | 亚洲色图欧洲色图| 成人爽a毛片一区二区免费| 亚洲精品一区二区三区在线观看| 日韩经典中文字幕一区| 欧美日韩精品综合在线| 亚洲国产综合在线| 欧美三级视频在线| 亚洲一卡二卡三卡四卡五卡| 色婷婷激情久久| 亚洲精品国产无套在线观| av一区二区三区四区| 国产精品久久久久久久久图文区| 国产成人av一区| 国产精品蜜臀av| 91麻豆国产精品久久| 亚洲美腿欧美偷拍| 欧洲激情一区二区| 午夜视频一区在线观看| 欧美另类高清zo欧美| 日韩—二三区免费观看av| 8x8x8国产精品| 美女在线视频一区| 日韩美女一区二区三区| 精品一区中文字幕| 久久精品这里都是精品| 国产精品456露脸| 国产精品久久午夜| 色婷婷综合久久久久中文| 亚洲最大成人网4388xx| 欧美日韩三级在线| 久久国产尿小便嘘嘘尿| 久久综合精品国产一区二区三区| 国产精品影视网| 中文字幕一区二区三区四区不卡| 91麻豆国产精品久久| 亚洲成av人片| 精品国产乱码久久| 成人97人人超碰人人99| 亚洲自拍偷拍av| 日韩欧美的一区| 成人综合婷婷国产精品久久免费| 成人免费在线视频观看| 欧美日韩精品福利| 国产在线精品一区二区夜色| 国产精品传媒入口麻豆| 欧美日本一区二区在线观看| 精品一区免费av| 中文字幕一区二区三| 91国偷自产一区二区使用方法| 免费观看在线色综合| 国产精品久线在线观看| 欧美日本一区二区在线观看| 国产一区二区三区| 亚洲欧美日韩国产中文在线| 欧美一区二区免费视频| 成人av影院在线| 日韩av在线免费观看不卡| 日本一区二区不卡视频| 7777精品伊人久久久大香线蕉的| 国产成人久久精品77777最新版本| 亚洲免费av高清| 久久久精品黄色| 欧美区视频在线观看| 成人国产免费视频| 奇米四色…亚洲| 亚洲免费av高清| 久久久91精品国产一区二区三区| 欧美午夜一区二区三区| 国产宾馆实践打屁股91| 日韩二区三区在线观看| 椎名由奈av一区二区三区| 日韩欧美国产综合| 欧洲色大大久久| 成人aa视频在线观看| 老汉av免费一区二区三区| 一区二区三区中文在线观看| 久久九九99视频| 日韩视频永久免费| 欧美性一区二区| 99久久久无码国产精品|