⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nand_legacy.c

📁 嵌入式试验箱S3C2410的bootloader源代码
💻 C
📖 第 1 页 / 共 4 页
字号:
/* * (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#define NANDRW_YAFFS	0x08    /* to write yaffs image, www.arm9.net *//* * 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;    int bfirstyaffsblk = 1;    int page;    unsigned long badblk=0, prgmblk=0;    unsigned long badblks=0, prgmblks = 0;    unsigned long allblks;    allblks = (erasesize/nand->oobblock)*(nand->oobblock+nand->oobsize);    allblks = (len + allblks - 1) / allblks;    	if ((cmd & NANDRW_YAFFS) && (len % (nand->oobblock + nand->oobsize))) {        printf("Length of the yaffs image should be times of (%d +%d), now it is %d\n", nand->oobblock, nand->oobsize, len);        return -1;    }    if ((cmd & NANDRW_YAFFS) && (start % erasesize)) {        printf("Start address of the flash should be %d align\n", erasesize);        return -1;    }	if (cmd & (NANDRW_WRITE | NANDRW_YAFFS)) {        printf("Flash params: oobblock = %d, oobsize = %d, erasesize = %d\n", nand->oobblock, nand->oobsize, nand->erasesize);    	printf("Programming NAND with yaffs image, length = %d\n", len);        printf(" Block Programming(addr/count) --- Block bad(addr/count) --- Block programed/All(%%)\n");        printf("------------------------------------------------------------------------------------\n");	}	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)) {                badblk = eblk;                badblks++;				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 if (cmd == (NANDRW_WRITE | NANDRW_YAFFS)) {				    /* by www.arm9.net */                    printf("       0x%08x/%05d               0x%08x/%05d          %05d/%05d=%02d%%\r", prgmblk, prgmblks, badblk, badblks, prgmblks, allblks, prgmblks*100/allblks);					/* 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");        /* for yaffs, by www.arm9.net */		if (cmd & (NANDRW_WRITE | NANDRW_YAFFS)) {			/* Do some programming, but not in the first block */			            if (!bfirstyaffsblk) {                prgmblk = start;                prgmblks++;                printf("       0x%08x/%05d               0x%08x/%05d          %05d/%05d=%02d%%\r", prgmblk, prgmblks, badblk, badblks, prgmblks, allblks, prgmblks*100/allblks);                for (page = 0; (page < erasesize/nand->oobblock) && (len - page*(nand->oobblock+nand->oobsize) > 0); page++) {        			ret = nand_write_ecc(nand, start+page*nand->oobblock,        					    nand->oobblock, (size_t *)&n,        					    (u_char*)buf+page*(nand->oobblock+nand->oobsize), (u_char *)0); /* without ecc */                    if (!ret)                         ret = nand_write_oob(nand, start+page*nand->oobblock,    						     nand->oobsize, (size_t *)&n,    						     (u_char*)buf+page*(nand->oobblock+nand->oobsize)+nand->oobblock);                    if (ret)                        break;                }                n = page * (nand->oobblock+nand->oobsize);            } else {                bfirstyaffsblk = 0;                n = 0;                start += erasesize;     /* skip first block */                ret = 0;                page = 0;            }		} else 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;		if (cmd & (NANDRW_WRITE | NANDRW_YAFFS))    		start  += page * nand->oobblock;        else    		start  += n;        		buf   += n;		total += n;		len   -= n;	}	if (retlen)		*retlen = total;    printf("\n");	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;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -