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

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

?? syslib.c

?? S3C2410X的vxworks的bsp驅動
?? C
字號:
/* sysLib.c - HITSAT OMU system-dependent routines *//* Copyright 2004 HITSAT Limited */#include "copyright_wrs.h"/*DESCRIPTIONThis library provides board-specific routines for the OMU Development Board BSP.It includes the following chip drivers:	nullVme.c...................dummy VMEbus routines	s3c2410xIntrCtl.c...........s3c2410x interrupt controller driver	s3c2410xTimer.c.............s3c2410x timer driver	s3c2410xSio.c...............s3c2410x UART driver include by sysSerial.cif INCLUDE_FLASH is defined, it includes:	flashMem.c..................Flash memory driver	nvRamToFlash.c..............driver to use some Flash like NVRAMelse it #includes:	nullNvRam.c.................dummy NVRAM routinesIt includes the following BSP files:	sysSerial.c.................serial device initialisation routines	sysEnd.c....................END network driver support routines.*//* includes */#include "vxWorks.h"#include "config.h"#include "sysLib.h"#include "string.h"#include "intLib.h"#include "taskLib.h"#include "vxLib.h"#include "muxLib.h"#include "cacheLib.h"#include "arch/arm/mmuArmLib.h"#include "private/vmLibP.h"#include "dllLib.h"/* imports */IMPORT char end[];			    /* end of system, created by ld */IMPORT VOIDFUNCPTR _func_armIntStackSplit;  /* ptr to fn to split stack */#if !defined(INCLUDE_MMU) && \    (defined(INCLUDE_CACHE_SUPPORT) || defined(INCLUDE_MMU_BASIC) || \     defined(INCLUDE_MMU_FULL) || defined(INCLUDE_MMU_MPU))#define INCLUDE_MMU#endif/* globals */#if defined(INCLUDE_MMU)/* * The following structure describes the various different parts of the * memory map to be used only during initialisation by * vm(Base)GlobalMapInit() when INCLUDE_MMU_BASIC/FULL are * defined. * * Clearly, this structure is only needed if the CPU has an MMU! * * The following are not the smallest areas that could be allocated for a * working system. If the amount of memory used by the page tables is * critical, they could be reduced. */PHYS_MEM_DESC sysPhysMemDesc [] ={	/*	 * ROM is normally marked as uncacheable by VxWorks. We leave it like that	 * for the time being, even though this has a severe impact on execution	 * speed from ROM.	 */	{		(void *) (ROM_BASE_ADRS+0xf0000000),		(void *) (ROM_BASE_ADRS),		ROUND_UP (ROM_SIZE_TOTAL*2, PAGE_SIZE),		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE_NOT  | VM_STATE_CACHEABLE_NOT	},	{		(void *) (0x08000000),		(void *) (0x08000000),                  /* Flash2, 2MB */		ROUND_UP (0x00200000, PAGE_SIZE),		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE  | VM_STATE_CACHEABLE_NOT	},	{		(void *) (0x10000000),		(void *) (0x10000000),                  /* FPGA, 16MB */		ROUND_UP (0x01000000, PAGE_SIZE),		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE  | VM_STATE_CACHEABLE_NOT	},    	/* adrs and length parameters must be page-aligned (multiples of 0x1000) */    	/* RAM */	{		(void *) LOCAL_MEM_LOCAL_ADRS,	/* virtual address */		(void *) LOCAL_MEM_LOCAL_ADRS,	/* physical address */		ROUND_UP (LOCAL_MEM_SIZE, PAGE_SIZE), /* length, then initial state: */		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE	 | VM_STATE_CACHEABLE	},	{		(void *) 0,	/* virtual address */		(void *) LOCAL_MEM_LOCAL_ADRS,	/* physical address */		ROUND_UP (LOCAL_MEM_SIZE, PAGE_SIZE), /* length, then initial state: */		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE	 | VM_STATE_CACHEABLE	},	/*	 * I/O space:	 * Do not map in all I/O space, only that which has something there.	 * Otherwise we will use all of RAM allocating page tables!	 */	{		(void *) 0x28000000,		/* CS8900A  */		(void *) 0x28000000,		ROUND_UP (SZ_4M, PAGE_SIZE),		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE	 | VM_STATE_CACHEABLE_NOT	},	{		(void *) 0x48000000,		/* Memory controller */		(void *) 0x48000000,		PAGE_SIZE,		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE	 | VM_STATE_CACHEABLE_NOT	},	{		(void *) 0x4a000000,		/* Interrupt controller */		(void *) 0x4a000000,		PAGE_SIZE,		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE	 | VM_STATE_CACHEABLE_NOT	},	{		(void *) 0x4c000000,		/* System & Clock controller */		(void *) 0x4c000000,		PAGE_SIZE,		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE	 | VM_STATE_CACHEABLE_NOT	},	{		(void *) UART_0_BASE_ADR,	/* UART 0 */		(void *) UART_0_BASE_ADR,		PAGE_SIZE,		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE	 | VM_STATE_CACHEABLE_NOT	},	{		(void *) UART_1_BASE_ADR,	/* UART 1 */		(void *) UART_1_BASE_ADR,		PAGE_SIZE,		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE	 | VM_STATE_CACHEABLE_NOT	},	{		(void *) s3c2410x_TIMER_BASE,	/* Timer&Counter */		(void *) s3c2410x_TIMER_BASE,		PAGE_SIZE,		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE	 | VM_STATE_CACHEABLE_NOT	},	{		(void *) 0x4e000000,             /* NAND-flash controller */		(void *) 0x4e000000,		PAGE_SIZE,		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE	 | VM_STATE_CACHEABLE_NOT	},	{		(void *) 0x53000000,		/* WatchDog controller */		(void *) 0x53000000,		PAGE_SIZE,		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE	 | VM_STATE_CACHEABLE_NOT	},	{		(void *) 0x56000000,		/* GPIO controller */		(void *) 0x56000000,		PAGE_SIZE,		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE	 | VM_STATE_CACHEABLE_NOT	},	{		(void *) 0x59000000,		/* SPI controller */		(void *) 0x59000000,		PAGE_SIZE,		VM_STATE_MASK_VALID | VM_STATE_MASK_WRITABLE | VM_STATE_MASK_CACHEABLE,		VM_STATE_VALID	| VM_STATE_WRITABLE	 | VM_STATE_CACHEABLE_NOT	}};int sysPhysMemDescNumEnt = NELEMENTS (sysPhysMemDesc);#endif /* defined(INCLUDE_MMU) */int	sysBus	    = BUS;		/* system bus type (VME_BUS, etc) */int	sysCpu	    = CPU;		/* system CPU type (e.g. ARMARCH4/4_T)*/char *	sysBootLine = BOOT_LINE_ADRS; 	/* address of boot line */char *	sysExcMsg   = EXC_MSG_ADRS;	/* catastrophic message area */int	sysProcNum;			/* processor number of this CPU */int	sysFlags;			/* boot flags */char	sysBootHost [BOOT_FIELD_LEN];	/* name of host from which we booted */char	sysBootFile [BOOT_FIELD_LEN];	/* name of file from which we booted *//* locals *//* * List of interrupts to be serviced in order of decreasing priority. * Interrupts not in this list will be serviced least-significant bit * first at a lower priority than those in the list. * * To use lowest-bit = highest-priority, reverse the sense of the * condition below so that s3c2410xIntLvlPriMap is a zero pointer. *//* defines *//* externals *//*IMPORT int  s3c2410xIntDevInit (void);*/IMPORT void sysIntStackSplit (char*, long);/* globals *//* forward LOCAL functions declarations *//* forward declarations */char *	sysPhysMemTop (void);/* included source files */#include "mem/nullNvRam.c"#include "vme/nullVme.c"#include "s3c2410xIntrCtl.c"#include "s3c2410xTimer.c"#include "sysSerial.c"/* #include "cs8900a.c" */#ifdef INCLUDE_END#include "cs8900aEnd.c"#endif/* * sysModel - return the model name of the CPU board * * This routine returns the model name of the CPU board. * * NOTE * This routine does not include all of the possible variants, and the * inclusion of a variant in here does not mean that it is supported. * * RETURNS: A pointer to a string identifying the board and CPU. */char* sysModel(void){   	return "HITSAT OMU - S3C2410X(Samsung)";}/* * sysBspRev - return the BSP version with the revision eg 1.2/<x> * * This function returns a pointer to a BSP version with the revision. * e.g. 1.2/<x>. BSP_REV is concatenated to BSP_VERSION to form the * BSP identification string. * * RETURNS: A pointer to the BSP version/revision string. */char* sysBspRev(void){	return (BSP_VERSION BSP_REV);}/* * sysHwInit0 - perform early BSP-specific initialisation * * This routine performs such BSP-specific initialisation as is necessary before * the architecture-independent cacheLibInit can be called. It is called * from usrInit() before cacheLibInit(), before sysHwInit() and before BSS * has been cleared. * * RETURNS: N/A */void sysHwInit0(void){#ifdef INCLUDE_CACHE_SUPPORT	/*	 * Install the appropriate cache library, no address translation	 * routines are required for this BSP, as the default memory map has	 * virtual and physical addresses the same.	 */	cacheArm920tLibInstall (NULL, NULL);#endif	/* INCLUDE_CACHE_SUPPORT */#if defined(INCLUDE_MMU)	/* Install the appropriate MMU library and translation routines */	mmuArm920tLibInstall (NULL, NULL);#endif	/* defined(INCLUDE_MMU) */	return;}/* * sysHwInit - initialize the CPU board hardware * * This routine initializes various features of the hardware. * Normally, it is called from usrInit() in usrConfig.c. * * NOTE: This routine should not be called directly by the user. * * RETURNS: N/A */void sysHwInit(void){	/* install the IRQ/SVC interrupt stack splitting routine */	_func_armIntStackSplit = sysIntStackSplit;#ifdef INCLUDE_SERIAL	/* initialise the serial devices */	sysSerialHwInit ();      /* initialise serial data structure */#endif	/* INCLUDE_SERIAL */}/* * sysHwInit2 - additional system configuration and initialization * * This routine connects system interrupts and does any additional * configuration necessary.  Note that this is called from * sysClkConnect() in the timer driver. * * RETURNS: N/A * */void sysHwInit2(void){	static BOOL initialised = FALSE;	if(initialised) return;	/* initialise the interrupt library and interrupt driver */	intLibInit (s3c2410x_INT_NUM_LEVELS, s3c2410x_INT_NUM_LEVELS, INT_MODE);	s3c2410xIntDevInit();	/* connect sys clock interrupt and auxiliary clock interrupt */	(void)intConnect (INUM_TO_IVEC (SYS_TIMER_INT_VEC), sysClkInt, 0);	(void)intConnect (INUM_TO_IVEC (AUX_TIMER_INT_VEC), sysAuxClkInt, 0);#ifdef INCLUDE_SERIAL	/* connect serial interrupt */	sysSerialHwInit2();#endif	/* INCLUDE_SERIAL */	initialised = TRUE;}/* * sysPhysMemTop - get the address of the top of physical memory * * This routine returns the address of the first missing byte of memory, * which indicates the top of memory. * * Normally, the user specifies the amount of physical memory with the * macro LOCAL_MEM_SIZE in config.h.  BSPs that support run-time * memory sizing do so only if the macro LOCAL_MEM_AUTOSIZE is defined. * If not defined, then LOCAL_MEM_SIZE is assumed to be, and must be, the * true size of physical memory. * * NOTE: Do no adjust LOCAL_MEM_SIZE to reserve memory for application * use.  See sysMemTop() for more information on reserving memory. * * RETURNS: The address of the top of physical memory. * * SEE ALSO: sysMemTop() */char* sysPhysMemTop(void){	static char * physTop = NULL;	if(physTop == NULL)	{#ifdef LOCAL_MEM_AUTOSIZE	/* If auto-sizing is possible, this would be the spot.  */#	error   "Dynamic memory sizing not supported"#else	/* Don't do autosizing, if size is given */	physTop = (char *)(LOCAL_MEM_LOCAL_ADRS + LOCAL_MEM_SIZE);#endif	/* LOCAL_MEM_AUTOSIZE */	}	return physTop;}/* * sysMemTop - get the address of the top of VxWorks memory * * This routine returns a pointer to the first byte of memory not * controlled or used by VxWorks. * * The user can reserve memory space by defining the macro USER_RESERVED_MEM * in config.h.  This routine returns the address of the reserved memory * area.  The value of USER_RESERVED_MEM is in bytes. * * RETURNS: The address of the top of VxWorks memory. */char* sysMemTop(void){	static char * memTop = NULL;	if(memTop == NULL)	{		memTop = sysPhysMemTop () - USER_RESERVED_MEM;	}	return memTop;}/* * sysToMonitor - transfer control to the ROM monitor * * This routine transfers control to the ROM monitor.  It is usually called * only by reboot() -- which services ^X -- and bus errors at interrupt * level.  However, in some circumstances, the user may wish to introduce a * new <startType> to enable special boot ROM facilities. * * RETURNS: Does not return. *//* startType, passed to ROM to tell it how to boot */STATUS sysToMonitor(int startType){	FUNCPTR	pRom;	UINT32* p = (UINT32 *)ROM_TEXT_ADRS;#ifdef INCLUDE_SERIAL	sysSerialReset ();	/* put serial devices into quiet state */#endif	/*	 * Examine ROM - if it's a VxWorks boot ROM, jump to the warm boot entry	 * point; otherwise jump to the start of the ROM.	 * A VxWorks boot ROM begins	 *    MOV	R0,#BOOT_COLD	 *    B	...	 *    DCB	"Copyright"	 * We check the first and third words only. This could be tightened up	 * if required (see romInit.s).	 */	if(p[0] == 0xE3A00002 && p[2] == 0x79706F43)		pRom = (FUNCPTR)(ROM_TEXT_ADRS + 0x24);	/* warm boot address */	else		pRom = (FUNCPTR)(ROM_TEXT_ADRS + 0x20);	/* start of ROM */	VM_ENABLE(FALSE);	/* disable the MMU, cache(s) and write-buffer */	/*	 * On 920T, can have the I-cache enabled once the MMU has been	 * disabled, so, unlike the other processors, disabling the MMU does	 * not disable the I-cache.  This would not be a problem, as the	 * 920T boot ROM initialisation code disables and flushes both caches.	 * However, in case we are, in fact, using a 7TDMI boot ROM,	 * disable and flush the I-cache here, or else the boot process may	 * fail.	 */	cacheDisable (INSTRUCTION_CACHE);	(*pRom)(startType);	/* jump to boot ROM */	return OK;		/* in case we ever continue from ROM monitor */}/* * sysProcNumGet - get the processor number * * This routine returns the processor number for the CPU board, which is * set with sysProcNumSet(). * * RETURNS: The processor number for the CPU board. * * SEE ALSO: sysProcNumSet() */int sysProcNumGet(void){	return sysProcNum;}/* * sysProcNumSet - set the processor number * * Set the processor number for the CPU board.  Processor numbers should be * unique on a single backplane. * * NOTE * By convention, only processor 0 should dual-port its memory. * * RETURNS: N/A * * SEE ALSO: sysProcNumGet() *//* procNum, processor number */void sysProcNumSet(int procNum){	sysProcNum = procNum;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色哟哟亚洲精品| 国产精品正在播放| 欧美日韩国产首页在线观看| 亚洲国产另类av| 在线成人免费观看| 韩日av一区二区| 国产日韩欧美制服另类| av网站免费线看精品| 亚洲精品国产精华液| 欧美电影影音先锋| 狠狠色综合日日| 亚洲品质自拍视频| 7799精品视频| 国产精品白丝jk白祙喷水网站 | 国产成人亚洲综合a∨猫咪| 国产日韩精品视频一区| www.激情成人| 天天色综合天天| 久久久久久久久蜜桃| 一本色道久久综合亚洲91| 亚洲综合免费观看高清完整版| 91麻豆精品国产自产在线| 精品一区二区在线免费观看| 日韩理论在线观看| 制服丝袜中文字幕一区| 国产91精品一区二区麻豆网站| 中文字幕亚洲一区二区va在线| 欧美精选一区二区| 成人自拍视频在线| 成人av免费在线播放| 亚洲国产人成综合网站| 国产校园另类小说区| 欧美日韩国产综合一区二区| 国产黄色精品视频| 亚洲福利视频三区| 国产精品美女久久久久久| 4438x亚洲最大成人网| 99国产精品一区| 极品瑜伽女神91| 亚洲一区二区三区三| 国产欧美一区二区三区鸳鸯浴| 欧美日韩亚洲综合在线 | 亚洲国产成人porn| 国产午夜久久久久| 欧美一区二区三区在线观看| 97超碰欧美中文字幕| 国产一区在线不卡| 日本免费在线视频不卡一不卡二| 国产精品国产三级国产普通话99| 日韩欧美在线一区二区三区| 欧洲日韩一区二区三区| 成人成人成人在线视频| 国内精品写真在线观看| 午夜国产不卡在线观看视频| 综合久久久久久| 久久久精品国产99久久精品芒果| 欧美肥妇bbw| 色999日韩国产欧美一区二区| 国产高清在线观看免费不卡| 免费看精品久久片| 婷婷夜色潮精品综合在线| 一区二区欧美视频| 亚洲欧美偷拍另类a∨色屁股| 国产日韩欧美麻豆| 久久天堂av综合合色蜜桃网| 日韩一区二区电影网| 欧美精品v国产精品v日韩精品| 色婷婷精品久久二区二区蜜臀av | 亚洲一区二区三区四区在线免费观看| 欧美激情一区在线观看| 久久色在线观看| 精品国产乱子伦一区| 日韩欧美色综合| 精品国产青草久久久久福利| 欧美一级国产精品| 日韩视频中午一区| 日韩精品一区在线| 精品国产乱码久久久久久闺蜜| 欧美电视剧在线看免费| 337p亚洲精品色噜噜| 日韩三级高清在线| 337p粉嫩大胆噜噜噜噜噜91av| 精品国产一区久久| 久久美女艺术照精彩视频福利播放 | 国产aⅴ精品一区二区三区色成熟| 国产乱对白刺激视频不卡| 国产在线精品免费av| 国产白丝精品91爽爽久久| www.欧美亚洲| 欧美性视频一区二区三区| 欧美日韩一区二区三区高清| 91精品婷婷国产综合久久竹菊| 欧美另类久久久品| 日韩精品中文字幕一区| 欧美激情一区二区三区四区| 国产精品欧美一区二区三区| 玉米视频成人免费看| 视频精品一区二区| 久久99热国产| 成人av电影在线观看| 91久久精品国产91性色tv| 337p亚洲精品色噜噜狠狠| 久久精品视频免费| 亚洲女性喷水在线观看一区| 婷婷开心激情综合| 精品在线免费视频| 99久久精品国产一区| 欧美日韩免费观看一区二区三区| 9191久久久久久久久久久| 久久亚洲综合av| 亚洲欧美成aⅴ人在线观看| 蜜臀av一区二区三区| 成人av高清在线| 亚洲精品中文在线观看| 午夜精品久久久久久| 国产真实乱对白精彩久久| 91网站在线播放| 666欧美在线视频| 日本一区二区三区视频视频| 三级在线观看一区二区| 成人开心网精品视频| 欧美美女网站色| 国产精品久久久久久久久搜平片 | 欧美日韩亚洲综合一区| 国产日韩精品视频一区| 日韩精品1区2区3区| 成人手机电影网| 欧美一区二区美女| 亚洲日本va在线观看| 蜜臀av一区二区| 欧美性猛片xxxx免费看久爱| 欧美激情一区二区三区| 麻豆免费看一区二区三区| 日本丶国产丶欧美色综合| 久久久无码精品亚洲日韩按摩| 五月天激情综合网| 99久久久久免费精品国产| 日韩精品一区二区三区四区视频| 亚洲一卡二卡三卡四卡| 99热精品国产| 久久久久久免费| 奇米影视一区二区三区| 欧美性一二三区| 亚洲乱码一区二区三区在线观看| 激情都市一区二区| 欧美一区二区三区男人的天堂| 亚洲欧美乱综合| 成人99免费视频| 国产亚洲欧美在线| 在线视频国产一区| ㊣最新国产の精品bt伙计久久| 国产精品一区二区视频| 精品女同一区二区| 免费成人在线视频观看| 欧美日韩久久一区| 亚洲在线视频免费观看| 91视频com| 亚洲人成网站精品片在线观看 | 国产精品18久久久久| 日韩欧美高清dvd碟片| 日韩av一区二区在线影视| 欧美精品vⅰdeose4hd| 日韩影院精彩在线| 欧美肥妇毛茸茸| 青青草97国产精品免费观看| 555www色欧美视频| 欧美aaaaaa午夜精品| 日韩欧美电影在线| 老司机午夜精品| 久久先锋资源网| 成人综合在线观看| 综合久久综合久久| 欧美在线观看一区| 午夜视频在线观看一区二区| 欧美日韩精品电影| 免费黄网站欧美| 2023国产精华国产精品| 国产精品一区二区91| 欧美经典一区二区| 91影视在线播放| 悠悠色在线精品| 欧美女孩性生活视频| 免费黄网站欧美| 久久久久国色av免费看影院| 北条麻妃一区二区三区| 一区二区三区四区亚洲| 欧美另类z0zxhd电影| 久热成人在线视频| 国产午夜精品理论片a级大结局| av在线不卡网| 午夜在线成人av| 久久免费精品国产久精品久久久久 | 国产精品传媒视频| 欧美性欧美巨大黑白大战| 免费看欧美美女黄的网站| 国产视频一区二区在线| 色偷偷久久一区二区三区| 日韩有码一区二区三区| 欧美激情在线一区二区三区| 色老综合老女人久久久|