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

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

?? ne2000end.c

?? 菲利普22系列 vxworks bsp 可以用來可以和其他版本的ARM vxworks bsp(特別是7內核的進行比較)進行比較可以加深對BSP的理解和掌握
?? C
?? 第 1 頁 / 共 5 頁
字號:
/* ne2000End.c - NE2000 END network interface driver */

#if 0
/* Copyright 1984-2002 Wind River Systems, Inc. */
#include "copyright_wrs.h"

/*
modification history
--------------------
01o,23jul04,a_m  BSP定制 for 精英arm7開發板
01o,24jan02,rcs  added support for user setting the "Configuration Register A"
                 or "Configuration Register B" from the load end string.
01n,14jan02,dat  Removing warnings from Diab compiler
01m,05dec00,dat  merge from sustaining to tor2_0_x
01l,30nov00,pai  corrected the handling of EIOCSFLAGS ioctl (SPR #29423).
01k,30nov00,pai  IFF_UP flag set in ne2000Start routine (SPR #32034, 34433).
01j,10may00,pai  Discontinued use of splnet() (SPR #28366).  The ne2000Send()
                 routine now returns END_ERR_BLOCK instead of ERROR so that
                 upper-level protocols will clean up passed in mBlk.
01i,28jul99,jkf  cleaned up warnings, fixed multicast support. (SPR#27921)
01h,31mar99,sbs  changed atoi to strtoul for offset parameter parsing.
                 (SPR #26208)
01g,29mar99,dat  SPR 26119, documentation, usage of .bS/.bE
01f,09feb99,fle  doc : fixed a problem with end of library description
01e,27jan99,dat  removed most of the lint. (more work needed)
01d,11aug98,mem  rewrote part of the overwrite recovery handling to
		 avoid locking up the driver.
01c,20may98,mem  added additional debug tracing, removed free of
		 pMblk in ne2000PollSend().
01b,06may98,mem  integrated changes from Brian Nash.
01a,16mar98,mem	 written, based on drv/netif/if_ene.c.
*/

/*
DESCRIPTION

This module implements the NE2000 Ethernet network interface driver.

EXTERNAL INTERFACE
The only external interface is the ne2000EndLoad() routine, which expects
the <initString> parameter as input.  This parameter passes in a
colon-delimited string of the format:

<unit>:<adrs>:<vecNum>:<intLvl>:<byteAccess>:<usePromEnetAddr>:<offset>

The ne2000EndLoad() function uses strtok() to parse the string.

TARGET-SPECIFIC PARAMETERS
.IP <unit>
A convenient holdover from the former model.  This parameter is used only
in the string name for the driver.
.IP <adrs>
Tells the driver where to find the ne2000.
.IP <vecNum>
Configures the ne2000 device to generate hardware interrupts
for various events within the device. Thus, it contains
an interrupt handler routine.  The driver calls sysIntConnect() to connect
its interrupt handler to the interrupt vector generated as a result of
the ne2000 interrupt.
.IP <intLvl>
This parameter is passed to an external support routine, sysLanIntEnable(),
which is described below in "External Support Requirements." This routine
is called during as part of driver's initialization.  It handles any
board-specific operations required to allow the servicing of a ne2000
interrupt on targets that use additional interrupt controller devices to
help organize and service the various interrupt sources.  This parameter
makes it possible for this driver to avoid all board-specific knowledge of
such devices.
.IP <byteAccess>
Tells the driver the NE2000 is jumpered to operate in 8-bit mode.
Requires that SYS_IN_WORD_STRING() and SYS_OUT_WORD_STRING() be
written to properly access the device in this mode.
.IP <usePromEnetAddr>
Attempt to get the ethernet address for the device from the on-chip
(board) PROM attached to the NE2000.  Will fall back to using the
BSP-supplied ethernet address if this parameter is 0 or if unable to
read the ethernet address.
.IP <offset>
Specifies the memory alignment offset.

EXTERNAL SUPPORT REQUIREMENTS
This driver requires several external support functions, defined as macros:
.CS
    SYS_INT_CONNECT(pDrvCtrl, routine, arg)
    SYS_INT_DISCONNECT (pDrvCtrl, routine, arg)
    SYS_INT_ENABLE(pDrvCtrl)
    SYS_IN_CHAR(pDrvCtrl, reg, pData)
    SYS_OUT_CHAR(pDrvCtrl, reg, pData)
    SYS_IN_WORD_STRING(pDrvCtrl, reg, pData)
    SYS_OUT_WORD_STRING(pDrvCtrl, reg, pData)
.CE

These macros allow the driver to be customized for BSPs that use
special versions of these routines.

The macro SYS_INT_CONNECT is used to connect the interrupt handler to
the appropriate vector.  By default it is the routine intConnect().

The macro SYS_INT_DISCONNECT is used to disconnect the interrupt handler prior
to unloading the module.  By default this is a dummy routine that
returns OK.

The macro SYS_INT_ENABLE is used to enable the interrupt level for the
end device.  It is called once during initialization.  By default this is
the routine sysLanIntEnable(), defined in the module sysLib.o.

The macro SYS_ENET_ADDR_GET is used to get the ethernet address (MAC)
for the device.  The single argument to this routine is the END_DEVICE
pointer.  By default this routine copies the ethernet address stored in
the global variable ne2000EndEnetAddr into the END_DEVICE structure.

The macros SYS_IN_CHAR, SYS_OUT_CHAR, SYS_IN_WORD_STRING and
SYS_OUT_WORD_STRING are used for accessing the ne2000 device.  The
default macros map these operations onto sysInByte(), sysOutByte(),
sysInWordString() and sysOutWordString().

INCLUDES:
end.h endLib.h etherMultiLib.h

SEE ALSO: muxLib, endLib
.I "Writing and Enhanced Network Driver"

INTERNAL: We are using the DP83905 manual as our reference. It is 
NE2000 compatible.

*/

