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

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

?? ser2410_ser.c

?? 增加串口,主要是wince方面的
?? C
?? 第 1 頁 / 共 2 頁
字號:
/*++
THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
PARTICULAR PURPOSE.
Copyright (c) 1995-2000 Microsoft Corporation.  All rights reserved.

Module Name:  

Abstract:  

Notes: 
--*/

#define EXAMINE_BOOTARGS
#define DEBUGMODE 0

#include <windows.h>
#include <types.h>
#include <ceddk.h>
#include <memory.h>
#include <serhw.h>
#include <ser16550.h>
#include <hw16550.h>
#include <nkintr.h>
#include <devload.h>
#include <windev.h>
#include <notify.h>

#include "S2410.h"

#define USERDBG        1

#ifdef EXAMINE_BOOTARGS
#include <bootarg.h>
#include <oalintr.h>
#include <pc.h>
#endif

#include <ser2410.h>

#undef ZONE_INIT
#include <serdbg.h>

#define BAUD_TABLE_SIZE 23
static const
PAIRS   BaudPairs[BAUD_TABLE_SIZE] =    {
	{50,        2307},
	{75,        1538},
	{110,       1049},
	{135,       858},
	{150,       769},
	{300,       384},
	{600,       192},
	{1200,      96},
	{1800,      64},
	{2000,      58},
	{2400,      48},
	{3600,      32},
	{4800,      24},
	{7200,      16},
	{9600,      12},
	{12800,     9},
	{14400,     8},
	{19200,     6},
	{23040,     5},
	{28800,     4},
	{38400,     3},
	{57600,     2},
	{115200,    1}
};

static const LOOKUP_TBL  BaudTable = {BAUD_TABLE_SIZE, (PAIRS *) BaudPairs};

// Miscellaneous internal routines.
PUCHAR
static
Ser_InternalMapRegisterAddresses(
                                ULONG   HWAddress,
                                ULONG   Size
                                )
{
	PUCHAR              ioPortBase; 
	ULONG               inIoSpace = 1;
	PHYSICAL_ADDRESS    ioPhysicalBase = { HWAddress, 0};

	RETAILMSG(DEBUGMODE, (TEXT("+ Ser_InternalMapRegisterAddresses : HalTranslateBusAddress\r\n")));
	if ( HalTranslateBusAddress(Isa, 0, ioPhysicalBase, &inIoSpace, &ioPhysicalBase) ) {
		DEBUGMSG(1, (TEXT("Ser_InternalMapRegisterAddresses : HalTranslateBusAddress - OK\r\n")));
	        if ( !inIoSpace ) {
			DEBUGMSG(1, (TEXT("Ser_InternalMapRegisterAddresses : ! IO Space\r\n")));
			if ( (ioPortBase = (PUCHAR)MmMapIoSpace(ioPhysicalBase, Size, FALSE)) == NULL ) {
				// We may as well not continue
				DEBUGMSG(ZONE_INIT | ZONE_ERROR, (TEXT("Error mapping I/O Ports\r\n")));
				return (NULL);
			}
		} else {
			DEBUGMSG(1, (TEXT("Ser_InternalMapRegisterAddresses : IO Space\r\n")));
			ioPortBase = (PUCHAR)ioPhysicalBase.LowPart;
		}
	} else {
		DEBUGMSG(ZONE_INIT | ZONE_ERROR, (TEXT("Error translating I/O Ports.\r\n")));
		return (NULL);
	}

	RETAILMSG(DEBUGMODE, (TEXT("- Ser_InternalMapRegisterAddresses : %d\r\n"),ioPortBase ));
	return (ioPortBase);
}

/*
 *  NOTE : The caller should have set pHWHead->fIRMode.  It is not
 * set here, since power on/off may need to temporarily disable
 * the intefaces without actually overwriting the current recorded
 * mode.
 */
static
void
SerSetOutputMode(
                PSER_INFO   pHWHead,
                BOOL UseIR,     // @parm     BOOL Should we use IR interface
                BOOL Use9Pin    // @parm     BOOL Should we use Wire interface
                )
{
	// If you support IR, here you need to set the interface to either IR mode
	// or normal serial. Note that it is possible for both BOOls to
	// be false (i.e. power down), but never for both to be TRUE.

	PS2410_UART_INFO   pHWHead2   = (PS2410_UART_INFO)pHWHead;
	RETAILMSG (DEBUGMODE, (TEXT("SerSetOutputMode : ")));
	if(UseIR)  
	{
		RETAILMSG (DEBUGMODE, (TEXT("IRDA \r\n")));
		SETREG(pHWHead2,rULCON,SER2410_IRMODE_MASK);   // Infra-red mode enable.
	}
	else
	{
		RETAILMSG (DEBUGMODE, (TEXT("SERIAL \r\n")));
		CLEARREG(pHWHead2,rULCON,SER2410_IRMODE_MASK);   // Infra-red mode enable.
	}
}



