2 * Board support file for OMAP4430 SDP.
4 * Copyright (C) 2009 Texas Instruments
6 * Author: Santosh Shilimkar <santosh.shilimkar@ti.com>
8 * Based on mach-omap2/board-3430sdp.c
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>
19 #include <linux/gpio.h>
20 #include <linux/usb/otg.h>
21 #include <linux/spi/spi.h>
22 #include <linux/i2c/twl.h>
23 #include <linux/gpio_keys.h>
24 #include <linux/regulator/machine.h>
25 #include <linux/leds.h>
26 #include <linux/leds_pwm.h>
28 #include <mach/hardware.h>
29 #include <mach/omap4-common.h>
30 #include <asm/mach-types.h>
31 #include <asm/mach/arch.h>
32 #include <asm/mach/map.h>
34 #include <plat/board.h>
35 #include <plat/common.h>
38 #include <plat/omap4-keypad.h>
39 #include <plat/display.h>
46 #define ETH_KS8851_IRQ 34
47 #define ETH_KS8851_POWER_ON 48
48 #define ETH_KS8851_QUART 138
49 #define OMAP4_SFH7741_SENSOR_OUTPUT_GPIO 184
50 #define OMAP4_SFH7741_ENABLE_GPIO 188
51 #define HDMI_GPIO_HPD 60 /* Hot plug pin for HDMI */
52 #define HDMI_GPIO_LS_OE 41 /* Level shifter for HDMI */
54 static const int sdp4430_keymap[] = {
60 KEY(0, 5, KEY_UNKNOWN),
62 KEY(0, 7, KEY_LEFTSHIFT),
69 KEY(1, 5, KEY_UNKNOWN),
78 KEY(2, 5, KEY_UNKNOWN),
80 KEY(2, 7, KEY_CAPSLOCK),
83 KEY(3, 1, KEY_KPPLUS),
87 KEY(3, 5, KEY_UNKNOWN),
95 KEY(4, 4, KEY_VOLUMEUP),
96 KEY(4, 5, KEY_UNKNOWN),
105 KEY(5, 5, KEY_VOLUMEDOWN),
107 KEY(5, 7, KEY_RIGHT),
113 KEY(6, 4, KEY_BACKSPACE),
114 KEY(6, 5, KEY_UNKNOWN),
118 KEY(7, 0, KEY_PROG1),
119 KEY(7, 1, KEY_PROG2),
120 KEY(7, 2, KEY_PROG3),
121 KEY(7, 3, KEY_PROG4),
123 KEY(7, 5, KEY_UNKNOWN),
128 static struct matrix_keymap_data sdp4430_keymap_data = {
129 .keymap = sdp4430_keymap,
130 .keymap_size = ARRAY_SIZE(sdp4430_keymap),
133 static struct omap4_keypad_platform_data sdp4430_keypad_data = {
134 .keymap_data = &sdp4430_keymap_data,
138 static struct gpio_led sdp4430_gpio_leds[] = {
140 .name = "omap4:green:debug0",
144 .name = "omap4:green:debug1",
148 .name = "omap4:green:debug2",
152 .name = "omap4:green:debug3",
156 .name = "omap4:green:debug4",
160 .name = "omap4:blue:user",
164 .name = "omap4:red:user",
168 .name = "omap4:green:user",
174 static struct gpio_keys_button sdp4430_gpio_keys[] = {
176 .desc = "Proximity Sensor",
178 .code = SW_FRONT_PROXIMITY,
179 .gpio = OMAP4_SFH7741_SENSOR_OUTPUT_GPIO,
184 static struct gpio_led_platform_data sdp4430_led_data = {
185 .leds = sdp4430_gpio_leds,
186 .num_leds = ARRAY_SIZE(sdp4430_gpio_leds),
189 static struct led_pwm sdp4430_pwm_leds[] = {
191 .name = "omap4:green:chrg",
193 .max_brightness = 255,
194 .pwm_period_ns = 7812500,
198 static struct led_pwm_platform_data sdp4430_pwm_data = {
199 .num_leds = ARRAY_SIZE(sdp4430_pwm_leds),
200 .leds = sdp4430_pwm_leds,
203 static struct platform_device sdp4430_leds_pwm = {
207 .platform_data = &sdp4430_pwm_data,
211 static int omap_prox_activate(struct device *dev)
213 gpio_set_value(OMAP4_SFH7741_ENABLE_GPIO , 1);
217 static void omap_prox_deactivate(struct device *dev)
219 gpio_set_value(OMAP4_SFH7741_ENABLE_GPIO , 0);
222 static struct gpio_keys_platform_data sdp4430_gpio_keys_data = {
223 .buttons = sdp4430_gpio_keys,
224 .nbuttons = ARRAY_SIZE(sdp4430_gpio_keys),
225 .enable = omap_prox_activate,
226 .disable = omap_prox_deactivate,
229 static struct platform_device sdp4430_gpio_keys_device = {
233 .platform_data = &sdp4430_gpio_keys_data,
237 static struct platform_device sdp4430_leds_gpio = {
241 .platform_data = &sdp4430_led_data,
244 static struct spi_board_info sdp4430_spi_board_info[] __initdata = {
246 .modalias = "ks8851",
249 .max_speed_hz = 24000000,
250 .irq = ETH_KS8851_IRQ,
254 static int omap_ethernet_init(void)
258 /* Request of GPIO lines */
260 status = gpio_request(ETH_KS8851_POWER_ON, "eth_power");
262 pr_err("Cannot request GPIO %d\n", ETH_KS8851_POWER_ON);
266 status = gpio_request(ETH_KS8851_QUART, "quart");
268 pr_err("Cannot request GPIO %d\n", ETH_KS8851_QUART);
272 status = gpio_request(ETH_KS8851_IRQ, "eth_irq");
274 pr_err("Cannot request GPIO %d\n", ETH_KS8851_IRQ);
278 /* Configuration of requested GPIO lines */
280 status = gpio_direction_output(ETH_KS8851_POWER_ON, 1);
282 pr_err("Cannot set output GPIO %d\n", ETH_KS8851_IRQ);
286 status = gpio_direction_output(ETH_KS8851_QUART, 1);
288 pr_err("Cannot set output GPIO %d\n", ETH_KS8851_QUART);
292 status = gpio_direction_input(ETH_KS8851_IRQ);
294 pr_err("Cannot set input GPIO %d\n", ETH_KS8851_IRQ);
301 gpio_free(ETH_KS8851_IRQ);
303 gpio_free(ETH_KS8851_QUART);
305 gpio_free(ETH_KS8851_POWER_ON);
309 static struct platform_device sdp4430_lcd_device = {
310 .name = "sdp4430_lcd",
314 static struct platform_device *sdp4430_devices[] __initdata = {
316 &sdp4430_gpio_keys_device,
321 static struct omap_lcd_config sdp4430_lcd_config __initdata = {
322 .ctrl_name = "internal",
325 static struct omap_board_config_kernel sdp4430_config[] __initdata = {
326 { OMAP_TAG_LCD, &sdp4430_lcd_config },
329 static void __init omap_4430sdp_init_early(void)
331 omap2_init_common_infrastructure();
332 omap2_init_common_devices(NULL, NULL);
333 #ifdef CONFIG_OMAP_32K_TIMER
334 omap2_gp_clockevent_set_gptimer(1);
338 static struct omap_musb_board_data musb_board_data = {
339 .interface_type = MUSB_INTERFACE_UTMI,
344 static struct twl4030_usb_data omap4_usbphy_data = {
345 .phy_init = omap4430_phy_init,
346 .phy_exit = omap4430_phy_exit,
347 .phy_power = omap4430_phy_power,
348 .phy_set_clock = omap4430_phy_set_clk,
349 .phy_suspend = omap4430_phy_suspend,
352 static struct omap2_hsmmc_info mmc[] = {
355 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
358 .nonremovable = true,
359 .ocr_mask = MMC_VDD_29_30,
363 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
369 static struct regulator_consumer_supply sdp4430_vaux_supply[] = {
372 .dev_name = "omap_hsmmc.1",
375 static struct regulator_consumer_supply sdp4430_vmmc_supply[] = {
378 .dev_name = "omap_hsmmc.0",
382 static int omap4_twl6030_hsmmc_late_init(struct device *dev)
385 struct platform_device *pdev = container_of(dev,
386 struct platform_device, dev);
387 struct omap_mmc_platform_data *pdata = dev->platform_data;
389 /* Setting MMC1 Card detect Irq */
391 ret = twl6030_mmc_card_detect_config();
393 pr_err("Failed configuring MMC1 card detect\n");
394 pdata->slots[0].card_detect_irq = TWL6030_IRQ_BASE +
395 MMCDETECT_INTR_OFFSET;
396 pdata->slots[0].card_detect = twl6030_mmc_card_detect;
401 static __init void omap4_twl6030_hsmmc_set_late_init(struct device *dev)
403 struct omap_mmc_platform_data *pdata;
405 /* dev can be null if CONFIG_MMC_OMAP_HS is not set */
407 pr_err("Failed %s\n", __func__);
410 pdata = dev->platform_data;
411 pdata->init = omap4_twl6030_hsmmc_late_init;
414 static int __init omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers)
416 struct omap2_hsmmc_info *c;
418 omap2_hsmmc_init(controllers);
419 for (c = controllers; c->mmc; c++)
420 omap4_twl6030_hsmmc_set_late_init(c->dev);
425 static struct regulator_init_data sdp4430_vaux1 = {
430 .valid_modes_mask = REGULATOR_MODE_NORMAL
431 | REGULATOR_MODE_STANDBY,
432 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
433 | REGULATOR_CHANGE_MODE
434 | REGULATOR_CHANGE_STATUS,
436 .num_consumer_supplies = 1,
437 .consumer_supplies = sdp4430_vaux_supply,
440 static struct regulator_init_data sdp4430_vaux2 = {
445 .valid_modes_mask = REGULATOR_MODE_NORMAL
446 | REGULATOR_MODE_STANDBY,
447 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
448 | REGULATOR_CHANGE_MODE
449 | REGULATOR_CHANGE_STATUS,
453 static struct regulator_init_data sdp4430_vaux3 = {
458 .valid_modes_mask = REGULATOR_MODE_NORMAL
459 | REGULATOR_MODE_STANDBY,
460 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
461 | REGULATOR_CHANGE_MODE
462 | REGULATOR_CHANGE_STATUS,
466 /* VMMC1 for MMC1 card */
467 static struct regulator_init_data sdp4430_vmmc = {
472 .valid_modes_mask = REGULATOR_MODE_NORMAL
473 | REGULATOR_MODE_STANDBY,
474 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
475 | REGULATOR_CHANGE_MODE
476 | REGULATOR_CHANGE_STATUS,
478 .num_consumer_supplies = 1,
479 .consumer_supplies = sdp4430_vmmc_supply,
482 static struct regulator_init_data sdp4430_vpp = {
487 .valid_modes_mask = REGULATOR_MODE_NORMAL
488 | REGULATOR_MODE_STANDBY,
489 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
490 | REGULATOR_CHANGE_MODE
491 | REGULATOR_CHANGE_STATUS,
495 static struct regulator_init_data sdp4430_vusim = {
500 .valid_modes_mask = REGULATOR_MODE_NORMAL
501 | REGULATOR_MODE_STANDBY,
502 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
503 | REGULATOR_CHANGE_MODE
504 | REGULATOR_CHANGE_STATUS,
508 static struct regulator_init_data sdp4430_vana = {
512 .valid_modes_mask = REGULATOR_MODE_NORMAL
513 | REGULATOR_MODE_STANDBY,
514 .valid_ops_mask = REGULATOR_CHANGE_MODE
515 | REGULATOR_CHANGE_STATUS,
519 static struct regulator_init_data sdp4430_vcxio = {
523 .valid_modes_mask = REGULATOR_MODE_NORMAL
524 | REGULATOR_MODE_STANDBY,
525 .valid_ops_mask = REGULATOR_CHANGE_MODE
526 | REGULATOR_CHANGE_STATUS,
530 static struct regulator_init_data sdp4430_vdac = {
534 .valid_modes_mask = REGULATOR_MODE_NORMAL
535 | REGULATOR_MODE_STANDBY,
536 .valid_ops_mask = REGULATOR_CHANGE_MODE
537 | REGULATOR_CHANGE_STATUS,
541 static struct regulator_init_data sdp4430_vusb = {
546 .valid_modes_mask = REGULATOR_MODE_NORMAL
547 | REGULATOR_MODE_STANDBY,
548 .valid_ops_mask = REGULATOR_CHANGE_MODE
549 | REGULATOR_CHANGE_STATUS,
553 static struct regulator_init_data sdp4430_clk32kg = {
555 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
559 static struct twl4030_platform_data sdp4430_twldata = {
560 .irq_base = TWL6030_IRQ_BASE,
561 .irq_end = TWL6030_IRQ_END,
564 .vmmc = &sdp4430_vmmc,
566 .vusim = &sdp4430_vusim,
567 .vana = &sdp4430_vana,
568 .vcxio = &sdp4430_vcxio,
569 .vdac = &sdp4430_vdac,
570 .vusb = &sdp4430_vusb,
571 .vaux1 = &sdp4430_vaux1,
572 .vaux2 = &sdp4430_vaux2,
573 .vaux3 = &sdp4430_vaux3,
574 .clk32kg = &sdp4430_clk32kg,
575 .usb = &omap4_usbphy_data
578 static struct i2c_board_info __initdata sdp4430_i2c_boardinfo[] = {
580 I2C_BOARD_INFO("twl6030", 0x48),
581 .flags = I2C_CLIENT_WAKE,
582 .irq = OMAP44XX_IRQ_SYS_1N,
583 .platform_data = &sdp4430_twldata,
586 static struct i2c_board_info __initdata sdp4430_i2c_3_boardinfo[] = {
588 I2C_BOARD_INFO("tmp105", 0x48),
591 I2C_BOARD_INFO("bh1780", 0x29),
594 static struct i2c_board_info __initdata sdp4430_i2c_4_boardinfo[] = {
596 I2C_BOARD_INFO("hmc5843", 0x1e),
599 static int __init omap4_i2c_init(void)
602 * Phoenix Audio IC needs I2C1 to
603 * start with 400 KHz or less
605 omap_register_i2c_bus(1, 400, sdp4430_i2c_boardinfo,
606 ARRAY_SIZE(sdp4430_i2c_boardinfo));
607 omap_register_i2c_bus(2, 400, NULL, 0);
608 omap_register_i2c_bus(3, 400, sdp4430_i2c_3_boardinfo,
609 ARRAY_SIZE(sdp4430_i2c_3_boardinfo));
610 omap_register_i2c_bus(4, 400, sdp4430_i2c_4_boardinfo,
611 ARRAY_SIZE(sdp4430_i2c_4_boardinfo));
615 static void __init omap_sfh7741prox_init(void)
619 error = gpio_request(OMAP4_SFH7741_ENABLE_GPIO, "sfh7741");
621 pr_err("%s:failed to request GPIO %d, error %d\n",
622 __func__, OMAP4_SFH7741_ENABLE_GPIO, error);
626 error = gpio_direction_output(OMAP4_SFH7741_ENABLE_GPIO , 0);
628 pr_err("%s: GPIO configuration failed: GPIO %d,error %d\n",
629 __func__, OMAP4_SFH7741_ENABLE_GPIO, error);
630 gpio_free(OMAP4_SFH7741_ENABLE_GPIO);
634 static void sdp4430_hdmi_mux_init(void)
636 /* PAD0_HDMI_HPD_PAD1_HDMI_CEC */
637 omap_mux_init_signal("hdmi_hpd",
638 OMAP_PIN_INPUT_PULLUP);
639 omap_mux_init_signal("hdmi_cec",
640 OMAP_PIN_INPUT_PULLUP);
641 /* PAD0_HDMI_DDC_SCL_PAD1_HDMI_DDC_SDA */
642 omap_mux_init_signal("hdmi_ddc_scl",
643 OMAP_PIN_INPUT_PULLUP);
644 omap_mux_init_signal("hdmi_ddc_sda",
645 OMAP_PIN_INPUT_PULLUP);
648 static int sdp4430_panel_enable_hdmi(struct omap_dss_device *dssdev)
652 status = gpio_request_one(HDMI_GPIO_HPD, GPIOF_OUT_INIT_HIGH,
655 pr_err("Cannot request GPIO %d\n", HDMI_GPIO_HPD);
658 status = gpio_request_one(HDMI_GPIO_LS_OE, GPIOF_OUT_INIT_HIGH,
661 pr_err("Cannot request GPIO %d\n", HDMI_GPIO_LS_OE);
668 gpio_free(HDMI_GPIO_HPD);
673 static void sdp4430_panel_disable_hdmi(struct omap_dss_device *dssdev)
675 gpio_free(HDMI_GPIO_LS_OE);
676 gpio_free(HDMI_GPIO_HPD);
679 static struct omap_dss_device sdp4430_hdmi_device = {
681 .driver_name = "hdmi_panel",
682 .type = OMAP_DISPLAY_TYPE_HDMI,
683 .platform_enable = sdp4430_panel_enable_hdmi,
684 .platform_disable = sdp4430_panel_disable_hdmi,
685 .channel = OMAP_DSS_CHANNEL_DIGIT,
688 static struct omap_dss_device *sdp4430_dss_devices[] = {
689 &sdp4430_hdmi_device,
692 static struct omap_dss_board_info sdp4430_dss_data = {
693 .num_devices = ARRAY_SIZE(sdp4430_dss_devices),
694 .devices = sdp4430_dss_devices,
695 .default_device = &sdp4430_hdmi_device,
698 void omap_4430sdp_display_init(void)
700 sdp4430_hdmi_mux_init();
701 omap_display_init(&sdp4430_dss_data);
704 #ifdef CONFIG_OMAP_MUX
705 static struct omap_board_mux board_mux[] __initdata = {
706 OMAP4_MUX(USBB2_ULPITLL_CLK, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),
707 { .reg_offset = OMAP_MUX_TERMINATOR },
710 static struct omap_device_pad serial2_pads[] __initdata = {
711 OMAP_MUX_STATIC("uart2_cts.uart2_cts",
712 OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
713 OMAP_MUX_STATIC("uart2_rts.uart2_rts",
714 OMAP_PIN_OUTPUT | OMAP_MUX_MODE0),
715 OMAP_MUX_STATIC("uart2_rx.uart2_rx",
716 OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
717 OMAP_MUX_STATIC("uart2_tx.uart2_tx",
718 OMAP_PIN_OUTPUT | OMAP_MUX_MODE0),
721 static struct omap_device_pad serial3_pads[] __initdata = {
722 OMAP_MUX_STATIC("uart3_cts_rctx.uart3_cts_rctx",
723 OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
724 OMAP_MUX_STATIC("uart3_rts_sd.uart3_rts_sd",
725 OMAP_PIN_OUTPUT | OMAP_MUX_MODE0),
726 OMAP_MUX_STATIC("uart3_rx_irrx.uart3_rx_irrx",
727 OMAP_PIN_INPUT | OMAP_MUX_MODE0),
728 OMAP_MUX_STATIC("uart3_tx_irtx.uart3_tx_irtx",
729 OMAP_PIN_OUTPUT | OMAP_MUX_MODE0),
732 static struct omap_device_pad serial4_pads[] __initdata = {
733 OMAP_MUX_STATIC("uart4_rx.uart4_rx",
734 OMAP_PIN_INPUT | OMAP_MUX_MODE0),
735 OMAP_MUX_STATIC("uart4_tx.uart4_tx",
736 OMAP_PIN_OUTPUT | OMAP_MUX_MODE0),
739 static struct omap_board_data serial2_data = {
741 .pads = serial2_pads,
742 .pads_cnt = ARRAY_SIZE(serial2_pads),
745 static struct omap_board_data serial3_data = {
747 .pads = serial3_pads,
748 .pads_cnt = ARRAY_SIZE(serial3_pads),
751 static struct omap_board_data serial4_data = {
753 .pads = serial4_pads,
754 .pads_cnt = ARRAY_SIZE(serial4_pads),
757 static inline void board_serial_init(void)
759 struct omap_board_data bdata;
764 /* pass dummy data for UART1 */
765 omap_serial_init_port(&bdata);
767 omap_serial_init_port(&serial2_data);
768 omap_serial_init_port(&serial3_data);
769 omap_serial_init_port(&serial4_data);
772 #define board_mux NULL
774 static inline void board_serial_init(void)
780 static void __init omap_4430sdp_init(void)
783 int package = OMAP_PACKAGE_CBS;
785 if (omap_rev() == OMAP4430_REV_ES1_0)
786 package = OMAP_PACKAGE_CBL;
787 omap4_mux_init(board_mux, package);
789 omap_board_config = sdp4430_config;
790 omap_board_config_size = ARRAY_SIZE(sdp4430_config);
793 omap_sfh7741prox_init();
794 platform_add_devices(sdp4430_devices, ARRAY_SIZE(sdp4430_devices));
796 omap4_twl6030_hsmmc_init(mmc);
798 usb_musb_init(&musb_board_data);
800 status = omap_ethernet_init();
802 pr_err("Ethernet initialization failed: %d\n", status);
804 sdp4430_spi_board_info[0].irq = gpio_to_irq(ETH_KS8851_IRQ);
805 spi_register_board_info(sdp4430_spi_board_info,
806 ARRAY_SIZE(sdp4430_spi_board_info));
809 status = omap4_keyboard_init(&sdp4430_keypad_data);
811 pr_err("Keypad initialization failed: %d\n", status);
813 omap_4430sdp_display_init();
816 static void __init omap_4430sdp_map_io(void)
818 omap2_set_globals_443x();
819 omap44xx_map_common_io();
822 MACHINE_START(OMAP_4430SDP, "OMAP4430 4430SDP board")
823 /* Maintainer: Santosh Shilimkar - Texas Instruments Inc */
824 .boot_params = 0x80000100,
825 .reserve = omap_reserve,
826 .map_io = omap_4430sdp_map_io,
827 .init_early = omap_4430sdp_init_early,
828 .init_irq = gic_init_irq,
829 .init_machine = omap_4430sdp_init,
830 .timer = &omap_timer,