blob: 5aef69521e36fbe6e8f97413c36af922b28357ef [file] [log] [blame]
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -07001/*
2 * Board support file for OMAP4430 SDP.
3 *
4 * Copyright (C) 2009 Texas Instruments
5 *
6 * Author: Santosh Shilimkar <santosh.shilimkar@ti.com>
7 *
8 * Based on mach-omap2/board-3430sdp.c
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/platform_device.h>
18#include <linux/io.h>
19#include <linux/gpio.h>
Maulik Mankadbce06682010-02-17 14:09:32 -080020#include <linux/usb/otg.h>
Abraham Arceb2aa5e52010-05-14 12:05:26 -070021#include <linux/spi/spi.h>
Balaji T K6e30a7d2010-05-12 08:27:30 +000022#include <linux/i2c/twl.h>
Shubhrajyoti Datta94ce7a62010-09-23 18:22:49 -070023#include <linux/gpio_keys.h>
Balaji T K6e30a7d2010-05-12 08:27:30 +000024#include <linux/regulator/machine.h>
Hemanth V509b6d92010-08-02 13:18:04 +030025#include <linux/leds.h>
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -070026
27#include <mach/hardware.h>
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070028#include <mach/omap4-common.h>
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -070029#include <asm/mach-types.h>
30#include <asm/mach/arch.h>
31#include <asm/mach/map.h>
32
Tony Lindgrence491cf2009-10-20 09:40:47 -070033#include <plat/board.h>
34#include <plat/common.h>
Maulik Mankadbce06682010-02-17 14:09:32 -080035#include <plat/usb.h>
kishore kadiyala717c1fb2010-05-15 18:21:06 +000036#include <plat/mmc.h>
Manjunath Kondaiah G04aeae72010-10-08 09:58:35 -070037
kishore kadiyala717c1fb2010-05-15 18:21:06 +000038#include "hsmmc.h"
Manjunath Kondaiah G04aeae72010-10-08 09:58:35 -070039#include "timer-gp.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060040#include "control.h"
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -070041
Abraham Arceb2aa5e52010-05-14 12:05:26 -070042#define ETH_KS8851_IRQ 34
43#define ETH_KS8851_POWER_ON 48
44#define ETH_KS8851_QUART 138
Keshava Munegowda6aa85a52010-11-21 23:23:42 +053045#define OMAP4SDP_MDM_PWR_EN_GPIO 157
Shubhrajyoti Datta94ce7a62010-09-23 18:22:49 -070046#define OMAP4_SFH7741_SENSOR_OUTPUT_GPIO 184
47#define OMAP4_SFH7741_ENABLE_GPIO 188
Abraham Arceb2aa5e52010-05-14 12:05:26 -070048
Hemanth V509b6d92010-08-02 13:18:04 +030049static struct gpio_led sdp4430_gpio_leds[] = {
50 {
51 .name = "omap4:green:debug0",
52 .gpio = 61,
53 },
54 {
55 .name = "omap4:green:debug1",
56 .gpio = 30,
57 },
58 {
59 .name = "omap4:green:debug2",
60 .gpio = 7,
61 },
62 {
63 .name = "omap4:green:debug3",
64 .gpio = 8,
65 },
66 {
67 .name = "omap4:green:debug4",
68 .gpio = 50,
69 },
70 {
71 .name = "omap4:blue:user",
72 .gpio = 169,
73 },
74 {
75 .name = "omap4:red:user",
76 .gpio = 170,
77 },
78 {
79 .name = "omap4:green:user",
80 .gpio = 139,
81 },
82
83};
84
Shubhrajyoti Datta94ce7a62010-09-23 18:22:49 -070085static struct gpio_keys_button sdp4430_gpio_keys[] = {
86 {
87 .desc = "Proximity Sensor",
88 .type = EV_SW,
89 .code = SW_FRONT_PROXIMITY,
90 .gpio = OMAP4_SFH7741_SENSOR_OUTPUT_GPIO,
91 .active_low = 0,
92 }
93};
94
Hemanth V509b6d92010-08-02 13:18:04 +030095static struct gpio_led_platform_data sdp4430_led_data = {
96 .leds = sdp4430_gpio_leds,
97 .num_leds = ARRAY_SIZE(sdp4430_gpio_leds),
98};
99
Shubhrajyoti Datta94ce7a62010-09-23 18:22:49 -0700100static int omap_prox_activate(struct device *dev)
101{
102 gpio_set_value(OMAP4_SFH7741_ENABLE_GPIO , 1);
103 return 0;
104}
105
106static void omap_prox_deactivate(struct device *dev)
107{
108 gpio_set_value(OMAP4_SFH7741_ENABLE_GPIO , 0);
109}
110
111static struct gpio_keys_platform_data sdp4430_gpio_keys_data = {
112 .buttons = sdp4430_gpio_keys,
113 .nbuttons = ARRAY_SIZE(sdp4430_gpio_keys),
114 .enable = omap_prox_activate,
115 .disable = omap_prox_deactivate,
116};
117
118static struct platform_device sdp4430_gpio_keys_device = {
119 .name = "gpio-keys",
120 .id = -1,
121 .dev = {
122 .platform_data = &sdp4430_gpio_keys_data,
123 },
124};
125
Hemanth V509b6d92010-08-02 13:18:04 +0300126static struct platform_device sdp4430_leds_gpio = {
127 .name = "leds-gpio",
128 .id = -1,
129 .dev = {
130 .platform_data = &sdp4430_led_data,
131 },
132};
Abraham Arceb2aa5e52010-05-14 12:05:26 -0700133static struct spi_board_info sdp4430_spi_board_info[] __initdata = {
134 {
135 .modalias = "ks8851",
136 .bus_num = 1,
137 .chip_select = 0,
138 .max_speed_hz = 24000000,
139 .irq = ETH_KS8851_IRQ,
140 },
141};
142
143static int omap_ethernet_init(void)
144{
145 int status;
146
147 /* Request of GPIO lines */
148
149 status = gpio_request(ETH_KS8851_POWER_ON, "eth_power");
150 if (status) {
151 pr_err("Cannot request GPIO %d\n", ETH_KS8851_POWER_ON);
152 return status;
153 }
154
155 status = gpio_request(ETH_KS8851_QUART, "quart");
156 if (status) {
157 pr_err("Cannot request GPIO %d\n", ETH_KS8851_QUART);
158 goto error1;
159 }
160
161 status = gpio_request(ETH_KS8851_IRQ, "eth_irq");
162 if (status) {
163 pr_err("Cannot request GPIO %d\n", ETH_KS8851_IRQ);
164 goto error2;
165 }
166
167 /* Configuration of requested GPIO lines */
168
169 status = gpio_direction_output(ETH_KS8851_POWER_ON, 1);
170 if (status) {
171 pr_err("Cannot set output GPIO %d\n", ETH_KS8851_IRQ);
172 goto error3;
173 }
174
175 status = gpio_direction_output(ETH_KS8851_QUART, 1);
176 if (status) {
177 pr_err("Cannot set output GPIO %d\n", ETH_KS8851_QUART);
178 goto error3;
179 }
180
181 status = gpio_direction_input(ETH_KS8851_IRQ);
182 if (status) {
183 pr_err("Cannot set input GPIO %d\n", ETH_KS8851_IRQ);
184 goto error3;
185 }
186
187 return 0;
188
189error3:
190 gpio_free(ETH_KS8851_IRQ);
191error2:
192 gpio_free(ETH_KS8851_QUART);
193error1:
194 gpio_free(ETH_KS8851_POWER_ON);
195 return status;
196}
197
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700198static struct platform_device sdp4430_lcd_device = {
199 .name = "sdp4430_lcd",
200 .id = -1,
201};
202
203static struct platform_device *sdp4430_devices[] __initdata = {
204 &sdp4430_lcd_device,
Shubhrajyoti Datta94ce7a62010-09-23 18:22:49 -0700205 &sdp4430_gpio_keys_device,
Hemanth V509b6d92010-08-02 13:18:04 +0300206 &sdp4430_leds_gpio,
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700207};
208
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700209static struct omap_lcd_config sdp4430_lcd_config __initdata = {
210 .ctrl_name = "internal",
211};
212
213static struct omap_board_config_kernel sdp4430_config[] __initdata = {
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700214 { OMAP_TAG_LCD, &sdp4430_lcd_config },
215};
216
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700217static void __init omap_4430sdp_init_irq(void)
218{
Santosh Shilimkar5b7815b2009-10-22 14:48:14 -0700219 omap_board_config = sdp4430_config;
220 omap_board_config_size = ARRAY_SIZE(sdp4430_config);
Jean Pihet58cda882009-07-24 19:43:25 -0600221 omap2_init_common_hw(NULL, NULL);
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700222#ifdef CONFIG_OMAP_32K_TIMER
223 omap2_gp_clockevent_set_gptimer(1);
224#endif
225 gic_init_irq();
226 omap_gpio_init();
227}
228
Keshava Munegowda6aa85a52010-11-21 23:23:42 +0530229static const struct ehci_hcd_omap_platform_data ehci_pdata __initconst = {
230 .port_mode[0] = EHCI_HCD_OMAP_MODE_PHY,
231 .port_mode[1] = EHCI_HCD_OMAP_MODE_UNKNOWN,
232 .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN,
233 .phy_reset = false,
234 .reset_gpio_port[0] = -EINVAL,
235 .reset_gpio_port[1] = -EINVAL,
236 .reset_gpio_port[2] = -EINVAL,
237};
238
Maulik Mankadbce06682010-02-17 14:09:32 -0800239static struct omap_musb_board_data musb_board_data = {
240 .interface_type = MUSB_INTERFACE_UTMI,
Hema HK09e72002010-12-10 18:11:42 +0530241 .mode = MUSB_OTG,
Maulik Mankadbce06682010-02-17 14:09:32 -0800242 .power = 100,
243};
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000244
Hema HKe70357e2010-12-10 18:09:52 +0530245static struct twl4030_usb_data omap4_usbphy_data = {
246 .phy_init = omap4430_phy_init,
247 .phy_exit = omap4430_phy_exit,
248 .phy_power = omap4430_phy_power,
249 .phy_set_clock = omap4430_phy_set_clk,
250};
251
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000252static struct omap2_hsmmc_info mmc[] = {
253 {
254 .mmc = 1,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000255 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000256 .gpio_wp = -EINVAL,
257 },
258 {
259 .mmc = 2,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000260 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000261 .gpio_cd = -EINVAL,
262 .gpio_wp = -EINVAL,
263 .nonremovable = true,
kishore kadiyala64be9782010-10-01 16:35:28 -0700264 .ocr_mask = MMC_VDD_29_30,
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000265 },
266 {} /* Terminator */
267};
268
Santosh Shilimkar50263912010-08-02 13:18:03 +0300269static struct regulator_consumer_supply sdp4430_vaux_supply[] = {
270 {
271 .supply = "vmmc",
272 .dev_name = "mmci-omap-hs.1",
273 },
274};
Balaji T K6e30a7d2010-05-12 08:27:30 +0000275static struct regulator_consumer_supply sdp4430_vmmc_supply[] = {
276 {
277 .supply = "vmmc",
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000278 .dev_name = "mmci-omap-hs.0",
Balaji T K6e30a7d2010-05-12 08:27:30 +0000279 },
Balaji T K6e30a7d2010-05-12 08:27:30 +0000280};
281
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000282static int omap4_twl6030_hsmmc_late_init(struct device *dev)
283{
284 int ret = 0;
285 struct platform_device *pdev = container_of(dev,
286 struct platform_device, dev);
287 struct omap_mmc_platform_data *pdata = dev->platform_data;
288
289 /* Setting MMC1 Card detect Irq */
kishore kadiyala72f2e2c2010-09-24 17:13:20 +0000290 if (pdev->id == 0) {
291 ret = twl6030_mmc_card_detect_config();
292 if (ret)
293 pr_err("Failed configuring MMC1 card detect\n");
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000294 pdata->slots[0].card_detect_irq = TWL6030_IRQ_BASE +
295 MMCDETECT_INTR_OFFSET;
kishore kadiyala72f2e2c2010-09-24 17:13:20 +0000296 pdata->slots[0].card_detect = twl6030_mmc_card_detect;
297 }
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000298 return ret;
299}
300
301static __init void omap4_twl6030_hsmmc_set_late_init(struct device *dev)
302{
Benoit Cousson531c21b2010-10-01 16:35:26 -0700303 struct omap_mmc_platform_data *pdata;
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000304
Benoit Cousson531c21b2010-10-01 16:35:26 -0700305 /* dev can be null if CONFIG_MMC_OMAP_HS is not set */
306 if (!dev) {
307 pr_err("Failed %s\n", __func__);
308 return;
309 }
310 pdata = dev->platform_data;
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000311 pdata->init = omap4_twl6030_hsmmc_late_init;
312}
313
314static int __init omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers)
315{
316 struct omap2_hsmmc_info *c;
317
318 omap2_hsmmc_init(controllers);
319 for (c = controllers; c->mmc; c++)
320 omap4_twl6030_hsmmc_set_late_init(c->dev);
321
322 return 0;
323}
324
Balaji T K6e30a7d2010-05-12 08:27:30 +0000325static struct regulator_init_data sdp4430_vaux1 = {
326 .constraints = {
327 .min_uV = 1000000,
328 .max_uV = 3000000,
329 .apply_uV = true,
330 .valid_modes_mask = REGULATOR_MODE_NORMAL
331 | REGULATOR_MODE_STANDBY,
332 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
333 | REGULATOR_CHANGE_MODE
334 | REGULATOR_CHANGE_STATUS,
335 },
Santosh Shilimkar50263912010-08-02 13:18:03 +0300336 .num_consumer_supplies = 1,
337 .consumer_supplies = sdp4430_vaux_supply,
Balaji T K6e30a7d2010-05-12 08:27:30 +0000338};
339
340static struct regulator_init_data sdp4430_vaux2 = {
341 .constraints = {
342 .min_uV = 1200000,
343 .max_uV = 2800000,
344 .apply_uV = true,
345 .valid_modes_mask = REGULATOR_MODE_NORMAL
346 | REGULATOR_MODE_STANDBY,
347 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
348 | REGULATOR_CHANGE_MODE
349 | REGULATOR_CHANGE_STATUS,
350 },
351};
352
353static struct regulator_init_data sdp4430_vaux3 = {
354 .constraints = {
355 .min_uV = 1000000,
356 .max_uV = 3000000,
357 .apply_uV = true,
358 .valid_modes_mask = REGULATOR_MODE_NORMAL
359 | REGULATOR_MODE_STANDBY,
360 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
361 | REGULATOR_CHANGE_MODE
362 | REGULATOR_CHANGE_STATUS,
363 },
364};
365
366/* VMMC1 for MMC1 card */
367static struct regulator_init_data sdp4430_vmmc = {
368 .constraints = {
369 .min_uV = 1200000,
370 .max_uV = 3000000,
371 .apply_uV = true,
372 .valid_modes_mask = REGULATOR_MODE_NORMAL
373 | REGULATOR_MODE_STANDBY,
374 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
375 | REGULATOR_CHANGE_MODE
376 | REGULATOR_CHANGE_STATUS,
377 },
Santosh Shilimkar50263912010-08-02 13:18:03 +0300378 .num_consumer_supplies = 1,
Balaji T K6e30a7d2010-05-12 08:27:30 +0000379 .consumer_supplies = sdp4430_vmmc_supply,
380};
381
382static struct regulator_init_data sdp4430_vpp = {
383 .constraints = {
384 .min_uV = 1800000,
385 .max_uV = 2500000,
386 .apply_uV = true,
387 .valid_modes_mask = REGULATOR_MODE_NORMAL
388 | REGULATOR_MODE_STANDBY,
389 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
390 | REGULATOR_CHANGE_MODE
391 | REGULATOR_CHANGE_STATUS,
392 },
393};
394
395static struct regulator_init_data sdp4430_vusim = {
396 .constraints = {
397 .min_uV = 1200000,
398 .max_uV = 2900000,
399 .apply_uV = true,
400 .valid_modes_mask = REGULATOR_MODE_NORMAL
401 | REGULATOR_MODE_STANDBY,
402 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
403 | REGULATOR_CHANGE_MODE
404 | REGULATOR_CHANGE_STATUS,
405 },
406};
407
408static struct regulator_init_data sdp4430_vana = {
409 .constraints = {
410 .min_uV = 2100000,
411 .max_uV = 2100000,
412 .apply_uV = true,
413 .valid_modes_mask = REGULATOR_MODE_NORMAL
414 | REGULATOR_MODE_STANDBY,
415 .valid_ops_mask = REGULATOR_CHANGE_MODE
416 | REGULATOR_CHANGE_STATUS,
417 },
418};
419
420static struct regulator_init_data sdp4430_vcxio = {
421 .constraints = {
422 .min_uV = 1800000,
423 .max_uV = 1800000,
424 .apply_uV = true,
425 .valid_modes_mask = REGULATOR_MODE_NORMAL
426 | REGULATOR_MODE_STANDBY,
427 .valid_ops_mask = REGULATOR_CHANGE_MODE
428 | REGULATOR_CHANGE_STATUS,
429 },
430};
431
432static struct regulator_init_data sdp4430_vdac = {
433 .constraints = {
434 .min_uV = 1800000,
435 .max_uV = 1800000,
436 .apply_uV = true,
437 .valid_modes_mask = REGULATOR_MODE_NORMAL
438 | REGULATOR_MODE_STANDBY,
439 .valid_ops_mask = REGULATOR_CHANGE_MODE
440 | REGULATOR_CHANGE_STATUS,
441 },
442};
443
444static struct regulator_init_data sdp4430_vusb = {
445 .constraints = {
446 .min_uV = 3300000,
447 .max_uV = 3300000,
448 .apply_uV = true,
449 .valid_modes_mask = REGULATOR_MODE_NORMAL
450 | REGULATOR_MODE_STANDBY,
451 .valid_ops_mask = REGULATOR_CHANGE_MODE
452 | REGULATOR_CHANGE_STATUS,
453 },
454};
455
456static struct twl4030_platform_data sdp4430_twldata = {
457 .irq_base = TWL6030_IRQ_BASE,
458 .irq_end = TWL6030_IRQ_END,
459
460 /* Regulators */
461 .vmmc = &sdp4430_vmmc,
462 .vpp = &sdp4430_vpp,
463 .vusim = &sdp4430_vusim,
464 .vana = &sdp4430_vana,
465 .vcxio = &sdp4430_vcxio,
466 .vdac = &sdp4430_vdac,
467 .vusb = &sdp4430_vusb,
468 .vaux1 = &sdp4430_vaux1,
469 .vaux2 = &sdp4430_vaux2,
470 .vaux3 = &sdp4430_vaux3,
Hema HKe70357e2010-12-10 18:09:52 +0530471 .usb = &omap4_usbphy_data
Balaji T K6e30a7d2010-05-12 08:27:30 +0000472};
473
474static struct i2c_board_info __initdata sdp4430_i2c_boardinfo[] = {
475 {
476 I2C_BOARD_INFO("twl6030", 0x48),
477 .flags = I2C_CLIENT_WAKE,
478 .irq = OMAP44XX_IRQ_SYS_1N,
479 .platform_data = &sdp4430_twldata,
480 },
481};
Shubhrajyoti Datta83078f92010-08-02 13:18:04 +0300482static struct i2c_board_info __initdata sdp4430_i2c_3_boardinfo[] = {
483 {
484 I2C_BOARD_INFO("tmp105", 0x48),
485 },
486};
Shubhrajyoti Datta0df891b2010-09-23 18:22:47 -0700487static struct i2c_board_info __initdata sdp4430_i2c_4_boardinfo[] = {
488 {
489 I2C_BOARD_INFO("hmc5843", 0x1e),
490 },
491};
Santosh Shilimkarbaeb73e2010-05-12 08:27:29 +0000492static int __init omap4_i2c_init(void)
493{
494 /*
495 * Phoenix Audio IC needs I2C1 to
496 * start with 400 KHz or less
497 */
Balaji T K6e30a7d2010-05-12 08:27:30 +0000498 omap_register_i2c_bus(1, 400, sdp4430_i2c_boardinfo,
499 ARRAY_SIZE(sdp4430_i2c_boardinfo));
Santosh Shilimkarbaeb73e2010-05-12 08:27:29 +0000500 omap_register_i2c_bus(2, 400, NULL, 0);
Shubhrajyoti Datta83078f92010-08-02 13:18:04 +0300501 omap_register_i2c_bus(3, 400, sdp4430_i2c_3_boardinfo,
502 ARRAY_SIZE(sdp4430_i2c_3_boardinfo));
Shubhrajyoti Datta0df891b2010-09-23 18:22:47 -0700503 omap_register_i2c_bus(4, 400, sdp4430_i2c_4_boardinfo,
504 ARRAY_SIZE(sdp4430_i2c_4_boardinfo));
Santosh Shilimkarbaeb73e2010-05-12 08:27:29 +0000505 return 0;
506}
Shubhrajyoti Datta94ce7a62010-09-23 18:22:49 -0700507
508static void __init omap_sfh7741prox_init(void)
509{
510 int error;
511
512 error = gpio_request(OMAP4_SFH7741_ENABLE_GPIO, "sfh7741");
513 if (error < 0) {
514 pr_err("%s:failed to request GPIO %d, error %d\n",
515 __func__, OMAP4_SFH7741_ENABLE_GPIO, error);
516 return;
517 }
518
519 error = gpio_direction_output(OMAP4_SFH7741_ENABLE_GPIO , 0);
520 if (error < 0) {
521 pr_err("%s: GPIO configuration failed: GPIO %d,error %d\n",
522 __func__, OMAP4_SFH7741_ENABLE_GPIO, error);
523 gpio_free(OMAP4_SFH7741_ENABLE_GPIO);
524 }
525}
526
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700527static void __init omap_4430sdp_init(void)
528{
Abraham Arceb2aa5e52010-05-14 12:05:26 -0700529 int status;
530
Santosh Shilimkarbaeb73e2010-05-12 08:27:29 +0000531 omap4_i2c_init();
Shubhrajyoti Datta94ce7a62010-09-23 18:22:49 -0700532 omap_sfh7741prox_init();
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700533 platform_add_devices(sdp4430_devices, ARRAY_SIZE(sdp4430_devices));
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700534 omap_serial_init();
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000535 omap4_twl6030_hsmmc_init(mmc);
Keshava Munegowda6aa85a52010-11-21 23:23:42 +0530536
537 /* Power on the ULPI PHY */
538 if (gpio_is_valid(OMAP4SDP_MDM_PWR_EN_GPIO)) {
539 /* FIXME: Assumes pad is already muxed for GPIO mode */
540 gpio_request(OMAP4SDP_MDM_PWR_EN_GPIO, "USBB1 PHY VMDM_3V3");
541 gpio_direction_output(OMAP4SDP_MDM_PWR_EN_GPIO, 1);
542 }
543 usb_ehci_init(&ehci_pdata);
Felipe Balbi46960842010-12-07 09:57:59 +0200544 usb_musb_init(&musb_board_data);
Abraham Arceb2aa5e52010-05-14 12:05:26 -0700545
546 status = omap_ethernet_init();
547 if (status) {
548 pr_err("Ethernet initialization failed: %d\n", status);
549 } else {
550 sdp4430_spi_board_info[0].irq = gpio_to_irq(ETH_KS8851_IRQ);
551 spi_register_board_info(sdp4430_spi_board_info,
552 ARRAY_SIZE(sdp4430_spi_board_info));
553 }
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700554}
555
556static void __init omap_4430sdp_map_io(void)
557{
558 omap2_set_globals_443x();
Tony Lindgren6fbd55d2010-02-12 12:26:47 -0800559 omap44xx_map_common_io();
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700560}
561
562MACHINE_START(OMAP_4430SDP, "OMAP4430 4430SDP board")
563 /* Maintainer: Santosh Shilimkar - Texas Instruments Inc */
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700564 .boot_params = 0x80000100,
565 .map_io = omap_4430sdp_map_io,
Russell King71ee7da2010-05-23 10:18:16 +0100566 .reserve = omap_reserve,
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700567 .init_irq = omap_4430sdp_init_irq,
568 .init_machine = omap_4430sdp_init,
569 .timer = &omap_timer,
570MACHINE_END