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

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

?? flash.c

?? 改寫的U-boot for s3c4510 (注意此源碼是在windows下壓縮了)。 1、支持串口下載
?? C
字號:
/* * (C) Copyright 2003 * MuLogic B.V. * * (C) Copyright 2001 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */#include <common.h>#include <ppc4xx.h>#include <asm/u-boot.h>#include <asm/processor.h>flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips */#define FLASH_WORD_SIZE unsigned long#define FLASH_ID_MASK 0xFFFFFFFF/*----------------------------------------------------------------------- * Functions *//* stolen from esteem192e/flash.c */ulong flash_get_size (volatile FLASH_WORD_SIZE *addr, flash_info_t *info);static int write_word (flash_info_t *info, ulong dest, ulong data);static void flash_get_offsets (ulong base, flash_info_t *info);/*----------------------------------------------------------------------- */unsigned long flash_init (void){	unsigned long size_b0, size_b1;	int i;	uint pbcr;	unsigned long base_b0, base_b1;	volatile FLASH_WORD_SIZE* flash_base;	/* Init: no FLASHes known */	for (i=0; i<CFG_MAX_FLASH_BANKS; ++i) {		flash_info[i].flash_id = FLASH_UNKNOWN;	}	/* Static FLASH Bank configuration here */	/* Test for 8M Flash first */	debug ("\n## Get flash bank 1 size @ 0x%08x\n",FLASH_BASE0_8M_PRELIM);	flash_base = (volatile FLASH_WORD_SIZE*)(FLASH_BASE0_8M_PRELIM);	size_b0 = flash_get_size(flash_base, &flash_info[0]);	if (flash_info[0].flash_id == FLASH_UNKNOWN) {		printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n",		size_b0, size_b0<<20);		return 0;	}	if (size_b0 < 8*1024*1024) {		/* Not quite 8M, try 4M Flash base address */		debug ("\n## Get flash bank 1 size @ 0x%08x\n",FLASH_BASE0_4M_PRELIM);		flash_base = (volatile FLASH_WORD_SIZE*)(FLASH_BASE0_4M_PRELIM);		size_b0 = flash_get_size(flash_base, &flash_info[0]);	}	if (flash_info[0].flash_id == FLASH_UNKNOWN) {		printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n",		size_b0, size_b0<<20);		return 0;	}	/* Only one bank */	if (CFG_MAX_FLASH_BANKS == 1) {		/* Setup offsets */		flash_get_offsets ((ulong)flash_base, &flash_info[0]);		/* Monitor protection ON by default */		(void)flash_protect(FLAG_PROTECT_SET, CFG_MONITOR_BASE,			CFG_MONITOR_BASE+CFG_MONITOR_LEN-1, &flash_info[0]);		size_b1 = 0 ;		flash_info[0].size = size_b0;		return(size_b0);	}	/* We have 2 banks */	size_b1 = flash_get_size(flash_base, &flash_info[1]);	/* Re-do sizing to get full correct info */	if (size_b1) {		mtdcr(ebccfga, pb0cr);		pbcr = mfdcr(ebccfgd);		mtdcr(ebccfga, pb0cr);		base_b1 = -size_b1;		pbcr = (pbcr & 0x0001ffff) | base_b1 | (((size_b1/1024/1024)-1)<<17);		mtdcr(ebccfgd, pbcr);	}	if (size_b0) {		mtdcr(ebccfga, pb1cr);		pbcr = mfdcr(ebccfgd);		mtdcr(ebccfga, pb1cr);		base_b0 = base_b1 - size_b0;		pbcr = (pbcr & 0x0001ffff) | base_b0 | (((size_b0/1024/1024)-1)<<17);		mtdcr(ebccfgd, pbcr);	}	size_b0 = flash_get_size((volatile FLASH_WORD_SIZE *)base_b0, &flash_info[0]);	flash_get_offsets (base_b0, &flash_info[0]);	/* monitor protection ON by default */	(void)flash_protect(FLAG_PROTECT_SET, CFG_MONITOR_BASE,		CFG_MONITOR_BASE+CFG_MONITOR_LEN-1, &flash_info[0]);	if (size_b1) {		/* Re-do sizing to get full correct info */		size_b1 = flash_get_size((volatile FLASH_WORD_SIZE *)base_b1, &flash_info[1]);		flash_get_offsets (base_b1, &flash_info[1]);		/* monitor protection ON by default */		(void)flash_protect(FLAG_PROTECT_SET, base_b1+size_b1-CFG_MONITOR_LEN,			base_b1+size_b1-1, &flash_info[1]);		/* monitor protection OFF by default (one is enough) */		(void)flash_protect(FLAG_PROTECT_CLEAR, base_b0+size_b0-CFG_MONITOR_LEN,			base_b0+size_b0-1, &flash_info[0]);	} else {		flash_info[1].flash_id = FLASH_UNKNOWN;		flash_info[1].sector_count = -1;	}	flash_info[0].size = size_b0;	flash_info[1].size = size_b1;	return (size_b0 + size_b1);}/*----------------------------------------------------------------------- This code is specific to the AM29DL163/AM29DL232 for the QS850/QS823. */static void flash_get_offsets (ulong base, flash_info_t *info){	int i;	long large_sect_size;	long small_sect_size;	/* set up sector start adress table */	large_sect_size = info->size / (info->sector_count - 8 + 1);	small_sect_size = large_sect_size / 8;	if (info->flash_id & FLASH_BTYPE) {		/* set sector offsets for bottom boot block type */		for (i = 0; i < 7; i++) {			info->start[i] = base;			base += small_sect_size;		}		for (; i < info->sector_count; i++) {			info->start[i] = base;			base += large_sect_size;		}	}	else	{		/* set sector offsets for top boot block type */		for (i = 0; i < (info->sector_count - 8); i++) {			info->start[i] = base;			base += large_sect_size;		}		for (; i < info->sector_count; i++) {			info->start[i] = base;			base += small_sect_size;		}	}}/*----------------------------------------------------------------------- */void flash_print_info  (flash_info_t *info){	int i;	uchar *boottype;	uchar botboot[]=", bottom boot sect)\n";	uchar topboot[]=", top boot sector)\n";	if (info->flash_id == FLASH_UNKNOWN) {		printf ("missing or unknown FLASH type\n");		return;	}	switch (info->flash_id & FLASH_VENDMASK) {		case FLASH_MAN_AMD:			printf ("AMD ");			break;		case FLASH_MAN_FUJ:			printf ("FUJITSU ");			break;		case FLASH_MAN_SST:			printf ("SST ");			break;		case FLASH_MAN_STM:			printf ("STM ");			break;		case FLASH_MAN_INTEL:			printf ("INTEL ");			break;		default:			printf ("Unknown Vendor ");			break;	}	if (info->flash_id & 0x0001 ) {		boottype = botboot;	} else {		boottype = topboot;	}	switch (info->flash_id & FLASH_TYPEMASK) {		case FLASH_AM160B:			printf ("AM29LV160B (16 Mbit%s",boottype);			break;		case FLASH_AM160T:			printf ("AM29LV160T (16 Mbit%s",boottype);			break;		case FLASH_AMDL163T:			printf ("AM29DL163T (16 Mbit%s",boottype);			break;		case FLASH_AMDL163B:			printf ("AM29DL163B (16 Mbit%s",boottype);			break;		case FLASH_AM320B:			printf ("AM29LV320B (32 Mbit%s",boottype);			break;		case FLASH_AM320T:			printf ("AM29LV320T (32 Mbit%s",boottype);			break;		case FLASH_AMDL323T:			printf ("AM29DL323T (32 Mbit%s",boottype);			break;		case FLASH_AMDL323B:			printf ("AM29DL323B (32 Mbit%s",boottype);			break;		case FLASH_AMDL322T:			printf ("AM29DL322T (32 Mbit%s",boottype);			break;		default:			printf ("Unknown Chip Type\n");			break;	}	printf ("  Size: %ld MB in %d Sectors\n",	info->size >> 20, info->sector_count);	printf ("  Sector Start Addresses:");	for (i=0; i<info->sector_count; ++i) {		if ((i % 5) == 0)			printf ("\n   ");		printf (" %08lX%s", info->start[i],			info->protect[i] ? " (RO)" : "     ");	}	printf ("\n");	return;}/*----------------------------------------------------------------------- * The following code cannot be run from FLASH! */ulong flash_get_size (volatile FLASH_WORD_SIZE *addr, flash_info_t *info){	short i;	ulong base = (ulong)addr;	FLASH_WORD_SIZE value;	/* Write auto select command: read Manufacturer ID */	/*	 * Note: if it is an AMD flash and the word at addr[0000]	 * is 0x00890089 this routine will think it is an Intel	 * flash device and may(most likely) cause trouble.	 */	addr[0x0000] = 0x00900090;	if(addr[0x0000] != 0x00890089){		addr[0x0555] = 0x00AA00AA;		addr[0x02AA] = 0x00550055;		addr[0x0555] = 0x00900090;	}	value = addr[0];	switch (value) {		case (AMD_MANUFACT & FLASH_ID_MASK):			info->flash_id = FLASH_MAN_AMD;			break;		case (FUJ_MANUFACT & FLASH_ID_MASK):			info->flash_id = FLASH_MAN_FUJ;			break;		case (STM_MANUFACT & FLASH_ID_MASK):			info->flash_id = FLASH_MAN_STM;			break;		case (SST_MANUFACT & FLASH_ID_MASK):			info->flash_id = FLASH_MAN_SST;			break;		case (INTEL_MANUFACT & FLASH_ID_MASK):			info->flash_id = FLASH_MAN_INTEL;			break;		default:			info->flash_id = FLASH_UNKNOWN;			info->sector_count = 0;			info->size = 0;			return (0); /* no or unknown flash */	}	value = addr[1]; /* device ID */	switch (value) {		case (AMD_ID_LV160T & FLASH_ID_MASK):			info->flash_id += FLASH_AM160T;			info->sector_count = 35;			info->size = 0x00400000;			break; /* => 4 MB */		case (AMD_ID_LV160B & FLASH_ID_MASK):			info->flash_id += FLASH_AM160B;			info->sector_count = 35;			info->size = 0x00400000;			break; /* => 4 MB */		case (AMD_ID_DL163T & FLASH_ID_MASK):			info->flash_id += FLASH_AMDL163T;			info->sector_count = 39;			info->size = 0x00400000;			break; /* => 4 MB */		case (AMD_ID_DL163B & FLASH_ID_MASK):			info->flash_id += FLASH_AMDL163B;			info->sector_count = 39;			info->size = 0x00400000;			break; /* => 4 MB */		case (AMD_ID_DL323T & FLASH_ID_MASK):			info->flash_id += FLASH_AMDL323T;			info->sector_count = 71;			info->size = 0x00800000;			break; /* => 8 MB */		case (AMD_ID_DL323B & FLASH_ID_MASK):			info->flash_id += FLASH_AMDL323B;			info->sector_count = 71;			info->size = 0x00800000;			break; /* => 8 MB */		case (AMD_ID_DL322T & FLASH_ID_MASK):			info->flash_id += FLASH_AMDL322T;			info->sector_count = 71;			info->size = 0x00800000;			break; /* => 8 MB */		default:			/* FIXME*/			info->flash_id = FLASH_UNKNOWN;			return (0); /* => no or unknown flash */	}	flash_get_offsets(base, info);	/* check for protected sectors */	for (i = 0; i < info->sector_count; i++) {		/* read sector protection at sector address, (A7 .. A0) = 0x02 */		/* D0 = 1 if protected */		addr = (volatile FLASH_WORD_SIZE *)(info->start[i]);		info->protect[i] = addr[2] & 1;	}	/*	 * Prevent writes to uninitialized FLASH.	 */	if (info->flash_id != FLASH_UNKNOWN) {		addr = (volatile FLASH_WORD_SIZE *)info->start[0];		*addr = (0x00FF00FF & FLASH_ID_MASK);	/* reset bank */	}	return (info->size);}/*----------------------------------------------------------------------- */int flash_erase (flash_info_t *info, int s_first, int s_last){	volatile FLASH_WORD_SIZE *addr=(volatile FLASH_WORD_SIZE*)(info->start[0]);	int flag, prot, sect, l_sect;	ulong start, now, last;	int rcode = 0;	if ((s_first < 0) || (s_first > s_last)) {		if (info->flash_id == FLASH_UNKNOWN) {			printf ("- missing\n");		} else {			printf ("- no sectors to erase\n");		}		return 1;	}	if ((info->flash_id == FLASH_UNKNOWN) ||		(info->flash_id > FLASH_AMD_COMP) ) {		printf ("Can't erase unknown flash type - aborted\n");		return 1;	}	prot = 0;	for (sect=s_first; sect<=s_last; ++sect) {		if (info->protect[sect]) {			prot++;		}	}	if (prot) {		printf ("- Warning: %d protected sectors will not be erased!\n",			prot);	} else {		printf ("\n");	}	l_sect = -1;	/* Disable interrupts which might cause a timeout here */	flag = disable_interrupts();	addr[0x0555] = 0x00AA00AA;	addr[0x02AA] = 0x00550055;	addr[0x0555] = 0x00800080;	addr[0x0555] = 0x00AA00AA;	addr[0x02AA] = 0x00550055;	/* Start erase on unprotected sectors */	for (sect = s_first; sect<=s_last; sect++) {		if (info->protect[sect] == 0) { /* not protected */			addr = (volatile FLASH_WORD_SIZE *)(info->start[sect]);			addr[0] = (0x00300030 & FLASH_ID_MASK);			l_sect = sect;		}	}	/* re-enable interrupts if necessary */	if (flag)		enable_interrupts();	/* wait at least 80us - let's wait 1 ms */	udelay (1000);	/*	 * We wait for the last triggered sector	 */	if (l_sect < 0)		goto DONE;	start = get_timer (0);	last  = start;	addr = (volatile FLASH_WORD_SIZE*)(info->start[l_sect]);	while ((addr[0] & (0x00800080&FLASH_ID_MASK)) !=			(0x00800080&FLASH_ID_MASK)  )	{		if ((now = get_timer(start)) > CFG_FLASH_ERASE_TOUT) {			printf ("Timeout\n");			return 1;		}		/* show that we're waiting */		if ((now - last) > 1000) { /* every second */			serial_putc ('.');			last = now;		}	}DONE:	/* reset to read mode */	addr = (volatile FLASH_WORD_SIZE *)info->start[0];	addr[0] = (0x00F000F0 & FLASH_ID_MASK); /* reset bank */	printf (" done\n");	return rcode;}/*----------------------------------------------------------------------- * Copy memory to flash, returns: * 0 - OK * 1 - write timeout * 2 - Flash not erased */int write_buff (flash_info_t *info, uchar *src, ulong addr, ulong cnt){	ulong cp, wp, data;	int l;	int i, rc;	wp = (addr & ~3); /* get lower word aligned address */	/*	 * handle unaligned start bytes	 */	if ((l = addr - wp) != 0) {		data = 0;		for (i=0, cp=wp; i<l; ++i, ++cp) {			data = (data << 8) | (*(uchar *)cp);		}		for (; i<4 && cnt>0; ++i) {			data = (data << 8) | *src++;			--cnt;			++cp;		}		for (; cnt==0 && i<4; ++i, ++cp) {			data = (data << 8) | (*(uchar *)cp);		}		if ((rc = write_word(info, wp, data)) != 0) {			return (rc);		}		wp += 4;	}	/*	 * handle word aligned part	 */	while (cnt >= 4) {		data = 0;		for (i=0; i<4; ++i) {			data = (data << 8) | *src++;		}		if ((rc = write_word(info, wp, data)) != 0) {			return (rc);		}		wp  += 4;		cnt -= 4;	}	if (cnt == 0) {		return (0);	}	/*	 * handle unaligned tail bytes	 */	data = 0;	for (i=0, cp=wp; i<4 && cnt>0; ++i, ++cp) {		data = (data << 8) | *src++;		--cnt;	}	for (; i<4; ++i, ++cp) {		data = (data << 8) | (*(uchar *)cp);	}	return (write_word(info, wp, data));}/*----------------------------------------------------------------------- * Write a word to Flash, returns: * 0 - OK * 1 - write timeout * 2 - Flash not erased */static int write_word (flash_info_t *info, ulong dest, ulong data){	vu_long *addr = (vu_long*)(info->start[0]);	ulong start;	int flag;	/* Check if Flash is (sufficiently) erased */	if ((*((vu_long *)dest) & data) != data) {		return (2);	}	/* Disable interrupts which might cause a timeout here */	flag = disable_interrupts();	/* AMD stuff */	addr[0x0555] = 0x00AA00AA;	addr[0x02AA] = 0x00550055;	addr[0x0555] = 0x00A000A0;	*((vu_long *)dest) = data;	/* re-enable interrupts if necessary */	if (flag)		enable_interrupts();	/* data polling for D7 */	start = get_timer(0);	while ((*((vu_long *)dest) & 0x00800080) != (data & 0x00800080)) {		if (get_timer(start) > CFG_FLASH_WRITE_TOUT) {			return (1);		}	}	return (0);}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99re成人在线| 欧美日韩一级黄| 一区二区三区四区在线播放 | 国产一区二区福利视频| 亚洲国产精品人人做人人爽| 精品国产乱码久久久久久久 | 五月综合激情网| 亚洲欧美区自拍先锋| 欧美精品一区二区三区久久久| 欧美日韩大陆在线| 欧洲亚洲国产日韩| 成人精品鲁一区一区二区| 久久99久久精品| 久久疯狂做爰流白浆xx| 午夜欧美电影在线观看| 亚洲第一久久影院| 亚洲高清三级视频| 亚洲综合图片区| 亚洲成人久久影院| 天天综合色天天综合色h| 亚洲国产日日夜夜| 一区二区三区中文字幕精品精品| 国产精品久久久久影院色老大 | 欧美肥妇毛茸茸| 欧美伊人久久大香线蕉综合69| 99国产一区二区三精品乱码| av在线播放成人| 91香蕉视频污在线| 在线免费亚洲电影| 欧美日韩另类一区| 精品美女在线观看| 久久九九99视频| 国产精品二三区| 国产精品久99| 亚洲一区免费在线观看| 亚洲va国产天堂va久久en| 性久久久久久久久| 久久精品99国产精品日本| 精品一区二区三区影院在线午夜| 国内一区二区在线| 99re这里只有精品6| 欧美日韩一区二区欧美激情| 日韩视频一区在线观看| 国产三级三级三级精品8ⅰ区| 国产日韩在线不卡| 亚洲精品一二三四区| 日韩精品一二三四| 成人看片黄a免费看在线| 色94色欧美sute亚洲线路一ni| 欧美精品色一区二区三区| 2017欧美狠狠色| ...xxx性欧美| 国产成人免费高清| 精品久久久久久无| 亚洲一二三区在线观看| heyzo一本久久综合| 欧美videossexotv100| 午夜激情一区二区三区| 成人av免费在线观看| 精品国产污网站| 麻豆91在线播放免费| 欧美日韩精品福利| 亚洲永久免费av| 色域天天综合网| 亚洲欧美综合在线精品| 风间由美一区二区av101| 精品国产污污免费网站入口| 日本不卡一二三| 欧美久久久久免费| 午夜婷婷国产麻豆精品| 欧美色爱综合网| 亚洲一区欧美一区| 欧美日韩中文字幕一区| 午夜精品久久久久久久久久| 欧美日韩高清不卡| 日精品一区二区| 91麻豆精品国产91久久久使用方法 | 亚洲久草在线视频| 99久久精品免费| 亚洲色图欧洲色图| 日本道色综合久久| 一区二区三区在线视频免费观看 | 亚洲午夜一区二区三区| 欧美综合在线视频| 午夜精品国产更新| 精品日韩一区二区| 粉嫩嫩av羞羞动漫久久久| 中文字幕欧美国产| 色诱视频网站一区| 天天射综合影视| 欧美不卡一二三| 国产不卡一区视频| 亚洲日本乱码在线观看| 欧美日韩成人综合天天影院 | 国产精品一卡二卡在线观看| 亚洲国产精品ⅴa在线观看| 成年人国产精品| 性久久久久久久久| 精品嫩草影院久久| 国产91清纯白嫩初高中在线观看| 国产精品乱码人人做人人爱 | 国产精品免费丝袜| 色综合一个色综合亚洲| 亚洲h在线观看| 欧美大片在线观看一区| 成人丝袜18视频在线观看| 亚洲视频在线观看三级| 在线观看亚洲成人| 久久国产人妖系列| 亚洲欧洲av在线| 欧美一区二区三区免费视频| 国产精品影视天天线| 亚洲精品亚洲人成人网在线播放| 3atv一区二区三区| 成人午夜大片免费观看| 香蕉加勒比综合久久| 国产精品视频一二三区| 欧美一区二区三区日韩| 国产成人精品aa毛片| 亚洲午夜久久久久中文字幕久| 日韩一区二区电影网| 99r精品视频| 韩国v欧美v日本v亚洲v| 亚洲愉拍自拍另类高清精品| 久久婷婷国产综合精品青草| 色狠狠av一区二区三区| 国产乱人伦精品一区二区在线观看 | 精品国产亚洲在线| 欧美色区777第一页| 国产91在线观看丝袜| 蜜桃视频免费观看一区| 一区二区在线观看免费| 久久这里都是精品| 欧美一二三区精品| 欧美日韩中字一区| 日本精品裸体写真集在线观看| 国产高清在线精品| 欧美96一区二区免费视频| 亚洲资源在线观看| 亚洲另类春色国产| 亚洲人成电影网站色mp4| 国产午夜精品久久久久久免费视| 日韩一级视频免费观看在线| 欧美午夜精品久久久久久孕妇 | 欧美日高清视频| 色综合久久综合网97色综合| 成人晚上爱看视频| 国产suv一区二区三区88区| 狠狠色综合日日| 久久99精品网久久| 久久er99精品| 精品一区二区在线看| 久久精品国产一区二区| 久久精品久久精品| 精品一区二区日韩| 国产在线播放一区二区三区| 老色鬼精品视频在线观看播放| 美女一区二区在线观看| 精品一区二区三区香蕉蜜桃| 国产在线精品一区二区三区不卡 | 国产精品污污网站在线观看| 欧美一区永久视频免费观看| 欧美日韩精品一区二区三区蜜桃 | 国产精品免费免费| 国产精品久久久久精k8| 亚洲图片你懂的| 亚洲国产欧美在线| 日本va欧美va精品发布| 久久精品国产一区二区三区免费看 | 91性感美女视频| 欧美日韩三级在线| 日韩一区二区在线观看| 久久精品一区二区三区av| 中文字幕在线不卡一区二区三区| 亚洲欧美国产三级| 午夜婷婷国产麻豆精品| 久久99国产精品成人| 成人午夜在线视频| 欧美日韩免费电影| 国产亚洲一二三区| 国产精品色一区二区三区| 夜夜嗨av一区二区三区四季av| 欧美aⅴ一区二区三区视频| 成人午夜免费av| 欧美日韩国产美女| 久久一区二区视频| 亚洲色图欧美在线| 美日韩黄色大片| 色综合天天综合| 精品国产三级a在线观看| 亚洲三级久久久| 蜜臀va亚洲va欧美va天堂| 99re成人在线| 精品国产乱码久久久久久免费| 亚洲欧美日韩人成在线播放| 久久精品噜噜噜成人av农村| 色婷婷av一区二区三区大白胸| 日韩免费观看高清完整版 | 老司机午夜精品99久久| www.99精品|