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

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

?? flash.c

?? gumstiz u-boot loader in linux
?? C
字號:
/* * (C) Copyright 2000-2004 * 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 <mpc8xx.h>#ifndef	CFG_ENV_ADDR#define CFG_ENV_ADDR	(CFG_FLASH_BASE + CFG_ENV_OFFSET)#endif#define CONFIG_FLASH_16BITflash_info_t	flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips	*//*----------------------------------------------------------------------- * Functions */static ulong flash_get_size (vu_long *addr, flash_info_t *info);static int write_word (flash_info_t *info, ulong dest, ulong data);/*----------------------------------------------------------------------- */unsigned long flash_init (void){	volatile immap_t     *immap  = (immap_t *)CFG_IMMR;	volatile memctl8xx_t *memctl = &immap->im_memctl;	unsigned long size_b0;	int i;	/* 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 - FIXME XXX */	size_b0 = flash_get_size((vu_long *)FLASH_BASE0_PRELIM, &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);	}	/* Remap FLASH according to real size */	memctl->memc_or0 = CFG_OR_TIMING_FLASH | (-size_b0 & OR_AM_MSK);	memctl->memc_br0 = (CFG_FLASH_BASE & BR_BA_MSK) | BR_MS_GPCM | BR_V | BR_PS_16;	/* Re-do sizing to get full correct info */	size_b0 = flash_get_size((vu_long *)CFG_FLASH_BASE, &flash_info[0]);#if CFG_MONITOR_BASE >= CFG_FLASH_BASE	/* monitor protection ON by default */	flash_protect(FLAG_PROTECT_SET,		      CFG_MONITOR_BASE,		      CFG_MONITOR_BASE+monitor_flash_len-1,		      &flash_info[0]);#endif#ifdef	CFG_ENV_IS_IN_FLASH	/* ENV protection ON by default */	flash_protect(FLAG_PROTECT_SET,		      CFG_ENV_ADDR,		      CFG_ENV_ADDR+CFG_ENV_SIZE-1,		      &flash_info[0]);#endif	flash_info[0].size = size_b0;	return (size_b0);}/*----------------------------------------------------------------------- */void flash_print_info  (flash_info_t *info){	int i;	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;	default:		printf ("Unknown Vendor ");	break;	}	switch (info->flash_id & FLASH_TYPEMASK) {	case FLASH_AM400B:	printf ("AM29LV400B (4 Mbit, bottom boot sect)\n");				break;	case FLASH_AM400T:	printf ("AM29LV400T (4 Mbit, top boot sector)\n");				break;	case FLASH_AM800B:	printf ("AM29LV800B (8 Mbit, bottom boot sect)\n");				break;	case FLASH_AM800T:	printf ("AM29LV800T (8 Mbit, top boot sector)\n");				break;	case FLASH_AM160B:	printf ("AM29LV160B (16 Mbit, bottom boot sect)\n");				break;	case FLASH_AM160T:	printf ("AM29LV160T (16 Mbit, top boot sector)\n");				break;	case FLASH_AM320B:	printf ("AM29LV320B (32 Mbit, bottom boot sect)\n");				break;	case FLASH_AM320T:	printf ("AM29LV320T (32 Mbit, top boot sector)\n");				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! */static ulong flash_get_size (vu_long *addr, flash_info_t *info){	short i;	ulong value;	ulong base = (ulong)addr;	/* Write auto select command: read Manufacturer ID */	vu_short *s_addr=(vu_short*)addr;	s_addr[0x5555] = 0x00AA;	s_addr[0x2AAA] = 0x0055;	s_addr[0x5555] = 0x0090;	value = s_addr[0];	value = value|(value<<16);	switch (value) {	case AMD_MANUFACT:		info->flash_id = FLASH_MAN_AMD;		break;	case FUJ_MANUFACT:		info->flash_id = FLASH_MAN_FUJ;		break;	default:		info->flash_id = FLASH_UNKNOWN;		info->sector_count = 0;		info->size = 0;		return (0);			/* no or unknown flash	*/	}	value = s_addr[1];	value = value|(value<<16);		switch (value) {	case FUJI_ID_29F800BA:		info->flash_id += FLASH_AM400T;		info->sector_count = 19;		info->size = 0x00100000;		break;				/* => 1 MB		*/	case AMD_ID_LV800T:		info->flash_id += FLASH_AM800T;		info->sector_count = 19;		info->size = 0x00100000;		break;				/* => 1 MB		*/	case AMD_ID_LV800B:		info->flash_id += FLASH_AM800B;		info->sector_count = 19;		info->size = 0x00100000;		break;				/* => 1 MB		*/	default:		info->flash_id = FLASH_UNKNOWN;		return (0);			/* => no or unknown flash */	}	/* set up sector start address table */	/* set sector offsets for bottom boot block type	*/	info->start[0] = base + 0x00000000;	info->start[1] = base + 0x00004000;	info->start[2] = base + 0x00006000;	info->start[3] = base + 0x00008000;	for (i = 4; i < info->sector_count; i++) {		info->start[i] = base + (i * 0x00010000) - 0x00030000;	}	/* 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 */		s_addr = (volatile unsigned short *)(info->start[i]);		info->protect[i] = s_addr[2] & 1;	}	/*	 * Prevent writes to uninitialized FLASH.	 */	if (info->flash_id != FLASH_UNKNOWN) {		s_addr = (volatile unsigned short *)info->start[0];		*s_addr = 0x00F0;	/* reset bank */	}	return (info->size);}/*----------------------------------------------------------------------- */int	flash_erase (flash_info_t *info, int s_first, int s_last){	vu_long *addr = (vu_long*)(info->start[0]);	int flag, prot, sect;	ulong start, now, last;#ifdef CONFIG_FLASH_16BIT	vu_short *s_addr = (vu_short*)addr;#endif	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;	}/*#ifndef CONFIG_FLASH_16BIT	ulong type;	type = (info->flash_id & FLASH_VENDMASK);	if ((type != FLASH_MAN_SST) && (type != FLASH_MAN_STM)) {		printf ("Can't erase unknown flash type %08lx - aborted\n",			info->flash_id);		return;	}#endif*/	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");	}	start = get_timer (0);	last  = start;	/* Start erase on unprotected sectors */	for (sect = s_first; sect<=s_last; sect++) {		if (info->protect[sect] == 0) {	/* not protected */#ifdef CONFIG_FLASH_16BIT			vu_short *s_sect_addr = (vu_short*)(info->start[sect]);#else			vu_long	*sect_addr = (vu_long*)(info->start[sect]);#endif			/* Disable interrupts which might cause a timeout here */			flag = disable_interrupts();#ifdef CONFIG_FLASH_16BIT			/*printf("\ns_sect_addr=%x",s_sect_addr);*/			s_addr[0x5555] = 0x00AA;			s_addr[0x2AAA] = 0x0055;			s_addr[0x5555] = 0x0080;			s_addr[0x5555] = 0x00AA;			s_addr[0x2AAA] = 0x0055;			s_sect_addr[0] = 0x0030;#else			addr[0x5555] = 0x00AA00AA;			addr[0x2AAA] = 0x00550055;			addr[0x5555] = 0x00800080;			addr[0x5555] = 0x00AA00AA;			addr[0x2AAA] = 0x00550055;			sect_addr[0] = 0x00300030;#endif			/* re-enable interrupts if necessary */			if (flag)				enable_interrupts();			/* wait at least 80us - let's wait 1 ms */			udelay (1000);#ifdef CONFIG_FLASH_16BIT			while ((s_sect_addr[0] & 0x0080) != 0x0080) {#else			while ((sect_addr[0] & 0x00800080) != 0x00800080) {#endif				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 */					putc ('.');					last = now;				}			}		}	}	/* reset to read mode */	addr = (volatile unsigned long *)info->start[0];#ifdef CONFIG_FLASH_16BIT	s_addr[0] = 0x00F0;	/* reset bank */#else	addr[0] = 0x00F000F0;	/* reset bank */#endif	printf (" done\n");	return 0;}/*----------------------------------------------------------------------- * 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 i, l, 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]);#ifdef CONFIG_FLASH_16BIT	vu_short high_data;	vu_short low_data;	vu_short *s_addr = (vu_short*)addr;#endif	ulong start;	int flag;	/* Check if Flash is (sufficiently) erased */	if ((*((vu_long *)dest) & data) != data) {		return (2);	}#ifdef CONFIG_FLASH_16BIT	/* Write the 16 higher-bits */	/* Disable interrupts which might cause a timeout here */	flag = disable_interrupts();	high_data = ((data>>16) & 0x0000ffff);	s_addr[0x5555] = 0x00AA;	s_addr[0x2AAA] = 0x0055;	s_addr[0x5555] = 0x00A0;	*((vu_short *)dest) = high_data;	/* re-enable interrupts if necessary */	if (flag)		enable_interrupts();	/* data polling for D7 */	start = get_timer (0);	while ((*((vu_short *)dest) & 0x0080) != (high_data & 0x0080)) {		if (get_timer(start) > CFG_FLASH_WRITE_TOUT) {			return (1);		}	}	/* Write the 16 lower-bits */#endif	/* Disable interrupts which might cause a timeout here */	flag = disable_interrupts();#ifdef CONFIG_FLASH_16BIT	dest += 0x2;	low_data = (data & 0x0000ffff);	s_addr[0x5555] = 0x00AA;	s_addr[0x2AAA] = 0x0055;	s_addr[0x5555] = 0x00A0;	*((vu_short *)dest) = low_data;#else	addr[0x5555] = 0x00AA00AA;	addr[0x2AAA] = 0x00550055;	addr[0x5555] = 0x00A000A0;	*((vu_long *)dest) = data;#endif	/* re-enable interrupts if necessary */	if (flag)		enable_interrupts();	/* data polling for D7 */	start = get_timer (0);#ifdef CONFIG_FLASH_16BIT	while ((*((vu_short *)dest) & 0x0080) != (low_data & 0x0080)) {#else	while ((*((vu_long *)dest) & 0x00800080) != (data & 0x00800080)) {#endif		if (get_timer(start) > CFG_FLASH_WRITE_TOUT) {			return (1);		}	}	return (0);}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
美女诱惑一区二区| 色欧美片视频在线观看| 日本强好片久久久久久aaa| 一区二区三区在线视频免费| 国产精品女同一区二区三区| 久久久久久久精| 337p粉嫩大胆色噜噜噜噜亚洲 | 国产女人18毛片水真多成人如厕| 欧美大片在线观看一区| 日韩欧美一二三| 欧美成人video| 久久久久久免费| 国产亲近乱来精品视频| 国产欧美日韩麻豆91| 中文字幕高清不卡| 18成人在线视频| 一区二区三区四区国产精品| 一区二区在线观看视频在线观看| 夜夜爽夜夜爽精品视频| 亚洲成人激情自拍| 免费在线视频一区| 国产精品资源在线看| 成人午夜激情影院| 99麻豆久久久国产精品免费| 一本色道久久综合狠狠躁的推荐| 色综合一区二区| 欧美日韩国产高清一区| 日韩视频一区二区三区在线播放 | 亚洲综合色网站| 日韩成人免费在线| 国产精品一区二区三区网站| 成人av网站免费| 欧美日韩久久不卡| 精品999久久久| 亚洲欧美中日韩| 丝袜脚交一区二区| 激情六月婷婷综合| 成人国产电影网| 欧美性生活大片视频| 欧美大度的电影原声| 国产精品美女久久久久高潮| 亚洲激情图片一区| 国产综合色产在线精品| 99久免费精品视频在线观看| 欧美色男人天堂| 久久九九99视频| 亚洲超碰精品一区二区| 国产伦理精品不卡| 欧美视频中文字幕| 久久久精品免费网站| 亚洲在线视频网站| 国产福利视频一区二区三区| 欧美在线|欧美| 久久久99久久| 性做久久久久久| 成人app在线观看| 日韩一级成人av| 亚洲欧美另类小说| 国产揄拍国内精品对白| 在线观看视频欧美| 国产日韩欧美一区二区三区综合| 亚洲一区二区三区自拍| 国产成人在线免费| 欧美精品乱人伦久久久久久| 国产农村妇女毛片精品久久麻豆 | 亚洲欧洲精品一区二区三区不卡| 视频一区视频二区中文字幕| 不卡av电影在线播放| 欧美一区二区三区思思人| 综合久久综合久久| 久久97超碰国产精品超碰| 欧美性大战久久久| 国产精品国产a级| 激情偷乱视频一区二区三区| 欧美日韩精品免费| 亚洲婷婷在线视频| 国产精品18久久久久久久久久久久 | 日韩在线观看一区二区| 99精品国产热久久91蜜凸| ww亚洲ww在线观看国产| 日韩av电影天堂| 欧美在线一区二区三区| 国产精品高潮呻吟| 高清国产一区二区三区| 欧美精品一区男女天堂| 日本中文字幕一区二区视频| 91传媒视频在线播放| 国产精品女人毛片| 国产99久久久久久免费看农村| 日韩精品中文字幕在线一区| 丝袜美腿亚洲综合| 欧美精品v国产精品v日韩精品| 一区二区三区欧美在线观看| 99国内精品久久| 中文字幕中文在线不卡住| 国产成人丝袜美腿| 国产视频一区二区在线| 国产又黄又大久久| 久久久久久久免费视频了| 国精产品一区一区三区mba桃花 | 亚洲精品第1页| 成人app网站| 日韩伦理免费电影| 91蜜桃网址入口| 亚洲免费观看视频| 色综合久久六月婷婷中文字幕| 欧美国产精品一区二区| 国产一区二区伦理| 精品国精品自拍自在线| 国产中文一区二区三区| 日韩美女一区二区三区| 图片区小说区区亚洲影院| 欧洲生活片亚洲生活在线观看| 国产婷婷一区二区| 国产成人免费视频网站| 久久精品一区二区三区av | 欧美高清激情brazzers| 亚洲欧美偷拍卡通变态| 色综合天天综合狠狠| 亚洲欧洲av色图| 91免费观看视频| 亚洲欧洲制服丝袜| 色综合久久久久综合99| 亚洲综合一二三区| 欧美丝袜丝nylons| 偷拍一区二区三区| 91精品国产综合久久香蕉麻豆| 天天av天天翘天天综合网色鬼国产| 91国内精品野花午夜精品| 午夜精品一区二区三区三上悠亚| 欧美日韩一级黄| 日av在线不卡| 久久综合久久综合久久综合| 国产一区在线视频| 亚洲色图在线看| 欧美人与禽zozo性伦| 琪琪一区二区三区| 日韩免费高清视频| 国产不卡视频在线播放| 中文字幕亚洲一区二区av在线 | 国产成人免费网站| 亚洲欧洲一区二区在线播放| 99在线热播精品免费| 五月天亚洲婷婷| 精品处破学生在线二十三| 国产a级毛片一区| 一区二区三区四区视频精品免费 | 国产精品污网站| 在线亚洲欧美专区二区| 五月天视频一区| 日韩精品一区二区三区四区| 成人av网址在线观看| 国产精品久久一卡二卡| 成人一级片在线观看| 亚洲美女在线一区| 欧美一区日韩一区| 成人在线视频一区二区| 亚洲三级在线播放| 欧美videossexotv100| 成人美女在线观看| 亚洲成人激情av| 久久综合资源网| 欧美日韩在线亚洲一区蜜芽| 精品中文字幕一区二区小辣椒| 国产精品久久影院| 欧美区一区二区三区| 国模大尺度一区二区三区| 亚洲电影在线免费观看| 国产欧美一区在线| 欧美视频一区二区三区四区 | 美腿丝袜在线亚洲一区| 欧美激情综合在线| 欧美吞精做爰啪啪高潮| 成人网男人的天堂| 视频一区视频二区中文| 欧美成人精品二区三区99精品| 99久精品国产| 久久成人免费日本黄色| 亚洲欧美一区二区三区久本道91 | 亚洲美女免费视频| 久久精品网站免费观看| 欧美精品在线视频| av资源站一区| 蓝色福利精品导航| 日韩精品电影在线观看| 亚洲女人的天堂| 久久久精品国产免费观看同学| 在线亚洲一区二区| 国产高清不卡一区| 日本欧美大码aⅴ在线播放| 亚洲欧洲av在线| 久久久久久97三级| 欧美日韩一区二区三区免费看| av不卡免费在线观看| 狠狠色狠狠色综合系列| 日韩综合一区二区| 亚洲精品videosex极品| 国产精品全国免费观看高清| 日韩一区二区电影在线| 欧美日韩一区二区在线观看|