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

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

?? usrconfig_st.c

?? VxWorks 5.4嵌入式操作系統, Tornado II開發平臺BSP包的移植
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* usrConfig.c - user-defined system configuration library */

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

/*
modification history
--------------------
18q,19jan98,hdn  changed a condition macro to include tffsDrv().
18p,23sep97,yp   added support for TFFS.
18o,26feb97,dat  added INCLUDE_USER_APPL and USER_APPL_INIT, spr 8071.
18n,13dec96,elp	 changed syncLibInit() into symSyncLibInit().
18m,18nov96,dds  SPR 2529: return status for sysScsiInit is now checked.
18l,06nov96,ms   removed 17n hack to usrClock.
18k,01nov96,hdn  added support for PCMCIA.
18j,21oct96,hdn  changed paramerters for new LPT driver.
18i,04oct96,elp  added INCLUDE_SYM_TBL_SYNC (SPR# 6775).
18h,11jul96,tam  changed copyright year from 1995 to 1996.
18l,19jul96,hdn  added support for ATA driver.
18k,25jun96,jmb  Eliminated alternative WDB macro names (SPR #5707).
18j,25jun96,dbt  Initialized _func_selWakeupListInit before tyLib (SPR #3314).
18i,21jun96,jmb  update copyright. SPR #6364
18h,21jun96,jmb  long modhist -- deleted entries prior to 1994.  SPR #6528
18g,12mar96,tam  removed all #if (CPU == PPC403).
18p,06jun96,ism  bumped copyright to 1996.
18o,26jan96,ism  cleaned up vxsim/solaris version
18f,02oct95,kvk  added sysHwInit2() for PPC603.
18e,27sep95,tpr  removed #if (CPU_FAMILY != PPC) staff.
18n,07nov95,srh  fixed C++ support comments.
18m,29oct95,dat  fixed warnings about printf arguments
18l,11oct95,jdi  doc: changed .pG to .tG.
18k,10oct95,dat	 new BSP revision id. Added WDB Banner printing
18j,15jun95,ms	 updated for new serial drivers.
18i,09jun95,ms	 cleaned up console initialization
18h,30may95,p_m  added initialization of formatted I/O library.
		 replaced spyStop() by spyLibInit().
18g,22may95,p_m  no longer initialize object format specific libraries if
		 loader is not included.
18f,22may95,myz  modified new serial device initialization for x86 support
18e,22may95,ms   added some WDB agent support
18e,30oct95,ism  updated for SIMSPARCSOLARIS
18d,28mar95,kkk  added scalability support, changed edata and end to arrays
		 (SPR #3917), changed baud rate to be a macro in configAll.h
18g,25may95,yao  changed to bzero bss segment for PPC.
18f,04apr95,caf  added PPC cache support.
18e,03mar95,yao  added shsHwInit2 () for PPC403.
18d,24feb95,caf  added PPC support.
18c,20nov94,kdl  added hashLibInit() when using dosFs.
18b,09nov94,jds  additions for scsi backward compatability ; scsi[12]IfInit()
18a,04nov94,kdl	 merge cleanup.
17l,02aug94,tpr  added cacheEnable (BRANCH_CACHE) for the MC68060.
17m,15oct94,hdn  added LPT driver.
17o,20jul94,ms   changed INCLUDE_AOUT_HPPA to INCLUDE_SOM_COFF
17n,02may94,ms   added VxSim HP hack to usrClock().
17q,15mar94,smb  renamed tEvtTask parameters.
17p,15feb94,smb  defined WV_MODE, EVTBUFFER_ADDRESS for wvInstInit().
17o,12jan94,kdl  modified posix initialization; added queued signal init.
*/

/*
DESCRIPTION
This library is the WRS-supplied configuration module for VxWorks.  It
contains the root task, the primary system initialization routine, the
network initialization routine, and the clock interrupt routine.

The include file config.h includes a number of system-dependent parameters used
in this file.

In an effort to simplify the presentation of the configuration of vxWorks,
this file has been split into smaller files.  These additional configuration
source files are located in ../../src/config/usr[xxx].c and are #included into
this file below.  This file contains the bulk of the code a customer is
likely to customize.

The module usrDepend.c contains checks that guard against unsupported
configurations suchas INCLUDE_NFS without INCLUDE_RPC.  The module
usrKernel.c contains the core initialization of the kernel which is rarely
customized, but provided for information.  The module usrNetwork.c now
contains all network initialization code.  Finally, the module usrExtra.c
contains the conditional inclusion of the optional packages selected in
configAll.h.

The source code necessary for the configuration selected is entirely
included in this file during compilation as part of a standard build in
the board support package.  No other make is necessary.

INCLUDE FILES:
config.h

SEE ALSO:
.tG "Getting Started, Cross-Development"
*/

