| /* Copyright (c) 2012, Code Aurora Forum. All rights reserved. |
| * |
| * This program is free software; you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License version 2 and |
| * only version 2 as published by the Free Software Foundation. |
| * |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| * |
| */ |
| |
| #include <linux/init.h> |
| #include <linux/ioport.h> |
| #include <mach/board.h> |
| #include <mach/gpio.h> |
| #include <mach/gpiomux.h> |
| |
| #define KS8851_IRQ_GPIO 94 |
| |
| static struct gpiomux_setting gpio_uart_config = { |
| .func = GPIOMUX_FUNC_2, |
| .drv = GPIOMUX_DRV_16MA, |
| .pull = GPIOMUX_PULL_NONE, |
| .dir = GPIOMUX_OUT_HIGH, |
| }; |
| |
| static struct gpiomux_setting slimbus = { |
| .func = GPIOMUX_FUNC_1, |
| .drv = GPIOMUX_DRV_8MA, |
| .pull = GPIOMUX_PULL_KEEPER, |
| }; |
| |
| #if defined(CONFIG_KS8851) || defined(CONFIG_KS8851_MODULE) |
| static struct gpiomux_setting gpio_eth_config = { |
| .pull = GPIOMUX_PULL_UP, |
| .drv = GPIOMUX_DRV_2MA, |
| .func = GPIOMUX_FUNC_GPIO, |
| }; |
| |
| static struct gpiomux_setting gpio_spi_cs2_config = { |
| .func = GPIOMUX_FUNC_4, |
| .drv = GPIOMUX_DRV_6MA, |
| .pull = GPIOMUX_PULL_DOWN, |
| }; |
| |
| static struct gpiomux_setting gpio_spi_config = { |
| .func = GPIOMUX_FUNC_1, |
| .drv = GPIOMUX_DRV_12MA, |
| .pull = GPIOMUX_PULL_NONE, |
| }; |
| |
| static struct gpiomux_setting gpio_spi_cs1_config = { |
| .func = GPIOMUX_FUNC_GPIO, |
| .drv = GPIOMUX_DRV_6MA, |
| .pull = GPIOMUX_PULL_UP, |
| }; |
| |
| static struct msm_gpiomux_config msm_eth_configs[] = { |
| { |
| .gpio = KS8851_IRQ_GPIO, |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_eth_config, |
| } |
| }, |
| }; |
| #endif |
| |
| static struct gpiomux_setting wcnss_5wire_suspend_cfg = { |
| .func = GPIOMUX_FUNC_GPIO, |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_UP, |
| }; |
| |
| static struct gpiomux_setting wcnss_5wire_active_cfg = { |
| .func = GPIOMUX_FUNC_1, |
| .drv = GPIOMUX_DRV_6MA, |
| .pull = GPIOMUX_PULL_DOWN, |
| }; |
| |
| static struct gpiomux_setting gpio_i2c_config = { |
| .func = GPIOMUX_FUNC_3, |
| .drv = GPIOMUX_DRV_8MA, |
| .pull = GPIOMUX_PULL_NONE, |
| }; |
| |
| static struct gpiomux_setting lcd_en_act_cfg = { |
| .func = GPIOMUX_FUNC_GPIO, |
| .drv = GPIOMUX_DRV_8MA, |
| .pull = GPIOMUX_PULL_NONE, |
| }; |
| |
| static struct gpiomux_setting lcd_en_sus_cfg = { |
| .func = GPIOMUX_FUNC_GPIO, |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_DOWN, |
| }; |
| |
| static struct gpiomux_setting atmel_resout_sus_cfg = { |
| .func = GPIOMUX_FUNC_GPIO, |
| .drv = GPIOMUX_DRV_6MA, |
| .pull = GPIOMUX_PULL_DOWN, |
| }; |
| |
| static struct gpiomux_setting atmel_resout_act_cfg = { |
| .func = GPIOMUX_FUNC_GPIO, |
| .drv = GPIOMUX_DRV_6MA, |
| .pull = GPIOMUX_PULL_UP, |
| }; |
| |
| static struct gpiomux_setting atmel_int_act_cfg = { |
| .func = GPIOMUX_FUNC_GPIO, |
| .drv = GPIOMUX_DRV_8MA, |
| .pull = GPIOMUX_PULL_UP, |
| }; |
| |
| static struct gpiomux_setting atmel_int_sus_cfg = { |
| .func = GPIOMUX_FUNC_GPIO, |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_DOWN, |
| }; |
| |
| static struct gpiomux_setting taiko_reset = { |
| .func = GPIOMUX_FUNC_GPIO, |
| .drv = GPIOMUX_DRV_6MA, |
| .pull = GPIOMUX_PULL_NONE, |
| .dir = GPIOMUX_OUT_LOW, |
| }; |
| |
| static struct gpiomux_setting taiko_int = { |
| .func = GPIOMUX_FUNC_GPIO, |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_NONE, |
| }; |
| |
| static struct msm_gpiomux_config msm_touch_configs[] __initdata = { |
| { |
| .gpio = 60, /* TOUCH RESET */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &atmel_resout_act_cfg, |
| [GPIOMUX_SUSPENDED] = &atmel_resout_sus_cfg, |
| }, |
| }, |
| { |
| .gpio = 61, /* TOUCH IRQ */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &atmel_int_act_cfg, |
| [GPIOMUX_SUSPENDED] = &atmel_int_sus_cfg, |
| }, |
| }, |
| |
| }; |
| |
| static struct gpiomux_setting mhl_suspend_config = { |
| .func = GPIOMUX_FUNC_GPIO, |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_DOWN, |
| }; |
| |
| static struct gpiomux_setting mhl_active_1_cfg = { |
| .func = GPIOMUX_FUNC_1, |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_UP, |
| .dir = GPIOMUX_OUT_HIGH, |
| }; |
| |
| static struct gpiomux_setting mhl_active_2_cfg = { |
| .func = GPIOMUX_FUNC_1, |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_UP, |
| }; |
| |
| |
| static struct gpiomux_setting hdmi_suspend_cfg = { |
| .func = GPIOMUX_FUNC_GPIO, |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_DOWN, |
| }; |
| |
| static struct gpiomux_setting hdmi_active_1_cfg = { |
| .func = GPIOMUX_FUNC_1, |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_UP, |
| }; |
| |
| static struct gpiomux_setting hdmi_active_2_cfg = { |
| .func = GPIOMUX_FUNC_1, |
| .drv = GPIOMUX_DRV_16MA, |
| .pull = GPIOMUX_PULL_DOWN, |
| }; |
| |
| static struct msm_gpiomux_config msm_mhl_configs[] __initdata = { |
| { |
| /* mhl-sii8334 pwr */ |
| .gpio = 12, |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &mhl_suspend_config, |
| [GPIOMUX_ACTIVE] = &mhl_active_1_cfg, |
| }, |
| }, |
| { |
| /* mhl-sii8334 intr */ |
| .gpio = 82, |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &mhl_suspend_config, |
| [GPIOMUX_ACTIVE] = &mhl_active_1_cfg, |
| }, |
| }, |
| { |
| /* mhl-sii8334 reset */ |
| .gpio = 8, |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &mhl_suspend_config, |
| [GPIOMUX_ACTIVE] = &mhl_active_2_cfg, |
| }, |
| }, |
| }; |
| |
| |
| static struct msm_gpiomux_config msm_hdmi_configs[] __initdata = { |
| { |
| .gpio = 31, |
| .settings = { |
| [GPIOMUX_ACTIVE] = &hdmi_active_1_cfg, |
| [GPIOMUX_SUSPENDED] = &hdmi_suspend_cfg, |
| }, |
| }, |
| { |
| .gpio = 32, |
| .settings = { |
| [GPIOMUX_ACTIVE] = &hdmi_active_1_cfg, |
| [GPIOMUX_SUSPENDED] = &hdmi_suspend_cfg, |
| }, |
| }, |
| { |
| .gpio = 33, |
| .settings = { |
| [GPIOMUX_ACTIVE] = &hdmi_active_1_cfg, |
| [GPIOMUX_SUSPENDED] = &hdmi_suspend_cfg, |
| }, |
| }, |
| { |
| .gpio = 34, |
| .settings = { |
| [GPIOMUX_ACTIVE] = &hdmi_active_2_cfg, |
| [GPIOMUX_SUSPENDED] = &hdmi_suspend_cfg, |
| }, |
| }, |
| }; |
| |
| static struct msm_gpiomux_config msm_blsp_configs[] __initdata = { |
| #if defined(CONFIG_KS8851) || defined(CONFIG_KS8851_MODULE) |
| { |
| .gpio = 0, /* BLSP1 QUP SPI_DATA_MOSI */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_spi_config, |
| }, |
| }, |
| { |
| .gpio = 1, /* BLSP1 QUP SPI_DATA_MISO */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_spi_config, |
| }, |
| }, |
| { |
| .gpio = 3, /* BLSP1 QUP SPI_CLK */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_spi_config, |
| }, |
| }, |
| { |
| .gpio = 9, /* BLSP1 QUP SPI_CS2A_N */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_spi_cs2_config, |
| }, |
| }, |
| { |
| .gpio = 8, /* BLSP1 QUP SPI_CS1_N */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_spi_cs1_config, |
| }, |
| }, |
| #endif |
| { |
| .gpio = 58, |
| .settings = { |
| [GPIOMUX_ACTIVE] = &lcd_en_act_cfg, |
| [GPIOMUX_SUSPENDED] = &lcd_en_sus_cfg, |
| }, |
| }, |
| { |
| .gpio = 6, /* BLSP1 QUP2 I2C_DAT */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_i2c_config, |
| }, |
| }, |
| { |
| .gpio = 7, /* BLSP1 QUP2 I2C_CLK */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_i2c_config, |
| }, |
| }, |
| { |
| .gpio = 83, /* BLSP11 QUP I2C_DAT */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_i2c_config, |
| }, |
| }, |
| { |
| .gpio = 84, /* BLSP11 QUP I2C_CLK */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_i2c_config, |
| }, |
| }, |
| { |
| .gpio = 4, /* BLSP2 UART TX */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_uart_config, |
| }, |
| }, |
| { |
| .gpio = 5, /* BLSP2 UART RX */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_uart_config, |
| }, |
| }, |
| { |
| .gpio = 53, /* BLSP2 QUP4 SPI_DATA_MOSI */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_spi_config, |
| }, |
| }, |
| { |
| .gpio = 54, /* BLSP2 QUP4 SPI_DATA_MISO */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_spi_config, |
| }, |
| }, |
| { |
| .gpio = 56, /* BLSP2 QUP4 SPI_CLK */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_spi_config, |
| }, |
| }, |
| { |
| .gpio = 55, /* BLSP2 QUP4 SPI_CS0_N */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_spi_config, |
| }, |
| }, |
| }; |
| |
| static struct msm_gpiomux_config msm8974_slimbus_config[] __initdata = { |
| { |
| .gpio = 70, /* slimbus clk */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &slimbus, |
| }, |
| }, |
| { |
| .gpio = 71, /* slimbus data */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &slimbus, |
| }, |
| }, |
| }; |
| |
| static struct gpiomux_setting cam_settings[] = { |
| { |
| .func = GPIOMUX_FUNC_1, /*active 1*/ /* 0 */ |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_NONE, |
| }, |
| |
| { |
| .func = GPIOMUX_FUNC_1, /*suspend*/ /* 1 */ |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_DOWN, |
| }, |
| |
| { |
| .func = GPIOMUX_FUNC_1, /*i2c suspend*/ /* 2 */ |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_KEEPER, |
| }, |
| |
| { |
| .func = GPIOMUX_FUNC_GPIO, /*active 0*/ /* 3 */ |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_NONE, |
| }, |
| |
| { |
| .func = GPIOMUX_FUNC_GPIO, /*suspend 0*/ /* 4 */ |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_DOWN, |
| }, |
| }; |
| |
| static struct gpiomux_setting sd_card_det_config = { |
| .func = GPIOMUX_FUNC_GPIO, |
| .drv = GPIOMUX_DRV_2MA, |
| .pull = GPIOMUX_PULL_NONE, |
| .dir = GPIOMUX_IN, |
| }; |
| |
| static struct msm_gpiomux_config sd_card_det __initdata = { |
| .gpio = 62, |
| .settings = { |
| [GPIOMUX_ACTIVE] = &sd_card_det_config, |
| [GPIOMUX_SUSPENDED] = &sd_card_det_config, |
| }, |
| }; |
| |
| static struct msm_gpiomux_config msm_sensor_configs[] __initdata = { |
| { |
| .gpio = 15, /* CAM_MCLK0 */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[1], |
| }, |
| }, |
| { |
| .gpio = 16, /* CAM_MCLK1 */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[1], |
| }, |
| }, |
| { |
| .gpio = 17, /* CAM_MCLK2 */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[1], |
| }, |
| }, |
| { |
| .gpio = 18, /* WEBCAM1_RESET_N / CAM_MCLK3 */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[3], |
| [GPIOMUX_SUSPENDED] = &cam_settings[4], |
| }, |
| }, |
| { |
| .gpio = 19, /* CCI_I2C_SDA0 */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[2], |
| }, |
| }, |
| { |
| .gpio = 20, /* CCI_I2C_SCL0 */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[2], |
| }, |
| }, |
| { |
| .gpio = 21, /* CCI_I2C_SDA1 */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[2], |
| }, |
| }, |
| { |
| .gpio = 22, /* CCI_I2C_SCL1 */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[2], |
| }, |
| }, |
| { |
| .gpio = 23, /* FLASH_LED_EN */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[1], |
| }, |
| }, |
| { |
| .gpio = 24, /* FLASH_LED_NOW */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[1], |
| }, |
| }, |
| { |
| .gpio = 25, /* WEBCAM2_RESET_N */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[1], |
| }, |
| }, |
| { |
| .gpio = 26, /* CAM_IRQ */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[1], |
| }, |
| }, |
| { |
| .gpio = 27, /* OIS_SYNC */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[1], |
| }, |
| }, |
| { |
| .gpio = 28, /* WEBCAM1_STANDBY */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[1], |
| }, |
| }, |
| { |
| .gpio = 89, /* CAM1_STANDBY_N */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[1], |
| }, |
| }, |
| { |
| .gpio = 90, /* CAM1_RST_N */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[1], |
| }, |
| }, |
| { |
| .gpio = 91, /* CAM2_STANDBY_N */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[1], |
| }, |
| }, |
| { |
| .gpio = 92, /* CAM2_RST_N */ |
| .settings = { |
| [GPIOMUX_ACTIVE] = &cam_settings[0], |
| [GPIOMUX_SUSPENDED] = &cam_settings[1], |
| }, |
| }, |
| }; |
| static struct msm_gpiomux_config wcnss_5wire_interface[] = { |
| { |
| .gpio = 36, |
| .settings = { |
| [GPIOMUX_ACTIVE] = &wcnss_5wire_active_cfg, |
| [GPIOMUX_SUSPENDED] = &wcnss_5wire_suspend_cfg, |
| }, |
| }, |
| { |
| .gpio = 37, |
| .settings = { |
| [GPIOMUX_ACTIVE] = &wcnss_5wire_active_cfg, |
| [GPIOMUX_SUSPENDED] = &wcnss_5wire_suspend_cfg, |
| }, |
| }, |
| { |
| .gpio = 38, |
| .settings = { |
| [GPIOMUX_ACTIVE] = &wcnss_5wire_active_cfg, |
| [GPIOMUX_SUSPENDED] = &wcnss_5wire_suspend_cfg, |
| }, |
| }, |
| { |
| .gpio = 39, |
| .settings = { |
| [GPIOMUX_ACTIVE] = &wcnss_5wire_active_cfg, |
| [GPIOMUX_SUSPENDED] = &wcnss_5wire_suspend_cfg, |
| }, |
| }, |
| { |
| .gpio = 40, |
| .settings = { |
| [GPIOMUX_ACTIVE] = &wcnss_5wire_active_cfg, |
| [GPIOMUX_SUSPENDED] = &wcnss_5wire_suspend_cfg, |
| }, |
| }, |
| }; |
| |
| static struct msm_gpiomux_config msm_taiko_config[] __initdata = { |
| { |
| .gpio = 63, /* SYS_RST_N */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &taiko_reset, |
| }, |
| }, |
| { |
| .gpio = 72, /* CDC_INT */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &taiko_int, |
| }, |
| }, |
| }; |
| |
| void __init msm_8974_init_gpiomux(void) |
| { |
| int rc; |
| |
| rc = msm_gpiomux_init(NR_GPIO_IRQS); |
| if (rc) { |
| pr_err(KERN_ERR "msm_8974_init_gpiomux failed %d\n", rc); |
| return; |
| } |
| |
| #if defined(CONFIG_KS8851) || defined(CONFIG_KS8851_MODULE) |
| msm_gpiomux_install(msm_eth_configs, ARRAY_SIZE(msm_eth_configs)); |
| #endif |
| msm_gpiomux_install(msm_blsp_configs, ARRAY_SIZE(msm_blsp_configs)); |
| msm_gpiomux_install(wcnss_5wire_interface, |
| ARRAY_SIZE(wcnss_5wire_interface)); |
| |
| msm_gpiomux_install(msm8974_slimbus_config, |
| ARRAY_SIZE(msm8974_slimbus_config)); |
| |
| msm_gpiomux_install(msm_touch_configs, ARRAY_SIZE(msm_touch_configs)); |
| |
| msm_gpiomux_install(msm_sensor_configs, ARRAY_SIZE(msm_sensor_configs)); |
| |
| msm_gpiomux_install(&sd_card_det, 1); |
| |
| msm_gpiomux_install(msm_taiko_config, ARRAY_SIZE(msm_taiko_config)); |
| |
| msm_gpiomux_install(msm_hdmi_configs, ARRAY_SIZE(msm_hdmi_configs)); |
| msm_gpiomux_install(msm_mhl_configs, ARRAY_SIZE(msm_mhl_configs)); |
| } |