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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? intel28f128_16x1.c

?? umon bootloader source code, support mips cpu.
?? C
字號:
/* intel28f128_16x1.c:
 * Support for INTEL 28f128.
 * A 16-bit device in a 1-device-wide bank.
 */
#include "config.h"
#if INCLUDE_FLASH
#include "stddefs.h"
#include "genlib.h"
#include "cpu.h"
#include "flash.h"
#include "intel28f128_16x1.h"

#define FLASHCFG_16x1	1
#include "strata.h"

/* Manufacturer and device id... */
#define INTEL_DT28F640J5		0x00890015
#define INTEL_28F640			0x00890017
#define INTEL_DT28F128J5		0x00890018

/* Intel28f128_16x1_erase():
 * Based on the 'snum' value, erase the appropriate sector(s).
 * Return 0 if success, else -1.
 */
int
Intel28f128_16x1_erase(struct flashinfo *fdev,int snum)
{
	/* Issue the setup/confirm sequence:
	 */
	STRATACMD_BLOCKERASE(fdev->sectors[snum].begin);
	STRATACMD_CONFIRM(fdev->sectors[snum].begin);

	/* Wait for completion:
	 */
	WAIT_FOR_WSMS_STATUS_READY();

	/* Cleanup:
	 */
	STRATACMD_CLEARSTATUS();
	STRATACMD_READARRAY();
	WAIT_FOR_FF(fdev->sectors[snum].begin);
	return(0);
}

/* EndIntel28f128_16x1_erase():
 * Function place holder to determine the end of the above function.
 */
void
EndIntel28f128_16x1_erase(void)
{}


/* Intel28f128_16x1_write():
 * Copy specified number of bytes from source to destination.  The destination
 * address is assumed to be flash space.
 */
int
Intel28f128_16x1_write(struct flashinfo *fdev,uchar *dest,uchar *src,
	long bytecnt)
{
	volatile int	tot, ret;
	int				i, giveup, aligntot, size;
	volatile uchar	buf[BUFFER_SIZE], *aligndest, *block;

	/* The write buffer can only be used on 32-byte blocks; hence, the
	 * low 5 bits of the destination must be zero at the start of a 
	 * buffer write.  This means that we must align the destination
	 * address on this boundary.  To do this, we decrement the destination
	 * address until the alignment is reached, then load that space with
	 * the same data that is already there.
	 */ 
	aligntot = 0;
	aligndest = dest;
	while(((ulong)aligndest & BUFFER_ALIGN) != 0) {
		aligndest--;
		aligntot++;
		bytecnt++;
	}

	ret = tot = 0;
	while((tot < bytecnt) && (ret == 0)) {
		size = bytecnt - tot;
		if (size > BUFFER_SIZE)
			size = BUFFER_SIZE;

		block = aligndest;

		/* Copy buffer's worth of data into local buffer just in
		 * case the source is this flash device.
		 */
		for(i=0;i<size;i++) {
			if (aligndest < dest)
				buf[i] = *aligndest++;
			else
				buf[i] = *src++;
		}
		if (size & 1) {
			size++;
			buf[i] = dest[bytecnt];
		}
		aligndest = block;
    
		/* Issue request to write to the buffer, then poll extended
		 * status register to wait for availability.
		 */
		giveup = FLASH_LOOP_TIMEOUT;
		do {
			STRATACMD_WRITETOBUFFER(aligndest);	
			giveup--;
		} while (((FLASH_READ(aligndest) & WBS) == 0) && (giveup > 0));
		if (giveup == 0) {
			STRATACMD_READARRAY();	
			ret = -2;
			break;
		}
                
		/* Write the byte count...  Notice that the bytecount fed to the
		 * device is one less than the actual count. 
		 */
		FLASH_WRITEVAL(block,(size-1)/2);

		/* Write the buffer data...
		 */
		for(i=0;i<size;i+=2) {
			FLASH_WRITEPTR(aligndest,(&buf[i]));
			aligndest+=2;
		}
		
		STRATACMD_CONFIRM(block);
		tot += size;

		WAIT_FOR_WSMS_READY();
		STRATACMD_READARRAY();	
	}
	return(ret);
}