#include "vxWorks.h"			/* always first */
#include "config.h"			/* board support configuration header */
#include "usrConfig.h"			/* general configuration header */
#include "usrDepend.c"			/* include dependency rules */
#include "usrKernel.c"			/* kernel configuration */
#include "usrExtra.c"			/* conditionally included packages */

IMPORT	FrameRlyInit();
/* global variables */

int		consoleFd;		/* fd of initial console device */
char		consoleName[20];	/* console device name, eg. "/tyCo/0" */
SYMTAB_ID	statSymTbl;		/* system error status symbol table id*/
SYMTAB_ID	standAloneSymTbl;	/* STANDALONE version symbol table id */
SYMTAB_ID	sysSymTbl;		/* system symbol table id */
BOOT_PARAMS	sysBootParams;		/* parameters from boot line */
int		sysStartType;		/* type of boot (WARM, COLD, etc) */

char *          bufferAddress;          /* windview: address of event buffer */

/*******************************************************************************
*
* usrInit - user-defined system initialization routine
*
* This is the first C code executed after the system boots.  This routine is
* called by the assembly language start-up routine sysInit() which is in the
* sysALib module of the target-specific directory.  It is called with
* interrupts locked out.  The kernel is not multitasking at this point.
*
* This routine starts by clearing BSS; thus all variables are initialized to 0,
* as per the C specification.  It then initializes the hardware by calling
* sysHwInit(), sets up the interrupt/exception vectors, and starts kernel
* multitasking with usrRoot() as the root task.
*
* RETURNS: N/A
*
* SEE ALSO: kernelLib
*
* ARGSUSED0
*/

void usrInit 
    (
    int startType
    )
    {
#if	(CPU_FAMILY == SPARC)
    excWindowInit ();				/* SPARC window management */
#endif

    /* configure data and instruction cache if available and leave disabled */

#ifdef  INCLUDE_CACHE_SUPPORT
    cacheLibInit (USER_I_CACHE_MODE, USER_D_CACHE_MODE);
#endif  /* INCLUDE_CACHE_SUPPORT */

#if	CPU_FAMILY!=SIMSPARCSUNOS && CPU_FAMILY!=SIMHPPA && CPU_FAMILY!=SIMSPARCSOLARIS
    /* don't assume bss variables are zero before this call */

    bzero (edata, end - edata);		/* zero out bss variables */
#endif	/* CPU_FAMILY!=SIMSPARCSUNOS && CPU_FAMILY!=SIMHPPA && CPU_FAMILY!=SIMSPARCSOLARIS */

    sysStartType = startType;			/* save type of system start */

    intVecBaseSet ((FUNCPTR *) VEC_BASE_ADRS);	/* set vector base table */

#if (CPU_FAMILY == AM29XXX)
    excSpillFillInit ();			/* am29k stack cache managemt */
#endif

#ifdef  INCLUDE_EXC_HANDLING
    excVecInit ();				/* install exception vectors */
    excShowInit ();				/* install sysExcMsg handlers */
#endif  /* INCLUDE_EXC_HANDLING */

    sysHwInit ();				/* initialize system hardware */

    usrKernelInit ();				/* configure the Wind kernel */

#ifdef  INCLUDE_CACHE_SUPPORT
#ifdef 	USER_I_CACHE_ENABLE
    cacheEnable (INSTRUCTION_CACHE);		/* enable instruction cache */
#endif	/* USER_I_CACHE_ENABLE */

#ifdef	USER_D_CACHE_ENABLE
    cacheEnable (DATA_CACHE);			/* enable data cache */
#endif 	/* USER_D_CACHE_ENABLE */

#if (CPU == MC68060)
#ifdef 	USER_B_CACHE_ENABLE
    cacheEnable (BRANCH_CACHE);			/* enable branch cache */
#endif	/* USER_B_CACHE_ENABLE */
#endif	/* (CPU == MC68060) */
#endif  /* INCLUDE_CACHE_SUPPORT */

    /* start the kernel specifying usrRoot as the root task */
    kernelInit ((FUNCPTR) usrRoot, ROOT_STACK_SIZE,
#ifdef  INCLUDE_WDB
                (char *) FREE_RAM_ADRS + WDB_POOL_SIZE,
#else
                (char *) FREE_RAM_ADRS,
#endif
		sysMemTop (), ISR_STACK_SIZE, INT_LOCK_LEVEL);
    }

