diff options
author | wdenk <wdenk> | 2004-01-29 09:22:58 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-01-29 09:22:58 +0000 |
commit | 6876609446980c3055bbd32c195a63330e21d8e6 (patch) | |
tree | b01a5dcb24de0cc0a020b142986eb64287f39422 /cpu | |
parent | c178d3da6f1ac765cd880530a0672540b415a01c (diff) | |
download | u-boot-6876609446980c3055bbd32c195a63330e21d8e6.tar.gz u-boot-6876609446980c3055bbd32c195a63330e21d8e6.tar.xz u-boot-6876609446980c3055bbd32c195a63330e21d8e6.zip |
* Implement adaptive SDRAM timing configuration based on actual CPULABEL_2004_01_29_1030
clock frequency for INCA-IP; fix problem with board hanging when
switching from 150MHz to 100MHz
* Add PCMCIA CS support for BMS2003 board
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mips/incaip_clock.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpu/mips/incaip_clock.c b/cpu/mips/incaip_clock.c index 9f327594f4..65ee8472d0 100644 --- a/cpu/mips/incaip_clock.c +++ b/cpu/mips/incaip_clock.c @@ -101,13 +101,15 @@ int incaip_set_cpuclk (void) { extern void ebu_init(long); extern void cgu_init(long); + extern void sdram_init(long); uchar tmp[64]; ulong cpuclk; if (getenv_r ("cpuclk", tmp, sizeof (tmp)) > 0) { cpuclk = simple_strtoul (tmp, NULL, 10) * 1000000; - ebu_init (cpuclk); cgu_init (cpuclk); + ebu_init (cpuclk); + sdram_init (cpuclk); } return 0; |