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

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

?? nand_legacy.c

?? UBOOT 源碼
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* * (C) 2006 Denx * Driver for NAND support, Rick Bronson * borrowed heavily from: * (c) 1999 Machine Vision Holdings, Inc. * (c) 1999, 2000 David Woodhouse <dwmw2@infradead.org> * * Added 16-bit nand support * (C) 2004 Texas Instruments */#include <common.h>#include <command.h>#include <malloc.h>#include <asm/io.h>#include <watchdog.h>#ifdef CONFIG_SHOW_BOOT_PROGRESS# include <status_led.h># define SHOW_BOOT_PROGRESS(arg)	show_boot_progress(arg)#else# define SHOW_BOOT_PROGRESS(arg)#endif#if (CONFIG_COMMANDS & CFG_CMD_NAND) && defined(CFG_NAND_LEGACY)#include <linux/mtd/nand_legacy.h>#include <linux/mtd/nand_ids.h>#include <jffs2/jffs2.h>#ifdef CONFIG_OMAP1510void archflashwp(void *archdata, int wp);#endif#define ROUND_DOWN(value,boundary)      ((value) & (~((boundary)-1)))#undef	PSYCHO_DEBUG#undef	NAND_DEBUG/* ****************** WARNING ********************* * When ALLOW_ERASE_BAD_DEBUG is non-zero the erase command will * erase (or at least attempt to erase) blocks that are marked * bad. This can be very handy if you are _sure_ that the block * is OK, say because you marked a good block bad to test bad * block handling and you are done testing, or if you have * accidentally marked blocks bad. * * Erasing factory marked bad blocks is a _bad_ idea. If the * erase succeeds there is no reliable way to find them again, * and attempting to program or erase bad blocks can affect * the data in _other_ (good) blocks. */#define	 ALLOW_ERASE_BAD_DEBUG 0#define CONFIG_MTD_NAND_ECC  /* enable ECC */#define CONFIG_MTD_NAND_ECC_JFFS2/* bits for nand_legacy_rw() `cmd'; or together as needed */#define NANDRW_READ	0x01#define NANDRW_WRITE	0x00#define NANDRW_JFFS2	0x02#define NANDRW_JFFS2_SKIP	0x04/* * Exported variables etc. *//* Definition of the out of band configuration structure */struct nand_oob_config {	/* position of ECC bytes inside oob */	int ecc_pos[6];	/* position of  bad blk flag inside oob -1 = inactive */	int badblock_pos;	/* position of ECC valid flag inside oob -1 = inactive */	int eccvalid_pos;} oob_config = { {0}, 0, 0};struct nand_chip nand_dev_desc[CFG_MAX_NAND_DEVICE] = {{0}};int curr_device = -1; /* Current NAND Device *//* * Exported functionss */int nand_legacy_erase(struct nand_chip* nand, size_t ofs,		     size_t len, int clean);int nand_legacy_rw(struct nand_chip* nand, int cmd,		  size_t start, size_t len,		  size_t * retlen, u_char * buf);void nand_print(struct nand_chip *nand);void nand_print_bad(struct nand_chip *nand);int nand_read_oob(struct nand_chip* nand, size_t ofs, size_t len,		 size_t * retlen, u_char * buf);int nand_write_oob(struct nand_chip* nand, size_t ofs, size_t len,		 size_t * retlen, const u_char * buf);/* * Internals */static int NanD_WaitReady(struct nand_chip *nand, int ale_wait);static int nand_read_ecc(struct nand_chip *nand, size_t start, size_t len,		 size_t * retlen, u_char *buf, u_char *ecc_code);static int nand_write_ecc (struct nand_chip* nand, size_t to, size_t len,			   size_t * retlen, const u_char * buf,			   u_char * ecc_code);#ifdef CONFIG_MTD_NAND_ECCstatic int nand_correct_data (u_char *dat, u_char *read_ecc, u_char *calc_ecc);static void nand_calculate_ecc (const u_char *dat, u_char *ecc_code);#endif/* * * Function definitions * *//* returns 0 if block containing pos is OK: *		valid erase block and *		not marked bad, or no bad mark position is specified * returns 1 if marked bad or otherwise invalid */static int check_block (struct nand_chip *nand, unsigned long pos){	size_t retlen;	uint8_t oob_data;	uint16_t oob_data16[6];	int page0 = pos & (-nand->erasesize);	int page1 = page0 + nand->oobblock;	int badpos = oob_config.badblock_pos;	if (pos >= nand->totlen)		return 1;	if (badpos < 0)		return 0;	/* no way to check, assume OK */	if (nand->bus16) {		if (nand_read_oob(nand, (page0 + 0), 12, &retlen, (uint8_t *)oob_data16)		    || (oob_data16[2] & 0xff00) != 0xff00)			return 1;		if (nand_read_oob(nand, (page1 + 0), 12, &retlen, (uint8_t *)oob_data16)		    || (oob_data16[2] & 0xff00) != 0xff00)			return 1;	} else {		/* Note - bad block marker can be on first or second page */		if (nand_read_oob(nand, page0 + badpos, 1, &retlen, (unsigned char *)&oob_data)		    || oob_data != 0xff		    || nand_read_oob (nand, page1 + badpos, 1, &retlen, (unsigned char *)&oob_data)		    || oob_data != 0xff)			return 1;	}	return 0;}/* print bad blocks in NAND flash */void nand_print_bad(struct nand_chip* nand){	unsigned long pos;	for (pos = 0; pos < nand->totlen; pos += nand->erasesize) {		if (check_block(nand, pos))			printf(" 0x%8.8lx\n", pos);	}	puts("\n");}/* cmd: 0: NANDRW_WRITE			write, fail on bad block *	1: NANDRW_READ			read, fail on bad block *	2: NANDRW_WRITE | NANDRW_JFFS2	write, skip bad blocks *	3: NANDRW_READ | NANDRW_JFFS2	read, data all 0xff for bad blocks *      7: NANDRW_READ | NANDRW_JFFS2 | NANDRW_JFFS2_SKIP read, skip bad blocks */int nand_legacy_rw (struct nand_chip* nand, int cmd,		   size_t start, size_t len,		   size_t * retlen, u_char * buf){	int ret = 0, n, total = 0;	char eccbuf[6];	/* eblk (once set) is the start of the erase block containing the	 * data being processed.	 */	unsigned long eblk = ~0;	/* force mismatch on first pass */	unsigned long erasesize = nand->erasesize;	while (len) {		if ((start & (-erasesize)) != eblk) {			/* have crossed into new erase block, deal with			 * it if it is sure marked bad.			 */			eblk = start & (-erasesize); /* start of block */			if (check_block(nand, eblk)) {				if (cmd == (NANDRW_READ | NANDRW_JFFS2)) {					while (len > 0 &&					       start - eblk < erasesize) {						*(buf++) = 0xff;						++start;						++total;						--len;					}					continue;				} else if (cmd == (NANDRW_READ | NANDRW_JFFS2 | NANDRW_JFFS2_SKIP)) {					start += erasesize;					continue;				} else if (cmd == (NANDRW_WRITE | NANDRW_JFFS2)) {					/* skip bad block */					start += erasesize;					continue;				} else {					ret = 1;					break;				}			}		}		/* The ECC will not be calculated correctly if		   less than 512 is written or read */		/* Is request at least 512 bytes AND it starts on a proper boundry */		if((start != ROUND_DOWN(start, 0x200)) || (len < 0x200))			printf("Warning block writes should be at least 512 bytes and start on a 512 byte boundry\n");		if (cmd & NANDRW_READ) {			ret = nand_read_ecc(nand, start,					   min(len, eblk + erasesize - start),					   (size_t *)&n, (u_char*)buf, (u_char *)eccbuf);		} else {			ret = nand_write_ecc(nand, start,					    min(len, eblk + erasesize - start),					    (size_t *)&n, (u_char*)buf, (u_char *)eccbuf);		}		if (ret)			break;		start  += n;		buf   += n;		total += n;		len   -= n;	}	if (retlen)		*retlen = total;	return ret;}void nand_print(struct nand_chip *nand){	if (nand->numchips > 1) {		printf("%s at 0x%lx,\n"		       "\t  %d chips %s, size %d MB, \n"		       "\t  total size %ld MB, sector size %ld kB\n",		       nand->name, nand->IO_ADDR, nand->numchips,		       nand->chips_name, 1 << (nand->chipshift - 20),		       nand->totlen >> 20, nand->erasesize >> 10);	}	else {		printf("%s at 0x%lx (", nand->chips_name, nand->IO_ADDR);		print_size(nand->totlen, ", ");		print_size(nand->erasesize, " sector)\n");	}}/* ------------------------------------------------------------------------- */static int NanD_WaitReady(struct nand_chip *nand, int ale_wait){	/* This is inline, to optimise the common case, where it's ready instantly */	int ret = 0;#ifdef NAND_NO_RB	/* in config file, shorter delays currently wrap accesses */	if(ale_wait)		NAND_WAIT_READY(nand);	/* do the worst case 25us wait */	else		udelay(10);#else	/* has functional r/b signal */	NAND_WAIT_READY(nand);#endif	return ret;}/* NanD_Command: Send a flash command to the flash chip */static inline int NanD_Command(struct nand_chip *nand, unsigned char command){	unsigned long nandptr = nand->IO_ADDR;	/* Assert the CLE (Command Latch Enable) line to the flash chip */	NAND_CTL_SETCLE(nandptr);	/* Send the command */	WRITE_NAND_COMMAND(command, nandptr);	/* Lower the CLE line */	NAND_CTL_CLRCLE(nandptr);#ifdef NAND_NO_RB	if(command == NAND_CMD_RESET){		u_char ret_val;		NanD_Command(nand, NAND_CMD_STATUS);		do {			ret_val = READ_NAND(nandptr);/* wait till ready */		} while((ret_val & 0x40) != 0x40);	}#endif	return NanD_WaitReady(nand, 0);}/* NanD_Address: Set the current address for the flash chip */static int NanD_Address(struct nand_chip *nand, int numbytes, unsigned long ofs){	unsigned long nandptr;	int i;	nandptr = nand->IO_ADDR;	/* Assert the ALE (Address Latch Enable) line to the flash chip */	NAND_CTL_SETALE(nandptr);	/* Send the address */	/* Devices with 256-byte page are addressed as:	 * Column (bits 0-7), Page (bits 8-15, 16-23, 24-31)	 * there is no device on the market with page256	 * and more than 24 bits.	 * Devices with 512-byte page are addressed as:	 * Column (bits 0-7), Page (bits 9-16, 17-24, 25-31)	 * 25-31 is sent only if the chip support it.	 * bit 8 changes the read command to be sent	 * (NAND_CMD_READ0 or NAND_CMD_READ1).	 */	if (numbytes == ADDR_COLUMN || numbytes == ADDR_COLUMN_PAGE)		WRITE_NAND_ADDRESS(ofs, nandptr);	ofs = ofs >> nand->page_shift;	if (numbytes == ADDR_PAGE || numbytes == ADDR_COLUMN_PAGE) {		for (i = 0; i < nand->pageadrlen; i++, ofs = ofs >> 8) {			WRITE_NAND_ADDRESS(ofs, nandptr);		}	}	/* Lower the ALE line */	NAND_CTL_CLRALE(nandptr);	/* Wait for the chip to respond */	return NanD_WaitReady(nand, 1);}/* NanD_SelectChip: Select a given flash chip within the current floor */static inline int NanD_SelectChip(struct nand_chip *nand, int chip){	/* Wait for it to be ready */	return NanD_WaitReady(nand, 0);}/* NanD_IdentChip: Identify a given NAND chip given {floor,chip} */static int NanD_IdentChip(struct nand_chip *nand, int floor, int chip){	int mfr, id, i;	NAND_ENABLE_CE(nand);  /* set pin low */	/* Reset the chip */	if (NanD_Command(nand, NAND_CMD_RESET)) {#ifdef NAND_DEBUG		printf("NanD_Command (reset) for %d,%d returned true\n",		       floor, chip);#endif		NAND_DISABLE_CE(nand);  /* set pin high */		return 0;	}	/* Read the NAND chip ID: 1. Send ReadID command */	if (NanD_Command(nand, NAND_CMD_READID)) {#ifdef NAND_DEBUG		printf("NanD_Command (ReadID) for %d,%d returned true\n",		       floor, chip);#endif		NAND_DISABLE_CE(nand);  /* set pin high */		return 0;	}	/* Read the NAND chip ID: 2. Send address byte zero */	NanD_Address(nand, ADDR_COLUMN, 0);	/* Read the manufacturer and device id codes from the device */	mfr = READ_NAND(nand->IO_ADDR);	id = READ_NAND(nand->IO_ADDR);	NAND_DISABLE_CE(nand);  /* set pin high */#ifdef NAND_DEBUG	printf("NanD_Command (ReadID) got %x %x\n", mfr, id);#endif	if (mfr == 0xff || mfr == 0) {		/* No response - return failure */		return 0;	}	/* Check it's the same as the first chip we identified.	 * M-Systems say that any given nand_chip device should only	 * contain _one_ type of flash part, although that's not a	 * hardware restriction. */	if (nand->mfr) {		if (nand->mfr == mfr && nand->id == id) {			return 1;	/* This is another the same the first */		} else {			printf("Flash chip at floor %d, chip %d is different:\n",			       floor, chip);		}	}	/* Print and store the manufacturer and ID codes. */	for (i = 0; nand_flash_ids[i].name != NULL; i++) {		if (mfr == nand_flash_ids[i].manufacture_id &&		    id == nand_flash_ids[i].model_id) {#ifdef NAND_DEBUG			printf("Flash chip found:\n\t Manufacturer ID: 0x%2.2X, "			       "Chip ID: 0x%2.2X (%s)\n", mfr, id,			       nand_flash_ids[i].name);#endif			if (!nand->mfr) {				nand->mfr = mfr;				nand->id = id;				nand->chipshift =				    nand_flash_ids[i].chipshift;				nand->page256 = nand_flash_ids[i].page256;				nand->eccsize = 256;				if (nand->page256) {					nand->oobblock = 256;					nand->oobsize = 8;					nand->page_shift = 8;				} else {					nand->oobblock = 512;					nand->oobsize = 16;					nand->page_shift = 9;				}				nand->pageadrlen = nand_flash_ids[i].pageadrlen;				nand->erasesize  = nand_flash_ids[i].erasesize;				nand->chips_name = nand_flash_ids[i].name;				nand->bus16	 = nand_flash_ids[i].bus16; 				return 1;			}			return 0;		}	}#ifdef NAND_DEBUG	/* We haven't fully identified the chip. Print as much as we know. */	printf("Unknown flash chip found: %2.2X %2.2X\n",	       id, mfr);#endif	return 0;}/* NanD_ScanChips: Find all NAND chips present in a nand_chip, and identify them */static void NanD_ScanChips(struct nand_chip *nand){	int floor, chip;	int numchips[NAND_MAX_FLOORS];	int maxchips = NAND_MAX_CHIPS;	int ret = 1;	nand->numchips = 0;	nand->mfr = 0;	nand->id = 0;	/* For each floor, find the number of valid chips it contains */	for (floor = 0; floor < NAND_MAX_FLOORS; floor++) {		ret = 1;		numchips[floor] = 0;		for (chip = 0; chip < maxchips && ret != 0; chip++) {			ret = NanD_IdentChip(nand, floor, chip);			if (ret) {				numchips[floor]++;				nand->numchips++;			}		}	}	/* If there are none at all that we recognise, bail */	if (!nand->numchips) {#ifdef NAND_DEBUG		puts ("No NAND flash chips recognised.\n");#endif		return;	}	/* Allocate an array to hold the information for each chip */	nand->chips = malloc(sizeof(struct Nand) * nand->numchips);	if (!nand->chips) {		puts ("No memory for allocating chip info structures\n");		return;	}	ret = 0;	/* Fill out the chip array with {floor, chipno} for each	 * detected chip in the device. */	for (floor = 0; floor < NAND_MAX_FLOORS; floor++) {		for (chip = 0; chip < numchips[floor]; chip++) {			nand->chips[ret].floor = floor;			nand->chips[ret].chip = chip;			nand->chips[ret].curadr = 0;			nand->chips[ret].curmode = 0x50;			ret++;		}	}	/* Calculate and print the total size of the device */	nand->totlen = nand->numchips * (1 << nand->chipshift);#ifdef NAND_DEBUG	printf("%d flash chips found. Total nand_chip size: %ld MB\n",	       nand->numchips, nand->totlen >> 20);#endif}/* we need to be fast here, 1 us per read translates to 1 second per meg */static void NanD_ReadBuf (struct nand_chip *nand, u_char * data_buf, int cntr){	unsigned long nandptr = nand->IO_ADDR;	NanD_Command (nand, NAND_CMD_READ0);	if (nand->bus16) {		u16 val;		while (cntr >= 16) {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美狂野另类xxxxoooo| 久久久久久久久免费| 欧美sm极限捆绑bd| ●精品国产综合乱码久久久久| 午夜成人免费视频| 成人黄色小视频在线观看| 欧美吻胸吃奶大尺度电影| 久久精品在线观看| 亚洲午夜久久久| www.亚洲激情.com| 精品国产成人系列| 日本麻豆一区二区三区视频| 91农村精品一区二区在线| 国产日韩欧美亚洲| 久久99日本精品| 欧美精品第一页| 亚洲国产美女搞黄色| 色综合久久综合网97色综合 | 国产欧美日韩在线看| 日韩精品一级中文字幕精品视频免费观看 | 亚洲精品国产a久久久久久| 国产一区二区成人久久免费影院| 欧美色图一区二区三区| 亚洲三级免费观看| 高清av一区二区| 久久久精品国产免大香伊| 蜜臀av性久久久久蜜臀aⅴ流畅| 欧美日韩www| 午夜亚洲国产au精品一区二区| 色综合久久88色综合天天 | 亚洲成人在线免费| 在线观看日产精品| 亚洲一区二区精品3399| 在线精品视频一区二区| 亚洲黄色片在线观看| 色999日韩国产欧美一区二区| 国产精品免费网站在线观看| 国产福利一区二区三区视频在线| 欧美成人一区二区三区在线观看| 看电视剧不卡顿的网站| 日韩你懂的电影在线观看| 另类的小说在线视频另类成人小视频在线| 欧美日韩一区二区在线观看| 亚洲国产精品久久艾草纯爱 | 26uuu精品一区二区三区四区在线| 美女国产一区二区三区| 精品国产污网站| 韩国毛片一区二区三区| 国产午夜精品一区二区三区视频| 成人三级在线视频| 一区二区三区欧美激情| 欧美精选一区二区| 国产呦萝稀缺另类资源| 国产精品色哟哟网站| 色综合久久久久久久久久久| 午夜精品久久久久久久久久久 | 91精彩视频在线观看| 国产精品第四页| 亚洲欧洲韩国日本视频| 91精品国产福利在线观看| 欧美亚一区二区| 99re这里只有精品首页| 成人在线综合网站| 国产一区二区在线电影| 日韩国产欧美视频| 五月天网站亚洲| 亚洲成a人片在线观看中文| 亚洲欧洲三级电影| 国产精品美女久久久久久久久久久| 欧美电影免费观看高清完整版在线| 日本高清免费不卡视频| 91在线视频播放地址| 成人听书哪个软件好| 成人国产免费视频| 成人黄色软件下载| 91在线视频免费91| 色8久久精品久久久久久蜜| 99国产精品久久| 色婷婷久久久久swag精品| 91色在线porny| 91麻豆福利精品推荐| 色综合久久中文综合久久牛| 色综合视频在线观看| 91福利在线导航| 欧美乱妇20p| 日韩欧美一区在线| 精品日韩成人av| 国产网站一区二区三区| 国产精品青草综合久久久久99| 国产精品美女久久久久久| ...xxx性欧美| 五月婷婷久久综合| 美女视频网站黄色亚洲| 国产老肥熟一区二区三区| 国产黄色精品网站| 99在线视频精品| 欧美日韩激情一区二区三区| 91精品久久久久久蜜臀| 2020国产精品自拍| 国产精品视频麻豆| 亚洲大片在线观看| 精品影视av免费| 成人高清伦理免费影院在线观看| 91美女精品福利| 欧美日韩aaa| 亚洲国产精品国自产拍av| 亚洲欧美福利一区二区| 石原莉奈一区二区三区在线观看| 精品一二三四在线| 99国产欧美另类久久久精品 | 波多野结衣在线一区| 在线观看91视频| 欧美一区二区三区在线电影| 久久久久久毛片| 亚洲综合在线五月| 国产一区二三区好的| 日本高清不卡在线观看| 91精品国产综合久久久久久久| 久久久精品国产免费观看同学| 亚洲精品国产无天堂网2021| 久久国产精品99久久久久久老狼| 不卡的av中国片| 精品国产伦一区二区三区观看方式 | 青青草精品视频| 成人亚洲精品久久久久软件| 欧美日韩精品电影| 亚洲欧美自拍偷拍色图| 久久精品国产第一区二区三区| 91色综合久久久久婷婷| 久久久亚洲欧洲日产国码αv| 亚洲综合男人的天堂| 国产成人日日夜夜| 欧美一区二区黄| 亚洲精品v日韩精品| 国产91丝袜在线观看| 欧美一区二区三区免费观看视频| 亚洲手机成人高清视频| 国内精品写真在线观看| 欧美日韩一区二区三区高清| 亚洲国产精品成人综合| 久久精品免费观看| 欧美美女一区二区在线观看| 中文字幕中文字幕中文字幕亚洲无线| 美女视频黄 久久| 欧美性淫爽ww久久久久无| 国产精品高潮呻吟| 国产一区二区伦理| 日韩欧美激情四射| 日精品一区二区| 欧美色综合网站| 亚洲精品久久嫩草网站秘色| 丰满白嫩尤物一区二区| 久久夜色精品国产噜噜av | 亚洲v日本v欧美v久久精品| av不卡一区二区三区| 国产欧美日韩视频在线观看| 精品一区二区三区不卡 | 欧美日韩国产一级二级| 中文字幕一区二区日韩精品绯色| 国产电影精品久久禁18| 亚洲精品一区二区三区精华液| 日韩黄色免费网站| 91精品啪在线观看国产60岁| 午夜婷婷国产麻豆精品| 欧美日韩黄视频| 日韩av电影免费观看高清完整版 | 亚洲视频中文字幕| 91亚洲精品久久久蜜桃| 国产欧美一区二区三区在线看蜜臀| 韩日av一区二区| 久久嫩草精品久久久精品| 精品制服美女久久| 国产网红主播福利一区二区| 懂色中文一区二区在线播放| 中文字幕免费不卡| 99久久综合色| 一区二区三区中文字幕精品精品| 一本一道久久a久久精品| 亚洲精品视频免费观看| 91黄色免费看| 天天综合色天天综合| 日韩一级完整毛片| 国产揄拍国内精品对白| 中文字幕一区二区5566日韩| 色网站国产精品| 日韩极品在线观看| 精品国产乱码久久久久久牛牛| 国产一区二区看久久| 综合久久久久综合| 欧美日精品一区视频| 久久精品国产久精国产爱| 国产女人18水真多18精品一级做| 91视频你懂的| 青青草伊人久久| 国产精品毛片大码女人| 欧美丝袜第三区| 国产真实乱对白精彩久久| 国产精品久久久久毛片软件| 欧美视频精品在线| 国产综合色精品一区二区三区|