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.
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>
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>
33 #include <plat/onenand.h>
37 #include "sdram-numonyx-m65kxxxxam.h"
38 #include "common-board-devices.h"
40 #define IGEP3_GPIO_LED0_GREEN 54
41 #define IGEP3_GPIO_LED0_RED 53
42 #define IGEP3_GPIO_LED1_RED 16
44 #define IGEP3_GPIO_WIFI_NPD 138
45 #define IGEP3_GPIO_WIFI_NRESET 139
46 #define IGEP3_GPIO_BT_NRESET 137
48 #define IGEP3_GPIO_USBH_NRESET 183
51 #if defined(CONFIG_MTD_ONENAND_OMAP2) || \
52 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
54 #define ONENAND_MAP 0x20000000
57 * x2 Flash built-in COMBO POP MEMORY
58 * Since the device is equipped with two DataRAMs, and two-plane NAND
59 * Flash memory array, these two component enables simultaneous program
60 * of 4KiB. Plane1 has only even blocks such as block0, block2, block4
61 * while Plane2 has only odd blocks such as block1, block3, block5.
62 * So MTD regards it as 4KiB page size and 256KiB block size 64*(2*2048)
65 static struct mtd_partition igep3_onenand_partitions
[] = {
69 .size
= 2 * (64*(2*2048))
73 .offset
= MTDPART_OFS_APPEND
,
74 .size
= 6 * (64*(2*2048)),
77 .name
= "Environment",
78 .offset
= MTDPART_OFS_APPEND
,
79 .size
= 2 * (64*(2*2048)),
83 .offset
= MTDPART_OFS_APPEND
,
84 .size
= 12 * (64*(2*2048)),
87 .name
= "File System",
88 .offset
= MTDPART_OFS_APPEND
,
89 .size
= MTDPART_SIZ_FULL
,
93 static struct omap_onenand_platform_data igep3_onenand_pdata
= {
94 .parts
= igep3_onenand_partitions
,
95 .nr_parts
= ARRAY_SIZE(igep3_onenand_partitions
),
96 .onenand_setup
= NULL
,
97 .dma_channel
= -1, /* disable DMA in OMAP OneNAND driver */
100 static struct platform_device igep3_onenand_device
= {
101 .name
= "omap2-onenand",
104 .platform_data
= &igep3_onenand_pdata
,
108 static void __init
igep3_flash_init(void)
111 u8 onenandcs
= GPMC_CS_NUM
+ 1;
113 for (cs
= 0; cs
< GPMC_CS_NUM
; cs
++) {
115 ret
= gpmc_cs_read_reg(cs
, GPMC_CS_CONFIG1
);
117 /* Check if NAND/oneNAND is configured */
118 if ((ret
& 0xC00) == 0x800)
120 pr_err("IGEP3: Unsupported NAND found\n");
122 ret
= gpmc_cs_read_reg(cs
, GPMC_CS_CONFIG7
);
124 if ((ret
& 0x3F) == (ONENAND_MAP
>> 24))
130 if (onenandcs
> GPMC_CS_NUM
) {
131 pr_err("IGEP3: Unable to find configuration in GPMC\n");
135 igep3_onenand_pdata
.cs
= onenandcs
;
137 if (platform_device_register(&igep3_onenand_device
) < 0)
138 pr_err("IGEP3: Unable to register OneNAND device\n");
142 static void __init
igep3_flash_init(void) {}
145 static struct regulator_consumer_supply igep3_vmmc1_supply
=
146 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0");
148 /* VMMC1 for OMAP VDD_MMC1 (i/o) and MMC1 card */
149 static struct regulator_init_data igep3_vmmc1
= {
153 .valid_modes_mask
= REGULATOR_MODE_NORMAL
154 | REGULATOR_MODE_STANDBY
,
155 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
156 | REGULATOR_CHANGE_MODE
157 | REGULATOR_CHANGE_STATUS
,
159 .num_consumer_supplies
= 1,
160 .consumer_supplies
= &igep3_vmmc1_supply
,
163 static struct regulator_consumer_supply igep3_vio_supply
=
164 REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.1");
166 static struct regulator_init_data igep3_vio
= {
171 .valid_modes_mask
= REGULATOR_MODE_NORMAL
172 | REGULATOR_MODE_STANDBY
,
173 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
174 | REGULATOR_CHANGE_MODE
175 | REGULATOR_CHANGE_STATUS
,
177 .num_consumer_supplies
= 1,
178 .consumer_supplies
= &igep3_vio_supply
,
181 static struct regulator_consumer_supply igep3_vmmc2_supply
=
182 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1");
184 static struct regulator_init_data igep3_vmmc2
= {
186 .valid_modes_mask
= REGULATOR_MODE_NORMAL
,
189 .num_consumer_supplies
= 1,
190 .consumer_supplies
= &igep3_vmmc2_supply
,
193 static struct fixed_voltage_config igep3_vwlan
= {
194 .supply_name
= "vwlan",
195 .microvolts
= 3300000,
197 .enabled_at_boot
= 1,
198 .init_data
= &igep3_vmmc2
,
201 static struct platform_device igep3_vwlan_device
= {
202 .name
= "reg-fixed-voltage",
205 .platform_data
= &igep3_vwlan
,
209 static struct omap2_hsmmc_info mmc
[] = {
212 .caps
= MMC_CAP_4_BIT_DATA
,
216 #if defined(CONFIG_LIBERTAS_SDIO) || defined(CONFIG_LIBERTAS_SDIO_MODULE)
219 .caps
= MMC_CAP_4_BIT_DATA
,
227 #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
228 #include <linux/leds.h>
230 static struct gpio_led igep3_gpio_leds
[] = {
232 .name
= "gpio-led:red:d0",
233 .gpio
= IGEP3_GPIO_LED0_RED
,
234 .default_trigger
= "default-off"
237 .name
= "gpio-led:green:d0",
238 .gpio
= IGEP3_GPIO_LED0_GREEN
,
239 .default_trigger
= "default-off",
242 .name
= "gpio-led:red:d1",
243 .gpio
= IGEP3_GPIO_LED1_RED
,
244 .default_trigger
= "default-off",
247 .name
= "gpio-led:green:d1",
248 .default_trigger
= "heartbeat",
249 .gpio
= -EINVAL
, /* gets replaced */
253 static struct gpio_led_platform_data igep3_led_pdata
= {
254 .leds
= igep3_gpio_leds
,
255 .num_leds
= ARRAY_SIZE(igep3_gpio_leds
),
258 static struct platform_device igep3_led_device
= {
262 .platform_data
= &igep3_led_pdata
,
266 static void __init
igep3_leds_init(void)
268 platform_device_register(&igep3_led_device
);
272 static struct gpio igep3_gpio_leds
[] __initdata
= {
273 { IGEP3_GPIO_LED0_RED
, GPIOF_OUT_INIT_HIGH
, "gpio-led:red:d0" },
274 { IGEP3_GPIO_LED0_GREEN
, GPIOF_OUT_INIT_HIGH
, "gpio-led:green:d0" },
275 { IGEP3_GPIO_LED1_RED
, GPIOF_OUT_INIT_HIGH
, "gpio-led:red:d1" },
278 static inline void igep3_leds_init(void)
280 if (gpio_request_array(igep3_gpio_leds
, ARRAY_SIZE(igep3_gpio_leds
))) {
281 pr_warning("IGEP3: Could not obtain leds gpios\n");
284 gpio_export(IGEP3_GPIO_LED0_RED
, 0);
285 gpio_export(IGEP3_GPIO_LED0_GREEN
, 0);
286 gpio_export(IGEP3_GPIO_LED1_RED
, 0);
290 static int igep3_twl4030_gpio_setup(struct device
*dev
,
291 unsigned gpio
, unsigned ngpio
)
293 #if !defined(CONFIG_LEDS_GPIO) && !defined(CONFIG_LEDS_GPIO_MODULE)
296 /* TWL4030_GPIO_MAX + 1 == ledB (out, active low LED) */
297 ret
= gpio_request_one(gpio
+ TWL4030_GPIO_MAX
+ 1, GPIOF_OUT_INIT_HIGH
,
298 "gpio-led:green:d1");
300 pr_warning("IGEP3: Could not obtain gpio GPIO_LED1_GREEN\n");
302 gpio_export(gpio
+ TWL4030_GPIO_MAX
+ 1, 0);
304 igep3_gpio_leds
[3].gpio
= gpio
+ TWL4030_GPIO_MAX
+ 1;
306 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
307 mmc
[0].gpio_cd
= gpio
+ 0;
308 omap2_hsmmc_init(mmc
);
313 static struct twl4030_gpio_platform_data igep3_twl4030_gpio_pdata
= {
314 .gpio_base
= OMAP_MAX_GPIO_LINES
,
315 .irq_base
= TWL4030_GPIO_IRQ_BASE
,
316 .irq_end
= TWL4030_GPIO_IRQ_END
,
318 .setup
= igep3_twl4030_gpio_setup
,
321 static struct twl4030_usb_data igep3_twl4030_usb_data
= {
322 .usb_mode
= T2_USB_MODE_ULPI
,
325 static struct platform_device
*igep3_devices
[] __initdata
= {
329 static void __init
igep3_init_early(void)
331 omap2_init_common_infrastructure();
332 omap2_init_common_devices(m65kxxxxam_sdrc_params
,
333 m65kxxxxam_sdrc_params
);
336 static struct twl4030_platform_data igep3_twl4030_pdata
= {
337 .irq_base
= TWL4030_IRQ_BASE
,
338 .irq_end
= TWL4030_IRQ_END
,
340 /* platform_data for children goes here */
341 .usb
= &igep3_twl4030_usb_data
,
342 .gpio
= &igep3_twl4030_gpio_pdata
,
343 .vmmc1
= &igep3_vmmc1
,
347 static int __init
igep3_i2c_init(void)
349 omap3_pmic_init("twl4030", &igep3_twl4030_pdata
);
354 #if defined(CONFIG_LIBERTAS_SDIO) || defined(CONFIG_LIBERTAS_SDIO_MODULE)
355 static struct gpio igep3_wlan_bt_gpios
[] __initdata
= {
356 { IGEP3_GPIO_WIFI_NPD
, GPIOF_OUT_INIT_HIGH
, "GPIO_WIFI_NPD" },
357 { IGEP3_GPIO_WIFI_NRESET
, GPIOF_OUT_INIT_HIGH
, "GPIO_WIFI_NRESET" },
358 { IGEP3_GPIO_BT_NRESET
, GPIOF_OUT_INIT_HIGH
, "GPIO_BT_NRESET" },
361 static void __init
igep3_wifi_bt_init(void)
365 /* Configure MUX values for W-LAN + Bluetooth GPIO's */
366 omap_mux_init_gpio(IGEP3_GPIO_WIFI_NPD
, OMAP_PIN_OUTPUT
);
367 omap_mux_init_gpio(IGEP3_GPIO_WIFI_NRESET
, OMAP_PIN_OUTPUT
);
368 omap_mux_init_gpio(IGEP3_GPIO_BT_NRESET
, OMAP_PIN_OUTPUT
);
370 /* Set GPIO's for W-LAN + Bluetooth combo module */
371 err
= gpio_request_array(igep3_wlan_bt_gpios
,
372 ARRAY_SIZE(igep3_wlan_bt_gpios
));
374 pr_warning("IGEP3: Could not obtain WIFI/BT gpios\n");
378 gpio_export(IGEP3_GPIO_WIFI_NPD
, 0);
379 gpio_export(IGEP3_GPIO_WIFI_NRESET
, 0);
380 gpio_export(IGEP3_GPIO_BT_NRESET
, 0);
382 gpio_set_value(IGEP3_GPIO_WIFI_NRESET
, 0);
384 gpio_set_value(IGEP3_GPIO_WIFI_NRESET
, 1);
387 void __init
igep3_wifi_bt_init(void) {}
390 static const struct usbhs_omap_board_data usbhs_bdata __initconst
= {
391 .port_mode
[0] = OMAP_USBHS_PORT_MODE_UNUSED
,
392 .port_mode
[1] = OMAP_EHCI_PORT_MODE_PHY
,
393 .port_mode
[2] = OMAP_USBHS_PORT_MODE_UNUSED
,
396 .reset_gpio_port
[0] = -EINVAL
,
397 .reset_gpio_port
[1] = IGEP3_GPIO_USBH_NRESET
,
398 .reset_gpio_port
[2] = -EINVAL
,
401 #ifdef CONFIG_OMAP_MUX
402 static struct omap_board_mux board_mux
[] __initdata
= {
403 OMAP3_MUX(I2C2_SDA
, OMAP_MUX_MODE4
| OMAP_PIN_OUTPUT
),
404 { .reg_offset
= OMAP_MUX_TERMINATOR
},
408 static void __init
igep3_init(void)
410 omap3_mux_init(board_mux
, OMAP_PACKAGE_CBB
);
412 /* Register I2C busses and drivers */
414 platform_add_devices(igep3_devices
, ARRAY_SIZE(igep3_devices
));
417 usbhs_init(&usbhs_bdata
);
423 * WLAN-BT combo module from MuRata which has a Marvell WLAN
424 * (88W8686) + CSR Bluetooth chipset. Uses SDIO interface.
426 igep3_wifi_bt_init();
430 MACHINE_START(IGEP0030
, "IGEP OMAP3 module")
431 .boot_params
= 0x80000100,
432 .reserve
= omap_reserve
,
433 .map_io
= omap3_map_io
,
434 .init_early
= igep3_init_early
,
435 .init_irq
= omap_init_irq
,
436 .init_machine
= igep3_init
,
437 .timer
= &omap_timer
,