Documentation/iostats.txt: bit-size reference etc.
[linux-2.6/next.git] / arch / arm / mach-omap2 / board-igep0030.c
blob4dc62a9b9cb24811fae3f0c1fc1149f31e7e0f34
1 /*
2 * Copyright (C) 2010 - ISEE 2007 SL
4 * Modified from mach-omap2/board-generic.c
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 */
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>
21 #include <linux/regulator/machine.h>
22 #include <linux/regulator/fixed.h>
23 #include <linux/i2c/twl.h>
24 #include <linux/mmc/host.h>
26 #include <asm/mach-types.h>
27 #include <asm/mach/arch.h>
29 #include <plat/board.h>
30 #include <plat/common.h>
31 #include <plat/gpmc.h>
32 #include <plat/usb.h>
33 #include <plat/onenand.h>
35 #include "mux.h"
36 #include "hsmmc.h"
37 #include "sdram-numonyx-m65kxxxxam.h"
39 #define IGEP3_GPIO_LED0_GREEN 54
40 #define IGEP3_GPIO_LED0_RED 53
41 #define IGEP3_GPIO_LED1_RED 16
43 #define IGEP3_GPIO_WIFI_NPD 138
44 #define IGEP3_GPIO_WIFI_NRESET 139
45 #define IGEP3_GPIO_BT_NRESET 137
47 #define IGEP3_GPIO_USBH_NRESET 183
50 #if defined(CONFIG_MTD_ONENAND_OMAP2) || \
51 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
53 #define ONENAND_MAP 0x20000000
56 * x2 Flash built-in COMBO POP MEMORY
57 * Since the device is equipped with two DataRAMs, and two-plane NAND
58 * Flash memory array, these two component enables simultaneous program
59 * of 4KiB. Plane1 has only even blocks such as block0, block2, block4
60 * while Plane2 has only odd blocks such as block1, block3, block5.
61 * So MTD regards it as 4KiB page size and 256KiB block size 64*(2*2048)
64 static struct mtd_partition igep3_onenand_partitions[] = {
66 .name = "X-Loader",
67 .offset = 0,
68 .size = 2 * (64*(2*2048))
71 .name = "U-Boot",
72 .offset = MTDPART_OFS_APPEND,
73 .size = 6 * (64*(2*2048)),
76 .name = "Environment",
77 .offset = MTDPART_OFS_APPEND,
78 .size = 2 * (64*(2*2048)),
81 .name = "Kernel",
82 .offset = MTDPART_OFS_APPEND,
83 .size = 12 * (64*(2*2048)),
86 .name = "File System",
87 .offset = MTDPART_OFS_APPEND,
88 .size = MTDPART_SIZ_FULL,
92 static struct omap_onenand_platform_data igep3_onenand_pdata = {
93 .parts = igep3_onenand_partitions,
94 .nr_parts = ARRAY_SIZE(igep3_onenand_partitions),
95 .onenand_setup = NULL,
96 .dma_channel = -1, /* disable DMA in OMAP OneNAND driver */
99 static struct platform_device igep3_onenand_device = {
100 .name = "omap2-onenand",
101 .id = -1,
102 .dev = {
103 .platform_data = &igep3_onenand_pdata,
107 static void __init igep3_flash_init(void)
109 u8 cs = 0;
110 u8 onenandcs = GPMC_CS_NUM + 1;
112 for (cs = 0; cs < GPMC_CS_NUM; cs++) {
113 u32 ret;
114 ret = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
116 /* Check if NAND/oneNAND is configured */
117 if ((ret & 0xC00) == 0x800)
118 /* NAND found */
119 pr_err("IGEP3: Unsupported NAND found\n");
120 else {
121 ret = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
123 if ((ret & 0x3F) == (ONENAND_MAP >> 24))
124 /* OneNAND found */
125 onenandcs = cs;
129 if (onenandcs > GPMC_CS_NUM) {
130 pr_err("IGEP3: Unable to find configuration in GPMC\n");
131 return;
134 igep3_onenand_pdata.cs = onenandcs;
136 if (platform_device_register(&igep3_onenand_device) < 0)
137 pr_err("IGEP3: Unable to register OneNAND device\n");
140 #else
141 static void __init igep3_flash_init(void) {}
142 #endif
144 static struct regulator_consumer_supply igep3_vmmc1_supply =
145 REGULATOR_SUPPLY("vmmc", "mmci-omap-hs.0");
147 /* VMMC1 for OMAP VDD_MMC1 (i/o) and MMC1 card */
148 static struct regulator_init_data igep3_vmmc1 = {
149 .constraints = {
150 .min_uV = 1850000,
151 .max_uV = 3150000,
152 .valid_modes_mask = REGULATOR_MODE_NORMAL
153 | REGULATOR_MODE_STANDBY,
154 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
155 | REGULATOR_CHANGE_MODE
156 | REGULATOR_CHANGE_STATUS,
158 .num_consumer_supplies = 1,
159 .consumer_supplies = &igep3_vmmc1_supply,
162 static struct regulator_consumer_supply igep3_vio_supply =
163 REGULATOR_SUPPLY("vmmc_aux", "mmci-omap-hs.1");
165 static struct regulator_init_data igep3_vio = {
166 .constraints = {
167 .min_uV = 1800000,
168 .max_uV = 1800000,
169 .apply_uV = 1,
170 .valid_modes_mask = REGULATOR_MODE_NORMAL
171 | REGULATOR_MODE_STANDBY,
172 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
173 | REGULATOR_CHANGE_MODE
174 | REGULATOR_CHANGE_STATUS,
176 .num_consumer_supplies = 1,
177 .consumer_supplies = &igep3_vio_supply,
180 static struct regulator_consumer_supply igep3_vmmc2_supply =
181 REGULATOR_SUPPLY("vmmc", "mmci-omap-hs.1");
183 static struct regulator_init_data igep3_vmmc2 = {
184 .constraints = {
185 .valid_modes_mask = REGULATOR_MODE_NORMAL,
186 .always_on = 1,
188 .num_consumer_supplies = 1,
189 .consumer_supplies = &igep3_vmmc2_supply,
192 static struct fixed_voltage_config igep3_vwlan = {
193 .supply_name = "vwlan",
194 .microvolts = 3300000,
195 .gpio = -EINVAL,
196 .enabled_at_boot = 1,
197 .init_data = &igep3_vmmc2,
200 static struct platform_device igep3_vwlan_device = {
201 .name = "reg-fixed-voltage",
202 .id = 0,
203 .dev = {
204 .platform_data = &igep3_vwlan,
208 static struct omap2_hsmmc_info mmc[] = {
209 [0] = {
210 .mmc = 1,
211 .caps = MMC_CAP_4_BIT_DATA,
212 .gpio_cd = -EINVAL,
213 .gpio_wp = -EINVAL,
215 #if defined(CONFIG_LIBERTAS_SDIO) || defined(CONFIG_LIBERTAS_SDIO_MODULE)
216 [1] = {
217 .mmc = 2,
218 .caps = MMC_CAP_4_BIT_DATA,
219 .gpio_cd = -EINVAL,
220 .gpio_wp = -EINVAL,
222 #endif
223 {} /* Terminator */
226 #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
227 #include <linux/leds.h>
229 static struct gpio_led igep3_gpio_leds[] = {
230 [0] = {
231 .name = "gpio-led:red:d0",
232 .gpio = IGEP3_GPIO_LED0_RED,
233 .default_trigger = "default-off"
235 [1] = {
236 .name = "gpio-led:green:d0",
237 .gpio = IGEP3_GPIO_LED0_GREEN,
238 .default_trigger = "default-off",
240 [2] = {
241 .name = "gpio-led:red:d1",
242 .gpio = IGEP3_GPIO_LED1_RED,
243 .default_trigger = "default-off",
245 [3] = {
246 .name = "gpio-led:green:d1",
247 .default_trigger = "heartbeat",
248 .gpio = -EINVAL, /* gets replaced */
252 static struct gpio_led_platform_data igep3_led_pdata = {
253 .leds = igep3_gpio_leds,
254 .num_leds = ARRAY_SIZE(igep3_gpio_leds),
257 static struct platform_device igep3_led_device = {
258 .name = "leds-gpio",
259 .id = -1,
260 .dev = {
261 .platform_data = &igep3_led_pdata,
265 static void __init igep3_leds_init(void)
267 platform_device_register(&igep3_led_device);
270 #else
271 static inline void igep3_leds_init(void)
273 if ((gpio_request(IGEP3_GPIO_LED0_RED, "gpio-led:red:d0") == 0) &&
274 (gpio_direction_output(IGEP3_GPIO_LED0_RED, 1) == 0)) {
275 gpio_export(IGEP3_GPIO_LED0_RED, 0);
276 gpio_set_value(IGEP3_GPIO_LED0_RED, 1);
277 } else
278 pr_warning("IGEP3: Could not obtain gpio GPIO_LED0_RED\n");
280 if ((gpio_request(IGEP3_GPIO_LED0_GREEN, "gpio-led:green:d0") == 0) &&
281 (gpio_direction_output(IGEP3_GPIO_LED0_GREEN, 1) == 0)) {
282 gpio_export(IGEP3_GPIO_LED0_GREEN, 0);
283 gpio_set_value(IGEP3_GPIO_LED0_GREEN, 1);
284 } else
285 pr_warning("IGEP3: Could not obtain gpio GPIO_LED0_GREEN\n");
287 if ((gpio_request(IGEP3_GPIO_LED1_RED, "gpio-led:red:d1") == 0) &&
288 (gpio_direction_output(IGEP3_GPIO_LED1_RED, 1) == 0)) {
289 gpio_export(IGEP3_GPIO_LED1_RED, 0);
290 gpio_set_value(IGEP3_GPIO_LED1_RED, 1);
291 } else
292 pr_warning("IGEP3: Could not obtain gpio GPIO_LED1_RED\n");
294 #endif
296 static int igep3_twl4030_gpio_setup(struct device *dev,
297 unsigned gpio, unsigned ngpio)
299 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
300 mmc[0].gpio_cd = gpio + 0;
301 omap2_hsmmc_init(mmc);
303 /* TWL4030_GPIO_MAX + 1 == ledB (out, active low LED) */
304 #if !defined(CONFIG_LEDS_GPIO) && !defined(CONFIG_LEDS_GPIO_MODULE)
305 if ((gpio_request(gpio+TWL4030_GPIO_MAX+1, "gpio-led:green:d1") == 0)
306 && (gpio_direction_output(gpio + TWL4030_GPIO_MAX + 1, 1) == 0)) {
307 gpio_export(gpio + TWL4030_GPIO_MAX + 1, 0);
308 gpio_set_value(gpio + TWL4030_GPIO_MAX + 1, 0);
309 } else
310 pr_warning("IGEP3: Could not obtain gpio GPIO_LED1_GREEN\n");
311 #else
312 igep3_gpio_leds[3].gpio = gpio + TWL4030_GPIO_MAX + 1;
313 #endif
315 return 0;
318 static struct twl4030_gpio_platform_data igep3_twl4030_gpio_pdata = {
319 .gpio_base = OMAP_MAX_GPIO_LINES,
320 .irq_base = TWL4030_GPIO_IRQ_BASE,
321 .irq_end = TWL4030_GPIO_IRQ_END,
322 .use_leds = true,
323 .setup = igep3_twl4030_gpio_setup,
326 static struct twl4030_usb_data igep3_twl4030_usb_data = {
327 .usb_mode = T2_USB_MODE_ULPI,
330 static struct platform_device *igep3_devices[] __initdata = {
331 &igep3_vwlan_device,
334 static void __init igep3_init_irq(void)
336 omap2_init_common_infrastructure();
337 omap2_init_common_devices(m65kxxxxam_sdrc_params,
338 m65kxxxxam_sdrc_params);
339 omap_init_irq();
342 static struct twl4030_platform_data igep3_twl4030_pdata = {
343 .irq_base = TWL4030_IRQ_BASE,
344 .irq_end = TWL4030_IRQ_END,
346 /* platform_data for children goes here */
347 .usb = &igep3_twl4030_usb_data,
348 .gpio = &igep3_twl4030_gpio_pdata,
349 .vmmc1 = &igep3_vmmc1,
350 .vio = &igep3_vio,
353 static struct i2c_board_info __initdata igep3_i2c_boardinfo[] = {
355 I2C_BOARD_INFO("twl4030", 0x48),
356 .flags = I2C_CLIENT_WAKE,
357 .irq = INT_34XX_SYS_NIRQ,
358 .platform_data = &igep3_twl4030_pdata,
362 static int __init igep3_i2c_init(void)
364 omap_register_i2c_bus(1, 2600, igep3_i2c_boardinfo,
365 ARRAY_SIZE(igep3_i2c_boardinfo));
367 return 0;
370 static struct omap_musb_board_data musb_board_data = {
371 .interface_type = MUSB_INTERFACE_ULPI,
372 .mode = MUSB_OTG,
373 .power = 100,
376 #if defined(CONFIG_LIBERTAS_SDIO) || defined(CONFIG_LIBERTAS_SDIO_MODULE)
378 static void __init igep3_wifi_bt_init(void)
380 /* Configure MUX values for W-LAN + Bluetooth GPIO's */
381 omap_mux_init_gpio(IGEP3_GPIO_WIFI_NPD, OMAP_PIN_OUTPUT);
382 omap_mux_init_gpio(IGEP3_GPIO_WIFI_NRESET, OMAP_PIN_OUTPUT);
383 omap_mux_init_gpio(IGEP3_GPIO_BT_NRESET, OMAP_PIN_OUTPUT);
385 /* Set GPIO's for W-LAN + Bluetooth combo module */
386 if ((gpio_request(IGEP3_GPIO_WIFI_NPD, "GPIO_WIFI_NPD") == 0) &&
387 (gpio_direction_output(IGEP3_GPIO_WIFI_NPD, 1) == 0)) {
388 gpio_export(IGEP3_GPIO_WIFI_NPD, 0);
389 } else
390 pr_warning("IGEP3: Could not obtain gpio GPIO_WIFI_NPD\n");
392 if ((gpio_request(IGEP3_GPIO_WIFI_NRESET, "GPIO_WIFI_NRESET") == 0) &&
393 (gpio_direction_output(IGEP3_GPIO_WIFI_NRESET, 1) == 0)) {
394 gpio_export(IGEP3_GPIO_WIFI_NRESET, 0);
395 gpio_set_value(IGEP3_GPIO_WIFI_NRESET, 0);
396 udelay(10);
397 gpio_set_value(IGEP3_GPIO_WIFI_NRESET, 1);
398 } else
399 pr_warning("IGEP3: Could not obtain gpio GPIO_WIFI_NRESET\n");
401 if ((gpio_request(IGEP3_GPIO_BT_NRESET, "GPIO_BT_NRESET") == 0) &&
402 (gpio_direction_output(IGEP3_GPIO_BT_NRESET, 1) == 0)) {
403 gpio_export(IGEP3_GPIO_BT_NRESET, 0);
404 } else
405 pr_warning("IGEP3: Could not obtain gpio GPIO_BT_NRESET\n");
407 #else
408 void __init igep3_wifi_bt_init(void) {}
409 #endif
411 static const struct ehci_hcd_omap_platform_data ehci_pdata __initconst = {
412 .port_mode[0] = EHCI_HCD_OMAP_MODE_UNKNOWN,
413 .port_mode[1] = EHCI_HCD_OMAP_MODE_PHY,
414 .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN,
416 .phy_reset = true,
417 .reset_gpio_port[0] = -EINVAL,
418 .reset_gpio_port[1] = IGEP3_GPIO_USBH_NRESET,
419 .reset_gpio_port[2] = -EINVAL,
422 #ifdef CONFIG_OMAP_MUX
423 static struct omap_board_mux board_mux[] __initdata = {
424 OMAP3_MUX(I2C2_SDA, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),
425 { .reg_offset = OMAP_MUX_TERMINATOR },
427 #endif
429 static void __init igep3_init(void)
431 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
433 /* Register I2C busses and drivers */
434 igep3_i2c_init();
435 platform_add_devices(igep3_devices, ARRAY_SIZE(igep3_devices));
436 omap_serial_init();
437 usb_musb_init(&musb_board_data);
438 usb_ehci_init(&ehci_pdata);
440 igep3_flash_init();
441 igep3_leds_init();
444 * WLAN-BT combo module from MuRata wich has a Marvell WLAN
445 * (88W8686) + CSR Bluetooth chipset. Uses SDIO interface.
447 igep3_wifi_bt_init();
451 MACHINE_START(IGEP0030, "IGEP OMAP3 module")
452 .boot_params = 0x80000100,
453 .reserve = omap_reserve,
454 .map_io = omap3_map_io,
455 .init_irq = igep3_init_irq,
456 .init_machine = igep3_init,
457 .timer = &omap_timer,
458 MACHINE_END