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