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

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

?? ser2440_ser.c

?? windows ce 50 drive program
?? 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.
Copyright (c) 2001-2002 SAMSUNG Electronics Corporation.  All rights reserved.

Author	hmseo@sec.samsung.com (SAMSUNG Electronics)

Module Name:  

SER2440_SER.C

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 <pm.h>

#include "S2440.h"

#define USERDBG        1

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

#include <ser2440.h>

#undef ZONE_INIT
#include <serdbg.h>

static BOOL IRDA;

#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);
}

static
BOOL
SerSetIRBaudRate(
			PSER_INFO   pHWHead,
			ULONG baud     // @parm     UINT16 what is the baud rate
					)
{
	PS2440_UART_INFO   pHWHead2   = (PS2440_UART_INFO)pHWHead;

	RETAILMSG(DEBUGMODE, (TEXT("IRDA : +SerSetIRBaudRate\r\n")));    
	DEBUGMSG (ZONE_INIT|1, (TEXT("Serial set IR Baud %d\r\n"), baud));

	if ( (pHWHead2->s2440SerReg->rUCON & CS_MASK) == CS_PCLK )
	{
		RETAILMSG (1, (TEXT("USE CS_PCLK\r\n")));    
		OUTREG(pHWHead2,rUBRDIV,( (int)(S2440PCLK/16.0/baud) -1 ));
	}
	else		// if  ( (pHWHead2->s2440SerReg->rUCON & CS_MASK) == CS_UCLK )
	{
		RETAILMSG (1, (TEXT("USE CS_UCLK\r\n")));    
		OUTREG(pHWHead2,rUBRDIV,( (int)(S2440UCLK/16.0/baud) -1 ));
	}
		
	RETAILMSG(DEBUGMODE, (TEXT("IRDA : -SerSetIRBaudRate\r\n")));
	return (TRUE);
}