/* EndIntel28f128_16x1_write():
 * Function place holder to determine the end of the above function.
 */
void
EndIntel28f128_16x1_write(void)
{}

/* Intel28f128_16x1_ewrite():
 * Erase all sectors that are part of the address space to be written,
 * then write the data to that address space.  This is basically a
 * concatenation of the above erase & write done in one step.  This is
 * necessary primarily for re-writing the bootcode; because after the boot
 * code is erased, there is nowhere to return so the re-write must be done
 * while executing out of ram also.  It is only needed in systems that are
 * executing the monitor out of the same device that is being updated.
 */
int
Intel28f128_16x1_ewrite(struct flashinfo *fdev,uchar *destA,uchar *srcA,
	long bytecnt)
{
	int	    sector, i;
	void	(*reset)();
	uchar   *src, *dest;

	src = srcA;
	dest = destA;

	STRATACMD_CLEARSTATUS();
	STRATACMD_READARRAY();

	FLASHOP_PRINT(("ewrite erase...\n"));

	/* For each sector, if it overlaps any of the destination space */
	/* then erase that sector. */
	for (sector = 0; sector < fdev->sectorcnt; sector++) {
		if ((((uchar *)dest) > (fdev->sectors[sector].end)) ||
		    (((uchar *)dest+bytecnt-1) < (fdev->sectors[sector].begin))) {
			continue;
		}

		FLASHOP_PRINT(("erase %d...\n",sector));

		/* Issue the ERASE setup/confirm sequence: */
		STRATACMD_BLOCKERASE(fdev->sectors[sector].begin);
		STRATACMD_CONFIRM(fdev->sectors[sector].begin);
		WAIT_FOR_WSMS_STATUS_READY();
		STRATACMD_CLEARSTATUS();
		STRATACMD_READARRAY();
		WAIT_FOR_FF(fdev->sectors[sector].begin);
	}

	FLASHOP_PRINT(("ewrite write...\n"));

	for(i = 0; i < bytecnt; i += sizeof(ftype)) {

		/* Flash program setup command */
		STRATACMD_PROGRAM();
		
		/* Write the value */
		FLASH_WRITEPTR(dest,src);

		/* Wait for completion */
		WAIT_FOR_WSMS_READY();

		/* Cleanup */
		STRATACMD_CLEARSTATUS();
		STRATACMD_READARRAY();

		/* Verify data */
		WAIT_FOR_DATA(dest,src);		

		dest+=sizeof(ftype);
		src+=sizeof(ftype);
	}
	
	FLASHOP_PRINT(("ewrite done...\n"));
	FLASHOP_FLUSH();

	/* Now that the re-programming of flash is complete, reset: */
	reset = RESETFUNC();
	reset();

	return(0);	/* won't get here */
}

/* EndIntel28f128_16x1_ewrite():
 * Function place holder to determine the end of the above function.
 */
void
EndIntel28f128_16x1_ewrite(void)
{}

/* Intel28f128_16x1_lock():
 */
