Path: blob/master/arch/arm/mach-omap2/board-rx51-peripherals.c
10817 views
/*1* linux/arch/arm/mach-omap2/board-rx51-peripherals.c2*3* Copyright (C) 2008-2009 Nokia4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License version 2 as7* published by the Free Software Foundation.8*/910#include <linux/kernel.h>11#include <linux/init.h>12#include <linux/platform_device.h>13#include <linux/input.h>14#include <linux/input/matrix_keypad.h>15#include <linux/spi/spi.h>16#include <linux/wl12xx.h>17#include <linux/i2c.h>18#include <linux/i2c/twl.h>19#include <linux/clk.h>20#include <linux/delay.h>21#include <linux/regulator/machine.h>22#include <linux/gpio.h>23#include <linux/gpio_keys.h>24#include <linux/mmc/host.h>25#include <linux/power/isp1704_charger.h>2627#include <plat/mcspi.h>28#include <plat/board.h>29#include <plat/common.h>30#include <plat/dma.h>31#include <plat/gpmc.h>32#include <plat/onenand.h>33#include <plat/gpmc-smc91x.h>3435#include <mach/board-rx51.h>3637#include <sound/tlv320aic3x.h>38#include <sound/tpa6130a2-plat.h>39#include <media/radio-si4713.h>40#include <media/si4713.h>4142#include <../drivers/staging/iio/light/tsl2563.h>4344#include "mux.h"45#include "hsmmc.h"46#include "common-board-devices.h"4748#define SYSTEM_REV_B_USES_VAUX3 0x169949#define SYSTEM_REV_S_USES_VAUX3 0x85051#define RX51_WL1251_POWER_GPIO 8752#define RX51_WL1251_IRQ_GPIO 4253#define RX51_FMTX_RESET_GPIO 16354#define RX51_FMTX_IRQ 535556#define RX51_USB_TRANSCEIVER_RST_GPIO 675758/* list all spi devices here */59enum {60RX51_SPI_WL1251,61RX51_SPI_MIPID, /* LCD panel */62RX51_SPI_TSC2005, /* Touch Controller */63};6465static struct wl12xx_platform_data wl1251_pdata;6667#if defined(CONFIG_SENSORS_TSL2563) || defined(CONFIG_SENSORS_TSL2563_MODULE)68static struct tsl2563_platform_data rx51_tsl2563_platform_data = {69.cover_comp_gain = 16,70};71#endif7273static struct omap2_mcspi_device_config wl1251_mcspi_config = {74.turbo_mode = 0,75.single_channel = 1,76};7778static struct omap2_mcspi_device_config mipid_mcspi_config = {79.turbo_mode = 0,80.single_channel = 1,81};8283static struct omap2_mcspi_device_config tsc2005_mcspi_config = {84.turbo_mode = 0,85.single_channel = 1,86};8788static struct spi_board_info rx51_peripherals_spi_board_info[] __initdata = {89[RX51_SPI_WL1251] = {90.modalias = "wl1251",91.bus_num = 4,92.chip_select = 0,93.max_speed_hz = 48000000,94.mode = SPI_MODE_3,95.controller_data = &wl1251_mcspi_config,96.platform_data = &wl1251_pdata,97},98[RX51_SPI_MIPID] = {99.modalias = "acx565akm",100.bus_num = 1,101.chip_select = 2,102.max_speed_hz = 6000000,103.controller_data = &mipid_mcspi_config,104},105[RX51_SPI_TSC2005] = {106.modalias = "tsc2005",107.bus_num = 1,108.chip_select = 0,109/* .irq = OMAP_GPIO_IRQ(RX51_TSC2005_IRQ_GPIO),*/110.max_speed_hz = 6000000,111.controller_data = &tsc2005_mcspi_config,112/* .platform_data = &tsc2005_config,*/113},114};115116static void rx51_charger_set_power(bool on)117{118gpio_set_value(RX51_USB_TRANSCEIVER_RST_GPIO, on);119}120121static struct isp1704_charger_data rx51_charger_data = {122.set_power = rx51_charger_set_power,123};124125static struct platform_device rx51_charger_device = {126.name = "isp1704_charger",127.dev = {128.platform_data = &rx51_charger_data,129},130};131132static void __init rx51_charger_init(void)133{134WARN_ON(gpio_request_one(RX51_USB_TRANSCEIVER_RST_GPIO,135GPIOF_OUT_INIT_LOW, "isp1704_reset"));136137platform_device_register(&rx51_charger_device);138}139140#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)141142#define RX51_GPIO_CAMERA_LENS_COVER 110143#define RX51_GPIO_CAMERA_FOCUS 68144#define RX51_GPIO_CAMERA_CAPTURE 69145#define RX51_GPIO_KEYPAD_SLIDE 71146#define RX51_GPIO_LOCK_BUTTON 113147#define RX51_GPIO_PROXIMITY 89148149#define RX51_GPIO_DEBOUNCE_TIMEOUT 10150151static struct gpio_keys_button rx51_gpio_keys[] = {152{153.desc = "Camera Lens Cover",154.type = EV_SW,155.code = SW_CAMERA_LENS_COVER,156.gpio = RX51_GPIO_CAMERA_LENS_COVER,157.active_low = 1,158.debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,159}, {160.desc = "Camera Focus",161.type = EV_KEY,162.code = KEY_CAMERA_FOCUS,163.gpio = RX51_GPIO_CAMERA_FOCUS,164.active_low = 1,165.debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,166}, {167.desc = "Camera Capture",168.type = EV_KEY,169.code = KEY_CAMERA,170.gpio = RX51_GPIO_CAMERA_CAPTURE,171.active_low = 1,172.debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,173}, {174.desc = "Lock Button",175.type = EV_KEY,176.code = KEY_SCREENLOCK,177.gpio = RX51_GPIO_LOCK_BUTTON,178.active_low = 1,179.debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,180}, {181.desc = "Keypad Slide",182.type = EV_SW,183.code = SW_KEYPAD_SLIDE,184.gpio = RX51_GPIO_KEYPAD_SLIDE,185.active_low = 1,186.debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,187}, {188.desc = "Proximity Sensor",189.type = EV_SW,190.code = SW_FRONT_PROXIMITY,191.gpio = RX51_GPIO_PROXIMITY,192.active_low = 0,193.debounce_interval = RX51_GPIO_DEBOUNCE_TIMEOUT,194}195};196197static struct gpio_keys_platform_data rx51_gpio_keys_data = {198.buttons = rx51_gpio_keys,199.nbuttons = ARRAY_SIZE(rx51_gpio_keys),200};201202static struct platform_device rx51_gpio_keys_device = {203.name = "gpio-keys",204.id = -1,205.dev = {206.platform_data = &rx51_gpio_keys_data,207},208};209210static void __init rx51_add_gpio_keys(void)211{212platform_device_register(&rx51_gpio_keys_device);213}214#else215static void __init rx51_add_gpio_keys(void)216{217}218#endif /* CONFIG_KEYBOARD_GPIO || CONFIG_KEYBOARD_GPIO_MODULE */219220static uint32_t board_keymap[] = {221/*222* Note that KEY(x, 8, KEY_XXX) entries represent "entrire row223* connected to the ground" matrix state.224*/225KEY(0, 0, KEY_Q),226KEY(0, 1, KEY_O),227KEY(0, 2, KEY_P),228KEY(0, 3, KEY_COMMA),229KEY(0, 4, KEY_BACKSPACE),230KEY(0, 6, KEY_A),231KEY(0, 7, KEY_S),232233KEY(1, 0, KEY_W),234KEY(1, 1, KEY_D),235KEY(1, 2, KEY_F),236KEY(1, 3, KEY_G),237KEY(1, 4, KEY_H),238KEY(1, 5, KEY_J),239KEY(1, 6, KEY_K),240KEY(1, 7, KEY_L),241242KEY(2, 0, KEY_E),243KEY(2, 1, KEY_DOT),244KEY(2, 2, KEY_UP),245KEY(2, 3, KEY_ENTER),246KEY(2, 5, KEY_Z),247KEY(2, 6, KEY_X),248KEY(2, 7, KEY_C),249KEY(2, 8, KEY_F9),250251KEY(3, 0, KEY_R),252KEY(3, 1, KEY_V),253KEY(3, 2, KEY_B),254KEY(3, 3, KEY_N),255KEY(3, 4, KEY_M),256KEY(3, 5, KEY_SPACE),257KEY(3, 6, KEY_SPACE),258KEY(3, 7, KEY_LEFT),259260KEY(4, 0, KEY_T),261KEY(4, 1, KEY_DOWN),262KEY(4, 2, KEY_RIGHT),263KEY(4, 4, KEY_LEFTCTRL),264KEY(4, 5, KEY_RIGHTALT),265KEY(4, 6, KEY_LEFTSHIFT),266KEY(4, 8, KEY_F10),267268KEY(5, 0, KEY_Y),269KEY(5, 8, KEY_F11),270271KEY(6, 0, KEY_U),272273KEY(7, 0, KEY_I),274KEY(7, 1, KEY_F7),275KEY(7, 2, KEY_F8),276};277278static struct matrix_keymap_data board_map_data = {279.keymap = board_keymap,280.keymap_size = ARRAY_SIZE(board_keymap),281};282283static struct twl4030_keypad_data rx51_kp_data = {284.keymap_data = &board_map_data,285.rows = 8,286.cols = 8,287.rep = 1,288};289290static struct twl4030_madc_platform_data rx51_madc_data = {291.irq_line = 1,292};293294/* Enable input logic and pull all lines up when eMMC is on. */295static struct omap_board_mux rx51_mmc2_on_mux[] = {296OMAP3_MUX(SDMMC2_CMD, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),297OMAP3_MUX(SDMMC2_DAT0, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),298OMAP3_MUX(SDMMC2_DAT1, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),299OMAP3_MUX(SDMMC2_DAT2, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),300OMAP3_MUX(SDMMC2_DAT3, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),301OMAP3_MUX(SDMMC2_DAT4, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),302OMAP3_MUX(SDMMC2_DAT5, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),303OMAP3_MUX(SDMMC2_DAT6, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),304OMAP3_MUX(SDMMC2_DAT7, OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),305{ .reg_offset = OMAP_MUX_TERMINATOR },306};307308/* Disable input logic and pull all lines down when eMMC is off. */309static struct omap_board_mux rx51_mmc2_off_mux[] = {310OMAP3_MUX(SDMMC2_CMD, OMAP_PULL_ENA | OMAP_MUX_MODE0),311OMAP3_MUX(SDMMC2_DAT0, OMAP_PULL_ENA | OMAP_MUX_MODE0),312OMAP3_MUX(SDMMC2_DAT1, OMAP_PULL_ENA | OMAP_MUX_MODE0),313OMAP3_MUX(SDMMC2_DAT2, OMAP_PULL_ENA | OMAP_MUX_MODE0),314OMAP3_MUX(SDMMC2_DAT3, OMAP_PULL_ENA | OMAP_MUX_MODE0),315OMAP3_MUX(SDMMC2_DAT4, OMAP_PULL_ENA | OMAP_MUX_MODE0),316OMAP3_MUX(SDMMC2_DAT5, OMAP_PULL_ENA | OMAP_MUX_MODE0),317OMAP3_MUX(SDMMC2_DAT6, OMAP_PULL_ENA | OMAP_MUX_MODE0),318OMAP3_MUX(SDMMC2_DAT7, OMAP_PULL_ENA | OMAP_MUX_MODE0),319{ .reg_offset = OMAP_MUX_TERMINATOR },320};321322static struct omap_mux_partition *partition;323324/*325* Current flows to eMMC when eMMC is off and the data lines are pulled up,326* so pull them down. N.B. we pull 8 lines because we are using 8 lines.327*/328static void rx51_mmc2_remux(struct device *dev, int slot, int power_on)329{330if (power_on)331omap_mux_write_array(partition, rx51_mmc2_on_mux);332else333omap_mux_write_array(partition, rx51_mmc2_off_mux);334}335336static struct omap2_hsmmc_info mmc[] __initdata = {337{338.name = "external",339.mmc = 1,340.caps = MMC_CAP_4_BIT_DATA,341.cover_only = true,342.gpio_cd = 160,343.gpio_wp = -EINVAL,344.power_saving = true,345},346{347.name = "internal",348.mmc = 2,349.caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,350/* See also rx51_mmc2_remux */351.gpio_cd = -EINVAL,352.gpio_wp = -EINVAL,353.nonremovable = true,354.power_saving = true,355.remux = rx51_mmc2_remux,356},357{} /* Terminator */358};359360static struct regulator_consumer_supply rx51_vmmc1_supply =361REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0");362363static struct regulator_consumer_supply rx51_vaux3_supply =364REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1");365366static struct regulator_consumer_supply rx51_vsim_supply =367REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.1");368369static struct regulator_consumer_supply rx51_vmmc2_supplies[] = {370/* tlv320aic3x analog supplies */371REGULATOR_SUPPLY("AVDD", "2-0018"),372REGULATOR_SUPPLY("DRVDD", "2-0018"),373REGULATOR_SUPPLY("AVDD", "2-0019"),374REGULATOR_SUPPLY("DRVDD", "2-0019"),375/* tpa6130a2 */376REGULATOR_SUPPLY("Vdd", "2-0060"),377/* Keep vmmc as last item. It is not iterated for newer boards */378REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1"),379};380381static struct regulator_consumer_supply rx51_vio_supplies[] = {382/* tlv320aic3x digital supplies */383REGULATOR_SUPPLY("IOVDD", "2-0018"),384REGULATOR_SUPPLY("DVDD", "2-0018"),385REGULATOR_SUPPLY("IOVDD", "2-0019"),386REGULATOR_SUPPLY("DVDD", "2-0019"),387/* Si4713 IO supply */388REGULATOR_SUPPLY("vio", "2-0063"),389};390391static struct regulator_consumer_supply rx51_vaux1_consumers[] = {392REGULATOR_SUPPLY("vdds_sdi", "omapdss"),393/* Si4713 supply */394REGULATOR_SUPPLY("vdd", "2-0063"),395};396397static struct regulator_consumer_supply rx51_vdac_supply[] = {398REGULATOR_SUPPLY("vdda_dac", "omapdss_venc"),399};400401static struct regulator_init_data rx51_vaux1 = {402.constraints = {403.name = "V28",404.min_uV = 2800000,405.max_uV = 2800000,406.always_on = true, /* due battery cover sensor */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(rx51_vaux1_consumers),413.consumer_supplies = rx51_vaux1_consumers,414};415416static struct regulator_init_data rx51_vaux2 = {417.constraints = {418.name = "VCSI",419.min_uV = 1800000,420.max_uV = 1800000,421.valid_modes_mask = REGULATOR_MODE_NORMAL422| REGULATOR_MODE_STANDBY,423.valid_ops_mask = REGULATOR_CHANGE_MODE424| REGULATOR_CHANGE_STATUS,425},426};427428/* VAUX3 - adds more power to VIO_18 rail */429static struct regulator_init_data rx51_vaux3_cam = {430.constraints = {431.name = "VCAM_DIG_18",432.min_uV = 1800000,433.max_uV = 1800000,434.apply_uV = true,435.valid_modes_mask = REGULATOR_MODE_NORMAL436| REGULATOR_MODE_STANDBY,437.valid_ops_mask = REGULATOR_CHANGE_MODE438| REGULATOR_CHANGE_STATUS,439},440};441442static struct regulator_init_data rx51_vaux3_mmc = {443.constraints = {444.name = "VMMC2_30",445.min_uV = 2800000,446.max_uV = 3000000,447.apply_uV = true,448.valid_modes_mask = REGULATOR_MODE_NORMAL449| REGULATOR_MODE_STANDBY,450.valid_ops_mask = REGULATOR_CHANGE_VOLTAGE451| REGULATOR_CHANGE_MODE452| REGULATOR_CHANGE_STATUS,453},454.num_consumer_supplies = 1,455.consumer_supplies = &rx51_vaux3_supply,456};457458static struct regulator_init_data rx51_vaux4 = {459.constraints = {460.name = "VCAM_ANA_28",461.min_uV = 2800000,462.max_uV = 2800000,463.apply_uV = true,464.valid_modes_mask = REGULATOR_MODE_NORMAL465| REGULATOR_MODE_STANDBY,466.valid_ops_mask = REGULATOR_CHANGE_MODE467| REGULATOR_CHANGE_STATUS,468},469};470471static struct regulator_init_data rx51_vmmc1 = {472.constraints = {473.min_uV = 1850000,474.max_uV = 3150000,475.valid_modes_mask = REGULATOR_MODE_NORMAL476| REGULATOR_MODE_STANDBY,477.valid_ops_mask = REGULATOR_CHANGE_VOLTAGE478| REGULATOR_CHANGE_MODE479| REGULATOR_CHANGE_STATUS,480},481.num_consumer_supplies = 1,482.consumer_supplies = &rx51_vmmc1_supply,483};484485static struct regulator_init_data rx51_vmmc2 = {486.constraints = {487.name = "V28_A",488.min_uV = 2800000,489.max_uV = 3000000,490.always_on = true, /* due VIO leak to AIC34 VDDs */491.apply_uV = true,492.valid_modes_mask = REGULATOR_MODE_NORMAL493| REGULATOR_MODE_STANDBY,494.valid_ops_mask = REGULATOR_CHANGE_VOLTAGE495| REGULATOR_CHANGE_MODE496| REGULATOR_CHANGE_STATUS,497},498.num_consumer_supplies = ARRAY_SIZE(rx51_vmmc2_supplies),499.consumer_supplies = rx51_vmmc2_supplies,500};501502static struct regulator_init_data rx51_vsim = {503.constraints = {504.name = "VMMC2_IO_18",505.min_uV = 1800000,506.max_uV = 1800000,507.apply_uV = true,508.valid_modes_mask = REGULATOR_MODE_NORMAL509| REGULATOR_MODE_STANDBY,510.valid_ops_mask = REGULATOR_CHANGE_MODE511| REGULATOR_CHANGE_STATUS,512},513.num_consumer_supplies = 1,514.consumer_supplies = &rx51_vsim_supply,515};516517static struct regulator_init_data rx51_vdac = {518.constraints = {519.name = "VDAC",520.min_uV = 1800000,521.max_uV = 1800000,522.apply_uV = true,523.valid_modes_mask = REGULATOR_MODE_NORMAL524| REGULATOR_MODE_STANDBY,525.valid_ops_mask = REGULATOR_CHANGE_MODE526| REGULATOR_CHANGE_STATUS,527},528.num_consumer_supplies = 1,529.consumer_supplies = rx51_vdac_supply,530};531532static struct regulator_init_data rx51_vio = {533.constraints = {534.min_uV = 1800000,535.max_uV = 1800000,536.valid_modes_mask = REGULATOR_MODE_NORMAL537| REGULATOR_MODE_STANDBY,538.valid_ops_mask = REGULATOR_CHANGE_VOLTAGE539| REGULATOR_CHANGE_MODE540| REGULATOR_CHANGE_STATUS,541},542.num_consumer_supplies = ARRAY_SIZE(rx51_vio_supplies),543.consumer_supplies = rx51_vio_supplies,544};545546static struct si4713_platform_data rx51_si4713_i2c_data __initdata_or_module = {547.gpio_reset = RX51_FMTX_RESET_GPIO,548};549550static struct i2c_board_info rx51_si4713_board_info __initdata_or_module = {551I2C_BOARD_INFO("si4713", SI4713_I2C_ADDR_BUSEN_HIGH),552.platform_data = &rx51_si4713_i2c_data,553};554555static struct radio_si4713_platform_data rx51_si4713_data __initdata_or_module = {556.i2c_bus = 2,557.subdev_board_info = &rx51_si4713_board_info,558};559560static struct platform_device rx51_si4713_dev = {561.name = "radio-si4713",562.id = -1,563.dev = {564.platform_data = &rx51_si4713_data,565},566};567568static __init void rx51_init_si4713(void)569{570int err;571572err = gpio_request_one(RX51_FMTX_IRQ, GPIOF_DIR_IN, "si4713 irq");573if (err) {574printk(KERN_ERR "Cannot request si4713 irq gpio. %d\n", err);575return;576}577rx51_si4713_board_info.irq = gpio_to_irq(RX51_FMTX_IRQ);578platform_device_register(&rx51_si4713_dev);579}580581static int rx51_twlgpio_setup(struct device *dev, unsigned gpio, unsigned n)582{583/* FIXME this gpio setup is just a placeholder for now */584gpio_request_one(gpio + 6, GPIOF_OUT_INIT_LOW, "backlight_pwm");585gpio_request_one(gpio + 7, GPIOF_OUT_INIT_LOW, "speaker_en");586587return 0;588}589590static struct twl4030_gpio_platform_data rx51_gpio_data = {591.gpio_base = OMAP_MAX_GPIO_LINES,592.irq_base = TWL4030_GPIO_IRQ_BASE,593.irq_end = TWL4030_GPIO_IRQ_END,594.pulldowns = BIT(0) | BIT(1) | BIT(2) | BIT(3)595| BIT(4) | BIT(5)596| BIT(8) | BIT(9) | BIT(10) | BIT(11)597| BIT(12) | BIT(13) | BIT(14) | BIT(15)598| BIT(16) | BIT(17) ,599.setup = rx51_twlgpio_setup,600};601602static struct twl4030_usb_data rx51_usb_data = {603.usb_mode = T2_USB_MODE_ULPI,604};605606static struct twl4030_ins sleep_on_seq[] __initdata = {607/*608* Turn off everything609*/610{MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_SLEEP), 2},611};612613static struct twl4030_script sleep_on_script __initdata = {614.script = sleep_on_seq,615.size = ARRAY_SIZE(sleep_on_seq),616.flags = TWL4030_SLEEP_SCRIPT,617};618619static struct twl4030_ins wakeup_seq[] __initdata = {620/*621* Reenable everything622*/623{MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_ACTIVE), 2},624};625626static struct twl4030_script wakeup_script __initdata = {627.script = wakeup_seq,628.size = ARRAY_SIZE(wakeup_seq),629.flags = TWL4030_WAKEUP12_SCRIPT,630};631632static struct twl4030_ins wakeup_p3_seq[] __initdata = {633/*634* Reenable everything635*/636{MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 1, 0, RES_STATE_ACTIVE), 2},637};638639static struct twl4030_script wakeup_p3_script __initdata = {640.script = wakeup_p3_seq,641.size = ARRAY_SIZE(wakeup_p3_seq),642.flags = TWL4030_WAKEUP3_SCRIPT,643};644645static struct twl4030_ins wrst_seq[] __initdata = {646/*647* Reset twl4030.648* Reset VDD1 regulator.649* Reset VDD2 regulator.650* Reset VPLL1 regulator.651* Enable sysclk output.652* Reenable twl4030.653*/654{MSG_SINGULAR(DEV_GRP_NULL, RES_RESET, RES_STATE_OFF), 2},655{MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_ALL, 0, 1, RES_STATE_ACTIVE),6560x13},657{MSG_BROADCAST(DEV_GRP_NULL, RES_GRP_PP, 0, 3, RES_STATE_OFF), 0x13},658{MSG_SINGULAR(DEV_GRP_NULL, RES_VDD1, RES_STATE_WRST), 0x13},659{MSG_SINGULAR(DEV_GRP_NULL, RES_VDD2, RES_STATE_WRST), 0x13},660{MSG_SINGULAR(DEV_GRP_NULL, RES_VPLL1, RES_STATE_WRST), 0x35},661{MSG_SINGULAR(DEV_GRP_P3, RES_HFCLKOUT, RES_STATE_ACTIVE), 2},662{MSG_SINGULAR(DEV_GRP_NULL, RES_RESET, RES_STATE_ACTIVE), 2},663};664665static struct twl4030_script wrst_script __initdata = {666.script = wrst_seq,667.size = ARRAY_SIZE(wrst_seq),668.flags = TWL4030_WRST_SCRIPT,669};670671static struct twl4030_script *twl4030_scripts[] __initdata = {672/* wakeup12 script should be loaded before sleep script, otherwise a673board might hit retention before loading of wakeup script is674completed. This can cause boot failures depending on timing issues.675*/676&wakeup_script,677&sleep_on_script,678&wakeup_p3_script,679&wrst_script,680};681682static struct twl4030_resconfig twl4030_rconfig[] __initdata = {683{ .resource = RES_VDD1, .devgroup = -1,684.type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,685.remap_sleep = RES_STATE_OFF686},687{ .resource = RES_VDD2, .devgroup = -1,688.type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,689.remap_sleep = RES_STATE_OFF690},691{ .resource = RES_VPLL1, .devgroup = -1,692.type = 1, .type2 = -1, .remap_off = RES_STATE_OFF,693.remap_sleep = RES_STATE_OFF694},695{ .resource = RES_VPLL2, .devgroup = -1,696.type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1697},698{ .resource = RES_VAUX1, .devgroup = -1,699.type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1700},701{ .resource = RES_VAUX2, .devgroup = -1,702.type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1703},704{ .resource = RES_VAUX3, .devgroup = -1,705.type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1706},707{ .resource = RES_VAUX4, .devgroup = -1,708.type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1709},710{ .resource = RES_VMMC1, .devgroup = -1,711.type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1712},713{ .resource = RES_VMMC2, .devgroup = -1,714.type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1715},716{ .resource = RES_VDAC, .devgroup = -1,717.type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1718},719{ .resource = RES_VSIM, .devgroup = -1,720.type = -1, .type2 = 3, .remap_off = -1, .remap_sleep = -1721},722{ .resource = RES_VINTANA1, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,723.type = -1, .type2 = -1, .remap_off = -1, .remap_sleep = -1724},725{ .resource = RES_VINTANA2, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,726.type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1727},728{ .resource = RES_VINTDIG, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,729.type = -1, .type2 = -1, .remap_off = -1, .remap_sleep = -1730},731{ .resource = RES_VIO, .devgroup = DEV_GRP_P3,732.type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1733},734{ .resource = RES_CLKEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,735.type = 1, .type2 = -1 , .remap_off = -1, .remap_sleep = -1736},737{ .resource = RES_REGEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,738.type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1739},740{ .resource = RES_NRES_PWRON, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,741.type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1742},743{ .resource = RES_SYSEN, .devgroup = DEV_GRP_P1 | DEV_GRP_P3,744.type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1745},746{ .resource = RES_HFCLKOUT, .devgroup = DEV_GRP_P3,747.type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1748},749{ .resource = RES_32KCLKOUT, .devgroup = -1,750.type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1751},752{ .resource = RES_RESET, .devgroup = -1,753.type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1754},755{ .resource = RES_MAIN_REF, .devgroup = -1,756.type = 1, .type2 = -1, .remap_off = -1, .remap_sleep = -1757},758{ 0, 0},759};760761static struct twl4030_power_data rx51_t2scripts_data __initdata = {762.scripts = twl4030_scripts,763.num = ARRAY_SIZE(twl4030_scripts),764.resource_config = twl4030_rconfig,765};766767struct twl4030_codec_vibra_data rx51_vibra_data __initdata = {768.coexist = 0,769};770771struct twl4030_codec_data rx51_codec_data __initdata = {772.audio_mclk = 26000000,773.vibra = &rx51_vibra_data,774};775776static struct twl4030_platform_data rx51_twldata __initdata = {777.irq_base = TWL4030_IRQ_BASE,778.irq_end = TWL4030_IRQ_END,779780/* platform_data for children goes here */781.gpio = &rx51_gpio_data,782.keypad = &rx51_kp_data,783.madc = &rx51_madc_data,784.usb = &rx51_usb_data,785.power = &rx51_t2scripts_data,786.codec = &rx51_codec_data,787788.vaux1 = &rx51_vaux1,789.vaux2 = &rx51_vaux2,790.vaux4 = &rx51_vaux4,791.vmmc1 = &rx51_vmmc1,792.vsim = &rx51_vsim,793.vdac = &rx51_vdac,794.vio = &rx51_vio,795};796797static struct tpa6130a2_platform_data rx51_tpa6130a2_data __initdata_or_module = {798.id = TPA6130A2,799.power_gpio = 98,800};801802/* Audio setup data */803static struct aic3x_setup_data rx51_aic34_setup = {804.gpio_func[0] = AIC3X_GPIO1_FUNC_DISABLED,805.gpio_func[1] = AIC3X_GPIO2_FUNC_DIGITAL_MIC_INPUT,806};807808static struct aic3x_pdata rx51_aic3x_data = {809.setup = &rx51_aic34_setup,810.gpio_reset = 60,811};812813static struct aic3x_pdata rx51_aic3x_data2 = {814.gpio_reset = 60,815};816817static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_2[] = {818{819I2C_BOARD_INFO("tlv320aic3x", 0x18),820.platform_data = &rx51_aic3x_data,821},822{823I2C_BOARD_INFO("tlv320aic3x", 0x19),824.platform_data = &rx51_aic3x_data2,825},826#if defined(CONFIG_SENSORS_TSL2563) || defined(CONFIG_SENSORS_TSL2563_MODULE)827{828I2C_BOARD_INFO("tsl2563", 0x29),829.platform_data = &rx51_tsl2563_platform_data,830},831#endif832{833I2C_BOARD_INFO("tpa6130a2", 0x60),834.platform_data = &rx51_tpa6130a2_data,835}836};837838static int __init rx51_i2c_init(void)839{840if ((system_rev >= SYSTEM_REV_S_USES_VAUX3 && system_rev < 0x100) ||841system_rev >= SYSTEM_REV_B_USES_VAUX3) {842rx51_twldata.vaux3 = &rx51_vaux3_mmc;843/* Only older boards use VMMC2 for internal MMC */844rx51_vmmc2.num_consumer_supplies--;845} else {846rx51_twldata.vaux3 = &rx51_vaux3_cam;847}848rx51_twldata.vmmc2 = &rx51_vmmc2;849omap_pmic_init(1, 2200, "twl5030", INT_34XX_SYS_NIRQ, &rx51_twldata);850omap_register_i2c_bus(2, 100, rx51_peripherals_i2c_board_info_2,851ARRAY_SIZE(rx51_peripherals_i2c_board_info_2));852omap_register_i2c_bus(3, 400, NULL, 0);853return 0;854}855856#if defined(CONFIG_MTD_ONENAND_OMAP2) || \857defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)858859static struct mtd_partition onenand_partitions[] = {860{861.name = "bootloader",862.offset = 0,863.size = 0x20000,864.mask_flags = MTD_WRITEABLE, /* Force read-only */865},866{867.name = "config",868.offset = MTDPART_OFS_APPEND,869.size = 0x60000,870},871{872.name = "log",873.offset = MTDPART_OFS_APPEND,874.size = 0x40000,875},876{877.name = "kernel",878.offset = MTDPART_OFS_APPEND,879.size = 0x200000,880},881{882.name = "initfs",883.offset = MTDPART_OFS_APPEND,884.size = 0x200000,885},886{887.name = "rootfs",888.offset = MTDPART_OFS_APPEND,889.size = MTDPART_SIZ_FULL,890},891};892893static struct omap_onenand_platform_data board_onenand_data[] = {894{895.cs = 0,896.gpio_irq = 65,897.parts = onenand_partitions,898.nr_parts = ARRAY_SIZE(onenand_partitions),899.flags = ONENAND_SYNC_READWRITE,900}901};902#endif903904#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)905906static struct omap_smc91x_platform_data board_smc91x_data = {907.cs = 1,908.gpio_irq = 54,909.gpio_pwrdwn = 86,910.gpio_reset = 164,911.flags = GPMC_TIMINGS_SMC91C96 | IORESOURCE_IRQ_HIGHLEVEL,912};913914static void __init board_smc91x_init(void)915{916omap_mux_init_gpio(54, OMAP_PIN_INPUT_PULLDOWN);917omap_mux_init_gpio(86, OMAP_PIN_OUTPUT);918omap_mux_init_gpio(164, OMAP_PIN_OUTPUT);919920gpmc_smc91x_init(&board_smc91x_data);921}922923#else924925static inline void board_smc91x_init(void)926{927}928929#endif930931static void rx51_wl1251_set_power(bool enable)932{933gpio_set_value(RX51_WL1251_POWER_GPIO, enable);934}935936static struct gpio rx51_wl1251_gpios[] __initdata = {937{ RX51_WL1251_POWER_GPIO, GPIOF_OUT_INIT_LOW, "wl1251 power" },938{ RX51_WL1251_IRQ_GPIO, GPIOF_IN, "wl1251 irq" },939};940941static void __init rx51_init_wl1251(void)942{943int irq, ret;944945ret = gpio_request_array(rx51_wl1251_gpios,946ARRAY_SIZE(rx51_wl1251_gpios));947if (ret < 0)948goto error;949950irq = gpio_to_irq(RX51_WL1251_IRQ_GPIO);951if (irq < 0)952goto err_irq;953954wl1251_pdata.set_power = rx51_wl1251_set_power;955rx51_peripherals_spi_board_info[RX51_SPI_WL1251].irq = irq;956957return;958959err_irq:960gpio_free(RX51_WL1251_IRQ_GPIO);961gpio_free(RX51_WL1251_POWER_GPIO);962error:963printk(KERN_ERR "wl1251 board initialisation failed\n");964wl1251_pdata.set_power = NULL;965966/*967* Now rx51_peripherals_spi_board_info[1].irq is zero and968* set_power is null, and wl1251_probe() will fail.969*/970}971972void __init rx51_peripherals_init(void)973{974rx51_i2c_init();975gpmc_onenand_init(board_onenand_data);976board_smc91x_init();977rx51_add_gpio_keys();978rx51_init_wl1251();979rx51_init_si4713();980spi_register_board_info(rx51_peripherals_spi_board_info,981ARRAY_SIZE(rx51_peripherals_spi_board_info));982983partition = omap_mux_get("core");984if (partition)985omap2_hsmmc_init(mmc);986987rx51_charger_init();988}989990991992