/*
 *  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.

	PS2440_UART_INFO   pHWHead2   = (PS2440_UART_INFO)pHWHead;

	RETAILMSG (DEBUGMODE, (TEXT("+SerSetOutputMode\r\n")));

	if(UseIR)  
		SETREG(pHWHead2,rULCON,SER2440_IRMODE_MASK);   // Infra-red mode enable.
	else
		CLEARREG(pHWHead2,rULCON,SER2440_IRMODE_MASK);   // Infra-red mode enable.
	
	RETAILMSG(DEBUGMODE, (TEXT("-SerSetOutputMode\r\n")));
}



/*++
*******************************************************************************
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->s2440COM.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 );    
	}

	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
)
{
	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
)
{
	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
)
{
	return (SerInit(FALSE, Identifier, pMddHead, pHWObj));
}

PVOID
SerInitIR(
       ULONG   Identifier, // @parm Device identifier.
       PVOID   pMddHead,   // @parm First argument to mdd callbacks.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久综合九色综合97婷婷 | 欧美日韩你懂得| 制服.丝袜.亚洲.中文.综合| 欧美高清一级片在线观看| 午夜私人影院久久久久| a美女胸又www黄视频久久| 88在线观看91蜜桃国自产| 亚洲蜜臀av乱码久久精品蜜桃| 六月丁香婷婷色狠狠久久| 欧美在线观看你懂的| 中文字幕中文字幕在线一区 | 亚洲欧美一区二区三区久本道91| 狠狠久久亚洲欧美| 6080日韩午夜伦伦午夜伦| 亚洲无线码一区二区三区| 色综合中文综合网| 色综合天天综合| 国产精品久久毛片| 国产麻豆日韩欧美久久| 精品国产一区久久| 看片网站欧美日韩| 欧美α欧美αv大片| 肉肉av福利一精品导航| 欧美色区777第一页| 亚洲福利一区二区三区| 欧美在线三级电影| 亚洲综合色网站| 欧美无砖砖区免费| 亚洲男人天堂av| 在线亚洲高清视频| 亚洲国产色一区| 欧美剧情电影在线观看完整版免费励志电影 | 日韩免费观看高清完整版| 三级成人在线视频| 欧美成人一区二区三区片免费| 秋霞国产午夜精品免费视频| 日韩午夜精品视频| 精品在线免费视频| 国产欧美精品国产国产专区| 国产成人av电影在线观看| 国产色产综合产在线视频| 成人激情校园春色| 亚洲精品视频在线| 91精品国产一区二区三区蜜臀| 日本成人超碰在线观看| 日韩精品一区二区三区中文不卡 | 亚洲国产成人一区二区三区| 99精品国产99久久久久久白柏| 亚洲品质自拍视频| 9191精品国产综合久久久久久| 蜜桃视频第一区免费观看| 久久综合999| 波多野结衣在线aⅴ中文字幕不卡| 亚洲色图色小说| 91精品国产综合久久久久久久久久| 免费成人深夜小野草| 国产欧美日产一区| 欧美日韩精品综合在线| 久久精品噜噜噜成人88aⅴ| 中文字幕免费不卡在线| 欧洲色大大久久| 精品一区二区三区蜜桃| 亚洲伦在线观看| 日韩欧美高清一区| 91亚洲男人天堂| 日本视频中文字幕一区二区三区| 国产欧美日韩视频一区二区| 精品视频一区三区九区| 国产中文一区二区三区| 亚洲一区二区黄色| 中文字幕精品—区二区四季| 欧美美女黄视频| 成人av集中营| 麻豆极品一区二区三区| 夜夜嗨av一区二区三区中文字幕 | 国产精品综合视频| 亚洲自拍欧美精品| 国产片一区二区三区| 777久久久精品| a在线播放不卡| 国产一区二区电影| 日本伊人精品一区二区三区观看方式| 久久嫩草精品久久久久| 制服丝袜亚洲色图| 色猫猫国产区一区二在线视频| 久久99精品久久久| 亚洲国产成人av| 亚洲欧美日韩在线播放| 亚洲国产精华液网站w| 日韩欧美亚洲国产精品字幕久久久 | 欧美xfplay| 欧美人妇做爰xxxⅹ性高电影| bt欧美亚洲午夜电影天堂| 国产一区二区三区四区在线观看| 亚洲成在线观看| 亚洲男同性恋视频| 最近日韩中文字幕| 中文字幕精品综合| 欧美极品美女视频| 2017欧美狠狠色| 欧美大片在线观看| 制服丝袜在线91| 91麻豆精品国产| 欧美日韩不卡在线| 欧美三级韩国三级日本一级| 在线精品视频一区二区| 91在线观看免费视频| 成人免费视频app| 国产91丝袜在线18| 国产91高潮流白浆在线麻豆| 国产福利视频一区二区三区| 国产高清精品久久久久| 福利一区二区在线| 成人黄色软件下载| 99国产精品99久久久久久| 99久久综合99久久综合网站| 99久久综合精品| 欧美在线你懂的| 51精品久久久久久久蜜臀| 欧美一区二区黄| 精品国产在天天线2019| 久久久99精品久久| 欧美激情一区在线观看| 国产精品福利电影一区二区三区四区| 国产精品高清亚洲| 亚洲最大的成人av| 日韩精品一二三四| 精品一区二区久久| 成人精品gif动图一区| 91在线免费视频观看| 欧美日韩黄色一区二区| 欧美一级日韩免费不卡| www一区二区| 亚洲美女精品一区| 免费日本视频一区| 国产成人午夜电影网| 99r国产精品| 91精品一区二区三区久久久久久 | 91色视频在线| 在线观看91av| 久久综合一区二区| |精品福利一区二区三区| 午夜精品久久久久久久久久| 激情久久五月天| 99精品热视频| 欧美一级理论性理论a| 久久久夜色精品亚洲| 一个色妞综合视频在线观看| 免费观看在线色综合| 成人成人成人在线视频| 8v天堂国产在线一区二区| 国产欧美视频一区二区三区| 亚洲高清免费视频| 丁香婷婷综合色啪| 在线电影一区二区三区| 成人欧美一区二区三区| 奇米888四色在线精品| eeuss鲁片一区二区三区在线看| 69久久99精品久久久久婷婷| 中文字幕一区二区三区乱码在线| 麻豆视频一区二区| 91搞黄在线观看| 中文字幕精品一区| 精品一区二区三区在线视频| 欧美综合视频在线观看| 国产精品理伦片| 国产精品综合二区| 欧美精品日韩综合在线| 亚洲欧美日韩在线| 成人免费的视频| 久久亚洲综合av| 免费看欧美女人艹b| 91美女片黄在线观看| 国产欧美一区二区精品仙草咪| 图片区小说区国产精品视频| 91老师国产黑色丝袜在线| 国产日韩精品久久久| 美女诱惑一区二区| 欧美另类变人与禽xxxxx| 夜夜嗨av一区二区三区四季av | 亚洲综合成人在线视频| 成人一区二区三区视频在线观看| 日韩一区二区三区视频在线| 亚洲电影在线播放| 欧美中文一区二区三区| 中文字幕成人网| 国产69精品久久久久毛片 | 波多野结衣亚洲| 国产午夜精品久久久久久免费视| 免费观看日韩电影| 欧美一区国产二区| 日韩精品欧美精品| 欧美一级精品大片| 日本91福利区| 精品少妇一区二区三区免费观看| 青椒成人免费视频| 日韩精品一区二区三区中文不卡| 美女精品一区二区| 国产亚洲一区二区三区四区| 成人涩涩免费视频|