/*++
*******************************************************************************
Routine:

    Ser_GetRegistryData

Description:

    Take the registry path provided to COM_Init and use it to find this 
    requested comm port's DeviceArrayIndex, teh IOPort Base Address, and the
   Interrupt number.
   
Arguments:

    LPCTSTR regKeyPath	the registry path passed in to COM_Init.

Return Value:

    -1 if there is an error.

*******************************************************************************
--*/
BOOL
Ser_GetRegistryData(PSER_INFO pHWHead, LPCTSTR regKeyPath)
{
#define GCI_BUFFER_SIZE 256   

	LONG    regError;
	HKEY    hKey;
	DWORD   dwDataSize = GCI_BUFFER_SIZE;

	RETAILMSG(DEBUGMODE, (TEXT("Try to open %s\r\n"), regKeyPath));

	// We've been handed the name of a key in the registry that was generated
	// on the fly by device.exe.  We're going to open that key and pull from it
	// a value that is the name of this serial port's real key.  That key
	// will have the DeviceArrayIndex that we're trying to find.  
	hKey = OpenDeviceKey(regKeyPath);
	if ( hKey == NULL ) {
		DEBUGMSG(ZONE_INIT | ZONE_ERROR,(TEXT("Failed to open device key\r\n")));
		return ( FALSE );        
	}

	// Okay, we're finally ready to try and load our registry data.
	dwDataSize = PC_REG_DEVINDEX_VAL_LEN;
	regError = RegQueryValueEx(
					hKey, 
					PC_REG_DEVINDEX_VAL_NAME, 
					NULL, 
					NULL,
					(LPBYTE)(&pHWHead->dwDevIndex), 
					&dwDataSize);

	if ( regError == ERROR_SUCCESS ) {
		dwDataSize = PC_REG_IRQ_VAL_LEN;
		regError = RegQueryValueEx(
					hKey, 
					PC_REG_IRQ_VAL_NAME, 
					NULL, 
					NULL,
					(LPBYTE)(&pHWHead->dwIRQ), 
					&dwDataSize);
	}

	if ( regError == ERROR_SUCCESS ) {
		dwDataSize = PC_REG_IOBASE_VAL_LEN;
		regError = RegQueryValueEx(
					hKey, 
					PC_REG_IOBASE_VAL_NAME, 
					NULL, 
					NULL,
					(LPBYTE)(&pHWHead->dwIOBase), 
					&dwDataSize);
	}

	if ( regError == ERROR_SUCCESS ) {
		dwDataSize = PC_REG_IOLEN_VAL_LEN;
		regError = RegQueryValueEx(
					hKey, 
					PC_REG_IOLEN_VAL_NAME, 
					NULL, 
					NULL,
					(LPBYTE)(&pHWHead->dwIOLen), 
					&dwDataSize);
	}

	RegCloseKey (hKey);

	if ( regError != ERROR_SUCCESS ) {
		RETAILMSG(DEBUGMODE, (TEXT("Failed to get serial registry values, Error 0x%X\r\n"),regError));
		return ( FALSE );
	}

	RETAILMSG (DEBUGMODE,(TEXT("SerInit - Devindex %d, IRQ %d, IOB %X, IOLen %X \r\n"),
		pHWHead->dwDevIndex, pHWHead->dwIRQ, pHWHead->dwIOBase, pHWHead->dwIOLen));
	return ( TRUE ); 
}



/*
 @doc OEM 
 @func PVOID | SerInit | Initializes device identified by argument.
 *  This routine sets information controlled by the user
 *  such as Line control and baud rate. It can also initialize events and
 *  interrupts, thereby indirectly managing initializing hardware buffers.
 *  Exported only to driver, called only once per process.
 *
 @rdesc The return value is a PVOID to be passed back into the HW
 dependent layer when HW functions are called.
 */
