diff options
Diffstat (limited to 'arch/arm/mach-s5pv210/cpu.c')
-rw-r--r-- | arch/arm/mach-s5pv210/cpu.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/mach-s5pv210/cpu.c b/arch/arm/mach-s5pv210/cpu.c index 2b776eb5d150..411a4a9cbfc7 100644 --- a/arch/arm/mach-s5pv210/cpu.c +++ b/arch/arm/mach-s5pv210/cpu.c | |||
@@ -32,6 +32,8 @@ | |||
32 | #include <plat/devs.h> | 32 | #include <plat/devs.h> |
33 | #include <plat/clock.h> | 33 | #include <plat/clock.h> |
34 | #include <plat/s5pv210.h> | 34 | #include <plat/s5pv210.h> |
35 | #include <plat/iic-core.h> | ||
36 | #include <plat/sdhci.h> | ||
35 | 37 | ||
36 | /* Initial IO mappings */ | 38 | /* Initial IO mappings */ |
37 | 39 | ||
@@ -74,7 +76,21 @@ static void s5pv210_idle(void) | |||
74 | 76 | ||
75 | void __init s5pv210_map_io(void) | 77 | void __init s5pv210_map_io(void) |
76 | { | 78 | { |
79 | #ifdef CONFIG_S3C_DEV_ADC | ||
80 | s3c_device_adc.name = "s3c64xx-adc"; | ||
81 | #endif | ||
82 | |||
77 | iotable_init(s5pv210_iodesc, ARRAY_SIZE(s5pv210_iodesc)); | 83 | iotable_init(s5pv210_iodesc, ARRAY_SIZE(s5pv210_iodesc)); |
84 | |||
85 | /* initialise device information early */ | ||
86 | s5pv210_default_sdhci0(); | ||
87 | s5pv210_default_sdhci1(); | ||
88 | s5pv210_default_sdhci2(); | ||
89 | |||
90 | /* the i2c devices are directly compatible with s3c2440 */ | ||
91 | s3c_i2c0_setname("s3c2440-i2c"); | ||
92 | s3c_i2c1_setname("s3c2440-i2c"); | ||
93 | s3c_i2c2_setname("s3c2440-i2c"); | ||
78 | } | 94 | } |
79 | 95 | ||
80 | void __init s5pv210_init_clocks(int xtal) | 96 | void __init s5pv210_init_clocks(int xtal) |