diff options
author | Dave Liu <r63238@freescale.com> | 2007-09-18 12:37:57 +0800 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2008-01-08 09:55:39 -0600 |
commit | 19580e660cc8da49f16536a8bd78c047c7bc12e5 (patch) | |
tree | 2b0d1681d4b61b0d7bbf5cf886d25fc3d2753ddc /cpu/mpc83xx/cpu_init.c | |
parent | 555da61702771fe0f76f3de23b4e7590f3704161 (diff) | |
download | u-boot-imx-19580e660cc8da49f16536a8bd78c047c7bc12e5.zip u-boot-imx-19580e660cc8da49f16536a8bd78c047c7bc12e5.tar.gz u-boot-imx-19580e660cc8da49f16536a8bd78c047c7bc12e5.tar.bz2 |
mpc83xx: Add the support of MPC837xEMDS board
The MPC837xEMDS board support:
* DDR2 400MHz hardcoded and SPD init
* Local bus NOR Flash
* I2C, UART, MII and RTC
* eTSEC RGMII
* PCI host
Signed-off-by: Dave Liu <daveliu@freescale.com>
Diffstat (limited to 'cpu/mpc83xx/cpu_init.c')
-rw-r--r-- | cpu/mpc83xx/cpu_init.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpu/mpc83xx/cpu_init.c b/cpu/mpc83xx/cpu_init.c index 7224979..2b92be0 100644 --- a/cpu/mpc83xx/cpu_init.c +++ b/cpu/mpc83xx/cpu_init.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2006 Freescale Semiconductor, Inc. + * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. * * See file CREDITS for list of people who contributed to this * project. @@ -155,6 +155,10 @@ void cpu_init_f (volatile immap_t * im) #ifdef CFG_DDRCDR im->sysconf.ddrcdr = CFG_DDRCDR; #endif + /* Output buffer impedance register */ +#ifdef CFG_OBIR + im->sysconf.obir = CFG_OBIR; +#endif #ifdef CONFIG_QE /* Config QE ioports */ |