static
PVOID
SerInit(
		BOOL bIR,
		ULONG   Identifier, // @parm Device identifier.
		PVOID   pMddHead,   // @parm First argument to mdd callbacks.
		PHWOBJ  pHWObj      // @parm Pointer to our own HW OBJ for this device
       )
{
	PSER_INFO   pHWHead;

#ifdef EXAMINE_BOOTARGS    
	PVOID       *ppBootArgs = NULL;  // Pointer to pointer to bootargs.
	PHYSICAL_ADDRESS PhysicalAddress = {0,0};
#endif    

	// Note on defaults.  While the PC typcially considers COM1 to be at 
	// 3F8, irq4 and COM2 to be 2F8, irq3, NKPC uses COM1 internally for the
	// debugger.  So, when NK tells me to start "COM1" it really means the
	// first one that's available, which is what the PC calls COM2.  Confused?
	// The end result is that COM1 on NK is what the PC considers to be COM2.
	// But wait, there's more.  On a Puzzle, the debugger is on COM2 and the
	// COM1 for NK is ACTUALLY COM1.  So PCs need 2F8 for their port base
	// and Puzzles need 3F8.

	RETAILMSG(DEBUGMODE, (TEXT("SerInit - !!! \r\n")));

	// Allocate for our main data structure and one of it's fields.
	pHWHead = (PSER_INFO)LocalAlloc( LMEM_ZEROINIT|LMEM_FIXED,	sizeof(SER_INFO) );
	if ( !pHWHead )
		return( NULL );

	if ( ! Ser_GetRegistryData(pHWHead, (LPCTSTR)Identifier) ) {
		DEBUGMSG (ZONE_INIT|ZONE_ERROR,
			(TEXT("SerInit - Unable to read registry data.  Failing Init !!! \r\n")));
		goto ALLOCFAILED;
	}

	pHWHead->pBaseAddress = Ser_InternalMapRegisterAddresses(pHWHead->dwIOBase, pHWHead->dwIOLen);

#ifdef EXAMINE_BOOTARGS        
	// Allocate a pointer to our bootargs since they may indicate that we don't have
	// access to the hardware resource.

	// First, map the bootargs pointer itself.  Note that I'm reading/writing
	// directly on the physical address.  I can do this since I know this is CEPC and 
	// know the adress is not in IO space.  For OEM platforms you would want to do
	// HalTranslateBusAddress first.
	PhysicalAddress.LowPart = BOOT_ARG_PTR_LOCATION & ~0x80000000;

	if ( ppBootArgs = MmMapIoSpace(PhysicalAddress, sizeof( PVOID ), TRUE ) ) {
		DEBUGMSG (ZONE_INIT,
			(TEXT("SerInit - ppBootArgs (%X) at %X\r\n"), 
			PhysicalAddress.LowPart, ppBootArgs ));
	} else {
		DEBUGMSG (ZONE_INIT | ZONE_ERROR,
			(TEXT("SerInit - ppBootArgs failure at %X\r\n"), PhysicalAddress.LowPart ));
		goto ALLOCFAILED;
	}

	// Now map the bootargs structure itself
	PhysicalAddress.LowPart = (DWORD) *ppBootArgs;
	if ( pHWHead->pBootArgs = MmMapIoSpace(PhysicalAddress, sizeof(BOOT_ARGS), TRUE ) ) {
		DEBUGMSG (ZONE_INIT,
			(TEXT("SerInit - pBootArgs (%X) at %X\r\n"), 
			PhysicalAddress.LowPart, pHWHead->pBootArgs ));
	} else {
		DEBUGMSG (ZONE_INIT | ZONE_ERROR,
			(TEXT("SerInit - pBootArgs failure at %X\r\n"), 
			(DWORD)PhysicalAddress.LowPart));
		goto ALLOCFAILED;
	}

	// We no longer need ppBootArgs
	MmUnmapIoSpace( ppBootArgs, sizeof(PVOID) );
#endif // EXAMINE_BOOTARGS

	pHWHead->pMddHead     = pMddHead;
	pHWHead->pHWObj = pHWObj;
	pHWHead->cOpenCount   = 0;

	RETAILMSG(DEBUGMODE,(TEXT("SerInit - IRQ %d = SYSINTR %d\r\n"),
					pHWHead->dwIRQ, pHWHead->pHWObj->dwIntID));

	// Set up our Comm Properties data    
	pHWHead->CommProp.wPacketLength       = 0xffff;
	pHWHead->CommProp.wPacketVersion     = 0xffff;
	pHWHead->CommProp.dwServiceMask      = SP_SERIALCOMM;
	pHWHead->CommProp.dwReserved1         = 0;
	pHWHead->CommProp.dwMaxTxQueue        = 16;
	pHWHead->CommProp.dwMaxRxQueue        = 16;
	pHWHead->CommProp.dwMaxBaud       = BAUD_115200;
	pHWHead->CommProp.dwProvSubType      = PST_RS232;
	pHWHead->CommProp.dwProvCapabilities =
		PCF_DTRDSR | PCF_RLSD | PCF_RTSCTS |
		PCF_SETXCHAR |
		PCF_INTTIMEOUTS |
		PCF_PARITY_CHECK |
		PCF_SPECIALCHARS |
		PCF_TOTALTIMEOUTS |
		PCF_XONXOFF;
	pHWHead->CommProp.dwSettableBaud      =
		BAUD_075 | BAUD_110 | BAUD_150 | BAUD_300 | BAUD_600 |
		BAUD_1200 | BAUD_1800 | BAUD_2400 | BAUD_4800 |
		BAUD_7200 | BAUD_9600 | BAUD_14400 |
		BAUD_19200 | BAUD_38400 | BAUD_56K | BAUD_128K |
		BAUD_115200 | BAUD_57600 | BAUD_USER;
	pHWHead->CommProp.dwSettableParams    =
		SP_BAUD | SP_DATABITS | SP_HANDSHAKING | SP_PARITY |
		SP_PARITY_CHECK | SP_RLSD | SP_STOPBITS;
	pHWHead->CommProp.wSettableData       =
		DATABITS_5 | DATABITS_6 | DATABITS_7 | DATABITS_8;
	pHWHead->CommProp.wSettableStopParity =
		STOPBITS_10 | STOPBITS_20 |
		PARITY_NONE | PARITY_ODD | PARITY_EVEN | PARITY_SPACE |
		PARITY_MARK;

	pHWHead->fIRMode = bIR;
	pHWHead->s2410COM.UseIrDA = bIR;

#ifdef EXAMINE_BOOTARGS
	// Don't actually init the hardware if it is being used for debugging
	if ( ((pHWHead->pBootArgs->ucComPort == 1) && (pHWHead->dwIOBase == COM1_BASE)) ||
		((pHWHead->pBootArgs->ucComPort == 2) && (pHWHead->dwIOBase == COM2_BASE)) || 
		((pHWHead->pBootArgs->ucComPort == 3) && (pHWHead->dwIOBase == COM3_BASE)) ||
		((pHWHead->pBootArgs->ucComPort == 4) && (pHWHead->dwIOBase == COM4_BASE)) ) {
		DEBUGMSG (ZONE_INIT|ZONE_ERROR, (TEXT("\r\nSerInit - Skipping hardware init of debug port\r\n\r\n")));        
	} else
#endif
	{
		DEBUGMSG (ZONE_INIT|USERDBG, (TEXT("SerInit - Init 16550 data\r\n")));
		SL_Init( pHWHead, pHWHead->pBaseAddress, 1,
				EvaluateEventFlag, pMddHead, (PLOOKUP_TBL)&BaudTable);
		DEBUGMSG (ZONE_INIT,
			(TEXT("SerInit - Disabling UART Power\r\n")));
		SerSetOutputMode(pHWHead, FALSE, FALSE );    
//		SerSetOutputMode(pHWHead, bIR, ~bIR);    
	}

	return (pHWHead);

	ALLOCFAILED:
	if ( pHWHead->pBaseAddress )
		VirtualFree(pHWHead->pBaseAddress, 0, MEM_RELEASE);
	if ( ppBootArgs )
		MmUnmapIoSpace( ppBootArgs, sizeof( PVOID ) );
	if ( pHWHead->pBootArgs )
		MmUnmapIoSpace( pHWHead->pBootArgs, sizeof(BOOT_ARGS) );

	LocalFree(pHWHead);
	return (NULL);
}