#include "vxWorks.h"
#include "endLib.h"			/* Common END structures. */
#include "etherMultiLib.h"
#include "netLib.h"
#include "cacheLib.h"
#include "lstLib.h"			/* Needed to maintain protocol list. */
#include "iv.h"
#include "stdlib.h"
#include "sysLib.h"
#include "intLib.h"
#include "taskLib.h"
#include "ne2000End.h"		/* Common defines.  : 包含BSP目錄的定制頭文件*/


/***** LOCAL DEFINITIONS *****/

#define NE2000_ALL_INTS    (IM_OVWE | IM_TXEE | IM_RXEE | IM_PTXE | IM_PRXE)


/*
 * AUTODIN-II, FDDI, ethernet polynomial for 32 bit CRC.
 *
 * The polynomial is expressed:
 *
 *   ( x^32 + x^26 + x^23 + x^22 + x^16 +
 *     x^12 + x^11 + x^10 + x^8  + x^7  +
 *            x^5  + x^4  + x^2  + x^1  + 1 ) = 0x04c11db7
 *
 * Where x = base 2 (binary) and x^32 is ignored for CRC.
 * (x^32, is not in 32 bit value (ends at x^31)
 */

#define CRC32_POLYNOMIAL		0x04c11db7


/* Configuration items */

#define END_SPEED		10000000

/* Naming items */
#define NE2000_DEV_NAME		"ene"
#define NE2000_DEV_NAME_LEN	4

/*
 * Default macro definitions for BSP interface.
 * These macros can be redefined in a wrapper file, to generate
 * a new module with an optimized interface.
 */

/* Macro to connect interrupt handler to vector */
/*  : 名稱替換sysIntConnect->intConnect,其他相同 */
#ifndef SYS_INT_CONNECT
#define SYS_INT_CONNECT(pDrvCtrl,rtn,arg,pResult) \
	{ \
	IMPORT STATUS intConnect(); \
	*pResult = intConnect ((VOIDFUNCPTR *)INUM_TO_IVEC (pDrvCtrl->ivec), \
			     rtn, (int)arg); \
	}
#endif

/* Macro to disconnect interrupt handler from vector */

#ifndef SYS_INT_DISCONNECT
#define SYS_INT_DISCONNECT(pDrvCtrl,rtn,arg,pResult) \
	{ \
	*pResult = OK; /* HELP: need a real routine */ \
	}
#endif

/* Macro to enable the appropriate interrupt level */
/*  : 名稱替換sysLanIntEnable->intEnable,返回類型不同void->STATUS */
#ifndef SYS_INT_ENABLE
#define SYS_INT_ENABLE(pDrvCtrl) \
	{ \
	IMPORT STATUS intEnable(); \
	intEnable (pDrvCtrl->ilevel); \
	}
