Merge branch 'stable-3.2' into pandora-3.2
[pandora-kernel.git] / arch / arm / mach-omap2 / board-omap3pandora.c
1 /*
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>
25 #include <linux/regulator/machine.h>
26 #include <linux/i2c/twl.h>
27 #include <linux/wl12xx.h>
28 #include <linux/mtd/partitions.h>
29 #include <linux/mtd/nand.h>
30 #include <linux/leds.h>
31 #include <linux/leds_pwm.h>
32 #include <linux/input.h>
33 #include <linux/input/matrix_keypad.h>
34 #include <linux/gpio.h>
35 #include <linux/gpio_keys.h>
36 #include <linux/mmc/host.h>
37 #include <linux/mmc/card.h>
38 #include <linux/regulator/fixed.h>
39 #include <linux/i2c/vsense.h>
40 #include <linux/dma-mapping.h>
41 #include <linux/dma-contiguous.h>
42
43 #include <asm/mach-types.h>
44 #include <asm/mach/arch.h>
45 #include <asm/mach/map.h>
46
47 #include <plat/board.h>
48 #include <plat/common.h>
49 #include <mach/hardware.h>
50 #include <plat/mcspi.h>
51 #include <plat/usb.h>
52 #include <video/omapdss.h>
53 #include <plat/nand.h>
54
55 #include "mux.h"
56 #include "sdram-micron-mt46h32m32lf-6.h"
57 #include "sdram-micron-mt29c4g96mazapcjg-5.h"
58 #include "hsmmc.h"
59 #include "common-board-devices.h"
60
61 #define PANDORA_WIFI_IRQ_GPIO           21
62 #define PANDORA_WIFI_NRESET_GPIO        23
63 #define OMAP3_PANDORA_TS_GPIO           94
64 #define PANDORA_EN_USB_5V_GPIO          164
65
66 static struct mtd_partition omap3pandora_nand_partitions[] = {
67         {
68                 .name           = "xloader",
69                 .offset         = 0,
70                 .size           = 4 * NAND_BLOCK_SIZE,
71                 .mask_flags     = MTD_WRITEABLE
72         }, {
73                 .name           = "uboot",
74                 .offset         = MTDPART_OFS_APPEND,
75                 .size           = 15 * NAND_BLOCK_SIZE,
76         }, {
77                 .name           = "uboot-env",
78                 .offset         = MTDPART_OFS_APPEND,
79                 .size           = 1 * NAND_BLOCK_SIZE,
80         }, {
81                 .name           = "boot",
82                 .offset         = MTDPART_OFS_APPEND,
83                 .size           = 80 * NAND_BLOCK_SIZE,
84         }, {
85                 .name           = "rootfs",
86                 .offset         = MTDPART_OFS_APPEND,
87                 .size           = MTDPART_SIZ_FULL,
88         },
89 };
90
91 static struct omap_nand_platform_data pandora_nand_data = {
92         .cs             = 0,
93         .devsize        = NAND_BUSWIDTH_16,
94         .xfer_type      = NAND_OMAP_PREFETCH_DMA,
95         .parts          = omap3pandora_nand_partitions,
96         .nr_parts       = ARRAY_SIZE(omap3pandora_nand_partitions),
97         .dev_ready      = true,
98 };
99
100 static struct gpio_led pandora_gpio_leds[] = {
101         {
102                 .name                   = "pandora::sd1",
103                 .default_trigger        = "mmc0",
104                 .gpio                   = 128,
105         }, {
106                 .name                   = "pandora::sd2",
107                 .default_trigger        = "mmc1",
108                 .gpio                   = 129,
109         }, {
110                 .name                   = "pandora::bluetooth",
111                 .gpio                   = 158,
112         }, {
113                 .name                   = "pandora::wifi",
114                 .gpio                   = 159,
115         },
116 };
117
118 static struct gpio_led_platform_data pandora_gpio_led_data = {
119         .leds           = pandora_gpio_leds,
120         .num_leds       = ARRAY_SIZE(pandora_gpio_leds),
121 };
122
123 static struct platform_device pandora_leds_gpio = {
124         .name   = "leds-gpio",
125         .id     = -1,
126         .dev    = {
127                 .platform_data  = &pandora_gpio_led_data,
128         },
129 };
130
131 static struct led_pwm pandora_pwm_leds[] = {
132         {
133                 .name                   = "pandora::keypad_bl",
134                 .pwm_id                 = 0, /* LEDA */
135         }, {
136                 .name                   = "pandora::power",
137                 .default_trigger        = "default-on",
138                 .pwm_id                 = 1, /* LEDB */
139         }, {
140                 .name                   = "pandora::charger",
141                 .default_trigger        = "twl4030_bci-charging",
142                 .pwm_id                 = 3, /* PWM1 */
143         }
144 };
145
146 static struct led_pwm_platform_data pandora_pwm_led_data = {
147         .leds           = pandora_pwm_leds,
148         .num_leds       = ARRAY_SIZE(pandora_pwm_leds),
149 };
150
151 static struct platform_device pandora_leds_pwm = {
152         .name   = "leds-twl4030-pwm",
153         .id     = -1,
154         .dev    = {
155                 .platform_data  = &pandora_pwm_led_data,
156         },
157 };
158
159 static struct platform_device pandora_bl = {
160         .name   = "pandora-backlight",
161         .id     = -1,
162 };
163
164 #define GPIO_BUTTON(gpio_num, ev_type, ev_code, act_low, descr) \
165 {                                                               \
166         .gpio           = gpio_num,                             \
167         .type           = ev_type,                              \
168         .code           = ev_code,                              \
169         .active_low     = act_low,                              \
170         .debounce_interval = 4,                                 \
171         .desc           = "btn " descr,                         \
172 }
173
174 #define GPIO_BUTTON_LOW(gpio_num, event_code, description)      \
175         GPIO_BUTTON(gpio_num, EV_KEY, event_code, 1, description)
176
177 static struct gpio_keys_button pandora_gpio_keys[] = {
178         GPIO_BUTTON_LOW(110,    KEY_UP,         "up"),
179         GPIO_BUTTON_LOW(103,    KEY_DOWN,       "down"),
180         GPIO_BUTTON_LOW(96,     KEY_LEFT,       "left"),
181         GPIO_BUTTON_LOW(98,     KEY_RIGHT,      "right"),
182         GPIO_BUTTON_LOW(109,    KEY_PAGEUP,     "game 1"),
183         GPIO_BUTTON_LOW(111,    KEY_END,        "game 2"),
184         GPIO_BUTTON_LOW(106,    KEY_PAGEDOWN,   "game 3"),
185         GPIO_BUTTON_LOW(101,    KEY_HOME,       "game 4"),
186         GPIO_BUTTON_LOW(102,    KEY_RIGHTSHIFT, "l"),
187         GPIO_BUTTON_LOW(97,     KEY_KPPLUS,     "l2"),
188         GPIO_BUTTON_LOW(105,    KEY_RIGHTCTRL,  "r"),
189         GPIO_BUTTON_LOW(107,    KEY_KPMINUS,    "r2"),
190         GPIO_BUTTON_LOW(104,    KEY_LEFTCTRL,   "ctrl"),
191         GPIO_BUTTON_LOW(99,     KEY_MENU,       "menu"),
192         GPIO_BUTTON_LOW(176,    KEY_COFFEE,     "hold"),
193         GPIO_BUTTON(100, EV_KEY, KEY_LEFTALT, 0, "alt"),
194         GPIO_BUTTON(108, EV_SW, SW_LID, 1, "lid"),
195 };
196
197 static struct gpio_keys_platform_data pandora_gpio_key_info = {
198         .buttons        = pandora_gpio_keys,
199         .nbuttons       = ARRAY_SIZE(pandora_gpio_keys),
200 };
201
202 static struct platform_device pandora_keys_gpio = {
203         .name   = "gpio-keys",
204         .id     = -1,
205         .dev    = {
206                 .platform_data  = &pandora_gpio_key_info,
207         },
208 };
209
210 /* HACK: this requires patched twl4030_keypad driver */
211 #define FNKEY(row, col, code) KEY((row + 8), col, code)
212
213 static const uint32_t board_keymap[] = {
214         /* row, col, code */
215         KEY(0, 0, KEY_9),
216         KEY(0, 1, KEY_8),
217         KEY(0, 2, KEY_I),
218         KEY(0, 3, KEY_J),
219         KEY(0, 4, KEY_N),
220         KEY(0, 5, KEY_M),
221         KEY(1, 0, KEY_0),
222         KEY(1, 1, KEY_7),
223         KEY(1, 2, KEY_U),
224         KEY(1, 3, KEY_H),
225         KEY(1, 4, KEY_B),
226         KEY(1, 5, KEY_SPACE),
227         KEY(2, 0, KEY_BACKSPACE),
228         KEY(2, 1, KEY_6),
229         KEY(2, 2, KEY_Y),
230         KEY(2, 3, KEY_G),
231         KEY(2, 4, KEY_V),
232         KEY(2, 5, KEY_FN),
233         KEY(3, 0, KEY_O),
234         KEY(3, 1, KEY_5),
235         KEY(3, 2, KEY_T),
236         KEY(3, 3, KEY_F),
237         KEY(3, 4, KEY_C),
238         KEY(4, 0, KEY_P),
239         KEY(4, 1, KEY_4),
240         KEY(4, 2, KEY_R),
241         KEY(4, 3, KEY_D),
242         KEY(4, 4, KEY_X),
243         KEY(5, 0, KEY_K),
244         KEY(5, 1, KEY_3),
245         KEY(5, 2, KEY_E),
246         KEY(5, 3, KEY_S),
247         KEY(5, 4, KEY_Z),
248         KEY(6, 0, KEY_L),
249         KEY(6, 1, KEY_2),
250         KEY(6, 2, KEY_W),
251         KEY(6, 3, KEY_A),
252         KEY(6, 4, KEY_DOT),
253         KEY(7, 0, KEY_ENTER),
254         KEY(7, 1, KEY_1),
255         KEY(7, 2, KEY_Q),
256         KEY(7, 3, KEY_LEFTSHIFT),
257         KEY(7, 4, KEY_COMMA),
258         /* Fn keys */
259         FNKEY(0, 0, KEY_F9),
260         FNKEY(0, 1, KEY_F8),
261         FNKEY(0, 2, KEY_BRIGHTNESSUP),
262         FNKEY(0, 3, KEY_F13),           /* apostrophe, differs from Fn-A? */
263         FNKEY(0, 4, KEY_F22),
264         FNKEY(0, 5, KEY_F23),
265         FNKEY(1, 0, KEY_F10),
266         FNKEY(1, 1, KEY_F7),
267         FNKEY(1, 2, KEY_BRIGHTNESSDOWN),
268         FNKEY(1, 3, KEY_GRAVE),
269         FNKEY(1, 4, KEY_F14),           /* pipe/bar */
270         FNKEY(1, 5, KEY_TAB),
271         FNKEY(2, 0, KEY_INSERT),
272         FNKEY(2, 1, KEY_F6),
273         FNKEY(2, 2, KEY_F15),           /* dash */
274         FNKEY(2, 3, KEY_EQUAL),
275         FNKEY(2, 4, KEY_F16),           /* # (pound/hash) */
276         FNKEY(2, 5, KEY_FN),
277         FNKEY(3, 0, KEY_F11),
278         FNKEY(3, 1, KEY_F5),
279         FNKEY(3, 2, KEY_F17),           /* ! */
280         FNKEY(3, 3, KEY_KPPLUS),
281         FNKEY(3, 4, KEY_BACKSLASH),
282         FNKEY(4, 0, KEY_F12),
283         FNKEY(4, 1, KEY_F4),
284         FNKEY(4, 2, KEY_RIGHTBRACE),
285         FNKEY(4, 3, KEY_KPMINUS),
286         FNKEY(4, 4, KEY_QUESTION),
287         FNKEY(5, 0, KEY_F18),           /* Â£ (pound) */
288         FNKEY(5, 1, KEY_F3),
289         FNKEY(5, 2, KEY_LEFTBRACE),
290         FNKEY(5, 3, KEY_F19),           /* " */
291         FNKEY(5, 4, KEY_SLASH),
292         FNKEY(6, 0, KEY_YEN),
293         FNKEY(6, 1, KEY_F2),
294         FNKEY(6, 2, KEY_F20),           /* @ */
295         FNKEY(6, 3, KEY_APOSTROPHE),
296         FNKEY(6, 4, KEY_F21),           /* : */
297         FNKEY(7, 0, KEY_ENTER),
298         FNKEY(7, 1, KEY_F1),
299         FNKEY(7, 2, KEY_ESC),
300         FNKEY(7, 3, KEY_CAPSLOCK),
301         FNKEY(7, 4, KEY_SEMICOLON),
302 };
303
304 static struct matrix_keymap_data board_map_data = {
305         .keymap                 = board_keymap,
306         .keymap_size            = ARRAY_SIZE(board_keymap),
307 };
308
309 static struct twl4030_keypad_data pandora_kp_data = {
310         .keymap_data    = &board_map_data,
311         .rows           = 8,
312         .cols           = 6,
313         .rep            = 1,
314 };
315
316 static struct omap_dss_device pandora_lcd_device = {
317         .name                   = "lcd",
318         .driver_name            = "tpo_td043mtea1_panel",
319         .type                   = OMAP_DISPLAY_TYPE_DPI,
320         .phy.dpi.data_lines     = 24,
321         .reset_gpio             = 157,
322 };
323
324 static struct omap_dss_device pandora_tv_device = {
325         .name                   = "tv",
326         .driver_name            = "venc",
327         .type                   = OMAP_DISPLAY_TYPE_VENC,
328         .phy.venc.type          = OMAP_DSS_VENC_TYPE_SVIDEO,
329 };
330
331 static struct omap_dss_device *pandora_dss_devices[] = {
332         &pandora_lcd_device,
333         &pandora_tv_device,
334 };
335
336 static struct omap_dss_board_info pandora_dss_data = {
337         .num_devices    = ARRAY_SIZE(pandora_dss_devices),
338         .devices        = pandora_dss_devices,
339         .default_device = &pandora_lcd_device,
340 };
341
342 static void pandora_wl1251_init_card(struct mmc_card *card)
343 {
344         /*
345          * We have TI wl1251 attached to MMC3. Pass this information to
346          * SDIO core because it can't be probed by normal methods.
347          */
348         card->quirks |= MMC_QUIRK_NONSTD_SDIO;
349         card->cccr.wide_bus = 1;
350         card->cis.vendor = 0x104c;
351         card->cis.device = 0x9066;
352         card->cis.blksize = 512;
353         card->cis.max_dtr = 24000000;
354 }
355
356 static struct omap2_hsmmc_info omap3pandora_mmc[] = {
357         {
358                 .mmc            = 1,
359                 .caps           = MMC_CAP_4_BIT_DATA,
360                 .gpio_cd        = -EINVAL,
361                 //.gpio_wp      = 126,
362                 .gpio_wp        = -EINVAL,
363                 .ext_clock      = 0,
364         },
365         {
366                 .mmc            = 2,
367                 .caps           = MMC_CAP_4_BIT_DATA,
368                 .gpio_cd        = -EINVAL,
369                 //.gpio_wp      = 127,
370                 .gpio_wp        = -EINVAL,
371                 .ext_clock      = 1,
372                 .transceiver    = true,
373         },
374         {
375                 .mmc            = 3,
376                 .caps           = MMC_CAP_4_BIT_DATA | MMC_CAP_POWER_OFF_CARD,
377                 .gpio_cd        = -EINVAL,
378                 .gpio_wp        = -EINVAL,
379                 .init_card      = pandora_wl1251_init_card,
380         },
381         {}      /* Terminator */
382 };
383
384 static int omap3pandora_twl_gpio_setup(struct device *dev,
385                 unsigned gpio, unsigned ngpio)
386 {
387         int ret, gpio_32khz;
388
389         /* gpio + {0,1} is "mmc{0,1}_cd" (input/IRQ) */
390         omap3pandora_mmc[0].gpio_cd = gpio + 0;
391         omap3pandora_mmc[1].gpio_cd = gpio + 1;
392         omap2_hsmmc_init(omap3pandora_mmc);
393
394         /* gpio + 13 drives 32kHz buffer for wifi module */
395         gpio_32khz = gpio + 13;
396         ret = gpio_request_one(gpio_32khz, GPIOF_OUT_INIT_HIGH, "wifi 32kHz");
397         if (ret < 0) {
398                 pr_err("Cannot get GPIO line %d, ret=%d\n", gpio_32khz, ret);
399                 return -ENODEV;
400         }
401
402         return 0;
403 }
404
405 static struct twl4030_gpio_platform_data omap3pandora_gpio_data = {
406         .gpio_base      = OMAP_MAX_GPIO_LINES,
407         .irq_base       = TWL4030_GPIO_IRQ_BASE,
408         .irq_end        = TWL4030_GPIO_IRQ_END,
409         .setup          = omap3pandora_twl_gpio_setup,
410 };
411
412 static struct regulator_consumer_supply pandora_vmmc1_supply[] = {
413         REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
414 };
415
416 static struct regulator_consumer_supply pandora_vmmc2_supply[] = {
417         REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1")
418 };
419
420 static struct regulator_consumer_supply pandora_vmmc3_supply[] = {
421         REGULATOR_SUPPLY("vmmc", "omap_hsmmc.2"),
422 };
423
424 static struct regulator_consumer_supply pandora_vdds_supplies[] = {
425         REGULATOR_SUPPLY("vdds_sdi", "omapdss"),
426         REGULATOR_SUPPLY("vdds_dsi", "omapdss"),
427         REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi.0"),
428 };
429
430 static struct regulator_consumer_supply pandora_vcc_lcd_supply[] = {
431         REGULATOR_SUPPLY("vcc", "display0"),
432 };
433
434 static struct regulator_consumer_supply pandora_usb_phy_supply[] = {
435         REGULATOR_SUPPLY("hsusb1", "ehci-omap.0"),
436 };
437
438 /* ads7846 on SPI and 2 nub controllers on I2C */
439 static struct regulator_consumer_supply pandora_vaux4_supplies[] = {
440         REGULATOR_SUPPLY("vcc", "spi1.0"),
441         REGULATOR_SUPPLY("vcc", "3-0066"),
442         REGULATOR_SUPPLY("vcc", "3-0067"),
443 };
444
445 static struct regulator_consumer_supply pandora_adac_supply[] = {
446         REGULATOR_SUPPLY("vcc", "soc-audio"),
447         REGULATOR_SUPPLY("lidsw", NULL),
448 };
449
450 /* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
451 static struct regulator_init_data pandora_vmmc1 = {
452         .constraints = {
453                 .min_uV                 = 1850000,
454                 .max_uV                 = 3150000,
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         },
461         .num_consumer_supplies  = ARRAY_SIZE(pandora_vmmc1_supply),
462         .consumer_supplies      = pandora_vmmc1_supply,
463 };
464
465 /* VMMC2 for MMC2 pins CMD, CLK, DAT0..DAT3 (max 100 mA) */
466 static struct regulator_init_data pandora_vmmc2 = {
467         .constraints = {
468                 .min_uV                 = 1850000,
469                 .max_uV                 = 3150000,
470                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
471                                         | REGULATOR_MODE_STANDBY,
472                 .valid_ops_mask         = REGULATOR_CHANGE_VOLTAGE
473                                         | REGULATOR_CHANGE_MODE
474                                         | REGULATOR_CHANGE_STATUS,
475         },
476         .num_consumer_supplies  = ARRAY_SIZE(pandora_vmmc2_supply),
477         .consumer_supplies      = pandora_vmmc2_supply,
478 };
479
480 /* VAUX1 for LCD */
481 static struct regulator_init_data pandora_vaux1 = {
482         .constraints = {
483                 .min_uV                 = 3000000,
484                 .max_uV                 = 3000000,
485                 .apply_uV               = true,
486                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
487                                         | REGULATOR_MODE_STANDBY,
488                 .valid_ops_mask         = REGULATOR_CHANGE_MODE
489                                         | REGULATOR_CHANGE_STATUS,
490         },
491         .num_consumer_supplies  = ARRAY_SIZE(pandora_vcc_lcd_supply),
492         .consumer_supplies      = pandora_vcc_lcd_supply,
493 };
494
495 /* VAUX2 for USB host PHY */
496 static struct regulator_init_data pandora_vaux2 = {
497         .constraints = {
498                 .min_uV                 = 1800000,
499                 .max_uV                 = 1800000,
500                 .apply_uV               = true,
501                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
502                                         | REGULATOR_MODE_STANDBY,
503                 .valid_ops_mask         = REGULATOR_CHANGE_MODE
504                                         | REGULATOR_CHANGE_STATUS,
505         },
506         .num_consumer_supplies  = ARRAY_SIZE(pandora_usb_phy_supply),
507         .consumer_supplies      = pandora_usb_phy_supply,
508 };
509
510 /* VAUX4 for ads7846 and nubs */
511 static struct regulator_init_data pandora_vaux4 = {
512         .constraints = {
513                 .min_uV                 = 3000000,
514                 .max_uV                 = 3000000,
515                 .apply_uV               = true,
516                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
517                                         | REGULATOR_MODE_STANDBY,
518                 .valid_ops_mask         = REGULATOR_CHANGE_MODE
519                                         | REGULATOR_CHANGE_STATUS,
520         },
521         .num_consumer_supplies  = ARRAY_SIZE(pandora_vaux4_supplies),
522         .consumer_supplies      = pandora_vaux4_supplies,
523 };
524
525 /* VSIM for audio DAC */
526 static struct regulator_init_data pandora_vsim = {
527         .constraints = {
528                 .min_uV                 = 2800000,
529                 .max_uV                 = 2800000,
530                 .apply_uV               = true,
531                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
532                                         | REGULATOR_MODE_STANDBY,
533                 .valid_ops_mask         = REGULATOR_CHANGE_MODE
534                                         | REGULATOR_CHANGE_STATUS,
535         },
536         .num_consumer_supplies  = ARRAY_SIZE(pandora_adac_supply),
537         .consumer_supplies      = pandora_adac_supply,
538 };
539
540 /* Fixed regulator internal to Wifi module */
541 static struct regulator_init_data pandora_vmmc3 = {
542         .constraints = {
543                 .valid_ops_mask         = REGULATOR_CHANGE_STATUS,
544         },
545         .num_consumer_supplies  = ARRAY_SIZE(pandora_vmmc3_supply),
546         .consumer_supplies      = pandora_vmmc3_supply,
547 };
548
549 static struct fixed_voltage_config pandora_vwlan = {
550         .supply_name            = "vwlan",
551         .microvolts             = 1800000, /* 1.8V */
552         .gpio                   = PANDORA_WIFI_NRESET_GPIO,
553         .startup_delay          = 50000, /* 50ms */
554         .enable_high            = 1,
555         .enabled_at_boot        = 0,
556         .init_data              = &pandora_vmmc3,
557 };
558
559 static struct platform_device pandora_vwlan_device = {
560         .name           = "reg-fixed-voltage",
561         .id             = 1,
562         .dev = {
563                 .platform_data = &pandora_vwlan,
564         },
565 };
566
567 static char *pandora_power_supplied_to[] = {
568         "bq27500-0",
569 };
570
571 static struct twl4030_bci_platform_data pandora_bci_data = {
572         .supplied_to            = pandora_power_supplied_to,
573         .num_supplicants        = ARRAY_SIZE(pandora_power_supplied_to),
574 };
575
576 static struct twl4030_ins sleep_on_seq[] = {
577         { MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_SLEEP), 2 },
578 };
579
580 static struct twl4030_script sleep_on_script = {
581         .script = sleep_on_seq,
582         .size   = ARRAY_SIZE(sleep_on_seq),
583         .flags  = TWL4030_SLEEP_SCRIPT,
584 };
585
586 static struct twl4030_ins wakeup_p3_seq[] = {
587         { MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_ACTIVE), 2 },
588 };
589
590 static struct twl4030_script wakeup_p3_script = {
591         .script = wakeup_p3_seq,
592         .size   = ARRAY_SIZE(wakeup_p3_seq),
593         .flags  = TWL4030_WAKEUP3_SCRIPT,
594 };
595
596 static struct twl4030_script *twl4030_scripts[] = {
597         /* wakeup script should be loaded before sleep script, otherwise a
598            board might hit retention before loading of wakeup script is
599            completed. This can cause boot failures depending on timing issues.
600         */
601         &wakeup_p3_script,
602         &sleep_on_script,
603 };
604
605 static struct twl4030_resconfig twl4030_rconfig[] = {
606         {
607                 .resource = RES_HFCLKOUT, .devgroup = DEV_GRP_P3,
608                 .type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1
609         },
610         { 0, 0},
611 };
612
613 static struct twl4030_power_data pandora_power_data = {
614         .scripts        = twl4030_scripts,
615         .num            = ARRAY_SIZE(twl4030_scripts),
616         .resource_config = twl4030_rconfig,
617
618         .use_poweroff   = 1,
619 };
620
621 static struct twl4030_platform_data omap3pandora_twldata = {
622         .gpio           = &omap3pandora_gpio_data,
623         .vmmc1          = &pandora_vmmc1,
624         .vmmc2          = &pandora_vmmc2,
625         .vaux1          = &pandora_vaux1,
626         .vaux2          = &pandora_vaux2,
627         .vaux4          = &pandora_vaux4,
628         .vsim           = &pandora_vsim,
629         .keypad         = &pandora_kp_data,
630         .bci            = &pandora_bci_data,
631         .power          = &pandora_power_data,
632 };
633
634 static struct vsense_platform_data omap3pandora_nub1_data = {
635         .gpio_irq       = 161,
636         .gpio_reset     = 156,
637 };
638
639 static struct vsense_platform_data omap3pandora_nub2_data = {
640         .gpio_irq       = 162,
641         .gpio_reset     = 156,
642 };
643
644 static struct i2c_board_info __initdata omap3pandora_i2c3_boardinfo[] = {
645         {
646                 I2C_BOARD_INFO("vsense", 0x66),
647                 .flags = I2C_CLIENT_WAKE,
648                 .platform_data = &omap3pandora_nub1_data,
649         }, {
650                 I2C_BOARD_INFO("vsense", 0x67),
651                 .flags = I2C_CLIENT_WAKE,
652                 .platform_data = &omap3pandora_nub2_data,
653         }, {
654                 I2C_BOARD_INFO("bq27500", 0x55),
655                 .flags = I2C_CLIENT_WAKE,
656         },
657 };
658
659 static int __init omap3pandora_i2c_init(void)
660 {
661         omap3_pmic_get_config(&omap3pandora_twldata,
662                         TWL_COMMON_PDATA_USB | TWL_COMMON_PDATA_AUDIO,
663                         TWL_COMMON_REGULATOR_VDAC | TWL_COMMON_REGULATOR_VPLL2);
664
665         omap3pandora_twldata.vdac->constraints.apply_uV = true;
666
667         omap3pandora_twldata.vpll2->constraints.apply_uV = true;
668         omap3pandora_twldata.vpll2->num_consumer_supplies =
669                                         ARRAY_SIZE(pandora_vdds_supplies);
670         omap3pandora_twldata.vpll2->consumer_supplies = pandora_vdds_supplies;
671
672         omap3_pmic_init("tps65950", &omap3pandora_twldata);
673         /* i2c2 pins are not connected */
674         omap_register_i2c_bus(3, 100, omap3pandora_i2c3_boardinfo,
675                         ARRAY_SIZE(omap3pandora_i2c3_boardinfo));
676         return 0;
677 }
678
679 static struct spi_board_info omap3pandora_spi_board_info[] __initdata = {
680         {
681                 .modalias               = "tpo_td043mtea1_panel_spi",
682                 .bus_num                = 1,
683                 .chip_select            = 1,
684                 .max_speed_hz           = 375000,
685                 .platform_data          = &pandora_lcd_device,
686         }
687 };
688
689 static void __init pandora_wl1251_init(void)
690 {
691         struct wl12xx_platform_data pandora_wl1251_pdata;
692         int ret;
693
694         memset(&pandora_wl1251_pdata, 0, sizeof(pandora_wl1251_pdata));
695
696         ret = gpio_request_one(PANDORA_WIFI_IRQ_GPIO, GPIOF_IN, "wl1251 irq");
697         if (ret < 0)
698                 goto fail;
699
700         pandora_wl1251_pdata.irq = gpio_to_irq(PANDORA_WIFI_IRQ_GPIO);
701         if (pandora_wl1251_pdata.irq < 0)
702                 goto fail_irq;
703
704         pandora_wl1251_pdata.use_eeprom = true;
705         ret = wl12xx_set_platform_data(&pandora_wl1251_pdata);
706         if (ret < 0)
707                 goto fail_irq;
708
709         return;
710
711 fail_irq:
712         gpio_free(PANDORA_WIFI_IRQ_GPIO);
713 fail:
714         printk(KERN_ERR "wl1251 board initialisation failed\n");
715 }
716
717 static void __init pandora_usb_host_init(void)
718 {
719         int ret;
720
721         ret = gpio_request_one(PANDORA_EN_USB_5V_GPIO, GPIOF_OUT_INIT_HIGH,
722                 "ehci vbus");
723         if (ret < 0)
724                 pr_err("Cannot set vbus GPIO, ret=%d\n", ret);
725 }
726
727 #include <linux/spi/ads7846.h>
728 #include <asm/system.h>
729
730 static DECLARE_COMPLETION(ts_completion);
731 static struct timespec ts_last_framedone;
732 static int pendown_state;
733
734 static void vsync_irq_wait_handler(void *data, u32 mask)
735 {
736         getnstimeofday(&ts_last_framedone);
737
738         /* reliable to read here */
739         pendown_state = !gpio_get_value(OMAP3_PANDORA_TS_GPIO);
740
741         complete(&ts_completion);
742 }
743
744 static void ads7846_wait_for_sync(void)
745 {
746         struct timespec now, diff;
747         u32 diff_us;
748
749         getnstimeofday(&now);
750         diff = timespec_sub(now, ts_last_framedone);
751         diff_us = diff.tv_nsec / NSEC_PER_USEC + diff.tv_sec * USEC_PER_SEC;
752         if (diff_us < 1023 || diff_us > 40000)
753                 /* still blanking or display inactive */
754                 return;
755
756         /* wait for blanking period */
757         disable_hlt();
758         wait_for_completion_timeout(&ts_completion, HZ / 30);
759         enable_hlt();
760 }
761
762 static int pandora_pendown_state(void)
763 {
764         static int val_old;
765         struct timespec now, diff;
766         u32 diff_us;
767         int val;
768         int ret;
769         
770         /* This line is a noisy mess. It doesn't trigger spuriously, i.e.
771          * there is no signal when pen is up, but when it's down we have
772          * white noise of sorts. */
773         val = !gpio_get_value(OMAP3_PANDORA_TS_GPIO);
774         pendown_state |= val;
775
776         if (in_irq() || in_atomic())
777                 /* no time to fight noise.. */
778                 return val | pendown_state;
779
780         if (val == 0) {
781                 getnstimeofday(&now);
782                 diff = timespec_sub(now, ts_last_framedone);
783                 diff_us = diff.tv_nsec / NSEC_PER_USEC + diff.tv_sec * USEC_PER_SEC;
784
785                 if (diff_us < 40000)
786                         /* assume pendown_state is up-to-date */
787                         val = pendown_state;
788                 else
789                         pendown_state = 0;
790         }
791
792         if (val != val_old) {
793                 init_completion(&ts_completion);
794                 dispc_runtime_get();
795                 if (val)
796                         ret = omap_dispc_register_isr(vsync_irq_wait_handler,
797                                 NULL, DISPC_IRQ_VSYNC);
798                 else
799                         ret = omap_dispc_unregister_isr(vsync_irq_wait_handler,
800                                 NULL, DISPC_IRQ_VSYNC);
801                 dispc_runtime_put();
802                 if (ret != 0)
803                         pr_err("%s: can't (un)register isr: %d %d\n",
804                                 __func__, val, ret);
805                 val_old = val;
806         }
807
808         return val;
809 }
810
811 static struct ads7846_platform_data pandora_ads7846_cfg = {
812         .x_max                  = 0x0fff,
813         .y_max                  = 0x0fff,
814         .x_plate_ohms           = 180,
815         .pressure_max           = 255,
816         .debounce_max           = 10,
817         .debounce_tol           = 3,
818         .debounce_rep           = 1,
819         .gpio_pendown           = OMAP3_PANDORA_TS_GPIO,
820         .keep_vref_on           = 1,
821         .wait_for_sync          = ads7846_wait_for_sync,
822         .get_pendown_state      = pandora_pendown_state,
823 };
824
825 static struct platform_device pandora_ram_console = {
826         .name   = "ram_console",
827         .id     = -1,
828 };
829
830 static struct platform_device pandora_c64_tools = {
831         .name   = "c64_tools",
832         .dev    = {
833                 .coherent_dma_mask = DMA_BIT_MASK(32),
834         },
835 };
836
837 static struct platform_device *omap3pandora_devices[] __initdata = {
838         &pandora_leds_gpio,
839         &pandora_leds_pwm,
840         &pandora_bl,
841         &pandora_keys_gpio,
842         &pandora_vwlan_device,
843         &pandora_ram_console,
844         &pandora_c64_tools,
845 };
846
847 static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
848
849         .port_mode[0] = OMAP_USBHS_PORT_MODE_UNUSED,
850         .port_mode[1] = OMAP_EHCI_PORT_MODE_PHY,
851         .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
852
853         .phy_reset  = true,
854         .reset_gpio_port[0]  = -EINVAL,
855         .reset_gpio_port[1]  = 16,
856         .reset_gpio_port[2]  = -EINVAL
857 };
858
859 #ifdef CONFIG_OMAP_MUX
860 static struct omap_board_mux board_mux[] __initdata = {
861         /* enable wakeup for pandora button (GPIO99) */
862         OMAP3_MUX(CAM_D0, OMAP_INPUT_EN | OMAP_WAKEUP_EN | OMAP_MUX_MODE4),
863         /* noisy unused signal from LCD cable */
864         OMAP3_MUX(CAM_VS, OMAP_INPUT_EN | OMAP_PULL_ENA | OMAP_PULL_UP | OMAP_MUX_MODE7),
865         { .reg_offset = OMAP_MUX_TERMINATOR },
866 };
867 #endif
868
869 static struct regulator *lid_switch_power;
870
871 #ifdef CONFIG_PM_SLEEP
872 static int pandora_pm_suspend(struct device *dev)
873 {
874         if (!IS_ERR_OR_NULL(lid_switch_power))
875                 regulator_disable(lid_switch_power);
876
877         return 0;
878 }
879
880 static int pandora_pm_resume(struct device *dev)
881 {
882         if (!IS_ERR_OR_NULL(lid_switch_power))
883                 regulator_enable(lid_switch_power);
884
885         return 0;
886 }
887 #endif
888
889 static SIMPLE_DEV_PM_OPS(pandora_pm, pandora_pm_suspend, pandora_pm_resume);
890
891 static int __devinit pandora_pm_probe(struct platform_device *pdev)
892 {
893         lid_switch_power = regulator_get(NULL, "lidsw");
894         if (!IS_ERR(lid_switch_power))
895                 regulator_enable(lid_switch_power);
896
897         return 0;
898 }
899
900 static struct platform_driver pandora_pm_driver = {
901         .probe          = pandora_pm_probe,
902         .driver         = {
903                 .name   = "pandora-pm",
904                 .pm     = &pandora_pm,
905         },
906 };
907
908 static struct platform_device pandora_pm_dev = {
909         .name   = "pandora-pm",
910         .id     = -1,
911 };
912
913 static int __init pandora_pm_drv_reg(void)
914 {
915         platform_device_register(&pandora_pm_dev);
916         return platform_driver_register(&pandora_pm_driver);
917 }
918 late_initcall(pandora_pm_drv_reg);
919
920 static void __init omap3pandora_init(void)
921 {
922         struct omap_sdrc_params *sdrc_params;
923
924         omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
925         pandora_usb_host_init();
926         omap3pandora_i2c_init();
927         pandora_wl1251_init();
928         platform_add_devices(omap3pandora_devices,
929                         ARRAY_SIZE(omap3pandora_devices));
930         omap_display_init(&pandora_dss_data);
931         omap_serial_init();
932
933         sdrc_params = mt46h32m32lf6_sdrc_params;
934         if (cpu_is_omap3630() || omap_rev() >= OMAP3430_REV_ES3_0)
935                 sdrc_params = mt29c4g96mazapcjg5_sdrc_params;
936         omap_sdrc_init(sdrc_params, sdrc_params);
937
938         spi_register_board_info(omap3pandora_spi_board_info,
939                         ARRAY_SIZE(omap3pandora_spi_board_info));
940         omap_ads7846_init(1, OMAP3_PANDORA_TS_GPIO, 31, &pandora_ads7846_cfg);
941         usbhs_init(&usbhs_bdata);
942         usb_musb_init(NULL);
943         gpmc_nand_init(&pandora_nand_data);
944
945         /* Ensure SDRC pins are mux'd for self-refresh */
946         omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
947         omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
948 }
949
950 /* HACK: create it here, so that others don't need to bother */
951 #ifdef CONFIG_PROC_FS
952 #include <linux/proc_fs.h>
953
954 static int __init proc_pandora_init(void)
955 {
956         struct proc_dir_entry *ret;
957
958         ret = proc_mkdir("pandora", NULL);
959         if (!ret)
960                 return -ENOMEM;
961         return 0;
962 }
963 fs_initcall(proc_pandora_init);
964 #endif
965
966 /* for debug.. */
967 #include <../drivers/staging/android/persistent_ram.h>
968
969 struct persistent_ram_descriptor ram_console_desc = {
970         .name           = "ram_console",
971         .size           = 0x20000,
972 };
973
974 struct persistent_ram ram_console_ram = {
975         .start          = 0x80fe0000,
976         .size           = 0x20000,
977         .num_descs      = 1,
978         .descs          = &ram_console_desc,
979 };
980
981 void __init pandora_reserve(void)
982 {
983         omap_reserve();
984         dma_declare_contiguous(&pandora_c64_tools.dev, 4 * SZ_1M, 0x86000000, 0);
985 #ifdef CONFIG_ANDROID_PERSISTENT_RAM
986         persistent_ram_early_init(&ram_console_ram);
987 #endif
988 }
989
990 MACHINE_START(OMAP3_PANDORA, "Pandora Handheld Console")
991         .atag_offset    = 0x100,
992         .reserve        = pandora_reserve,
993         .map_io         = omap3_map_io,
994         .init_early     = omap35xx_init_early,
995         .init_irq       = omap3_init_irq,
996         .init_machine   = omap3pandora_init,
997         .timer          = &omap3_timer,
998 MACHINE_END