diff options
author | wdenk <wdenk> | 2004-07-09 23:27:13 (GMT) |
---|---|---|
committer | wdenk <wdenk> | 2004-07-09 23:27:13 (GMT) |
commit | 0ac6f8b7498d3608bd1de2280a014e9e23d7b1f2 (patch) | |
tree | de6ad6c1ee05c1ebcee774a2e8c772e7b2e57586 /lib_ppc | |
parent | 262381329b87511ed862cde139a3a1ff49e9d7eb (diff) | |
download | u-boot-0ac6f8b7498d3608bd1de2280a014e9e23d7b1f2.tar.xz |
Patch by Jon Loeliger, 17 June 2004:
Completion of the 8540ADS/8560ADS updates:
Fix some PCI and Rapid I/O memory maps,
Initialize both TSEC 1 and 2,
Initialize SDRAM
Update MAINTAINER for 85xx boards and README.mpc85xxads
Diffstat (limited to 'lib_ppc')
-rw-r--r-- | lib_ppc/board.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 7560a42..42b4671 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -775,7 +775,8 @@ void board_init_r (gd_t *id, ulong dest_addr) #endif #if defined(CFG_GT_6426x) || defined(CONFIG_PN62) || defined(CONFIG_PPCHAMELEONEVB) || \ - defined(CONFIG_MPC8540ADS) || defined(CONFIG_MPC8560ADS) || defined(CONFIG_440_GX) + defined(CONFIG_MPC8540ADS) || defined(CONFIG_MPC8555CDS) || \ + defined(CONFIG_MPC8560ADS) || defined(CONFIG_440_GX) /* handle the 2nd ethernet address */ s = getenv ("eth1addr"); @@ -786,8 +787,9 @@ void board_init_r (gd_t *id, ulong dest_addr) s = (*e) ? e + 1 : e; } #endif -#if defined(CFG_GT_6426x) || defined(CONFIG_MPC8540ADS) || defined(CONFIG_MPC8560ADS) || \ - defined(CONFIG_440_GX) +#if defined(CFG_GT_6426x) || defined(CONFIG_MPC8540ADS) || \ + defined(CONFIG_MPC8555CDS) || defined(CONFIG_MPC8560ADS) || \ + defined(CONFIG_440_GX) /* handle the 3rd ethernet address */ s = getenv ("eth2addr"); |