blob: 2c9a9197d2b21893068be1e79d9d4726520c82f4 [file] [log] [blame]
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -08001/*
2 * Copyright (C) 2009 Integration Software and Electronic Engineering.
3 *
4 * Modified from mach-omap2/board-generic.c
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/delay.h>
15#include <linux/err.h>
16#include <linux/clk.h>
17#include <linux/io.h>
18#include <linux/gpio.h>
19#include <linux/interrupt.h>
Enric Balletbo i Serra18cbc7d2011-01-10 13:26:14 +000020#include <linux/input.h>
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -080021
22#include <linux/regulator/machine.h>
Marc Zyngierda07c0c2010-12-20 18:48:16 -080023#include <linux/regulator/fixed.h>
Balaji T Kebeb53e2009-12-15 20:09:02 +053024#include <linux/i2c/twl.h>
Sukumar Ghorai3a638332010-09-15 14:49:23 +000025#include <linux/mmc/host.h>
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -080026
27#include <asm/mach-types.h>
28#include <asm/mach/arch.h>
29
30#include <plat/board.h>
31#include <plat/common.h>
32#include <plat/gpmc.h>
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -080033#include <plat/usb.h>
Enric Balletbo i Serra691de272010-02-17 14:09:26 -080034#include <plat/display.h>
Bryan Wu89747c92010-11-17 13:34:34 +000035#include <plat/panel-generic-dpi.h>
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -080036#include <plat/onenand.h>
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -080037
Tony Lindgrenca5742b2009-12-11 16:16:32 -080038#include "mux.h"
Adrian Hunterd02a900b2010-02-15 10:03:34 -080039#include "hsmmc.h"
Enric Balletbo i Serra22f1baa2010-02-17 14:09:27 -080040#include "sdram-numonyx-m65kxxxxam.h"
Mike Rapoportfbd80712011-04-25 01:09:06 +030041#include "common-board-devices.h"
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -080042
43#define IGEP2_SMSC911X_CS 5
44#define IGEP2_SMSC911X_GPIO 176
45#define IGEP2_GPIO_USBH_NRESET 24
Enric Balletbo i Serra5a9fcc92010-10-08 10:22:43 -070046#define IGEP2_GPIO_LED0_GREEN 26
47#define IGEP2_GPIO_LED0_RED 27
48#define IGEP2_GPIO_LED1_RED 28
49#define IGEP2_GPIO_DVI_PUP 170
50
51#define IGEP2_RB_GPIO_WIFI_NPD 94
52#define IGEP2_RB_GPIO_WIFI_NRESET 95
53#define IGEP2_RB_GPIO_BT_NRESET 137
54#define IGEP2_RC_GPIO_WIFI_NPD 138
55#define IGEP2_RC_GPIO_WIFI_NRESET 139
56#define IGEP2_RC_GPIO_BT_NRESET 137
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -080057
Enric Balletbo i Serra3f8c48d2010-10-08 10:22:35 -070058/*
59 * IGEP2 Hardware Revision Table
60 *
Enric Balletbo i Serra5a9fcc92010-10-08 10:22:43 -070061 * --------------------------------------------------------------------------
62 * | Id. | Hw Rev. | HW0 (28) | WIFI_NPD | WIFI_NRESET | BT_NRESET |
63 * --------------------------------------------------------------------------
64 * | 0 | B | high | gpio94 | gpio95 | - |
65 * | 0 | B/C (B-compatible) | high | gpio94 | gpio95 | gpio137 |
66 * | 1 | C | low | gpio138 | gpio139 | gpio137 |
67 * --------------------------------------------------------------------------
Enric Balletbo i Serra3f8c48d2010-10-08 10:22:35 -070068 */
69
70#define IGEP2_BOARD_HWREV_B 0
71#define IGEP2_BOARD_HWREV_C 1
72
73static u8 hwrev;
74
75static void __init igep2_get_revision(void)
76{
77 u8 ret;
78
79 omap_mux_init_gpio(IGEP2_GPIO_LED1_RED, OMAP_PIN_INPUT);
80
81 if ((gpio_request(IGEP2_GPIO_LED1_RED, "GPIO_HW0_REV") == 0) &&
82 (gpio_direction_input(IGEP2_GPIO_LED1_RED) == 0)) {
83 ret = gpio_get_value(IGEP2_GPIO_LED1_RED);
84 if (ret == 0) {
85 pr_info("IGEP2: Hardware Revision C (B-NON compatible)\n");
86 hwrev = IGEP2_BOARD_HWREV_C;
87 } else if (ret == 1) {
88 pr_info("IGEP2: Hardware Revision B/C (B compatible)\n");
89 hwrev = IGEP2_BOARD_HWREV_B;
90 } else {
91 pr_err("IGEP2: Unknown Hardware Revision\n");
92 hwrev = -1;
93 }
94 } else {
95 pr_warning("IGEP2: Could not obtain gpio GPIO_HW0_REV\n");
96 pr_err("IGEP2: Unknown Hardware Revision\n");
97 }
98
99 gpio_free(IGEP2_GPIO_LED1_RED);
100}
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800101
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -0800102#if defined(CONFIG_MTD_ONENAND_OMAP2) || \
103 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
104
105#define ONENAND_MAP 0x20000000
106
107/* NAND04GR4E1A ( x2 Flash built-in COMBO POP MEMORY )
108 * Since the device is equipped with two DataRAMs, and two-plane NAND
109 * Flash memory array, these two component enables simultaneous program
110 * of 4KiB. Plane1 has only even blocks such as block0, block2, block4
111 * while Plane2 has only odd blocks such as block1, block3, block5.
112 * So MTD regards it as 4KiB page size and 256KiB block size 64*(2*2048)
113 */
114
115static struct mtd_partition igep2_onenand_partitions[] = {
116 {
117 .name = "X-Loader",
118 .offset = 0,
119 .size = 2 * (64*(2*2048))
120 },
121 {
122 .name = "U-Boot",
123 .offset = MTDPART_OFS_APPEND,
124 .size = 6 * (64*(2*2048)),
125 },
126 {
127 .name = "Environment",
128 .offset = MTDPART_OFS_APPEND,
129 .size = 2 * (64*(2*2048)),
130 },
131 {
132 .name = "Kernel",
133 .offset = MTDPART_OFS_APPEND,
134 .size = 12 * (64*(2*2048)),
135 },
136 {
137 .name = "File System",
138 .offset = MTDPART_OFS_APPEND,
139 .size = MTDPART_SIZ_FULL,
140 },
141};
142
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -0800143static struct omap_onenand_platform_data igep2_onenand_data = {
144 .parts = igep2_onenand_partitions,
145 .nr_parts = ARRAY_SIZE(igep2_onenand_partitions),
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -0800146 .dma_channel = -1, /* disable DMA in OMAP OneNAND driver */
147};
148
149static struct platform_device igep2_onenand_device = {
150 .name = "omap2-onenand",
151 .id = -1,
152 .dev = {
153 .platform_data = &igep2_onenand_data,
154 },
155};
156
Manjunath Kondaiah G04aeae72010-10-08 09:58:35 -0700157static void __init igep2_flash_init(void)
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -0800158{
Enric Balletbo i Serra235228b2010-10-23 16:49:00 +0000159 u8 cs = 0;
160 u8 onenandcs = GPMC_CS_NUM + 1;
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -0800161
Enric Balletbo i Serra235228b2010-10-23 16:49:00 +0000162 for (cs = 0; cs < GPMC_CS_NUM; cs++) {
163 u32 ret;
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -0800164 ret = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
165
166 /* Check if NAND/oneNAND is configured */
167 if ((ret & 0xC00) == 0x800)
168 /* NAND found */
Enric Balletbo i Serra235228b2010-10-23 16:49:00 +0000169 pr_err("IGEP2: Unsupported NAND found\n");
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -0800170 else {
171 ret = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
172 if ((ret & 0x3F) == (ONENAND_MAP >> 24))
173 /* ONENAND found */
174 onenandcs = cs;
175 }
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -0800176 }
Enric Balletbo i Serra235228b2010-10-23 16:49:00 +0000177
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -0800178 if (onenandcs > GPMC_CS_NUM) {
Enric Balletbo i Serra235228b2010-10-23 16:49:00 +0000179 pr_err("IGEP2: Unable to find configuration in GPMC\n");
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -0800180 return;
181 }
182
Enric Balletbo i Serra235228b2010-10-23 16:49:00 +0000183 igep2_onenand_data.cs = onenandcs;
184
185 if (platform_device_register(&igep2_onenand_device) < 0)
186 pr_err("IGEP2: Unable to register OneNAND device\n");
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -0800187}
188
189#else
Manjunath Kondaiah G04aeae72010-10-08 09:58:35 -0700190static void __init igep2_flash_init(void) {}
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -0800191#endif
192
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800193#if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
194
195#include <linux/smsc911x.h>
Mike Rapoport21b42732011-04-16 22:29:30 +0000196#include <plat/gpmc-smsc911x.h>
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800197
Mike Rapoport21b42732011-04-16 22:29:30 +0000198static struct omap_smsc911x_platform_data smsc911x_cfg = {
199 .cs = IGEP2_SMSC911X_CS,
200 .gpio_irq = IGEP2_SMSC911X_GPIO,
201 .gpio_reset = -EINVAL,
202 .flags = SMSC911X_USE_32BIT | SMSC911X_SAVE_MAC_ADDRESS,
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800203};
204
205static inline void __init igep2_init_smsc911x(void)
206{
Mike Rapoport21b42732011-04-16 22:29:30 +0000207 gpmc_smsc911x_init(&smsc911x_cfg);
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800208}
209
210#else
211static inline void __init igep2_init_smsc911x(void) { }
212#endif
213
Marc Zyngierda07c0c2010-12-20 18:48:16 -0800214static struct regulator_consumer_supply igep2_vmmc1_supply =
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530215 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0");
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800216
217/* VMMC1 for OMAP VDD_MMC1 (i/o) and MMC1 card */
218static struct regulator_init_data igep2_vmmc1 = {
219 .constraints = {
220 .min_uV = 1850000,
221 .max_uV = 3150000,
222 .valid_modes_mask = REGULATOR_MODE_NORMAL
223 | REGULATOR_MODE_STANDBY,
224 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
225 | REGULATOR_CHANGE_MODE
226 | REGULATOR_CHANGE_STATUS,
227 },
228 .num_consumer_supplies = 1,
229 .consumer_supplies = &igep2_vmmc1_supply,
230};
231
Marc Zyngierda07c0c2010-12-20 18:48:16 -0800232static struct regulator_consumer_supply igep2_vio_supply =
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530233 REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.1");
Marc Zyngierda07c0c2010-12-20 18:48:16 -0800234
235static struct regulator_init_data igep2_vio = {
236 .constraints = {
237 .min_uV = 1800000,
238 .max_uV = 1800000,
239 .apply_uV = 1,
240 .valid_modes_mask = REGULATOR_MODE_NORMAL
241 | REGULATOR_MODE_STANDBY,
242 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
243 | REGULATOR_CHANGE_MODE
244 | REGULATOR_CHANGE_STATUS,
245 },
246 .num_consumer_supplies = 1,
247 .consumer_supplies = &igep2_vio_supply,
248};
249
250static struct regulator_consumer_supply igep2_vmmc2_supply =
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530251 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1");
Marc Zyngierda07c0c2010-12-20 18:48:16 -0800252
253static struct regulator_init_data igep2_vmmc2 = {
254 .constraints = {
255 .valid_modes_mask = REGULATOR_MODE_NORMAL,
256 .always_on = 1,
257 },
258 .num_consumer_supplies = 1,
259 .consumer_supplies = &igep2_vmmc2_supply,
260};
261
262static struct fixed_voltage_config igep2_vwlan = {
263 .supply_name = "vwlan",
264 .microvolts = 3300000,
265 .gpio = -EINVAL,
266 .enabled_at_boot = 1,
267 .init_data = &igep2_vmmc2,
268};
269
270static struct platform_device igep2_vwlan_device = {
271 .name = "reg-fixed-voltage",
272 .id = 0,
273 .dev = {
274 .platform_data = &igep2_vwlan,
275 },
276};
277
Adrian Hunter68ff0422010-02-15 10:03:34 -0800278static struct omap2_hsmmc_info mmc[] = {
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800279 {
280 .mmc = 1,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000281 .caps = MMC_CAP_4_BIT_DATA,
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800282 .gpio_cd = -EINVAL,
283 .gpio_wp = -EINVAL,
284 },
Enric Balletbo i Serra5a9fcc92010-10-08 10:22:43 -0700285#if defined(CONFIG_LIBERTAS_SDIO) || defined(CONFIG_LIBERTAS_SDIO_MODULE)
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800286 {
287 .mmc = 2,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000288 .caps = MMC_CAP_4_BIT_DATA,
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800289 .gpio_cd = -EINVAL,
290 .gpio_wp = -EINVAL,
291 },
Enric Balletbo i Serra5a9fcc92010-10-08 10:22:43 -0700292#endif
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800293 {} /* Terminator */
294};
295
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700296#if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
297#include <linux/leds.h>
298
299static struct gpio_led igep2_gpio_leds[] = {
300 [0] = {
301 .name = "gpio-led:red:d0",
302 .gpio = IGEP2_GPIO_LED0_RED,
303 .default_trigger = "default-off"
304 },
305 [1] = {
306 .name = "gpio-led:green:d0",
307 .gpio = IGEP2_GPIO_LED0_GREEN,
308 .default_trigger = "default-off",
309 },
310 [2] = {
311 .name = "gpio-led:red:d1",
312 .gpio = IGEP2_GPIO_LED1_RED,
313 .default_trigger = "default-off",
314 },
315 [3] = {
316 .name = "gpio-led:green:d1",
317 .default_trigger = "heartbeat",
318 .gpio = -EINVAL, /* gets replaced */
Laurent Pinchart70e77762010-12-17 18:15:08 -0800319 .active_low = 1,
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700320 },
321};
322
323static struct gpio_led_platform_data igep2_led_pdata = {
324 .leds = igep2_gpio_leds,
325 .num_leds = ARRAY_SIZE(igep2_gpio_leds),
326};
327
328static struct platform_device igep2_led_device = {
329 .name = "leds-gpio",
330 .id = -1,
331 .dev = {
332 .platform_data = &igep2_led_pdata,
333 },
334};
335
336static void __init igep2_leds_init(void)
337{
338 platform_device_register(&igep2_led_device);
339}
340
341#else
342static inline void igep2_leds_init(void)
343{
344 if ((gpio_request(IGEP2_GPIO_LED0_RED, "gpio-led:red:d0") == 0) &&
Laurent Pinchart62d8e9e2010-12-17 18:15:07 -0800345 (gpio_direction_output(IGEP2_GPIO_LED0_RED, 0) == 0))
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700346 gpio_export(IGEP2_GPIO_LED0_RED, 0);
Laurent Pinchart62d8e9e2010-12-17 18:15:07 -0800347 else
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700348 pr_warning("IGEP v2: Could not obtain gpio GPIO_LED0_RED\n");
349
350 if ((gpio_request(IGEP2_GPIO_LED0_GREEN, "gpio-led:green:d0") == 0) &&
Laurent Pinchart62d8e9e2010-12-17 18:15:07 -0800351 (gpio_direction_output(IGEP2_GPIO_LED0_GREEN, 0) == 0))
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700352 gpio_export(IGEP2_GPIO_LED0_GREEN, 0);
Laurent Pinchart62d8e9e2010-12-17 18:15:07 -0800353 else
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700354 pr_warning("IGEP v2: Could not obtain gpio GPIO_LED0_GREEN\n");
355
356 if ((gpio_request(IGEP2_GPIO_LED1_RED, "gpio-led:red:d1") == 0) &&
Laurent Pinchart62d8e9e2010-12-17 18:15:07 -0800357 (gpio_direction_output(IGEP2_GPIO_LED1_RED, 0) == 0))
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700358 gpio_export(IGEP2_GPIO_LED1_RED, 0);
Laurent Pinchart62d8e9e2010-12-17 18:15:07 -0800359 else
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700360 pr_warning("IGEP v2: Could not obtain gpio GPIO_LED1_RED\n");
361
362}
363#endif
364
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800365static int igep2_twl_gpio_setup(struct device *dev,
366 unsigned gpio, unsigned ngpio)
367{
368 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
369 mmc[0].gpio_cd = gpio + 0;
Adrian Hunter68ff0422010-02-15 10:03:34 -0800370 omap2_hsmmc_init(mmc);
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800371
Enric Balletbo i Serra72f381b2010-10-08 10:22:57 -0700372 /*
Enric Balletbo i Serra61e118d2010-10-08 10:22:19 -0700373 * REVISIT: need ehci-omap hooks for external VBUS
374 * power switch and overcurrent detect
375 */
376 if ((gpio_request(gpio + 1, "GPIO_EHCI_NOC") < 0) ||
377 (gpio_direction_input(gpio + 1) < 0))
378 pr_err("IGEP2: Could not obtain gpio for EHCI NOC");
379
380 /*
381 * TWL4030_GPIO_MAX + 0 == ledA, GPIO_USBH_CPEN
382 * (out, active low)
383 */
384 if ((gpio_request(gpio + TWL4030_GPIO_MAX, "GPIO_USBH_CPEN") < 0) ||
385 (gpio_direction_output(gpio + TWL4030_GPIO_MAX, 0) < 0))
386 pr_err("IGEP2: Could not obtain gpio for USBH_CPEN");
387
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700388 /* TWL4030_GPIO_MAX + 1 == ledB (out, active low LED) */
389#if !defined(CONFIG_LEDS_GPIO) && !defined(CONFIG_LEDS_GPIO_MODULE)
390 if ((gpio_request(gpio+TWL4030_GPIO_MAX+1, "gpio-led:green:d1") == 0)
Laurent Pinchart70e77762010-12-17 18:15:08 -0800391 && (gpio_direction_output(gpio + TWL4030_GPIO_MAX + 1, 1) == 0))
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700392 gpio_export(gpio + TWL4030_GPIO_MAX + 1, 0);
Laurent Pinchart62d8e9e2010-12-17 18:15:07 -0800393 else
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700394 pr_warning("IGEP v2: Could not obtain gpio GPIO_LED1_GREEN\n");
395#else
396 igep2_gpio_leds[3].gpio = gpio + TWL4030_GPIO_MAX + 1;
397#endif
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800398
399 return 0;
400};
401
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700402static struct twl4030_gpio_platform_data igep2_twl4030_gpio_pdata = {
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800403 .gpio_base = OMAP_MAX_GPIO_LINES,
404 .irq_base = TWL4030_GPIO_IRQ_BASE,
405 .irq_end = TWL4030_GPIO_IRQ_END,
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700406 .use_leds = true,
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800407 .setup = igep2_twl_gpio_setup,
408};
409
410static struct twl4030_usb_data igep2_usb_data = {
411 .usb_mode = T2_USB_MODE_ULPI,
412};
413
Enric Balletbo i Serra691de272010-02-17 14:09:26 -0800414static int igep2_enable_dvi(struct omap_dss_device *dssdev)
415{
416 gpio_direction_output(IGEP2_GPIO_DVI_PUP, 1);
417
418 return 0;
419}
420
421static void igep2_disable_dvi(struct omap_dss_device *dssdev)
422{
423 gpio_direction_output(IGEP2_GPIO_DVI_PUP, 0);
424}
425
Bryan Wu89747c92010-11-17 13:34:34 +0000426static struct panel_generic_dpi_data dvi_panel = {
427 .name = "generic",
428 .platform_enable = igep2_enable_dvi,
429 .platform_disable = igep2_disable_dvi,
430};
431
Enric Balletbo i Serra691de272010-02-17 14:09:26 -0800432static struct omap_dss_device igep2_dvi_device = {
433 .type = OMAP_DISPLAY_TYPE_DPI,
434 .name = "dvi",
Bryan Wu89747c92010-11-17 13:34:34 +0000435 .driver_name = "generic_dpi_panel",
436 .data = &dvi_panel,
Enric Balletbo i Serra691de272010-02-17 14:09:26 -0800437 .phy.dpi.data_lines = 24,
Enric Balletbo i Serra691de272010-02-17 14:09:26 -0800438};
439
440static struct omap_dss_device *igep2_dss_devices[] = {
441 &igep2_dvi_device
442};
443
444static struct omap_dss_board_info igep2_dss_data = {
445 .num_devices = ARRAY_SIZE(igep2_dss_devices),
446 .devices = igep2_dss_devices,
447 .default_device = &igep2_dvi_device,
448};
449
Senthilvadivu Guruswamyc8aac012011-01-24 06:22:02 +0000450static struct regulator_consumer_supply igep2_vpll2_supplies[] = {
451 REGULATOR_SUPPLY("vdds_dsi", "omapdss"),
452 REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi1"),
453};
Enric Balletbo i Serra691de272010-02-17 14:09:26 -0800454
455static struct regulator_init_data igep2_vpll2 = {
456 .constraints = {
457 .name = "VDVI",
458 .min_uV = 1800000,
459 .max_uV = 1800000,
460 .apply_uV = true,
461 .valid_modes_mask = REGULATOR_MODE_NORMAL
462 | REGULATOR_MODE_STANDBY,
463 .valid_ops_mask = REGULATOR_CHANGE_MODE
464 | REGULATOR_CHANGE_STATUS,
465 },
Senthilvadivu Guruswamyc8aac012011-01-24 06:22:02 +0000466 .num_consumer_supplies = ARRAY_SIZE(igep2_vpll2_supplies),
467 .consumer_supplies = igep2_vpll2_supplies,
Enric Balletbo i Serra691de272010-02-17 14:09:26 -0800468};
469
470static void __init igep2_display_init(void)
471{
472 if (gpio_request(IGEP2_GPIO_DVI_PUP, "GPIO_DVI_PUP") &&
473 gpio_direction_output(IGEP2_GPIO_DVI_PUP, 1))
474 pr_err("IGEP v2: Could not obtain gpio GPIO_DVI_PUP\n");
475}
Enric Balletbo i Serra228893f2010-03-01 11:18:08 +0000476
Enric Balletbo i Serra691de272010-02-17 14:09:26 -0800477static struct platform_device *igep2_devices[] __initdata = {
Marc Zyngierda07c0c2010-12-20 18:48:16 -0800478 &igep2_vwlan_device,
Enric Balletbo i Serra691de272010-02-17 14:09:26 -0800479};
480
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800481static void __init igep2_init_early(void)
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800482{
Paul Walmsley48057342010-12-21 15:25:10 -0700483 omap2_init_common_infrastructure();
484 omap2_init_common_devices(m65kxxxxam_sdrc_params,
485 m65kxxxxam_sdrc_params);
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800486}
487
Ilkka Koskinen6a58baf2011-03-02 13:24:05 +0000488static struct twl4030_codec_audio_data igep2_audio_data;
Enric Balletbo i Serra7f5f23d2010-02-17 14:09:25 -0800489
490static struct twl4030_codec_data igep2_codec_data = {
491 .audio_mclk = 26000000,
492 .audio = &igep2_audio_data,
493};
494
Enric Balletbo i Serra18cbc7d2011-01-10 13:26:14 +0000495static int igep2_keymap[] = {
496 KEY(0, 0, KEY_LEFT),
497 KEY(0, 1, KEY_RIGHT),
498 KEY(0, 2, KEY_A),
499 KEY(0, 3, KEY_B),
500 KEY(1, 0, KEY_DOWN),
501 KEY(1, 1, KEY_UP),
502 KEY(1, 2, KEY_E),
503 KEY(1, 3, KEY_F),
504 KEY(2, 0, KEY_ENTER),
505 KEY(2, 1, KEY_I),
506 KEY(2, 2, KEY_J),
507 KEY(2, 3, KEY_K),
508 KEY(3, 0, KEY_M),
509 KEY(3, 1, KEY_N),
510 KEY(3, 2, KEY_O),
511 KEY(3, 3, KEY_P)
512};
513
514static struct matrix_keymap_data igep2_keymap_data = {
515 .keymap = igep2_keymap,
516 .keymap_size = ARRAY_SIZE(igep2_keymap),
517};
518
519static struct twl4030_keypad_data igep2_keypad_pdata = {
520 .keymap_data = &igep2_keymap_data,
521 .rows = 4,
522 .cols = 4,
523 .rep = 1,
524};
525
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800526static struct twl4030_platform_data igep2_twldata = {
527 .irq_base = TWL4030_IRQ_BASE,
528 .irq_end = TWL4030_IRQ_END,
529
530 /* platform_data for children goes here */
531 .usb = &igep2_usb_data,
Enric Balletbo i Serra7f5f23d2010-02-17 14:09:25 -0800532 .codec = &igep2_codec_data,
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700533 .gpio = &igep2_twl4030_gpio_pdata,
Enric Balletbo i Serra18cbc7d2011-01-10 13:26:14 +0000534 .keypad = &igep2_keypad_pdata,
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800535 .vmmc1 = &igep2_vmmc1,
Enric Balletbo i Serra691de272010-02-17 14:09:26 -0800536 .vpll2 = &igep2_vpll2,
Marc Zyngierda07c0c2010-12-20 18:48:16 -0800537 .vio = &igep2_vio,
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800538};
539
Enric Balletbo i Serra91d139c2010-10-08 10:22:51 -0700540static struct i2c_board_info __initdata igep2_i2c3_boardinfo[] = {
541 {
542 I2C_BOARD_INFO("eeprom", 0x50),
543 },
544};
545
546static void __init igep2_i2c_init(void)
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800547{
Enric Balletbo i Serra91d139c2010-10-08 10:22:51 -0700548 int ret;
549
Mike Rapoportfbd80712011-04-25 01:09:06 +0300550 omap3_pmic_init("twl4030", &igep2_twldata);
Enric Balletbo i Serra91d139c2010-10-08 10:22:51 -0700551
552 /*
553 * Bus 3 is attached to the DVI port where devices like the pico DLP
554 * projector don't work reliably with 400kHz
555 */
556 ret = omap_register_i2c_bus(3, 100, igep2_i2c3_boardinfo,
557 ARRAY_SIZE(igep2_i2c3_boardinfo));
558 if (ret)
559 pr_warning("IGEP2: Could not register I2C3 bus (%d)\n", ret);
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800560}
561
Keshava Munegowda181b2502011-03-01 20:08:16 +0530562static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
563 .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,
564 .port_mode[1] = OMAP_USBHS_PORT_MODE_UNUSED,
565 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
Enric Balletbo i Serrad08854862010-02-17 14:09:26 -0800566
567 .phy_reset = true,
Enric Balletbo i Serraf6b74532010-03-01 15:02:36 +0000568 .reset_gpio_port[0] = IGEP2_GPIO_USBH_NRESET,
569 .reset_gpio_port[1] = -EINVAL,
Enric Balletbo i Serrad08854862010-02-17 14:09:26 -0800570 .reset_gpio_port[2] = -EINVAL,
571};
572
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800573#ifdef CONFIG_OMAP_MUX
574static struct omap_board_mux board_mux[] __initdata = {
575 { .reg_offset = OMAP_MUX_TERMINATOR },
576};
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800577#endif
578
Enric Balletbo i Serra5a9fcc92010-10-08 10:22:43 -0700579#if defined(CONFIG_LIBERTAS_SDIO) || defined(CONFIG_LIBERTAS_SDIO_MODULE)
580
581static void __init igep2_wlan_bt_init(void)
582{
583 unsigned npd, wreset, btreset;
584
585 /* GPIO's for WLAN-BT combo depends on hardware revision */
586 if (hwrev == IGEP2_BOARD_HWREV_B) {
587 npd = IGEP2_RB_GPIO_WIFI_NPD;
588 wreset = IGEP2_RB_GPIO_WIFI_NRESET;
589 btreset = IGEP2_RB_GPIO_BT_NRESET;
590 } else if (hwrev == IGEP2_BOARD_HWREV_C) {
591 npd = IGEP2_RC_GPIO_WIFI_NPD;
592 wreset = IGEP2_RC_GPIO_WIFI_NRESET;
593 btreset = IGEP2_RC_GPIO_BT_NRESET;
594 } else
595 return;
596
597 /* Set GPIO's for WLAN-BT combo module */
598 if ((gpio_request(npd, "GPIO_WIFI_NPD") == 0) &&
599 (gpio_direction_output(npd, 1) == 0)) {
600 gpio_export(npd, 0);
601 } else
602 pr_warning("IGEP2: Could not obtain gpio GPIO_WIFI_NPD\n");
603
604 if ((gpio_request(wreset, "GPIO_WIFI_NRESET") == 0) &&
605 (gpio_direction_output(wreset, 1) == 0)) {
606 gpio_export(wreset, 0);
607 gpio_set_value(wreset, 0);
608 udelay(10);
609 gpio_set_value(wreset, 1);
610 } else
611 pr_warning("IGEP2: Could not obtain gpio GPIO_WIFI_NRESET\n");
612
613 if ((gpio_request(btreset, "GPIO_BT_NRESET") == 0) &&
614 (gpio_direction_output(btreset, 1) == 0)) {
615 gpio_export(btreset, 0);
616 } else
617 pr_warning("IGEP2: Could not obtain gpio GPIO_BT_NRESET\n");
618}
619#else
620static inline void __init igep2_wlan_bt_init(void) { }
621#endif
622
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800623static void __init igep2_init(void)
624{
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800625 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
Enric Balletbo i Serra3f8c48d2010-10-08 10:22:35 -0700626
627 /* Get IGEP2 hardware revision */
628 igep2_get_revision();
Enric Balletbo i Serra91d139c2010-10-08 10:22:51 -0700629 /* Register I2C busses and drivers */
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800630 igep2_i2c_init();
Enric Balletbo i Serra691de272010-02-17 14:09:26 -0800631 platform_add_devices(igep2_devices, ARRAY_SIZE(igep2_devices));
Senthilvadivu Guruswamyd5e13222011-02-22 11:24:50 +0200632 omap_display_init(&igep2_dss_data);
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800633 omap_serial_init();
Mike Rapoport9e186302011-04-27 11:56:12 +0300634 usb_musb_init(NULL);
Keshava Munegowda9e64bb12011-03-01 20:08:19 +0530635 usbhs_init(&usbhs_bdata);
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800636
Enric Balletbo i Serracddb4832010-02-17 14:09:26 -0800637 igep2_flash_init();
Enric Balletbo i Serrabee15392010-10-08 10:22:28 -0700638 igep2_leds_init();
Enric Balletbo i Serra691de272010-02-17 14:09:26 -0800639 igep2_display_init();
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800640 igep2_init_smsc911x();
641
Enric Balletbo i Serra5a9fcc92010-10-08 10:22:43 -0700642 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300643 * WLAN-BT combo module from MuRata which has a Marvell WLAN
Enric Balletbo i Serra5a9fcc92010-10-08 10:22:43 -0700644 * (88W8686) + CSR Bluetooth chipset. Uses SDIO interface.
645 */
646 igep2_wlan_bt_init();
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800647
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800648}
649
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800650MACHINE_START(IGEP0020, "IGEP v2 board")
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800651 .boot_params = 0x80000100,
Russell King71ee7da2010-05-23 10:18:16 +0100652 .reserve = omap_reserve,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800653 .map_io = omap3_map_io,
654 .init_early = igep2_init_early,
655 .init_irq = omap_init_irq,
Enric Balletbo i Serra58e11162009-11-18 18:41:07 -0800656 .init_machine = igep2_init,
657 .timer = &omap_timer,
658MACHINE_END