/*******************************************************************************
*
* usrRoot - the root task
*
* This is the first task to run under the multitasking kernel.  It performs
* all final initialization and then starts other tasks.
*
* It initializes the I/O system, installs drivers, creates devices, and sets
* up the network, etc., as necessary for a particular configuration.  It
* may also create and load the system symbol table, if one is to be included.
* It may then load and spawn additional tasks as needed.  In the default
* configuration, it simply initializes the VxWorks shell.
*
* RETURNS: N/A
*/

void usrRoot
    (
    char *	pMemPoolStart,		/* start of system memory partition */
    unsigned	memPoolSize		/* initial size of mem pool */
    )
    {
    char tyName [20];
    int  ix;

    /* Initialize the memory pool before initializing any other package.
     * The memory associated with the root task will be reclaimed at the
     * completion of its activities.
     */

#ifdef INCLUDE_MEM_MGR_FULL
    memInit (pMemPoolStart, memPoolSize);	/* initialize memory pool */
#else
    memPartLibInit (pMemPoolStart, memPoolSize);/* initialize memory pool */
#endif /* INCLUDE_MEM_MGR_FULL */

#ifdef	INCLUDE_SHOW_ROUTINES 
    memShowInit ();				/* initialize memShow routine */
#endif	/* INCLUDE_SHOW_ROUTINES */

#if	defined(INCLUDE_MMU_BASIC) || defined(INCLUDE_MMU_FULL)
    usrMmuInit ();				/* initialize the mmu */
#endif	/* defined(INCLUDE_MMU_BASIC) || defined(INCLUDE_MMU_FULL) */

    /* set up system timer */

    sysClkConnect ((FUNCPTR) usrClock, 0);	/* connect clock ISR */
    sysClkRateSet (60);				/* set system clock rate */
    sysClkEnable ();				/* start it */

    /* 
     * select sould be initialized after NFS and RPC for proper delete
     * hook order but _func_selWakeupListInit should be set 
     * before tyLib module (SPR #3314).
     */

#ifdef  INCLUDE_SELECT
    _func_selWakeupListInit     = (FUNCPTR) selWakeupListInit;
#endif	/* INCLUDE_SELECT */

    /* initialize I/O system */

#ifdef  INCLUDE_IO_SYSTEM
    iosInit (NUM_DRIVERS, NUM_FILES, "/null");

    consoleFd = NONE;                           /* assume no console device */

#ifdef  INCLUDE_TYCODRV_5_2
#ifdef  INCLUDE_TTY_DEV
    if (NUM_TTY > 0)
	{
	tyCoDrv ();				/* install console driver */

	for (ix = 0; ix < NUM_TTY; ix++)	/* create serial devices */
	    {
	    sprintf (tyName, "%s%d", "/tyCo/", ix);

	    (void) tyCoDevCreate (tyName, ix, 512, 512);

	    if (ix == CONSOLE_TTY)
		strcpy (consoleName, tyName);	/* store console name */
	    }

	consoleFd = open (consoleName, O_RDWR, 0);

	/* set baud rate */

	(void) ioctl (consoleFd, FIOBAUDRATE, CONSOLE_BAUD_RATE);
	(void) ioctl (consoleFd, FIOSETOPTIONS, OPT_TERMINAL);
	}
#endif	/* INCLUDE_TTY_DEV */

#else   /* !INCLUDE_TYCODRV_5_2 */
#ifdef  INCLUDE_TTY_DEV
    if (NUM_TTY > 0)
	{
	ttyDrv();				/* install console driver */

	for (ix = 0; ix < NUM_TTY; ix++)	/* create serial devices */
	    {
#if     (defined(INCLUDE_WDB) && (WDB_COMM_TYPE == WDB_COMM_SERIAL))
	    if (ix == WDB_TTY_CHANNEL)		/* don't use WDBs channel */
		continue;
#endif
	    sprintf (tyName, "%s%d", "/tyCo/", ix);
	    (void) ttyDevCreate (tyName, sysSerialChanGet(ix), 512, 512);

	    if (ix == CONSOLE_TTY)		/* init the tty console */
		{
		strcpy (consoleName, tyName);
		consoleFd = open (consoleName, O_RDWR, 0);
		(void) ioctl (consoleFd, FIOBAUDRATE, CONSOLE_BAUD_RATE);
		(void) ioctl (consoleFd, FIOSETOPTIONS, OPT_TERMINAL);
		}
	    }
	}
#endif  /* INCLUDE_TTY_DEV */

#ifdef INCLUDE_PC_CONSOLE
    pcConDrv ();
    for (ix = 0; ix < N_VIRTUAL_CONSOLES; ix++)
	{
	sprintf (tyName, "%s%d", "/pcConsole/", ix);
	(void) pcConDevCreate (tyName,ix, 512, 512);
	if (ix == PC_CONSOLE)		/* init the console device */
	    {
	    strcpy (consoleName, tyName);
	    consoleFd = open (consoleName, O_RDWR, 0);
	    (void) ioctl (consoleFd, FIOBAUDRATE, CONSOLE_BAUD_RATE);
	    (void) ioctl (consoleFd, FIOSETOPTIONS, OPT_TERMINAL);
	    }
	}
#endif	/* INCLUDE_PC_CONSOLE */

#endif  /* !INCLUDE_TYCODRV_5_2 */

    ioGlobalStdSet (STD_IN,  consoleFd);
    ioGlobalStdSet (STD_OUT, consoleFd);
    ioGlobalStdSet (STD_ERR, consoleFd);
#endif  /* INCLUDE_IO_SYSTEM */

    /* initialize symbol table facilities */

#ifdef	INCLUDE_SYM_TBL
    hashLibInit ();			/* initialize hash table package */
    symLibInit ();			/* initialize symbol table package */
#ifdef 	INCLUDE_SHOW_ROUTINES 
    symShowInit ();			/* initialize symbol table show */
#endif	/* INCLUDE_SHOW_ROUTINES */
#endif	/* INCLUDE_SYM_TBL */


    /* initialize exception handling */

#if     defined(INCLUDE_EXC_HANDLING) && defined(INCLUDE_EXC_TASK)
    excInit ();				/* initialize exception handling */
#endif  /* defined(INCLUDE_EXC_HANDLING) && defined(INCLUDE_EXC_TASK) */

#ifdef	INCLUDE_LOGGING
    logInit (consoleFd, MAX_LOG_MSGS);	/* initialize logging */
#endif	/* INCLUDE_LOGGING */

#ifdef	INCLUDE_SIGNALS
    sigInit ();				/* initialize signals */
#endif	/* INCLUDE_SIGNALS */

    /* initialize debugging */

#ifdef	INCLUDE_DEBUG
    dbgInit ();				/* initialize debugging */
#endif	/* INCLUDE_DEBUG */


    /* initialize pipe driver */

#ifdef	INCLUDE_PIPES
    pipeDrv ();				/* install pipe driver */
#endif	/* INCLUDE_PIPES */


    /* initialize standard I/O package */

#ifdef	INCLUDE_STDIO
    stdioInit ();			/* initialize standard I/O library */
#ifdef  INCLUDE_SHOW_ROUTINES
    stdioShowInit ();
#endif  /* INCLUDE_SHOW_ROUTINES */
#endif	/* INCLUDE_STDIO */

    /* initialize POSIX queued signals */

#if defined(INCLUDE_POSIX_SIGNALS) && defined(INCLUDE_SIGNALS)
    sigqueueInit (NUM_SIGNAL_QUEUES); /* initialize queued signals */
#endif

    /* initialize POSIX semaphores */

#ifdef  INCLUDE_POSIX_SEM
    semPxLibInit ();			
#ifdef INCLUDE_SHOW_ROUTINES
    semPxShowInit ();
#endif  /* INCLUDE_SHOW_POUTINES */
#endif  /* INCLUDE_POSIX_SEM */

    /* initialize POSIX message queues */

#ifdef INCLUDE_POSIX_MQ
    mqPxLibInit (MQ_HASH_SIZE);		
#ifdef INCLUDE_SHOW_ROUTINES
    mqPxShowInit ();
#endif  /* INCLUDE_SHOW_ROUTINES */
#endif  /* INCLUDE_POSIX_MQ */

    /* initialize POSIX async I/O support */

#ifdef INCLUDE_POSIX_AIO
    aioPxLibInit (MAX_LIO_CALLS);
#ifdef INCLUDE_POSIX_AIO_SYSDRV
    aioSysInit (MAX_AIO_SYS_TASKS, AIO_TASK_PRIORITY, AIO_TASK_STACK_SIZE);
#endif  /* INCLUDE_POSIX_AIO_SYSDRV */
#endif  /* INCLUDE_POSIX_AIO */

    /* initialize filesystems and disk drivers */

#ifdef	INCLUDE_DOSFS
    hashLibInit ();			/* initialize hash table package */
    dosFsInit (NUM_DOSFS_FILES); 	/* init dosFs filesystem */
#endif	/* INCLUDE_DOSFS */

#ifdef	INCLUDE_RAWFS
    rawFsInit (NUM_RAWFS_FILES); 	/* init rawFs filesystem */
#endif	/* INCLUDE_RAWFS */

#ifdef	INCLUDE_RT11FS
    rt11FsInit (NUM_RT11FS_FILES); 	/* init rt11Fs filesystem */
#endif	/* INCLUDE_RT11FS */

#ifdef	INCLUDE_RAMDRV
    ramDrv ();				/* initialize ram disk driver */
#endif	/* INCLUDE_RAMDRV */

#ifdef	INCLUDE_SCSI

    /*
     * initialize either the SCSI1 or SCSI2 interface; initialize SCSI2 when 
     * the SCSI2 interface is available.
     */

#ifndef INCLUDE_SCSI2
    scsi1IfInit ();
#else
    scsi2IfInit ();
#endif

    /* initialize SCSI controller */
    if (sysScsiInit () == OK)
	{
	usrScsiConfig ();			/* configure SCSI peripherals */
        }
    else
        {
        printf ("sysScsiInit() Failed, SCSI system not initialized\n");

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
豆国产96在线|亚洲| 亚洲一级在线观看| 欧美人与性动xxxx| 成人av一区二区三区| 国产精品香蕉一区二区三区| 奇米色一区二区| 日本sm残虐另类| 免费观看一级特黄欧美大片| 全部av―极品视觉盛宴亚洲| 日本少妇一区二区| 黄网站免费久久| 国产精品一区不卡| 波多野结衣中文一区| av成人免费在线| 欧美在线观看18| 欧美唯美清纯偷拍| 日韩免费在线观看| 国产夜色精品一区二区av| 国产视频不卡一区| 亚洲三级视频在线观看| 一区二区三区免费在线观看| 日韩和欧美一区二区三区| 日本vs亚洲vs韩国一区三区 | 国产欧美日韩久久| 中文字幕精品—区二区四季| 中文字幕亚洲一区二区av在线 | 91国产精品成人| 欧美日韩国产首页在线观看| 日韩欧美一级特黄在线播放| 国产日韩欧美不卡在线| 一区二区成人在线视频| 蜜臀av一区二区在线观看| 国产高清久久久久| 色综合久久九月婷婷色综合| 欧美卡1卡2卡| 国产精品视频麻豆| 日日夜夜免费精品| www.亚洲人| 91精品国产乱| 国产精品麻豆一区二区| 日本欧美一区二区| 成a人片亚洲日本久久| 欧美精品丝袜久久久中文字幕| 久久夜色精品国产欧美乱极品| 亚洲少妇30p| 韩国成人精品a∨在线观看| 色婷婷av一区二区三区gif| 精品精品国产高清a毛片牛牛| 亚洲色图欧美激情| 国产精品69毛片高清亚洲| 91激情在线视频| 国产欧美日韩久久| 黑人巨大精品欧美一区| 欧美日韩亚洲综合在线 欧美亚洲特黄一级| 久久亚洲综合色一区二区三区| 亚洲第一成人在线| 99久久综合精品| 日本一区二区视频在线观看| 麻豆一区二区在线| 欧美日韩久久不卡| 亚洲欧美国产高清| 99精品偷自拍| 久久精品一区蜜桃臀影院| 免费人成在线不卡| 在线成人小视频| 亚洲超碰精品一区二区| 91激情五月电影| 亚洲黄色性网站| 91成人在线精品| 一区二区三区资源| 99精品欧美一区| 亚洲三级免费电影| 99精品在线观看视频| 1024成人网| 一本大道久久a久久精二百| 中日韩av电影| 成人动漫精品一区二区| 中文字幕亚洲一区二区va在线| 99久久国产综合精品女不卡| 亚洲婷婷综合色高清在线| 成人免费视频视频在线观看免费| 国产肉丝袜一区二区| 成人午夜激情影院| 最新日韩av在线| 色综合 综合色| 亚洲一区二区美女| 在线不卡的av| 精品无人区卡一卡二卡三乱码免费卡| 日韩欧美国产小视频| 国产美女精品在线| 亚洲欧洲在线观看av| 一本到不卡免费一区二区| 亚洲成av人片一区二区梦乃| 欧美一级生活片| 国产成人精品影视| 一区二区三区精品在线| 777亚洲妇女| 国产精品996| 一区二区三区小说| 日韩三级伦理片妻子的秘密按摩| 国产乱人伦精品一区二区在线观看 | 精品国产91乱码一区二区三区 | 久久综合九色综合97_久久久| 国产成人综合在线播放| 亚洲激情图片一区| 欧美日韩成人在线| 国产高清不卡二三区| 亚洲最新视频在线观看| 精品国产欧美一区二区| 99精品1区2区| 久久99国产乱子伦精品免费| 亚洲欧洲精品一区二区三区不卡| 欧美日韩亚洲综合一区二区三区| 国产精品一区二区在线看| 一区二区三区免费看视频| 久久婷婷久久一区二区三区| 色综合天天综合色综合av| 美国十次了思思久久精品导航| 中文字幕亚洲在| 亚洲精品一区二区三区四区高清| 在线视频一区二区免费| 国产成人亚洲综合a∨婷婷图片| 亚洲国产精品精华液网站| 中文天堂在线一区| 日韩欧美国产电影| 欧洲中文字幕精品| 成人av在线看| 国产在线看一区| 日韩一区欧美二区| 亚洲精品国产a久久久久久| 国产亚洲婷婷免费| 日韩精品一区二区三区中文精品| 在线一区二区三区| 91麻豆福利精品推荐| 国产成人亚洲精品狼色在线| 免费看欧美美女黄的网站| 午夜亚洲福利老司机| 伊人一区二区三区| 亚洲欧洲性图库| 国产精品视频你懂的| 国产日韩亚洲欧美综合| 精品福利在线导航| 日韩精品一区二区三区中文不卡| 在线成人午夜影院| 6080yy午夜一二三区久久| 欧美三级日韩三级国产三级| 一本高清dvd不卡在线观看| 99久久国产综合精品色伊| 成人免费看片app下载| 国产成人精品午夜视频免费| 美腿丝袜亚洲色图| 亚洲成人激情综合网| 亚洲尤物在线视频观看| 亚洲乱码日产精品bd| 国产精品久久久久久一区二区三区| 久久久精品免费网站| 国产日韩在线不卡| 亚洲欧洲av色图| 中文字幕一区视频| 亚洲人成网站色在线观看| 中文字幕亚洲区| 亚洲国产精品欧美一二99| 视频一区二区国产| 免费看欧美女人艹b| 国产一区啦啦啦在线观看| 国产精品亚洲人在线观看| aa级大片欧美| 欧美人体做爰大胆视频| 欧美电影免费观看完整版| 久久午夜电影网| 最新国产成人在线观看| 亚洲另类一区二区| 亚洲乱码国产乱码精品精98午夜 | 在线亚洲一区二区| 欧美日韩亚洲综合在线 欧美亚洲特黄一级| 在线观看网站黄不卡| 欧美一区二区在线视频| 久久蜜桃av一区二区天堂 | 亚洲一区成人在线| 秋霞午夜鲁丝一区二区老狼| 国产乱人伦偷精品视频不卡| 国产夫妻精品视频| 在线亚洲人成电影网站色www| 欧美一级国产精品| 国产精品久久久久久久久果冻传媒| 亚洲日韩欧美一区二区在线| 天堂久久一区二区三区| 国产毛片一区二区| 欧美综合天天夜夜久久| 日韩精品专区在线影院观看 | 99国内精品久久| 欧美丰满一区二区免费视频| 久久亚洲综合色一区二区三区| 一区二区三区免费在线观看| 精品中文av资源站在线观看| 92国产精品观看| 精品成人佐山爱一区二区| 一区二区三区四区激情| 国产精品88av| 日韩精品一区二区三区在线播放|