Path: blob/master/arch/arm/mach-omap2/board-omap3pandora.c
10817 views
/*1* board-omap3pandora.c (Pandora Handheld Console)2*3* This program is free software; you can redistribute it and/or4* modify it under the terms of the GNU General Public License5* version 2 as published by the Free Software Foundation.6*7* This program is distributed in the hope that it will be useful, but8* WITHOUT ANY WARRANTY; without even the implied warranty of9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU10* General Public License for more details.11*12* You should have received a copy of the GNU General Public License13* along with this program; if not, write to the Free Software14* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA15* 02110-1301 USA16*17*/1819#include <linux/init.h>20#include <linux/kernel.h>21#include <linux/platform_device.h>2223#include <linux/spi/spi.h>24#include <linux/regulator/machine.h>25#include <linux/i2c/twl.h>26#include <linux/wl12xx.h>27#include <linux/mtd/partitions.h>28#include <linux/mtd/nand.h>29#include <linux/leds.h>30#include <linux/input.h>31#include <linux/input/matrix_keypad.h>32#include <linux/gpio.h>33#include <linux/gpio_keys.h>34#include <linux/mmc/host.h>35#include <linux/mmc/card.h>36#include <linux/regulator/fixed.h>3738#include <asm/mach-types.h>39#include <asm/mach/arch.h>40#include <asm/mach/map.h>4142#include <plat/board.h>43#include <plat/common.h>44#include <mach/hardware.h>45#include <plat/mcspi.h>46#include <plat/usb.h>47#include <video/omapdss.h>48#include <plat/nand.h>4950#include "mux.h"51#include "sdram-micron-mt46h32m32lf-6.h"52#include "hsmmc.h"53#include "common-board-devices.h"5455#define PANDORA_WIFI_IRQ_GPIO 2156#define PANDORA_WIFI_NRESET_GPIO 2357#define OMAP3_PANDORA_TS_GPIO 945859static struct mtd_partition omap3pandora_nand_partitions[] = {60{61.name = "xloader",62.offset = 0,63.size = 4 * NAND_BLOCK_SIZE,64.mask_flags = MTD_WRITEABLE65}, {66.name = "uboot",67.offset = MTDPART_OFS_APPEND,68.size = 15 * NAND_BLOCK_SIZE,69}, {70.name = "uboot-env",71.offset = MTDPART_OFS_APPEND,72.size = 1 * NAND_BLOCK_SIZE,73}, {74.name = "boot",75.offset = MTDPART_OFS_APPEND,76.size = 80 * NAND_BLOCK_SIZE,77}, {78.name = "rootfs",79.offset = MTDPART_OFS_APPEND,80.size = MTDPART_SIZ_FULL,81},82};8384static struct omap_nand_platform_data pandora_nand_data = {85.cs = 0,86.devsize = NAND_BUSWIDTH_16,87.xfer_type = NAND_OMAP_PREFETCH_DMA,88.parts = omap3pandora_nand_partitions,89.nr_parts = ARRAY_SIZE(omap3pandora_nand_partitions),90};9192static struct gpio_led pandora_gpio_leds[] = {93{94.name = "pandora::sd1",95.default_trigger = "mmc0",96.gpio = 128,97}, {98.name = "pandora::sd2",99.default_trigger = "mmc1",100.gpio = 129,101}, {102.name = "pandora::bluetooth",103.gpio = 158,104}, {105.name = "pandora::wifi",106.gpio = 159,107},108};109110static struct gpio_led_platform_data pandora_gpio_led_data = {111.leds = pandora_gpio_leds,112.num_leds = ARRAY_SIZE(pandora_gpio_leds),113};114115static struct platform_device pandora_leds_gpio = {116.name = "leds-gpio",117.id = -1,118.dev = {119.platform_data = &pandora_gpio_led_data,120},121};122123#define GPIO_BUTTON(gpio_num, ev_type, ev_code, act_low, descr) \124{ \125.gpio = gpio_num, \126.type = ev_type, \127.code = ev_code, \128.active_low = act_low, \129.debounce_interval = 4, \130.desc = "btn " descr, \131}132133#define GPIO_BUTTON_LOW(gpio_num, event_code, description) \134GPIO_BUTTON(gpio_num, EV_KEY, event_code, 1, description)135136static struct gpio_keys_button pandora_gpio_keys[] = {137GPIO_BUTTON_LOW(110, KEY_UP, "up"),138GPIO_BUTTON_LOW(103, KEY_DOWN, "down"),139GPIO_BUTTON_LOW(96, KEY_LEFT, "left"),140GPIO_BUTTON_LOW(98, KEY_RIGHT, "right"),141GPIO_BUTTON_LOW(109, KEY_PAGEUP, "game 1"),142GPIO_BUTTON_LOW(111, KEY_END, "game 2"),143GPIO_BUTTON_LOW(106, KEY_PAGEDOWN, "game 3"),144GPIO_BUTTON_LOW(101, KEY_HOME, "game 4"),145GPIO_BUTTON_LOW(102, KEY_RIGHTSHIFT, "l"),146GPIO_BUTTON_LOW(97, KEY_KPPLUS, "l2"),147GPIO_BUTTON_LOW(105, KEY_RIGHTCTRL, "r"),148GPIO_BUTTON_LOW(107, KEY_KPMINUS, "r2"),149GPIO_BUTTON_LOW(104, KEY_LEFTCTRL, "ctrl"),150GPIO_BUTTON_LOW(99, KEY_MENU, "menu"),151GPIO_BUTTON_LOW(176, KEY_COFFEE, "hold"),152GPIO_BUTTON(100, EV_KEY, KEY_LEFTALT, 0, "alt"),153GPIO_BUTTON(108, EV_SW, SW_LID, 1, "lid"),154};155156static struct gpio_keys_platform_data pandora_gpio_key_info = {157.buttons = pandora_gpio_keys,158.nbuttons = ARRAY_SIZE(pandora_gpio_keys),159};160161static struct platform_device pandora_keys_gpio = {162.name = "gpio-keys",163.id = -1,164.dev = {165.platform_data = &pandora_gpio_key_info,166},167};168169static const uint32_t board_keymap[] = {170/* row, col, code */171KEY(0, 0, KEY_9),172KEY(0, 1, KEY_8),173KEY(0, 2, KEY_I),174KEY(0, 3, KEY_J),175KEY(0, 4, KEY_N),176KEY(0, 5, KEY_M),177KEY(1, 0, KEY_0),178KEY(1, 1, KEY_7),179KEY(1, 2, KEY_U),180KEY(1, 3, KEY_H),181KEY(1, 4, KEY_B),182KEY(1, 5, KEY_SPACE),183KEY(2, 0, KEY_BACKSPACE),184KEY(2, 1, KEY_6),185KEY(2, 2, KEY_Y),186KEY(2, 3, KEY_G),187KEY(2, 4, KEY_V),188KEY(2, 5, KEY_FN),189KEY(3, 0, KEY_O),190KEY(3, 1, KEY_5),191KEY(3, 2, KEY_T),192KEY(3, 3, KEY_F),193KEY(3, 4, KEY_C),194KEY(4, 0, KEY_P),195KEY(4, 1, KEY_4),196KEY(4, 2, KEY_R),197KEY(4, 3, KEY_D),198KEY(4, 4, KEY_X),199KEY(5, 0, KEY_K),200KEY(5, 1, KEY_3),201KEY(5, 2, KEY_E),202KEY(5, 3, KEY_S),203KEY(5, 4, KEY_Z),204KEY(6, 0, KEY_L),205KEY(6, 1, KEY_2),206KEY(6, 2, KEY_W),207KEY(6, 3, KEY_A),208KEY(6, 4, KEY_DOT),209KEY(7, 0, KEY_ENTER),210KEY(7, 1, KEY_1),211KEY(7, 2, KEY_Q),212KEY(7, 3, KEY_LEFTSHIFT),213KEY(7, 4, KEY_COMMA),214};215216static struct matrix_keymap_data board_map_data = {217.keymap = board_keymap,218.keymap_size = ARRAY_SIZE(board_keymap),219};220221static struct twl4030_keypad_data pandora_kp_data = {222.keymap_data = &board_map_data,223.rows = 8,224.cols = 6,225.rep = 1,226};227228static struct omap_dss_device pandora_lcd_device = {229.name = "lcd",230.driver_name = "tpo_td043mtea1_panel",231.type = OMAP_DISPLAY_TYPE_DPI,232.phy.dpi.data_lines = 24,233.reset_gpio = 157,234};235236static struct omap_dss_device pandora_tv_device = {237.name = "tv",238.driver_name = "venc",239.type = OMAP_DISPLAY_TYPE_VENC,240.phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,241};242243static struct omap_dss_device *pandora_dss_devices[] = {244&pandora_lcd_device,245&pandora_tv_device,246};247248static struct omap_dss_board_info pandora_dss_data = {249.num_devices = ARRAY_SIZE(pandora_dss_devices),250.devices = pandora_dss_devices,251.default_device = &pandora_lcd_device,252};253254static void pandora_wl1251_init_card(struct mmc_card *card)255{256/*257* We have TI wl1251 attached to MMC3. Pass this information to258* SDIO core because it can't be probed by normal methods.259*/260card->quirks |= MMC_QUIRK_NONSTD_SDIO;261card->cccr.wide_bus = 1;262card->cis.vendor = 0x104c;263card->cis.device = 0x9066;264card->cis.blksize = 512;265card->cis.max_dtr = 20000000;266}267268static struct omap2_hsmmc_info omap3pandora_mmc[] = {269{270.mmc = 1,271.caps = MMC_CAP_4_BIT_DATA,272.gpio_cd = -EINVAL,273.gpio_wp = 126,274.ext_clock = 0,275},276{277.mmc = 2,278.caps = MMC_CAP_4_BIT_DATA,279.gpio_cd = -EINVAL,280.gpio_wp = 127,281.ext_clock = 1,282.transceiver = true,283},284{285.mmc = 3,286.caps = MMC_CAP_4_BIT_DATA | MMC_CAP_POWER_OFF_CARD,287.gpio_cd = -EINVAL,288.gpio_wp = -EINVAL,289.init_card = pandora_wl1251_init_card,290},291{} /* Terminator */292};293294static int omap3pandora_twl_gpio_setup(struct device *dev,295unsigned gpio, unsigned ngpio)296{297int ret, gpio_32khz;298299/* gpio + {0,1} is "mmc{0,1}_cd" (input/IRQ) */300omap3pandora_mmc[0].gpio_cd = gpio + 0;301omap3pandora_mmc[1].gpio_cd = gpio + 1;302omap2_hsmmc_init(omap3pandora_mmc);303304/* gpio + 13 drives 32kHz buffer for wifi module */305gpio_32khz = gpio + 13;306ret = gpio_request_one(gpio_32khz, GPIOF_OUT_INIT_HIGH, "wifi 32kHz");307if (ret < 0) {308pr_err("Cannot get GPIO line %d, ret=%d\n", gpio_32khz, ret);309return -ENODEV;310}311312return 0;313}314315static struct twl4030_gpio_platform_data omap3pandora_gpio_data = {316.gpio_base = OMAP_MAX_GPIO_LINES,317.irq_base = TWL4030_GPIO_IRQ_BASE,318.irq_end = TWL4030_GPIO_IRQ_END,319.setup = omap3pandora_twl_gpio_setup,320};321322static struct regulator_consumer_supply pandora_vmmc1_supply =323REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0");324325static struct regulator_consumer_supply pandora_vmmc2_supply =326REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1");327328static struct regulator_consumer_supply pandora_vmmc3_supply =329REGULATOR_SUPPLY("vmmc", "omap_hsmmc.2");330331static struct regulator_consumer_supply pandora_vdda_dac_supply =332REGULATOR_SUPPLY("vdda_dac", "omapdss_venc");333334static struct regulator_consumer_supply pandora_vdds_supplies[] = {335REGULATOR_SUPPLY("vdds_sdi", "omapdss"),336REGULATOR_SUPPLY("vdds_dsi", "omapdss"),337REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi1"),338};339340static struct regulator_consumer_supply pandora_vcc_lcd_supply =341REGULATOR_SUPPLY("vcc", "display0");342343static struct regulator_consumer_supply pandora_usb_phy_supply =344REGULATOR_SUPPLY("hsusb0", "ehci-omap.0");345346/* ads7846 on SPI and 2 nub controllers on I2C */347static struct regulator_consumer_supply pandora_vaux4_supplies[] = {348REGULATOR_SUPPLY("vcc", "spi1.0"),349REGULATOR_SUPPLY("vcc", "3-0066"),350REGULATOR_SUPPLY("vcc", "3-0067"),351};352353static struct regulator_consumer_supply pandora_adac_supply =354REGULATOR_SUPPLY("vcc", "soc-audio");355356/* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */357static struct regulator_init_data pandora_vmmc1 = {358.constraints = {359.min_uV = 1850000,360.max_uV = 3150000,361.valid_modes_mask = REGULATOR_MODE_NORMAL362| REGULATOR_MODE_STANDBY,363.valid_ops_mask = REGULATOR_CHANGE_VOLTAGE364| REGULATOR_CHANGE_MODE365| REGULATOR_CHANGE_STATUS,366},367.num_consumer_supplies = 1,368.consumer_supplies = &pandora_vmmc1_supply,369};370371/* VMMC2 for MMC2 pins CMD, CLK, DAT0..DAT3 (max 100 mA) */372static struct regulator_init_data pandora_vmmc2 = {373.constraints = {374.min_uV = 1850000,375.max_uV = 3150000,376.valid_modes_mask = REGULATOR_MODE_NORMAL377| REGULATOR_MODE_STANDBY,378.valid_ops_mask = REGULATOR_CHANGE_VOLTAGE379| REGULATOR_CHANGE_MODE380| REGULATOR_CHANGE_STATUS,381},382.num_consumer_supplies = 1,383.consumer_supplies = &pandora_vmmc2_supply,384};385386/* VDAC for DSS driving S-Video */387static struct regulator_init_data pandora_vdac = {388.constraints = {389.min_uV = 1800000,390.max_uV = 1800000,391.apply_uV = true,392.valid_modes_mask = REGULATOR_MODE_NORMAL393| REGULATOR_MODE_STANDBY,394.valid_ops_mask = REGULATOR_CHANGE_MODE395| REGULATOR_CHANGE_STATUS,396},397.num_consumer_supplies = 1,398.consumer_supplies = &pandora_vdda_dac_supply,399};400401/* VPLL2 for digital video outputs */402static struct regulator_init_data pandora_vpll2 = {403.constraints = {404.min_uV = 1800000,405.max_uV = 1800000,406.apply_uV = true,407.valid_modes_mask = REGULATOR_MODE_NORMAL408| REGULATOR_MODE_STANDBY,409.valid_ops_mask = REGULATOR_CHANGE_MODE410| REGULATOR_CHANGE_STATUS,411},412.num_consumer_supplies = ARRAY_SIZE(pandora_vdds_supplies),413.consumer_supplies = pandora_vdds_supplies,414};415416/* VAUX1 for LCD */417static struct regulator_init_data pandora_vaux1 = {418.constraints = {419.min_uV = 3000000,420.max_uV = 3000000,421.apply_uV = true,422.valid_modes_mask = REGULATOR_MODE_NORMAL423| REGULATOR_MODE_STANDBY,424.valid_ops_mask = REGULATOR_CHANGE_MODE425| REGULATOR_CHANGE_STATUS,426},427.num_consumer_supplies = 1,428.consumer_supplies = &pandora_vcc_lcd_supply,429};430431/* VAUX2 for USB host PHY */432static struct regulator_init_data pandora_vaux2 = {433.constraints = {434.min_uV = 1800000,435.max_uV = 1800000,436.apply_uV = true,437.valid_modes_mask = REGULATOR_MODE_NORMAL438| REGULATOR_MODE_STANDBY,439.valid_ops_mask = REGULATOR_CHANGE_MODE440| REGULATOR_CHANGE_STATUS,441},442.num_consumer_supplies = 1,443.consumer_supplies = &pandora_usb_phy_supply,444};445446/* VAUX4 for ads7846 and nubs */447static struct regulator_init_data pandora_vaux4 = {448.constraints = {449.min_uV = 2800000,450.max_uV = 2800000,451.apply_uV = true,452.valid_modes_mask = REGULATOR_MODE_NORMAL453| REGULATOR_MODE_STANDBY,454.valid_ops_mask = REGULATOR_CHANGE_MODE455| REGULATOR_CHANGE_STATUS,456},457.num_consumer_supplies = ARRAY_SIZE(pandora_vaux4_supplies),458.consumer_supplies = pandora_vaux4_supplies,459};460461/* VSIM for audio DAC */462static struct regulator_init_data pandora_vsim = {463.constraints = {464.min_uV = 2800000,465.max_uV = 2800000,466.apply_uV = true,467.valid_modes_mask = REGULATOR_MODE_NORMAL468| REGULATOR_MODE_STANDBY,469.valid_ops_mask = REGULATOR_CHANGE_MODE470| REGULATOR_CHANGE_STATUS,471},472.num_consumer_supplies = 1,473.consumer_supplies = &pandora_adac_supply,474};475476/* Fixed regulator internal to Wifi module */477static struct regulator_init_data pandora_vmmc3 = {478.constraints = {479.valid_ops_mask = REGULATOR_CHANGE_STATUS,480},481.num_consumer_supplies = 1,482.consumer_supplies = &pandora_vmmc3_supply,483};484485static struct fixed_voltage_config pandora_vwlan = {486.supply_name = "vwlan",487.microvolts = 1800000, /* 1.8V */488.gpio = PANDORA_WIFI_NRESET_GPIO,489.startup_delay = 50000, /* 50ms */490.enable_high = 1,491.enabled_at_boot = 0,492.init_data = &pandora_vmmc3,493};494495static struct platform_device pandora_vwlan_device = {496.name = "reg-fixed-voltage",497.id = 1,498.dev = {499.platform_data = &pandora_vwlan,500},501};502503static struct twl4030_usb_data omap3pandora_usb_data = {504.usb_mode = T2_USB_MODE_ULPI,505};506507static struct twl4030_codec_audio_data omap3pandora_audio_data;508509static struct twl4030_codec_data omap3pandora_codec_data = {510.audio_mclk = 26000000,511.audio = &omap3pandora_audio_data,512};513514static struct twl4030_bci_platform_data pandora_bci_data;515516static struct twl4030_platform_data omap3pandora_twldata = {517.irq_base = TWL4030_IRQ_BASE,518.irq_end = TWL4030_IRQ_END,519.gpio = &omap3pandora_gpio_data,520.usb = &omap3pandora_usb_data,521.codec = &omap3pandora_codec_data,522.vmmc1 = &pandora_vmmc1,523.vmmc2 = &pandora_vmmc2,524.vdac = &pandora_vdac,525.vpll2 = &pandora_vpll2,526.vaux1 = &pandora_vaux1,527.vaux2 = &pandora_vaux2,528.vaux4 = &pandora_vaux4,529.vsim = &pandora_vsim,530.keypad = &pandora_kp_data,531.bci = &pandora_bci_data,532};533534static struct i2c_board_info __initdata omap3pandora_i2c3_boardinfo[] = {535{536I2C_BOARD_INFO("bq27500", 0x55),537.flags = I2C_CLIENT_WAKE,538},539};540541static int __init omap3pandora_i2c_init(void)542{543omap3_pmic_init("tps65950", &omap3pandora_twldata);544/* i2c2 pins are not connected */545omap_register_i2c_bus(3, 100, omap3pandora_i2c3_boardinfo,546ARRAY_SIZE(omap3pandora_i2c3_boardinfo));547return 0;548}549550static struct spi_board_info omap3pandora_spi_board_info[] __initdata = {551{552.modalias = "tpo_td043mtea1_panel_spi",553.bus_num = 1,554.chip_select = 1,555.max_speed_hz = 375000,556.platform_data = &pandora_lcd_device,557}558};559560static void __init omap3pandora_init_early(void)561{562omap2_init_common_infrastructure();563omap2_init_common_devices(mt46h32m32lf6_sdrc_params,564mt46h32m32lf6_sdrc_params);565}566567static void __init pandora_wl1251_init(void)568{569struct wl12xx_platform_data pandora_wl1251_pdata;570int ret;571572memset(&pandora_wl1251_pdata, 0, sizeof(pandora_wl1251_pdata));573574ret = gpio_request_one(PANDORA_WIFI_IRQ_GPIO, GPIOF_IN, "wl1251 irq");575if (ret < 0)576goto fail;577578pandora_wl1251_pdata.irq = gpio_to_irq(PANDORA_WIFI_IRQ_GPIO);579if (pandora_wl1251_pdata.irq < 0)580goto fail_irq;581582pandora_wl1251_pdata.use_eeprom = true;583ret = wl12xx_set_platform_data(&pandora_wl1251_pdata);584if (ret < 0)585goto fail_irq;586587return;588589fail_irq:590gpio_free(PANDORA_WIFI_IRQ_GPIO);591fail:592printk(KERN_ERR "wl1251 board initialisation failed\n");593}594595static struct platform_device *omap3pandora_devices[] __initdata = {596&pandora_leds_gpio,597&pandora_keys_gpio,598&pandora_vwlan_device,599};600601static const struct usbhs_omap_board_data usbhs_bdata __initconst = {602603.port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,604.port_mode[1] = OMAP_USBHS_PORT_MODE_UNUSED,605.port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,606607.phy_reset = true,608.reset_gpio_port[0] = 16,609.reset_gpio_port[1] = -EINVAL,610.reset_gpio_port[2] = -EINVAL611};612613#ifdef CONFIG_OMAP_MUX614static struct omap_board_mux board_mux[] __initdata = {615{ .reg_offset = OMAP_MUX_TERMINATOR },616};617#endif618619static void __init omap3pandora_init(void)620{621omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);622omap3pandora_i2c_init();623pandora_wl1251_init();624platform_add_devices(omap3pandora_devices,625ARRAY_SIZE(omap3pandora_devices));626omap_display_init(&pandora_dss_data);627omap_serial_init();628spi_register_board_info(omap3pandora_spi_board_info,629ARRAY_SIZE(omap3pandora_spi_board_info));630omap_ads7846_init(1, OMAP3_PANDORA_TS_GPIO, 0, NULL);631usbhs_init(&usbhs_bdata);632usb_musb_init(NULL);633gpmc_nand_init(&pandora_nand_data);634635/* Ensure SDRC pins are mux'd for self-refresh */636omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);637omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);638}639640MACHINE_START(OMAP3_PANDORA, "Pandora Handheld Console")641.boot_params = 0x80000100,642.reserve = omap_reserve,643.map_io = omap3_map_io,644.init_early = omap3pandora_init_early,645.init_irq = omap_init_irq,646.init_machine = omap3pandora_init,647.timer = &omap_timer,648MACHINE_END649650651