diff options
Diffstat (limited to 'arch/arm/mach-s5p64x0/mach-smdk6440.c')
-rw-r--r-- | arch/arm/mach-s5p64x0/mach-smdk6440.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/arm/mach-s5p64x0/mach-smdk6440.c b/arch/arm/mach-s5p64x0/mach-smdk6440.c index 34d98a1dae57..a40e325d62c8 100644 --- a/arch/arm/mach-s5p64x0/mach-smdk6440.c +++ b/arch/arm/mach-s5p64x0/mach-smdk6440.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <linux/gpio.h> | 24 | #include <linux/gpio.h> |
25 | #include <linux/pwm_backlight.h> | 25 | #include <linux/pwm_backlight.h> |
26 | #include <linux/fb.h> | 26 | #include <linux/fb.h> |
27 | #include <linux/mmc/host.h> | ||
27 | 28 | ||
28 | #include <video/platform_lcd.h> | 29 | #include <video/platform_lcd.h> |
29 | 30 | ||
@@ -52,6 +53,7 @@ | |||
52 | #include <plat/backlight.h> | 53 | #include <plat/backlight.h> |
53 | #include <plat/fb.h> | 54 | #include <plat/fb.h> |
54 | #include <plat/regs-fb.h> | 55 | #include <plat/regs-fb.h> |
56 | #include <plat/sdhci.h> | ||
55 | 57 | ||
56 | #include "common.h" | 58 | #include "common.h" |
57 | 59 | ||
@@ -163,6 +165,25 @@ static struct platform_device *smdk6440_devices[] __initdata = { | |||
163 | &s5p6440_device_iis, | 165 | &s5p6440_device_iis, |
164 | &s3c_device_fb, | 166 | &s3c_device_fb, |
165 | &smdk6440_lcd_lte480wv, | 167 | &smdk6440_lcd_lte480wv, |
168 | &s3c_device_hsmmc0, | ||
169 | &s3c_device_hsmmc1, | ||
170 | &s3c_device_hsmmc2, | ||
171 | }; | ||
172 | |||
173 | static struct s3c_sdhci_platdata smdk6440_hsmmc0_pdata __initdata = { | ||
174 | .cd_type = S3C_SDHCI_CD_NONE, | ||
175 | }; | ||
176 | |||
177 | static struct s3c_sdhci_platdata smdk6440_hsmmc1_pdata __initdata = { | ||
178 | .cd_type = S3C_SDHCI_CD_INTERNAL, | ||
179 | #if defined(CONFIG_S5P64X0_SD_CH1_8BIT) | ||
180 | .max_width = 8, | ||
181 | .host_caps = MMC_CAP_8_BIT_DATA, | ||
182 | #endif | ||
183 | }; | ||
184 | |||
185 | static struct s3c_sdhci_platdata smdk6440_hsmmc2_pdata __initdata = { | ||
186 | .cd_type = S3C_SDHCI_CD_NONE, | ||
166 | }; | 187 | }; |
167 | 188 | ||
168 | static struct s3c2410_platform_i2c s5p6440_i2c0_data __initdata = { | 189 | static struct s3c2410_platform_i2c s5p6440_i2c0_data __initdata = { |
@@ -236,6 +257,10 @@ static void __init smdk6440_machine_init(void) | |||
236 | s5p6440_set_lcd_interface(); | 257 | s5p6440_set_lcd_interface(); |
237 | s3c_fb_set_platdata(&smdk6440_lcd_pdata); | 258 | s3c_fb_set_platdata(&smdk6440_lcd_pdata); |
238 | 259 | ||
260 | s3c_sdhci0_set_platdata(&smdk6440_hsmmc0_pdata); | ||
261 | s3c_sdhci1_set_platdata(&smdk6440_hsmmc1_pdata); | ||
262 | s3c_sdhci2_set_platdata(&smdk6440_hsmmc2_pdata); | ||
263 | |||
239 | platform_add_devices(smdk6440_devices, ARRAY_SIZE(smdk6440_devices)); | 264 | platform_add_devices(smdk6440_devices, ARRAY_SIZE(smdk6440_devices)); |
240 | } | 265 | } |
241 | 266 | ||