diff options
author | Stefan Roese <sr@denx.de> | 2008-04-08 10:33:29 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2008-04-18 16:30:49 +0200 |
commit | 499e7831e1baaac6bfb959213f1950c216fbc5ba (patch) | |
tree | 4466db197406c088d09b51996913276dc9c7a100 /board/amcc/canyonlands/bootstrap.c | |
parent | 5e182dce04d68cc94407a1b1fa09307f2bb96719 (diff) | |
download | u-boot-imx-499e7831e1baaac6bfb959213f1950c216fbc5ba.zip u-boot-imx-499e7831e1baaac6bfb959213f1950c216fbc5ba.tar.gz u-boot-imx-499e7831e1baaac6bfb959213f1950c216fbc5ba.tar.bz2 |
ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/amcc/canyonlands/bootstrap.c')
-rw-r--r-- | board/amcc/canyonlands/bootstrap.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/board/amcc/canyonlands/bootstrap.c b/board/amcc/canyonlands/bootstrap.c index 37fa1c9..1d125b6 100644 --- a/board/amcc/canyonlands/bootstrap.c +++ b/board/amcc/canyonlands/bootstrap.c @@ -63,9 +63,22 @@ static u8 boot_configs[][17] = { /* * Bytes 5,6,8,9,11 change for NAND boot */ +#if 0 +/* + * Values for 512 page size NAND chips, not used anymore, just + * keep them here for reference + */ static u8 nand_boot[] = { 0x90, 0x01, 0xa0, 0x68, 0x58 }; +#else +/* + * Values for 2k page size NAND chips + */ +static u8 nand_boot[] = { + 0x90, 0x01, 0xa0, 0xe8, 0x58 +}; +#endif static int do_bootstrap(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) { |