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

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

?? ne2000end.c

?? 關于s3c上的操作系統移植中bsp的編寫
?? C
?? 第 1 頁 / 共 5 頁
字號:
/* ne2000End.c - NE2000 END network interface driver *//* Copyright 2004-2005 Amine@263.net *//* Copyright 1984-2002 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------01o,23jul04,a_m  BSP定制 for 思創S3C44B0X黃金開發板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 compiler01m,05dec00,dat  merge from sustaining to tor2_0_x01l,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/.bE01f,09feb99,fle  doc : fixed a problem with end of library description01e,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.*//*DESCRIPTIONThis module implements the NE2000 Ethernet network interface driver.EXTERNAL INTERFACEThe only external interface is the ne2000EndLoad() routine, which expectsthe <initString> parameter as input.  This parameter passes in acolon-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 onlyin 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 interruptsfor various events within the device. Thus, it containsan interrupt handler routine.  The driver calls sysIntConnect() to connectits interrupt handler to the interrupt vector generated as a result ofthe ne2000 interrupt..IP <intLvl>This parameter is passed to an external support routine, sysLanIntEnable(),which is described below in "External Support Requirements." This routineis called during as part of driver's initialization.  It handles anyboard-specific operations required to allow the servicing of a ne2000interrupt on targets that use additional interrupt controller devices tohelp organize and service the various interrupt sources.  This parametermakes it possible for this driver to avoid all board-specific knowledge ofsuch 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() bewritten 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 theBSP-supplied ethernet address if this parameter is 0 or if unable toread the ethernet address..IP <offset>Specifies the memory alignment offset.EXTERNAL SUPPORT REQUIREMENTSThis 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).CEThese macros allow the driver to be customized for BSPs that usespecial versions of these routines.The macro SYS_INT_CONNECT is used to connect the interrupt handler tothe appropriate vector.  By default it is the routine intConnect().The macro SYS_INT_DISCONNECT is used to disconnect the interrupt handler priorto unloading the module.  By default this is a dummy routine thatreturns OK.The macro SYS_INT_ENABLE is used to enable the interrupt level for theend device.  It is called once during initialization.  By default this isthe 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_DEVICEpointer.  By default this routine copies the ethernet address stored inthe global variable ne2000EndEnetAddr into the END_DEVICE structure.The macros SYS_IN_CHAR, SYS_OUT_CHAR, SYS_IN_WORD_STRING andSYS_OUT_WORD_STRING are used for accessing the ne2000 device.  Thedefault macros map these operations onto sysInByte(), sysOutByte(),sysInWordString() and sysOutWordString().INCLUDES:end.h endLib.h etherMultiLib.hSEE 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. Amine: 包含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 *//* Amine: 名稱替換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 *//* Amine: 名稱替換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. */    };/******************************************************************************** ne2000EndLoad - initialize the driver and device** This routine initializes the driver and the device to the operational state.* All of the device specific parameters are passed in the initString.** The string contains the target specific parameters like this:** "unit:register addr:int vector:int level:shmem addr:shmem size:shmem width"** RETURNS: An END object pointer or NULL on error.*/END_OBJ* ne2000EndLoad    (    char* initString,		/* String to be parsed by the driver. */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产三级欧美三级| 欧美日韩一二区| 国产欧美精品一区二区三区四区| 国产一区二区美女诱惑| 久久久久久免费| 99久久777色| 天天操天天干天天综合网| 欧美日韩成人一区| 九九视频精品免费| 国产午夜一区二区三区| a4yy欧美一区二区三区| 亚洲国产精品欧美一二99| 91精品视频网| 成人午夜碰碰视频| 一区二区三区四区亚洲| 日韩一二三区视频| 成人黄色小视频在线观看| 一个色综合网站| 精品久久久网站| 91片在线免费观看| 久久国产精品免费| 中文字幕在线观看一区| 欧美一级二级三级蜜桃| 成人av网站免费| 日韩国产高清在线| 中文字幕中文字幕在线一区| 欧美人妇做爰xxxⅹ性高电影| 国内精品伊人久久久久av影院| 亚洲三级免费电影| 久久综合一区二区| 色屁屁一区二区| 国产揄拍国内精品对白| 亚洲综合在线第一页| 精品日韩欧美在线| 欧美在线一二三四区| 国产在线一区二区综合免费视频| 亚洲精品乱码久久久久久久久 | 秋霞电影一区二区| 亚洲国产成人午夜在线一区| 在线播放欧美女士性生活| 成人av网站在线| 国产又粗又猛又爽又黄91精品| 亚洲国产精品久久久久婷婷884| 久久久不卡网国产精品二区| 欧美日韩高清一区| 91在线观看污| 成人免费三级在线| 精品综合久久久久久8888| 亚洲一区影音先锋| 亚洲日本va午夜在线影院| 久久亚洲精品小早川怜子| 欧美一区二区大片| 欧美性受极品xxxx喷水| 91玉足脚交白嫩脚丫在线播放| 国产精品1024久久| 免费在线观看不卡| 亚洲v日本v欧美v久久精品| 国产精品超碰97尤物18| 国产日韩欧美激情| 久久精品在线观看| 久久先锋影音av鲁色资源网| 日韩精品专区在线影院观看| 欧美日韩精品一区二区三区| 91蝌蚪porny| 99精品黄色片免费大全| 北条麻妃国产九九精品视频| 福利一区福利二区| 成人在线视频首页| youjizz国产精品| 成人国产精品免费观看| 国产成人免费视频| 国产成人三级在线观看| 高清视频一区二区| 国产精品主播直播| 成人av高清在线| 91视频xxxx| 欧美色偷偷大香| 欧美男人的天堂一二区| 91精品婷婷国产综合久久| 日韩视频一区在线观看| 精品蜜桃在线看| 国内久久精品视频| 亚洲国产成人va在线观看天堂 | 中文字幕第一区二区| 国产日韩欧美精品综合| 国产精品色哟哟网站| 亚洲免费成人av| 亚洲国产精品久久人人爱蜜臀| 亚州成人在线电影| 日本美女一区二区三区视频| 九九**精品视频免费播放| 福利一区二区在线| 在线亚洲欧美专区二区| 欧美日韩国产一级片| 日韩欧美你懂的| 国产视频一区二区三区在线观看| 日韩一区欧美一区| 午夜欧美电影在线观看| 久久99热国产| 成人激情电影免费在线观看| 91精品福利视频| 日韩视频在线一区二区| 国产日韩精品一区二区三区在线| 亚洲美女淫视频| 精品国产乱码久久| 麻豆传媒一区二区三区| 乱一区二区av| 成人夜色视频网站在线观看| 色国产综合视频| 日韩欧美亚洲另类制服综合在线| 亚洲国产精品成人综合色在线婷婷 | 国产亚洲精品中文字幕| 综合精品久久久| 蜜臀va亚洲va欧美va天堂| 国产成人av电影免费在线观看| 91福利视频在线| 欧美成人一区二区三区| 136国产福利精品导航| 日韩国产欧美在线播放| 99视频在线精品| 欧美成人女星排行榜| 亚洲女女做受ⅹxx高潮| 精品一区二区在线播放| 91国偷自产一区二区使用方法| 欧美大肚乱孕交hd孕妇| 亚洲精品一二三四区| 国产一区二区三区精品欧美日韩一区二区三区 | 一区二区高清在线| 激情六月婷婷久久| 欧美三区在线观看| 欧美国产一区在线| 乱一区二区av| 欧美日韩精品免费| 亚洲三级理论片| 丁香桃色午夜亚洲一区二区三区| 欧美日韩激情一区二区| 国产精品灌醉下药二区| 久久成人免费网站| 欧美日韩美少妇| 亚洲一二三四久久| 99精品欧美一区二区蜜桃免费| 欧美va天堂va视频va在线| 亚洲成av人片| 色菇凉天天综合网| 亚洲人成精品久久久久| 成人影视亚洲图片在线| 亚洲精品一区二区在线观看| 日本不卡1234视频| 欧美精选一区二区| 亚洲国产aⅴ天堂久久| 91小视频在线观看| 国产精品久久毛片| 成人小视频在线观看| 国产日产欧美一区| 精东粉嫩av免费一区二区三区| 欧美日韩大陆一区二区| 香蕉乱码成人久久天堂爱免费| 在线观看日韩精品| 夜夜嗨av一区二区三区四季av| 99久久精品国产麻豆演员表| 日本一区二区成人在线| 国产福利一区在线| 亚洲国产精品成人综合色在线婷婷| 国产一本一道久久香蕉| 久久久电影一区二区三区| 国产在线一区二区综合免费视频| 精品国产伦一区二区三区观看体验 | 麻豆精品在线观看| 欧美一区二区三区在线观看视频| 日韩成人av影视| 欧美一区二区三区色| 美女尤物国产一区| 久久久久久久免费视频了| 国产精品一二三| 国产精品久久久久久福利一牛影视 | 一区二区三区在线免费观看| 色哟哟国产精品免费观看| 樱桃视频在线观看一区| 欧美性猛交一区二区三区精品| 午夜视频在线观看一区二区| 欧美精品乱码久久久久久按摩| 天堂影院一区二区| 欧美mv日韩mv国产网站| 成人午夜在线免费| 一区二区三区不卡视频在线观看| 欧美午夜一区二区| 蜜臀av性久久久久蜜臀aⅴ | 日韩欧美久久一区| 国产一区二区三区精品欧美日韩一区二区三区| 久久久精品影视| 91丝袜美腿高跟国产极品老师 | 麻豆freexxxx性91精品| 久久色视频免费观看| 99精品久久99久久久久| 午夜精彩视频在线观看不卡| 亚洲精品一区二区三区四区高清| 成人手机电影网| 亚洲国产美女搞黄色| 2020日本不卡一区二区视频| aaa国产一区|