#endif

/* Macro to get the ethernet address from the BSP */

#ifndef SYS_ENET_ADDR_GET
#define SYS_ENET_ADDR_GET(pDevice) \
	ne2000EnetAddrGet(pDevice)
#endif

/*
 * Macros to do a short (UINT16) access to the chip. Default
 * assumes a normal memory mapped device.
 * CPU_FAMILY is used to avoid conflict between x86 and non
 * x86 defintitions (proper) of these macro's.  This is
 * to avoid some compiler warnings.
 */

#if     (CPU_FAMILY == I80X86)

/* sysLib.h uses two declarations of sys<Blah>WordString */

#ifndef SYS_OUT_CHAR
#define SYS_OUT_CHAR(pDrvCtrl,addr,value) \
	sysOutByte((pDrvCtrl)->base + (int) (addr),(char) (value))
#endif

#ifndef SYS_IN_CHAR
#define SYS_IN_CHAR(pDrvCtrl,addr,pData) \
	(*(pData) = (UCHAR) sysInByte((pDrvCtrl)->base + (int) (addr)))
#endif

/* sysLib.h head setsup to declarations of sys<Blah>WordString */
#ifndef SYS_IN_WORD_STRING
#define SYS_IN_WORD_STRING(pDrvCtrl,addr,pData,len) \
	(sysInWordString ((pDrvCtrl)->base + (int) (addr), (short *)(pData), \
			  (len)))
#endif

#ifndef SYS_OUT_WORD_STRING
#define SYS_OUT_WORD_STRING(pDrvCtrl,addr,pData,len) \
	(sysOutWordString ((pDrvCtrl)->base + (int) (addr), (short *)(pData), \
			   (len)))
#endif

#else /* #if     (CPU_FAMILY == I80X86) */

#ifndef SYS_OUT_CHAR
#define SYS_OUT_CHAR(pDrvCtrl,addr,value) \
    	sysOutByte((pDrvCtrl)->base + (UINT) (addr), (value))
#endif

#ifndef SYS_IN_CHAR
#define SYS_IN_CHAR(pDrvCtrl,addr,pData) \
    	(*(pData) = (UCHAR) sysInByte((pDrvCtrl)->base + (UINT) (addr)))
#endif

#ifndef SYS_IN_WORD_STRING
#define SYS_IN_WORD_STRING(pDrvCtrl,addr,pData,len) \
    	(sysInWordString ((pDrvCtrl)->base + (UINT) (addr),  \
			  (UINT16 *)(pData), (len)))
#endif

#ifndef SYS_OUT_WORD_STRING
#define SYS_OUT_WORD_STRING(pDrvCtrl,addr,pData,len) \
    	(sysOutWordString ((pDrvCtrl)->base + (UINT) (addr), \
			   (UINT16 *) (pData), (len)))
#endif

#endif /* #if     (CPU_FAMILY == I80X86) */

/* A shortcut for getting the hardware address from the MIB II stuff. */

#define END_HADDR(pEnd)	\
		((pEnd)->mib2Tbl.ifPhysAddress.phyAddress)

#define END_HADDR_LEN(pEnd) \
		((pEnd)->mib2Tbl.ifPhysAddress.addrLength)


/* Statistics we gather from the NE2000 */

typedef struct
    {
    UINT collisions;
    UINT crcs;
    UINT aligns;
    UINT missed;
    UINT overruns;
    UINT disabled;
    UINT deferring;
    UINT underruns;
    UINT aborts;
    UINT outofwindow;
    UINT heartbeats;
    UINT badPacket;
    UINT shortPacket;
    UINT tnoerror;
    UINT rnoerror;
    UINT terror;
    UINT rerror;
    UINT overwrite;
    UINT wrapped;
    UINT interrupts;
    UINT reset;
    UINT strayint;
    UINT jabber;
    } NE2000_STAT;

/*
 * The definition of the driver control structure.  The packetBuf[]
 * array needs to be kept at least word-aligned as it gets passed to
 * SYS_OUT_WORD_STRING() and some architectures cannot handle
 * misaligned accesses.
 */