int
Intel28f128_16x1_lock(struct flashinfo *fdev,int snum,int operation)
{
	ftype sample, bstat;

	sample = FLASH_READBASE();

	if (operation == FLASH_LOCKABLE) {
		return(1);
	}
	else if (operation == FLASH_UNLOCK) {
		STRATACMD_LOCKBIT();
		STRATACMD_CONFIRM(fdev->base);
		WAIT_FOR_WSMS_READY();
		STRATACMD_READARRAY();
		WAIT_FOR_DATA(fdev->base,&sample);		
		return(0);
	}
	else if (operation == FLASH_LOCK) {
		STRATACMD_LOCKBIT();
		STRATACMD_SETLOCKCONFIRM(fdev->sectors[snum].begin);
		WAIT_FOR_WSMS_READY();
		STRATACMD_READARRAY();
		WAIT_FOR_DATA(fdev->base,&sample);		
		return(0);
	}
	else if (operation == FLASH_LOCKQRY) {
		STRATACMD_READID();
		WAIT_FOR_WSMS_READY();
		bstat = FLASH_READ_BLOCKSTATUS(fdev->sectors[snum].begin);
		STRATACMD_READARRAY();
		FLASHOP_PRINT(("bstat = 0x%lx\n",(long)bstat));
		if ((bstat & 0x0001) == 0x0001)
			return(1);
		else
			return(0);
	}
	else
		return(-1);
}

/* EndIntel28f128_16x1_lock():
 * Function place holder to determine the end of the above function.
 */
void
EndIntel28f128_16x1_lock(void)
{
}

/* Intel28f128_16x1_type():
 * Run the AUTOSELECT algorithm to retrieve the manufacturer and
 * device id of the flash.
 */
int
Intel28f128_16x1_type(struct flashinfo *fdev)
{
	ulong	id;
	ftype	sample;
	ushort	man, dev;

	sample = FLASH_READBASE();

	/* Issue the read configuration command: */
	STRATACMD_READID();

	man = (ushort)FLASH_READBASE();			/* Manufacturer ID */
	dev = (ushort)FLASH_READ_DEVICEID();	/* device ID */
	id = man;
	id <<= 16;
	id |= dev;

	fdev->id = id;

	/* Issue the read array command: */
	STRATACMD_READARRAY();
	
	/* Wait for the original data to be readable... */
	WAIT_FOR_DATA(fdev->base,&sample);

	return((int)(fdev->id));
}

/* EndIntel28f128_16x1_type():
 * Function place holder to determine the end of the above function.
 */
void
EndIntel28f128_16x1_type(void)
{}

/**************************************************************************
 **************************************************************************
 *
 * The remainder of the code in this file can be included if the
 * target configuration is such that this 28F128 device is the only
 * real flash device in the system that is to be visible to the monitor.
 *
 **************************************************************************
 **************************************************************************
 */
#ifdef SINGLE_FLASH_DEVICE

/* FlashXXXFbuf[]:
 * If FLASH_COPY_TO_RAM is defined then these arrays will contain the
 * flash operation functions above.  To operate on most flash devices,
 * you cannot be executing out of it (there are exceptions, but
 * in general, we do not assume the flash supports this).  The flash
 * functions are copied here, then executed through the function
 * pointers established in the flashinfo structure below.
 * One obvious requirement...  The size of each array must be at least
 * as large as the function that it will contain.
 */
#ifdef FLASH_COPY_TO_RAM
ulong	FlashTypeFbuf[400];
ulong	FlashEraseFbuf[400];
ulong	FlashWriteFbuf[400];
ulong	FlashEwriteFbuf[400];
ulong	FlashLockFbuf[400];
#endif

/* FlashNamId[]:
 * Used to correlate between the ID and a string representing the name
 * of the flash device.  Note that this will support the presence of
 * a '640 device.  The sector count is simply cut in half.
 */
struct flashdesc FlashNamId[] = {
	{ INTEL_DT28F128J5,		"INTEL-DT28F128J5" },
	{ INTEL_DT28F640J5,		"INTEL-DT28F640J5" },
	{ INTEL_28F640,			"INTEL-28F640" },
	{ 0, 0 },
};

/* This configuration is a single 28F128 device.
 * Each device has 128 128Kbyte sectors...
 */
int	SectorSizes28F128_16[] = {
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
	0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000, 0x20000,
};


struct sectorinfo sinfo128[sizeof(SectorSizes28F128_16)/sizeof(int)];

