diff options
author | Stefano Babic <sbabic@denx.de> | 2010-02-05 15:11:27 +0100 |
---|---|---|
committer | Tom Rix <Tom.Rix@windriver.com> | 2010-03-07 12:36:36 -0600 |
commit | c67bee1460a0da89ef08cbc28375171acc9a4227 (patch) | |
tree | d829f504b5dbf68199936bbcd7ca2b10618e1f63 /lib_arm | |
parent | 69df00f9d9c2f45b4576d1eae79bfac8bebb8821 (diff) | |
download | u-boot-c67bee1460a0da89ef08cbc28375171acc9a4227.tar.gz u-boot-c67bee1460a0da89ef08cbc28375171acc9a4227.tar.xz u-boot-c67bee1460a0da89ef08cbc28375171acc9a4227.zip |
fsl_esdhc: add support for mx51 processor
The esdhc controller in the mx51 processor is quite
the same as the one in some powerpc processors
(MPC83xx, MPC85xx). This patches adapts the driver
to support the arm mx51.
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'lib_arm')
-rw-r--r-- | lib_arm/board.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c index e148739152..f5660a985b 100644 --- a/lib_arm/board.c +++ b/lib_arm/board.c @@ -243,6 +243,9 @@ init_fnc_t *init_sequence[] = { interrupt_init, /* set up exceptions */ #endif timer_init, /* initialize timer */ +#ifdef CONFIG_FSL_ESDHC + get_clocks, +#endif env_init, /* initialize environment */ init_baudrate, /* initialze baudrate settings */ serial_init, /* serial communications setup */ |