diff options
| author | Jerry Huang <[email protected]> | 2011-01-24 17:09:53 +0000 |
|---|---|---|
| committer | Kumar Gala <[email protected]> | 2011-04-04 09:24:40 -0500 |
| commit | 9c4d8767ed672f995bf2d6b7cb2e83823bae9d76 (patch) | |
| tree | 76d155b4efab968065bf36fb8fcdc858e652ac9f /board | |
| parent | fbee0f7f09e94c0967ac118d41388c3edb0c226d (diff) | |
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 <[email protected]>
Signed-off-by: Jin Qing <[email protected]>
Signed-off-by: Kumar Gala <[email protected]>
Diffstat (limited to 'board')
| -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 8546aa903f0..16e9206cb6d 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; |
