blob: 9f75dc2364c9168aa834f58c64eebf3436bc027c [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>
35#include <plat/control.h>
36#include <plat/timer-gp.h>
Maulik Mankadbce06682010-02-17 14:09:32 -080037#include <plat/usb.h>
kishore kadiyala717c1fb2010-05-15 18:21:06 +000038#include <plat/mmc.h>
39#include "hsmmc.h"
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -070040
Abraham Arceb2aa5e52010-05-14 12:05:26 -070041#define ETH_KS8851_IRQ 34
42#define ETH_KS8851_POWER_ON 48
43#define ETH_KS8851_QUART 138
Shubhrajyoti Datta94ce7a62010-09-23 18:22:49 -070044#define OMAP4_SFH7741_SENSOR_OUTPUT_GPIO 184
45#define OMAP4_SFH7741_ENABLE_GPIO 188
Abraham Arceb2aa5e52010-05-14 12:05:26 -070046
Hemanth V509b6d92010-08-02 13:18:04 +030047static struct gpio_led sdp4430_gpio_leds[] = {
48 {
49 .name = "omap4:green:debug0",
50 .gpio = 61,
51 },
52 {
53 .name = "omap4:green:debug1",
54 .gpio = 30,
55 },
56 {
57 .name = "omap4:green:debug2",
58 .gpio = 7,
59 },
60 {
61 .name = "omap4:green:debug3",
62 .gpio = 8,
63 },
64 {
65 .name = "omap4:green:debug4",
66 .gpio = 50,
67 },
68 {
69 .name = "omap4:blue:user",
70 .gpio = 169,
71 },
72 {
73 .name = "omap4:red:user",
74 .gpio = 170,
75 },
76 {
77 .name = "omap4:green:user",
78 .gpio = 139,
79 },
80
81};
82
Shubhrajyoti Datta94ce7a62010-09-23 18:22:49 -070083static struct gpio_keys_button sdp4430_gpio_keys[] = {
84 {
85 .desc = "Proximity Sensor",
86 .type = EV_SW,
87 .code = SW_FRONT_PROXIMITY,
88 .gpio = OMAP4_SFH7741_SENSOR_OUTPUT_GPIO,
89 .active_low = 0,
90 }
91};
92
Hemanth V509b6d92010-08-02 13:18:04 +030093static struct gpio_led_platform_data sdp4430_led_data = {
94 .leds = sdp4430_gpio_leds,
95 .num_leds = ARRAY_SIZE(sdp4430_gpio_leds),
96};
97
Shubhrajyoti Datta94ce7a62010-09-23 18:22:49 -070098static int omap_prox_activate(struct device *dev)
99{
100 gpio_set_value(OMAP4_SFH7741_ENABLE_GPIO , 1);
101 return 0;
102}
103
104static void omap_prox_deactivate(struct device *dev)
105{
106 gpio_set_value(OMAP4_SFH7741_ENABLE_GPIO , 0);
107}
108
109static struct gpio_keys_platform_data sdp4430_gpio_keys_data = {
110 .buttons = sdp4430_gpio_keys,
111 .nbuttons = ARRAY_SIZE(sdp4430_gpio_keys),
112 .enable = omap_prox_activate,
113 .disable = omap_prox_deactivate,
114};
115
116static struct platform_device sdp4430_gpio_keys_device = {
117 .name = "gpio-keys",
118 .id = -1,
119 .dev = {
120 .platform_data = &sdp4430_gpio_keys_data,
121 },
122};
123
Hemanth V509b6d92010-08-02 13:18:04 +0300124static struct platform_device sdp4430_leds_gpio = {
125 .name = "leds-gpio",
126 .id = -1,
127 .dev = {
128 .platform_data = &sdp4430_led_data,
129 },
130};
Abraham Arceb2aa5e52010-05-14 12:05:26 -0700131static struct spi_board_info sdp4430_spi_board_info[] __initdata = {
132 {
133 .modalias = "ks8851",
134 .bus_num = 1,
135 .chip_select = 0,
136 .max_speed_hz = 24000000,
137 .irq = ETH_KS8851_IRQ,
138 },
139};
140
141static int omap_ethernet_init(void)
142{
143 int status;
144
145 /* Request of GPIO lines */
146
147 status = gpio_request(ETH_KS8851_POWER_ON, "eth_power");
148 if (status) {
149 pr_err("Cannot request GPIO %d\n", ETH_KS8851_POWER_ON);
150 return status;
151 }
152
153 status = gpio_request(ETH_KS8851_QUART, "quart");
154 if (status) {
155 pr_err("Cannot request GPIO %d\n", ETH_KS8851_QUART);
156 goto error1;
157 }
158
159 status = gpio_request(ETH_KS8851_IRQ, "eth_irq");
160 if (status) {
161 pr_err("Cannot request GPIO %d\n", ETH_KS8851_IRQ);
162 goto error2;
163 }
164
165 /* Configuration of requested GPIO lines */
166
167 status = gpio_direction_output(ETH_KS8851_POWER_ON, 1);
168 if (status) {
169 pr_err("Cannot set output GPIO %d\n", ETH_KS8851_IRQ);
170 goto error3;
171 }
172
173 status = gpio_direction_output(ETH_KS8851_QUART, 1);
174 if (status) {
175 pr_err("Cannot set output GPIO %d\n", ETH_KS8851_QUART);
176 goto error3;
177 }
178
179 status = gpio_direction_input(ETH_KS8851_IRQ);
180 if (status) {
181 pr_err("Cannot set input GPIO %d\n", ETH_KS8851_IRQ);
182 goto error3;
183 }
184
185 return 0;
186
187error3:
188 gpio_free(ETH_KS8851_IRQ);
189error2:
190 gpio_free(ETH_KS8851_QUART);
191error1:
192 gpio_free(ETH_KS8851_POWER_ON);
193 return status;
194}
195
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700196static struct platform_device sdp4430_lcd_device = {
197 .name = "sdp4430_lcd",
198 .id = -1,
199};
200
201static struct platform_device *sdp4430_devices[] __initdata = {
202 &sdp4430_lcd_device,
Shubhrajyoti Datta94ce7a62010-09-23 18:22:49 -0700203 &sdp4430_gpio_keys_device,
Hemanth V509b6d92010-08-02 13:18:04 +0300204 &sdp4430_leds_gpio,
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700205};
206
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700207static struct omap_lcd_config sdp4430_lcd_config __initdata = {
208 .ctrl_name = "internal",
209};
210
211static struct omap_board_config_kernel sdp4430_config[] __initdata = {
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700212 { OMAP_TAG_LCD, &sdp4430_lcd_config },
213};
214
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700215static void __init omap_4430sdp_init_irq(void)
216{
Santosh Shilimkar5b7815b2009-10-22 14:48:14 -0700217 omap_board_config = sdp4430_config;
218 omap_board_config_size = ARRAY_SIZE(sdp4430_config);
Jean Pihet58cda882009-07-24 19:43:25 -0600219 omap2_init_common_hw(NULL, NULL);
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700220#ifdef CONFIG_OMAP_32K_TIMER
221 omap2_gp_clockevent_set_gptimer(1);
222#endif
223 gic_init_irq();
224 omap_gpio_init();
225}
226
Maulik Mankadbce06682010-02-17 14:09:32 -0800227static struct omap_musb_board_data musb_board_data = {
228 .interface_type = MUSB_INTERFACE_UTMI,
229 .mode = MUSB_PERIPHERAL,
230 .power = 100,
231};
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000232
233static struct omap2_hsmmc_info mmc[] = {
234 {
235 .mmc = 1,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000236 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000237 .gpio_wp = -EINVAL,
238 },
239 {
240 .mmc = 2,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000241 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000242 .gpio_cd = -EINVAL,
243 .gpio_wp = -EINVAL,
244 .nonremovable = true,
kishore kadiyala64be9782010-10-01 16:35:28 -0700245 .ocr_mask = MMC_VDD_29_30,
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000246 },
247 {} /* Terminator */
248};
249
Santosh Shilimkar50263912010-08-02 13:18:03 +0300250static struct regulator_consumer_supply sdp4430_vaux_supply[] = {
251 {
252 .supply = "vmmc",
253 .dev_name = "mmci-omap-hs.1",
254 },
255};
Balaji T K6e30a7d2010-05-12 08:27:30 +0000256static struct regulator_consumer_supply sdp4430_vmmc_supply[] = {
257 {
258 .supply = "vmmc",
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000259 .dev_name = "mmci-omap-hs.0",
Balaji T K6e30a7d2010-05-12 08:27:30 +0000260 },
Balaji T K6e30a7d2010-05-12 08:27:30 +0000261};
262
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000263static int omap4_twl6030_hsmmc_late_init(struct device *dev)
264{
265 int ret = 0;
266 struct platform_device *pdev = container_of(dev,
267 struct platform_device, dev);
268 struct omap_mmc_platform_data *pdata = dev->platform_data;
269
270 /* Setting MMC1 Card detect Irq */
271 if (pdev->id == 0)
272 pdata->slots[0].card_detect_irq = TWL6030_IRQ_BASE +
273 MMCDETECT_INTR_OFFSET;
274 return ret;
275}
276
277static __init void omap4_twl6030_hsmmc_set_late_init(struct device *dev)
278{
Benoit Cousson531c21b2010-10-01 16:35:26 -0700279 struct omap_mmc_platform_data *pdata;
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000280
Benoit Cousson531c21b2010-10-01 16:35:26 -0700281 /* dev can be null if CONFIG_MMC_OMAP_HS is not set */
282 if (!dev) {
283 pr_err("Failed %s\n", __func__);
284 return;
285 }
286 pdata = dev->platform_data;
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000287 pdata->init = omap4_twl6030_hsmmc_late_init;
288}
289
290static int __init omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers)
291{
292 struct omap2_hsmmc_info *c;
293
294 omap2_hsmmc_init(controllers);
295 for (c = controllers; c->mmc; c++)
296 omap4_twl6030_hsmmc_set_late_init(c->dev);
297
298 return 0;
299}
300
Balaji T K6e30a7d2010-05-12 08:27:30 +0000301static struct regulator_init_data sdp4430_vaux1 = {
302 .constraints = {
303 .min_uV = 1000000,
304 .max_uV = 3000000,
305 .apply_uV = true,
306 .valid_modes_mask = REGULATOR_MODE_NORMAL
307 | REGULATOR_MODE_STANDBY,
308 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
309 | REGULATOR_CHANGE_MODE
310 | REGULATOR_CHANGE_STATUS,
311 },
Santosh Shilimkar50263912010-08-02 13:18:03 +0300312 .num_consumer_supplies = 1,
313 .consumer_supplies = sdp4430_vaux_supply,
Balaji T K6e30a7d2010-05-12 08:27:30 +0000314};
315
316static struct regulator_init_data sdp4430_vaux2 = {
317 .constraints = {
318 .min_uV = 1200000,
319 .max_uV = 2800000,
320 .apply_uV = true,
321 .valid_modes_mask = REGULATOR_MODE_NORMAL
322 | REGULATOR_MODE_STANDBY,
323 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
324 | REGULATOR_CHANGE_MODE
325 | REGULATOR_CHANGE_STATUS,
326 },
327};
328
329static struct regulator_init_data sdp4430_vaux3 = {
330 .constraints = {
331 .min_uV = 1000000,
332 .max_uV = 3000000,
333 .apply_uV = true,
334 .valid_modes_mask = REGULATOR_MODE_NORMAL
335 | REGULATOR_MODE_STANDBY,
336 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
337 | REGULATOR_CHANGE_MODE
338 | REGULATOR_CHANGE_STATUS,
339 },
340};
341
342/* VMMC1 for MMC1 card */
343static struct regulator_init_data sdp4430_vmmc = {
344 .constraints = {
345 .min_uV = 1200000,
346 .max_uV = 3000000,
347 .apply_uV = true,
348 .valid_modes_mask = REGULATOR_MODE_NORMAL
349 | REGULATOR_MODE_STANDBY,
350 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
351 | REGULATOR_CHANGE_MODE
352 | REGULATOR_CHANGE_STATUS,
353 },
Santosh Shilimkar50263912010-08-02 13:18:03 +0300354 .num_consumer_supplies = 1,
Balaji T K6e30a7d2010-05-12 08:27:30 +0000355 .consumer_supplies = sdp4430_vmmc_supply,
356};
357
358static struct regulator_init_data sdp4430_vpp = {
359 .constraints = {
360 .min_uV = 1800000,
361 .max_uV = 2500000,
362 .apply_uV = true,
363 .valid_modes_mask = REGULATOR_MODE_NORMAL
364 | REGULATOR_MODE_STANDBY,
365 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
366 | REGULATOR_CHANGE_MODE
367 | REGULATOR_CHANGE_STATUS,
368 },
369};
370
371static struct regulator_init_data sdp4430_vusim = {
372 .constraints = {
373 .min_uV = 1200000,
374 .max_uV = 2900000,
375 .apply_uV = true,
376 .valid_modes_mask = REGULATOR_MODE_NORMAL
377 | REGULATOR_MODE_STANDBY,
378 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
379 | REGULATOR_CHANGE_MODE
380 | REGULATOR_CHANGE_STATUS,
381 },
382};
383
384static struct regulator_init_data sdp4430_vana = {
385 .constraints = {
386 .min_uV = 2100000,
387 .max_uV = 2100000,
388 .apply_uV = true,
389 .valid_modes_mask = REGULATOR_MODE_NORMAL
390 | REGULATOR_MODE_STANDBY,
391 .valid_ops_mask = REGULATOR_CHANGE_MODE
392 | REGULATOR_CHANGE_STATUS,
393 },
394};
395
396static struct regulator_init_data sdp4430_vcxio = {
397 .constraints = {
398 .min_uV = 1800000,
399 .max_uV = 1800000,
400 .apply_uV = true,
401 .valid_modes_mask = REGULATOR_MODE_NORMAL
402 | REGULATOR_MODE_STANDBY,
403 .valid_ops_mask = REGULATOR_CHANGE_MODE
404 | REGULATOR_CHANGE_STATUS,
405 },
406};
407
408static struct regulator_init_data sdp4430_vdac = {
409 .constraints = {
410 .min_uV = 1800000,
411 .max_uV = 1800000,
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_vusb = {
421 .constraints = {
422 .min_uV = 3300000,
423 .max_uV = 3300000,
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 twl4030_platform_data sdp4430_twldata = {
433 .irq_base = TWL6030_IRQ_BASE,
434 .irq_end = TWL6030_IRQ_END,
435
436 /* Regulators */
437 .vmmc = &sdp4430_vmmc,
438 .vpp = &sdp4430_vpp,
439 .vusim = &sdp4430_vusim,
440 .vana = &sdp4430_vana,
441 .vcxio = &sdp4430_vcxio,
442 .vdac = &sdp4430_vdac,
443 .vusb = &sdp4430_vusb,
444 .vaux1 = &sdp4430_vaux1,
445 .vaux2 = &sdp4430_vaux2,
446 .vaux3 = &sdp4430_vaux3,
447};
448
449static struct i2c_board_info __initdata sdp4430_i2c_boardinfo[] = {
450 {
451 I2C_BOARD_INFO("twl6030", 0x48),
452 .flags = I2C_CLIENT_WAKE,
453 .irq = OMAP44XX_IRQ_SYS_1N,
454 .platform_data = &sdp4430_twldata,
455 },
456};
Shubhrajyoti Datta83078f92010-08-02 13:18:04 +0300457static struct i2c_board_info __initdata sdp4430_i2c_3_boardinfo[] = {
458 {
459 I2C_BOARD_INFO("tmp105", 0x48),
460 },
461};
Shubhrajyoti Datta0df891b2010-09-23 18:22:47 -0700462static struct i2c_board_info __initdata sdp4430_i2c_4_boardinfo[] = {
463 {
464 I2C_BOARD_INFO("hmc5843", 0x1e),
465 },
466};
Santosh Shilimkarbaeb73e2010-05-12 08:27:29 +0000467static int __init omap4_i2c_init(void)
468{
469 /*
470 * Phoenix Audio IC needs I2C1 to
471 * start with 400 KHz or less
472 */
Balaji T K6e30a7d2010-05-12 08:27:30 +0000473 omap_register_i2c_bus(1, 400, sdp4430_i2c_boardinfo,
474 ARRAY_SIZE(sdp4430_i2c_boardinfo));
Santosh Shilimkarbaeb73e2010-05-12 08:27:29 +0000475 omap_register_i2c_bus(2, 400, NULL, 0);
Shubhrajyoti Datta83078f92010-08-02 13:18:04 +0300476 omap_register_i2c_bus(3, 400, sdp4430_i2c_3_boardinfo,
477 ARRAY_SIZE(sdp4430_i2c_3_boardinfo));
Shubhrajyoti Datta0df891b2010-09-23 18:22:47 -0700478 omap_register_i2c_bus(4, 400, sdp4430_i2c_4_boardinfo,
479 ARRAY_SIZE(sdp4430_i2c_4_boardinfo));
Santosh Shilimkarbaeb73e2010-05-12 08:27:29 +0000480 return 0;
481}
Shubhrajyoti Datta94ce7a62010-09-23 18:22:49 -0700482
483static void __init omap_sfh7741prox_init(void)
484{
485 int error;
486
487 error = gpio_request(OMAP4_SFH7741_ENABLE_GPIO, "sfh7741");
488 if (error < 0) {
489 pr_err("%s:failed to request GPIO %d, error %d\n",
490 __func__, OMAP4_SFH7741_ENABLE_GPIO, error);
491 return;
492 }
493
494 error = gpio_direction_output(OMAP4_SFH7741_ENABLE_GPIO , 0);
495 if (error < 0) {
496 pr_err("%s: GPIO configuration failed: GPIO %d,error %d\n",
497 __func__, OMAP4_SFH7741_ENABLE_GPIO, error);
498 gpio_free(OMAP4_SFH7741_ENABLE_GPIO);
499 }
500}
501
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700502static void __init omap_4430sdp_init(void)
503{
Abraham Arceb2aa5e52010-05-14 12:05:26 -0700504 int status;
505
Santosh Shilimkarbaeb73e2010-05-12 08:27:29 +0000506 omap4_i2c_init();
Shubhrajyoti Datta94ce7a62010-09-23 18:22:49 -0700507 omap_sfh7741prox_init();
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700508 platform_add_devices(sdp4430_devices, ARRAY_SIZE(sdp4430_devices));
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700509 omap_serial_init();
kishore kadiyala717c1fb2010-05-15 18:21:06 +0000510 omap4_twl6030_hsmmc_init(mmc);
Maulik Mankadbce06682010-02-17 14:09:32 -0800511 /* OMAP4 SDP uses internal transceiver so register nop transceiver */
512 usb_nop_xceiv_register();
Santosh Shilimkarae46ec72010-02-16 19:29:20 +0530513 /* FIXME: allow multi-omap to boot until musb is updated for omap4 */
514 if (!cpu_is_omap44xx())
515 usb_musb_init(&musb_board_data);
Abraham Arceb2aa5e52010-05-14 12:05:26 -0700516
517 status = omap_ethernet_init();
518 if (status) {
519 pr_err("Ethernet initialization failed: %d\n", status);
520 } else {
521 sdp4430_spi_board_info[0].irq = gpio_to_irq(ETH_KS8851_IRQ);
522 spi_register_board_info(sdp4430_spi_board_info,
523 ARRAY_SIZE(sdp4430_spi_board_info));
524 }
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700525}
526
527static void __init omap_4430sdp_map_io(void)
528{
529 omap2_set_globals_443x();
Tony Lindgren6fbd55d2010-02-12 12:26:47 -0800530 omap44xx_map_common_io();
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700531}
532
533MACHINE_START(OMAP_4430SDP, "OMAP4430 4430SDP board")
534 /* Maintainer: Santosh Shilimkar - Texas Instruments Inc */
535 .phys_io = 0x48000000,
Santosh Shilimkarb4224b22009-10-19 17:25:55 -0700536 .io_pg_offst = ((0xfa000000) >> 18) & 0xfffc,
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700537 .boot_params = 0x80000100,
538 .map_io = omap_4430sdp_map_io,
Russell King71ee7da2010-05-23 10:18:16 +0100539 .reserve = omap_reserve,
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700540 .init_irq = omap_4430sdp_init_irq,
541 .init_machine = omap_4430sdp_init,
542 .timer = &omap_timer,
543MACHINE_END