2 * linux/arch/arm/mach-omap2/board-omap3beagle.c
4 * Copyright (C) 2008 Texas Instruments
6 * Modified from mach-omap2/board-3430sdp.c
8 * Initial code: Syed Mohammed Khasim
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/platform_device.h>
18 #include <linux/delay.h>
19 #include <linux/err.h>
20 #include <linux/clk.h>
22 #include <linux/leds.h>
23 #include <linux/gpio.h>
24 #include <linux/input.h>
25 #include <linux/gpio_keys.h>
27 #include <linux/mtd/mtd.h>
28 #include <linux/mtd/partitions.h>
29 #include <linux/mtd/nand.h>
31 #include <linux/regulator/machine.h>
33 #include <mach/hardware.h>
34 #include <asm/mach-types.h>
35 #include <asm/mach/arch.h>
36 #include <asm/mach/map.h>
37 #include <asm/mach/flash.h>
39 #include <mach/board.h>
40 #include <mach/usb-musb.h>
41 #include <mach/usb-ehci.h>
42 #include <mach/common.h>
43 #include <mach/gpmc.h>
44 #include <mach/nand.h>
47 #include "twl4030-generic-scripts.h"
48 #include "mmc-twl4030.h"
51 #define GPMC_CS0_BASE 0x60
52 #define GPMC_CS_SIZE 0x30
54 #define NAND_BLOCK_SIZE SZ_128K
56 static struct mtd_partition omap3beagle_nand_partitions
[] = {
57 /* All the partition sizes are listed in terms of NAND block size */
61 .size
= 4 * NAND_BLOCK_SIZE
,
62 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
66 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x80000 */
67 .size
= 15 * NAND_BLOCK_SIZE
,
68 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
72 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x260000 */
73 .size
= 1 * NAND_BLOCK_SIZE
,
77 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x280000 */
78 .size
= 32 * NAND_BLOCK_SIZE
,
81 .name
= "File System",
82 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x680000 */
83 .size
= MTDPART_SIZ_FULL
,
87 static struct omap_nand_platform_data omap3beagle_nand_data
= {
88 .options
= NAND_BUSWIDTH_16
,
89 .parts
= omap3beagle_nand_partitions
,
90 .nr_parts
= ARRAY_SIZE(omap3beagle_nand_partitions
),
91 .dma_channel
= -1, /* disable DMA in OMAP NAND driver */
96 static struct resource omap3beagle_nand_resource
= {
97 .flags
= IORESOURCE_MEM
,
100 static struct platform_device omap3beagle_nand_device
= {
101 .name
= "omap2-nand",
104 .platform_data
= &omap3beagle_nand_data
,
107 .resource
= &omap3beagle_nand_resource
,
110 #include "sdram-micron-mt46h32m32lf-6.h"
112 static struct omap_uart_config omap3_beagle_uart_config __initdata
= {
113 .enabled_uarts
= ((1 << 0) | (1 << 1) | (1 << 2)),
116 static struct twl4030_usb_data beagle_usb_data
= {
117 .usb_mode
= T2_USB_MODE_ULPI
,
120 static struct twl4030_hsmmc_info mmc
[] = {
129 static struct gpio_led gpio_leds
[];
131 static int beagle_twl_gpio_setup(struct device
*dev
,
132 unsigned gpio
, unsigned ngpio
)
134 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
135 omap_cfg_reg(AH8_34XX_GPIO29
);
136 mmc
[0].gpio_cd
= gpio
+ 0;
137 twl4030_mmc_init(mmc
);
139 /* REVISIT: need ehci-omap hooks for external VBUS
140 * power switch and overcurrent detect
143 gpio_request(gpio
+ 1, "EHCI_nOC");
144 gpio_direction_input(gpio
+ 1);
146 /* TWL4030_GPIO_MAX + 0 == ledA, EHCI nEN_USB_PWR (out, active low) */
147 gpio_request(gpio
+ TWL4030_GPIO_MAX
, "nEN_USB_PWR");
148 gpio_direction_output(gpio
+ TWL4030_GPIO_MAX
, 1);
150 /* TWL4030_GPIO_MAX + 1 == ledB, PMU_STAT (out, active low LED) */
151 gpio_leds
[2].gpio
= gpio
+ TWL4030_GPIO_MAX
+ 1;
156 static struct twl4030_gpio_platform_data beagle_gpio_data
= {
157 .gpio_base
= OMAP_MAX_GPIO_LINES
,
158 .irq_base
= TWL4030_GPIO_IRQ_BASE
,
159 .irq_end
= TWL4030_GPIO_IRQ_END
,
162 .pulldowns
= BIT(2) | BIT(6) | BIT(7) | BIT(8) | BIT(13)
163 | BIT(15) | BIT(16) | BIT(17),
164 .setup
= beagle_twl_gpio_setup
,
167 /* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
168 static struct regulator_init_data beagle_vmmc1
= {
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
,
178 /* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
179 static struct regulator_init_data beagle_vsim
= {
181 .valid_modes_mask
= REGULATOR_MODE_NORMAL
182 | REGULATOR_MODE_STANDBY
,
183 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
184 | REGULATOR_CHANGE_MODE
185 | REGULATOR_CHANGE_STATUS
,
189 /* VDAC for DSS driving S-Video (8 mA unloaded, max 65 mA) */
190 static struct regulator_init_data beagle_vdac
= {
194 .valid_modes_mask
= REGULATOR_MODE_NORMAL
195 | REGULATOR_MODE_STANDBY
,
196 .valid_ops_mask
= REGULATOR_CHANGE_MODE
197 | REGULATOR_CHANGE_STATUS
,
201 static struct twl4030_platform_data beagle_twldata
= {
202 .irq_base
= TWL4030_IRQ_BASE
,
203 .irq_end
= TWL4030_IRQ_END
,
205 /* platform_data for children goes here */
206 .usb
= &beagle_usb_data
,
207 .gpio
= &beagle_gpio_data
,
208 .power
= GENERIC3430_T2SCRIPTS_DATA
,
209 .vmmc1
= &beagle_vmmc1
,
210 .vsim
= &beagle_vsim
,
211 .vdac
= &beagle_vdac
,
214 static struct i2c_board_info __initdata beagle_i2c_boardinfo
[] = {
216 I2C_BOARD_INFO("twl4030", 0x48),
217 .flags
= I2C_CLIENT_WAKE
,
218 .irq
= INT_34XX_SYS_NIRQ
,
219 .platform_data
= &beagle_twldata
,
223 static int __init
omap3_beagle_i2c_init(void)
225 omap_register_i2c_bus(1, 2600, beagle_i2c_boardinfo
,
226 ARRAY_SIZE(beagle_i2c_boardinfo
));
227 #ifdef CONFIG_I2C2_OMAP_BEAGLE
228 omap_register_i2c_bus(2, 400, NULL
, 0);
230 omap_register_i2c_bus(3, 400, NULL
, 0);
234 static void __init
omap3_beagle_init_irq(void)
236 omap2_init_common_hw(mt46h32m32lf6_sdrc_params
);
241 static struct platform_device omap3_beagle_lcd_device
= {
242 .name
= "omap3beagle_lcd",
246 static struct omap_lcd_config omap3_beagle_lcd_config __initdata
= {
247 .ctrl_name
= "internal",
250 static struct gpio_led gpio_leds
[] = {
252 .name
= "beagleboard::usr0",
253 .default_trigger
= "heartbeat",
257 .name
= "beagleboard::usr1",
258 .default_trigger
= "mmc0",
262 .name
= "beagleboard::pmu_stat",
263 .gpio
= -EINVAL
, /* gets replaced */
268 static struct gpio_led_platform_data gpio_led_info
= {
270 .num_leds
= ARRAY_SIZE(gpio_leds
),
273 static struct platform_device leds_gpio
= {
277 .platform_data
= &gpio_led_info
,
281 static struct gpio_keys_button gpio_buttons
[] = {
290 static struct gpio_keys_platform_data gpio_key_info
= {
291 .buttons
= gpio_buttons
,
292 .nbuttons
= ARRAY_SIZE(gpio_buttons
),
295 static struct platform_device keys_gpio
= {
299 .platform_data
= &gpio_key_info
,
303 static struct omap_board_config_kernel omap3_beagle_config
[] __initdata
= {
304 { OMAP_TAG_UART
, &omap3_beagle_uart_config
},
305 { OMAP_TAG_LCD
, &omap3_beagle_lcd_config
},
308 static struct platform_device
*omap3_beagle_devices
[] __initdata
= {
309 &omap3_beagle_lcd_device
,
314 static void __init
omap3beagle_flash_init(void)
317 u8 nandcs
= GPMC_CS_NUM
+ 1;
319 u32 gpmc_base_add
= OMAP34XX_GPMC_VIRT
;
321 /* find out the chip-select on which NAND exists */
322 while (cs
< GPMC_CS_NUM
) {
324 ret
= gpmc_cs_read_reg(cs
, GPMC_CS_CONFIG1
);
326 if ((ret
& 0xC00) == 0x800) {
327 printk(KERN_INFO
"Found NAND on CS%d\n", cs
);
328 if (nandcs
> GPMC_CS_NUM
)
334 if (nandcs
> GPMC_CS_NUM
) {
335 printk(KERN_INFO
"NAND: Unable to find configuration "
340 if (nandcs
< GPMC_CS_NUM
) {
341 omap3beagle_nand_data
.cs
= nandcs
;
342 omap3beagle_nand_data
.gpmc_cs_baseaddr
= (void *)
343 (gpmc_base_add
+ GPMC_CS0_BASE
+ nandcs
* GPMC_CS_SIZE
);
344 omap3beagle_nand_data
.gpmc_baseaddr
= (void *) (gpmc_base_add
);
346 printk(KERN_INFO
"Registering NAND on CS%d\n", nandcs
);
347 if (platform_device_register(&omap3beagle_nand_device
) < 0)
348 printk(KERN_ERR
"Unable to register NAND device\n");
352 static void __init
omap3_beagle_init(void)
354 omap3_beagle_i2c_init();
355 platform_add_devices(omap3_beagle_devices
,
356 ARRAY_SIZE(omap3_beagle_devices
));
357 omap_board_config
= omap3_beagle_config
;
358 omap_board_config_size
= ARRAY_SIZE(omap3_beagle_config
);
361 omap_cfg_reg(J25_34XX_GPIO170
);
362 gpio_request(170, "DVI_nPD");
363 /* REVISIT leave DVI powered down until it's needed ... */
364 gpio_direction_output(170, true);
368 omap3beagle_flash_init();
371 static void __init
omap3_beagle_map_io(void)
373 omap2_set_globals_343x();
374 omap2_map_common_io();
377 MACHINE_START(OMAP3_BEAGLE
, "OMAP3 Beagle Board")
378 /* Maintainer: Syed Mohammed Khasim - http://beagleboard.org */
379 .phys_io
= 0x48000000,
380 .io_pg_offst
= ((0xd8000000) >> 18) & 0xfffc,
381 .boot_params
= 0x80000100,
382 .map_io
= omap3_beagle_map_io
,
383 .init_irq
= omap3_beagle_init_irq
,
384 .init_machine
= omap3_beagle_init
,
385 .timer
= &omap_timer
,