summaryrefslogtreecommitdiff
path: root/board/amcc/bamboo/flash.c
diff options
context:
space:
mode:
authorMarkus Klotzbuecher <mk@denx.de>2007-06-06 12:36:32 +0200
committerMarkus Klotzbuecher <mk@pollux.denx.de>2007-06-06 12:36:32 +0200
commitc4e2753436bf8ed42731c5b8b9ceb62cdb482f43 (patch)
tree490da1648330b586e2aefa4d1d0eea10cd0deb46 /board/amcc/bamboo/flash.c
parent19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243 (diff)
parentc0c292b2852a12e9d93e99b3aaf5b0dac5f36fdc (diff)
downloadu-boot-imx-c4e2753436bf8ed42731c5b8b9ceb62cdb482f43.zip
u-boot-imx-c4e2753436bf8ed42731c5b8b9ceb62cdb482f43.tar.gz
u-boot-imx-c4e2753436bf8ed42731c5b8b9ceb62cdb482f43.tar.bz2
Merge with git://www.denx.de/git/u-boot.git
Diffstat (limited to 'board/amcc/bamboo/flash.c')
-rw-r--r--board/amcc/bamboo/flash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/amcc/bamboo/flash.c b/board/amcc/bamboo/flash.c
index a30ab7a..8a2e832 100644
--- a/board/amcc/bamboo/flash.c
+++ b/board/amcc/bamboo/flash.c
@@ -53,7 +53,7 @@ flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips */
static unsigned long flash_addr_table[][CFG_MAX_FLASH_BANKS] = {
{0x87800001, 0xFFF00000, 0xFFF80000}, /* 0:boot from small flash */
{0x00000000, 0x00000000, 0x00000000}, /* 1:boot from pci 66 */
- {0x00000000, 0x00000000, 0x00000000}, /* 2:boot from nand flash */
+ {0x87800001, 0x00000000, 0x00000000}, /* 0:boot from nand flash */
{0x87F00000, 0x87F80000, 0xFFC00001}, /* 3:boot from big flash 33*/
{0x87F00000, 0x87F80000, 0xFFC00001}, /* 4:boot from big flash 66*/
{0x00000000, 0x00000000, 0x00000000}, /* 5:boot from */
@@ -134,10 +134,10 @@ unsigned long flash_init(void)
flash_info[i].size = 0;
/* check whether the address is 0 */
- if (flash_addr_table[index][i] == 0) {
+ if (flash_addr_table[index][i] == 0)
continue;
- }
+ DEBUGF("Detection bank %d...\n", i);
/* call flash_get_size() to initialize sector address */
size_b[i] = flash_get_size((vu_long *) flash_addr_table[index][i],
&flash_info[i]);