typedef struct ne2000_device
    {
    END_OBJ		endObj;		/* The class we inherit from. */
    END_ERR		lastError;	/* Last error passed to muxError */
    int			lastIntError;	/* last interrupt signalled error */
    int			unit;		/* unit number */
    int			ivec;		/* interrupt vector */
    int			ilevel;		/* interrupt level */
    int			byteAccess;	/* 8-bit access mode */
    int			usePromEnetAddr;/* enet addr from PROM */
    ULONG		base;		/* base address */
    int			offset;		/* offset for memory alignment */
    char		packetBuf [NE2000_BUFSIZ];	/* long-aligned */
    volatile long	flags;		/* Our local flags. */
    volatile UCHAR	current;	/* current-page reg at interrupt */
    volatile ULONG	imask;		/* interrupt mask */
    volatile NE2000_STAT stats;		/* NE2000 stats */
    UCHAR		enetAddr[6];	/* ethernet address */
    UCHAR		mcastFilter[8];	/* multicast filter */
    UCHAR		nextPacket;	/* where the next received packet is */
    CL_POOL_ID		clPoolId;
    int                 configRegA;     /* configuration register A */
    int                 configRegB;     /* configuration register B */
} NE2000END_DEVICE;

/* Definitions for the flags field */

#define END_PROMISCUOUS_FLAG	0x01
#define END_RECV_HANDLING_FLAG	0x02
#define END_TX_IN_PROGRESS	0x04
#define END_TX_BLOCKED		0x08
#define END_POLLING		0x10
#define END_OVERWRITE		0x20
#define END_OVERWRITE2		0x40

/***** DEBUG MACROS *****/

#undef DEBUG

#ifdef DEBUG
#   include "stdio.h"
#   include "logLib.h"
    int endDebug = 0;
#   define ENDLOGMSG(x) \
	do { \
	    if (endDebug) \
		logMsg x; \
	   } while (0)
#else
#   define ENDLOGMSG(x)
#endif /* ENDDEBUG */

/***** LOCALS *****/

/* imports */

IMPORT char ne2000EnetAddr[];
IMPORT int endMultiLstCnt (END_OBJ *);

/* forward static functions */

LOCAL void	ne2000Int (NE2000END_DEVICE* pDrvCtrl);
LOCAL void	ne2000HandleRcvInt (NE2000END_DEVICE* pDrvCtrl);
LOCAL void	ne2000Config (NE2000END_DEVICE* pDrvCtrl,
			      int intEnable);
LOCAL void	ne2000OverwriteRecover (NE2000END_DEVICE* pDrvCtrl,
					UCHAR cmdStatus);
LOCAL int	ne2000PacketGet (NE2000END_DEVICE* pDrvCtrl, char *pData);
LOCAL void	ne2000AddrFilterSet (NE2000END_DEVICE* pDrvCtrl);
LOCAL UINT32 	ne2000CrcWork (UINT8 inChar, UINT32 inCrc);
LOCAL void	ne2000EnetAddrGet (NE2000END_DEVICE* pDrvCtrl);
LOCAL UCHAR	ne2000GetCurr (NE2000END_DEVICE* pDrvCtrl);
LOCAL void	ne2000DataIn (NE2000END_DEVICE* pDrvCtrl, int eneAddress,
			      int len, char* pData);
LOCAL void	ne2000DataOut (NE2000END_DEVICE* pDrvCtrl, char* pData,
			       int len, int eneAddress);
LOCAL STATUS	ne2000Parse (NE2000END_DEVICE* pDrvCtrl, char* initString);
LOCAL STATUS	ne2000MemInit (NE2000END_DEVICE* pDrvCtrl);
LOCAL STATUS	ne2000PollStart (NE2000END_DEVICE* pDrvCtrl);
LOCAL STATUS	ne2000PollStop (NE2000END_DEVICE* pDrvCtrl);


/* END Specific interfaces. */

/* This is the only externally visible interface. */

END_OBJ * 	ne2000EndLoad (char* initString, void *pBSP);