PVOID
SerInitSerial(
       ULONG   Identifier, // @parm Device identifier.
       PVOID   pMddHead,   // @parm First argument to mdd callbacks.
       PHWOBJ  pHWObj      // @parm Pointer to our own HW OBJ for this device
)
{
	RETAILMSG(DEBUGMODE, (TEXT("SerInitSerial\r\n")));
	return (SerInit(FALSE, Identifier, pMddHead, pHWObj));
}

PVOID
SerInitSerial2(
       ULONG   Identifier, // @parm Device identifier.
       PVOID   pMddHead,   // @parm First argument to mdd callbacks.
       PHWOBJ  pHWObj      // @parm Pointer to our own HW OBJ for this device
)
{
	RETAILMSG(DEBUGMODE, (TEXT("SerInitSerial\r\n")));
	return (SerInit(FALSE, Identifier, pMddHead, pHWObj));
}

PVOID
SerInitSerial3(
       ULONG   Identifier, // @parm Device identifier.
       PVOID   pMddHead,   // @parm First argument to mdd callbacks.
       PHWOBJ  pHWObj      // @parm Pointer to our own HW OBJ for this device
)
{
	RETAILMSG(DEBUGMODE, (TEXT("SerInitSerial\r\n")));
	return (SerInit(FALSE, Identifier, pMddHead, pHWObj));
}