int
FlashBankInit(struct flashinfo *fbnk,int snum)
{
	uchar	*saddr;
	int		i, *sizetable, msize;
	struct	sectorinfo *sinfotbl;

	/* Based on the flash bank ID returned, load a sector count and a */
	/* sector size-information table... */
	flashtype(fbnk);
	switch(fbnk->id) {
		case INTEL_28F640:
		case INTEL_DT28F640J5:
			fbnk->sectorcnt = (sizeof(SectorSizes28F128_16)/sizeof(int))/2;
			sizetable = SectorSizes28F128_16;
			break;
		case INTEL_DT28F128J5:
			fbnk->sectorcnt = (sizeof(SectorSizes28F128_16)/sizeof(int));
			sizetable = SectorSizes28F128_16;
			break;
		default:
			printf("Unrecognized flashid: 0x%08lx\n",fbnk->id);
			return(-1);
			break;
	}

	/* Create the per-sector information table.  The size of the table */
	/* depends on the number of sectors in the device...  */
	if (fbnk->sectors)
		free((char *)fbnk->sectors);
	msize = fbnk->sectorcnt * (sizeof(struct sectorinfo));
	sinfotbl = (struct sectorinfo *)malloc(msize);
	if (!sinfotbl) {
		printf("Can't allocate space for flash sector information\n");
		return(-1);
	}
	fbnk->sectors = sinfotbl;

	/* Using the above-determined sector count and size table, build */
	/* the sector information table as part of the flash-bank structure: */
	saddr = fbnk->base;
	for(i=0;i<fbnk->sectorcnt;i++) {
		fbnk->sectors[i].snum = snum+i;
		fbnk->sectors[i].size = sizetable[i];
		fbnk->sectors[i].begin = saddr;
		fbnk->sectors[i].end =
		    fbnk->sectors[i].begin + fbnk->sectors[i].size - 1;
		fbnk->sectors[i].protected = 0;
		saddr += sizetable[i];
	}
	fbnk->end = saddr-1;
	return(fbnk->sectorcnt);
}

/* FlashInit():
 * Initialize data structures for each bank of flash...
 */
int
FlashInit(void)
{
	int		snum;
	struct	flashinfo *fbnk;

	snum = 0;
	FlashCurrentBank = 0;

#ifdef FLASH_COPY_TO_RAM

	/* Copy functions to ram space... */
	/* Note that this MUST be done when cache is disabled to assure that */
	/* the RAM is occupied by the designated block of code. */

	if (flashopload((ulong *)Intel28f128_16x1_lock,
		(ulong *)EndIntel28f128_16x1_lock,
		FlashLockFbuf,sizeof(FlashLockFbuf)) < 0)
		return(-1);
	if (flashopload((ulong *)Intel28f128_16x1_type,
		(ulong *)EndIntel28f128_16x1_type,
		FlashTypeFbuf,sizeof(FlashTypeFbuf)) < 0)
		return(-1);
	if (flashopload((ulong *)Intel28f128_16x1_erase,
		(ulong *)EndIntel28f128_16x1_erase,
		FlashEraseFbuf,sizeof(FlashEraseFbuf)) < 0)
		return(-1);
	if (flashopload((ulong *)Intel28f128_16x1_ewrite,
		(ulong *)EndIntel28f128_16x1_ewrite,
		FlashEwriteFbuf,sizeof(FlashEwriteFbuf)) < 0)
		return(-1);
	if (flashopload((ulong *)Intel28f128_16x1_write,
		(ulong *)EndIntel28f128_16x1_write,
		FlashWriteFbuf,sizeof(FlashWriteFbuf)) < 0)
		return(-1);

#endif

	fbnk = &FlashBank[0];
	fbnk->base = (unsigned char *)FLASH_BANK0_BASE_ADDR;
	fbnk->width = FLASH_BANK0_WIDTH;
#ifdef FLASH_COPY_TO_RAM
	fbnk->fltype = (int(*)())FlashTypeFbuf;		/* flashtype(). */
	fbnk->flerase = (int(*)())FlashEraseFbuf;	/* flasherase(). */
	fbnk->flwrite = (int(*)())FlashWriteFbuf;	/* flashwrite(). */
	fbnk->flewrite = (int(*)())FlashEwriteFbuf;	/* flashewrite(). */
	fbnk->fllock = (int(*)())FlashLockFbuf;		/* flashelock(). */
#else
	fbnk->fltype = Intel28f128_16x1_type;
	fbnk->flerase = Intel28f128_16x1_erase;
	fbnk->flwrite = Intel28f128_16x1_write;
	fbnk->flewrite = Intel28f128_16x1_ewrite;
	fbnk->fllock = Intel28f128_16x1_lock;
#endif

	snum += FlashBankInit(fbnk,snum);

	sectorProtect(FLASH_PROTECT_RANGE,1);

#ifdef FLASHRAM_BASE
	FlashRamInit(snum, FLASHRAM_SECTORCOUNT,
		&FlashBank[FLASHRAM_BANKNUM], sinfoRAM, ramSectors);
#endif
	return(0);
}

