2 * board-overo.c (Gumstix Overo)
4 * Initial code: Steve Sakoman <steve@sakoman.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22 #include <linux/clk.h>
23 #include <linux/delay.h>
24 #include <linux/err.h>
25 #include <linux/init.h>
27 #include <linux/kernel.h>
28 #include <linux/platform_device.h>
29 #include <linux/i2c/twl4030.h>
30 #include <linux/regulator/machine.h>
32 #include <linux/mtd/mtd.h>
33 #include <linux/mtd/nand.h>
34 #include <linux/mtd/partitions.h>
36 #include <asm/mach-types.h>
37 #include <asm/mach/arch.h>
38 #include <asm/mach/flash.h>
39 #include <asm/mach/map.h>
41 #include <mach/board.h>
42 #include <mach/common.h>
43 #include <mach/gpio.h>
44 #include <mach/gpmc.h>
45 #include <mach/hardware.h>
46 #include <mach/nand.h>
49 #include "sdram-micron-mt46h32m32lf-6.h"
50 #include "mmc-twl4030.h"
52 #define OVERO_GPIO_BT_XGATE 15
53 #define OVERO_GPIO_W2W_NRESET 16
54 #define OVERO_GPIO_BT_NRESET 164
55 #define OVERO_GPIO_USBH_CPEN 168
56 #define OVERO_GPIO_USBH_NRESET 183
58 #define NAND_BLOCK_SIZE SZ_128K
59 #define GPMC_CS0_BASE 0x60
60 #define GPMC_CS_SIZE 0x30
62 #define OVERO_SMSC911X_CS 5
63 #define OVERO_SMSC911X_GPIO 176
65 #if defined(CONFIG_TOUCHSCREEN_ADS7846) || \
66 defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
68 #include <mach/mcspi.h>
69 #include <linux/spi/spi.h>
70 #include <linux/spi/ads7846.h>
72 static struct omap2_mcspi_device_config ads7846_mcspi_config = {
74 .single_channel = 1, /* 0: slave, 1: master */
77 static int ads7846_get_pendown_state(void)
79 return !gpio_get_value(OVERO_GPIO_PENDOWN);
82 static struct ads7846_platform_data ads7846_config = {
90 .get_pendown_state = ads7846_get_pendown_state,
94 static struct spi_board_info overo_spi_board_info[] __initdata = {
96 .modalias = "ads7846",
99 .max_speed_hz = 1500000,
100 .controller_data = &ads7846_mcspi_config,
101 .irq = OMAP_GPIO_IRQ(OVERO_GPIO_PENDOWN),
102 .platform_data = &ads7846_config,
106 static void __init overo_ads7846_init(void)
108 if ((gpio_request(OVERO_GPIO_PENDOWN, "ADS7846_PENDOWN") == 0) &&
109 (gpio_direction_input(OVERO_GPIO_PENDOWN) == 0)) {
110 gpio_export(OVERO_GPIO_PENDOWN, 0);
112 printk(KERN_ERR "could not obtain gpio for ADS7846_PENDOWN\n");
116 spi_register_board_info(overo_spi_board_info,
117 ARRAY_SIZE(overo_spi_board_info));
121 static inline void __init overo_ads7846_init(void) { return; }
124 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
126 #include <linux/smsc911x.h>
128 static struct resource overo_smsc911x_resources[] = {
130 .name = "smsc911x-memory",
131 .flags = IORESOURCE_MEM,
134 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
138 static struct smsc911x_platform_config overo_smsc911x_config = {
139 .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
140 .irq_type = SMSC911X_IRQ_TYPE_OPEN_DRAIN,
141 .flags = SMSC911X_USE_32BIT ,
142 .phy_interface = PHY_INTERFACE_MODE_MII,
145 static struct platform_device overo_smsc911x_device = {
148 .num_resources = ARRAY_SIZE(overo_smsc911x_resources),
149 .resource = &overo_smsc911x_resources,
151 .platform_data = &overo_smsc911x_config,
155 static inline void __init overo_init_smsc911x(void)
157 unsigned long cs_mem_base;
159 if (gpmc_cs_request(OVERO_SMSC911X_CS, SZ_16M, &cs_mem_base) < 0) {
160 printk(KERN_ERR "Failed request for GPMC mem for smsc911x\n");
164 overo_smsc911x_resources[0].start = cs_mem_base + 0x0;
165 overo_smsc911x_resources[0].end = cs_mem_base + 0xff;
167 if ((gpio_request(OVERO_SMSC911X_GPIO, "SMSC911X IRQ") == 0) &&
168 (gpio_direction_input(OVERO_SMSC911X_GPIO) == 0)) {
169 gpio_export(OVERO_SMSC911X_GPIO, 0);
171 printk(KERN_ERR "could not obtain gpio for SMSC911X IRQ\n");
175 overo_smsc911x_resources[1].start = OMAP_GPIO_IRQ(OVERO_SMSC911X_GPIO);
176 overo_smsc911x_resources[1].end = 0;
178 platform_device_register(&overo_smsc911x_device);
182 static inline void __init overo_init_smsc911x(void) { return; }
185 static struct mtd_partition overo_nand_partitions[] = {
188 .offset = 0, /* Offset = 0x00000 */
189 .size = 4 * NAND_BLOCK_SIZE,
190 .mask_flags = MTD_WRITEABLE
194 .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */
195 .size = 14 * NAND_BLOCK_SIZE,
198 .name = "uboot environment",
199 .offset = MTDPART_OFS_APPEND, /* Offset = 0x240000 */
200 .size = 2 * NAND_BLOCK_SIZE,
204 .offset = MTDPART_OFS_APPEND, /* Offset = 0x280000 */
205 .size = 32 * NAND_BLOCK_SIZE,
209 .offset = MTDPART_OFS_APPEND, /* Offset = 0x680000 */
210 .size = MTDPART_SIZ_FULL,
214 static struct omap_nand_platform_data overo_nand_data = {
215 .parts = overo_nand_partitions,
216 .nr_parts = ARRAY_SIZE(overo_nand_partitions),
217 .dma_channel = -1, /* disable DMA in OMAP NAND driver */
220 static struct resource overo_nand_resource = {
221 .flags = IORESOURCE_MEM,
224 static struct platform_device overo_nand_device = {
225 .name = "omap2-nand",
228 .platform_data = &overo_nand_data,
231 .resource = &overo_nand_resource,
235 static void __init overo_flash_init(void)
238 u8 nandcs = GPMC_CS_NUM + 1;
240 u32 gpmc_base_add = OMAP34XX_GPMC_VIRT;
242 /* find out the chip-select on which NAND exists */
243 while (cs < GPMC_CS_NUM) {
245 ret = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
247 if ((ret & 0xC00) == 0x800) {
248 printk(KERN_INFO "Found NAND on CS%d\n", cs);
249 if (nandcs > GPMC_CS_NUM)
255 if (nandcs > GPMC_CS_NUM) {
256 printk(KERN_INFO "NAND: Unable to find configuration "
261 if (nandcs < GPMC_CS_NUM) {
262 overo_nand_data.cs = nandcs;
263 overo_nand_data.gpmc_cs_baseaddr = (void *)
264 (gpmc_base_add + GPMC_CS0_BASE + nandcs * GPMC_CS_SIZE);
265 overo_nand_data.gpmc_baseaddr = (void *) (gpmc_base_add);
267 printk(KERN_INFO "Registering NAND on CS%d\n", nandcs);
268 if (platform_device_register(&overo_nand_device) < 0)
269 printk(KERN_ERR "Unable to register NAND device\n");
272 static struct omap_uart_config overo_uart_config __initdata = {
273 .enabled_uarts = ((1 << 0) | (1 << 1) | (1 << 2)),
276 static struct twl4030_hsmmc_info mmc[] = {
289 .ocr_mask = 0x00100000, /* 3.3V */
294 static struct regulator_consumer_supply overo_vmmc1_supply = {
298 static int overo_twl_gpio_setup(struct device *dev,
299 unsigned gpio, unsigned ngpio)
301 twl4030_mmc_init(mmc);
303 overo_vmmc1_supply.dev = mmc[0].dev;
308 static struct twl4030_gpio_platform_data overo_gpio_data = {
309 .gpio_base = OMAP_MAX_GPIO_LINES,
310 .irq_base = TWL4030_GPIO_IRQ_BASE,
311 .irq_end = TWL4030_GPIO_IRQ_END,
312 .setup = overo_twl_gpio_setup,
315 static struct twl4030_usb_data overo_usb_data = {
316 .usb_mode = T2_USB_MODE_ULPI,
319 static struct regulator_init_data overo_vmmc1 = {
323 .valid_modes_mask = REGULATOR_MODE_NORMAL
324 | REGULATOR_MODE_STANDBY,
325 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
326 | REGULATOR_CHANGE_MODE
327 | REGULATOR_CHANGE_STATUS,
329 .num_consumer_supplies = 1,
330 .consumer_supplies = &overo_vmmc1_supply,
333 /* mmc2 (WLAN) and Bluetooth don't use twl4030 regulators */
335 static struct twl4030_platform_data overo_twldata = {
336 .irq_base = TWL4030_IRQ_BASE,
337 .irq_end = TWL4030_IRQ_END,
338 .gpio = &overo_gpio_data,
339 .usb = &overo_usb_data,
340 .vmmc1 = &overo_vmmc1,
343 static struct i2c_board_info __initdata overo_i2c_boardinfo[] = {
345 I2C_BOARD_INFO("tps65950", 0x48),
346 .flags = I2C_CLIENT_WAKE,
347 .irq = INT_34XX_SYS_NIRQ,
348 .platform_data = &overo_twldata,
352 static int __init overo_i2c_init(void)
354 omap_register_i2c_bus(1, 2600, overo_i2c_boardinfo,
355 ARRAY_SIZE(overo_i2c_boardinfo));
356 /* i2c2 pins are used for gpio */
357 omap_register_i2c_bus(3, 400, NULL, 0);
361 static void __init overo_init_irq(void)
363 omap2_init_common_hw(mt46h32m32lf6_sdrc_params);
368 static struct platform_device overo_lcd_device = {
373 static struct omap_lcd_config overo_lcd_config __initdata = {
374 .ctrl_name = "internal",
377 static struct omap_board_config_kernel overo_config[] __initdata = {
378 { OMAP_TAG_UART, &overo_uart_config },
379 { OMAP_TAG_LCD, &overo_lcd_config },
382 static struct platform_device *overo_devices[] __initdata = {
386 static void __init overo_init(void)
389 platform_add_devices(overo_devices, ARRAY_SIZE(overo_devices));
390 omap_board_config = overo_config;
391 omap_board_config_size = ARRAY_SIZE(overo_config);
395 overo_ads7846_init();
396 overo_init_smsc911x();
398 if ((gpio_request(OVERO_GPIO_W2W_NRESET,
399 "OVERO_GPIO_W2W_NRESET") == 0) &&
400 (gpio_direction_output(OVERO_GPIO_W2W_NRESET, 1) == 0)) {
401 gpio_export(OVERO_GPIO_W2W_NRESET, 0);
402 gpio_set_value(OVERO_GPIO_W2W_NRESET, 0);
404 gpio_set_value(OVERO_GPIO_W2W_NRESET, 1);
406 printk(KERN_ERR "could not obtain gpio for "
407 "OVERO_GPIO_W2W_NRESET\n");
410 if ((gpio_request(OVERO_GPIO_BT_XGATE, "OVERO_GPIO_BT_XGATE") == 0) &&
411 (gpio_direction_output(OVERO_GPIO_BT_XGATE, 0) == 0))
412 gpio_export(OVERO_GPIO_BT_XGATE, 0);
414 printk(KERN_ERR "could not obtain gpio for OVERO_GPIO_BT_XGATE\n");
416 if ((gpio_request(OVERO_GPIO_BT_NRESET, "OVERO_GPIO_BT_NRESET") == 0) &&
417 (gpio_direction_output(OVERO_GPIO_BT_NRESET, 1) == 0)) {
418 gpio_export(OVERO_GPIO_BT_NRESET, 0);
419 gpio_set_value(OVERO_GPIO_BT_NRESET, 0);
421 gpio_set_value(OVERO_GPIO_BT_NRESET, 1);
423 printk(KERN_ERR "could not obtain gpio for "
424 "OVERO_GPIO_BT_NRESET\n");
427 if ((gpio_request(OVERO_GPIO_USBH_CPEN, "OVERO_GPIO_USBH_CPEN") == 0) &&
428 (gpio_direction_output(OVERO_GPIO_USBH_CPEN, 1) == 0))
429 gpio_export(OVERO_GPIO_USBH_CPEN, 0);
431 printk(KERN_ERR "could not obtain gpio for "
432 "OVERO_GPIO_USBH_CPEN\n");
434 if ((gpio_request(OVERO_GPIO_USBH_NRESET,
435 "OVERO_GPIO_USBH_NRESET") == 0) &&
436 (gpio_direction_output(OVERO_GPIO_USBH_NRESET, 1) == 0))
437 gpio_export(OVERO_GPIO_USBH_NRESET, 0);
439 printk(KERN_ERR "could not obtain gpio for "
440 "OVERO_GPIO_USBH_NRESET\n");
443 static void __init overo_map_io(void)
445 omap2_set_globals_343x();
446 omap2_map_common_io();
449 MACHINE_START(OVERO, "Gumstix Overo")
450 .phys_io = 0x48000000,
451 .io_pg_offst = ((0xd8000000) >> 18) & 0xfffc,
452 .boot_params = 0x80000100,
453 .map_io = overo_map_io,
454 .init_irq = overo_init_irq,
455 .init_machine = overo_init,
456 .timer = &omap_timer,