PVOID
SerInitIR(
       ULONG   Identifier, // @parm Device identifier.
       PVOID   pMddHead,   // @parm First argument to mdd callbacks.
       PHWOBJ  pHWObj      // @parm Pointer to our own HW OBJ for this device
)
{
	RETAILMSG(DEBUGMODE, (TEXT("SerInitIR\r\n")));
	return (SerInit(TRUE, Identifier, pMddHead, pHWObj));
}



/*
 @doc OEM
 @func ULONG | SerClose | This routine closes the device identified by the PVOID returned by SerInit.
 *  Not exported to users, only to driver.
 *
 @rdesc The return value is 0.
 */
static
ULONG
SerClose(
        PVOID   pHead   // @parm PVOID returned by SerInit.
        )
{
	PSER_INFO   pHWHead = (PSER_INFO)pHead;
	ULONG  uTries;

	RETAILMSG (DEBUGMODE,(TEXT("+SerClose\r\n")));
	if ( pHWHead->cOpenCount ) {
		DEBUGMSG (ZONE_CLOSE, (TEXT("SerClose, closing device\r\n")));
		pHWHead->cOpenCount--;

	// while we are still transmitting, sleep.
		uTries = 0;
		while((pHWHead->s2410COM.s2410SerReg->rUFSTAT & SER2410_FIFOSTAT_MASK) & (uTries++ < 100))  {    // TxFifo not empty..
			DEBUGMSG (ZONE_CLOSE, (TEXT("SerClose, TX in progress.\r\n")));            
			Sleep(10);
		}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品资源在线观看| 亚洲一区二区三区四区的| 欧美另类z0zxhd电影| 91免费版在线| 欧美性受xxxx黑人xyx性爽| 在线日韩一区二区| 91精品国产综合久久精品| 国产人成亚洲第一网站在线播放| 另类小说视频一区二区| 性做久久久久久久免费看| 日韩精品久久理论片| 国产精品原创巨作av| 成人国产在线观看| 91精品国产免费| 欧美精品一区二区三区久久久| 日本一区二区三级电影在线观看 | 欧美一区二区在线播放| 精品国产乱码久久久久久闺蜜| 国产亚洲欧美色| 性做久久久久久免费观看| 国产精一品亚洲二区在线视频| 99精品欧美一区二区三区综合在线| 在线一区二区三区四区五区| 制服丝袜在线91| 亚洲人成人一区二区在线观看| 亚洲午夜久久久久久久久电影院 | 日韩免费观看高清完整版在线观看| 精品1区2区在线观看| 午夜影院久久久| aaa欧美日韩| 国产欧美日韩卡一| 精品亚洲aⅴ乱码一区二区三区| 精品视频一区二区不卡| 欧美激情一区二区| 国产在线精品一区二区| 日韩视频免费观看高清完整版| 一区二区三区免费| 99re这里只有精品6| 中文av字幕一区| 国产宾馆实践打屁股91| 国产精品沙发午睡系列990531| 国产精品99久久久久久有的能看| 精品三级在线看| 狠狠色丁香久久婷婷综| 欧美mv日韩mv国产网站| 蜜臀av一区二区在线免费观看| 欧美日韩一本到| 久久av资源站| 国产精品视频九色porn| 99久久婷婷国产精品综合| 亚洲精选视频在线| 欧美日韩亚洲综合| 日日夜夜精品视频天天综合网| 日韩一级视频免费观看在线| 国产成人在线色| 亚洲一区二区三区视频在线| 日韩一区二区在线播放| 国产成人在线视频网站| 亚洲超碰精品一区二区| 精品少妇一区二区三区日产乱码| 国产真实乱子伦精品视频| 最新热久久免费视频| 欧美一区二区大片| 99精品欧美一区| 日韩av一级片| 国产精品天干天干在线综合| 蜜臀av性久久久久蜜臀aⅴ四虎| 蜜桃一区二区三区四区| 日韩欧美自拍偷拍| 99久久久精品免费观看国产蜜| 日韩精品乱码免费| 综合久久久久久| 亚洲国产精品精华液ab| 91福利社在线观看| 懂色av一区二区夜夜嗨| 天堂久久一区二区三区| 亚洲欧洲日韩女同| 欧美国产精品一区二区| 久久尤物电影视频在线观看| 7777精品伊人久久久大香线蕉经典版下载 | 亚洲精品菠萝久久久久久久| 日韩精品专区在线| 欧美美女直播网站| 欧美亚洲日本国产| 欧美日韩亚洲综合| 欧美色图天堂网| 欧美日韩性生活| 在线成人午夜影院| 欧美一二三在线| 欧美大白屁股肥臀xxxxxx| 欧美一区二区视频在线观看2020| 欧美日韩国产首页在线观看| 欧日韩精品视频| 欧美久久一二三四区| 精品三级av在线| 国产欧美精品一区二区色综合朱莉 | 国产成人av一区二区三区在线观看| 精品中文字幕一区二区小辣椒| 国产盗摄一区二区三区| 丰满放荡岳乱妇91ww| 91免费视频网址| 日韩欧美国产精品一区| 国产人久久人人人人爽| 亚洲午夜久久久久久久久电影网 | 色综合久久88色综合天天| 欧美视频日韩视频在线观看| 久久久国产综合精品女国产盗摄| 国产精品视频九色porn| 天天色图综合网| 国产一区二区在线影院| 在线观看国产日韩| 国产丝袜在线精品| 日本伊人午夜精品| 99热99精品| 国产精品色眯眯| 狠狠网亚洲精品| 67194成人在线观看| 国产精品久久久久影院老司| 国产专区欧美精品| 欧美肥大bbwbbw高潮| 一区二区欧美国产| yourporn久久国产精品| www一区二区| 天天免费综合色| 欧美日韩在线播放三区四区| 久久亚洲综合色| 国产揄拍国内精品对白| 日韩一区二区三区视频| 亚洲国产中文字幕| 6080午夜不卡| 无码av免费一区二区三区试看| 中文字幕视频一区二区三区久| 国产精品色一区二区三区| 国产成人综合在线| 久久色成人在线| 成人丝袜18视频在线观看| 久久美女艺术照精彩视频福利播放 | 亚洲一区二区av电影| 色综合久久久久| 日韩精品一级中文字幕精品视频免费观看| 91天堂素人约啪| 午夜影院在线观看欧美| 欧美三级视频在线| 久久99精品网久久| 日本一区二区免费在线观看视频| 国产成人超碰人人澡人人澡| 中文字幕欧美区| 欧美日韩国产在线播放网站| 老司机午夜精品99久久| 国产精品久久久久久久久快鸭| 一本色道久久综合亚洲aⅴ蜜桃| 亚洲成av人片| 国产亚洲欧美日韩俺去了| 91蝌蚪porny成人天涯| 欧美aaaaaa午夜精品| 亚洲欧洲精品一区二区三区| 欧美日韩电影一区| 91论坛在线播放| 成人精品在线视频观看| 日本在线不卡一区| 一区二区三区四区亚洲| 欧美videofree性高清杂交| 在线免费观看日本一区| 国产宾馆实践打屁股91| 久久99国产精品尤物| 亚洲mv大片欧洲mv大片精品| 亚洲欧美日韩国产成人精品影院| 精品国产不卡一区二区三区| 欧美亚洲国产一区二区三区| 不卡欧美aaaaa| 精品综合久久久久久8888| 亚洲国产乱码最新视频| 亚洲综合久久久久| 亚洲福利视频一区二区| 亚洲一区二区三区中文字幕| 一二三区精品视频| 亚洲国产日韩a在线播放| 亚洲成人久久影院| 亚洲国产一区视频| 亚洲国产精品久久人人爱蜜臀 | 成人h动漫精品一区二| 国产精品一区在线观看你懂的| 九九**精品视频免费播放| 国产在线播放一区三区四| 国内精品免费在线观看| 成人免费黄色在线| 色香蕉久久蜜桃| 欧美羞羞免费网站| 精品国产乱码久久久久久影片| 久久精品欧美一区二区三区不卡| 久久久噜噜噜久噜久久综合| 最新不卡av在线| 久久精品国产第一区二区三区| 美国毛片一区二区三区| www.av精品| 日韩欧美电影一区| 亚洲欧美一区二区不卡| 精品一区二区三区影院在线午夜| 成人一区二区三区视频| 欧美日韩视频一区二区|