ARM: OMAP2+: Remove hardcoded twl4030 gpio_base, irq_base and irq_end
[deliverable/linux.git] / arch / arm / mach-omap2 / board-rx51-peripherals.c
1 /*
2 * linux/arch/arm/mach-omap2/board-rx51-peripherals.c
3 *
4 * Copyright (C) 2008-2009 Nokia
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/input.h>
15 #include <linux/input/matrix_keypad.h>
16 #include <linux/spi/spi.h>
17 #include <linux/wl12xx.h>
18 #include <linux/spi/tsc2005.h>
19 #include <linux/i2c.h>
20 #include <linux/i2c/twl.h>
21 #include <linux/clk.h>
22 #include <linux/delay.h>
23 #include <linux/regulator/machine.h>
24 #include <linux/gpio.h>
25 #include <linux/gpio_keys.h>
26 #include <linux/mmc/host.h>
27 #include <linux/power/isp1704_charger.h>
28 #include <asm/system_info.h>
29
30 #include <plat/mcspi.h>
31 #include "common.h"
32 #include <plat/dma.h>
33 #include <plat/gpmc.h>
34 #include <plat/onenand.h>
35 #include <plat/gpmc-smc91x.h>
36
37 #include <mach/board-rx51.h>
38
39 #include <sound/tlv320aic3x.h>
40 #include <sound/tpa6130a2-plat.h>
41 #include <media/radio-si4713.h>
42 #include <media/si4713.h>
43 #include <linux/leds-lp5523.h>
44
45 #include <../drivers/staging/iio/light/tsl2563.h>
46 #include <linux/lis3lv02d.h>
47
48 #include "mux.h"
49 #include "hsmmc.h"
50 #include "common-board-devices.h"
51
52 #define SYSTEM_REV_B_USES_VAUX3 0x1699
53 #define SYSTEM_REV_S_USES_VAUX3 0x8
54
55 #define RX51_WL1251_POWER_GPIO 87
56 #define RX51_WL1251_IRQ_GPIO 42
57 #define RX51_FMTX_RESET_GPIO 163
58 #define RX51_FMTX_IRQ 53
59 #define RX51_LP5523_CHIP_EN_GPIO 41
60
61 #define RX51_USB_TRANSCEIVER_RST_GPIO 67
62
63 #define RX51_TSC2005_RESET_GPIO 104
64 #define RX51_TSC2005_IRQ_GPIO 100
65
66 #define LIS302_IRQ1_GPIO 181
67 #define LIS302_IRQ2_GPIO 180 /* Not yet in use */
68
69 /* list all spi devices here */
70 enum {
71 RX51_SPI_WL1251,
72 RX51_SPI_MIPID, /* LCD panel */
73 RX51_SPI_TSC2005, /* Touch Controller */
74 };
75
76 static struct wl12xx_platform_data wl1251_pdata;
77 static struct tsc2005_platform_data tsc2005_pdata;
78
79 #if defined(CONFIG_SENSORS_LIS3_I2C) || defined(CONFIG_SENSORS_LIS3_I2C_MODULE)
80 static int lis302_setup(void)
81 {
82 int err;
83 int irq1 = LIS302_IRQ1_GPIO;
84 int irq2 = LIS302_IRQ2_GPIO;
85
86 /* gpio for interrupt pin 1 */
87 err = gpio_request(irq1, "lis3lv02dl_irq1");
88 if (err) {
89 printk(KERN_ERR "lis3lv02dl: gpio request failed\n");
90 goto out;
91 }
92
93 /* gpio for interrupt pin 2 */
94 err = gpio_request(irq2, "lis3lv02dl_irq2");
95 if (err) {
96 gpio_free(irq1);
97 printk(KERN_ERR "lis3lv02dl: gpio request failed\n");
98 goto out;
99 }
100
101 gpio_direction_input(irq1);
102 gpio_direction_input(irq2);
103
104 out:
105 return err;
106 }
107
108 static int lis302_release(void)
109 {
110 gpio_free(LIS302_IRQ1_GPIO);
111 gpio_free(LIS302_IRQ2_GPIO);
112
113 return 0;
114 }
115
116 static struct lis3lv02d_platform_data rx51_lis3lv02d_data = {
117 .click_flags = LIS3_CLICK_SINGLE_X | LIS3_CLICK_SINGLE_Y |
118 LIS3_CLICK_SINGLE_Z,
119 /* Limits are 0.5g * value */
120 .click_thresh_x = 8,
121 .click_thresh_y = 8,
122 .click_thresh_z = 10,
123 /* Click must be longer than time limit */
124 .click_time_limit = 9,
125 /* Kind of debounce filter */
126 .click_latency = 50,
127
128 /* Limits for all axis. millig-value / 18 to get HW values */
129 .wakeup_flags = LIS3_WAKEUP_X_HI | LIS3_WAKEUP_Y_HI,
130 .wakeup_thresh = 800 / 18,
131 .wakeup_flags2 = LIS3_WAKEUP_Z_HI ,
132 .wakeup_thresh2 = 900 / 18,
133
134 .hipass_ctrl = LIS3_HIPASS1_DISABLE | LIS3_HIPASS2_DISABLE,
135
136 /* Interrupt line 2 for click detection, line 1 for thresholds */
137 .irq_cfg = LIS3_IRQ2_CLICK | LIS3_IRQ1_FF_WU_12,
138
139 .axis_x = LIS3_DEV_X,
140 .axis_y = LIS3_INV_DEV_Y,
141 .axis_z = LIS3_INV_DEV_Z,
142 .setup_resources = lis302_setup,
143 .release_resources = lis302_release,
144 .st_min_limits = {-32, 3, 3},
145 .st_max_limits = {-3, 32, 32},
146 };
147 #endif
148
149 #if defined(CONFIG_SENSORS_TSL2563) || defined(CONFIG_SENSORS_TSL2563_MODULE)
150 static struct tsl2563_platform_data rx51_tsl2563_platform_data = {
151 .cover_comp_gain = 16,
152 };
153 #endif
154
155 #if defined(CONFIG_LEDS_LP5523) || defined(CONFIG_LEDS_LP5523_MODULE)
156 static struct lp5523_led_config rx51_lp5523_led_config[] = {
157 {
158 .chan_nr = 0,
159 .led_current = 50,
160 }, {
161 .chan_nr = 1,
162 .led_current = 50,
163 }, {
164 .chan_nr = 2,
165 .led_current = 50,
166 }, {
167 .chan_nr = 3,
168 .led_current = 50,
169 }, {
170 .chan_nr = 4,
171 .led_current = 50,
172 }, {
173 .chan_nr = 5,
174 .led_current = 50,
175 }, {
176 .chan_nr = 6,
177 .led_current = 50,
178 }, {
179 .chan_nr = 7,
180 .led_current = 50,
181 }, {
182 .chan_nr = 8,
183 .led_current = 50,
184 }
185 };
186
187 static int rx51_lp5523_setup(void)
188 {
189 return gpio_request_one(RX51_LP5523_CHIP_EN_GPIO, GPIOF_DIR_OUT,
190 "lp5523_enable");
191 }
192
193 static void rx51_lp5523_release(void)
194 {
195 gpio_free(RX51_LP5523_CHIP_EN_GPIO);
196 }
197
198 static void rx51_lp5523_enable(bool state)
199 {
200 gpio_set_value(RX51_LP5523_CHIP_EN_GPIO, !!state);
201 }
202
203 static struct lp5523_platform_data rx51_lp5523_platform_data = {
204 .led_config = rx51_lp5523_led_config,
205 .num_channels = ARRAY_SIZE(rx51_lp5523_led_config),
206 .clock_mode = LP5523_CLOCK_AUTO,
207 .setup_resources = rx51_lp5523_setup,
208 .release_resources = rx51_lp5523_release,
209 .enable = rx51_lp5523_enable,
210 };
211 #endif
212
213 static struct omap2_mcspi_device_config wl1251_mcspi_config = {
214 .turbo_mode = 0,
215 };
216
217 static struct omap2_mcspi_device_config mipid_mcspi_config = {
218 .turbo_mode = 0,
219 };
220
221 static struct omap2_mcspi_device_config tsc2005_mcspi_config = {
222 .turbo_mode = 0,
223 };
224
225 static struct spi_board_info rx51_peripherals_spi_board_info[] __initdata = {
226 [RX51_SPI_WL1251] = {
227 .modalias = "wl1251",
228 .bus_num = 4,
229 .chip_select = 0,
230 .max_speed_hz = 48000000,
231 .mode = SPI_MODE_3,
232 .controller_data = &wl1251_mcspi_config,
233 .platform_data = &wl1251_pdata,
234 },
235 [RX51_SPI_MIPID] = {
236 .modalias = "acx565akm",
237 .bus_num = 1,
238 .chip_select = 2,
239 .max_speed_hz = 6000000,
240 .controller_data = &mipid_mcspi_config,
241 },
242 [RX51_SPI_TSC2005] = {
243 .modalias = "tsc2005",
244 .bus_num = 1,
245 .chip_select = 0,
246 .max_speed_hz = 6000000,
247 .controller_data = &tsc2005_mcspi_config,
248 .platform_data = &tsc2005_pdata,
249 },
250 };
251
252 static void rx51_charger_set_power(bool on)
253 {
254 gpio_set_value(RX51_USB_TRANSCEIVER_RST_GPIO, on);
255 }
256
257 static struct isp1704_charger_data rx51_charger_data = {
258 .set_power = rx51_charger_set_power,
259 };
260
261 static struct platform_device rx51_charger_device = {
262 .name = "isp1704_charger",
263 .dev = {
264 .platform_data = &rx51_charger_data,
265 },
266 };
267
268 static void __init rx51_charger_init(void)
269 {
270 WARN_ON(gpio_request_one(RX51_USB_TRANSCEIVER_RST_GPIO,
271 GPIOF_OUT_INIT_HIGH, "isp1704_reset"));
272
273 platform_device_register(&rx51_charger_device);
274 }
275
276 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
277
278 #define RX51_GPIO_CAMERA_LENS_COVER 110
279 #define RX51_GPIO_CAMERA_FOCUS 68
280 #define RX51_GPIO_CAMERA_CAPTURE 69
281 #define RX51_GPIO_KEYPAD_SLIDE 71
282 #define RX51_GPIO_LOCK_BUTTON 113
283 #define RX51_GPIO_PROXIMITY 89
284
285 #define RX51_GPIO_DEBOUNCE_TIMEOUT 10
286
287 static struct gpio_keys_button rx51_gpio_keys[] = {
288 {
289 .desc = "Camera Lens Cover",
290 .type = EV_SW,
291 .code = SW_CAMERA_LENS_COVER,
292 .gpio = RX51_GPIO_CAMERA_LENS_COVER,
293 .active_low = 1,
294 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
295 }, {
296 .desc = "Camera Focus",
297 .type = EV_KEY,
298 .code = KEY_CAMERA_FOCUS,
299 .gpio = RX51_GPIO_CAMERA_FOCUS,
300 .active_low = 1,
301 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
302 }, {
303 .desc = "Camera Capture",
304 .type = EV_KEY,
305 .code = KEY_CAMERA,
306 .gpio = RX51_GPIO_CAMERA_CAPTURE,
307 .active_low = 1,
308 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
309 }, {
310 .desc = "Lock Button",
311 .type = EV_KEY,
312 .code = KEY_SCREENLOCK,
313 .gpio = RX51_GPIO_LOCK_BUTTON,
314 .active_low = 1,
315 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
316 }, {
317 .desc = "Keypad Slide",
318 .type = EV_SW,
319 .code = SW_KEYPAD_SLIDE,
320 .gpio = RX51_GPIO_KEYPAD_SLIDE,
321 .active_low = 1,
322 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
323 }, {
324 .desc = "Proximity Sensor",
325 .type = EV_SW,
326 .code = SW_FRONT_PROXIMITY,
327 .gpio = RX51_GPIO_PROXIMITY,
328 .active_low = 0,
329 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
330 }
331 };
332
333 static struct gpio_keys_platform_data rx51_gpio_keys_data = {
334 .buttons = rx51_gpio_keys,
335 .nbuttons = ARRAY_SIZE(rx51_gpio_keys),
336 };
337
338 static struct platform_device rx51_gpio_keys_device = {
339 .name = "gpio-keys",
340 .id = -1,
341 .dev = {
342 .platform_data = &rx51_gpio_keys_data,
343 },
344 };
345
346 static void __init rx51_add_gpio_keys(void)
347 {
348 platform_device_register(&rx51_gpio_keys_device);
349 }
350 #else
351 static void __init rx51_add_gpio_keys(void)
352 {
353 }
354 #endif /* CONFIG_KEYBOARD_GPIO || CONFIG_KEYBOARD_GPIO_MODULE */
355
356 static uint32_t board_keymap[] = {
357 /*
358 * Note that KEY(x, 8, KEY_XXX) entries represent "entrire row
359 * connected to the ground" matrix state.
360 */
361 KEY(0, 0, KEY_Q),
362 KEY(0, 1, KEY_O),
363 KEY(0, 2, KEY_P),
364 KEY(0, 3, KEY_COMMA),
365 KEY(0, 4, KEY_BACKSPACE),
366 KEY(0, 6, KEY_A),
367 KEY(0, 7, KEY_S),
368
369 KEY(1, 0, KEY_W),
370 KEY(1, 1, KEY_D),
371 KEY(1, 2, KEY_F),
372 KEY(1, 3, KEY_G),
373 KEY(1, 4, KEY_H),
374 KEY(1, 5, KEY_J),
375 KEY(1, 6, KEY_K),
376 KEY(1, 7, KEY_L),
377
378 KEY(2, 0, KEY_E),
379 KEY(2, 1, KEY_DOT),
380 KEY(2, 2, KEY_UP),
381 KEY(2, 3, KEY_ENTER),
382 KEY(2, 5, KEY_Z),
383 KEY(2, 6, KEY_X),
384 KEY(2, 7, KEY_C),
385 KEY(2, 8, KEY_F9),
386
387 KEY(3, 0, KEY_R),
388 KEY(3, 1, KEY_V),
389 KEY(3, 2, KEY_B),
390 KEY(3, 3, KEY_N),
391 KEY(3, 4, KEY_M),
392 KEY(3, 5, KEY_SPACE),
393 KEY(3, 6, KEY_SPACE),
394 KEY(3, 7, KEY_LEFT),
395
396 KEY(4, 0, KEY_T),
397 KEY(4, 1, KEY_DOWN),
398 KEY(4, 2, KEY_RIGHT),
399 KEY(4, 4, KEY_LEFTCTRL),
400 KEY(4, 5, KEY_RIGHTALT),
401 KEY(4, 6, KEY_LEFTSHIFT),
402 KEY(4, 8, KEY_F10),
403
404 KEY(5, 0, KEY_Y),
405 KEY(5, 8, KEY_F11),
406
407 KEY(6, 0, KEY_U),
408
409 KEY(7, 0, KEY_I),
410 KEY(7, 1, KEY_F7),
411 KEY(7, 2, KEY_F8),
412 };
413
414 static struct matrix_keymap_data board_map_data = {
415 .keymap = board_keymap,
416 .keymap_size = ARRAY_SIZE(board_keymap),
417 };
418
419 static struct twl4030_keypad_data rx51_kp_data = {
420 .keymap_data = &board_map_data,
421 .rows = 8,
422 .cols = 8,
423 .rep = 1,
424 };
425
426 /* Enable input logic and pull all lines up when eMMC is on. */
427 static struct omap_board_mux rx51_mmc2_on_mux[] = {
428 OMAP3_MUX(SDMMC2_CMD, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
429 OMAP3_MUX(SDMMC2_DAT0, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
430 OMAP3_MUX(SDMMC2_DAT1, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
431 OMAP3_MUX(SDMMC2_DAT2, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
432 OMAP3_MUX(SDMMC2_DAT3, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
433 OMAP3_MUX(SDMMC2_DAT4, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
434 OMAP3_MUX(SDMMC2_DAT5, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
435 OMAP3_MUX(SDMMC2_DAT6, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
436 OMAP3_MUX(SDMMC2_DAT7, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
437 { .reg_offset = OMAP_MUX_TERMINATOR },
438 };
439
440 /* Disable input logic and pull all lines down when eMMC is off. */
441 static struct omap_board_mux rx51_mmc2_off_mux[] = {
442 OMAP3_MUX(SDMMC2_CMD, OMAP_PULL_ENA | OMAP_MUX_MODE0),
443 OMAP3_MUX(SDMMC2_DAT0, OMAP_PULL_ENA | OMAP_MUX_MODE0),
444 OMAP3_MUX(SDMMC2_DAT1, OMAP_PULL_ENA | OMAP_MUX_MODE0),
445 OMAP3_MUX(SDMMC2_DAT2, OMAP_PULL_ENA | OMAP_MUX_MODE0),
446 OMAP3_MUX(SDMMC2_DAT3, OMAP_PULL_ENA | OMAP_MUX_MODE0),
447 OMAP3_MUX(SDMMC2_DAT4, OMAP_PULL_ENA | OMAP_MUX_MODE0),
448 OMAP3_MUX(SDMMC2_DAT5, OMAP_PULL_ENA | OMAP_MUX_MODE0),
449 OMAP3_MUX(SDMMC2_DAT6, OMAP_PULL_ENA | OMAP_MUX_MODE0),
450 OMAP3_MUX(SDMMC2_DAT7, OMAP_PULL_ENA | OMAP_MUX_MODE0),
451 { .reg_offset = OMAP_MUX_TERMINATOR },
452 };
453
454 static struct omap_mux_partition *partition;
455
456 /*
457 * Current flows to eMMC when eMMC is off and the data lines are pulled up,
458 * so pull them down. N.B. we pull 8 lines because we are using 8 lines.
459 */
460 static void rx51_mmc2_remux(struct device *dev, int slot, int power_on)
461 {
462 if (power_on)
463 omap_mux_write_array(partition, rx51_mmc2_on_mux);
464 else
465 omap_mux_write_array(partition, rx51_mmc2_off_mux);
466 }
467
468 static struct omap2_hsmmc_info mmc[] __initdata = {
469 {
470 .name = "external",
471 .mmc = 1,
472 .caps = MMC_CAP_4_BIT_DATA,
473 .cover_only = true,
474 .gpio_cd = 160,
475 .gpio_wp = -EINVAL,
476 .power_saving = true,
477 },
478 {
479 .name = "internal",
480 .mmc = 2,
481 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
482 /* See also rx51_mmc2_remux */
483 .gpio_cd = -EINVAL,
484 .gpio_wp = -EINVAL,
485 .nonremovable = true,
486 .power_saving = true,
487 .remux = rx51_mmc2_remux,
488 },
489 {} /* Terminator */
490 };
491
492 static struct regulator_consumer_supply rx51_vmmc1_supply[] = {
493 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
494 };
495
496 static struct regulator_consumer_supply rx51_vaux2_supply[] = {
497 REGULATOR_SUPPLY("vdds_csib", "omap3isp"),
498 };
499
500 static struct regulator_consumer_supply rx51_vaux3_supply[] = {
501 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1"),
502 };
503
504 static struct regulator_consumer_supply rx51_vsim_supply[] = {
505 REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.1"),
506 };
507
508 static struct regulator_consumer_supply rx51_vmmc2_supplies[] = {
509 /* tlv320aic3x analog supplies */
510 REGULATOR_SUPPLY("AVDD", "2-0018"),
511 REGULATOR_SUPPLY("DRVDD", "2-0018"),
512 REGULATOR_SUPPLY("AVDD", "2-0019"),
513 REGULATOR_SUPPLY("DRVDD", "2-0019"),
514 /* tpa6130a2 */
515 REGULATOR_SUPPLY("Vdd", "2-0060"),
516 /* Keep vmmc as last item. It is not iterated for newer boards */
517 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1"),
518 };
519
520 static struct regulator_consumer_supply rx51_vio_supplies[] = {
521 /* tlv320aic3x digital supplies */
522 REGULATOR_SUPPLY("IOVDD", "2-0018"),
523 REGULATOR_SUPPLY("DVDD", "2-0018"),
524 REGULATOR_SUPPLY("IOVDD", "2-0019"),
525 REGULATOR_SUPPLY("DVDD", "2-0019"),
526 /* Si4713 IO supply */
527 REGULATOR_SUPPLY("vio", "2-0063"),
528 };
529
530 static struct regulator_consumer_supply rx51_vaux1_consumers[] = {
531 REGULATOR_SUPPLY("vdds_sdi", "omapdss"),
532 /* Si4713 supply */
533 REGULATOR_SUPPLY("vdd", "2-0063"),
534 };
535
536 static struct regulator_init_data rx51_vaux1 = {
537 .constraints = {
538 .name = "V28",
539 .min_uV = 2800000,
540 .max_uV = 2800000,
541 .always_on = true, /* due battery cover sensor */
542 .valid_modes_mask = REGULATOR_MODE_NORMAL
543 | REGULATOR_MODE_STANDBY,
544 .valid_ops_mask = REGULATOR_CHANGE_MODE
545 | REGULATOR_CHANGE_STATUS,
546 },
547 .num_consumer_supplies = ARRAY_SIZE(rx51_vaux1_consumers),
548 .consumer_supplies = rx51_vaux1_consumers,
549 };
550
551 static struct regulator_init_data rx51_vaux2 = {
552 .constraints = {
553 .name = "VCSI",
554 .min_uV = 1800000,
555 .max_uV = 1800000,
556 .valid_modes_mask = REGULATOR_MODE_NORMAL
557 | REGULATOR_MODE_STANDBY,
558 .valid_ops_mask = REGULATOR_CHANGE_MODE
559 | REGULATOR_CHANGE_STATUS,
560 },
561 .num_consumer_supplies = ARRAY_SIZE(rx51_vaux2_supply),
562 .consumer_supplies = rx51_vaux2_supply,
563 };
564
565 /* VAUX3 - adds more power to VIO_18 rail */
566 static struct regulator_init_data rx51_vaux3_cam = {
567 .constraints = {
568 .name = "VCAM_DIG_18",
569 .min_uV = 1800000,
570 .max_uV = 1800000,
571 .apply_uV = true,
572 .valid_modes_mask = REGULATOR_MODE_NORMAL
573 | REGULATOR_MODE_STANDBY,
574 .valid_ops_mask = REGULATOR_CHANGE_MODE
575 | REGULATOR_CHANGE_STATUS,
576 },
577 };
578
579 static struct regulator_init_data rx51_vaux3_mmc = {
580 .constraints = {
581 .name = "VMMC2_30",
582 .min_uV = 2800000,
583 .max_uV = 3000000,
584 .apply_uV = true,
585 .valid_modes_mask = REGULATOR_MODE_NORMAL
586 | REGULATOR_MODE_STANDBY,
587 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
588 | REGULATOR_CHANGE_MODE
589 | REGULATOR_CHANGE_STATUS,
590 },
591 .num_consumer_supplies = ARRAY_SIZE(rx51_vaux3_supply),
592 .consumer_supplies = rx51_vaux3_supply,
593 };
594
595 static struct regulator_init_data rx51_vaux4 = {
596 .constraints = {
597 .name = "VCAM_ANA_28",
598 .min_uV = 2800000,
599 .max_uV = 2800000,
600 .apply_uV = true,
601 .valid_modes_mask = REGULATOR_MODE_NORMAL
602 | REGULATOR_MODE_STANDBY,
603 .valid_ops_mask = REGULATOR_CHANGE_MODE
604 | REGULATOR_CHANGE_STATUS,
605 },
606 };
607
608 static struct regulator_init_data rx51_vmmc1 = {
609 .constraints = {
610 .min_uV = 1850000,
611 .max_uV = 3150000,
612 .valid_modes_mask = REGULATOR_MODE_NORMAL
613 | REGULATOR_MODE_STANDBY,
614 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
615 | REGULATOR_CHANGE_MODE
616 | REGULATOR_CHANGE_STATUS,
617 },
618 .num_consumer_supplies = ARRAY_SIZE(rx51_vmmc1_supply),
619 .consumer_supplies = rx51_vmmc1_supply,
620 };
621
622 static struct regulator_init_data rx51_vmmc2 = {
623 .constraints = {
624 .name = "V28_A",
625 .min_uV = 2800000,
626 .max_uV = 3000000,
627 .always_on = true, /* due VIO leak to AIC34 VDDs */
628 .apply_uV = true,
629 .valid_modes_mask = REGULATOR_MODE_NORMAL
630 | REGULATOR_MODE_STANDBY,
631 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
632 | REGULATOR_CHANGE_MODE
633 | REGULATOR_CHANGE_STATUS,
634 },
635 .num_consumer_supplies = ARRAY_SIZE(rx51_vmmc2_supplies),
636 .consumer_supplies = rx51_vmmc2_supplies,
637 };
638
639 static struct regulator_init_data rx51_vpll1 = {
640 .constraints = {
641 .name = "VPLL",
642 .min_uV = 1800000,
643 .max_uV = 1800000,
644 .apply_uV = true,
645 .always_on = true,
646 .valid_modes_mask = REGULATOR_MODE_NORMAL
647 | REGULATOR_MODE_STANDBY,
648 .valid_ops_mask = REGULATOR_CHANGE_MODE,
649 },
650 };
651
652 static struct regulator_init_data rx51_vpll2 = {
653 .constraints = {
654 .name = "VSDI_CSI",
655 .min_uV = 1800000,
656 .max_uV = 1800000,
657 .apply_uV = true,
658 .always_on = true,
659 .valid_modes_mask = REGULATOR_MODE_NORMAL
660 | REGULATOR_MODE_STANDBY,
661 .valid_ops_mask = REGULATOR_CHANGE_MODE,
662 },
663 };
664
665 static struct regulator_init_data rx51_vsim = {
666 .constraints = {
667 .name = "VMMC2_IO_18",
668 .min_uV = 1800000,
669 .max_uV = 1800000,
670 .apply_uV = true,
671 .valid_modes_mask = REGULATOR_MODE_NORMAL
672 | REGULATOR_MODE_STANDBY,
673 .valid_ops_mask = REGULATOR_CHANGE_MODE
674 | REGULATOR_CHANGE_STATUS,
675 },
676 .num_consumer_supplies = ARRAY_SIZE(rx51_vsim_supply),
677 .consumer_supplies = rx51_vsim_supply,
678 };
679
680 static struct regulator_init_data rx51_vio = {
681 .constraints = {
682 .min_uV = 1800000,
683 .max_uV = 1800000,
684 .valid_modes_mask = REGULATOR_MODE_NORMAL
685 | REGULATOR_MODE_STANDBY,
686 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
687 | REGULATOR_CHANGE_MODE
688 | REGULATOR_CHANGE_STATUS,
689 },
690 .num_consumer_supplies = ARRAY_SIZE(rx51_vio_supplies),
691 .consumer_supplies = rx51_vio_supplies,
692 };
693
694 static struct regulator_init_data rx51_vintana1 = {
695 .constraints = {
696 .name = "VINTANA1",
697 .min_uV = 1500000,
698 .max_uV = 1500000,
699 .always_on = true,
700 .valid_modes_mask = REGULATOR_MODE_NORMAL
701 | REGULATOR_MODE_STANDBY,
702 .valid_ops_mask = REGULATOR_CHANGE_MODE,
703 },
704 };
705
706 static struct regulator_init_data rx51_vintana2 = {
707 .constraints = {
708 .name = "VINTANA2",
709 .min_uV = 2750000,
710 .max_uV = 2750000,
711 .apply_uV = true,
712 .always_on = true,
713 .valid_modes_mask = REGULATOR_MODE_NORMAL
714 | REGULATOR_MODE_STANDBY,
715 .valid_ops_mask = REGULATOR_CHANGE_MODE,
716 },
717 };
718
719 static struct regulator_init_data rx51_vintdig = {
720 .constraints = {
721 .name = "VINTDIG",
722 .min_uV = 1500000,
723 .max_uV = 1500000,
724 .always_on = true,
725 .valid_modes_mask = REGULATOR_MODE_NORMAL
726 | REGULATOR_MODE_STANDBY,
727 .valid_ops_mask = REGULATOR_CHANGE_MODE,
728 },
729 };
730
731 static struct si4713_platform_data rx51_si4713_i2c_data __initdata_or_module = {
732 .gpio_reset = RX51_FMTX_RESET_GPIO,
733 };
734
735 static struct i2c_board_info rx51_si4713_board_info __initdata_or_module = {
736 I2C_BOARD_INFO("si4713", SI4713_I2C_ADDR_BUSEN_HIGH),
737 .platform_data = &rx51_si4713_i2c_data,
738 };
739
740 static struct radio_si4713_platform_data rx51_si4713_data __initdata_or_module = {
741 .i2c_bus = 2,
742 .subdev_board_info = &rx51_si4713_board_info,
743 };
744
745 static struct platform_device rx51_si4713_dev = {
746 .name = "radio-si4713",
747 .id = -1,
748 .dev = {
749 .platform_data = &rx51_si4713_data,
750 },
751 };
752
753 static __init void rx51_init_si4713(void)
754 {
755 int err;
756
757 err = gpio_request_one(RX51_FMTX_IRQ, GPIOF_DIR_IN, "si4713 irq");
758 if (err) {
759 printk(KERN_ERR "Cannot request si4713 irq gpio. %d\n", err);
760 return;
761 }
762 rx51_si4713_board_info.irq = gpio_to_irq(RX51_FMTX_IRQ);
763 platform_device_register(&rx51_si4713_dev);
764 }
765
766 static int rx51_twlgpio_setup(struct device *dev, unsigned gpio, unsigned n)
767 {
768 /* FIXME this gpio setup is just a placeholder for now */
769 gpio_request_one(gpio + 6, GPIOF_OUT_INIT_LOW, "backlight_pwm");
770 gpio_request_one(gpio + 7, GPIOF_OUT_INIT_LOW, "speaker_en");
771
772 return 0;
773 }
774
775 static struct twl4030_gpio_platform_data rx51_gpio_data = {
776 .pulldowns = BIT(0) | BIT(1) | BIT(2) | BIT(3)
777 | BIT(4) | BIT(5)
778 | BIT(8) | BIT(9) | BIT(10) | BIT(11)
779 | BIT(12) | BIT(13) | BIT(14) | BIT(15)
780 | BIT(16) | BIT(17) ,
781 .setup = rx51_twlgpio_setup,
782 };
783
784 static struct twl4030_ins sleep_on_seq[] __initdata = {
785 /*
786 * Turn off everything
787 */
788 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_SLEEP), 2},
789 };
790
791 static struct twl4030_script sleep_on_script __initdata = {
792 .script = sleep_on_seq,
793 .size = ARRAY_SIZE(sleep_on_seq),
794 .flags = TWL4030_SLEEP_SCRIPT,
795 };
796
797 static struct twl4030_ins wakeup_seq[] __initdata = {
798 /*
799 * Reenable everything
800 */
801 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_ACTIVE), 2},
802 };
803
804 static struct twl4030_script wakeup_script __initdata = {
805 .script = wakeup_seq,
806 .size = ARRAY_SIZE(wakeup_seq),
807 .flags = TWL4030_WAKEUP12_SCRIPT,
808 };
809
810 static struct twl4030_ins wakeup_p3_seq[] __initdata = {
811 /*
812 * Reenable everything
813 */
814 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_ACTIVE), 2},
815 };
816
817 static struct twl4030_script wakeup_p3_script __initdata = {
818 .script = wakeup_p3_seq,
819 .size = ARRAY_SIZE(wakeup_p3_seq),
820 .flags = TWL4030_WAKEUP3_SCRIPT,
821 };
822
823 static struct twl4030_ins wrst_seq[] __initdata = {
824 /*
825 * Reset twl4030.
826 * Reset VDD1 regulator.
827 * Reset VDD2 regulator.
828 * Reset VPLL1 regulator.
829 * Enable sysclk output.
830 * Reenable twl4030.
831 */
832 {MSG_SINGULAR(DEV_GRP_NULL, RES_RESET, RES_STATE_OFF), 2},
833 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 0, 1, RES_STATE_ACTIVE),
834 0x13},
835 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_PP, 0, 3, RES_STATE_OFF), 0x13},
836 {MSG_SINGULAR(DEV_GRP_NULL, RES_VDD1, RES_STATE_WRST), 0x13},
837 {MSG_SINGULAR(DEV_GRP_NULL, RES_VDD2, RES_STATE_WRST), 0x13},
838 {MSG_SINGULAR(DEV_GRP_NULL, RES_VPLL1, RES_STATE_WRST), 0x35},
839 {MSG_SINGULAR(DEV_GRP_P3, RES_HFCLKOUT, RES_STATE_ACTIVE), 2},
840 {MSG_SINGULAR(DEV_GRP_NULL, RES_RESET, RES_STATE_ACTIVE), 2},
841 };
842
843 static struct twl4030_script wrst_script __initdata = {
844 .script = wrst_seq,
845 .size = ARRAY_SIZE(wrst_seq),
846 .flags = TWL4030_WRST_SCRIPT,
847 };
848
849 static struct twl4030_script *twl4030_scripts[] __initdata = {
850 /* wakeup12 script should be loaded before sleep script, otherwise a
851 board might hit retention before loading of wakeup script is
852 completed. This can cause boot failures depending on timing issues.
853 */
854 &wakeup_script,
855 &sleep_on_script,
856 &wakeup_p3_script,
857 &wrst_script,
858 };
859
860 static struct twl4030_resconfig twl4030_rconfig[] __initdata = {
861 { .resource = RES_VDD1, .devgroup = -1,
862 .type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,
863 .remap_sleep = RES_STATE_OFF
864 },
865 { .resource = RES_VDD2, .devgroup = -1,
866 .type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,
867 .remap_sleep = RES_STATE_OFF
868 },
869 { .resource = RES_VPLL1, .devgroup = -1,
870 .type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,
871 .remap_sleep = RES_STATE_OFF
872 },
873 { .resource = RES_VPLL2, .devgroup = -1,
874 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
875 },
876 { .resource = RES_VAUX1, .devgroup = -1,
877 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
878 },
879 { .resource = RES_VAUX2, .devgroup = -1,
880 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
881 },
882 { .resource = RES_VAUX3, .devgroup = -1,
883 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
884 },
885 { .resource = RES_VAUX4, .devgroup = -1,
886 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
887 },
888 { .resource = RES_VMMC1, .devgroup = -1,
889 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
890 },
891 { .resource = RES_VMMC2, .devgroup = -1,
892 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
893 },
894 { .resource = RES_VDAC, .devgroup = -1,
895 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
896 },
897 { .resource = RES_VSIM, .devgroup = -1,
898 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
899 },
900 { .resource = RES_VINTANA1, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
901 .type = -1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
902 },
903 { .resource = RES_VINTANA2, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
904 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
905 },
906 { .resource = RES_VINTDIG, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
907 .type = -1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
908 },
909 { .resource = RES_VIO, .devgroup = DEV_GRP_P3,
910 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
911 },
912 { .resource = RES_CLKEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
913 .type = 1, .type2 = -1 , .remap_off = -1, .remap_sleep = -1
914 },
915 { .resource = RES_REGEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
916 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
917 },
918 { .resource = RES_NRES_PWRON, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
919 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
920 },
921 { .resource = RES_SYSEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
922 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
923 },
924 { .resource = RES_HFCLKOUT, .devgroup = DEV_GRP_P3,
925 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
926 },
927 { .resource = RES_32KCLKOUT, .devgroup = -1,
928 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
929 },
930 { .resource = RES_RESET, .devgroup = -1,
931 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
932 },
933 { .resource = RES_MAIN_REF, .devgroup = -1,
934 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
935 },
936 { 0, 0},
937 };
938
939 static struct twl4030_power_data rx51_t2scripts_data __initdata = {
940 .scripts = twl4030_scripts,
941 .num = ARRAY_SIZE(twl4030_scripts),
942 .resource_config = twl4030_rconfig,
943 };
944
945 static struct twl4030_vibra_data rx51_vibra_data __initdata = {
946 .coexist = 0,
947 };
948
949 static struct twl4030_audio_data rx51_audio_data __initdata = {
950 .audio_mclk = 26000000,
951 .vibra = &rx51_vibra_data,
952 };
953
954 static struct twl4030_platform_data rx51_twldata __initdata = {
955 /* platform_data for children goes here */
956 .gpio = &rx51_gpio_data,
957 .keypad = &rx51_kp_data,
958 .power = &rx51_t2scripts_data,
959 .audio = &rx51_audio_data,
960
961 .vaux1 = &rx51_vaux1,
962 .vaux2 = &rx51_vaux2,
963 .vaux4 = &rx51_vaux4,
964 .vmmc1 = &rx51_vmmc1,
965 .vpll1 = &rx51_vpll1,
966 .vpll2 = &rx51_vpll2,
967 .vsim = &rx51_vsim,
968 .vintana1 = &rx51_vintana1,
969 .vintana2 = &rx51_vintana2,
970 .vintdig = &rx51_vintdig,
971 .vio = &rx51_vio,
972 };
973
974 static struct tpa6130a2_platform_data rx51_tpa6130a2_data __initdata_or_module = {
975 .power_gpio = 98,
976 };
977
978 /* Audio setup data */
979 static struct aic3x_setup_data rx51_aic34_setup = {
980 .gpio_func[0] = AIC3X_GPIO1_FUNC_DISABLED,
981 .gpio_func[1] = AIC3X_GPIO2_FUNC_DIGITAL_MIC_INPUT,
982 };
983
984 static struct aic3x_pdata rx51_aic3x_data = {
985 .setup = &rx51_aic34_setup,
986 .gpio_reset = 60,
987 };
988
989 static struct aic3x_pdata rx51_aic3x_data2 = {
990 .gpio_reset = 60,
991 };
992
993 static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_2[] = {
994 {
995 I2C_BOARD_INFO("tlv320aic3x", 0x18),
996 .platform_data = &rx51_aic3x_data,
997 },
998 {
999 I2C_BOARD_INFO("tlv320aic3x", 0x19),
1000 .platform_data = &rx51_aic3x_data2,
1001 },
1002 #if defined(CONFIG_SENSORS_TSL2563) || defined(CONFIG_SENSORS_TSL2563_MODULE)
1003 {
1004 I2C_BOARD_INFO("tsl2563", 0x29),
1005 .platform_data = &rx51_tsl2563_platform_data,
1006 },
1007 #endif
1008 #if defined(CONFIG_LEDS_LP5523) || defined(CONFIG_LEDS_LP5523_MODULE)
1009 {
1010 I2C_BOARD_INFO("lp5523", 0x32),
1011 .platform_data = &rx51_lp5523_platform_data,
1012 },
1013 #endif
1014 {
1015 I2C_BOARD_INFO("bq27200", 0x55),
1016 },
1017 {
1018 I2C_BOARD_INFO("tpa6130a2", 0x60),
1019 .platform_data = &rx51_tpa6130a2_data,
1020 }
1021 };
1022
1023 static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_3[] = {
1024 #if defined(CONFIG_SENSORS_LIS3_I2C) || defined(CONFIG_SENSORS_LIS3_I2C_MODULE)
1025 {
1026 I2C_BOARD_INFO("lis3lv02d", 0x1d),
1027 .platform_data = &rx51_lis3lv02d_data,
1028 },
1029 #endif
1030 };
1031
1032 static int __init rx51_i2c_init(void)
1033 {
1034 if ((system_rev >= SYSTEM_REV_S_USES_VAUX3 && system_rev < 0x100) ||
1035 system_rev >= SYSTEM_REV_B_USES_VAUX3) {
1036 rx51_twldata.vaux3 = &rx51_vaux3_mmc;
1037 /* Only older boards use VMMC2 for internal MMC */
1038 rx51_vmmc2.num_consumer_supplies--;
1039 } else {
1040 rx51_twldata.vaux3 = &rx51_vaux3_cam;
1041 }
1042 rx51_twldata.vmmc2 = &rx51_vmmc2;
1043 omap3_pmic_get_config(&rx51_twldata,
1044 TWL_COMMON_PDATA_USB | TWL_COMMON_PDATA_MADC,
1045 TWL_COMMON_REGULATOR_VDAC);
1046
1047 rx51_twldata.vdac->constraints.apply_uV = true;
1048 rx51_twldata.vdac->constraints.name = "VDAC";
1049
1050 omap_pmic_init(1, 2200, "twl5030", INT_34XX_SYS_NIRQ, &rx51_twldata);
1051 omap_register_i2c_bus(2, 100, rx51_peripherals_i2c_board_info_2,
1052 ARRAY_SIZE(rx51_peripherals_i2c_board_info_2));
1053 #if defined(CONFIG_SENSORS_LIS3_I2C) || defined(CONFIG_SENSORS_LIS3_I2C_MODULE)
1054 rx51_lis3lv02d_data.irq2 = gpio_to_irq(LIS302_IRQ2_GPIO);
1055 rx51_peripherals_i2c_board_info_3[0].irq = gpio_to_irq(LIS302_IRQ1_GPIO);
1056 #endif
1057 omap_register_i2c_bus(3, 400, rx51_peripherals_i2c_board_info_3,
1058 ARRAY_SIZE(rx51_peripherals_i2c_board_info_3));
1059 return 0;
1060 }
1061
1062 #if defined(CONFIG_MTD_ONENAND_OMAP2) || \
1063 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
1064
1065 static struct mtd_partition onenand_partitions[] = {
1066 {
1067 .name = "bootloader",
1068 .offset = 0,
1069 .size = 0x20000,
1070 .mask_flags = MTD_WRITEABLE, /* Force read-only */
1071 },
1072 {
1073 .name = "config",
1074 .offset = MTDPART_OFS_APPEND,
1075 .size = 0x60000,
1076 },
1077 {
1078 .name = "log",
1079 .offset = MTDPART_OFS_APPEND,
1080 .size = 0x40000,
1081 },
1082 {
1083 .name = "kernel",
1084 .offset = MTDPART_OFS_APPEND,
1085 .size = 0x200000,
1086 },
1087 {
1088 .name = "initfs",
1089 .offset = MTDPART_OFS_APPEND,
1090 .size = 0x200000,
1091 },
1092 {
1093 .name = "rootfs",
1094 .offset = MTDPART_OFS_APPEND,
1095 .size = MTDPART_SIZ_FULL,
1096 },
1097 };
1098
1099 static struct omap_onenand_platform_data board_onenand_data[] = {
1100 {
1101 .cs = 0,
1102 .gpio_irq = 65,
1103 .parts = onenand_partitions,
1104 .nr_parts = ARRAY_SIZE(onenand_partitions),
1105 .flags = ONENAND_SYNC_READWRITE,
1106 }
1107 };
1108 #endif
1109
1110 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
1111
1112 static struct omap_smc91x_platform_data board_smc91x_data = {
1113 .cs = 1,
1114 .gpio_irq = 54,
1115 .gpio_pwrdwn = 86,
1116 .gpio_reset = 164,
1117 .flags = GPMC_TIMINGS_SMC91C96 | IORESOURCE_IRQ_HIGHLEVEL,
1118 };
1119
1120 static void __init board_smc91x_init(void)
1121 {
1122 omap_mux_init_gpio(54, OMAP_PIN_INPUT_PULLDOWN);
1123 omap_mux_init_gpio(86, OMAP_PIN_OUTPUT);
1124 omap_mux_init_gpio(164, OMAP_PIN_OUTPUT);
1125
1126 gpmc_smc91x_init(&board_smc91x_data);
1127 }
1128
1129 #else
1130
1131 static inline void board_smc91x_init(void)
1132 {
1133 }
1134
1135 #endif
1136
1137 static void rx51_wl1251_set_power(bool enable)
1138 {
1139 gpio_set_value(RX51_WL1251_POWER_GPIO, enable);
1140 }
1141
1142 static struct gpio rx51_wl1251_gpios[] __initdata = {
1143 { RX51_WL1251_POWER_GPIO, GPIOF_OUT_INIT_LOW, "wl1251 power" },
1144 { RX51_WL1251_IRQ_GPIO, GPIOF_IN, "wl1251 irq" },
1145 };
1146
1147 static void __init rx51_init_wl1251(void)
1148 {
1149 int irq, ret;
1150
1151 ret = gpio_request_array(rx51_wl1251_gpios,
1152 ARRAY_SIZE(rx51_wl1251_gpios));
1153 if (ret < 0)
1154 goto error;
1155
1156 irq = gpio_to_irq(RX51_WL1251_IRQ_GPIO);
1157 if (irq < 0)
1158 goto err_irq;
1159
1160 wl1251_pdata.set_power = rx51_wl1251_set_power;
1161 rx51_peripherals_spi_board_info[RX51_SPI_WL1251].irq = irq;
1162
1163 return;
1164
1165 err_irq:
1166 gpio_free(RX51_WL1251_IRQ_GPIO);
1167 gpio_free(RX51_WL1251_POWER_GPIO);
1168 error:
1169 printk(KERN_ERR "wl1251 board initialisation failed\n");
1170 wl1251_pdata.set_power = NULL;
1171
1172 /*
1173 * Now rx51_peripherals_spi_board_info[1].irq is zero and
1174 * set_power is null, and wl1251_probe() will fail.
1175 */
1176 }
1177
1178 static struct tsc2005_platform_data tsc2005_pdata = {
1179 .ts_pressure_max = 2048,
1180 .ts_pressure_fudge = 2,
1181 .ts_x_max = 4096,
1182 .ts_x_fudge = 4,
1183 .ts_y_max = 4096,
1184 .ts_y_fudge = 7,
1185 .ts_x_plate_ohm = 280,
1186 .esd_timeout_ms = 8000,
1187 };
1188
1189 static struct gpio rx51_tsc2005_gpios[] __initdata = {
1190 { RX51_TSC2005_IRQ_GPIO, GPIOF_IN, "tsc2005 IRQ" },
1191 { RX51_TSC2005_RESET_GPIO, GPIOF_OUT_INIT_HIGH, "tsc2005 reset" },
1192 };
1193
1194 static void rx51_tsc2005_set_reset(bool enable)
1195 {
1196 gpio_set_value(RX51_TSC2005_RESET_GPIO, enable);
1197 }
1198
1199 static void __init rx51_init_tsc2005(void)
1200 {
1201 int r;
1202
1203 omap_mux_init_gpio(RX51_TSC2005_RESET_GPIO, OMAP_PIN_OUTPUT);
1204 omap_mux_init_gpio(RX51_TSC2005_IRQ_GPIO, OMAP_PIN_INPUT_PULLUP);
1205
1206 r = gpio_request_array(rx51_tsc2005_gpios,
1207 ARRAY_SIZE(rx51_tsc2005_gpios));
1208 if (r < 0) {
1209 printk(KERN_ERR "tsc2005 board initialization failed\n");
1210 tsc2005_pdata.esd_timeout_ms = 0;
1211 return;
1212 }
1213
1214 tsc2005_pdata.set_reset = rx51_tsc2005_set_reset;
1215 rx51_peripherals_spi_board_info[RX51_SPI_TSC2005].irq =
1216 gpio_to_irq(RX51_TSC2005_IRQ_GPIO);
1217 }
1218
1219 void __init rx51_peripherals_init(void)
1220 {
1221 rx51_i2c_init();
1222 regulator_has_full_constraints();
1223 gpmc_onenand_init(board_onenand_data);
1224 board_smc91x_init();
1225 rx51_add_gpio_keys();
1226 rx51_init_wl1251();
1227 rx51_init_tsc2005();
1228 rx51_init_si4713();
1229 spi_register_board_info(rx51_peripherals_spi_board_info,
1230 ARRAY_SIZE(rx51_peripherals_spi_board_info));
1231
1232 partition = omap_mux_get("core");
1233 if (partition)
1234 omap_hsmmc_init(mmc);
1235
1236 rx51_charger_init();
1237 }
1238
This page took 0.085631 seconds and 5 git commands to generate.