blob: 768f0dcdc34efb76f2e6587c01162c421b271f41 [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>
Ohad Ben-Cohenc1f9a092010-09-16 13:16:02 +020017#include <linux/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
Heikki Krogerusfd0964c2010-08-19 15:09:37 +0300109static struct platform_device rx51_charger_device = {
110 .name = "isp1704_charger",
111};
112
Jani Nikulaf014ee32009-11-05 22:59:47 -0800113#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
114
115#define RX51_GPIO_CAMERA_LENS_COVER 110
116#define RX51_GPIO_CAMERA_FOCUS 68
117#define RX51_GPIO_CAMERA_CAPTURE 69
118#define RX51_GPIO_KEYPAD_SLIDE 71
119#define RX51_GPIO_LOCK_BUTTON 113
120#define RX51_GPIO_PROXIMITY 89
121
122#define RX51_GPIO_DEBOUNCE_TIMEOUT 10
123
124static struct gpio_keys_button rx51_gpio_keys[] = {
125 {
126 .desc = "Camera Lens Cover",
127 .type = EV_SW,
128 .code = SW_CAMERA_LENS_COVER,
129 .gpio = RX51_GPIO_CAMERA_LENS_COVER,
130 .active_low = 1,
131 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
132 }, {
133 .desc = "Camera Focus",
134 .type = EV_KEY,
135 .code = KEY_CAMERA_FOCUS,
136 .gpio = RX51_GPIO_CAMERA_FOCUS,
137 .active_low = 1,
138 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
139 }, {
140 .desc = "Camera Capture",
141 .type = EV_KEY,
142 .code = KEY_CAMERA,
143 .gpio = RX51_GPIO_CAMERA_CAPTURE,
144 .active_low = 1,
145 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
146 }, {
147 .desc = "Lock Button",
148 .type = EV_KEY,
149 .code = KEY_SCREENLOCK,
150 .gpio = RX51_GPIO_LOCK_BUTTON,
151 .active_low = 1,
152 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
153 }, {
154 .desc = "Keypad Slide",
155 .type = EV_SW,
156 .code = SW_KEYPAD_SLIDE,
157 .gpio = RX51_GPIO_KEYPAD_SLIDE,
158 .active_low = 1,
159 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
160 }, {
161 .desc = "Proximity Sensor",
162 .type = EV_SW,
163 .code = SW_FRONT_PROXIMITY,
164 .gpio = RX51_GPIO_PROXIMITY,
165 .active_low = 0,
166 .debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,
167 }
168};
169
170static struct gpio_keys_platform_data rx51_gpio_keys_data = {
171 .buttons = rx51_gpio_keys,
172 .nbuttons = ARRAY_SIZE(rx51_gpio_keys),
173};
174
175static struct platform_device rx51_gpio_keys_device = {
176 .name = "gpio-keys",
177 .id = -1,
178 .dev = {
179 .platform_data = &rx51_gpio_keys_data,
180 },
181};
182
183static void __init rx51_add_gpio_keys(void)
184{
185 platform_device_register(&rx51_gpio_keys_device);
186}
187#else
188static void __init rx51_add_gpio_keys(void)
189{
190}
191#endif /* CONFIG_KEYBOARD_GPIO || CONFIG_KEYBOARD_GPIO_MODULE */
192
Manjunath Kondaiah Gbead4372010-10-08 10:01:13 -0700193static uint32_t board_keymap[] = {
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700194 /*
195 * Note that KEY(x, 8, KEY_XXX) entries represent "entrire row
196 * connected to the ground" matrix state.
197 */
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700198 KEY(0, 0, KEY_Q),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700199 KEY(0, 1, KEY_O),
200 KEY(0, 2, KEY_P),
201 KEY(0, 3, KEY_COMMA),
202 KEY(0, 4, KEY_BACKSPACE),
203 KEY(0, 6, KEY_A),
204 KEY(0, 7, KEY_S),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700205
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700206 KEY(1, 0, KEY_W),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700207 KEY(1, 1, KEY_D),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700208 KEY(1, 2, KEY_F),
209 KEY(1, 3, KEY_G),
210 KEY(1, 4, KEY_H),
211 KEY(1, 5, KEY_J),
212 KEY(1, 6, KEY_K),
213 KEY(1, 7, KEY_L),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700214
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700215 KEY(2, 0, KEY_E),
216 KEY(2, 1, KEY_DOT),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700217 KEY(2, 2, KEY_UP),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700218 KEY(2, 3, KEY_ENTER),
219 KEY(2, 5, KEY_Z),
220 KEY(2, 6, KEY_X),
221 KEY(2, 7, KEY_C),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700222 KEY(2, 8, KEY_F9),
223
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700224 KEY(3, 0, KEY_R),
225 KEY(3, 1, KEY_V),
226 KEY(3, 2, KEY_B),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700227 KEY(3, 3, KEY_N),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700228 KEY(3, 4, KEY_M),
229 KEY(3, 5, KEY_SPACE),
230 KEY(3, 6, KEY_SPACE),
231 KEY(3, 7, KEY_LEFT),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700232
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700233 KEY(4, 0, KEY_T),
234 KEY(4, 1, KEY_DOWN),
235 KEY(4, 2, KEY_RIGHT),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700236 KEY(4, 4, KEY_LEFTCTRL),
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700237 KEY(4, 5, KEY_RIGHTALT),
238 KEY(4, 6, KEY_LEFTSHIFT),
Dmitry Torokhov2e65a202010-07-26 01:12:37 -0700239 KEY(4, 8, KEY_F10),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700240
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700241 KEY(5, 0, KEY_Y),
Dmitry Torokhov2e65a202010-07-26 01:12:37 -0700242 KEY(5, 8, KEY_F11),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700243
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700244 KEY(6, 0, KEY_U),
Dmitry Torokhov3fea6022010-07-20 20:25:35 -0700245
Amit Kucheriaacf442d2009-10-05 21:43:44 -0700246 KEY(7, 0, KEY_I),
247 KEY(7, 1, KEY_F7),
248 KEY(7, 2, KEY_F8),
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700249};
250
Tony Lindgren4f543332009-09-24 16:23:16 -0700251static struct matrix_keymap_data board_map_data = {
252 .keymap = board_keymap,
253 .keymap_size = ARRAY_SIZE(board_keymap),
254};
255
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700256static struct twl4030_keypad_data rx51_kp_data = {
Tony Lindgren4f543332009-09-24 16:23:16 -0700257 .keymap_data = &board_map_data,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700258 .rows = 8,
259 .cols = 8,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700260 .rep = 1,
261};
262
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700263static struct twl4030_madc_platform_data rx51_madc_data = {
264 .irq_line = 1,
265};
266
Adrian Hunterce6f0012010-02-15 10:03:34 -0800267/* Enable input logic and pull all lines up when eMMC is on. */
268static struct omap_board_mux rx51_mmc2_on_mux[] = {
269 OMAP3_MUX(SDMMC2_CMD, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
270 OMAP3_MUX(SDMMC2_DAT0, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
271 OMAP3_MUX(SDMMC2_DAT1, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
272 OMAP3_MUX(SDMMC2_DAT2, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
273 OMAP3_MUX(SDMMC2_DAT3, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
274 OMAP3_MUX(SDMMC2_DAT4, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
275 OMAP3_MUX(SDMMC2_DAT5, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
276 OMAP3_MUX(SDMMC2_DAT6, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
277 OMAP3_MUX(SDMMC2_DAT7, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
278 { .reg_offset = OMAP_MUX_TERMINATOR },
279};
280
281/* Disable input logic and pull all lines down when eMMC is off. */
282static struct omap_board_mux rx51_mmc2_off_mux[] = {
283 OMAP3_MUX(SDMMC2_CMD, OMAP_PULL_ENA | OMAP_MUX_MODE0),
284 OMAP3_MUX(SDMMC2_DAT0, OMAP_PULL_ENA | OMAP_MUX_MODE0),
285 OMAP3_MUX(SDMMC2_DAT1, OMAP_PULL_ENA | OMAP_MUX_MODE0),
286 OMAP3_MUX(SDMMC2_DAT2, OMAP_PULL_ENA | OMAP_MUX_MODE0),
287 OMAP3_MUX(SDMMC2_DAT3, OMAP_PULL_ENA | OMAP_MUX_MODE0),
288 OMAP3_MUX(SDMMC2_DAT4, OMAP_PULL_ENA | OMAP_MUX_MODE0),
289 OMAP3_MUX(SDMMC2_DAT5, OMAP_PULL_ENA | OMAP_MUX_MODE0),
290 OMAP3_MUX(SDMMC2_DAT6, OMAP_PULL_ENA | OMAP_MUX_MODE0),
291 OMAP3_MUX(SDMMC2_DAT7, OMAP_PULL_ENA | OMAP_MUX_MODE0),
292 { .reg_offset = OMAP_MUX_TERMINATOR },
293};
294
Benoit Cousson112485e2010-08-16 10:55:35 +0200295static struct omap_mux_partition *partition;
296
Adrian Hunterce6f0012010-02-15 10:03:34 -0800297/*
298 * Current flows to eMMC when eMMC is off and the data lines are pulled up,
299 * so pull them down. N.B. we pull 8 lines because we are using 8 lines.
300 */
301static void rx51_mmc2_remux(struct device *dev, int slot, int power_on)
302{
303 if (power_on)
Benoit Cousson112485e2010-08-16 10:55:35 +0200304 omap_mux_write_array(partition, rx51_mmc2_on_mux);
Adrian Hunterce6f0012010-02-15 10:03:34 -0800305 else
Benoit Cousson112485e2010-08-16 10:55:35 +0200306 omap_mux_write_array(partition, rx51_mmc2_off_mux);
Adrian Hunterce6f0012010-02-15 10:03:34 -0800307}
308
Adrian Hunter68ff0422010-02-15 10:03:34 -0800309static struct omap2_hsmmc_info mmc[] __initdata = {
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700310 {
311 .name = "external",
312 .mmc = 1,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000313 .caps = MMC_CAP_4_BIT_DATA,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700314 .cover_only = true,
315 .gpio_cd = 160,
316 .gpio_wp = -EINVAL,
Adrian Hunter5e763d22009-09-22 16:45:05 -0700317 .power_saving = true,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700318 },
319 {
320 .name = "internal",
321 .mmc = 2,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000322 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
323 /* See also rx51_mmc2_remux */
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700324 .gpio_cd = -EINVAL,
325 .gpio_wp = -EINVAL,
Adrian Hunter5e763d22009-09-22 16:45:05 -0700326 .nonremovable = true,
327 .power_saving = true,
Adrian Hunterce6f0012010-02-15 10:03:34 -0800328 .remux = rx51_mmc2_remux,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700329 },
330 {} /* Terminator */
331};
332
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300333static struct regulator_consumer_supply rx51_vmmc1_supply =
334 REGULATOR_SUPPLY("vmmc", "mmci-omap-hs.0");
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700335
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300336static struct regulator_consumer_supply rx51_vaux3_supply =
337 REGULATOR_SUPPLY("vmmc", "mmci-omap-hs.1");
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700338
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300339static struct regulator_consumer_supply rx51_vsim_supply =
340 REGULATOR_SUPPLY("vmmc_aux", "mmci-omap-hs.1");
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700341
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700342static struct regulator_consumer_supply rx51_vmmc2_supplies[] = {
343 /* tlv320aic3x analog supplies */
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300344 REGULATOR_SUPPLY("AVDD", "2-0018"),
345 REGULATOR_SUPPLY("DRVDD", "2-0018"),
Jarkko Nikulacaeeb4a2010-12-20 18:48:16 -0800346 REGULATOR_SUPPLY("AVDD", "2-0019"),
347 REGULATOR_SUPPLY("DRVDD", "2-0019"),
Jarkko Nikula64d06692010-08-02 13:18:03 +0300348 /* tpa6130a2 */
349 REGULATOR_SUPPLY("Vdd", "2-0060"),
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700350 /* Keep vmmc as last item. It is not iterated for newer boards */
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300351 REGULATOR_SUPPLY("vmmc", "mmci-omap-hs.1"),
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700352};
353
354static struct regulator_consumer_supply rx51_vio_supplies[] = {
355 /* tlv320aic3x digital supplies */
Jarkko Nikula5c7d9bb2010-08-02 13:18:02 +0300356 REGULATOR_SUPPLY("IOVDD", "2-0018"),
357 REGULATOR_SUPPLY("DVDD", "2-0018"),
Jarkko Nikulacaeeb4a2010-12-20 18:48:16 -0800358 REGULATOR_SUPPLY("IOVDD", "2-0019"),
359 REGULATOR_SUPPLY("DVDD", "2-0019"),
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700360};
361
Roger Quadros0581b522010-05-12 11:48:47 +0300362static struct regulator_consumer_supply rx51_vaux1_consumers[] = {
Jarkko Nikulab5b99452010-12-21 17:25:34 +0000363 REGULATOR_SUPPLY("vdds_sdi", "omapdss"),
Roger Quadros0581b522010-05-12 11:48:47 +0300364};
365
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700366static struct regulator_init_data rx51_vaux1 = {
367 .constraints = {
368 .name = "V28",
369 .min_uV = 2800000,
370 .max_uV = 2800000,
Jarkko Nikula000d5342010-08-02 13:18:02 +0300371 .always_on = true, /* due battery cover sensor */
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700372 .valid_modes_mask = REGULATOR_MODE_NORMAL
373 | REGULATOR_MODE_STANDBY,
374 .valid_ops_mask = REGULATOR_CHANGE_MODE
375 | REGULATOR_CHANGE_STATUS,
376 },
Roger Quadros0581b522010-05-12 11:48:47 +0300377 .num_consumer_supplies = ARRAY_SIZE(rx51_vaux1_consumers),
378 .consumer_supplies = rx51_vaux1_consumers,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700379};
380
381static struct regulator_init_data rx51_vaux2 = {
382 .constraints = {
383 .name = "VCSI",
384 .min_uV = 1800000,
385 .max_uV = 1800000,
386 .valid_modes_mask = REGULATOR_MODE_NORMAL
387 | REGULATOR_MODE_STANDBY,
388 .valid_ops_mask = REGULATOR_CHANGE_MODE
389 | REGULATOR_CHANGE_STATUS,
390 },
391};
392
393/* VAUX3 - adds more power to VIO_18 rail */
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700394static struct regulator_init_data rx51_vaux3_cam = {
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700395 .constraints = {
396 .name = "VCAM_DIG_18",
397 .min_uV = 1800000,
398 .max_uV = 1800000,
399 .apply_uV = true,
400 .valid_modes_mask = REGULATOR_MODE_NORMAL
401 | REGULATOR_MODE_STANDBY,
402 .valid_ops_mask = REGULATOR_CHANGE_MODE
403 | REGULATOR_CHANGE_STATUS,
404 },
405};
406
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700407static struct regulator_init_data rx51_vaux3_mmc = {
408 .constraints = {
409 .name = "VMMC2_30",
410 .min_uV = 2800000,
411 .max_uV = 3000000,
412 .apply_uV = true,
413 .valid_modes_mask = REGULATOR_MODE_NORMAL
414 | REGULATOR_MODE_STANDBY,
415 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
416 | REGULATOR_CHANGE_MODE
417 | REGULATOR_CHANGE_STATUS,
418 },
419 .num_consumer_supplies = 1,
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700420 .consumer_supplies = &rx51_vaux3_supply,
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700421};
422
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700423static struct regulator_init_data rx51_vaux4 = {
424 .constraints = {
425 .name = "VCAM_ANA_28",
426 .min_uV = 2800000,
427 .max_uV = 2800000,
428 .apply_uV = true,
429 .valid_modes_mask = REGULATOR_MODE_NORMAL
430 | REGULATOR_MODE_STANDBY,
431 .valid_ops_mask = REGULATOR_CHANGE_MODE
432 | REGULATOR_CHANGE_STATUS,
433 },
434};
435
436static struct regulator_init_data rx51_vmmc1 = {
437 .constraints = {
438 .min_uV = 1850000,
439 .max_uV = 3150000,
440 .valid_modes_mask = REGULATOR_MODE_NORMAL
441 | REGULATOR_MODE_STANDBY,
442 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
443 | REGULATOR_CHANGE_MODE
444 | REGULATOR_CHANGE_STATUS,
445 },
446 .num_consumer_supplies = 1,
447 .consumer_supplies = &rx51_vmmc1_supply,
448};
449
450static struct regulator_init_data rx51_vmmc2 = {
451 .constraints = {
Jarkko Nikulaf2add1d2010-05-10 14:29:18 -0700452 .name = "V28_A",
453 .min_uV = 2800000,
454 .max_uV = 3000000,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700455 .apply_uV = true,
456 .valid_modes_mask = REGULATOR_MODE_NORMAL
457 | REGULATOR_MODE_STANDBY,
458 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
459 | REGULATOR_CHANGE_MODE
460 | REGULATOR_CHANGE_STATUS,
461 },
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700462 .num_consumer_supplies = ARRAY_SIZE(rx51_vmmc2_supplies),
463 .consumer_supplies = rx51_vmmc2_supplies,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700464};
465
466static struct regulator_init_data rx51_vsim = {
467 .constraints = {
468 .name = "VMMC2_IO_18",
469 .min_uV = 1800000,
470 .max_uV = 1800000,
471 .apply_uV = true,
472 .valid_modes_mask = REGULATOR_MODE_NORMAL
473 | REGULATOR_MODE_STANDBY,
474 .valid_ops_mask = REGULATOR_CHANGE_MODE
475 | REGULATOR_CHANGE_STATUS,
476 },
477 .num_consumer_supplies = 1,
478 .consumer_supplies = &rx51_vsim_supply,
479};
480
481static struct regulator_init_data rx51_vdac = {
482 .constraints = {
483 .min_uV = 1800000,
484 .max_uV = 1800000,
485 .valid_modes_mask = REGULATOR_MODE_NORMAL
486 | REGULATOR_MODE_STANDBY,
487 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
488 | REGULATOR_CHANGE_MODE
489 | REGULATOR_CHANGE_STATUS,
490 },
491};
492
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700493static struct regulator_init_data rx51_vio = {
494 .constraints = {
495 .min_uV = 1800000,
496 .max_uV = 1800000,
497 .valid_modes_mask = REGULATOR_MODE_NORMAL
498 | REGULATOR_MODE_STANDBY,
499 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
500 | REGULATOR_CHANGE_MODE
501 | REGULATOR_CHANGE_STATUS,
502 },
503 .num_consumer_supplies = ARRAY_SIZE(rx51_vio_supplies),
504 .consumer_supplies = rx51_vio_supplies,
505};
506
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700507static int rx51_twlgpio_setup(struct device *dev, unsigned gpio, unsigned n)
508{
509 /* FIXME this gpio setup is just a placeholder for now */
510 gpio_request(gpio + 6, "backlight_pwm");
511 gpio_direction_output(gpio + 6, 0);
512 gpio_request(gpio + 7, "speaker_en");
513 gpio_direction_output(gpio + 7, 1);
514
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700515 return 0;
516}
517
518static struct twl4030_gpio_platform_data rx51_gpio_data = {
519 .gpio_base = OMAP_MAX_GPIO_LINES,
520 .irq_base = TWL4030_GPIO_IRQ_BASE,
521 .irq_end = TWL4030_GPIO_IRQ_END,
522 .pulldowns = BIT(0) | BIT(1) | BIT(2) | BIT(3)
523 | BIT(4) | BIT(5)
524 | BIT(8) | BIT(9) | BIT(10) | BIT(11)
525 | BIT(12) | BIT(13) | BIT(14) | BIT(15)
526 | BIT(16) | BIT(17) ,
527 .setup = rx51_twlgpio_setup,
528};
529
Roger Quadrosdfc27b32009-08-10 14:49:51 +0300530static struct twl4030_usb_data rx51_usb_data = {
531 .usb_mode = T2_USB_MODE_ULPI,
532};
533
Amit Kucheria9312fff2009-08-27 20:27:57 +0200534static struct twl4030_ins sleep_on_seq[] __initdata = {
535/*
Amit Kucheria3c684e842009-10-19 15:11:08 +0300536 * Turn off everything
Amit Kucheria9312fff2009-08-27 20:27:57 +0200537 */
Amit Kucheria3c684e842009-10-19 15:11:08 +0300538 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_SLEEP), 2},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200539};
540
541static struct twl4030_script sleep_on_script __initdata = {
542 .script = sleep_on_seq,
543 .size = ARRAY_SIZE(sleep_on_seq),
544 .flags = TWL4030_SLEEP_SCRIPT,
545};
546
547static struct twl4030_ins wakeup_seq[] __initdata = {
548/*
Amit Kucheria3c684e842009-10-19 15:11:08 +0300549 * Reenable everything
Amit Kucheria9312fff2009-08-27 20:27:57 +0200550 */
Amit Kucheria3c684e842009-10-19 15:11:08 +0300551 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_ACTIVE), 2},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200552};
553
554static struct twl4030_script wakeup_script __initdata = {
555 .script = wakeup_seq,
556 .size = ARRAY_SIZE(wakeup_seq),
557 .flags = TWL4030_WAKEUP12_SCRIPT,
558};
559
560static struct twl4030_ins wakeup_p3_seq[] __initdata = {
561/*
Amit Kucheria3c684e842009-10-19 15:11:08 +0300562 * Reenable everything
Amit Kucheria9312fff2009-08-27 20:27:57 +0200563 */
Amit Kucheria3c684e842009-10-19 15:11:08 +0300564 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_ACTIVE), 2},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200565};
566
567static struct twl4030_script wakeup_p3_script __initdata = {
568 .script = wakeup_p3_seq,
569 .size = ARRAY_SIZE(wakeup_p3_seq),
570 .flags = TWL4030_WAKEUP3_SCRIPT,
571};
572
573static struct twl4030_ins wrst_seq[] __initdata = {
574/*
575 * Reset twl4030.
576 * Reset VDD1 regulator.
577 * Reset VDD2 regulator.
578 * Reset VPLL1 regulator.
579 * Enable sysclk output.
580 * Reenable twl4030.
581 */
582 {MSG_SINGULAR(DEV_GRP_NULL, RES_RESET, RES_STATE_OFF), 2},
583 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 0, 1, RES_STATE_ACTIVE),
584 0x13},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200585 {MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_PP, 0, 3, RES_STATE_OFF), 0x13},
586 {MSG_SINGULAR(DEV_GRP_NULL, RES_VDD1, RES_STATE_WRST), 0x13},
587 {MSG_SINGULAR(DEV_GRP_NULL, RES_VDD2, RES_STATE_WRST), 0x13},
588 {MSG_SINGULAR(DEV_GRP_NULL, RES_VPLL1, RES_STATE_WRST), 0x35},
Amit Kucheria3c684e842009-10-19 15:11:08 +0300589 {MSG_SINGULAR(DEV_GRP_P3, RES_HFCLKOUT, RES_STATE_ACTIVE), 2},
Amit Kucheria9312fff2009-08-27 20:27:57 +0200590 {MSG_SINGULAR(DEV_GRP_NULL, RES_RESET, RES_STATE_ACTIVE), 2},
591};
592
593static struct twl4030_script wrst_script __initdata = {
594 .script = wrst_seq,
595 .size = ARRAY_SIZE(wrst_seq),
596 .flags = TWL4030_WRST_SCRIPT,
597};
598
599static struct twl4030_script *twl4030_scripts[] __initdata = {
600 /* wakeup12 script should be loaded before sleep script, otherwise a
601 board might hit retention before loading of wakeup script is
602 completed. This can cause boot failures depending on timing issues.
603 */
604 &wakeup_script,
605 &sleep_on_script,
606 &wakeup_p3_script,
607 &wrst_script,
608};
609
610static struct twl4030_resconfig twl4030_rconfig[] __initdata = {
Amit Kucheria3c684e842009-10-19 15:11:08 +0300611 { .resource = RES_VDD1, .devgroup = -1,
612 .type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,
613 .remap_sleep = RES_STATE_OFF
614 },
615 { .resource = RES_VDD2, .devgroup = -1,
616 .type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,
617 .remap_sleep = RES_STATE_OFF
618 },
619 { .resource = RES_VPLL1, .devgroup = -1,
620 .type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,
621 .remap_sleep = RES_STATE_OFF
622 },
623 { .resource = RES_VPLL2, .devgroup = -1,
624 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
625 },
626 { .resource = RES_VAUX1, .devgroup = -1,
627 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
628 },
629 { .resource = RES_VAUX2, .devgroup = -1,
630 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
631 },
632 { .resource = RES_VAUX3, .devgroup = -1,
633 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
634 },
635 { .resource = RES_VAUX4, .devgroup = -1,
636 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
637 },
638 { .resource = RES_VMMC1, .devgroup = -1,
639 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
640 },
641 { .resource = RES_VMMC2, .devgroup = -1,
642 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
643 },
644 { .resource = RES_VDAC, .devgroup = -1,
645 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
646 },
647 { .resource = RES_VSIM, .devgroup = -1,
648 .type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1
649 },
650 { .resource = RES_VINTANA1, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
651 .type = -1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
652 },
653 { .resource = RES_VINTANA2, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
654 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
655 },
656 { .resource = RES_VINTDIG, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
657 .type = -1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
658 },
659 { .resource = RES_VIO, .devgroup = DEV_GRP_P3,
660 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
661 },
662 { .resource = RES_CLKEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
663 .type = 1, .type2 = -1 , .remap_off = -1, .remap_sleep = -1
664 },
665 { .resource = RES_REGEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
666 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
667 },
668 { .resource = RES_NRES_PWRON, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
669 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
670 },
671 { .resource = RES_SYSEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,
672 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
673 },
674 { .resource = RES_HFCLKOUT, .devgroup = DEV_GRP_P3,
675 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
676 },
677 { .resource = RES_32KCLKOUT, .devgroup = -1,
678 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
679 },
680 { .resource = RES_RESET, .devgroup = -1,
681 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
682 },
683 { .resource = RES_Main_Ref, .devgroup = -1,
684 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
685 },
Amit Kucheria9312fff2009-08-27 20:27:57 +0200686 { 0, 0},
687};
688
689static struct twl4030_power_data rx51_t2scripts_data __initdata = {
690 .scripts = twl4030_scripts,
691 .num = ARRAY_SIZE(twl4030_scripts),
692 .resource_config = twl4030_rconfig,
693};
694
695
Amit Kucheria9312fff2009-08-27 20:27:57 +0200696static 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 Nikulaf0c61d32010-12-18 18:17:10 +0000716static struct tpa6130a2_platform_data rx51_tpa6130a2_data __initdata_or_module = {
Jarkko Nikula64d06692010-08-02 13:18:03 +0300717 .id = TPA6130A2,
718 .power_gpio = 98,
719};
720
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700721static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_1[] = {
722 {
723 I2C_BOARD_INFO("twl5030", 0x48),
724 .flags = I2C_CLIENT_WAKE,
725 .irq = INT_34XX_SYS_NIRQ,
726 .platform_data = &rx51_twldata,
727 },
728};
729
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000730/* Audio setup data */
731static struct aic3x_setup_data rx51_aic34_setup = {
732 .gpio_func[0] = AIC3X_GPIO1_FUNC_DISABLED,
733 .gpio_func[1] = AIC3X_GPIO2_FUNC_DIGITAL_MIC_INPUT,
734};
735
Mark Browne4862f22010-08-16 18:42:58 +0100736static struct aic3x_pdata rx51_aic3x_data = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000737 .setup = &rx51_aic34_setup,
738 .gpio_reset = 60,
739};
740
Jarkko Nikulacaeeb4a2010-12-20 18:48:16 -0800741static struct aic3x_pdata rx51_aic3x_data2 = {
742 .gpio_reset = 60,
743};
744
Jarkko Nikuladabe9292010-05-10 14:29:18 -0700745static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_2[] = {
746 {
747 I2C_BOARD_INFO("tlv320aic3x", 0x18),
Jarkko Nikula87581fd2010-08-02 13:18:02 +0300748 .platform_data = &rx51_aic3x_data,
Jarkko Nikuladabe9292010-05-10 14:29:18 -0700749 },
Jarkko Nikulacaeeb4a2010-12-20 18:48:16 -0800750 {
751 I2C_BOARD_INFO("tlv320aic3x", 0x19),
752 .platform_data = &rx51_aic3x_data2,
753 },
Mathias Nyman70b5d732010-08-02 13:18:03 +0300754#if defined(CONFIG_SENSORS_TSL2563) || defined(CONFIG_SENSORS_TSL2563_MODULE)
755 {
756 I2C_BOARD_INFO("tsl2563", 0x29),
757 .platform_data = &rx51_tsl2563_platform_data,
758 },
759#endif
Jarkko Nikula64d06692010-08-02 13:18:03 +0300760 {
761 I2C_BOARD_INFO("tpa6130a2", 0x60),
762 .platform_data = &rx51_tpa6130a2_data,
763 }
Jarkko Nikuladabe9292010-05-10 14:29:18 -0700764};
765
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700766static int __init rx51_i2c_init(void)
767{
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700768 if ((system_rev >= SYSTEM_REV_S_USES_VAUX3 && system_rev < 0x100) ||
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700769 system_rev >= SYSTEM_REV_B_USES_VAUX3) {
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700770 rx51_twldata.vaux3 = &rx51_vaux3_mmc;
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700771 /* Only older boards use VMMC2 for internal MMC */
772 rx51_vmmc2.num_consumer_supplies--;
773 } else {
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700774 rx51_twldata.vaux3 = &rx51_vaux3_cam;
Adrian Hunterf52eeee2009-05-28 14:04:04 -0700775 }
Jarkko Nikula4cfcaef2010-05-10 14:29:19 -0700776 rx51_twldata.vmmc2 = &rx51_vmmc2;
Aaro Koskinencb3cc452009-10-14 09:56:34 -0700777 omap_register_i2c_bus(1, 2200, rx51_peripherals_i2c_board_info_1,
Jarkko Nikuladabe9292010-05-10 14:29:18 -0700778 ARRAY_SIZE(rx51_peripherals_i2c_board_info_1));
779 omap_register_i2c_bus(2, 100, rx51_peripherals_i2c_board_info_2,
780 ARRAY_SIZE(rx51_peripherals_i2c_board_info_2));
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700781 omap_register_i2c_bus(3, 400, NULL, 0);
782 return 0;
783}
784
Juha Yrjolaaa62e902009-05-28 13:23:52 -0700785#if defined(CONFIG_MTD_ONENAND_OMAP2) || \
786 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
787
788static struct mtd_partition onenand_partitions[] = {
789 {
790 .name = "bootloader",
791 .offset = 0,
792 .size = 0x20000,
793 .mask_flags = MTD_WRITEABLE, /* Force read-only */
794 },
795 {
796 .name = "config",
797 .offset = MTDPART_OFS_APPEND,
798 .size = 0x60000,
799 },
800 {
801 .name = "log",
802 .offset = MTDPART_OFS_APPEND,
803 .size = 0x40000,
804 },
805 {
806 .name = "kernel",
807 .offset = MTDPART_OFS_APPEND,
808 .size = 0x200000,
809 },
810 {
811 .name = "initfs",
812 .offset = MTDPART_OFS_APPEND,
813 .size = 0x200000,
814 },
815 {
816 .name = "rootfs",
817 .offset = MTDPART_OFS_APPEND,
818 .size = MTDPART_SIZ_FULL,
819 },
820};
821
Aaro Koskinen54031872010-12-02 15:51:24 +0000822static struct omap_onenand_platform_data board_onenand_data[] = {
823 {
824 .cs = 0,
825 .gpio_irq = 65,
826 .parts = onenand_partitions,
827 .nr_parts = ARRAY_SIZE(onenand_partitions),
828 .flags = ONENAND_SYNC_READWRITE,
829 }
Juha Yrjolaaa62e902009-05-28 13:23:52 -0700830};
Juha Yrjolaaa62e902009-05-28 13:23:52 -0700831#endif
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700832
Tony Lindgren1a48e152009-05-28 13:23:52 -0700833#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
834
835static struct omap_smc91x_platform_data board_smc91x_data = {
836 .cs = 1,
837 .gpio_irq = 54,
838 .gpio_pwrdwn = 86,
839 .gpio_reset = 164,
840 .flags = GPMC_TIMINGS_SMC91C96 | IORESOURCE_IRQ_HIGHLEVEL,
841};
842
843static void __init board_smc91x_init(void)
844{
Tony Lindgren4896e392009-12-11 16:16:32 -0800845 omap_mux_init_gpio(54, OMAP_PIN_INPUT_PULLDOWN);
846 omap_mux_init_gpio(86, OMAP_PIN_OUTPUT);
847 omap_mux_init_gpio(164, OMAP_PIN_OUTPUT);
Tony Lindgren1a48e152009-05-28 13:23:52 -0700848
849 gpmc_smc91x_init(&board_smc91x_data);
850}
851
852#else
853
854static inline void board_smc91x_init(void)
855{
856}
857
858#endif
859
Kalle Valoa24e61a2009-11-18 18:41:06 -0800860static void rx51_wl1251_set_power(bool enable)
861{
862 gpio_set_value(RX51_WL1251_POWER_GPIO, enable);
863}
864
865static void __init rx51_init_wl1251(void)
866{
867 int irq, ret;
868
869 ret = gpio_request(RX51_WL1251_POWER_GPIO, "wl1251 power");
870 if (ret < 0)
871 goto error;
872
873 ret = gpio_direction_output(RX51_WL1251_POWER_GPIO, 0);
874 if (ret < 0)
875 goto err_power;
876
877 ret = gpio_request(RX51_WL1251_IRQ_GPIO, "wl1251 irq");
878 if (ret < 0)
879 goto err_power;
880
881 ret = gpio_direction_input(RX51_WL1251_IRQ_GPIO);
882 if (ret < 0)
883 goto err_irq;
884
885 irq = gpio_to_irq(RX51_WL1251_IRQ_GPIO);
886 if (irq < 0)
887 goto err_irq;
888
889 wl1251_pdata.set_power = rx51_wl1251_set_power;
890 rx51_peripherals_spi_board_info[RX51_SPI_WL1251].irq = irq;
891
892 return;
893
894err_irq:
895 gpio_free(RX51_WL1251_IRQ_GPIO);
896
897err_power:
898 gpio_free(RX51_WL1251_POWER_GPIO);
899
900error:
901 printk(KERN_ERR "wl1251 board initialisation failed\n");
902 wl1251_pdata.set_power = NULL;
903
904 /*
905 * Now rx51_peripherals_spi_board_info[1].irq is zero and
906 * set_power is null, and wl1251_probe() will fail.
907 */
908}
909
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700910void __init rx51_peripherals_init(void)
911{
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700912 rx51_i2c_init();
Aaro Koskinen54031872010-12-02 15:51:24 +0000913 gpmc_onenand_init(board_onenand_data);
Tony Lindgren1a48e152009-05-28 13:23:52 -0700914 board_smc91x_init();
Jani Nikulaf014ee32009-11-05 22:59:47 -0800915 rx51_add_gpio_keys();
Kalle Valoa24e61a2009-11-18 18:41:06 -0800916 rx51_init_wl1251();
917 spi_register_board_info(rx51_peripherals_spi_board_info,
918 ARRAY_SIZE(rx51_peripherals_spi_board_info));
Benoit Cousson112485e2010-08-16 10:55:35 +0200919
920 partition = omap_mux_get("core");
921 if (partition)
922 omap2_hsmmc_init(mmc);
923
Heikki Krogerusfd0964c2010-08-19 15:09:37 +0300924 platform_device_register(&rx51_charger_device);
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700925}
926