blob: cf6f12ed1d87653caa33a88d15b3e2e7fd822912 [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>
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070026
Tony Lindgrence491cf2009-10-20 09:40:47 -070027#include <plat/mcspi.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070028#include <plat/board.h>
29#include <plat/common.h>
30#include <plat/dma.h>
31#include <plat/gpmc.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070032#include <plat/onenand.h>
33#include <plat/gpmc-smc91x.h>
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070034
Manjunath Kondaiah G04aeae72010-10-08 09:58:35 -070035#include <mach/board-rx51.h>
36
Jarkko Nikula87581fd2010-08-02 13:18:02 +030037#include <sound/tlv320aic3x.h>
Jarkko Nikula64d06692010-08-02 13:18:03 +030038#include <sound/tpa6130a2-plat.h>
Jarkko Nikula87581fd2010-08-02 13:18:02 +030039
Mathias Nyman70b5d732010-08-02 13:18:03 +030040#include <../drivers/staging/iio/light/tsl2563.h>
41
Tony Lindgren4896e392009-12-11 16:16:32 -080042#include "mux.h"
Adrian Hunterd02a900b2010-02-15 10:03:34 -080043#include "hsmmc.h"
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070044
Adrian Hunterf52eeee2009-05-28 14:04:04 -070045#define SYSTEM_REV_B_USES_VAUX3 0x1699
46#define SYSTEM_REV_S_USES_VAUX3 0x8
47
Kalle Valoa24e61a2009-11-18 18:41:06 -080048#define RX51_WL1251_POWER_GPIO 87
49#define RX51_WL1251_IRQ_GPIO 42
50
51/* list all spi devices here */
52enum {
53 RX51_SPI_WL1251,
Roger Quadros03e11102010-05-10 10:35:17 +020054 RX51_SPI_MIPID, /* LCD panel */
Roger Quadros6996e7f2010-03-22 17:16:25 +020055 RX51_SPI_TSC2005, /* Touch Controller */
Kalle Valoa24e61a2009-11-18 18:41:06 -080056};
57
58static struct wl12xx_platform_data wl1251_pdata;
59
Mathias Nyman70b5d732010-08-02 13:18:03 +030060#if defined(CONFIG_SENSORS_TSL2563) || defined(CONFIG_SENSORS_TSL2563_MODULE)
61static struct tsl2563_platform_data rx51_tsl2563_platform_data = {
62 .cover_comp_gain = 16,
63};
64#endif
65
Kalle Valoa24e61a2009-11-18 18:41:06 -080066static struct omap2_mcspi_device_config wl1251_mcspi_config = {
67 .turbo_mode = 0,
68 .single_channel = 1,
69};
70
Roger Quadros03e11102010-05-10 10:35:17 +020071static struct omap2_mcspi_device_config mipid_mcspi_config = {
72 .turbo_mode = 0,
73 .single_channel = 1,
74};
75
Roger Quadros6996e7f2010-03-22 17:16:25 +020076static struct omap2_mcspi_device_config tsc2005_mcspi_config = {
77 .turbo_mode = 0,
78 .single_channel = 1,
79};
80
Kalle Valoa24e61a2009-11-18 18:41:06 -080081static struct spi_board_info rx51_peripherals_spi_board_info[] __initdata = {
82 [RX51_SPI_WL1251] = {
83 .modalias = "wl1251",
84 .bus_num = 4,
85 .chip_select = 0,
86 .max_speed_hz = 48000000,
Kalle Valo860fc972009-12-11 16:16:37 -080087 .mode = SPI_MODE_3,
Kalle Valoa24e61a2009-11-18 18:41:06 -080088 .controller_data = &wl1251_mcspi_config,
89 .platform_data = &wl1251_pdata,
90 },
Roger Quadros03e11102010-05-10 10:35:17 +020091 [RX51_SPI_MIPID] = {
92 .modalias = "acx565akm",
93 .bus_num = 1,
94 .chip_select = 2,
95 .max_speed_hz = 6000000,
96 .controller_data = &mipid_mcspi_config,
97 },
Roger Quadros6996e7f2010-03-22 17:16:25 +020098 [RX51_SPI_TSC2005] = {
99 .modalias = "tsc2005",
100 .bus_num = 1,
101 .chip_select = 0,
102 /* .irq = OMAP_GPIO_IRQ(RX51_TSC2005_IRQ_GPIO),*/
103 .max_speed_hz = 6000000,
104 .controller_data = &tsc2005_mcspi_config,
105 /* .platform_data = &tsc2005_config,*/
106 },
Kalle Valoa24e61a2009-11-18 18:41:06 -0800107};
108
Jani Nikulaf014ee32009-11-05 22:59:47 -0800109#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
110
111#define RX51_GPIO_CAMERA_LENS_COVER 110
112#define RX51_GPIO_CAMERA_FOCUS 68
113#define RX51_GPIO_CAMERA_CAPTURE 69
114#define RX51_GPIO_KEYPAD_SLIDE 71
115#define RX51_GPIO_LOCK_BUTTON 113
116#define RX51_GPIO_PROXIMITY 89
117
118#define RX51_GPIO_DEBOUNCE_TIMEOUT 10
119
120static struct gpio_keys_button rx51_gpio_keys[] = {
121 {
122 .desc = "Camera Lens Cover",
123 .type = EV_SW,
124 .code = SW_CAMERA_LENS_COVER,
125 .gpio = RX51_GPIO_CAMERA_LENS_COVER,
126 .active_low = 1,
127 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
128 }, {
129 .desc = "Camera Focus",
130 .type = EV_KEY,
131 .code = KEY_CAMERA_FOCUS,
132 .gpio = RX51_GPIO_CAMERA_FOCUS,
133 .active_low = 1,
134 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
135 }, {
136 .desc = "Camera Capture",
137 .type = EV_KEY,
138 .code = KEY_CAMERA,
139 .gpio = RX51_GPIO_CAMERA_CAPTURE,
140 .active_low = 1,
141 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
142 }, {
143 .desc = "Lock Button",
144 .type = EV_KEY,
145 .code = KEY_SCREENLOCK,
146 .gpio = RX51_GPIO_LOCK_BUTTON,
147 .active_low = 1,
148 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
149 }, {
150 .desc = "Keypad Slide",
151 .type = EV_SW,
152 .code = SW_KEYPAD_SLIDE,
153 .gpio = RX51_GPIO_KEYPAD_SLIDE,
154 .active_low = 1,
155 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
156 }, {
157 .desc = "Proximity Sensor",
158 .type = EV_SW,
159 .code = SW_FRONT_PROXIMITY,
160 .gpio = RX51_GPIO_PROXIMITY,
161 .active_low = 0,
162 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
163 }
164};
165
166static struct gpio_keys_platform_data rx51_gpio_keys_data = {
167 .buttons = rx51_gpio_keys,
168 .nbuttons = ARRAY_SIZE(rx51_gpio_keys),
169};
170
171static struct platform_device rx51_gpio_keys_device = {
172 .name = "gpio-keys",
173 .id = -1,
174 .dev = {
175 .platform_data = &rx51_gpio_keys_data,
176 },
177};
178
179static void __init rx51_add_gpio_keys(void)
180{
181 platform_device_register(&rx51_gpio_keys_device);
182}
183#else
184static void __init rx51_add_gpio_keys(void)
185{
186}
187#endif /* CONFIG_KEYBOARD_GPIO || CONFIG_KEYBOARD_GPIO_MODULE */
188
Tony Lindgren4f543332009-09-24 16:23:16 -0700189static int board_keymap[] = {
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700190 /*
191 * Note that KEY(x, 8, KEY_XXX) entries represent "entrire row
192 * connected to the ground" matrix state.
193 */
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700194 KEY(0, 0, KEY_Q),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700195 KEY(0, 1, KEY_O),
196 KEY(0, 2, KEY_P),
197 KEY(0, 3, KEY_COMMA),
198 KEY(0, 4, KEY_BACKSPACE),
199 KEY(0, 6, KEY_A),
200 KEY(0, 7, KEY_S),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700201
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700202 KEY(1, 0, KEY_W),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700203 KEY(1, 1, KEY_D),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700204 KEY(1, 2, KEY_F),
205 KEY(1, 3, KEY_G),
206 KEY(1, 4, KEY_H),
207 KEY(1, 5, KEY_J),
208 KEY(1, 6, KEY_K),
209 KEY(1, 7, KEY_L),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700210
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700211 KEY(2, 0, KEY_E),
212 KEY(2, 1, KEY_DOT),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700213 KEY(2, 2, KEY_UP),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700214 KEY(2, 3, KEY_ENTER),
215 KEY(2, 5, KEY_Z),
216 KEY(2, 6, KEY_X),
217 KEY(2, 7, KEY_C),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700218 KEY(2, 8, KEY_F9),
219
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700220 KEY(3, 0, KEY_R),
221 KEY(3, 1, KEY_V),
222 KEY(3, 2, KEY_B),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700223 KEY(3, 3, KEY_N),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700224 KEY(3, 4, KEY_M),
225 KEY(3, 5, KEY_SPACE),
226 KEY(3, 6, KEY_SPACE),
227 KEY(3, 7, KEY_LEFT),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700228
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700229 KEY(4, 0, KEY_T),
230 KEY(4, 1, KEY_DOWN),
231 KEY(4, 2, KEY_RIGHT),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700232 KEY(4, 4, KEY_LEFTCTRL),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700233 KEY(4, 5, KEY_RIGHTALT),
234 KEY(4, 6, KEY_LEFTSHIFT),
Dmitry Torokhov2e65a202010-07-26 01:12:37 -0700235 KEY(4, 8, KEY_F10),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700236
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700237 KEY(5, 0, KEY_Y),
Dmitry Torokhov2e65a202010-07-26 01:12:37 -0700238 KEY(5, 8, KEY_F11),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700239
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700240 KEY(6, 0, KEY_U),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700241
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700242 KEY(7, 0, KEY_I),
243 KEY(7, 1, KEY_F7),
244 KEY(7, 2, KEY_F8),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700245};
246
Tony Lindgren4f543332009-09-24 16:23:16 -0700247static struct matrix_keymap_data board_map_data = {
248 .keymap = board_keymap,
249 .keymap_size = ARRAY_SIZE(board_keymap),
250};
251
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700252static struct twl4030_keypad_data rx51_kp_data = {
Tony Lindgren4f543332009-09-24 16:23:16 -0700253 .keymap_data = &board_map_data,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700254 .rows = 8,
255 .cols = 8,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700256 .rep = 1,
257};
258
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700259static struct twl4030_madc_platform_data rx51_madc_data = {
260 .irq_line = 1,
261};
262
Adrian Hunterce6f0012010-02-15 10:03:34 -0800263/* Enable input logic and pull all lines up when eMMC is on. */
264static struct omap_board_mux rx51_mmc2_on_mux[] = {
265 OMAP3_MUX(SDMMC2_CMD, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
266 OMAP3_MUX(SDMMC2_DAT0, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
267 OMAP3_MUX(SDMMC2_DAT1, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
268 OMAP3_MUX(SDMMC2_DAT2, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
269 OMAP3_MUX(SDMMC2_DAT3, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
270 OMAP3_MUX(SDMMC2_DAT4, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
271 OMAP3_MUX(SDMMC2_DAT5, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
272 OMAP3_MUX(SDMMC2_DAT6, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
273 OMAP3_MUX(SDMMC2_DAT7, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
274 { .reg_offset = OMAP_MUX_TERMINATOR },
275};
276
277/* Disable input logic and pull all lines down when eMMC is off. */
278static struct omap_board_mux rx51_mmc2_off_mux[] = {
279 OMAP3_MUX(SDMMC2_CMD, OMAP_PULL_ENA | OMAP_MUX_MODE0),
280 OMAP3_MUX(SDMMC2_DAT0, OMAP_PULL_ENA | OMAP_MUX_MODE0),
281 OMAP3_MUX(SDMMC2_DAT1, OMAP_PULL_ENA | OMAP_MUX_MODE0),
282 OMAP3_MUX(SDMMC2_DAT2, OMAP_PULL_ENA | OMAP_MUX_MODE0),
283 OMAP3_MUX(SDMMC2_DAT3, OMAP_PULL_ENA | OMAP_MUX_MODE0),
284 OMAP3_MUX(SDMMC2_DAT4, OMAP_PULL_ENA | OMAP_MUX_MODE0),
285 OMAP3_MUX(SDMMC2_DAT5, OMAP_PULL_ENA | OMAP_MUX_MODE0),
286 OMAP3_MUX(SDMMC2_DAT6, OMAP_PULL_ENA | OMAP_MUX_MODE0),
287 OMAP3_MUX(SDMMC2_DAT7, OMAP_PULL_ENA | OMAP_MUX_MODE0),
288 { .reg_offset = OMAP_MUX_TERMINATOR },
289};
290
291/*
292 * Current flows to eMMC when eMMC is off and the data lines are pulled up,
293 * so pull them down. N.B. we pull 8 lines because we are using 8 lines.
294 */
295static void rx51_mmc2_remux(struct device *dev, int slot, int power_on)
296{
297 if (power_on)
298 omap_mux_write_array(rx51_mmc2_on_mux);
299 else
300 omap_mux_write_array(rx51_mmc2_off_mux);
301}
302
Adrian Hunter68ff0422010-02-15 10:03:34 -0800303static struct omap2_hsmmc_info mmc[] __initdata = {
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700304 {
305 .name = "external",
306 .mmc = 1,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000307 .caps = MMC_CAP_4_BIT_DATA,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700308 .cover_only = true,
309 .gpio_cd = 160,
310 .gpio_wp = -EINVAL,
Adrian Hunter5e763d22009-09-22 16:45:05 -0700311 .power_saving = true,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700312 },
313 {
314 .name = "internal",
315 .mmc = 2,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000316 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
317 /* See also rx51_mmc2_remux */
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700318 .gpio_cd = -EINVAL,
319 .gpio_wp = -EINVAL,
Adrian Hunter5e763d22009-09-22 16:45:05 -0700320 .nonremovable = true,
321 .power_saving = true,
Adrian Hunterce6f0012010-02-15 10:03:34 -0800322 .remux = rx51_mmc2_remux,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700323 },
324 {} /* Terminator */
325};
326
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300327static struct regulator_consumer_supply rx51_vmmc1_supply =
328 REGULATOR_SUPPLY("vmmc", "mmci-omap-hs.0");
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700329
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300330static struct regulator_consumer_supply rx51_vaux3_supply =
331 REGULATOR_SUPPLY("vmmc", "mmci-omap-hs.1");
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700332
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300333static struct regulator_consumer_supply rx51_vsim_supply =
334 REGULATOR_SUPPLY("vmmc_aux", "mmci-omap-hs.1");
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700335
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700336static struct regulator_consumer_supply rx51_vmmc2_supplies[] = {
337 /* tlv320aic3x analog supplies */
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300338 REGULATOR_SUPPLY("AVDD", "2-0018"),
339 REGULATOR_SUPPLY("DRVDD", "2-0018"),
Jarkko Nikula64d06692010-08-02 13:18:03 +0300340 /* tpa6130a2 */
341 REGULATOR_SUPPLY("Vdd", "2-0060"),
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700342 /* Keep vmmc as last item. It is not iterated for newer boards */
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300343 REGULATOR_SUPPLY("vmmc", "mmci-omap-hs.1"),
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700344};
345
346static struct regulator_consumer_supply rx51_vio_supplies[] = {
347 /* tlv320aic3x digital supplies */
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300348 REGULATOR_SUPPLY("IOVDD", "2-0018"),
349 REGULATOR_SUPPLY("DVDD", "2-0018"),
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700350};
351
Roger Quadros0581b522010-05-12 11:48:47 +0300352#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
353extern struct platform_device rx51_display_device;
354#endif
355
356static struct regulator_consumer_supply rx51_vaux1_consumers[] = {
357#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
358 {
359 .supply = "vdds_sdi",
360 .dev = &rx51_display_device.dev,
361 },
362#endif
363};
364
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700365static struct regulator_init_data rx51_vaux1 = {
366 .constraints = {
367 .name = "V28",
368 .min_uV = 2800000,
369 .max_uV = 2800000,
Jarkko Nikula000d5342010-08-02 13:18:02 +0300370 .always_on = true, /* due battery cover sensor */
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700371 .valid_modes_mask = REGULATOR_MODE_NORMAL
372 | REGULATOR_MODE_STANDBY,
373 .valid_ops_mask = REGULATOR_CHANGE_MODE
374 | REGULATOR_CHANGE_STATUS,
375 },
Roger Quadros0581b522010-05-12 11:48:47 +0300376 .num_consumer_supplies = ARRAY_SIZE(rx51_vaux1_consumers),
377 .consumer_supplies = rx51_vaux1_consumers,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700378};
379
380static struct regulator_init_data rx51_vaux2 = {
381 .constraints = {
382 .name = "VCSI",
383 .min_uV = 1800000,
384 .max_uV = 1800000,
385 .valid_modes_mask = REGULATOR_MODE_NORMAL
386 | REGULATOR_MODE_STANDBY,
387 .valid_ops_mask = REGULATOR_CHANGE_MODE
388 | REGULATOR_CHANGE_STATUS,
389 },
390};
391
392/* VAUX3 - adds more power to VIO_18 rail */
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700393static struct regulator_init_data rx51_vaux3_cam = {
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700394 .constraints = {
395 .name = "VCAM_DIG_18",
396 .min_uV = 1800000,
397 .max_uV = 1800000,
398 .apply_uV = true,
399 .valid_modes_mask = REGULATOR_MODE_NORMAL
400 | REGULATOR_MODE_STANDBY,
401 .valid_ops_mask = REGULATOR_CHANGE_MODE
402 | REGULATOR_CHANGE_STATUS,
403 },
404};
405
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700406static struct regulator_init_data rx51_vaux3_mmc = {
407 .constraints = {
408 .name = "VMMC2_30",
409 .min_uV = 2800000,
410 .max_uV = 3000000,
411 .apply_uV = true,
412 .valid_modes_mask = REGULATOR_MODE_NORMAL
413 | REGULATOR_MODE_STANDBY,
414 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
415 | REGULATOR_CHANGE_MODE
416 | REGULATOR_CHANGE_STATUS,
417 },
418 .num_consumer_supplies = 1,
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700419 .consumer_supplies = &rx51_vaux3_supply,
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700420};
421
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700422static struct regulator_init_data rx51_vaux4 = {
423 .constraints = {
424 .name = "VCAM_ANA_28",
425 .min_uV = 2800000,
426 .max_uV = 2800000,
427 .apply_uV = true,
428 .valid_modes_mask = REGULATOR_MODE_NORMAL
429 | REGULATOR_MODE_STANDBY,
430 .valid_ops_mask = REGULATOR_CHANGE_MODE
431 | REGULATOR_CHANGE_STATUS,
432 },
433};
434
435static struct regulator_init_data rx51_vmmc1 = {
436 .constraints = {
437 .min_uV = 1850000,
438 .max_uV = 3150000,
439 .valid_modes_mask = REGULATOR_MODE_NORMAL
440 | REGULATOR_MODE_STANDBY,
441 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
442 | REGULATOR_CHANGE_MODE
443 | REGULATOR_CHANGE_STATUS,
444 },
445 .num_consumer_supplies = 1,
446 .consumer_supplies = &rx51_vmmc1_supply,
447};
448
449static struct regulator_init_data rx51_vmmc2 = {
450 .constraints = {
Jarkko Nikulaf2add1d2010-05-10 14:29:18 -0700451 .name = "V28_A",
452 .min_uV = 2800000,
453 .max_uV = 3000000,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700454 .apply_uV = true,
455 .valid_modes_mask = REGULATOR_MODE_NORMAL
456 | REGULATOR_MODE_STANDBY,
457 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
458 | REGULATOR_CHANGE_MODE
459 | REGULATOR_CHANGE_STATUS,
460 },
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700461 .num_consumer_supplies = ARRAY_SIZE(rx51_vmmc2_supplies),
462 .consumer_supplies = rx51_vmmc2_supplies,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700463};
464
465static struct regulator_init_data rx51_vsim = {
466 .constraints = {
467 .name = "VMMC2_IO_18",
468 .min_uV = 1800000,
469 .max_uV = 1800000,
470 .apply_uV = true,
471 .valid_modes_mask = REGULATOR_MODE_NORMAL
472 | REGULATOR_MODE_STANDBY,
473 .valid_ops_mask = REGULATOR_CHANGE_MODE
474 | REGULATOR_CHANGE_STATUS,
475 },
476 .num_consumer_supplies = 1,
477 .consumer_supplies = &rx51_vsim_supply,
478};
479
480static struct regulator_init_data rx51_vdac = {
481 .constraints = {
482 .min_uV = 1800000,
483 .max_uV = 1800000,
484 .valid_modes_mask = REGULATOR_MODE_NORMAL
485 | REGULATOR_MODE_STANDBY,
486 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
487 | REGULATOR_CHANGE_MODE
488 | REGULATOR_CHANGE_STATUS,
489 },
490};
491
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700492static struct regulator_init_data rx51_vio = {
493 .constraints = {
494 .min_uV = 1800000,
495 .max_uV = 1800000,
496 .valid_modes_mask = REGULATOR_MODE_NORMAL
497 | REGULATOR_MODE_STANDBY,
498 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
499 | REGULATOR_CHANGE_MODE
500 | REGULATOR_CHANGE_STATUS,
501 },
502 .num_consumer_supplies = ARRAY_SIZE(rx51_vio_supplies),
503 .consumer_supplies = rx51_vio_supplies,
504};
505
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700506static int rx51_twlgpio_setup(struct device *dev, unsigned gpio, unsigned n)
507{
508 /* FIXME this gpio setup is just a placeholder for now */
509 gpio_request(gpio + 6, "backlight_pwm");
510 gpio_direction_output(gpio + 6, 0);
511 gpio_request(gpio + 7, "speaker_en");
512 gpio_direction_output(gpio + 7, 1);
513
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700514 return 0;
515}
516
517static struct twl4030_gpio_platform_data rx51_gpio_data = {
518 .gpio_base = OMAP_MAX_GPIO_LINES,
519 .irq_base = TWL4030_GPIO_IRQ_BASE,
520 .irq_end = TWL4030_GPIO_IRQ_END,
521 .pulldowns = BIT(0) | BIT(1) | BIT(2) | BIT(3)
522 | BIT(4) | BIT(5)
523 | BIT(8) | BIT(9) | BIT(10) | BIT(11)
524 | BIT(12) | BIT(13) | BIT(14) | BIT(15)
525 | BIT(16) | BIT(17) ,
526 .setup = rx51_twlgpio_setup,
527};
528
Roger Quadrosdfc27b32009-08-10 14:49:51 +0300529static struct twl4030_usb_data rx51_usb_data = {
530 .usb_mode = T2_USB_MODE_ULPI,
531};
532
Amit Kucheria9312fff2009-08-27 20:27:57 +0200533static struct twl4030_ins sleep_on_seq[] __initdata = {
534/*
Amit Kucheria3c684e842009-10-19 15:11:08 +0300535 * Turn off everything
Amit Kucheria9312fff2009-08-27 20:27:57 +0200536 */
Amit Kucheria3c684e842009-10-19 15:11:08 +0300537 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_SLEEP), 2},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200538};
539
540static struct twl4030_script sleep_on_script __initdata = {
541 .script = sleep_on_seq,
542 .size = ARRAY_SIZE(sleep_on_seq),
543 .flags = TWL4030_SLEEP_SCRIPT,
544};
545
546static struct twl4030_ins wakeup_seq[] __initdata = {
547/*
Amit Kucheria3c684e842009-10-19 15:11:08 +0300548 * Reenable everything
Amit Kucheria9312fff2009-08-27 20:27:57 +0200549 */
Amit Kucheria3c684e842009-10-19 15:11:08 +0300550 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_ACTIVE), 2},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200551};
552
553static struct twl4030_script wakeup_script __initdata = {
554 .script = wakeup_seq,
555 .size = ARRAY_SIZE(wakeup_seq),
556 .flags = TWL4030_WAKEUP12_SCRIPT,
557};
558
559static struct twl4030_ins wakeup_p3_seq[] __initdata = {
560/*
Amit Kucheria3c684e842009-10-19 15:11:08 +0300561 * Reenable everything
Amit Kucheria9312fff2009-08-27 20:27:57 +0200562 */
Amit Kucheria3c684e842009-10-19 15:11:08 +0300563 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_ACTIVE), 2},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200564};
565
566static struct twl4030_script wakeup_p3_script __initdata = {
567 .script = wakeup_p3_seq,
568 .size = ARRAY_SIZE(wakeup_p3_seq),
569 .flags = TWL4030_WAKEUP3_SCRIPT,
570};
571
572static struct twl4030_ins wrst_seq[] __initdata = {
573/*
574 * Reset twl4030.
575 * Reset VDD1 regulator.
576 * Reset VDD2 regulator.
577 * Reset VPLL1 regulator.
578 * Enable sysclk output.
579 * Reenable twl4030.
580 */
581 {MSG_SINGULAR(DEV_GRP_NULL, RES_RESET, RES_STATE_OFF), 2},
582 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 0, 1, RES_STATE_ACTIVE),
583 0x13},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200584 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_PP, 0, 3, RES_STATE_OFF), 0x13},
585 {MSG_SINGULAR(DEV_GRP_NULL, RES_VDD1, RES_STATE_WRST), 0x13},
586 {MSG_SINGULAR(DEV_GRP_NULL, RES_VDD2, RES_STATE_WRST), 0x13},
587 {MSG_SINGULAR(DEV_GRP_NULL, RES_VPLL1, RES_STATE_WRST), 0x35},
Amit Kucheria3c684e842009-10-19 15:11:08 +0300588 {MSG_SINGULAR(DEV_GRP_P3, RES_HFCLKOUT, RES_STATE_ACTIVE), 2},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200589 {MSG_SINGULAR(DEV_GRP_NULL, RES_RESET, RES_STATE_ACTIVE), 2},
590};
591
592static struct twl4030_script wrst_script __initdata = {
593 .script = wrst_seq,
594 .size = ARRAY_SIZE(wrst_seq),
595 .flags = TWL4030_WRST_SCRIPT,
596};
597
598static struct twl4030_script *twl4030_scripts[] __initdata = {
599 /* wakeup12 script should be loaded before sleep script, otherwise a
600 board might hit retention before loading of wakeup script is
601 completed. This can cause boot failures depending on timing issues.
602 */
603 &wakeup_script,
604 &sleep_on_script,
605 &wakeup_p3_script,
606 &wrst_script,
607};
608
609static struct twl4030_resconfig twl4030_rconfig[] __initdata = {
Amit Kucheria3c684e842009-10-19 15:11:08 +0300610 { .resource = RES_VDD1, .devgroup = -1,
611 .type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,
612 .remap_sleep = RES_STATE_OFF
613 },
614 { .resource = RES_VDD2, .devgroup = -1,
615 .type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,
616 .remap_sleep = RES_STATE_OFF
617 },
618 { .resource = RES_VPLL1, .devgroup = -1,
619 .type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,
620 .remap_sleep = RES_STATE_OFF
621 },
622 { .resource = RES_VPLL2, .devgroup = -1,
623 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
624 },
625 { .resource = RES_VAUX1, .devgroup = -1,
626 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
627 },
628 { .resource = RES_VAUX2, .devgroup = -1,
629 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
630 },
631 { .resource = RES_VAUX3, .devgroup = -1,
632 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
633 },
634 { .resource = RES_VAUX4, .devgroup = -1,
635 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
636 },
637 { .resource = RES_VMMC1, .devgroup = -1,
638 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
639 },
640 { .resource = RES_VMMC2, .devgroup = -1,
641 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
642 },
643 { .resource = RES_VDAC, .devgroup = -1,
644 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
645 },
646 { .resource = RES_VSIM, .devgroup = -1,
647 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
648 },
649 { .resource = RES_VINTANA1, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
650 .type = -1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
651 },
652 { .resource = RES_VINTANA2, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
653 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
654 },
655 { .resource = RES_VINTDIG, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
656 .type = -1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
657 },
658 { .resource = RES_VIO, .devgroup = DEV_GRP_P3,
659 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
660 },
661 { .resource = RES_CLKEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
662 .type = 1, .type2 = -1 , .remap_off = -1, .remap_sleep = -1
663 },
664 { .resource = RES_REGEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
665 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
666 },
667 { .resource = RES_NRES_PWRON, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
668 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
669 },
670 { .resource = RES_SYSEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
671 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
672 },
673 { .resource = RES_HFCLKOUT, .devgroup = DEV_GRP_P3,
674 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
675 },
676 { .resource = RES_32KCLKOUT, .devgroup = -1,
677 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
678 },
679 { .resource = RES_RESET, .devgroup = -1,
680 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
681 },
682 { .resource = RES_Main_Ref, .devgroup = -1,
683 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
684 },
Amit Kucheria9312fff2009-08-27 20:27:57 +0200685 { 0, 0},
686};
687
688static struct twl4030_power_data rx51_t2scripts_data __initdata = {
689 .scripts = twl4030_scripts,
690 .num = ARRAY_SIZE(twl4030_scripts),
691 .resource_config = twl4030_rconfig,
692};
693
694
695
696static struct twl4030_platform_data rx51_twldata __initdata = {
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700697 .irq_base = TWL4030_IRQ_BASE,
698 .irq_end = TWL4030_IRQ_END,
699
700 /* platform_data for children goes here */
701 .gpio = &rx51_gpio_data,
702 .keypad = &rx51_kp_data,
703 .madc = &rx51_madc_data,
Roger Quadrosdfc27b32009-08-10 14:49:51 +0300704 .usb = &rx51_usb_data,
Amit Kucheria9312fff2009-08-27 20:27:57 +0200705 .power = &rx51_t2scripts_data,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700706
707 .vaux1 = &rx51_vaux1,
708 .vaux2 = &rx51_vaux2,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700709 .vaux4 = &rx51_vaux4,
710 .vmmc1 = &rx51_vmmc1,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700711 .vsim = &rx51_vsim,
712 .vdac = &rx51_vdac,
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700713 .vio = &rx51_vio,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700714};
715
Jarkko Nikula87581fd2010-08-02 13:18:02 +0300716static struct aic3x_pdata rx51_aic3x_data __initdata = {
717 .gpio_reset = 60,
718};
719
Jarkko Nikula64d06692010-08-02 13:18:03 +0300720static struct tpa6130a2_platform_data rx51_tpa6130a2_data __initdata = {
721 .id = TPA6130A2,
722 .power_gpio = 98,
723};
724
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700725static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_1[] = {
726 {
727 I2C_BOARD_INFO("twl5030", 0x48),
728 .flags = I2C_CLIENT_WAKE,
729 .irq = INT_34XX_SYS_NIRQ,
730 .platform_data = &rx51_twldata,
731 },
732};
733
Jarkko Nikuladabe9292010-05-10 14:29:18 -0700734static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_2[] = {
735 {
736 I2C_BOARD_INFO("tlv320aic3x", 0x18),
Jarkko Nikula87581fd2010-08-02 13:18:02 +0300737 .platform_data = &rx51_aic3x_data,
Jarkko Nikuladabe9292010-05-10 14:29:18 -0700738 },
Mathias Nyman70b5d732010-08-02 13:18:03 +0300739#if defined(CONFIG_SENSORS_TSL2563) || defined(CONFIG_SENSORS_TSL2563_MODULE)
740 {
741 I2C_BOARD_INFO("tsl2563", 0x29),
742 .platform_data = &rx51_tsl2563_platform_data,
743 },
744#endif
Jarkko Nikula64d06692010-08-02 13:18:03 +0300745 {
746 I2C_BOARD_INFO("tpa6130a2", 0x60),
747 .platform_data = &rx51_tpa6130a2_data,
748 }
Jarkko Nikuladabe9292010-05-10 14:29:18 -0700749};
750
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700751static int __init rx51_i2c_init(void)
752{
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700753 if ((system_rev >= SYSTEM_REV_S_USES_VAUX3 && system_rev < 0x100) ||
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700754 system_rev >= SYSTEM_REV_B_USES_VAUX3) {
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700755 rx51_twldata.vaux3 = &rx51_vaux3_mmc;
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700756 /* Only older boards use VMMC2 for internal MMC */
757 rx51_vmmc2.num_consumer_supplies--;
758 } else {
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700759 rx51_twldata.vaux3 = &rx51_vaux3_cam;
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700760 }
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700761 rx51_twldata.vmmc2 = &rx51_vmmc2;
Aaro Koskinencb3cc452009-10-14 09:56:34 -0700762 omap_register_i2c_bus(1, 2200, rx51_peripherals_i2c_board_info_1,
Jarkko Nikuladabe9292010-05-10 14:29:18 -0700763 ARRAY_SIZE(rx51_peripherals_i2c_board_info_1));
764 omap_register_i2c_bus(2, 100, rx51_peripherals_i2c_board_info_2,
765 ARRAY_SIZE(rx51_peripherals_i2c_board_info_2));
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700766 omap_register_i2c_bus(3, 400, NULL, 0);
767 return 0;
768}
769
Juha Yrjolaaa62e902009-05-28 13:23:52 -0700770#if defined(CONFIG_MTD_ONENAND_OMAP2) || \
771 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
772
773static struct mtd_partition onenand_partitions[] = {
774 {
775 .name = "bootloader",
776 .offset = 0,
777 .size = 0x20000,
778 .mask_flags = MTD_WRITEABLE, /* Force read-only */
779 },
780 {
781 .name = "config",
782 .offset = MTDPART_OFS_APPEND,
783 .size = 0x60000,
784 },
785 {
786 .name = "log",
787 .offset = MTDPART_OFS_APPEND,
788 .size = 0x40000,
789 },
790 {
791 .name = "kernel",
792 .offset = MTDPART_OFS_APPEND,
793 .size = 0x200000,
794 },
795 {
796 .name = "initfs",
797 .offset = MTDPART_OFS_APPEND,
798 .size = 0x200000,
799 },
800 {
801 .name = "rootfs",
802 .offset = MTDPART_OFS_APPEND,
803 .size = MTDPART_SIZ_FULL,
804 },
805};
806
807static struct omap_onenand_platform_data board_onenand_data = {
808 .cs = 0,
809 .gpio_irq = 65,
810 .parts = onenand_partitions,
811 .nr_parts = ARRAY_SIZE(onenand_partitions),
Adrian Hunterc8e64882009-06-23 13:30:25 +0300812 .flags = ONENAND_SYNC_READWRITE,
Juha Yrjolaaa62e902009-05-28 13:23:52 -0700813};
814
815static void __init board_onenand_init(void)
816{
817 gpmc_onenand_init(&board_onenand_data);
818}
819
820#else
821
822static inline void board_onenand_init(void)
823{
824}
825
826#endif
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700827
Tony Lindgren1a48e152009-05-28 13:23:52 -0700828#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
829
830static struct omap_smc91x_platform_data board_smc91x_data = {
831 .cs = 1,
832 .gpio_irq = 54,
833 .gpio_pwrdwn = 86,
834 .gpio_reset = 164,
835 .flags = GPMC_TIMINGS_SMC91C96 | IORESOURCE_IRQ_HIGHLEVEL,
836};
837
838static void __init board_smc91x_init(void)
839{
Tony Lindgren4896e392009-12-11 16:16:32 -0800840 omap_mux_init_gpio(54, OMAP_PIN_INPUT_PULLDOWN);
841 omap_mux_init_gpio(86, OMAP_PIN_OUTPUT);
842 omap_mux_init_gpio(164, OMAP_PIN_OUTPUT);
Tony Lindgren1a48e152009-05-28 13:23:52 -0700843
844 gpmc_smc91x_init(&board_smc91x_data);
845}
846
847#else
848
849static inline void board_smc91x_init(void)
850{
851}
852
853#endif
854
Kalle Valoa24e61a2009-11-18 18:41:06 -0800855static void rx51_wl1251_set_power(bool enable)
856{
857 gpio_set_value(RX51_WL1251_POWER_GPIO, enable);
858}
859
860static void __init rx51_init_wl1251(void)
861{
862 int irq, ret;
863
864 ret = gpio_request(RX51_WL1251_POWER_GPIO, "wl1251 power");
865 if (ret < 0)
866 goto error;
867
868 ret = gpio_direction_output(RX51_WL1251_POWER_GPIO, 0);
869 if (ret < 0)
870 goto err_power;
871
872 ret = gpio_request(RX51_WL1251_IRQ_GPIO, "wl1251 irq");
873 if (ret < 0)
874 goto err_power;
875
876 ret = gpio_direction_input(RX51_WL1251_IRQ_GPIO);
877 if (ret < 0)
878 goto err_irq;
879
880 irq = gpio_to_irq(RX51_WL1251_IRQ_GPIO);
881 if (irq < 0)
882 goto err_irq;
883
884 wl1251_pdata.set_power = rx51_wl1251_set_power;
885 rx51_peripherals_spi_board_info[RX51_SPI_WL1251].irq = irq;
886
887 return;
888
889err_irq:
890 gpio_free(RX51_WL1251_IRQ_GPIO);
891
892err_power:
893 gpio_free(RX51_WL1251_POWER_GPIO);
894
895error:
896 printk(KERN_ERR "wl1251 board initialisation failed\n");
897 wl1251_pdata.set_power = NULL;
898
899 /*
900 * Now rx51_peripherals_spi_board_info[1].irq is zero and
901 * set_power is null, and wl1251_probe() will fail.
902 */
903}
904
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700905void __init rx51_peripherals_init(void)
906{
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700907 rx51_i2c_init();
Juha Yrjolaaa62e902009-05-28 13:23:52 -0700908 board_onenand_init();
Tony Lindgren1a48e152009-05-28 13:23:52 -0700909 board_smc91x_init();
Jani Nikulaf014ee32009-11-05 22:59:47 -0800910 rx51_add_gpio_keys();
Kalle Valoa24e61a2009-11-18 18:41:06 -0800911 rx51_init_wl1251();
912 spi_register_board_info(rx51_peripherals_spi_board_info,
913 ARRAY_SIZE(rx51_peripherals_spi_board_info));
Adrian Hunter68ff0422010-02-15 10:03:34 -0800914 omap2_hsmmc_init(mmc);
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700915}
916