diff options
author | Arnd Bergmann <arnd@arndb.de> | 2011-12-28 01:18:56 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2011-12-28 01:18:56 +0100 |
commit | a46117836e23f97cf4660b0ebf8404ad151fb63d (patch) | |
tree | 2739f48d6ba3a7a8820f54929778ab69db314dba /arch/arm/mach-s5p64x0/cpu.c | |
parent | Merge branch 'samsung/cleanup' into next/drivers (diff) | |
parent | Merge branch 'next-samsung-devel-mmc-spi5' of git://git.kernel.org/pub/scm/li... (diff) | |
download | linux-a46117836e23f97cf4660b0ebf8404ad151fb63d.tar.xz linux-a46117836e23f97cf4660b0ebf8404ad151fb63d.zip |
Merge branch 'samsung/driver' into next/drivers
* samsung/driver:
ARM: EXYNOS: Modified files for SPI consolidation work
ARM: S5P64X0: Enable SDHCI support
ARM: S5P64X0: Add lookup of sdhci-s3c clocks using generic names
ARM: S5P64X0: Add HSMMC setup for host Controller
Diffstat (limited to 'arch/arm/mach-s5p64x0/cpu.c')
-rw-r--r-- | arch/arm/mach-s5p64x0/cpu.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-s5p64x0/cpu.c b/arch/arm/mach-s5p64x0/cpu.c index ecab40cf19ab..f6e24f3ef760 100644 --- a/arch/arm/mach-s5p64x0/cpu.c +++ b/arch/arm/mach-s5p64x0/cpu.c @@ -40,6 +40,7 @@ #include <plat/s5p6450.h> #include <plat/adc-core.h> #include <plat/fb-core.h> +#include <plat/sdhci.h> /* Initial IO mappings */ @@ -112,6 +113,10 @@ void __init s5p6440_map_io(void) s3c_adc_setname("s3c64xx-adc"); s3c_fb_setname("s5p64x0-fb"); + s5p64x0_default_sdhci0(); + s5p64x0_default_sdhci1(); + s5p6440_default_sdhci2(); + iotable_init(s5p64x0_iodesc, ARRAY_SIZE(s5p64x0_iodesc)); iotable_init(s5p6440_iodesc, ARRAY_SIZE(s5p6440_iodesc)); init_consistent_dma_size(SZ_8M); @@ -123,6 +128,10 @@ void __init s5p6450_map_io(void) s3c_adc_setname("s3c64xx-adc"); s3c_fb_setname("s5p64x0-fb"); + s5p64x0_default_sdhci0(); + s5p64x0_default_sdhci1(); + s5p6450_default_sdhci2(); + iotable_init(s5p64x0_iodesc, ARRAY_SIZE(s5p64x0_iodesc)); iotable_init(s5p6450_iodesc, ARRAY_SIZE(s5p6450_iodesc)); init_consistent_dma_size(SZ_8M); |