diff options
author | Dave Liu | 2006-12-07 21:13:15 +0800 |
---|---|---|
committer | Kim Phillips | 2007-03-02 11:05:53 -0600 |
commit | 24c3aca3f1358b113d3215adb5433b156e99f72b (patch) | |
tree | 2c26f80e59392102aae4326b857df037da9ddeff /cpu/mpc83xx/cpu_init.c | |
parent | e080313c32322e15ab5a18eb896a252858c57284 (diff) |
mpc83xx: Add support for the MPC832XEMDS board
This patch supports DUART, ETH3/4 and PCI etc.
Signed-off-by: Dave Liu <daveliu@freescale.com>
Diffstat (limited to 'cpu/mpc83xx/cpu_init.c')
-rw-r--r-- | cpu/mpc83xx/cpu_init.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpu/mpc83xx/cpu_init.c b/cpu/mpc83xx/cpu_init.c index 7574fabf864..eb256e598d3 100644 --- a/cpu/mpc83xx/cpu_init.c +++ b/cpu/mpc83xx/cpu_init.c @@ -119,6 +119,11 @@ void cpu_init_f (volatile immap_t * im) #ifdef CFG_SICRL im->sysconf.sicrl = CFG_SICRL; #endif + /* DDR control driver register */ +#ifdef CFG_DDRCDR + im->sysconf.ddrcdr = CFG_DDRCDR; +#endif + #ifdef CONFIG_QE /* Config QE ioports */ config_qe_ioports(); |