blob: 897d960fe16f686ae5d5ef37251334c6bb850481 [file] [log] [blame]
Lauri Leukkunenffe7f952009-03-23 18:38:17 -07001/*
Amit Kucheria9312fff2009-08-27 20:27:57 +02002 * linux/arch/arm/mach-omap2/board-rx51-peripherals.c
Lauri Leukkunenffe7f952009-03-23 18:38:17 -07003 *
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>
Janusz Krzysztofik61354342009-10-22 14:43:17 -070015#include <linux/input/matrix_keypad.h>
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070016#include <linux/spi/spi.h>
Kalle Valoa24e61a2009-11-18 18:41:06 -080017#include <linux/spi/wl12xx.h>
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070018#include <linux/i2c.h>
Balaji T Kebeb53e2009-12-15 20:09:02 +053019#include <linux/i2c/twl.h>
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070020#include <linux/clk.h>
21#include <linux/delay.h>
22#include <linux/regulator/machine.h>
23#include <linux/gpio.h>
Jani Nikulaf014ee32009-11-05 22:59:47 -080024#include <linux/gpio_keys.h>
Adrian Hunter5e763d22009-09-22 16:45:05 -070025#include <linux/mmc/host.h>
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000026#include <sound/tlv320aic3x.h>
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070027
Tony Lindgrence491cf2009-10-20 09:40:47 -070028#include <plat/mcspi.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070029#include <plat/board.h>
30#include <plat/common.h>
31#include <plat/dma.h>
32#include <plat/gpmc.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070033#include <plat/onenand.h>
34#include <plat/gpmc-smc91x.h>
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070035
Jarkko Nikula87581fd2010-08-02 13:18:02 +030036#include <sound/tlv320aic3x.h>
Jarkko Nikula64d06692010-08-02 13:18:03 +030037#include <sound/tpa6130a2-plat.h>
Jarkko Nikula87581fd2010-08-02 13:18:02 +030038
Mathias Nyman70b5d732010-08-02 13:18:03 +030039#include <../drivers/staging/iio/light/tsl2563.h>
40
Tony Lindgren4896e392009-12-11 16:16:32 -080041#include "mux.h"
Adrian Hunterd02a900b2010-02-15 10:03:34 -080042#include "hsmmc.h"
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070043
Adrian Hunterf52eeee2009-05-28 14:04:04 -070044#define SYSTEM_REV_B_USES_VAUX3 0x1699
45#define SYSTEM_REV_S_USES_VAUX3 0x8
46
Kalle Valoa24e61a2009-11-18 18:41:06 -080047#define RX51_WL1251_POWER_GPIO 87
48#define RX51_WL1251_IRQ_GPIO 42
49
50/* list all spi devices here */
51enum {
52 RX51_SPI_WL1251,
Roger Quadros03e11102010-05-10 10:35:17 +020053 RX51_SPI_MIPID, /* LCD panel */
Roger Quadros6996e7f2010-03-22 17:16:25 +020054 RX51_SPI_TSC2005, /* Touch Controller */
Kalle Valoa24e61a2009-11-18 18:41:06 -080055};
56
57static struct wl12xx_platform_data wl1251_pdata;
58
Mathias Nyman70b5d732010-08-02 13:18:03 +030059#if defined(CONFIG_SENSORS_TSL2563) || defined(CONFIG_SENSORS_TSL2563_MODULE)
60static struct tsl2563_platform_data rx51_tsl2563_platform_data = {
61 .cover_comp_gain = 16,
62};
63#endif
64
Kalle Valoa24e61a2009-11-18 18:41:06 -080065static struct omap2_mcspi_device_config wl1251_mcspi_config = {
66 .turbo_mode = 0,
67 .single_channel = 1,
68};
69
Roger Quadros03e11102010-05-10 10:35:17 +020070static struct omap2_mcspi_device_config mipid_mcspi_config = {
71 .turbo_mode = 0,
72 .single_channel = 1,
73};
74
Roger Quadros6996e7f2010-03-22 17:16:25 +020075static struct omap2_mcspi_device_config tsc2005_mcspi_config = {
76 .turbo_mode = 0,
77 .single_channel = 1,
78};
79
Kalle Valoa24e61a2009-11-18 18:41:06 -080080static struct spi_board_info rx51_peripherals_spi_board_info[] __initdata = {
81 [RX51_SPI_WL1251] = {
82 .modalias = "wl1251",
83 .bus_num = 4,
84 .chip_select = 0,
85 .max_speed_hz = 48000000,
Kalle Valo860fc972009-12-11 16:16:37 -080086 .mode = SPI_MODE_3,
Kalle Valoa24e61a2009-11-18 18:41:06 -080087 .controller_data = &wl1251_mcspi_config,
88 .platform_data = &wl1251_pdata,
89 },
Roger Quadros03e11102010-05-10 10:35:17 +020090 [RX51_SPI_MIPID] = {
91 .modalias = "acx565akm",
92 .bus_num = 1,
93 .chip_select = 2,
94 .max_speed_hz = 6000000,
95 .controller_data = &mipid_mcspi_config,
96 },
Roger Quadros6996e7f2010-03-22 17:16:25 +020097 [RX51_SPI_TSC2005] = {
98 .modalias = "tsc2005",
99 .bus_num = 1,
100 .chip_select = 0,
101 /* .irq = OMAP_GPIO_IRQ(RX51_TSC2005_IRQ_GPIO),*/
102 .max_speed_hz = 6000000,
103 .controller_data = &tsc2005_mcspi_config,
104 /* .platform_data = &tsc2005_config,*/
105 },
Kalle Valoa24e61a2009-11-18 18:41:06 -0800106};
107
Jani Nikulaf014ee32009-11-05 22:59:47 -0800108#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
109
110#define RX51_GPIO_CAMERA_LENS_COVER 110
111#define RX51_GPIO_CAMERA_FOCUS 68
112#define RX51_GPIO_CAMERA_CAPTURE 69
113#define RX51_GPIO_KEYPAD_SLIDE 71
114#define RX51_GPIO_LOCK_BUTTON 113
115#define RX51_GPIO_PROXIMITY 89
116
117#define RX51_GPIO_DEBOUNCE_TIMEOUT 10
118
119static struct gpio_keys_button rx51_gpio_keys[] = {
120 {
121 .desc = "Camera Lens Cover",
122 .type = EV_SW,
123 .code = SW_CAMERA_LENS_COVER,
124 .gpio = RX51_GPIO_CAMERA_LENS_COVER,
125 .active_low = 1,
126 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
127 }, {
128 .desc = "Camera Focus",
129 .type = EV_KEY,
130 .code = KEY_CAMERA_FOCUS,
131 .gpio = RX51_GPIO_CAMERA_FOCUS,
132 .active_low = 1,
133 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
134 }, {
135 .desc = "Camera Capture",
136 .type = EV_KEY,
137 .code = KEY_CAMERA,
138 .gpio = RX51_GPIO_CAMERA_CAPTURE,
139 .active_low = 1,
140 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
141 }, {
142 .desc = "Lock Button",
143 .type = EV_KEY,
144 .code = KEY_SCREENLOCK,
145 .gpio = RX51_GPIO_LOCK_BUTTON,
146 .active_low = 1,
147 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
148 }, {
149 .desc = "Keypad Slide",
150 .type = EV_SW,
151 .code = SW_KEYPAD_SLIDE,
152 .gpio = RX51_GPIO_KEYPAD_SLIDE,
153 .active_low = 1,
154 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
155 }, {
156 .desc = "Proximity Sensor",
157 .type = EV_SW,
158 .code = SW_FRONT_PROXIMITY,
159 .gpio = RX51_GPIO_PROXIMITY,
160 .active_low = 0,
161 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
162 }
163};
164
165static struct gpio_keys_platform_data rx51_gpio_keys_data = {
166 .buttons = rx51_gpio_keys,
167 .nbuttons = ARRAY_SIZE(rx51_gpio_keys),
168};
169
170static struct platform_device rx51_gpio_keys_device = {
171 .name = "gpio-keys",
172 .id = -1,
173 .dev = {
174 .platform_data = &rx51_gpio_keys_data,
175 },
176};
177
178static void __init rx51_add_gpio_keys(void)
179{
180 platform_device_register(&rx51_gpio_keys_device);
181}
182#else
183static void __init rx51_add_gpio_keys(void)
184{
185}
186#endif /* CONFIG_KEYBOARD_GPIO || CONFIG_KEYBOARD_GPIO_MODULE */
187
Tony Lindgren4f543332009-09-24 16:23:16 -0700188static int board_keymap[] = {
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700189 /*
190 * Note that KEY(x, 8, KEY_XXX) entries represent "entrire row
191 * connected to the ground" matrix state.
192 */
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700193 KEY(0, 0, KEY_Q),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700194 KEY(0, 1, KEY_O),
195 KEY(0, 2, KEY_P),
196 KEY(0, 3, KEY_COMMA),
197 KEY(0, 4, KEY_BACKSPACE),
198 KEY(0, 6, KEY_A),
199 KEY(0, 7, KEY_S),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700200
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700201 KEY(1, 0, KEY_W),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700202 KEY(1, 1, KEY_D),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700203 KEY(1, 2, KEY_F),
204 KEY(1, 3, KEY_G),
205 KEY(1, 4, KEY_H),
206 KEY(1, 5, KEY_J),
207 KEY(1, 6, KEY_K),
208 KEY(1, 7, KEY_L),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700209
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700210 KEY(2, 0, KEY_E),
211 KEY(2, 1, KEY_DOT),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700212 KEY(2, 2, KEY_UP),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700213 KEY(2, 3, KEY_ENTER),
214 KEY(2, 5, KEY_Z),
215 KEY(2, 6, KEY_X),
216 KEY(2, 7, KEY_C),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700217 KEY(2, 8, KEY_F9),
218
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700219 KEY(3, 0, KEY_R),
220 KEY(3, 1, KEY_V),
221 KEY(3, 2, KEY_B),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700222 KEY(3, 3, KEY_N),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700223 KEY(3, 4, KEY_M),
224 KEY(3, 5, KEY_SPACE),
225 KEY(3, 6, KEY_SPACE),
226 KEY(3, 7, KEY_LEFT),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700227
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700228 KEY(4, 0, KEY_T),
229 KEY(4, 1, KEY_DOWN),
230 KEY(4, 2, KEY_RIGHT),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700231 KEY(4, 4, KEY_LEFTCTRL),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700232 KEY(4, 5, KEY_RIGHTALT),
233 KEY(4, 6, KEY_LEFTSHIFT),
Dmitry Torokhov2e65a202010-07-26 01:12:37 -0700234 KEY(4, 8, KEY_F10),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700235
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700236 KEY(5, 0, KEY_Y),
Dmitry Torokhov2e65a202010-07-26 01:12:37 -0700237 KEY(5, 8, KEY_F11),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700238
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700239 KEY(6, 0, KEY_U),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700240
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700241 KEY(7, 0, KEY_I),
242 KEY(7, 1, KEY_F7),
243 KEY(7, 2, KEY_F8),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700244};
245
Tony Lindgren4f543332009-09-24 16:23:16 -0700246static struct matrix_keymap_data board_map_data = {
247 .keymap = board_keymap,
248 .keymap_size = ARRAY_SIZE(board_keymap),
249};
250
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700251static struct twl4030_keypad_data rx51_kp_data = {
Tony Lindgren4f543332009-09-24 16:23:16 -0700252 .keymap_data = &board_map_data,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700253 .rows = 8,
254 .cols = 8,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700255 .rep = 1,
256};
257
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700258static struct twl4030_madc_platform_data rx51_madc_data = {
259 .irq_line = 1,
260};
261
Adrian Hunterce6f0012010-02-15 10:03:34 -0800262/* Enable input logic and pull all lines up when eMMC is on. */
263static struct omap_board_mux rx51_mmc2_on_mux[] = {
264 OMAP3_MUX(SDMMC2_CMD, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
265 OMAP3_MUX(SDMMC2_DAT0, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
266 OMAP3_MUX(SDMMC2_DAT1, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
267 OMAP3_MUX(SDMMC2_DAT2, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
268 OMAP3_MUX(SDMMC2_DAT3, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
269 OMAP3_MUX(SDMMC2_DAT4, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
270 OMAP3_MUX(SDMMC2_DAT5, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
271 OMAP3_MUX(SDMMC2_DAT6, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
272 OMAP3_MUX(SDMMC2_DAT7, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
273 { .reg_offset = OMAP_MUX_TERMINATOR },
274};
275
276/* Disable input logic and pull all lines down when eMMC is off. */
277static struct omap_board_mux rx51_mmc2_off_mux[] = {
278 OMAP3_MUX(SDMMC2_CMD, OMAP_PULL_ENA | OMAP_MUX_MODE0),
279 OMAP3_MUX(SDMMC2_DAT0, OMAP_PULL_ENA | OMAP_MUX_MODE0),
280 OMAP3_MUX(SDMMC2_DAT1, OMAP_PULL_ENA | OMAP_MUX_MODE0),
281 OMAP3_MUX(SDMMC2_DAT2, OMAP_PULL_ENA | OMAP_MUX_MODE0),
282 OMAP3_MUX(SDMMC2_DAT3, OMAP_PULL_ENA | OMAP_MUX_MODE0),
283 OMAP3_MUX(SDMMC2_DAT4, OMAP_PULL_ENA | OMAP_MUX_MODE0),
284 OMAP3_MUX(SDMMC2_DAT5, OMAP_PULL_ENA | OMAP_MUX_MODE0),
285 OMAP3_MUX(SDMMC2_DAT6, OMAP_PULL_ENA | OMAP_MUX_MODE0),
286 OMAP3_MUX(SDMMC2_DAT7, OMAP_PULL_ENA | OMAP_MUX_MODE0),
287 { .reg_offset = OMAP_MUX_TERMINATOR },
288};
289
290/*
291 * Current flows to eMMC when eMMC is off and the data lines are pulled up,
292 * so pull them down. N.B. we pull 8 lines because we are using 8 lines.
293 */
294static void rx51_mmc2_remux(struct device *dev, int slot, int power_on)
295{
296 if (power_on)
297 omap_mux_write_array(rx51_mmc2_on_mux);
298 else
299 omap_mux_write_array(rx51_mmc2_off_mux);
300}
301
Adrian Hunter68ff0422010-02-15 10:03:34 -0800302static struct omap2_hsmmc_info mmc[] __initdata = {
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700303 {
304 .name = "external",
305 .mmc = 1,
306 .wires = 4,
307 .cover_only = true,
308 .gpio_cd = 160,
309 .gpio_wp = -EINVAL,
Adrian Hunter5e763d22009-09-22 16:45:05 -0700310 .power_saving = true,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700311 },
312 {
313 .name = "internal",
314 .mmc = 2,
Adrian Hunterce6f0012010-02-15 10:03:34 -0800315 .wires = 8, /* See also rx51_mmc2_remux */
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700316 .gpio_cd = -EINVAL,
317 .gpio_wp = -EINVAL,
Adrian Hunter5e763d22009-09-22 16:45:05 -0700318 .nonremovable = true,
319 .power_saving = true,
Adrian Hunterce6f0012010-02-15 10:03:34 -0800320 .remux = rx51_mmc2_remux,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700321 },
322 {} /* Terminator */
323};
324
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300325static struct regulator_consumer_supply rx51_vmmc1_supply =
326 REGULATOR_SUPPLY("vmmc", "mmci-omap-hs.0");
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700327
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300328static struct regulator_consumer_supply rx51_vaux3_supply =
329 REGULATOR_SUPPLY("vmmc", "mmci-omap-hs.1");
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700330
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300331static struct regulator_consumer_supply rx51_vsim_supply =
332 REGULATOR_SUPPLY("vmmc_aux", "mmci-omap-hs.1");
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700333
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700334static struct regulator_consumer_supply rx51_vmmc2_supplies[] = {
335 /* tlv320aic3x analog supplies */
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300336 REGULATOR_SUPPLY("AVDD", "2-0018"),
337 REGULATOR_SUPPLY("DRVDD", "2-0018"),
Jarkko Nikula64d06692010-08-02 13:18:03 +0300338 /* tpa6130a2 */
339 REGULATOR_SUPPLY("Vdd", "2-0060"),
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700340 /* Keep vmmc as last item. It is not iterated for newer boards */
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300341 REGULATOR_SUPPLY("vmmc", "mmci-omap-hs.1"),
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700342};
343
344static struct regulator_consumer_supply rx51_vio_supplies[] = {
345 /* tlv320aic3x digital supplies */
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300346 REGULATOR_SUPPLY("IOVDD", "2-0018"),
347 REGULATOR_SUPPLY("DVDD", "2-0018"),
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700348};
349
Roger Quadros0581b522010-05-12 11:48:47 +0300350#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
351extern struct platform_device rx51_display_device;
352#endif
353
354static struct regulator_consumer_supply rx51_vaux1_consumers[] = {
355#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
356 {
357 .supply = "vdds_sdi",
358 .dev = &rx51_display_device.dev,
359 },
360#endif
361};
362
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700363static struct regulator_init_data rx51_vaux1 = {
364 .constraints = {
365 .name = "V28",
366 .min_uV = 2800000,
367 .max_uV = 2800000,
Jarkko Nikula000d5342010-08-02 13:18:02 +0300368 .always_on = true, /* due battery cover sensor */
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700369 .valid_modes_mask = REGULATOR_MODE_NORMAL
370 | REGULATOR_MODE_STANDBY,
371 .valid_ops_mask = REGULATOR_CHANGE_MODE
372 | REGULATOR_CHANGE_STATUS,
373 },
Roger Quadros0581b522010-05-12 11:48:47 +0300374 .num_consumer_supplies = ARRAY_SIZE(rx51_vaux1_consumers),
375 .consumer_supplies = rx51_vaux1_consumers,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700376};
377
378static struct regulator_init_data rx51_vaux2 = {
379 .constraints = {
380 .name = "VCSI",
381 .min_uV = 1800000,
382 .max_uV = 1800000,
383 .valid_modes_mask = REGULATOR_MODE_NORMAL
384 | REGULATOR_MODE_STANDBY,
385 .valid_ops_mask = REGULATOR_CHANGE_MODE
386 | REGULATOR_CHANGE_STATUS,
387 },
388};
389
390/* VAUX3 - adds more power to VIO_18 rail */
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700391static struct regulator_init_data rx51_vaux3_cam = {
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700392 .constraints = {
393 .name = "VCAM_DIG_18",
394 .min_uV = 1800000,
395 .max_uV = 1800000,
396 .apply_uV = true,
397 .valid_modes_mask = REGULATOR_MODE_NORMAL
398 | REGULATOR_MODE_STANDBY,
399 .valid_ops_mask = REGULATOR_CHANGE_MODE
400 | REGULATOR_CHANGE_STATUS,
401 },
402};
403
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700404static struct regulator_init_data rx51_vaux3_mmc = {
405 .constraints = {
406 .name = "VMMC2_30",
407 .min_uV = 2800000,
408 .max_uV = 3000000,
409 .apply_uV = true,
410 .valid_modes_mask = REGULATOR_MODE_NORMAL
411 | REGULATOR_MODE_STANDBY,
412 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
413 | REGULATOR_CHANGE_MODE
414 | REGULATOR_CHANGE_STATUS,
415 },
416 .num_consumer_supplies = 1,
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700417 .consumer_supplies = &rx51_vaux3_supply,
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700418};
419
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700420static struct regulator_init_data rx51_vaux4 = {
421 .constraints = {
422 .name = "VCAM_ANA_28",
423 .min_uV = 2800000,
424 .max_uV = 2800000,
425 .apply_uV = true,
426 .valid_modes_mask = REGULATOR_MODE_NORMAL
427 | REGULATOR_MODE_STANDBY,
428 .valid_ops_mask = REGULATOR_CHANGE_MODE
429 | REGULATOR_CHANGE_STATUS,
430 },
431};
432
433static struct regulator_init_data rx51_vmmc1 = {
434 .constraints = {
435 .min_uV = 1850000,
436 .max_uV = 3150000,
437 .valid_modes_mask = REGULATOR_MODE_NORMAL
438 | REGULATOR_MODE_STANDBY,
439 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
440 | REGULATOR_CHANGE_MODE
441 | REGULATOR_CHANGE_STATUS,
442 },
443 .num_consumer_supplies = 1,
444 .consumer_supplies = &rx51_vmmc1_supply,
445};
446
447static struct regulator_init_data rx51_vmmc2 = {
448 .constraints = {
Jarkko Nikulaf2add1d2010-05-10 14:29:18 -0700449 .name = "V28_A",
450 .min_uV = 2800000,
451 .max_uV = 3000000,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700452 .apply_uV = true,
453 .valid_modes_mask = REGULATOR_MODE_NORMAL
454 | REGULATOR_MODE_STANDBY,
455 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
456 | REGULATOR_CHANGE_MODE
457 | REGULATOR_CHANGE_STATUS,
458 },
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700459 .num_consumer_supplies = ARRAY_SIZE(rx51_vmmc2_supplies),
460 .consumer_supplies = rx51_vmmc2_supplies,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700461};
462
463static struct regulator_init_data rx51_vsim = {
464 .constraints = {
465 .name = "VMMC2_IO_18",
466 .min_uV = 1800000,
467 .max_uV = 1800000,
468 .apply_uV = true,
469 .valid_modes_mask = REGULATOR_MODE_NORMAL
470 | REGULATOR_MODE_STANDBY,
471 .valid_ops_mask = REGULATOR_CHANGE_MODE
472 | REGULATOR_CHANGE_STATUS,
473 },
474 .num_consumer_supplies = 1,
475 .consumer_supplies = &rx51_vsim_supply,
476};
477
478static struct regulator_init_data rx51_vdac = {
479 .constraints = {
480 .min_uV = 1800000,
481 .max_uV = 1800000,
482 .valid_modes_mask = REGULATOR_MODE_NORMAL
483 | REGULATOR_MODE_STANDBY,
484 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
485 | REGULATOR_CHANGE_MODE
486 | REGULATOR_CHANGE_STATUS,
487 },
488};
489
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700490static struct regulator_init_data rx51_vio = {
491 .constraints = {
492 .min_uV = 1800000,
493 .max_uV = 1800000,
494 .valid_modes_mask = REGULATOR_MODE_NORMAL
495 | REGULATOR_MODE_STANDBY,
496 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
497 | REGULATOR_CHANGE_MODE
498 | REGULATOR_CHANGE_STATUS,
499 },
500 .num_consumer_supplies = ARRAY_SIZE(rx51_vio_supplies),
501 .consumer_supplies = rx51_vio_supplies,
502};
503
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700504static int rx51_twlgpio_setup(struct device *dev, unsigned gpio, unsigned n)
505{
506 /* FIXME this gpio setup is just a placeholder for now */
507 gpio_request(gpio + 6, "backlight_pwm");
508 gpio_direction_output(gpio + 6, 0);
509 gpio_request(gpio + 7, "speaker_en");
510 gpio_direction_output(gpio + 7, 1);
511
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700512 return 0;
513}
514
515static struct twl4030_gpio_platform_data rx51_gpio_data = {
516 .gpio_base = OMAP_MAX_GPIO_LINES,
517 .irq_base = TWL4030_GPIO_IRQ_BASE,
518 .irq_end = TWL4030_GPIO_IRQ_END,
519 .pulldowns = BIT(0) | BIT(1) | BIT(2) | BIT(3)
520 | BIT(4) | BIT(5)
521 | BIT(8) | BIT(9) | BIT(10) | BIT(11)
522 | BIT(12) | BIT(13) | BIT(14) | BIT(15)
523 | BIT(16) | BIT(17) ,
524 .setup = rx51_twlgpio_setup,
525};
526
Roger Quadrosdfc27b32009-08-10 14:49:51 +0300527static struct twl4030_usb_data rx51_usb_data = {
528 .usb_mode = T2_USB_MODE_ULPI,
529};
530
Amit Kucheria9312fff2009-08-27 20:27:57 +0200531static struct twl4030_ins sleep_on_seq[] __initdata = {
532/*
Amit Kucheria3c684e842009-10-19 15:11:08 +0300533 * Turn off everything
Amit Kucheria9312fff2009-08-27 20:27:57 +0200534 */
Amit Kucheria3c684e842009-10-19 15:11:08 +0300535 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_SLEEP), 2},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200536};
537
538static struct twl4030_script sleep_on_script __initdata = {
539 .script = sleep_on_seq,
540 .size = ARRAY_SIZE(sleep_on_seq),
541 .flags = TWL4030_SLEEP_SCRIPT,
542};
543
544static struct twl4030_ins wakeup_seq[] __initdata = {
545/*
Amit Kucheria3c684e842009-10-19 15:11:08 +0300546 * Reenable everything
Amit Kucheria9312fff2009-08-27 20:27:57 +0200547 */
Amit Kucheria3c684e842009-10-19 15:11:08 +0300548 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_ACTIVE), 2},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200549};
550
551static struct twl4030_script wakeup_script __initdata = {
552 .script = wakeup_seq,
553 .size = ARRAY_SIZE(wakeup_seq),
554 .flags = TWL4030_WAKEUP12_SCRIPT,
555};
556
557static struct twl4030_ins wakeup_p3_seq[] __initdata = {
558/*
Amit Kucheria3c684e842009-10-19 15:11:08 +0300559 * Reenable everything
Amit Kucheria9312fff2009-08-27 20:27:57 +0200560 */
Amit Kucheria3c684e842009-10-19 15:11:08 +0300561 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_ACTIVE), 2},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200562};
563
564static struct twl4030_script wakeup_p3_script __initdata = {
565 .script = wakeup_p3_seq,
566 .size = ARRAY_SIZE(wakeup_p3_seq),
567 .flags = TWL4030_WAKEUP3_SCRIPT,
568};
569
570static struct twl4030_ins wrst_seq[] __initdata = {
571/*
572 * Reset twl4030.
573 * Reset VDD1 regulator.
574 * Reset VDD2 regulator.
575 * Reset VPLL1 regulator.
576 * Enable sysclk output.
577 * Reenable twl4030.
578 */
579 {MSG_SINGULAR(DEV_GRP_NULL, RES_RESET, RES_STATE_OFF), 2},
580 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 0, 1, RES_STATE_ACTIVE),
581 0x13},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200582 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_PP, 0, 3, RES_STATE_OFF), 0x13},
583 {MSG_SINGULAR(DEV_GRP_NULL, RES_VDD1, RES_STATE_WRST), 0x13},
584 {MSG_SINGULAR(DEV_GRP_NULL, RES_VDD2, RES_STATE_WRST), 0x13},
585 {MSG_SINGULAR(DEV_GRP_NULL, RES_VPLL1, RES_STATE_WRST), 0x35},
Amit Kucheria3c684e842009-10-19 15:11:08 +0300586 {MSG_SINGULAR(DEV_GRP_P3, RES_HFCLKOUT, RES_STATE_ACTIVE), 2},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200587 {MSG_SINGULAR(DEV_GRP_NULL, RES_RESET, RES_STATE_ACTIVE), 2},
588};
589
590static struct twl4030_script wrst_script __initdata = {
591 .script = wrst_seq,
592 .size = ARRAY_SIZE(wrst_seq),
593 .flags = TWL4030_WRST_SCRIPT,
594};
595
596static struct twl4030_script *twl4030_scripts[] __initdata = {
597 /* wakeup12 script should be loaded before sleep script, otherwise a
598 board might hit retention before loading of wakeup script is
599 completed. This can cause boot failures depending on timing issues.
600 */
601 &wakeup_script,
602 &sleep_on_script,
603 &wakeup_p3_script,
604 &wrst_script,
605};
606
607static struct twl4030_resconfig twl4030_rconfig[] __initdata = {
Amit Kucheria3c684e842009-10-19 15:11:08 +0300608 { .resource = RES_VDD1, .devgroup = -1,
609 .type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,
610 .remap_sleep = RES_STATE_OFF
611 },
612 { .resource = RES_VDD2, .devgroup = -1,
613 .type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,
614 .remap_sleep = RES_STATE_OFF
615 },
616 { .resource = RES_VPLL1, .devgroup = -1,
617 .type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,
618 .remap_sleep = RES_STATE_OFF
619 },
620 { .resource = RES_VPLL2, .devgroup = -1,
621 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
622 },
623 { .resource = RES_VAUX1, .devgroup = -1,
624 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
625 },
626 { .resource = RES_VAUX2, .devgroup = -1,
627 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
628 },
629 { .resource = RES_VAUX3, .devgroup = -1,
630 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
631 },
632 { .resource = RES_VAUX4, .devgroup = -1,
633 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
634 },
635 { .resource = RES_VMMC1, .devgroup = -1,
636 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
637 },
638 { .resource = RES_VMMC2, .devgroup = -1,
639 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
640 },
641 { .resource = RES_VDAC, .devgroup = -1,
642 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
643 },
644 { .resource = RES_VSIM, .devgroup = -1,
645 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
646 },
647 { .resource = RES_VINTANA1, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
648 .type = -1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
649 },
650 { .resource = RES_VINTANA2, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
651 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
652 },
653 { .resource = RES_VINTDIG, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
654 .type = -1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
655 },
656 { .resource = RES_VIO, .devgroup = DEV_GRP_P3,
657 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
658 },
659 { .resource = RES_CLKEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
660 .type = 1, .type2 = -1 , .remap_off = -1, .remap_sleep = -1
661 },
662 { .resource = RES_REGEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
663 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
664 },
665 { .resource = RES_NRES_PWRON, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
666 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
667 },
668 { .resource = RES_SYSEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
669 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
670 },
671 { .resource = RES_HFCLKOUT, .devgroup = DEV_GRP_P3,
672 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
673 },
674 { .resource = RES_32KCLKOUT, .devgroup = -1,
675 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
676 },
677 { .resource = RES_RESET, .devgroup = -1,
678 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
679 },
680 { .resource = RES_Main_Ref, .devgroup = -1,
681 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
682 },
Amit Kucheria9312fff2009-08-27 20:27:57 +0200683 { 0, 0},
684};
685
686static struct twl4030_power_data rx51_t2scripts_data __initdata = {
687 .scripts = twl4030_scripts,
688 .num = ARRAY_SIZE(twl4030_scripts),
689 .resource_config = twl4030_rconfig,
690};
691
692
Amit Kucheria9312fff2009-08-27 20:27:57 +0200693static struct twl4030_platform_data rx51_twldata __initdata = {
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700694 .irq_base = TWL4030_IRQ_BASE,
695 .irq_end = TWL4030_IRQ_END,
696
697 /* platform_data for children goes here */
698 .gpio = &rx51_gpio_data,
699 .keypad = &rx51_kp_data,
700 .madc = &rx51_madc_data,
Roger Quadrosdfc27b32009-08-10 14:49:51 +0300701 .usb = &rx51_usb_data,
Amit Kucheria9312fff2009-08-27 20:27:57 +0200702 .power = &rx51_t2scripts_data,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700703
704 .vaux1 = &rx51_vaux1,
705 .vaux2 = &rx51_vaux2,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700706 .vaux4 = &rx51_vaux4,
707 .vmmc1 = &rx51_vmmc1,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700708 .vsim = &rx51_vsim,
709 .vdac = &rx51_vdac,
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700710 .vio = &rx51_vio,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700711};
712
Jarkko Nikula87581fd2010-08-02 13:18:02 +0300713static struct aic3x_pdata rx51_aic3x_data __initdata = {
714 .gpio_reset = 60,
715};
716
Jarkko Nikula64d06692010-08-02 13:18:03 +0300717static struct tpa6130a2_platform_data rx51_tpa6130a2_data __initdata = {
718 .id = TPA6130A2,
719 .power_gpio = 98,
720};
721
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700722static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_1[] = {
723 {
724 I2C_BOARD_INFO("twl5030", 0x48),
725 .flags = I2C_CLIENT_WAKE,
726 .irq = INT_34XX_SYS_NIRQ,
727 .platform_data = &rx51_twldata,
728 },
729};
730
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000731/* Audio setup data */
732static struct aic3x_setup_data rx51_aic34_setup = {
733 .gpio_func[0] = AIC3X_GPIO1_FUNC_DISABLED,
734 .gpio_func[1] = AIC3X_GPIO2_FUNC_DIGITAL_MIC_INPUT,
735};
736
Mark Browne4862f22010-08-16 18:42:58 +0100737static struct aic3x_pdata rx51_aic3x_data = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000738 .setup = &rx51_aic34_setup,
739 .gpio_reset = 60,
740};
741
Jarkko Nikuladabe9292010-05-10 14:29:18 -0700742static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_2[] = {
743 {
744 I2C_BOARD_INFO("tlv320aic3x", 0x18),
Jarkko Nikula87581fd2010-08-02 13:18:02 +0300745 .platform_data = &rx51_aic3x_data,
Jarkko Nikuladabe9292010-05-10 14:29:18 -0700746 },
Mathias Nyman70b5d732010-08-02 13:18:03 +0300747#if defined(CONFIG_SENSORS_TSL2563) || defined(CONFIG_SENSORS_TSL2563_MODULE)
748 {
749 I2C_BOARD_INFO("tsl2563", 0x29),
750 .platform_data = &rx51_tsl2563_platform_data,
751 },
752#endif
Jarkko Nikula64d06692010-08-02 13:18:03 +0300753 {
754 I2C_BOARD_INFO("tpa6130a2", 0x60),
755 .platform_data = &rx51_tpa6130a2_data,
756 }
Jarkko Nikuladabe9292010-05-10 14:29:18 -0700757};
758
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700759static int __init rx51_i2c_init(void)
760{
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700761 if ((system_rev >= SYSTEM_REV_S_USES_VAUX3 && system_rev < 0x100) ||
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700762 system_rev >= SYSTEM_REV_B_USES_VAUX3) {
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700763 rx51_twldata.vaux3 = &rx51_vaux3_mmc;
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700764 /* Only older boards use VMMC2 for internal MMC */
765 rx51_vmmc2.num_consumer_supplies--;
766 } else {
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700767 rx51_twldata.vaux3 = &rx51_vaux3_cam;
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700768 }
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700769 rx51_twldata.vmmc2 = &rx51_vmmc2;
Aaro Koskinencb3cc452009-10-14 09:56:34 -0700770 omap_register_i2c_bus(1, 2200, rx51_peripherals_i2c_board_info_1,
Jarkko Nikuladabe9292010-05-10 14:29:18 -0700771 ARRAY_SIZE(rx51_peripherals_i2c_board_info_1));
772 omap_register_i2c_bus(2, 100, rx51_peripherals_i2c_board_info_2,
773 ARRAY_SIZE(rx51_peripherals_i2c_board_info_2));
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700774 omap_register_i2c_bus(3, 400, NULL, 0);
775 return 0;
776}
777
Juha Yrjolaaa62e902009-05-28 13:23:52 -0700778#if defined(CONFIG_MTD_ONENAND_OMAP2) || \
779 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
780
781static struct mtd_partition onenand_partitions[] = {
782 {
783 .name = "bootloader",
784 .offset = 0,
785 .size = 0x20000,
786 .mask_flags = MTD_WRITEABLE, /* Force read-only */
787 },
788 {
789 .name = "config",
790 .offset = MTDPART_OFS_APPEND,
791 .size = 0x60000,
792 },
793 {
794 .name = "log",
795 .offset = MTDPART_OFS_APPEND,
796 .size = 0x40000,
797 },
798 {
799 .name = "kernel",
800 .offset = MTDPART_OFS_APPEND,
801 .size = 0x200000,
802 },
803 {
804 .name = "initfs",
805 .offset = MTDPART_OFS_APPEND,
806 .size = 0x200000,
807 },
808 {
809 .name = "rootfs",
810 .offset = MTDPART_OFS_APPEND,
811 .size = MTDPART_SIZ_FULL,
812 },
813};
814
815static struct omap_onenand_platform_data board_onenand_data = {
816 .cs = 0,
817 .gpio_irq = 65,
818 .parts = onenand_partitions,
819 .nr_parts = ARRAY_SIZE(onenand_partitions),
Adrian Hunterc8e64882009-06-23 13:30:25 +0300820 .flags = ONENAND_SYNC_READWRITE,
Juha Yrjolaaa62e902009-05-28 13:23:52 -0700821};
822
823static void __init board_onenand_init(void)
824{
825 gpmc_onenand_init(&board_onenand_data);
826}
827
828#else
829
830static inline void board_onenand_init(void)
831{
832}
833
834#endif
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700835
Tony Lindgren1a48e152009-05-28 13:23:52 -0700836#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
837
838static struct omap_smc91x_platform_data board_smc91x_data = {
839 .cs = 1,
840 .gpio_irq = 54,
841 .gpio_pwrdwn = 86,
842 .gpio_reset = 164,
843 .flags = GPMC_TIMINGS_SMC91C96 | IORESOURCE_IRQ_HIGHLEVEL,
844};
845
846static void __init board_smc91x_init(void)
847{
Tony Lindgren4896e392009-12-11 16:16:32 -0800848 omap_mux_init_gpio(54, OMAP_PIN_INPUT_PULLDOWN);
849 omap_mux_init_gpio(86, OMAP_PIN_OUTPUT);
850 omap_mux_init_gpio(164, OMAP_PIN_OUTPUT);
Tony Lindgren1a48e152009-05-28 13:23:52 -0700851
852 gpmc_smc91x_init(&board_smc91x_data);
853}
854
855#else
856
857static inline void board_smc91x_init(void)
858{
859}
860
861#endif
862
Kalle Valoa24e61a2009-11-18 18:41:06 -0800863static void rx51_wl1251_set_power(bool enable)
864{
865 gpio_set_value(RX51_WL1251_POWER_GPIO, enable);
866}
867
868static void __init rx51_init_wl1251(void)
869{
870 int irq, ret;
871
872 ret = gpio_request(RX51_WL1251_POWER_GPIO, "wl1251 power");
873 if (ret < 0)
874 goto error;
875
876 ret = gpio_direction_output(RX51_WL1251_POWER_GPIO, 0);
877 if (ret < 0)
878 goto err_power;
879
880 ret = gpio_request(RX51_WL1251_IRQ_GPIO, "wl1251 irq");
881 if (ret < 0)
882 goto err_power;
883
884 ret = gpio_direction_input(RX51_WL1251_IRQ_GPIO);
885 if (ret < 0)
886 goto err_irq;
887
888 irq = gpio_to_irq(RX51_WL1251_IRQ_GPIO);
889 if (irq < 0)
890 goto err_irq;
891
892 wl1251_pdata.set_power = rx51_wl1251_set_power;
893 rx51_peripherals_spi_board_info[RX51_SPI_WL1251].irq = irq;
894
895 return;
896
897err_irq:
898 gpio_free(RX51_WL1251_IRQ_GPIO);
899
900err_power:
901 gpio_free(RX51_WL1251_POWER_GPIO);
902
903error:
904 printk(KERN_ERR "wl1251 board initialisation failed\n");
905 wl1251_pdata.set_power = NULL;
906
907 /*
908 * Now rx51_peripherals_spi_board_info[1].irq is zero and
909 * set_power is null, and wl1251_probe() will fail.
910 */
911}
912
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700913void __init rx51_peripherals_init(void)
914{
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700915 rx51_i2c_init();
Juha Yrjolaaa62e902009-05-28 13:23:52 -0700916 board_onenand_init();
Tony Lindgren1a48e152009-05-28 13:23:52 -0700917 board_smc91x_init();
Jani Nikulaf014ee32009-11-05 22:59:47 -0800918 rx51_add_gpio_keys();
Kalle Valoa24e61a2009-11-18 18:41:06 -0800919 rx51_init_wl1251();
920 spi_register_board_info(rx51_peripherals_spi_board_info,
921 ARRAY_SIZE(rx51_peripherals_spi_board_info));
Adrian Hunter68ff0422010-02-15 10:03:34 -0800922 omap2_hsmmc_init(mmc);
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700923}
924