diff options
author | Wolfgang Denk <wd@pollux.(none)> | 2005-12-06 15:02:31 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.(none)> | 2005-12-06 15:02:31 +0100 |
commit | a889bd27ef2a9c01eb5b10d067765545781efa0a (patch) | |
tree | e42a6a0dadc6ea2b90c1850030e30241920fe844 /cpu | |
parent | 41253be442e35f71fdf26dac71d78451858a1fc7 (diff) | |
download | u-boot-a889bd27ef2a9c01eb5b10d067765545781efa0a.zip u-boot-a889bd27ef2a9c01eb5b10d067765545781efa0a.tar.gz u-boot-a889bd27ef2a9c01eb5b10d067765545781efa0a.tar.bz2 |
Fix DPRAM offset/size for MPC8541/8555.
Simplify TQM85xx Makefile handling.
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mpc85xx/ether_fcc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpu/mpc85xx/ether_fcc.c b/cpu/mpc85xx/ether_fcc.c index 7edb294..d15d242 100644 --- a/cpu/mpc85xx/ether_fcc.c +++ b/cpu/mpc85xx/ether_fcc.c @@ -307,7 +307,9 @@ static int fec_init(struct eth_device* dev, bd_t *bis) * Allocate space in the reserved FCC area of DPRAM for the * internal buffers. No one uses this space (yet), so we * can do this. Later, we will add resource management for - * this area. CPM_FCC_SPECIAL_BASE: 0xb000. + * this area. + * CPM_FCC_SPECIAL_BASE: 0xB000 for MPC8540, MPC8560 + * 0x9000 for MPC8541, MPC8555 */ mem_addr = CPM_FCC_SPECIAL_BASE + ((info->ether_index) * 64); pram_ptr->fen_genfcc.fcc_riptr = mem_addr; |