diff options
Diffstat (limited to 'arch/arm/mach-davinci/da850.c')
-rw-r--r-- | arch/arm/mach-davinci/da850.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/arch/arm/mach-davinci/da850.c b/arch/arm/mach-davinci/da850.c index f56e5fbfa2fd..352984e1528a 100644 --- a/arch/arm/mach-davinci/da850.c +++ b/arch/arm/mach-davinci/da850.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/platform_device.h> | 17 | #include <linux/platform_device.h> |
18 | #include <linux/cpufreq.h> | 18 | #include <linux/cpufreq.h> |
19 | #include <linux/regulator/consumer.h> | 19 | #include <linux/regulator/consumer.h> |
20 | #include <linux/platform_data/gpio-davinci.h> | ||
20 | 21 | ||
21 | #include <asm/mach/map.h> | 22 | #include <asm/mach/map.h> |
22 | 23 | ||
@@ -28,7 +29,6 @@ | |||
28 | #include <mach/da8xx.h> | 29 | #include <mach/da8xx.h> |
29 | #include <mach/cpufreq.h> | 30 | #include <mach/cpufreq.h> |
30 | #include <mach/pm.h> | 31 | #include <mach/pm.h> |
31 | #include <mach/gpio-davinci.h> | ||
32 | 32 | ||
33 | #include "clock.h" | 33 | #include "clock.h" |
34 | #include "mux.h" | 34 | #include "mux.h" |
@@ -1281,6 +1281,16 @@ int __init da850_register_vpif_capture(struct vpif_capture_config | |||
1281 | return platform_device_register(&da850_vpif_capture_dev); | 1281 | return platform_device_register(&da850_vpif_capture_dev); |
1282 | } | 1282 | } |
1283 | 1283 | ||
1284 | static struct davinci_gpio_platform_data da850_gpio_platform_data = { | ||
1285 | .ngpio = 144, | ||
1286 | .intc_irq_num = DA850_N_CP_INTC_IRQ, | ||
1287 | }; | ||
1288 | |||
1289 | int __init da850_register_gpio(void) | ||
1290 | { | ||
1291 | return da8xx_register_gpio(&da850_gpio_platform_data); | ||
1292 | } | ||
1293 | |||
1284 | static struct davinci_soc_info davinci_soc_info_da850 = { | 1294 | static struct davinci_soc_info davinci_soc_info_da850 = { |
1285 | .io_desc = da850_io_desc, | 1295 | .io_desc = da850_io_desc, |
1286 | .io_desc_num = ARRAY_SIZE(da850_io_desc), | 1296 | .io_desc_num = ARRAY_SIZE(da850_io_desc), |
@@ -1298,10 +1308,6 @@ static struct davinci_soc_info davinci_soc_info_da850 = { | |||
1298 | .intc_irq_prios = da850_default_priorities, | 1308 | .intc_irq_prios = da850_default_priorities, |
1299 | .intc_irq_num = DA850_N_CP_INTC_IRQ, | 1309 | .intc_irq_num = DA850_N_CP_INTC_IRQ, |
1300 | .timer_info = &da850_timer_info, | 1310 | .timer_info = &da850_timer_info, |
1301 | .gpio_type = GPIO_TYPE_DAVINCI, | ||
1302 | .gpio_base = DA8XX_GPIO_BASE, | ||
1303 | .gpio_num = 144, | ||
1304 | .gpio_irq = IRQ_DA8XX_GPIO0, | ||
1305 | .emac_pdata = &da8xx_emac_pdata, | 1311 | .emac_pdata = &da8xx_emac_pdata, |
1306 | .sram_dma = DA8XX_SHARED_RAM_BASE, | 1312 | .sram_dma = DA8XX_SHARED_RAM_BASE, |
1307 | .sram_len = SZ_128K, | 1313 | .sram_len = SZ_128K, |