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

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

?? s3c2410xsio.c

?? 操作系統中的一找你個的相關的淡淡的碼源代碼
?? C
字號:
/* s3c2410xSio.c - MagicARM2410 UART tty driver */#include "copyright_wrs.h"#include "vxWorks.h"#include "intLib.h"#include "errnoLib.h"#include "errno.h"#include "sioLib.h"#include "s3c2410xSio.h"#include "s3c2410x.h"/* local defines  */#define s3c2410x_BAUD_MIN         18#define s3c2410x_BAUD_MAX         115200#define s3c2410x_SIO_DEFAULT_BAUD 115200#ifndef s3c2410x_UART_REG#define s3c2410x_UART_REG(pChan, reg) \	(*(volatile UINT32 *)((UINT32)(pChan)->regs + (reg)))#endif#ifndef s3c2410x_UART_REG_READ#define s3c2410x_UART_REG_READ(pChan, reg, result) \	(result) = (s3c2410x_UART_REG(pChan, reg))#endif#ifndef s3c2410x_UART_REG_WRITE#define s3c2410x_UART_REG_WRITE(pChan, reg, data) \	(s3c2410x_UART_REG(pChan, reg)) = (data)#endif#ifndef s3c2410x_UART_REG_BIT_SET#define s3c2410x_UART_REG_BIT_SET(pChan, reg, data) \	(s3c2410x_UART_REG(pChan, reg)) |= (data)#endif#ifndef s3c2410x_UART_REG_BIT_CLR#define s3c2410x_UART_REG_BIT_CLR(pChan, reg, data) \	(s3c2410x_UART_REG(pChan, reg)) &= ~(data)#endif/* hardware access methods */#ifndef s3c2410x_INT_REG_READ#define s3c2410x_INT_REG_READ(reg,result) \	((result) = *(volatile UINT32 *)(reg))#endif#ifndef s3c2410x_INT_REG_WRITE#define s3c2410x_INT_REG_WRITE(reg,data) \	(*((volatile UINT32 *)(reg)) = (data))#endif/* locals *//* function prototypes */LOCAL STATUS s3c2410xIoctl (SIO_CHAN * pSioChan, int request, int arg);LOCAL int s3c2410xTxStartup (SIO_CHAN * pSioChan);LOCAL int s3c2410xCallbackInstall (SIO_CHAN * pSioChan, int callbackType,				STATUS (*callback)(), void * callbackArg);LOCAL int s3c2410xPollInput (SIO_CHAN * pSioChan, char *);LOCAL int s3c2410xPollOutput (SIO_CHAN * pSioChan, char);LOCAL STATUS s3c2410xDummyCallback (void);/* driver functions */LOCAL SIO_DRV_FUNCS s3c2410xSioDrvFuncs =	{		(int (*)())s3c2410xIoctl,		s3c2410xTxStartup,		(int (*)())s3c2410xCallbackInstall,		s3c2410xPollInput,		s3c2410xPollOutput	};/* * s3c2410xDummyCallback - dummy callback routine. * * RETURNS: ERROR, always. */LOCAL STATUS s3c2410xDummyCallback (void){	return ERROR;}/* * s3c2410xInitChannel - initialise UART * * This routine performs hardware initialisation of the UART channel. * * RETURNS: N/A */LOCAL void s3c2410xInitChannel	(		s3c2410x_CHAN *	pChan	/* ptr to s3c2410x_CHAN describing this channel */	){	UINT32	tempUINT32;	/* Set UCLK, polling&interrupt mode. */	s3c2410x_UART_REG_WRITE(pChan, OFFSET_UCON, CLK_PCLK+TxMode_IntPoll+RxMode_IntPoll);	/* enable subInterrupt for UART0. */	s3c2410x_INT_REG_READ(s3c2410x_INT_CSR_INTSUBMSK,tempUINT32);	switch((int)(pChan->regs))	{	case UART_1_BASE_ADR:		tempUINT32 &= ~((1<<SUBINT_LVL_RXD1)|(1<<SUBINT_LVL_TXD1));		break;	case UART_0_BASE_ADR:	default:		tempUINT32 &= ~((1<<SUBINT_LVL_RXD0)|(1<<SUBINT_LVL_TXD0));	}	s3c2410x_INT_REG_WRITE(s3c2410x_INT_CSR_INTSUBMSK,tempUINT32);	/* Set baud rate to 9600. */	s3c2410xIoctl((SIO_CHAN *)pChan, SIO_BAUD_SET,pChan->baudRate  );/*s3c2410x_SIO_DEFAULT_BAUD*//*061013*/	/* Set NonInfra-red mode, 8, N, 1. */	s3c2410xIoctl((SIO_CHAN *)pChan, SIO_HW_OPTS_SET, CLOCAL+CS8);	s3c2410xIoctl((SIO_CHAN *)pChan, SIO_MODE_SET, SIO_MODE_POLL);	/* Set disable FIFO */	s3c2410x_UART_REG_WRITE(pChan, OFFSET_UFCON, FIFO_OFF);	/* Enable pin for UART */	s3c2410x_IO_READ(rGPHCON, tempUINT32);	switch((int)(pChan->regs))	{	case UART_1_BASE_ADR:		tempUINT32 |= (MASK_GPH4(2)+MASK_GPH5(2)+MASK_GPH6(3)+MASK_GPH7(3)); /* +MASK_GPH8(2)); */		break;	case UART_0_BASE_ADR:	default:		tempUINT32|= (MASK_GPH0(2)+MASK_GPH1(2)+MASK_GPH2(2)+MASK_GPH3(2)); /* +MASK_GPH8(2));  */	}	s3c2410x_IO_WRITE(rGPHCON,tempUINT32);		/* Clear Rx */	s3c2410x_UART_REG_READ(pChan, OFFSET_URXH, tempUINT32);}/* * s3c2410xSioDevInit - initialise an s3c2410x channel * * This routine initialises some SIO_CHAN function pointers and then resets * the chip to a quiescent state.  Before this routine is called, the BSP * must already have initialised all the device addresses, etc. in the * s3c2410x_CHAN structure. * * RETURNS: N/A */void s3c2410xSioDevInit	(		s3c2410x_CHAN *	pChan	/* ptr to s3c2410x_CHAN describing this channel */	){	int oldlevel = intLock();	/* initialise the driver function pointers in the SIO_CHAN pChan->pDrvFuncs = &s3c2410xSioDrvFuncs;*/	pChan->sio.pDrvFuncs = &s3c2410xSioDrvFuncs;			/* set the non BSP-specific constants */	pChan->getTxChar = s3c2410xDummyCallback;	pChan->putRcvChar = s3c2410xDummyCallback;	 pChan->channelMode = SIO_MODE_POLL;    /*undefined */	/* initialise the chip */	s3c2410xInitChannel(pChan);	intUnlock(oldlevel);}/* * s3c2410xIoctl - special device control * * This routine handles the IOCTL messages from the user. * * RETURNS: OK on success, ENOSYS on unsupported request, EIO on failed * request. */LOCAL int s3c2410xIoctl	(		SIO_CHAN*	pSioChan,	/* device to control */    		int		request,	/* request code */    		int		arg	){	s3c2410x_CHAN *pChan = (s3c2410x_CHAN*) pSioChan;	int oldlevel;        /* current interrupt level mask */	UINT32 tempUINT32 = 0;	int lvl;    	switch (request)	{	case SIO_BAUD_SET:		if(arg < s3c2410x_BAUD_MIN || arg > s3c2410x_BAUD_MAX) return(EIO);				/* disable interrupts during chip access */		oldlevel = intLock ();		s3c2410x_UART_REG_WRITE(pChan,OFFSET_UDIV,(((s3c2410x_PCLK/16)/arg)-1));		intUnlock (oldlevel);		s3c2410x_UART_REG_READ(pChan,OFFSET_UDIV,tempUINT32);		pChan->baudRate=((s3c2410x_PCLK/16)/(tempUINT32+1));		break;	case SIO_BAUD_GET:		*(int *)arg = pChan->baudRate;		break;	case SIO_MODE_SET:		switch(arg)		{		case SIO_MODE_INT:			/* clear subpend-flag of RX_TX */			switch((int)(pChan->regs))			{			case UART_1_BASE_ADR:				s3c2410x_INT_REG_WRITE(s3c2410x_INT_CSR_SUBSRCPND,((1<<SUBINT_LVL_TXD1)|(1<<SUBINT_LVL_RXD1)));				break;			case UART_0_BASE_ADR:			default:				s3c2410x_INT_REG_WRITE(s3c2410x_INT_CSR_SUBSRCPND,((1<<SUBINT_LVL_TXD0)|(1<<SUBINT_LVL_RXD0)));			}							/* enable uart_int */			intEnable(pChan->intLevelRx);			/* enable subInterrupt for UART0. */			s3c2410x_INT_REG_READ(s3c2410x_INT_CSR_INTSUBMSK,tempUINT32);			switch((int)(pChan->regs))			{			case UART_1_BASE_ADR:				tempUINT32 &= ~((1<<SUBINT_LVL_RXD1)|(1<<SUBINT_LVL_TXD1));				break;			case UART_0_BASE_ADR:			default:				tempUINT32 &= ~((1<<SUBINT_LVL_RXD0)|(1<<SUBINT_LVL_TXD0));			}			s3c2410x_INT_REG_WRITE(s3c2410x_INT_CSR_INTSUBMSK,tempUINT32);			break;		case SIO_MODE_POLL:			/* disable uart_int */			intDisable(pChan->intLevelRx);			/* disable subInterrupt for UART0. */			s3c2410x_INT_REG_READ(s3c2410x_INT_CSR_INTSUBMSK,tempUINT32);			switch((int)(pChan->regs))			{			case UART_1_BASE_ADR:				tempUINT32 |= ((1<<SUBINT_LVL_RXD1)|(1<<SUBINT_LVL_TXD1));				break;			case UART_0_BASE_ADR:			default:				tempUINT32 |= ((1<<SUBINT_LVL_RXD0)|(1<<SUBINT_LVL_TXD0));			}			s3c2410x_INT_REG_WRITE(s3c2410x_INT_CSR_INTSUBMSK,tempUINT32);			break;		default: return(EIO);		}		pChan->channelMode = arg;		break;	case SIO_MODE_GET:		*(int *)arg = pChan->channelMode;		break;	case SIO_AVAIL_MODES_GET:		/* Get the available modes and return OK.  */		*(int *)arg = SIO_MODE_INT | SIO_MODE_POLL; 		break;	case SIO_HW_OPTS_SET:		if(arg & 0xffffff00) return EIO;				/* do nothing if options already set */		if(pChan->options == arg) break;		switch (arg & CSIZE)		{		case CS5:			tempUINT32 = DATABIT_5; break;		case CS6:			tempUINT32 = DATABIT_6; break;		case CS7:			tempUINT32 = DATABIT_7; break;		default:		case CS8:			tempUINT32 = DATABIT_8; break;		}		if (arg & STOPB)		{			tempUINT32 |= TWO_STOPBIT;		}		else		{			/* tempUINT32 &= ~TWO_STOPBIT */;		}						switch (arg & (PARENB|PARODD))		{		case PARENB|PARODD:			tempUINT32 += ODD_PARITY;			break;		case PARENB:			tempUINT32 += EVEN_PARITY;			break;		case 0:		default:			;/* no parity */		}		lvl = intLock();    		s3c2410x_UART_REG_WRITE(pChan,OFFSET_ULCON,tempUINT32);		intUnlock(lvl);		if (arg & CLOCAL)		{        		/* clocal disables hardware flow control */			lvl = intLock();			s3c2410x_UART_REG_WRITE(pChan,OFFSET_UMCON,AFC_OFF);			intUnlock(lvl);		}		else		{			lvl = intLock();			s3c2410x_UART_REG_WRITE(pChan,OFFSET_UMCON,AFC_ON);			intUnlock(lvl);		}		pChan->options = arg;		break;	case SIO_HW_OPTS_GET:		*(int*)arg = pChan->options;		return (OK);	case SIO_HUP:		/* check if hupcl option is enabled */		break;	case SIO_OPEN:		break; /* always open */	default:		return (ENOSYS);	}	return (OK);}/* * s3c2410xSioIntTx - handle a transmitter interrupt  * * This routine handles write interrupts from the UART. * * RETURNS: N/A */void s3c2410xSioIntTx 	(		s3c2410x_CHAN *	pChan	/* ptr to s3c2410x_CHAN describing this channel */	){	char outChar;	/* clear subpending of the TXn */	switch((int)(pChan->regs))	{	case UART_1_BASE_ADR:		s3c2410x_IO_WRITE(s3c2410x_INT_CSR_SUBSRCPND, (1<<SUBINT_LVL_TXD1));		break;	case UART_0_BASE_ADR:	default:		s3c2410x_IO_WRITE(s3c2410x_INT_CSR_SUBSRCPND,(1<<SUBINT_LVL_TXD0) );	}		if((*pChan->getTxChar) (pChan->getTxArg, &outChar) != ERROR)/**/	{		/* write char. to Transmit Holding Reg.*/		s3c2410x_UART_REG_WRITE(pChan, OFFSET_UTXH, (((UINT32)outChar)&0x000000ff));	}}/* * s3c2410xSioIntRx - handle a receiver interrupt  * * This routine handles read interrupts from the UART. * * RETURNS: N/A */void s3c2410xSioIntRx	(		s3c2410x_CHAN *	pChan	/* ptr to s3c2410x_CHAN describing this channel */	){	char inchar;	/* clear subpending of the RXn */	switch((int)(pChan->regs))	{	case UART_1_BASE_ADR:		s3c2410x_IO_WRITE(s3c2410x_INT_CSR_SUBSRCPND, (1<<SUBINT_LVL_RXD1));		break;	case UART_0_BASE_ADR:	default:		s3c2410x_IO_WRITE(s3c2410x_INT_CSR_SUBSRCPND, (1<<SUBINT_LVL_RXD0));	}		/* read character from Receive Holding Reg. */	s3c2410x_UART_REG_READ(pChan, OFFSET_URXH, inchar);	(*pChan->putRcvChar) (pChan->putRcvArg, inchar);}/* * s3c2410xSioInt - handle any UART interrupt * * This routine handles interrupts from the UART and determines whether * the source is a transmit interrupt or receive/receive-timeout interrupt. * * The Prime Cell UART generates a receive interrupt when the RX FIFO is * half-full, and a receive-timeout interrupt after 32 bit-clocks have * elapsed with no incoming data. * * RETURNS: N/A */void s3c2410xSioInt	(		s3c2410x_CHAN * pChan   /* ptr to s3c2410x_CHAN describing this channel */	){	UINT32 intId;			s3c2410x_INT_REG_READ(s3c2410x_INT_CSR_SUBSRCPND, intId);		if(intId & ((1<<SUBINT_LVL_TXD0)|(1<<SUBINT_LVL_TXD1)))	{		s3c2410xSioIntTx(pChan);			}	if(intId & ((1<<SUBINT_LVL_RXD0)|(1<<SUBINT_LVL_RXD1)))	{		s3c2410xSioIntRx (pChan);	}	/*mask set has error in function s3c2410xIntLvlVecChk*/	switch((int)(pChan->regs))	{	case UART_1_BASE_ADR:		s3c2410x_IO_WRITE(s3c2410x_INT_CSR_INTSUBMSK,(intId&0xffc7));		break;	case UART_0_BASE_ADR:	default:		s3c2410x_IO_WRITE(s3c2410x_INT_CSR_INTSUBMSK,(intId&0xff80) );	}}/* * s3c2410xTxStartup - transmitter startup routine * * Enable interrupt so that interrupt-level char output routine will be called. * * RETURNS: OK on success, ENOSYS if the device is polled-only, or * EIO on hardware error. */LOCAL int s3c2410xTxStartup	(		SIO_CHAN *	pSioChan	/* ptr to SIO_CHAN describing this channel */	){/*int temp;*/	s3c2410x_CHAN * pChan = (s3c2410x_CHAN *)pSioChan;	if(pChan->channelMode == SIO_MODE_INT)	{		intEnable(pChan->intLevelTx);		s3c2410xSioIntTx(pChan);		return OK;	}	else	{		return ENOSYS;	}}/* * s3c2410xPollOutput - output a character in polled mode. * * RETURNS: OK if a character arrived, EIO on device error, EAGAIN * if the output buffer is full, ENOSYS if the device is interrupt-only. */LOCAL int s3c2410xPollOutput	(		SIO_CHAN* pSioChan,	/* ptr to SIO_CHAN describing this channel */		char      outChar 	/*  to output */	){	s3c2410x_CHAN * pChan = (s3c2410x_CHAN *)pSioChan;	FAST UINT32 pollStatus;	s3c2410x_UART_REG_READ(pChan, OFFSET_UTRSTAT, pollStatus);	/* is the transmitter ready to accept a character? */	if(!(pollStatus & UTRSTAT_TRNSR_EM))	{		return EAGAIN;	}	/* write out the character */	s3c2410x_UART_REG_WRITE(pChan, OFFSET_UTXH, outChar);	/* transmit character */	return OK;}/* * s3c2410xPollInput - poll the device for input. * * RETURNS: OK if a character arrived, EIO on device error, EAGAIN * if the input buffer is empty, ENOSYS if the device is interrupt-only. */LOCAL int s3c2410xPollInput	(		SIO_CHAN *	pSioChan,	/* ptr to SIO_CHAN describing this channel */		char*	 thisChar	/* pointer to where to return character */	){	s3c2410x_CHAN * pChan = (s3c2410x_CHAN *)pSioChan;	FAST UINT32 pollStatus;	s3c2410x_UART_REG_READ(pChan, OFFSET_UTRSTAT, pollStatus);	if(!(pollStatus & UTRSTAT_RB_RDY))	{		return EAGAIN;	}	/* got a character */	s3c2410x_UART_REG_READ(pChan, OFFSET_URXH, *thisChar);	return OK;}/* * s3c2410xCallbackInstall - install ISR callbacks to get/put chars. * * This routine installs interrupt callbacks for transmitting characters * and receiving characters. * * RETURNS: OK on success, or ENOSYS for an unsupported callback type. * */LOCAL int s3c2410xCallbackInstall	(		SIO_CHAN*	pSioChan,	/* ptr to SIO_CHAN describing this channel */		int		callbackType,	/* type of callback */		STATUS	(*callback)(),	/* callback */		void*	callbackArg	/* parameter to callback */	){	s3c2410x_CHAN * pChan = (s3c2410x_CHAN *)pSioChan;	switch(callbackType)	{	case SIO_CALLBACK_GET_TX_CHAR:		pChan->getTxChar	= callback;		pChan->getTxArg		= callbackArg;		return OK;	case SIO_CALLBACK_PUT_RCV_CHAR:		pChan->putRcvChar	= callback;		pChan->putRcvArg	= callbackArg;		return OK;		default:		return ENOSYS;	}}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91在线视频官网| 日韩一卡二卡三卡| 欧美日本精品一区二区三区| 精品sm捆绑视频| 亚洲在线视频网站| 国产91在线看| 精品国产一区二区三区不卡 | 色婷婷久久综合| 精品国产乱码久久久久久闺蜜 | 国产精品理论片在线观看| 丝袜诱惑制服诱惑色一区在线观看 | 麻豆91免费观看| 在线亚洲精品福利网址导航| 中文字幕精品综合| 美女在线观看视频一区二区| 欧美日韩亚洲高清一区二区| 中文字幕视频一区二区三区久| 九九精品一区二区| 日韩一区二区麻豆国产| 亚洲3atv精品一区二区三区| 色久综合一二码| 亚洲欧洲国产日韩| 成人av电影在线播放| 欧美韩日一区二区三区四区| 国产精品一二三四| 久久先锋影音av鲁色资源| 国产在线精品一区二区夜色| 日韩欧美高清一区| 蜜臀av性久久久久av蜜臀妖精| 8v天堂国产在线一区二区| 亚洲五月六月丁香激情| 激情综合网天天干| 2024国产精品| 风间由美一区二区三区在线观看| 久久久久国产精品麻豆ai换脸| 国产精品一级片| 中文字幕免费不卡在线| 99久久伊人精品| 亚洲在线观看免费| 欧美一区二区三区色| 极品少妇一区二区三区精品视频 | 欧美日韩的一区二区| 国产精品国产三级国产aⅴ中文 | 午夜欧美在线一二页| 欧美日韩中文精品| 三级一区在线视频先锋| 日韩欧美久久一区| 国产成人一区二区精品非洲| 亚洲视频免费观看| 欧美撒尿777hd撒尿| 美日韩一区二区| 久久久精品天堂| 成人av免费在线观看| 亚洲一级二级三级在线免费观看| 7799精品视频| 成人黄色在线视频| 午夜a成v人精品| 国产亚洲精久久久久久| 色哟哟国产精品| 日韩精品乱码av一区二区| 久久久精品免费免费| 色婷婷综合激情| 久久av中文字幕片| 亚洲色图视频网站| 欧美一二三在线| 97超碰欧美中文字幕| 美女视频一区在线观看| 国产精品婷婷午夜在线观看| 欧美精品第1页| 97se亚洲国产综合在线| 免费在线观看日韩欧美| 亚洲女与黑人做爰| 精品日韩欧美在线| 日本韩国视频一区二区| 国产另类ts人妖一区二区| 亚洲一级二级在线| 国产精品欧美久久久久一区二区| 欧美日韩在线观看一区二区 | 亚洲一区免费视频| 久久精品无码一区二区三区| 欧美日韩久久不卡| 9i在线看片成人免费| 久久精品国产一区二区三区免费看| 国产精品国产三级国产专播品爱网 | 欧洲av一区二区嗯嗯嗯啊| 国产一区二区在线观看视频| 五月综合激情日本mⅴ| 国产精品久久综合| 久久一区二区视频| 91精品综合久久久久久| 在线视频你懂得一区二区三区| 国产福利一区二区三区视频在线| 首页欧美精品中文字幕| 亚洲激情网站免费观看| 国产精品日韩精品欧美在线 | 91精品国产欧美一区二区成人| 99视频精品在线| 豆国产96在线|亚洲| 久久99热狠狠色一区二区| 午夜一区二区三区视频| 亚洲欧美激情小说另类| 中文字幕 久热精品 视频在线 | 日本亚洲一区二区| 亚洲一级二级三级| 亚洲高清免费观看高清完整版在线观看| 亚洲丝袜自拍清纯另类| 国产精品福利影院| 欧美高清在线一区二区| 中文字幕电影一区| 欧美国产激情一区二区三区蜜月 | 亚洲成在线观看| 亚洲成人中文在线| 亚洲妇女屁股眼交7| 日本高清视频一区二区| 国产精品网曝门| 久久女同精品一区二区| 久久久影视传媒| 国产亚洲va综合人人澡精品| 久久久三级国产网站| 国产精品嫩草久久久久| 国产精品久久久久久久久快鸭| 国产精品国产三级国产aⅴ中文 | 久久国产剧场电影| 韩国视频一区二区| 国产高清久久久久| 91在线观看视频| 欧美在线你懂的| 日韩手机在线导航| 26uuu国产电影一区二区| 国产视频一区二区在线| |精品福利一区二区三区| 亚洲老司机在线| 天堂在线亚洲视频| 麻豆国产精品777777在线| 国产成人在线观看免费网站| 色综合激情久久| 日韩一区二区三区av| 国产视频一区在线播放| 一区二区在线看| 久久国产精品色婷婷| 99精品国产99久久久久久白柏| 欧美视频一区在线| 欧美精品一区二区三区蜜臀| 国产精品国产a级| 亚洲国产精品久久久久婷婷884| 日韩国产欧美视频| 粉嫩av一区二区三区粉嫩| 欧美在线观看一二区| 久久免费看少妇高潮| 一区二区三区日韩精品视频| 美日韩黄色大片| 日本久久精品电影| 久久蜜臀精品av| 午夜久久电影网| 豆国产96在线|亚洲| 在线播放中文一区| 国产精品人成在线观看免费| 男男成人高潮片免费网站| 97久久精品人人做人人爽50路| 欧美一区二区观看视频| 亚洲私人影院在线观看| 国产精品系列在线播放| 欧美日韩一区二区在线视频| 久久久www成人免费毛片麻豆| 亚洲成人免费在线观看| 国产成人鲁色资源国产91色综| 欧美日韩一区 二区 三区 久久精品| 久久综合狠狠综合| 午夜成人免费电影| 色综合天天在线| 欧美激情一区二区三区四区| 蜜桃视频一区二区三区在线观看 | 2023国产精华国产精品| 亚洲国产精品尤物yw在线观看| 国产成人午夜精品影院观看视频 | 日韩久久一区二区| 久久97超碰色| 4438x成人网最大色成网站| 亚洲视频一区在线观看| 成人福利视频在线| 久久久综合精品| 国产麻豆一精品一av一免费 | 欧美日韩一本到| 中文字幕在线不卡国产视频| 国产精品白丝av| 欧美成人一区二区三区片免费| 午夜欧美在线一二页| 欧美日韩国产一级片| 亚洲chinese男男1069| 欧美性大战久久| 亚洲高清在线精品| 欧美视频日韩视频在线观看| 亚洲尤物在线视频观看| 欧美亚洲精品一区| 亚洲一线二线三线视频| 欧美日韩一区高清| 日本午夜精品一区二区三区电影| 欧美日韩aaaaa| 秋霞av亚洲一区二区三| 精品久久久影院|