diff options
author | apgmoorthy <moorthy.apg@samsung.com> | 2009-03-27 14:45:23 +0530 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2009-04-03 15:27:25 -0500 |
commit | 69bcabb51686fdd133cb1848c0d3b0a4fc6ca5cf (patch) | |
tree | 591f2844b846b1b39aed91b0cc44b58d9df37fde /onenand_ipl/onenand_ipl.h | |
parent | dfc91c33957c95da34e3888dc87912d5c15a7603 (diff) |
Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB.
However, u-boot image for apollon board is 195KB making the board
unbootable with OneNAND.
Fix ipl to read CONFIG_SYS_MONITOR_LEN.
CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size.
Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
Signed-off-by: Gangheyamoorthy <moorthy.apg@samsung.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'onenand_ipl/onenand_ipl.h')
-rw-r--r-- | onenand_ipl/onenand_ipl.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/onenand_ipl/onenand_ipl.h b/onenand_ipl/onenand_ipl.h index 57e54f5cbcd..412572a08dc 100644 --- a/onenand_ipl/onenand_ipl.h +++ b/onenand_ipl/onenand_ipl.h @@ -23,15 +23,13 @@ #include <linux/mtd/onenand_regs.h> -#define onenand_readw(a) readw(a) -#define onenand_writew(v, a) writew(v, a) +#define onenand_readw(a) readw(THIS_ONENAND(a)) +#define onenand_writew(v, a) writew(v, THIS_ONENAND(a)) #define THIS_ONENAND(a) (CONFIG_SYS_ONENAND_BASE + (a)) #define READ_INTERRUPT() \ onenand_readw(THIS_ONENAND(ONENAND_REG_INTERRUPT)) -#define ONENAND_PAGE_SIZE 2048 - -extern int onenand_read_block0(unsigned char *buf); +extern int onenand_read_block(unsigned char *buf); #endif |