blob: e95bba281a06d6e0ad4b21892ca8191fdd29feb6 [file] [log] [blame]
Grazvydas Ignotasda177242008-12-10 17:36:54 -08001/*
2 * board-omap3pandora.c (Pandora Handheld Console)
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
16 * 02110-1301 USA
17 *
18 */
19
20#include <linux/init.h>
21#include <linux/kernel.h>
22#include <linux/platform_device.h>
23
24#include <linux/spi/spi.h>
Grazvydas Ignotas64f535a2009-05-28 14:04:04 -070025#include <linux/regulator/machine.h>
Santosh Shilimkarb07682b2009-12-13 20:05:51 +010026#include <linux/i2c/twl.h>
Ohad Ben-Cohenc1f9a092010-09-16 13:16:02 +020027#include <linux/wl12xx.h>
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +030028#include <linux/mtd/partitions.h>
29#include <linux/mtd/nand.h>
Grazvydas Ignotas74190452009-05-28 14:15:44 -070030#include <linux/leds.h>
31#include <linux/input.h>
Janusz Krzysztofik61354342009-10-22 14:43:17 -070032#include <linux/input/matrix_keypad.h>
Axel Linf9fa1bb2011-05-31 20:55:44 +080033#include <linux/gpio.h>
Grazvydas Ignotas74190452009-05-28 14:15:44 -070034#include <linux/gpio_keys.h>
Sukumar Ghorai3a638332010-09-15 14:49:23 +000035#include <linux/mmc/host.h>
Grazvydas Ignotased199f72010-08-10 18:01:52 -070036#include <linux/mmc/card.h>
Grazvydas Ignotas690a4a32010-10-01 16:35:25 -070037#include <linux/regulator/fixed.h>
Grazvydas Ignotasda177242008-12-10 17:36:54 -080038
39#include <asm/mach-types.h>
40#include <asm/mach/arch.h>
41#include <asm/mach/map.h>
42
Tony Lindgrence491cf2009-10-20 09:40:47 -070043#include <plat/board.h>
44#include <plat/common.h>
Grazvydas Ignotasda177242008-12-10 17:36:54 -080045#include <mach/hardware.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070046#include <plat/mcspi.h>
47#include <plat/usb.h>
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030048#include <video/omapdss.h>
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +030049#include <plat/nand.h>
Grazvydas Ignotasda177242008-12-10 17:36:54 -080050
Tony Lindgrenca5742b2009-12-11 16:16:32 -080051#include "mux.h"
Paul Walmsley2e12bd72009-05-28 14:03:59 -070052#include "sdram-micron-mt46h32m32lf-6.h"
Adrian Hunterd02a900b2010-02-15 10:03:34 -080053#include "hsmmc.h"
Mike Rapoport96974a22011-04-25 01:09:05 +030054#include "common-board-devices.h"
Tony Lindgren90c62bf2008-12-10 17:37:17 -080055
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +030056#define PANDORA_WIFI_IRQ_GPIO 21
57#define PANDORA_WIFI_NRESET_GPIO 23
Grazvydas Ignotasda177242008-12-10 17:36:54 -080058#define OMAP3_PANDORA_TS_GPIO 94
59
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +030060static struct mtd_partition omap3pandora_nand_partitions[] = {
61 {
62 .name = "xloader",
63 .offset = 0,
64 .size = 4 * NAND_BLOCK_SIZE,
65 .mask_flags = MTD_WRITEABLE
66 }, {
67 .name = "uboot",
68 .offset = MTDPART_OFS_APPEND,
69 .size = 15 * NAND_BLOCK_SIZE,
70 }, {
71 .name = "uboot-env",
72 .offset = MTDPART_OFS_APPEND,
73 .size = 1 * NAND_BLOCK_SIZE,
74 }, {
75 .name = "boot",
76 .offset = MTDPART_OFS_APPEND,
77 .size = 80 * NAND_BLOCK_SIZE,
78 }, {
79 .name = "rootfs",
80 .offset = MTDPART_OFS_APPEND,
81 .size = MTDPART_SIZ_FULL,
82 },
83};
84
85static struct omap_nand_platform_data pandora_nand_data = {
86 .cs = 0,
87 .devsize = 1, /* '0' for 8-bit, '1' for 16-bit device */
88 .parts = omap3pandora_nand_partitions,
89 .nr_parts = ARRAY_SIZE(omap3pandora_nand_partitions),
90};
91
Grazvydas Ignotas74190452009-05-28 14:15:44 -070092static struct gpio_led pandora_gpio_leds[] = {
93 {
94 .name = "pandora::sd1",
95 .default_trigger = "mmc0",
96 .gpio = 128,
97 }, {
98 .name = "pandora::sd2",
99 .default_trigger = "mmc1",
100 .gpio = 129,
101 }, {
102 .name = "pandora::bluetooth",
103 .gpio = 158,
104 }, {
105 .name = "pandora::wifi",
106 .gpio = 159,
107 },
108};
109
110static struct gpio_led_platform_data pandora_gpio_led_data = {
111 .leds = pandora_gpio_leds,
112 .num_leds = ARRAY_SIZE(pandora_gpio_leds),
113};
114
115static struct platform_device pandora_leds_gpio = {
116 .name = "leds-gpio",
117 .id = -1,
118 .dev = {
119 .platform_data = &pandora_gpio_led_data,
120 },
121};
122
123#define GPIO_BUTTON(gpio_num, ev_type, ev_code, act_low, descr) \
124{ \
125 .gpio = gpio_num, \
126 .type = ev_type, \
127 .code = ev_code, \
128 .active_low = act_low, \
Grazvydas Ignotasad74db62010-08-02 13:18:01 +0300129 .debounce_interval = 4, \
Grazvydas Ignotas74190452009-05-28 14:15:44 -0700130 .desc = "btn " descr, \
131}
132
133#define GPIO_BUTTON_LOW(gpio_num, event_code, description) \
134 GPIO_BUTTON(gpio_num, EV_KEY, event_code, 1, description)
135
136static struct gpio_keys_button pandora_gpio_keys[] = {
137 GPIO_BUTTON_LOW(110, KEY_UP, "up"),
138 GPIO_BUTTON_LOW(103, KEY_DOWN, "down"),
139 GPIO_BUTTON_LOW(96, KEY_LEFT, "left"),
140 GPIO_BUTTON_LOW(98, KEY_RIGHT, "right"),
Grazvydas Ignotasad74db62010-08-02 13:18:01 +0300141 GPIO_BUTTON_LOW(109, KEY_PAGEUP, "game 1"),
142 GPIO_BUTTON_LOW(111, KEY_END, "game 2"),
143 GPIO_BUTTON_LOW(106, KEY_PAGEDOWN, "game 3"),
144 GPIO_BUTTON_LOW(101, KEY_HOME, "game 4"),
145 GPIO_BUTTON_LOW(102, KEY_RIGHTSHIFT, "l"),
146 GPIO_BUTTON_LOW(97, KEY_KPPLUS, "l2"),
147 GPIO_BUTTON_LOW(105, KEY_RIGHTCTRL, "r"),
148 GPIO_BUTTON_LOW(107, KEY_KPMINUS, "r2"),
Grazvydas Ignotas74190452009-05-28 14:15:44 -0700149 GPIO_BUTTON_LOW(104, KEY_LEFTCTRL, "ctrl"),
150 GPIO_BUTTON_LOW(99, KEY_MENU, "menu"),
151 GPIO_BUTTON_LOW(176, KEY_COFFEE, "hold"),
152 GPIO_BUTTON(100, EV_KEY, KEY_LEFTALT, 0, "alt"),
153 GPIO_BUTTON(108, EV_SW, SW_LID, 1, "lid"),
154};
155
156static struct gpio_keys_platform_data pandora_gpio_key_info = {
157 .buttons = pandora_gpio_keys,
158 .nbuttons = ARRAY_SIZE(pandora_gpio_keys),
159};
160
161static struct platform_device pandora_keys_gpio = {
162 .name = "gpio-keys",
163 .id = -1,
164 .dev = {
165 .platform_data = &pandora_gpio_key_info,
166 },
167};
168
Grazvydas Ignotasad74db62010-08-02 13:18:01 +0300169static const uint32_t board_keymap[] = {
Grazvydas Ignotas24de0422009-11-11 11:00:35 -0800170 /* row, col, code */
Grazvydas Ignotas74190452009-05-28 14:15:44 -0700171 KEY(0, 0, KEY_9),
Grazvydas Ignotas24de0422009-11-11 11:00:35 -0800172 KEY(0, 1, KEY_8),
173 KEY(0, 2, KEY_I),
174 KEY(0, 3, KEY_J),
175 KEY(0, 4, KEY_N),
176 KEY(0, 5, KEY_M),
177 KEY(1, 0, KEY_0),
Grazvydas Ignotas74190452009-05-28 14:15:44 -0700178 KEY(1, 1, KEY_7),
Grazvydas Ignotas24de0422009-11-11 11:00:35 -0800179 KEY(1, 2, KEY_U),
180 KEY(1, 3, KEY_H),
181 KEY(1, 4, KEY_B),
182 KEY(1, 5, KEY_SPACE),
183 KEY(2, 0, KEY_BACKSPACE),
184 KEY(2, 1, KEY_6),
Grazvydas Ignotas74190452009-05-28 14:15:44 -0700185 KEY(2, 2, KEY_Y),
Grazvydas Ignotas24de0422009-11-11 11:00:35 -0800186 KEY(2, 3, KEY_G),
187 KEY(2, 4, KEY_V),
188 KEY(2, 5, KEY_FN),
189 KEY(3, 0, KEY_O),
190 KEY(3, 1, KEY_5),
191 KEY(3, 2, KEY_T),
Grazvydas Ignotas74190452009-05-28 14:15:44 -0700192 KEY(3, 3, KEY_F),
Grazvydas Ignotas24de0422009-11-11 11:00:35 -0800193 KEY(3, 4, KEY_C),
194 KEY(4, 0, KEY_P),
195 KEY(4, 1, KEY_4),
196 KEY(4, 2, KEY_R),
197 KEY(4, 3, KEY_D),
Grazvydas Ignotas74190452009-05-28 14:15:44 -0700198 KEY(4, 4, KEY_X),
Grazvydas Ignotas24de0422009-11-11 11:00:35 -0800199 KEY(5, 0, KEY_K),
200 KEY(5, 1, KEY_3),
201 KEY(5, 2, KEY_E),
202 KEY(5, 3, KEY_S),
203 KEY(5, 4, KEY_Z),
204 KEY(6, 0, KEY_L),
205 KEY(6, 1, KEY_2),
206 KEY(6, 2, KEY_W),
207 KEY(6, 3, KEY_A),
208 KEY(6, 4, KEY_DOT),
209 KEY(7, 0, KEY_ENTER),
210 KEY(7, 1, KEY_1),
211 KEY(7, 2, KEY_Q),
212 KEY(7, 3, KEY_LEFTSHIFT),
213 KEY(7, 4, KEY_COMMA),
Grazvydas Ignotas74190452009-05-28 14:15:44 -0700214};
215
Tony Lindgren4f543332009-09-24 16:23:16 -0700216static struct matrix_keymap_data board_map_data = {
217 .keymap = board_keymap,
218 .keymap_size = ARRAY_SIZE(board_keymap),
219};
220
Grazvydas Ignotas74190452009-05-28 14:15:44 -0700221static struct twl4030_keypad_data pandora_kp_data = {
Tony Lindgren4f543332009-09-24 16:23:16 -0700222 .keymap_data = &board_map_data,
Grazvydas Ignotas74190452009-05-28 14:15:44 -0700223 .rows = 8,
224 .cols = 6,
Grazvydas Ignotas74190452009-05-28 14:15:44 -0700225 .rep = 1,
226};
227
Grazvydas Ignotas7b097892010-02-17 14:09:24 -0800228static struct omap_dss_device pandora_lcd_device = {
229 .name = "lcd",
230 .driver_name = "tpo_td043mtea1_panel",
231 .type = OMAP_DISPLAY_TYPE_DPI,
232 .phy.dpi.data_lines = 24,
233 .reset_gpio = 157,
234};
235
236static struct omap_dss_device pandora_tv_device = {
237 .name = "tv",
238 .driver_name = "venc",
239 .type = OMAP_DISPLAY_TYPE_VENC,
240 .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
241};
242
243static struct omap_dss_device *pandora_dss_devices[] = {
244 &pandora_lcd_device,
245 &pandora_tv_device,
246};
247
248static struct omap_dss_board_info pandora_dss_data = {
249 .num_devices = ARRAY_SIZE(pandora_dss_devices),
250 .devices = pandora_dss_devices,
251 .default_device = &pandora_lcd_device,
252};
253
Grazvydas Ignotased199f72010-08-10 18:01:52 -0700254static void pandora_wl1251_init_card(struct mmc_card *card)
255{
256 /*
257 * We have TI wl1251 attached to MMC3. Pass this information to
258 * SDIO core because it can't be probed by normal methods.
259 */
260 card->quirks |= MMC_QUIRK_NONSTD_SDIO;
261 card->cccr.wide_bus = 1;
262 card->cis.vendor = 0x104c;
263 card->cis.device = 0x9066;
264 card->cis.blksize = 512;
265 card->cis.max_dtr = 20000000;
266}
267
Adrian Hunter68ff0422010-02-15 10:03:34 -0800268static struct omap2_hsmmc_info omap3pandora_mmc[] = {
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800269 {
270 .mmc = 1,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000271 .caps = MMC_CAP_4_BIT_DATA,
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800272 .gpio_cd = -EINVAL,
273 .gpio_wp = 126,
274 .ext_clock = 0,
275 },
276 {
277 .mmc = 2,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000278 .caps = MMC_CAP_4_BIT_DATA,
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800279 .gpio_cd = -EINVAL,
280 .gpio_wp = 127,
281 .ext_clock = 1,
David Brownell0329c372009-03-23 18:23:47 -0700282 .transceiver = true,
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800283 },
Grazvydas Ignotas07d83cc2009-03-23 18:23:47 -0700284 {
285 .mmc = 3,
Grazvydas Ignotasf861fc12010-12-19 22:33:36 +0000286 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_POWER_OFF_CARD,
Grazvydas Ignotas07d83cc2009-03-23 18:23:47 -0700287 .gpio_cd = -EINVAL,
288 .gpio_wp = -EINVAL,
Grazvydas Ignotased199f72010-08-10 18:01:52 -0700289 .init_card = pandora_wl1251_init_card,
Grazvydas Ignotas07d83cc2009-03-23 18:23:47 -0700290 },
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800291 {} /* Terminator */
292};
293
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800294static int omap3pandora_twl_gpio_setup(struct device *dev,
295 unsigned gpio, unsigned ngpio)
296{
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +0300297 int ret, gpio_32khz;
298
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800299 /* gpio + {0,1} is "mmc{0,1}_cd" (input/IRQ) */
300 omap3pandora_mmc[0].gpio_cd = gpio + 0;
301 omap3pandora_mmc[1].gpio_cd = gpio + 1;
Adrian Hunter68ff0422010-02-15 10:03:34 -0800302 omap2_hsmmc_init(omap3pandora_mmc);
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800303
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +0300304 /* gpio + 13 drives 32kHz buffer for wifi module */
305 gpio_32khz = gpio + 13;
Igor Grinbergbc593f52011-05-03 18:22:09 +0300306 ret = gpio_request_one(gpio_32khz, GPIOF_OUT_INIT_HIGH, "wifi 32kHz");
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +0300307 if (ret < 0) {
308 pr_err("Cannot get GPIO line %d, ret=%d\n", gpio_32khz, ret);
Igor Grinbergbc593f52011-05-03 18:22:09 +0300309 return -ENODEV;
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +0300310 }
311
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800312 return 0;
313}
314
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800315static struct twl4030_gpio_platform_data omap3pandora_gpio_data = {
316 .gpio_base = OMAP_MAX_GPIO_LINES,
317 .irq_base = TWL4030_GPIO_IRQ_BASE,
318 .irq_end = TWL4030_GPIO_IRQ_END,
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800319 .setup = omap3pandora_twl_gpio_setup,
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800320};
321
Oleg Drokin786b01a2011-06-06 18:57:07 +0000322static struct regulator_consumer_supply pandora_vmmc1_supply[] = {
323 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
324};
Grazvydas Ignotasf6873ee2010-02-17 14:09:25 -0800325
Oleg Drokin786b01a2011-06-06 18:57:07 +0000326static struct regulator_consumer_supply pandora_vmmc2_supply[] = {
327 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1")
328};
Grazvydas Ignotasf6873ee2010-02-17 14:09:25 -0800329
Oleg Drokin786b01a2011-06-06 18:57:07 +0000330static struct regulator_consumer_supply pandora_vmmc3_supply[] = {
331 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.2"),
332};
Grazvydas Ignotas690a4a32010-10-01 16:35:25 -0700333
Oleg Drokin786b01a2011-06-06 18:57:07 +0000334static struct regulator_consumer_supply pandora_vdda_dac_supply[] = {
335 REGULATOR_SUPPLY("vdda_dac", "omapdss_venc"),
336};
Grazvydas Ignotasf6873ee2010-02-17 14:09:25 -0800337
338static struct regulator_consumer_supply pandora_vdds_supplies[] = {
339 REGULATOR_SUPPLY("vdds_sdi", "omapdss"),
340 REGULATOR_SUPPLY("vdds_dsi", "omapdss"),
Senthilvadivu Guruswamyc8aac012011-01-24 06:22:02 +0000341 REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi1"),
Grazvydas Ignotasf6873ee2010-02-17 14:09:25 -0800342};
343
Oleg Drokin786b01a2011-06-06 18:57:07 +0000344static struct regulator_consumer_supply pandora_vcc_lcd_supply[] = {
345 REGULATOR_SUPPLY("vcc", "display0"),
346};
Grazvydas Ignotasf6873ee2010-02-17 14:09:25 -0800347
Oleg Drokin786b01a2011-06-06 18:57:07 +0000348static struct regulator_consumer_supply pandora_usb_phy_supply[] = {
349 REGULATOR_SUPPLY("hsusb0", "ehci-omap.0"),
350};
Grazvydas Ignotasf6873ee2010-02-17 14:09:25 -0800351
352/* ads7846 on SPI and 2 nub controllers on I2C */
353static struct regulator_consumer_supply pandora_vaux4_supplies[] = {
354 REGULATOR_SUPPLY("vcc", "spi1.0"),
355 REGULATOR_SUPPLY("vcc", "3-0066"),
356 REGULATOR_SUPPLY("vcc", "3-0067"),
357};
358
Oleg Drokin786b01a2011-06-06 18:57:07 +0000359static struct regulator_consumer_supply pandora_adac_supply[] = {
360 REGULATOR_SUPPLY("vcc", "soc-audio"),
361};
Grazvydas Ignotasf6873ee2010-02-17 14:09:25 -0800362
Grazvydas Ignotas64f535a2009-05-28 14:04:04 -0700363/* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
364static struct regulator_init_data pandora_vmmc1 = {
365 .constraints = {
366 .min_uV = 1850000,
367 .max_uV = 3150000,
368 .valid_modes_mask = REGULATOR_MODE_NORMAL
369 | REGULATOR_MODE_STANDBY,
370 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
371 | REGULATOR_CHANGE_MODE
372 | REGULATOR_CHANGE_STATUS,
373 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000374 .num_consumer_supplies = ARRAY_SIZE(pandora_vmmc1_supply),
375 .consumer_supplies = pandora_vmmc1_supply,
Grazvydas Ignotas64f535a2009-05-28 14:04:04 -0700376};
377
378/* VMMC2 for MMC2 pins CMD, CLK, DAT0..DAT3 (max 100 mA) */
379static struct regulator_init_data pandora_vmmc2 = {
380 .constraints = {
381 .min_uV = 1850000,
382 .max_uV = 3150000,
383 .valid_modes_mask = REGULATOR_MODE_NORMAL
384 | REGULATOR_MODE_STANDBY,
385 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
386 | REGULATOR_CHANGE_MODE
387 | REGULATOR_CHANGE_STATUS,
388 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000389 .num_consumer_supplies = ARRAY_SIZE(pandora_vmmc2_supply),
390 .consumer_supplies = pandora_vmmc2_supply,
Grazvydas Ignotas64f535a2009-05-28 14:04:04 -0700391};
392
Grazvydas Ignotas7b097892010-02-17 14:09:24 -0800393/* VDAC for DSS driving S-Video */
394static struct regulator_init_data pandora_vdac = {
395 .constraints = {
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 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000404 .num_consumer_supplies = ARRAY_SIZE(pandora_vdda_dac_supply),
405 .consumer_supplies = pandora_vdda_dac_supply,
Grazvydas Ignotas7b097892010-02-17 14:09:24 -0800406};
407
408/* VPLL2 for digital video outputs */
409static struct regulator_init_data pandora_vpll2 = {
410 .constraints = {
411 .min_uV = 1800000,
412 .max_uV = 1800000,
413 .apply_uV = true,
414 .valid_modes_mask = REGULATOR_MODE_NORMAL
415 | REGULATOR_MODE_STANDBY,
416 .valid_ops_mask = REGULATOR_CHANGE_MODE
417 | REGULATOR_CHANGE_STATUS,
418 },
419 .num_consumer_supplies = ARRAY_SIZE(pandora_vdds_supplies),
420 .consumer_supplies = pandora_vdds_supplies,
421};
422
423/* VAUX1 for LCD */
424static struct regulator_init_data pandora_vaux1 = {
425 .constraints = {
426 .min_uV = 3000000,
427 .max_uV = 3000000,
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 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000434 .num_consumer_supplies = ARRAY_SIZE(pandora_vcc_lcd_supply),
435 .consumer_supplies = pandora_vcc_lcd_supply,
Grazvydas Ignotas7b097892010-02-17 14:09:24 -0800436};
437
Grazvydas Ignotasf6873ee2010-02-17 14:09:25 -0800438/* VAUX2 for USB host PHY */
439static struct regulator_init_data pandora_vaux2 = {
440 .constraints = {
441 .min_uV = 1800000,
442 .max_uV = 1800000,
443 .apply_uV = true,
444 .valid_modes_mask = REGULATOR_MODE_NORMAL
445 | REGULATOR_MODE_STANDBY,
446 .valid_ops_mask = REGULATOR_CHANGE_MODE
447 | REGULATOR_CHANGE_STATUS,
448 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000449 .num_consumer_supplies = ARRAY_SIZE(pandora_usb_phy_supply),
450 .consumer_supplies = pandora_usb_phy_supply,
Grazvydas Ignotasf6873ee2010-02-17 14:09:25 -0800451};
452
453/* VAUX4 for ads7846 and nubs */
454static struct regulator_init_data pandora_vaux4 = {
455 .constraints = {
456 .min_uV = 2800000,
457 .max_uV = 2800000,
458 .apply_uV = true,
459 .valid_modes_mask = REGULATOR_MODE_NORMAL
460 | REGULATOR_MODE_STANDBY,
461 .valid_ops_mask = REGULATOR_CHANGE_MODE
462 | REGULATOR_CHANGE_STATUS,
463 },
464 .num_consumer_supplies = ARRAY_SIZE(pandora_vaux4_supplies),
465 .consumer_supplies = pandora_vaux4_supplies,
466};
467
468/* VSIM for audio DAC */
469static struct regulator_init_data pandora_vsim = {
470 .constraints = {
471 .min_uV = 2800000,
472 .max_uV = 2800000,
473 .apply_uV = true,
474 .valid_modes_mask = REGULATOR_MODE_NORMAL
475 | REGULATOR_MODE_STANDBY,
476 .valid_ops_mask = REGULATOR_CHANGE_MODE
477 | REGULATOR_CHANGE_STATUS,
478 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000479 .num_consumer_supplies = ARRAY_SIZE(pandora_adac_supply),
480 .consumer_supplies = pandora_adac_supply,
Grazvydas Ignotasf6873ee2010-02-17 14:09:25 -0800481};
482
Grazvydas Ignotas690a4a32010-10-01 16:35:25 -0700483/* Fixed regulator internal to Wifi module */
484static struct regulator_init_data pandora_vmmc3 = {
485 .constraints = {
486 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
487 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000488 .num_consumer_supplies = ARRAY_SIZE(pandora_vmmc3_supply),
489 .consumer_supplies = pandora_vmmc3_supply,
Grazvydas Ignotas690a4a32010-10-01 16:35:25 -0700490};
491
492static struct fixed_voltage_config pandora_vwlan = {
493 .supply_name = "vwlan",
494 .microvolts = 1800000, /* 1.8V */
495 .gpio = PANDORA_WIFI_NRESET_GPIO,
496 .startup_delay = 50000, /* 50ms */
497 .enable_high = 1,
498 .enabled_at_boot = 0,
499 .init_data = &pandora_vmmc3,
500};
501
502static struct platform_device pandora_vwlan_device = {
503 .name = "reg-fixed-voltage",
504 .id = 1,
505 .dev = {
506 .platform_data = &pandora_vwlan,
507 },
508};
509
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800510static struct twl4030_usb_data omap3pandora_usb_data = {
511 .usb_mode = T2_USB_MODE_ULPI,
512};
513
Ilkka Koskinen6a58baf2011-03-02 13:24:05 +0000514static struct twl4030_codec_audio_data omap3pandora_audio_data;
Peter Ujfalusie86fa0b2009-10-22 13:26:46 +0300515
516static struct twl4030_codec_data omap3pandora_codec_data = {
Peter Ujfalusi6df74ef2009-11-04 09:58:18 +0200517 .audio_mclk = 26000000,
Peter Ujfalusie86fa0b2009-10-22 13:26:46 +0300518 .audio = &omap3pandora_audio_data,
519};
520
Grazvydas Ignotase13bb342010-10-01 16:35:25 -0700521static struct twl4030_bci_platform_data pandora_bci_data;
522
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800523static struct twl4030_platform_data omap3pandora_twldata = {
524 .irq_base = TWL4030_IRQ_BASE,
525 .irq_end = TWL4030_IRQ_END,
526 .gpio = &omap3pandora_gpio_data,
527 .usb = &omap3pandora_usb_data,
Peter Ujfalusie86fa0b2009-10-22 13:26:46 +0300528 .codec = &omap3pandora_codec_data,
Grazvydas Ignotas64f535a2009-05-28 14:04:04 -0700529 .vmmc1 = &pandora_vmmc1,
530 .vmmc2 = &pandora_vmmc2,
Grazvydas Ignotas7b097892010-02-17 14:09:24 -0800531 .vdac = &pandora_vdac,
532 .vpll2 = &pandora_vpll2,
533 .vaux1 = &pandora_vaux1,
Grazvydas Ignotasf6873ee2010-02-17 14:09:25 -0800534 .vaux2 = &pandora_vaux2,
535 .vaux4 = &pandora_vaux4,
536 .vsim = &pandora_vsim,
Grazvydas Ignotas74190452009-05-28 14:15:44 -0700537 .keypad = &pandora_kp_data,
Grazvydas Ignotase13bb342010-10-01 16:35:25 -0700538 .bci = &pandora_bci_data,
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800539};
540
Grazvydas Ignotas03d56712010-03-10 11:13:53 +0000541static struct i2c_board_info __initdata omap3pandora_i2c3_boardinfo[] = {
542 {
543 I2C_BOARD_INFO("bq27500", 0x55),
544 .flags = I2C_CLIENT_WAKE,
545 },
546};
547
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800548static int __init omap3pandora_i2c_init(void)
549{
Mike Rapoportfbd80712011-04-25 01:09:06 +0300550 omap3_pmic_init("tps65950", &omap3pandora_twldata);
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800551 /* i2c2 pins are not connected */
Grazvydas Ignotas03d56712010-03-10 11:13:53 +0000552 omap_register_i2c_bus(3, 100, omap3pandora_i2c3_boardinfo,
553 ARRAY_SIZE(omap3pandora_i2c3_boardinfo));
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800554 return 0;
555}
556
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800557static struct spi_board_info omap3pandora_spi_board_info[] __initdata = {
558 {
Grazvydas Ignotas7b097892010-02-17 14:09:24 -0800559 .modalias = "tpo_td043mtea1_panel_spi",
560 .bus_num = 1,
561 .chip_select = 1,
562 .max_speed_hz = 375000,
563 .platform_data = &pandora_lcd_device,
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800564 }
565};
566
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800567static void __init omap3pandora_init_early(void)
Paul Walmsleyb3c6df32009-09-03 20:14:02 +0300568{
Paul Walmsley48057342010-12-21 15:25:10 -0700569 omap2_init_common_infrastructure();
570 omap2_init_common_devices(mt46h32m32lf6_sdrc_params,
571 mt46h32m32lf6_sdrc_params);
Paul Walmsleyb3c6df32009-09-03 20:14:02 +0300572}
573
Grazvydas Ignotase4b3fdb2010-11-04 00:13:49 +0200574static void __init pandora_wl1251_init(void)
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +0300575{
Grazvydas Ignotase4b3fdb2010-11-04 00:13:49 +0200576 struct wl12xx_platform_data pandora_wl1251_pdata;
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +0300577 int ret;
578
Grazvydas Ignotase4b3fdb2010-11-04 00:13:49 +0200579 memset(&pandora_wl1251_pdata, 0, sizeof(pandora_wl1251_pdata));
580
Igor Grinbergbc593f52011-05-03 18:22:09 +0300581 ret = gpio_request_one(PANDORA_WIFI_IRQ_GPIO, GPIOF_IN, "wl1251 irq");
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +0300582 if (ret < 0)
583 goto fail;
584
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +0300585 pandora_wl1251_pdata.irq = gpio_to_irq(PANDORA_WIFI_IRQ_GPIO);
586 if (pandora_wl1251_pdata.irq < 0)
587 goto fail_irq;
588
Grazvydas Ignotase4b3fdb2010-11-04 00:13:49 +0200589 pandora_wl1251_pdata.use_eeprom = true;
590 ret = wl12xx_set_platform_data(&pandora_wl1251_pdata);
591 if (ret < 0)
592 goto fail_irq;
593
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +0300594 return;
595
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +0300596fail_irq:
597 gpio_free(PANDORA_WIFI_IRQ_GPIO);
598fail:
599 printk(KERN_ERR "wl1251 board initialisation failed\n");
600}
601
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800602static struct platform_device *omap3pandora_devices[] __initdata = {
Grazvydas Ignotas74190452009-05-28 14:15:44 -0700603 &pandora_leds_gpio,
604 &pandora_keys_gpio,
Grazvydas Ignotas690a4a32010-10-01 16:35:25 -0700605 &pandora_vwlan_device,
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800606};
607
Keshava Munegowda181b2502011-03-01 20:08:16 +0530608static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
Felipe Balbi58a54912009-11-22 10:11:01 -0800609
Keshava Munegowda181b2502011-03-01 20:08:16 +0530610 .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,
611 .port_mode[1] = OMAP_USBHS_PORT_MODE_UNUSED,
612 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
Felipe Balbi58a54912009-11-22 10:11:01 -0800613
614 .phy_reset = true,
615 .reset_gpio_port[0] = 16,
616 .reset_gpio_port[1] = -EINVAL,
617 .reset_gpio_port[2] = -EINVAL
618};
619
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800620#ifdef CONFIG_OMAP_MUX
621static struct omap_board_mux board_mux[] __initdata = {
622 { .reg_offset = OMAP_MUX_TERMINATOR },
623};
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800624#endif
625
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800626static void __init omap3pandora_init(void)
627{
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800628 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800629 omap3pandora_i2c_init();
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +0300630 pandora_wl1251_init();
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800631 platform_add_devices(omap3pandora_devices,
632 ARRAY_SIZE(omap3pandora_devices));
Senthilvadivu Guruswamyd5e13222011-02-22 11:24:50 +0200633 omap_display_init(&pandora_dss_data);
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800634 omap_serial_init();
635 spi_register_board_info(omap3pandora_spi_board_info,
636 ARRAY_SIZE(omap3pandora_spi_board_info));
Mike Rapoport96974a22011-04-25 01:09:05 +0300637 omap_ads7846_init(1, OMAP3_PANDORA_TS_GPIO, 0, NULL);
Keshava Munegowda9e64bb12011-03-01 20:08:19 +0530638 usbhs_init(&usbhs_bdata);
Mike Rapoport9e186302011-04-27 11:56:12 +0300639 usb_musb_init(NULL);
Grazvydas Ignotas79ccf542010-08-02 13:18:01 +0300640 gpmc_nand_init(&pandora_nand_data);
Jean Pihet9fb97412009-07-24 19:43:25 -0600641
642 /* Ensure SDRC pins are mux'd for self-refresh */
Tony Lindgren4896e392009-12-11 16:16:32 -0800643 omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
644 omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800645}
646
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800647MACHINE_START(OMAP3_PANDORA, "Pandora Handheld Console")
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800648 .boot_params = 0x80000100,
Russell King71ee7da2010-05-23 10:18:16 +0100649 .reserve = omap_reserve,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800650 .map_io = omap3_map_io,
651 .init_early = omap3pandora_init_early,
652 .init_irq = omap_init_irq,
Grazvydas Ignotasda177242008-12-10 17:36:54 -0800653 .init_machine = omap3pandora_init,
654 .timer = &omap_timer,
655MACHINE_END