diff options
author | Jerry Huang <Chang-Ming.Huang@freescale.com> | 2011-01-24 17:09:53 +0000 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2011-04-04 09:24:40 -0500 |
commit | 9c4d8767ed672f995bf2d6b7cb2e83823bae9d76 (patch) | |
tree | 76d155b4efab968065bf36fb8fcdc858e652ac9f /board/freescale/p2020ds | |
parent | fbee0f7f09e94c0967ac118d41388c3edb0c226d (diff) | |
download | u-boot-imx-9c4d8767ed672f995bf2d6b7cb2e83823bae9d76.zip u-boot-imx-9c4d8767ed672f995bf2d6b7cb2e83823bae9d76.tar.gz u-boot-imx-9c4d8767ed672f995bf2d6b7cb2e83823bae9d76.tar.bz2 |
powerpc/85xx: Add eSDHC support on P2020DS
We enable SDHC_CD and SDHC_WP signals (pin muxed with GPIO8 & GPIO9
respectively).
We enable EXT2, FAT, and parition support for both MMC & USB configs.
Signed-off-by: Jerry Huang <Chang-Ming.Huang@freescale.com>
Signed-off-by: Jin Qing <b24347@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/freescale/p2020ds')
-rw-r--r-- | board/freescale/p2020ds/p2020ds.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/board/freescale/p2020ds/p2020ds.c b/board/freescale/p2020ds/p2020ds.c index 8546aa9..16e9206 100644 --- a/board/freescale/p2020ds/p2020ds.c +++ b/board/freescale/p2020ds/p2020ds.c @@ -44,6 +44,19 @@ DECLARE_GLOBAL_DATA_PTR; +int board_early_init_f(void) +{ +#ifdef CONFIG_MMC + ccsr_gur_t *gur = (ccsr_gur_t *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); + + setbits_be32(&gur->pmuxcr, + (MPC85xx_PMUXCR_SDHC_CD | + MPC85xx_PMUXCR_SDHC_WP)); +#endif + + return 0; +} + int checkboard(void) { u8 sw; |