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

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

?? sysend.c

?? vxworks for Sam2410 bsp NoNet
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* sysEnd.c - System Enhanced network interface support library *//* Copyright 1997-2002 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------01k,16jul02,m_h  dc driver load string changes (78869)01j,25apr02,to   fix PCI to CPU offset address01i,03dec01,rec  fix compiler warnings01h,09jul01,jpd  fixed compilation warning.01g,09apr01,rec  fix 559 initialization problem01f,22jan01,jmb  add support for Intel InBusiness 10/100 PCI Network Adapter01e,20nov00,jpd  added Intel Ethernet driver (FEI) support; added use of		 DEC_USR_SF to do 100 Mbits/s; modified DEC driver support.01d,17feb00,jpd  minor comments corrections.01c,07feb00,jpd  tidied.01b,07dec99,pr   support for PCI/DEC21x4x01a,10nov99,ajb  created based on version 01a from pid7t.*//*DESCRIPTIONThis file contains the board-specific routines for Ethernet adapterinitialisation of Intel (formerly DEC) 21040, 21140 and 21143-basedadapters and Intel Pro 100+ based adapters.NOTEAt the time of writing, this module has only been tested with the followingEthernet cards:    21040 controller: Digital DE435.    21140 controller: D-Link DFE-500TX                      Kingston KNE-100TX    21143 controller: Intel (formerly DEC) EB143 evaluation card.                      Kingston KNE-100TX                      Longshine 8038 TXD    82559 controller: Intel PRO/100+ Management Adapter                      Intel InBusiness 10/100 PCI Network AdapterRefer to the BSP reference entry for any eventual limitations orproblems related to the BSP.SEE ALSO: ifLib,.I "Digital Semiconductor 21143 PCI/CardBus Fast Ethernet LAN Controller,".I "Digital Semiconductor 21143 10/100Base-TX Evaluation Board User's Guide,".I "Intel 10/100 MBit Ethernet Family Software technical Reference Manual."*/#include "vxWorks.h"#include "config.h"#include "cacheLib.h"#include "stdio.h"#ifdef INCLUDE_END#include "drv/end/dec21x40End.h"#include "drv/end/fei82557End.h"/* defines */#undef  SYS_FEI_DEBUG#define CSR_BASE_MSK	0x7f		/* Mask Base Address Register */#define	END_LD_STR_SIZE	80/* PCI memory base address register configuration mode */#define FORCE		0x00	/* overwrite membase address register */#define AUTO		0x01	/* read membase address register *//* * Need to use automatic configuration mode using the resource assigning in * pciAssignResources(). */#define PCI_REG_MOD	AUTO	/* define the register configuration mode */#define TYPE_ALLOC	1000/* * DEC cards in range 1 -> 1000 */#define DEC_START	1/* DEC 21X4X 10/100Base-TX Board type */#define	EB143		DEC_START + 1	/* DEC 21143 10/100Base-TX */#define	DC140		DEC_START + 2	/* DEC 21140 10/100Base-TX */#define	DC040		DEC_START + 3	/* DEC 21040 10/100Base-TX *//* Untested types are > 100 */#define LC82C168	DEC_START + 104	/* Lite-On PNIC */#define MX98713		DEC_START + 105	/* Macronix 98713 PMAC */#define MX98715		DEC_START + 106	/* Macronix 98715 PMAC */#define AX88140		DEC_START + 107	/* ASIX AX88140 */#define PNIC2		DEC_START + 108	/* Lite-On PNIC-II */#define COMET		DEC_START + 109	/* Comet family */#define COMPEX9881	DEC_START + 110	/* Compex 9881 */#define I21145		DEC_START + 111	/* Intel 21145 *//* * FEI cards in range 1001 -> 2000 */#define FEI_START	TYPE_ALLOC + 1#define PRO100B		FEI_START	/* Intel EtherExpress PRO-100B PCI */#define INBUSINESS	FEI_START + 1	/* Intel InBusiness 10/100 PCI */#define XX82559ER 	FEI_START + 100	/* Arbitrary card with 82559ER *//* * DEC driver user flags * * Use of the SF (Store and Forward) bit is necessary at the time of * writing on current boards to support 100 Mbits/s operation, though * it is not necessary for 10 Mbits/s. */#define DEC_USR_FLAGS_143 	(DEC_USR_21143 | DEC_USR_SF)#define DEC_USR_FLAGS_140 	(DEC_USR_BAR_RX	| \                                 DEC_USR_RML	| \                                 DEC_USR_CAL_08 | \				 DEC_USR_PBL_04 | \				 DEC_USR_21140	| \				 DEC_USR_SF)#define DEC_USR_FLAGS_040 	(DEC_USR_BAR_RX | \                                 DEC_USR_CAL_08 | \				 DEC_USR_PBL_04)/* These are untested */#define PNIC_USR_FLAGS	  	(DEC_USR_21143)#define PNIC2_USR_FLAGS	  	(DEC_USR_PNIC2)#define MX98713_USR_FLAGS	(0)#define MX98715_USR_FLAGS	(0)#define AX88140_USR_FLAGS	(0)#define COMET_USR_FLAGS		(0)#define COMET_USR_FLAGS		(0)#define COMET_USR_FLAGS		(0)#define COMPEX9881_USR_FLAGS	(0)#define I21145_USR_FLAGS	(0)/* END table information */#define DEC_BUFF_LOAN   1                       /* enable buffer loaning *//* DEC 21X4X PCI/CardBus specific definitions */#define DEC21X4X_PCI_VENDOR_ID		0x1011	/* PCI vendor ID */#define DEC21143_PCI_DEVICE_ID		0x0019	/* PCI device ID */#define DEC21140_PCI_DEVICE_ID		0x0009	/* PCI device ID */#define DEC21040_PCI_DEVICE_ID		0x0002	/* PCI device ID */#define PNIC_PCI_VENDOR_ID		0x11AD	/* PCI vendor ID */#define PNIC_PCI_DEVICE_ID		0x0002#define PNIC2_PCI_DEVICE_ID		0xc115#define MACRONIX_PCI_VENDOR_ID		0x10d9	/* PCI vendor ID */#define MX98713_PCI_DEVICE_ID		0x0512#define MX98715_PCI_DEVICE_ID		0x0531#define ASIX_PCI_VENDOR_ID		0x125B	/* PCI vendor ID */#define AX88140_PCI_DEVICE_ID		0x1400#define COMET_PCI_VENDOR_ID			0x1317	/* PCI vendor ID */#define COMET1_PCI_DEVICE_ID		0x0981#define COMET2_PCI_DEVICE_ID		0x0985#define COMET3_PCI_DEVICE_ID		0x1985#define COMPEX_PCI_VENDOR_ID		0x11F6	/* PCI vendor ID */#define COMPEX9881_PCI_DEVICE_ID	0x9881#define INTEL_PCI_VENDOR_ID		0x8086	/* PCI vendor ID */#define I21145_PCI_DEVICE_ID		0x0039#define DAVICOM_PCI_VENDOR_ID		0x1282	/* PCI vendor ID */#define DAVICOM9100_PCI_DEVICE_ID	0x9100#define DAVICOM9102_PCI_DEVICE_ID	0x9102#define ACCTON_PCI_VENDOR_ID		0x1113	/* PCI vendor ID */#define EN1217_PCI_DEVICE_ID		0x1217#define	BOARD_TYPE_NB			(NELEMENTS(boardResources))#ifdef INCLUDE_FEI82557END/* EEPROM control bits */#define EE_SK           0x01            /* shift clock */#define EE_CS           0x02            /* chip select */#define EE_DI           0x04            /* chip data in */#define EE_DO           0x08            /* chip data out *//* EEPROM opcode */#define EE_CMD_WRITE    0x05            /* WRITE opcode, 101 */#define EE_CMD_READ     0x06            /* READ  opcode, 110 */#define EE_CMD_ERASE    0x07            /* ERASE opcode, 111 *//* EEPROM misc. defines */#define EE_CMD_BITS     3               /* number of opcode bits */#define EE_ADDR_BITS    6               /* number of address bits */#define EE_DATA_BITS    16              /* number of data bits */#define EE_SIZE         0x40            /* 0x40 words */#define EE_CHECKSUM     0xbaba          /* checksum *//* PC compatibility macros */#define sysOutWord(addr,data)   (*((UINT16 *) (addr)) = ((UINT16) (data)))#define sysInWord(addr)         (*((UINT16 *) (addr)))#define sysOutLong(addr,data)   (*((UINT32 *) (addr)) = ((UINT32) (data)))#define sysInLong(addr)         (*((UINT32 *) (addr)))#define FEI_MEMSIZE0            0x00001000#define FEI_INIT_STATE_MASK     (-1)    /* unused */#define FEI_INIT_STATE          (-1)    /* unused */#define UNKNOWN                 (-1)/* 82557/9 PCI specific definitions *//* Intel PRO-100B PCI specific definitions */#ifndef PRO100B_PCI_VENDOR_ID#define PRO100B_PCI_VENDOR_ID   0x8086  /* PCI vendor ID */#define PRO100B_PCI_DEVICE_ID   0x1229  /* PCI device ID */#endif    /* PRO100B_PCI_VENDOR_ID *//* Intel InBusiness 10/100 PCI specific definitions */#ifndef INBUSINESS_PCI_VENDOR_ID#define INBUSINESS_PCI_VENDOR_ID   PRO100B_PCI_VENDOR_ID  /* PCI vendor ID */#define INBUSINESS_PCI_DEVICE_ID   0x1030                 /* PCI device ID */#endif    /* INBUSINESS_PCI_VENDOR_ID */#endif /* INCLUDE_FEI82557END *//* typedefs */typedef struct pciResource              /* PCI_RESOURCES */    {    UINT32      iobaseCsr;              /* Base Address Register 0 */    UINT32      membaseCsr;             /* Base Address Register 1 */    char        irq;                    /* Interrupt Request Level */    UINT32	irqvec;			/* Interrupt Request vector */    UINT32      configType;             /* type of configuration */    void *	buf;			/* any allocated buffer space */    UINT32	cpuToPciOffset;		/* Any offset from CPU to PCI address */    } PCI_RESOURCES;typedef struct boardResource		/* BOARD_RESOURCES */    {    UINT32	type;			/* type of the board */    UINT32	vendorId;		/* Vendor ID */    UINT32	deviceId;		/* Device ID */    UINT32	decUsrFlags;		/* DEC driver user flags */    } BOARD_RESOURCES;#ifdef INCLUDE_FEI82557ENDtypedef struct feiResource              /* FEI_RESOURCE */    {    UINT32      membaseCsr;             /* Base Address Register 0 */    UINT32      iobaseCsr;              /* Base Address Register 1 */    UINT32      membaseFlash;           /* Base Address Register 2 */    char        irq;                    /* Interrupt Request Level */    UINT32      configType;             /* type of configuration - unused */    UINT32      boardType;              /* type of LAN board this unit is */    UINT16      eeprom[0x40];           /* Ethernet Address of this unit */    INT32       timeout;                /* timeout for the self-test */    INT32	str[2];			/* storage for the self-test result */    volatile INT32 * pResults;		/* pointer to the self-test result */    UINT        memLength;              /* required memory size */    UINT        initialStateMask;       /* mask parameter to vmStateSet */    UINT        initialState;           /* state parameter to vmStateSet */    } FEI_RESOURCE;#endif/* locals *//* * This array defines the board-specific PCI resources, the base address * register configuration mode and the Ethernet adapter type. It's indexed * using the device number returned from pciFindDevice(). * * The mode is set as AUTO so this will be erased by the configuration read * from the card that is effectively set by pciAssignResources(). See * sysLanPciInit() for this. */LOCAL PCI_RESOURCES pciResources [INTEGRATOR_MAX_END_DEVS] =    {    {PCI_IO_ADR0, PCI_MEM_ADR0, PCI_INT_LVL0, PCI_INT_VEC0, PCI_REG_MOD, 0, 0},    {PCI_IO_ADR1, PCI_MEM_ADR1, PCI_INT_LVL1, PCI_INT_VEC1, PCI_REG_MOD, 0, 0},    {PCI_IO_ADR2, PCI_MEM_ADR2, PCI_INT_LVL2, PCI_INT_VEC2, PCI_REG_MOD, 0, 0}    };/* * This array defines board-specific vendor and device ids, flags to pass to * the drive load routine and the function used to select the media. */LOCAL BOARD_RESOURCES boardResources [] =    {#ifdef INCLUDE_DEC21X40END    {EB143, DEC21X4X_PCI_VENDOR_ID, DEC21143_PCI_DEVICE_ID, DEC_USR_FLAGS_143},    {DC140, DEC21X4X_PCI_VENDOR_ID, DEC21140_PCI_DEVICE_ID, DEC_USR_FLAGS_140},    {DC040, DEC21X4X_PCI_VENDOR_ID, DEC21040_PCI_DEVICE_ID, DEC_USR_FLAGS_040},#ifdef INCLUDE_DEC_UNTESTED    /* Untested cards */    {LC82C168, PNIC_PCI_VENDOR_ID, PNIC_PCI_DEVICE_ID, PNIC_USR_FLAGS},    {PNIC2, PNIC_PCI_VENDOR_ID, PNIC2_PCI_DEVICE_ID, PNIC2_USR_FLAGS},    {MX98713, MACRONIX_PCI_VENDOR_ID, MX98713_PCI_DEVICE_ID, MX98713_USR_FLAGS},    {MX98715, MACRONIX_PCI_VENDOR_ID, MX98715_PCI_DEVICE_ID, MX98715_USR_FLAGS},    {AX88140, ASIX_PCI_VENDOR_ID, AX88140_PCI_DEVICE_ID, AX88140_USR_FLAGS},    {COMET, COMET_PCI_VENDOR_ID, COMET1_PCI_DEVICE_ID, COMET_USR_FLAGS},    {COMET, COMET_PCI_VENDOR_ID, COMET2_PCI_DEVICE_ID, COMET_USR_FLAGS},    {COMET, COMET_PCI_VENDOR_ID, COMET3_PCI_DEVICE_ID, COMET_USR_FLAGS},    {COMPEX9881, COMPEX_PCI_VENDOR_ID, COMPEX9881_PCI_DEVICE_ID,\     COMPEX9881_USR_FLAGS},    {I21145, INTEL_PCI_VENDOR_ID, I21145_PCI_DEVICE_ID, I21145_USR_FLAGS},    {DC140, DAVICOM_PCI_VENDOR_ID, DAVICOM9100_PCI_DEVICE_ID,\     DEC_USR_FLAGS_140},    {DC140, DAVICOM_PCI_VENDOR_ID, DAVICOM9102_PCI_DEVICE_ID,\     DEC_USR_FLAGS_140},    {MX98715, ACCTON_PCI_VENDOR_ID, EN1217_PCI_DEVICE_ID, MX98715_USR_FLAGS},#endif /* INCLUDE_DEC_UNTESTED */#endif /* INCLUDE_DEC21X40END */#ifdef INCLUDE_FEI82557END    {PRO100B, PRO100B_PCI_VENDOR_ID, PRO100B_PCI_DEVICE_ID, 0},    {INBUSINESS, INBUSINESS_PCI_VENDOR_ID, INBUSINESS_PCI_DEVICE_ID, 0},#ifdef INCLUDE_FEI_UNTESTED    {XX82559ER, PRO100B_PCI_VENDOR_ID, I82559ER_PCI_DEVICE_ID, 0},#endif#endif /* INCLUDE_FEI82557END */    };/* END load strings */LOCAL char	endLoadStr[INTEGRATOR_MAX_END_DEVS][END_LD_STR_SIZE];/* Index of devices */LOCAL int       currentEndDevice        = 0;#ifdef INTEGRATOR_ENET_FIXED_BUF_ADRSLOCAL UINT32 sysEnetBufAdrs[] =    {    INTEGRATOR_ENET_PRIMARY_BUF_ADRS,    INTEGRATOR_ENET_SECONDARY_BUF_ADRS,    INTEGRATOR_ENET_TERTIARY_BUF_ADRS    };#endif /* INTEGRATOR_ENET_FIXED_BUF_ADRS */#ifdef INCLUDE_FEI82557ENDLOCAL FEI_RESOURCE feiResources [INTEGRATOR_MAX_END_DEVS] =    {    {UNKNOWN, UNKNOWN, UNKNOWN, UNKNOWN,     UNKNOWN, UNKNOWN, {UNKNOWN}, UNKNOWN,     {UNKNOWN}, NULL, FEI_MEMSIZE0, FEI_INIT_STATE_MASK, FEI_INIT_STATE},    {UNKNOWN, UNKNOWN, UNKNOWN, UNKNOWN,     UNKNOWN, UNKNOWN, {UNKNOWN}, UNKNOWN,     {UNKNOWN}, NULL, FEI_MEMSIZE0, FEI_INIT_STATE_MASK, FEI_INIT_STATE},    {UNKNOWN, UNKNOWN, UNKNOWN, UNKNOWN,     UNKNOWN, UNKNOWN, {UNKNOWN}, UNKNOWN,     {UNKNOWN}, NULL, FEI_MEMSIZE0, FEI_INIT_STATE_MASK, FEI_INIT_STATE}    };LOCAL const char * phys[] =    {    "None", "i82553-A/B", "i82553-C", "i82503",    "DP83840", "80c240", "80c24", "i82555",    "unknown-8", "unknown-9", "DP83840A", "unknown-11",    "unknown-12", "unknown-13", "unknown-14", "unknown-15"    };enum phy_chips    {    NonSuchPhy=0, I82553AB, I82553C, I82503,    DP83840, S80C240, S80C24, I82555, DP83840A=10, UndefinedPhy    };LOCAL const char *connectors[] = {" RJ45", " BNC", " AUI", " MII"};#endif /* INCLUDE_FEI82557END *//* imports *//* End device table - should be INTEGRATOR_MAX_END_DEVS+1 entries */IMPORT END_TBL_ENTRY	endDevTbl[];#ifdef INCLUDE_DEC21X40END/* DEC specific imports */IMPORT END_OBJ * 	dec21x40EndLoad (char *, void *);IMPORT int		dec21x40Loops;#endif#ifdef INCLUDE_FEI82557END/* FEI specific imports */IMPORT FUNCPTR  feiEndIntConnect;IMPORT FUNCPTR  feiEndIntDisconnect;IMPORT END_OBJ* fei82557EndLoad (char *, void *);IMPORT void	sysFlashBoardDelay (void);/* forward declarations */LOCAL UINT16    sys557eepromRead (int unit, int location);LOCAL UINT32    sys557mdioRead   (int unit, int phyId, int location);LOCAL UINT32    sys557mdioWrite  (int unit, int phyId, int location, int value);LOCAL int       sys557IntEnable  (int unit);LOCAL int       sys557IntDisable (int unit);LOCAL int       sys557IntAck     (int unit);#endif /* INCLUDE_FEI82557END *//********************************************************************************* sysLanPciInit - prepare LAN adapter for initialization** This routine find out the PCI device, and map its memory and I/O address.* It will understand both DEC21x4x and FEI type cards.** RETURNS: N/A*/STATUS sysLanPciInit (void)    {    PCI_RESOURCES *	pRsrc;		/* dec resource */    UINT32		pciBus;		/* PCI Bus number */    UINT32		pciDevice;	/* PCI Device number */    UINT32		pciFunc;	/* PCI Function number */    unsigned int	ix;		/* counter */    int			iy;		/* counter */    int			unit = 0;	/* unit numbers */    UINT32		boardType = NONE; /* board type detected */#ifdef INCLUDE_FEI82557END    FEI_RESOURCE *      pFeiRes;        /* FEI specific info */#endif#ifdef INCLUDE_DEC21X40END    /*     * Set the loops to be less per nano-second since this board is slower,     * than say, EBSA-285.     */    dec21x40Loops = 1;#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩精品一二三区| 午夜精品久久久久| 一区二区三区欧美激情| 狠狠v欧美v日韩v亚洲ⅴ| 成人av动漫网站| 精品国产麻豆免费人成网站| 亚洲女爱视频在线| 国产伦理精品不卡| 欧美电影精品一区二区| 亚洲欧美区自拍先锋| 国产福利一区二区三区在线视频| 欧美日韩精品专区| 一区二区三区在线视频免费 | 亚洲自拍另类综合| 欧美色中文字幕| 国产精品视频yy9299一区| 偷拍日韩校园综合在线| 91影视在线播放| 国产精品久久久久久久午夜片| 日韩经典一区二区| 欧美日韩二区三区| 亚洲一区二区在线播放相泽 | 国产日本欧美一区二区| 韩国精品免费视频| 欧美一级黄色录像| 日本人妖一区二区| 91精品国产高清一区二区三区| 亚洲最新在线观看| 91网站最新网址| ㊣最新国产の精品bt伙计久久| 国产91综合网| 中文av字幕一区| 国产精品911| 国产亚洲欧美一区在线观看| 美女久久久精品| 日韩欧美卡一卡二| 国产真实乱偷精品视频免| 欧美电视剧免费观看| 精品中文字幕一区二区小辣椒| 精品入口麻豆88视频| 久久精品国产**网站演员| 精品久久国产字幕高潮| 国内欧美视频一区二区| 久久久噜噜噜久久人人看| 高清国产一区二区| 欧美激情在线观看视频免费| thepron国产精品| 亚洲黄色小说网站| 91精品国产综合久久久蜜臀粉嫩 | 99re热视频这里只精品| 日韩伦理电影网| 欧美熟乱第一页| 日韩1区2区3区| 久久久国产精品麻豆| av一二三不卡影片| 亚洲综合色网站| 日韩欧美成人激情| 国产91精品免费| 一区2区3区在线看| 日韩欧美国产一区二区在线播放 | 欧美色综合久久| 裸体在线国模精品偷拍| 欧美激情一区在线观看| 欧美午夜在线一二页| 国模冰冰炮一区二区| 一区二区三区在线视频免费| 日韩午夜激情av| 成人av小说网| 日韩精品色哟哟| 国产精品夫妻自拍| 欧美一区二区视频免费观看| 国产成人精品www牛牛影视| 亚洲制服丝袜在线| 久久精品综合网| 欧美日韩国产系列| 国产一区不卡精品| 亚洲一二三级电影| 欧美激情艳妇裸体舞| 欧美日韩精品系列| 国产高清精品久久久久| 视频一区视频二区中文字幕| 国产精品美女www爽爽爽| 欧美精三区欧美精三区| 成人精品鲁一区一区二区| 日韩精品视频网| 亚洲女人的天堂| 国产精品三级视频| 日韩午夜在线观看视频| 欧美日韩久久久久久| 91丨porny丨首页| 国产永久精品大片wwwapp| 亚洲国产视频一区二区| 国产精品美女久久久久高潮| www日韩大片| 6080午夜不卡| 91丨porny丨最新| 成人h动漫精品一区二| 久久99久久久欧美国产| 亚洲欧美国产77777| 日本一区二区成人在线| 精品国产123| 欧美一级夜夜爽| 欧美日韩美少妇| 欧美日韩国产片| 在线精品视频一区二区| 96av麻豆蜜桃一区二区| 国产成人精品1024| 国产激情91久久精品导航| 国产一区二区三区免费看| 日本欧美肥老太交大片| 日韩激情av在线| 亚洲r级在线视频| 午夜一区二区三区视频| 亚洲精品成人悠悠色影视| 日韩码欧中文字| 亚洲激情自拍视频| 亚洲国产成人av| 亚洲国产另类av| 日韩综合小视频| 奇米影视7777精品一区二区| 免费成人在线视频观看| 久久精品国产精品亚洲红杏| 免费的成人av| 国产一区二区精品久久| 成人午夜伦理影院| 91网页版在线| 欧美日韩免费一区二区三区| 欧美日韩一卡二卡| 欧美一级理论片| 久久香蕉国产线看观看99| 久久精品一区蜜桃臀影院| 精品久久五月天| 欧美国产乱子伦| 亚洲精品日韩一| 日本女人一区二区三区| 久久91精品久久久久久秒播| 国产成人免费视| 色哟哟一区二区在线观看 | 色琪琪一区二区三区亚洲区| 91网上在线视频| 91精品一区二区三区久久久久久| 精品毛片乱码1区2区3区| 欧美激情资源网| 亚洲最色的网站| 久久精品免费观看| 成人福利在线看| 欧美福利视频一区| 久久久久久综合| 亚洲午夜久久久久久久久电影网 | 日韩欧美自拍偷拍| 欧美精彩视频一区二区三区| 一区二区三区四区中文字幕| 老司机精品视频在线| 97精品电影院| 精品国产乱码久久久久久闺蜜| 自拍偷拍欧美激情| 精品一区二区三区免费观看| 色综合久久久久综合| 欧美精品一区二区三区四区| 亚洲欧美日韩人成在线播放| 狠狠色丁香久久婷婷综合丁香| 在线精品视频免费播放| 国产欧美日本一区二区三区| 亚洲成人动漫在线观看| 国产成人免费高清| 91精品国产一区二区三区香蕉 | 精品免费国产一区二区三区四区| 亚洲精品乱码久久久久久久久| 国精产品一区一区三区mba视频| 色婷婷av久久久久久久| 国产精品三级电影| 国内成人自拍视频| 欧美精品久久天天躁| 日韩视频在线一区二区| 国产无遮挡一区二区三区毛片日本| 亚洲成人动漫av| 成人激情免费视频| 久久精品一区二区三区不卡 | 欧美一区二区三区电影| 亚洲图片激情小说| 麻豆91精品91久久久的内涵| 91蝌蚪porny| 中文乱码免费一区二区| 喷水一区二区三区| 色av成人天堂桃色av| 国产精品久久久久久久岛一牛影视 | 国产成人精品三级麻豆| 欧美日韩久久不卡| 亚洲人吸女人奶水| 91蝌蚪国产九色| 国产亚洲短视频| 免费在线观看视频一区| 91麻豆精品久久久久蜜臀| 成人免费视频在线观看| 韩国av一区二区三区四区| 26uuu色噜噜精品一区二区| 午夜精品久久久久久久99樱桃| www.欧美亚洲| 久久综合久久综合久久| 国产伦精品一区二区三区视频青涩|