#endif	/* SINGLE_FLASH_DEVICE */

#endif	/* INCLUDE_FLASH */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品成人悠悠色影视| 亚洲午夜在线视频| 中文字幕第一区二区| 欧美电影影音先锋| 久久久99精品久久| 不卡的看片网站| 综合久久国产九一剧情麻豆| 色中色一区二区| 久久精品国产免费看久久精品| 欧美肥大bbwbbw高潮| 国产精品视频观看| 中文字幕一区二区不卡| 日本不卡一区二区| 欧美一二区视频| 不卡大黄网站免费看| 亚洲成人av电影在线| 日本一区二区在线不卡| 制服丝袜中文字幕亚洲| 成人精品一区二区三区中文字幕| 蜜桃av一区二区在线观看| 一区二区三区精品在线观看| 日韩欧美激情四射| 在线亚洲免费视频| 亚洲一区在线看| 亚洲欧美日韩国产中文在线| 欧美成人乱码一区二区三区| 91精品在线免费观看| 91农村精品一区二区在线| 水野朝阳av一区二区三区| 亚洲欧美偷拍卡通变态| 久久精品人人做人人爽97| 久久综合九色欧美综合狠狠| 欧美日韩免费一区二区三区| 色噜噜夜夜夜综合网| 国产成人小视频| 国产一区视频在线看| 麻豆91精品视频| 国内精品写真在线观看| 午夜久久久久久电影| 亚洲激情图片一区| 中文字幕中文乱码欧美一区二区| 337p粉嫩大胆噜噜噜噜噜91av| 2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | 国产精品高潮呻吟久久| 精品日产卡一卡二卡麻豆| 亚洲精品在线观| 欧美xfplay| 欧美一区二区三区性视频| 欧美日韩成人一区二区| 91视频在线观看免费| av一区二区三区黑人| 成人精品视频一区| 麻豆免费看一区二区三区| 午夜激情综合网| 亚洲成人一区二区在线观看| 日韩成人一区二区三区在线观看| 亚洲与欧洲av电影| 日韩中文字幕1| 天天色天天操综合| 日本色综合中文字幕| 丝瓜av网站精品一区二区| 狠狠久久亚洲欧美| 国产主播一区二区| 日韩av在线播放中文字幕| 精一区二区三区| 国产一区二区三区蝌蚪| 大陆成人av片| 色综合天天做天天爱| 精品视频免费在线| 欧美在线免费观看视频| 欧美丰满嫩嫩电影| 精品国偷自产国产一区| 久久综合九色综合欧美亚洲| 久久日韩粉嫩一区二区三区 | 亚洲乱码国产乱码精品精98午夜| 一级特黄大欧美久久久| 亚洲成人精品一区二区| 亚洲资源中文字幕| 另类调教123区| 精品一区二区三区在线观看| 99re亚洲国产精品| 欧美亚洲图片小说| 久久青草国产手机看片福利盒子| 国产精品欧美久久久久一区二区| 国产欧美一区二区三区在线老狼| 亚洲专区一二三| 日韩激情av在线| 成人综合激情网| 欧日韩精品视频| 国产亚洲精品bt天堂精选| 亚洲色图欧洲色图| 午夜精品久久久久久久久久| 国产福利一区在线| 欧美综合视频在线观看| 国产欧美在线观看一区| 伊人开心综合网| 国产成人高清视频| 在线视频你懂得一区| 精品国产一区二区三区四区四| 国产精品成人免费精品自在线观看| 亚洲第一会所有码转帖| a级高清视频欧美日韩| 欧美日韩五月天| 中文字幕视频一区| 欧美aaa在线| 日本乱码高清不卡字幕| 亚洲精品在线观| 夜夜嗨av一区二区三区| av福利精品导航| 日韩欧美一区中文| 午夜亚洲福利老司机| 成人永久免费视频| 国产网站一区二区三区| 亚洲一区在线电影| 色偷偷久久一区二区三区| 欧美本精品男人aⅴ天堂| 国产精品午夜免费| 激情小说亚洲一区| 91天堂素人约啪| 国产亚洲综合av| 麻豆成人久久精品二区三区红| av福利精品导航| 国产婷婷一区二区| 日本伊人色综合网| 欧美精品777| 亚洲婷婷综合色高清在线| 成人久久视频在线观看| 日韩精品专区在线影院重磅| 午夜av一区二区| 成人永久aaa| 久久婷婷成人综合色| 一区二区三区欧美| 99re66热这里只有精品3直播 | 成人午夜av电影| 久久久国产精品麻豆| 日本不卡123| 日韩三级av在线播放| 五月天欧美精品| 3atv在线一区二区三区| 亚洲一区二区三区视频在线播放 | 午夜视频在线观看一区二区三区| 精品国产一区a| 午夜精品久久久久影视| 91精品国产麻豆| 午夜视频在线观看一区二区三区 | 久久麻豆一区二区| 国产精品一区在线观看乱码| 欧美精品一区男女天堂| 国产一区二区伦理片| 337p粉嫩大胆噜噜噜噜噜91av | 色欧美乱欧美15图片| 成人欧美一区二区三区白人| 色综合中文字幕| 一区二区三区欧美在线观看| 欧美乱妇20p| 日韩电影在线观看网站| 久久伊人中文字幕| 国产毛片精品国产一区二区三区| 久久精品视频免费| 成人动漫在线一区| 欧美日韩亚洲高清一区二区| 日本伊人色综合网| 欧美人伦禁忌dvd放荡欲情| 久久99精品久久只有精品| 欧美一区二区播放| 高清在线观看日韩| 自拍偷拍亚洲欧美日韩| 欧美三级午夜理伦三级中视频| 首页综合国产亚洲丝袜| 91精品国产一区二区三区蜜臀| 美国毛片一区二区三区| 亚洲精品一区二区三区四区高清| 国产成人av福利| 亚洲一区二区三区四区五区黄| 日韩一区二区中文字幕| 成人av在线播放网站| 一区二区三区中文字幕| 欧美成人一区二区三区在线观看 | 肉色丝袜一区二区| 久久久高清一区二区三区| aaa亚洲精品| 美脚の诱脚舐め脚责91| 国产视频一区二区在线| 欧美日韩一区二区三区在线| 裸体在线国模精品偷拍| 亚洲精品日韩一| 欧美成人一区二区三区在线观看| 91蜜桃视频在线| 日韩va亚洲va欧美va久久| 亚洲女人小视频在线观看| 欧美人与z0zoxxxx视频| 99久久精品一区二区| 亚洲国产婷婷综合在线精品| 国产日韩精品一区二区三区| 色综合久久久网| 国产.欧美.日韩| 日韩二区三区四区| 亚洲精品日产精品乱码不卡| 欧美xxxx老人做受| 制服丝袜在线91|