diff options
| author | Marek Vasut <marek.vasut@gmail.com> | 2011-09-23 15:43:10 +0200 | 
|---|---|---|
| committer | Scott Wood <scottwood@freescale.com> | 2011-10-03 18:35:12 -0500 | 
| commit | fb3659ac422801ea18f36ef62926df70beeada4c (patch) | |
| tree | 80f4eb0ee045e88ef731eab2f494317e161379dc /common | |
| parent | 6d41419f0b010db03c01dec59875144457aa11d2 (diff) | |
| download | olio-uboot-2014.01-fb3659ac422801ea18f36ef62926df70beeada4c.tar.xz olio-uboot-2014.01-fb3659ac422801ea18f36ef62926df70beeada4c.zip | |
NAND: Add nand read.raw and write.raw commands
These commands should work around various "hardware" ECC and BCH methods.
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Cc: Scott Wood <scottwood@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Detlev Zundel <dzu@denx.de>
[scottwood@freescale.com: s/write the page/access the page/]
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'common')
| -rw-r--r-- | common/cmd_nand.c | 19 | 
1 files changed, 19 insertions, 0 deletions
| diff --git a/common/cmd_nand.c b/common/cmd_nand.c index 6edca7607..1a67e4d81 100644 --- a/common/cmd_nand.c +++ b/common/cmd_nand.c @@ -602,6 +602,22 @@ int do_nand(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])  				ret = nand->read_oob(nand, off, &ops);  			else  				ret = nand->write_oob(nand, off, &ops); +		} else if (!strcmp(s, ".raw")) { +			/* Raw access */ +			mtd_oob_ops_t ops = { +				.datbuf = (u8 *)addr, +				.oobbuf = ((u8 *)addr) + nand->writesize, +				.len = nand->writesize, +				.ooblen = nand->oobsize, +				.mode = MTD_OOB_RAW +			}; + +			rwsize = nand->writesize + nand->oobsize; + +			if (read) +				ret = nand->read_oob(nand, off, &ops); +			else +				ret = nand->write_oob(nand, off, &ops);  		} else {  			printf("Unknown nand command suffix '%s'.\n", s);  			return 1; @@ -695,6 +711,9 @@ U_BOOT_CMD(  	"nand write - addr off|partition size\n"  	"    read/write 'size' bytes starting at offset 'off'\n"  	"    to/from memory address 'addr', skipping bad blocks.\n" +	"nand read.raw - addr off|partition\n" +	"nand write.raw - addr off|partition\n" +	"    Use read.raw/write.raw to avoid ECC and access the page as-is.\n"  #ifdef CONFIG_CMD_NAND_TRIMFFS  	"nand write.trimffs - addr off|partition size\n"  	"    write 'size' bytes starting at offset 'off' from memory address\n" |