LOCAL STATUS	ne2000Start (void* pCookie);
LOCAL STATUS	ne2000Stop (void* pCookie);
LOCAL STATUS	ne2000Unload (void *pCookie);
LOCAL int	ne2000Ioctl (void *pCookie, int cmd, caddr_t data);
LOCAL STATUS	ne2000Send (void *pCookie, M_BLK_ID pBuf);
LOCAL STATUS	ne2000MCastAdd (void *pCookie, char* pAddress);
LOCAL STATUS	ne2000MCastDel (void *pCookie, char* pAddress);
LOCAL STATUS	ne2000MCastGet (void *pCookie, MULTI_TABLE* pTable);
LOCAL STATUS	ne2000PollSend (void *pCookie, M_BLK_ID pBuf);
LOCAL STATUS	ne2000PollRecv (void *pCookie, M_BLK_ID pBuf);

/*
 * Declare our function table.  This is static across all driver
 * instances.
 */
LOCAL NET_FUNCS ne2000FuncTable =
    {
    (FUNCPTR) ne2000Start,	/* Function to start the device. */
    (FUNCPTR) ne2000Stop,	/* Function to stop the device. */
    (FUNCPTR) ne2000Unload,	/* Unloading function for the driver. */
    (FUNCPTR) ne2000Ioctl,	/* Ioctl function for the driver. */
    (FUNCPTR) ne2000Send,	/* Send function for the driver. */
    (FUNCPTR) ne2000MCastAdd,	/* Multicast address add function for the */
				/* driver. */
    (FUNCPTR) ne2000MCastDel,	/* Multicast address delete function for */
				/* the driver. */
    (FUNCPTR) ne2000MCastGet,	/* Multicast table retrieve function for */
				/* the driver. */
    (FUNCPTR) ne2000PollSend,	/* Polling send function for the driver. */
    (FUNCPTR) ne2000PollRecv,	/* Polling receive function for the driver. */
    endEtherAddressForm, /* put address info into a NET_BUFFER */
    (FUNCPTR) endEtherPacketDataGet, /* get pointer to data in NET_BUFFER */
    (FUNCPTR) endEtherPacketAddrGet  /* Get packet addresses. */
    };

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美激情一区二区三区四区| 亚洲综合激情网| 亚洲欧美日韩国产综合在线| 肉肉av福利一精品导航| 99久久伊人网影院| 欧美成人激情免费网| 亚洲一区在线观看免费| 成人av网址在线| 久久久精品影视| 奇米影视一区二区三区小说| 欧美午夜精品久久久久久孕妇| 久久影院电视剧免费观看| 美女一区二区视频| 56国语精品自产拍在线观看| 伊人开心综合网| av午夜一区麻豆| 国产精品家庭影院| 国产高清无密码一区二区三区| 日韩视频一区二区三区在线播放| 亚洲一区av在线| 日本福利一区二区| 亚洲免费观看高清在线观看| 97se亚洲国产综合自在线| 国产精品美日韩| 国产成人一区二区精品非洲| 久久九九影视网| 国产精品一线二线三线精华| 2021久久国产精品不只是精品| 秋霞电影网一区二区| 7777精品伊人久久久大香线蕉| 亚洲国产精品一区二区www在线| 在线观看视频一区| 亚洲国产精品影院| 91精品蜜臀在线一区尤物| 五月天中文字幕一区二区| 精品视频色一区| 亚洲成人激情av| 7777精品伊人久久久大香线蕉 | 欧美日韩大陆在线| 亚洲h精品动漫在线观看| 欧美午夜理伦三级在线观看| 婷婷激情综合网| 精品久久人人做人人爰| 国产在线不卡一区| 国产精品美女久久久久高潮| 99久久久精品免费观看国产蜜| 中文字幕欧美三区| 色噜噜久久综合| 午夜影院在线观看欧美| 欧美成人精品福利| 成人综合在线视频| 亚洲老司机在线| 欧美一区二区视频在线观看| 激情综合一区二区三区| 中文成人综合网| 欧美无乱码久久久免费午夜一区| 日日夜夜一区二区| 国产视频一区二区在线| 欧美天天综合网| 国内欧美视频一区二区| 国产精品国产三级国产三级人妇| 欧美日韩在线免费视频| 国模大尺度一区二区三区| 中文字幕一区二区三区四区不卡 | 亚洲免费视频成人| 91精品国产综合久久精品图片 | 欧美日韩中文另类| 韩国中文字幕2020精品| 亚洲人成网站精品片在线观看| 欧美一区二区网站| 成人av集中营| 美女一区二区视频| 亚洲男人都懂的| 欧美不卡视频一区| 99久久精品免费看| 麻豆精品久久久| 亚洲色图19p| 精品精品国产高清一毛片一天堂| 色综合天天综合网天天狠天天| 精品伊人久久久久7777人| ...av二区三区久久精品| 日韩精品一区二区三区视频播放| eeuss鲁片一区二区三区在线看| 秋霞电影网一区二区| 亚洲另类春色国产| 中文字幕av一区二区三区高| 欧美一区二区三区在线观看| 91色porny在线视频| 国内成人精品2018免费看| 亚洲第一狼人社区| 亚洲色图视频网| 国产精品人成在线观看免费| 日韩免费电影一区| 在线观看91精品国产麻豆| 在线观看亚洲一区| 一本久道久久综合中文字幕| 成人网在线免费视频| 国产一区二区三区综合| 麻豆精品在线观看| 日本成人在线不卡视频| 午夜精品久久久久久久99水蜜桃 | 欧美日韩精品一区二区天天拍小说| 国产99久久久国产精品| 激情综合色综合久久综合| 日本伊人午夜精品| 日韩—二三区免费观看av| 亚洲成av人片一区二区三区| 亚洲国产中文字幕| 亚洲高清一区二区三区| 午夜av一区二区三区| 视频在线观看91| 日韩电影在线免费看| 日韩福利视频网| 麻豆精品一区二区三区| 激情综合色综合久久综合| 狠狠色伊人亚洲综合成人| 韩国av一区二区三区四区 | 2021久久国产精品不只是精品| 精品久久五月天| 久久久国际精品| 欧美激情在线一区二区三区| 欧美国产一区视频在线观看| 亚洲国产精华液网站w| 国产精品久久三区| 亚洲视频综合在线| 亚洲综合丁香婷婷六月香| 亚洲成人在线观看视频| 蜜臀a∨国产成人精品| 韩国成人在线视频| 成人性生交大合| 日本伦理一区二区| 欧美蜜桃一区二区三区| 欧美精品一区二区不卡| 国产视频一区在线播放| 亚洲欧洲日韩av| 日韩精品欧美成人高清一区二区| 蜜桃久久久久久| 国产99精品在线观看| 在线视频一区二区三| 日韩欧美资源站| 欧美—级在线免费片| 亚洲亚洲精品在线观看| 免费成人美女在线观看| 国产精品系列在线观看| 91麻豆产精品久久久久久| 51久久夜色精品国产麻豆| 国产亚洲精品bt天堂精选| 夜色激情一区二区| 久久99蜜桃精品| 91女厕偷拍女厕偷拍高清| 69av一区二区三区| 国产精品久久久久久久久免费樱桃| 一区二区三区电影在线播| 国产一区二三区好的| 欧美亚洲综合色| 久久久综合视频| 亚洲一区二区三区四区中文字幕| 麻豆精品一二三| 色欲综合视频天天天| 欧美zozo另类异族| 亚洲综合清纯丝袜自拍| 国产精品亚洲第一| 欧美老人xxxx18| 国产精品久久久久毛片软件| 全国精品久久少妇| 色老汉一区二区三区| 久久老女人爱爱| 首页亚洲欧美制服丝腿| 91丨porny丨户外露出| 久久香蕉国产线看观看99| 亚洲综合精品自拍| 99精品欧美一区二区三区综合在线| 欧美一区二区三级| 亚洲高清三级视频| 91麻豆视频网站| 国产精品美女一区二区在线观看| 蜜桃91丨九色丨蝌蚪91桃色| 欧美在线观看视频一区二区三区 | 国产91精品在线观看| 日韩一区国产二区欧美三区| 亚洲一区二区综合| 91极品视觉盛宴| 综合色天天鬼久久鬼色| 国产不卡一区视频| 久久婷婷国产综合国色天香| 男人的天堂亚洲一区| 欧美日韩精品欧美日韩精品 | 欧美日韩视频一区二区| 亚洲三级电影全部在线观看高清| 国产激情视频一区二区三区欧美 | 亚洲女爱视频在线| 99国产精品一区| 中文字幕一区二区三区不卡在线| 国产在线国偷精品免费看| 欧美成人精品3d动漫h| 精品一区二区三区久久| 日韩欧美国产wwwww| 久久se这里有精品| 2021国产精品久久精品| 国产精品1024久久|