diff options
author | Andy Fleming | 2008-10-30 16:50:14 -0500 |
---|---|---|
committer | Andy Fleming | 2009-02-16 18:07:43 -0600 |
commit | e1ac387f4645499746856adc1aeaa9787da2eca6 (patch) | |
tree | 2bb85a452ef20194a01d8954be714e6cc46d4e16 /cpu | |
parent | 80522dc8369a89938369fbcee572e662373bc9a3 (diff) |
83xx: Add eSDHC support on 8379 EMDS board
Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mpc83xx/cpu.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cpu/mpc83xx/cpu.c b/cpu/mpc83xx/cpu.c index 587fca323bb..9e0a05d6151 100644 --- a/cpu/mpc83xx/cpu.c +++ b/cpu/mpc83xx/cpu.c @@ -34,6 +34,7 @@ #include <libfdt.h> #include <tsec.h> #include <netdev.h> +#include <fsl_esdhc.h> DECLARE_GLOBAL_DATA_PTR; @@ -385,3 +386,16 @@ int cpu_eth_init(bd_t *bis) #endif return 0; } + +/* + * Initializes on-chip MMC controllers. + * to override, implement board_mmc_init() + */ +int cpu_mmc_init(bd_t *bis) +{ +#ifdef CONFIG_FSL_ESDHC + return fsl_esdhc_mmc_init(bis); +#else + return 0; +#endif +} |