2 * linux/arch/arm/mach-omap2/board-omap3touchbook.c
4 * Copyright (C) 2009 Always Innovating
6 * Modified from mach-omap2/board-omap3beagleboard.c
8 * Initial code: Grégoire Gentil, Tim Yamin
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 <plat/mcspi.h>
32 #include <linux/spi/spi.h>
34 #include <linux/spi/ads7846.h>
36 #include <linux/regulator/machine.h>
37 #include <linux/i2c/twl.h>
39 #include <mach/hardware.h>
40 #include <asm/mach-types.h>
41 #include <asm/mach/arch.h>
42 #include <asm/mach/map.h>
43 #include <asm/mach/flash.h>
45 #include <plat/board.h>
46 #include <plat/common.h>
47 #include <plat/gpmc.h>
48 #include <plat/nand.h>
50 #include <plat/timer-gp.h>
53 #include "mmc-twl4030.h"
55 #include <asm/setup.h>
57 #define GPMC_CS0_BASE 0x60
58 #define GPMC_CS_SIZE 0x30
60 #define NAND_BLOCK_SIZE SZ_128K
62 #define OMAP3_AC_GPIO 136
63 #define OMAP3_TS_GPIO 162
64 #define TB_BL_PWM_TIMER 9
65 #define TB_KILL_POWER_GPIO 168
67 unsigned long touchbook_revision
;
69 static struct mtd_partition omap3touchbook_nand_partitions
[] = {
70 /* All the partition sizes are listed in terms of NAND block size */
74 .size
= 4 * NAND_BLOCK_SIZE
,
75 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
79 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x80000 */
80 .size
= 15 * NAND_BLOCK_SIZE
,
81 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
85 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x260000 */
86 .size
= 1 * NAND_BLOCK_SIZE
,
90 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x280000 */
91 .size
= 32 * NAND_BLOCK_SIZE
,
94 .name
= "File System",
95 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x680000 */
96 .size
= MTDPART_SIZ_FULL
,
100 static struct omap_nand_platform_data omap3touchbook_nand_data
= {
101 .options
= NAND_BUSWIDTH_16
,
102 .parts
= omap3touchbook_nand_partitions
,
103 .nr_parts
= ARRAY_SIZE(omap3touchbook_nand_partitions
),
104 .dma_channel
= -1, /* disable DMA in OMAP NAND driver */
109 static struct resource omap3touchbook_nand_resource
= {
110 .flags
= IORESOURCE_MEM
,
113 static struct platform_device omap3touchbook_nand_device
= {
114 .name
= "omap2-nand",
117 .platform_data
= &omap3touchbook_nand_data
,
120 .resource
= &omap3touchbook_nand_resource
,
123 #include "sdram-micron-mt46h32m32lf-6.h"
125 static struct twl4030_hsmmc_info mmc
[] = {
134 static struct platform_device omap3_touchbook_lcd_device
= {
135 .name
= "omap3touchbook_lcd",
139 static struct omap_lcd_config omap3_touchbook_lcd_config __initdata
= {
140 .ctrl_name
= "internal",
143 static struct regulator_consumer_supply touchbook_vmmc1_supply
= {
147 static struct regulator_consumer_supply touchbook_vsim_supply
= {
148 .supply
= "vmmc_aux",
151 static struct gpio_led gpio_leds
[];
153 static int touchbook_twl_gpio_setup(struct device
*dev
,
154 unsigned gpio
, unsigned ngpio
)
156 if (system_rev
>= 0x20 && system_rev
<= 0x34301000) {
157 omap_mux_init_gpio(23, OMAP_PIN_INPUT
);
160 omap_mux_init_gpio(29, OMAP_PIN_INPUT
);
162 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
163 mmc
[0].gpio_cd
= gpio
+ 0;
164 twl4030_mmc_init(mmc
);
166 /* link regulators to MMC adapters */
167 touchbook_vmmc1_supply
.dev
= mmc
[0].dev
;
168 touchbook_vsim_supply
.dev
= mmc
[0].dev
;
170 /* REVISIT: need ehci-omap hooks for external VBUS
171 * power switch and overcurrent detect
174 gpio_request(gpio
+ 1, "EHCI_nOC");
175 gpio_direction_input(gpio
+ 1);
177 /* TWL4030_GPIO_MAX + 0 == ledA, EHCI nEN_USB_PWR (out, active low) */
178 gpio_request(gpio
+ TWL4030_GPIO_MAX
, "nEN_USB_PWR");
179 gpio_direction_output(gpio
+ TWL4030_GPIO_MAX
, 0);
181 /* TWL4030_GPIO_MAX + 1 == ledB, PMU_STAT (out, active low LED) */
182 gpio_leds
[2].gpio
= gpio
+ TWL4030_GPIO_MAX
+ 1;
187 static struct twl4030_gpio_platform_data touchbook_gpio_data
= {
188 .gpio_base
= OMAP_MAX_GPIO_LINES
,
189 .irq_base
= TWL4030_GPIO_IRQ_BASE
,
190 .irq_end
= TWL4030_GPIO_IRQ_END
,
193 .pulldowns
= BIT(2) | BIT(6) | BIT(7) | BIT(8) | BIT(13)
194 | BIT(15) | BIT(16) | BIT(17),
195 .setup
= touchbook_twl_gpio_setup
,
198 static struct regulator_consumer_supply touchbook_vdac_supply
= {
200 .dev
= &omap3_touchbook_lcd_device
.dev
,
203 static struct regulator_consumer_supply touchbook_vdvi_supply
= {
205 .dev
= &omap3_touchbook_lcd_device
.dev
,
208 /* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
209 static struct regulator_init_data touchbook_vmmc1
= {
213 .valid_modes_mask
= REGULATOR_MODE_NORMAL
214 | REGULATOR_MODE_STANDBY
,
215 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
216 | REGULATOR_CHANGE_MODE
217 | REGULATOR_CHANGE_STATUS
,
219 .num_consumer_supplies
= 1,
220 .consumer_supplies
= &touchbook_vmmc1_supply
,
223 /* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
224 static struct regulator_init_data touchbook_vsim
= {
228 .valid_modes_mask
= REGULATOR_MODE_NORMAL
229 | REGULATOR_MODE_STANDBY
,
230 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
231 | REGULATOR_CHANGE_MODE
232 | REGULATOR_CHANGE_STATUS
,
234 .num_consumer_supplies
= 1,
235 .consumer_supplies
= &touchbook_vsim_supply
,
238 /* VDAC for DSS driving S-Video (8 mA unloaded, max 65 mA) */
239 static struct regulator_init_data touchbook_vdac
= {
243 .valid_modes_mask
= REGULATOR_MODE_NORMAL
244 | REGULATOR_MODE_STANDBY
,
245 .valid_ops_mask
= REGULATOR_CHANGE_MODE
246 | REGULATOR_CHANGE_STATUS
,
248 .num_consumer_supplies
= 1,
249 .consumer_supplies
= &touchbook_vdac_supply
,
252 /* VPLL2 for digital video outputs */
253 static struct regulator_init_data touchbook_vpll2
= {
258 .valid_modes_mask
= REGULATOR_MODE_NORMAL
259 | REGULATOR_MODE_STANDBY
,
260 .valid_ops_mask
= REGULATOR_CHANGE_MODE
261 | REGULATOR_CHANGE_STATUS
,
263 .num_consumer_supplies
= 1,
264 .consumer_supplies
= &touchbook_vdvi_supply
,
267 static struct twl4030_usb_data touchbook_usb_data
= {
268 .usb_mode
= T2_USB_MODE_ULPI
,
271 static struct twl4030_codec_audio_data touchbook_audio_data
= {
272 .audio_mclk
= 26000000,
275 static struct twl4030_codec_data touchbook_codec_data
= {
276 .audio_mclk
= 26000000,
277 .audio
= &touchbook_audio_data
,
280 static struct twl4030_platform_data touchbook_twldata
= {
281 .irq_base
= TWL4030_IRQ_BASE
,
282 .irq_end
= TWL4030_IRQ_END
,
284 /* platform_data for children goes here */
285 .usb
= &touchbook_usb_data
,
286 .gpio
= &touchbook_gpio_data
,
287 .codec
= &touchbook_codec_data
,
288 .vmmc1
= &touchbook_vmmc1
,
289 .vsim
= &touchbook_vsim
,
290 .vdac
= &touchbook_vdac
,
291 .vpll2
= &touchbook_vpll2
,
294 static struct i2c_board_info __initdata touchbook_i2c_boardinfo
[] = {
296 I2C_BOARD_INFO("twl4030", 0x48),
297 .flags
= I2C_CLIENT_WAKE
,
298 .irq
= INT_34XX_SYS_NIRQ
,
299 .platform_data
= &touchbook_twldata
,
303 static struct i2c_board_info __initdata touchBook_i2c_boardinfo
[] = {
305 I2C_BOARD_INFO("bq27200", 0x55),
309 static int __init
omap3_touchbook_i2c_init(void)
311 /* Standard TouchBook bus */
312 omap_register_i2c_bus(1, 2600, touchbook_i2c_boardinfo
,
313 ARRAY_SIZE(touchbook_i2c_boardinfo
));
315 /* Additional TouchBook bus */
316 omap_register_i2c_bus(3, 100, touchBook_i2c_boardinfo
,
317 ARRAY_SIZE(touchBook_i2c_boardinfo
));
322 static void __init
omap3_ads7846_init(void)
324 if (gpio_request(OMAP3_TS_GPIO
, "ads7846_pen_down")) {
325 printk(KERN_ERR
"Failed to request GPIO %d for "
326 "ads7846 pen down IRQ\n", OMAP3_TS_GPIO
);
330 gpio_direction_input(OMAP3_TS_GPIO
);
331 omap_set_gpio_debounce(OMAP3_TS_GPIO
, 1);
332 omap_set_gpio_debounce_time(OMAP3_TS_GPIO
, 0xa);
335 static struct ads7846_platform_data ads7846_config
= {
345 .gpio_pendown
= OMAP3_TS_GPIO
,
349 static struct omap2_mcspi_device_config ads7846_mcspi_config
= {
351 .single_channel
= 1, /* 0: slave, 1: master */
354 static struct spi_board_info omap3_ads7846_spi_board_info
[] __initdata
= {
356 .modalias
= "ads7846",
359 .max_speed_hz
= 1500000,
360 .controller_data
= &ads7846_mcspi_config
,
361 .irq
= OMAP_GPIO_IRQ(OMAP3_TS_GPIO
),
362 .platform_data
= &ads7846_config
,
366 static struct gpio_led gpio_leds
[] = {
368 .name
= "touchbook::usr0",
369 .default_trigger
= "heartbeat",
373 .name
= "touchbook::usr1",
374 .default_trigger
= "mmc0",
378 .name
= "touchbook::pmu_stat",
379 .gpio
= -EINVAL
, /* gets replaced */
384 static struct gpio_led_platform_data gpio_led_info
= {
386 .num_leds
= ARRAY_SIZE(gpio_leds
),
389 static struct platform_device leds_gpio
= {
393 .platform_data
= &gpio_led_info
,
397 static struct gpio_keys_button gpio_buttons
[] = {
412 static struct gpio_keys_platform_data gpio_key_info
= {
413 .buttons
= gpio_buttons
,
414 .nbuttons
= ARRAY_SIZE(gpio_buttons
),
417 static struct platform_device keys_gpio
= {
421 .platform_data
= &gpio_key_info
,
425 static struct omap_board_config_kernel omap3_touchbook_config
[] __initdata
= {
426 { OMAP_TAG_LCD
, &omap3_touchbook_lcd_config
},
429 #ifdef CONFIG_OMAP_MUX
430 static struct omap_board_mux board_mux
[] __initdata
= {
431 { .reg_offset
= OMAP_MUX_TERMINATOR
},
434 #define board_mux NULL
437 static void __init
omap3_touchbook_init_irq(void)
439 omap3_mux_init(board_mux
, OMAP_PACKAGE_CBB
);
440 omap_board_config
= omap3_touchbook_config
;
441 omap_board_config_size
= ARRAY_SIZE(omap3_touchbook_config
);
442 omap2_init_common_hw(mt46h32m32lf6_sdrc_params
,
443 mt46h32m32lf6_sdrc_params
);
445 #ifdef CONFIG_OMAP_32K_TIMER
446 omap2_gp_clockevent_set_gptimer(12);
451 static struct platform_device
*omap3_touchbook_devices
[] __initdata
= {
452 &omap3_touchbook_lcd_device
,
457 static void __init
omap3touchbook_flash_init(void)
460 u8 nandcs
= GPMC_CS_NUM
+ 1;
462 u32 gpmc_base_add
= OMAP34XX_GPMC_VIRT
;
464 /* find out the chip-select on which NAND exists */
465 while (cs
< GPMC_CS_NUM
) {
467 ret
= gpmc_cs_read_reg(cs
, GPMC_CS_CONFIG1
);
469 if ((ret
& 0xC00) == 0x800) {
470 printk(KERN_INFO
"Found NAND on CS%d\n", cs
);
471 if (nandcs
> GPMC_CS_NUM
)
477 if (nandcs
> GPMC_CS_NUM
) {
478 printk(KERN_INFO
"NAND: Unable to find configuration "
483 if (nandcs
< GPMC_CS_NUM
) {
484 omap3touchbook_nand_data
.cs
= nandcs
;
485 omap3touchbook_nand_data
.gpmc_cs_baseaddr
= (void *)
486 (gpmc_base_add
+ GPMC_CS0_BASE
+ nandcs
* GPMC_CS_SIZE
);
487 omap3touchbook_nand_data
.gpmc_baseaddr
=
488 (void *) (gpmc_base_add
);
490 printk(KERN_INFO
"Registering NAND on CS%d\n", nandcs
);
491 if (platform_device_register(&omap3touchbook_nand_device
) < 0)
492 printk(KERN_ERR
"Unable to register NAND device\n");
496 static struct ehci_hcd_omap_platform_data ehci_pdata __initconst
= {
498 .port_mode
[0] = EHCI_HCD_OMAP_MODE_PHY
,
499 .port_mode
[1] = EHCI_HCD_OMAP_MODE_PHY
,
500 .port_mode
[2] = EHCI_HCD_OMAP_MODE_UNKNOWN
,
503 .reset_gpio_port
[0] = -EINVAL
,
504 .reset_gpio_port
[1] = 147,
505 .reset_gpio_port
[2] = -EINVAL
508 static void omap3_touchbook_poweroff(void)
512 r
= gpio_request(TB_KILL_POWER_GPIO
, "DVI reset");
514 printk(KERN_ERR
"Unable to get kill power GPIO\n");
518 gpio_direction_output(TB_KILL_POWER_GPIO
, 0);
521 static void __init
early_touchbook_revision(char **p
)
526 strict_strtoul(*p
, 10, &touchbook_revision
);
528 __early_param("tbr=", early_touchbook_revision
);
530 static void __init
omap3_touchbook_init(void)
532 pm_power_off
= omap3_touchbook_poweroff
;
534 omap3_touchbook_i2c_init();
535 platform_add_devices(omap3_touchbook_devices
,
536 ARRAY_SIZE(omap3_touchbook_devices
));
539 omap_mux_init_gpio(170, OMAP_PIN_INPUT
);
540 gpio_request(176, "DVI_nPD");
541 /* REVISIT leave DVI powered down until it's needed ... */
542 gpio_direction_output(176, true);
544 /* Touchscreen and accelerometer */
545 spi_register_board_info(omap3_ads7846_spi_board_info
,
546 ARRAY_SIZE(omap3_ads7846_spi_board_info
));
547 omap3_ads7846_init();
549 usb_ehci_init(&ehci_pdata
);
550 omap3touchbook_flash_init();
552 /* Ensure SDRC pins are mux'd for self-refresh */
553 omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT
);
554 omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT
);
557 static void __init
omap3_touchbook_map_io(void)
559 omap2_set_globals_343x();
560 omap2_map_common_io();
563 MACHINE_START(TOUCHBOOK
, "OMAP3 touchbook Board")
564 /* Maintainer: Gregoire Gentil - http://www.alwaysinnovating.com */
565 .phys_io
= 0x48000000,
566 .io_pg_offst
= ((0xd8000000) >> 18) & 0xfffc,
567 .boot_params
= 0x80000100,
568 .map_io
= omap3_touchbook_map_io
,
569 .init_irq
= omap3_touchbook_init_irq
,
570 .init_machine
= omap3_touchbook_init
,
571 .timer
= &omap_timer
,