2 * linux/arch/arm/mach-omap2/board-3430sdp.c
4 * Copyright (C) 2007 Texas Instruments
6 * Modified from mach-omap2/board-generic.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/input.h>
20 #include <linux/input/matrix_keypad.h>
21 #include <linux/spi/spi.h>
22 #include <linux/i2c/twl.h>
23 #include <linux/regulator/machine.h>
25 #include <linux/gpio.h>
26 #include <linux/mmc/host.h>
27 #include <linux/platform_data/spi-omap2-mcspi.h>
29 #include <asm/mach-types.h>
30 #include <asm/mach/arch.h>
31 #include <asm/mach/map.h>
34 #include <linux/omap-dma.h>
35 #include <video/omapdss.h>
36 #include <video/omap-panel-tfp410.h>
39 #include "gpmc-smc91x.h"
42 #include "board-flash.h"
44 #include "sdram-qimonda-hyb18m512160af-6.h"
48 #include "common-board-devices.h"
50 #define CONFIG_DISABLE_HFCLK 1
52 #define SDP3430_TS_GPIO_IRQ_SDPV1 3
53 #define SDP3430_TS_GPIO_IRQ_SDPV2 2
55 #define ENABLE_VAUX3_DEDICATED 0x03
56 #define ENABLE_VAUX3_DEV_GRP 0x20
58 #define TWL4030_MSECURE_GPIO 22
60 static uint32_t board_keymap
[] = {
94 static struct matrix_keymap_data board_map_data
= {
95 .keymap
= board_keymap
,
96 .keymap_size
= ARRAY_SIZE(board_keymap
),
99 static struct twl4030_keypad_data sdp3430_kp_data
= {
100 .keymap_data
= &board_map_data
,
106 #define SDP3430_LCD_PANEL_BACKLIGHT_GPIO 8
107 #define SDP3430_LCD_PANEL_ENABLE_GPIO 5
109 static struct gpio sdp3430_dss_gpios
[] __initdata
= {
110 {SDP3430_LCD_PANEL_ENABLE_GPIO
, GPIOF_OUT_INIT_LOW
, "LCD reset" },
111 {SDP3430_LCD_PANEL_BACKLIGHT_GPIO
, GPIOF_OUT_INIT_LOW
, "LCD Backlight"},
114 static void __init
sdp3430_display_init(void)
118 r
= gpio_request_array(sdp3430_dss_gpios
,
119 ARRAY_SIZE(sdp3430_dss_gpios
));
121 printk(KERN_ERR
"failed to get LCD control GPIOs\n");
125 static int sdp3430_panel_enable_lcd(struct omap_dss_device
*dssdev
)
127 gpio_direction_output(SDP3430_LCD_PANEL_ENABLE_GPIO
, 1);
128 gpio_direction_output(SDP3430_LCD_PANEL_BACKLIGHT_GPIO
, 1);
133 static void sdp3430_panel_disable_lcd(struct omap_dss_device
*dssdev
)
135 gpio_direction_output(SDP3430_LCD_PANEL_ENABLE_GPIO
, 0);
136 gpio_direction_output(SDP3430_LCD_PANEL_BACKLIGHT_GPIO
, 0);
139 static int sdp3430_panel_enable_tv(struct omap_dss_device
*dssdev
)
144 static void sdp3430_panel_disable_tv(struct omap_dss_device
*dssdev
)
149 static struct omap_dss_device sdp3430_lcd_device
= {
151 .driver_name
= "sharp_ls_panel",
152 .type
= OMAP_DISPLAY_TYPE_DPI
,
153 .phy
.dpi
.data_lines
= 16,
154 .platform_enable
= sdp3430_panel_enable_lcd
,
155 .platform_disable
= sdp3430_panel_disable_lcd
,
158 static struct tfp410_platform_data dvi_panel
= {
159 .power_down_gpio
= -1,
163 static struct omap_dss_device sdp3430_dvi_device
= {
165 .type
= OMAP_DISPLAY_TYPE_DPI
,
166 .driver_name
= "tfp410",
168 .phy
.dpi
.data_lines
= 24,
171 static struct omap_dss_device sdp3430_tv_device
= {
173 .driver_name
= "venc",
174 .type
= OMAP_DISPLAY_TYPE_VENC
,
175 .phy
.venc
.type
= OMAP_DSS_VENC_TYPE_SVIDEO
,
176 .platform_enable
= sdp3430_panel_enable_tv
,
177 .platform_disable
= sdp3430_panel_disable_tv
,
181 static struct omap_dss_device
*sdp3430_dss_devices
[] = {
187 static struct omap_dss_board_info sdp3430_dss_data
= {
188 .num_devices
= ARRAY_SIZE(sdp3430_dss_devices
),
189 .devices
= sdp3430_dss_devices
,
190 .default_device
= &sdp3430_lcd_device
,
193 static struct omap2_hsmmc_info mmc
[] = {
196 /* 8 bits (default) requires S6.3 == ON,
197 * so the SIM card isn't used; else 4 bits.
199 .caps
= MMC_CAP_4_BIT_DATA
| MMC_CAP_8_BIT_DATA
,
205 .caps
= MMC_CAP_4_BIT_DATA
| MMC_CAP_8_BIT_DATA
,
212 static int sdp3430_twl_gpio_setup(struct device
*dev
,
213 unsigned gpio
, unsigned ngpio
)
215 /* gpio + 0 is "mmc0_cd" (input/IRQ),
216 * gpio + 1 is "mmc1_cd" (input/IRQ)
218 mmc
[0].gpio_cd
= gpio
+ 0;
219 mmc
[1].gpio_cd
= gpio
+ 1;
220 omap_hsmmc_late_init(mmc
);
222 /* gpio + 7 is "sub_lcd_en_bkl" (output/PWM1) */
223 gpio_request_one(gpio
+ 7, GPIOF_OUT_INIT_LOW
, "sub_lcd_en_bkl");
225 /* gpio + 15 is "sub_lcd_nRST" (output) */
226 gpio_request_one(gpio
+ 15, GPIOF_OUT_INIT_LOW
, "sub_lcd_nRST");
231 static struct twl4030_gpio_platform_data sdp3430_gpio_data
= {
232 .pulldowns
= BIT(2) | BIT(6) | BIT(8) | BIT(13)
234 .setup
= sdp3430_twl_gpio_setup
,
237 /* regulator consumer mappings */
240 static struct regulator_consumer_supply sdp3430_vaux3_supplies
[] = {
241 REGULATOR_SUPPLY("vcc", "spi1.0"),
244 static struct regulator_consumer_supply sdp3430_vmmc1_supplies
[] = {
245 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
248 static struct regulator_consumer_supply sdp3430_vsim_supplies
[] = {
249 REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.0"),
252 static struct regulator_consumer_supply sdp3430_vmmc2_supplies
[] = {
253 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1"),
257 * Apply all the fixed voltages since most versions of U-Boot
258 * don't bother with that initialization.
261 /* VAUX1 for mainboard (irda and sub-lcd) */
262 static struct regulator_init_data sdp3430_vaux1
= {
267 .valid_modes_mask
= REGULATOR_MODE_NORMAL
268 | REGULATOR_MODE_STANDBY
,
269 .valid_ops_mask
= REGULATOR_CHANGE_MODE
270 | REGULATOR_CHANGE_STATUS
,
274 /* VAUX2 for camera module */
275 static struct regulator_init_data sdp3430_vaux2
= {
280 .valid_modes_mask
= REGULATOR_MODE_NORMAL
281 | REGULATOR_MODE_STANDBY
,
282 .valid_ops_mask
= REGULATOR_CHANGE_MODE
283 | REGULATOR_CHANGE_STATUS
,
287 /* VAUX3 for LCD board */
288 static struct regulator_init_data sdp3430_vaux3
= {
293 .valid_modes_mask
= REGULATOR_MODE_NORMAL
294 | REGULATOR_MODE_STANDBY
,
295 .valid_ops_mask
= REGULATOR_CHANGE_MODE
296 | REGULATOR_CHANGE_STATUS
,
298 .num_consumer_supplies
= ARRAY_SIZE(sdp3430_vaux3_supplies
),
299 .consumer_supplies
= sdp3430_vaux3_supplies
,
302 /* VAUX4 for OMAP VDD_CSI2 (camera) */
303 static struct regulator_init_data sdp3430_vaux4
= {
308 .valid_modes_mask
= REGULATOR_MODE_NORMAL
309 | REGULATOR_MODE_STANDBY
,
310 .valid_ops_mask
= REGULATOR_CHANGE_MODE
311 | REGULATOR_CHANGE_STATUS
,
315 /* VMMC1 for OMAP VDD_MMC1 (i/o) and MMC1 card */
316 static struct regulator_init_data sdp3430_vmmc1
= {
320 .valid_modes_mask
= REGULATOR_MODE_NORMAL
321 | REGULATOR_MODE_STANDBY
,
322 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
323 | REGULATOR_CHANGE_MODE
324 | REGULATOR_CHANGE_STATUS
,
326 .num_consumer_supplies
= ARRAY_SIZE(sdp3430_vmmc1_supplies
),
327 .consumer_supplies
= sdp3430_vmmc1_supplies
,
330 /* VMMC2 for MMC2 card */
331 static struct regulator_init_data sdp3430_vmmc2
= {
336 .valid_modes_mask
= REGULATOR_MODE_NORMAL
337 | REGULATOR_MODE_STANDBY
,
338 .valid_ops_mask
= REGULATOR_CHANGE_MODE
339 | REGULATOR_CHANGE_STATUS
,
341 .num_consumer_supplies
= ARRAY_SIZE(sdp3430_vmmc2_supplies
),
342 .consumer_supplies
= sdp3430_vmmc2_supplies
,
345 /* VSIM for OMAP VDD_MMC1A (i/o for DAT4..DAT7) */
346 static struct regulator_init_data sdp3430_vsim
= {
350 .valid_modes_mask
= REGULATOR_MODE_NORMAL
351 | REGULATOR_MODE_STANDBY
,
352 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
353 | REGULATOR_CHANGE_MODE
354 | REGULATOR_CHANGE_STATUS
,
356 .num_consumer_supplies
= ARRAY_SIZE(sdp3430_vsim_supplies
),
357 .consumer_supplies
= sdp3430_vsim_supplies
,
360 static struct twl4030_platform_data sdp3430_twldata
= {
361 /* platform_data for children goes here */
362 .gpio
= &sdp3430_gpio_data
,
363 .keypad
= &sdp3430_kp_data
,
365 .vaux1
= &sdp3430_vaux1
,
366 .vaux2
= &sdp3430_vaux2
,
367 .vaux3
= &sdp3430_vaux3
,
368 .vaux4
= &sdp3430_vaux4
,
369 .vmmc1
= &sdp3430_vmmc1
,
370 .vmmc2
= &sdp3430_vmmc2
,
371 .vsim
= &sdp3430_vsim
,
374 static int __init
omap3430_i2c_init(void)
376 /* i2c1 for PMIC only */
377 omap3_pmic_get_config(&sdp3430_twldata
,
378 TWL_COMMON_PDATA_USB
| TWL_COMMON_PDATA_BCI
|
379 TWL_COMMON_PDATA_MADC
| TWL_COMMON_PDATA_AUDIO
,
380 TWL_COMMON_REGULATOR_VDAC
| TWL_COMMON_REGULATOR_VPLL2
);
381 sdp3430_twldata
.vdac
->constraints
.apply_uV
= true;
382 sdp3430_twldata
.vpll2
->constraints
.apply_uV
= true;
383 sdp3430_twldata
.vpll2
->constraints
.name
= "VDVI";
385 omap3_pmic_init("twl4030", &sdp3430_twldata
);
387 /* i2c2 on camera connector (for sensor control) and optional isp1301 */
388 omap_register_i2c_bus(2, 400, NULL
, 0);
389 /* i2c3 on display connector (for DVI, tfp410) */
390 omap_register_i2c_bus(3, 400, NULL
, 0);
394 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
396 static struct omap_smc91x_platform_data board_smc91x_data
= {
398 .flags
= GPMC_MUX_ADD_DATA
| GPMC_TIMINGS_SMC91C96
|
399 IORESOURCE_IRQ_LOWLEVEL
,
402 static void __init
board_smc91x_init(void)
404 if (omap_rev() > OMAP3430_REV_ES1_0
)
405 board_smc91x_data
.gpio_irq
= 6;
407 board_smc91x_data
.gpio_irq
= 29;
409 gpmc_smc91x_init(&board_smc91x_data
);
414 static inline void board_smc91x_init(void)
420 static void enable_board_wakeup_source(void)
422 /* T2 interrupt line (keypad) */
423 omap_mux_init_signal("sys_nirq",
424 OMAP_WAKEUP_EN
| OMAP_PIN_INPUT_PULLUP
);
427 static const struct usbhs_omap_board_data usbhs_bdata __initconst
= {
429 .port_mode
[0] = OMAP_EHCI_PORT_MODE_PHY
,
430 .port_mode
[1] = OMAP_EHCI_PORT_MODE_PHY
,
431 .port_mode
[2] = OMAP_USBHS_PORT_MODE_UNUSED
,
434 .reset_gpio_port
[0] = 57,
435 .reset_gpio_port
[1] = 61,
436 .reset_gpio_port
[2] = -EINVAL
439 #ifdef CONFIG_OMAP_MUX
440 static struct omap_board_mux board_mux
[] __initdata
= {
441 { .reg_offset
= OMAP_MUX_TERMINATOR
},
444 #define board_mux NULL
448 * SDP3430 V2 Board CS organization
449 * Different from SDP3430 V1. Now 4 switches used to specify CS
451 * See also the Switch S8 settings in the comments.
453 static char chip_sel_3430
[][GPMC_CS_NUM
] = {
454 {PDC_NOR
, PDC_NAND
, PDC_ONENAND
, DBG_MPDB
, 0, 0, 0, 0}, /* S8:1111 */
455 {PDC_ONENAND
, PDC_NAND
, PDC_NOR
, DBG_MPDB
, 0, 0, 0, 0}, /* S8:1110 */
456 {PDC_NAND
, PDC_ONENAND
, PDC_NOR
, DBG_MPDB
, 0, 0, 0, 0}, /* S8:1101 */
459 static struct mtd_partition sdp_nor_partitions
[] = {
460 /* bootloader (U-Boot, etc) in first sector */
462 .name
= "Bootloader-NOR",
465 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
467 /* bootloader params in the next sector */
469 .name
= "Params-NOR",
470 .offset
= MTDPART_OFS_APPEND
,
476 .name
= "Kernel-NOR",
477 .offset
= MTDPART_OFS_APPEND
,
483 .name
= "Filesystem-NOR",
484 .offset
= MTDPART_OFS_APPEND
,
485 .size
= MTDPART_SIZ_FULL
,
490 static struct mtd_partition sdp_onenand_partitions
[] = {
492 .name
= "X-Loader-OneNAND",
494 .size
= 4 * (64 * 2048),
495 .mask_flags
= MTD_WRITEABLE
/* force read-only */
498 .name
= "U-Boot-OneNAND",
499 .offset
= MTDPART_OFS_APPEND
,
500 .size
= 2 * (64 * 2048),
501 .mask_flags
= MTD_WRITEABLE
/* force read-only */
504 .name
= "U-Boot Environment-OneNAND",
505 .offset
= MTDPART_OFS_APPEND
,
506 .size
= 1 * (64 * 2048),
509 .name
= "Kernel-OneNAND",
510 .offset
= MTDPART_OFS_APPEND
,
511 .size
= 16 * (64 * 2048),
514 .name
= "File System-OneNAND",
515 .offset
= MTDPART_OFS_APPEND
,
516 .size
= MTDPART_SIZ_FULL
,
520 static struct mtd_partition sdp_nand_partitions
[] = {
521 /* All the partition sizes are listed in terms of NAND block size */
523 .name
= "X-Loader-NAND",
525 .size
= 4 * (64 * 2048),
526 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
529 .name
= "U-Boot-NAND",
530 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x80000 */
531 .size
= 10 * (64 * 2048),
532 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
535 .name
= "Boot Env-NAND",
537 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x1c0000 */
538 .size
= 6 * (64 * 2048),
541 .name
= "Kernel-NAND",
542 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x280000 */
543 .size
= 40 * (64 * 2048),
546 .name
= "File System - NAND",
547 .size
= MTDPART_SIZ_FULL
,
548 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x780000 */
552 static struct flash_partitions sdp_flash_partitions
[] = {
554 .parts
= sdp_nor_partitions
,
555 .nr_parts
= ARRAY_SIZE(sdp_nor_partitions
),
558 .parts
= sdp_onenand_partitions
,
559 .nr_parts
= ARRAY_SIZE(sdp_onenand_partitions
),
562 .parts
= sdp_nand_partitions
,
563 .nr_parts
= ARRAY_SIZE(sdp_nand_partitions
),
567 static void __init
omap_3430sdp_init(void)
571 omap3_mux_init(board_mux
, OMAP_PACKAGE_CBB
);
572 omap_hsmmc_init(mmc
);
574 omap_display_init(&sdp3430_dss_data
);
575 if (omap_rev() > OMAP3430_REV_ES1_0
)
576 gpio_pendown
= SDP3430_TS_GPIO_IRQ_SDPV2
;
578 gpio_pendown
= SDP3430_TS_GPIO_IRQ_SDPV1
;
579 omap_ads7846_init(1, gpio_pendown
, 310, NULL
);
581 omap_sdrc_init(hyb18m512160af6_sdrc_params
, NULL
);
584 board_flash_init(sdp_flash_partitions
, chip_sel_3430
, 0);
585 sdp3430_display_init();
586 enable_board_wakeup_source();
587 usbhs_init(&usbhs_bdata
);
590 MACHINE_START(OMAP_3430SDP
, "OMAP3430 3430SDP board")
591 /* Maintainer: Syed Khasim - Texas Instruments Inc */
592 .atag_offset
= 0x100,
593 .reserve
= omap_reserve
,
594 .map_io
= omap3_map_io
,
595 .init_early
= omap3430_init_early
,
596 .init_irq
= omap3_init_irq
,
597 .handle_irq
= omap3_intc_handle_irq
,
598 .init_machine
= omap_3430sdp_init
,
599 .init_late
= omap3430_init_late
,
600 .timer
= &omap3_timer
,
601 .restart
= omap3xxx_restart
,