Change-Id: Ibead64ce2e901dede2ddd1b86088b88f2350ce92 Signed-off-by: Duy Truong <dtruong@codeaurora.org>
368 lines
7.9 KiB
C
368 lines
7.9 KiB
C
/* Copyright (c) 2012, The Linux Foundation. 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 90
|
|
|
|
static struct gpiomux_setting gpio_uart_config = {
|
|
.func = GPIOMUX_FUNC_2,
|
|
.drv = GPIOMUX_DRV_16MA,
|
|
.pull = GPIOMUX_PULL_NONE,
|
|
.dir = GPIOMUX_OUT_HIGH,
|
|
};
|
|
|
|
#if defined(CONFIG_KS8851) || defined(CONFIG_KS8851_MODULE)
|
|
static struct gpiomux_setting gpio_eth_config = {
|
|
.pull = GPIOMUX_PULL_NONE,
|
|
.drv = GPIOMUX_DRV_8MA,
|
|
.func = GPIOMUX_FUNC_GPIO,
|
|
};
|
|
|
|
static struct gpiomux_setting gpio_spi_cs_config = {
|
|
.func = GPIOMUX_FUNC_4,
|
|
.drv = GPIOMUX_DRV_12MA,
|
|
.pull = GPIOMUX_PULL_NONE,
|
|
};
|
|
|
|
static struct gpiomux_setting gpio_spi_config = {
|
|
.func = GPIOMUX_FUNC_1,
|
|
.drv = GPIOMUX_DRV_12MA,
|
|
.pull = GPIOMUX_PULL_NONE,
|
|
};
|
|
|
|
static struct msm_gpiomux_config msm_eth_configs[] = {
|
|
{
|
|
.gpio = KS8851_IRQ_GPIO,
|
|
.settings = {
|
|
[GPIOMUX_SUSPENDED] = &gpio_eth_config,
|
|
}
|
|
},
|
|
};
|
|
#endif
|
|
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_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 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 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_CS_N */
|
|
.settings = {
|
|
[GPIOMUX_SUSPENDED] = &gpio_spi_cs_config,
|
|
},
|
|
},
|
|
#endif
|
|
{
|
|
.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,
|
|
},
|
|
},
|
|
};
|
|
|
|
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*/
|
|
.drv = GPIOMUX_DRV_2MA,
|
|
.pull = GPIOMUX_PULL_NONE,
|
|
},
|
|
|
|
{
|
|
.func = GPIOMUX_FUNC_1, /*suspend*/
|
|
.drv = GPIOMUX_DRV_2MA,
|
|
.pull = GPIOMUX_PULL_DOWN,
|
|
},
|
|
|
|
{
|
|
.func = GPIOMUX_FUNC_1, /*i2c suspend*/
|
|
.drv = GPIOMUX_DRV_2MA,
|
|
.pull = GPIOMUX_PULL_KEEPER,
|
|
},
|
|
};
|
|
|
|
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[0],
|
|
[GPIOMUX_SUSPENDED] = &cam_settings[1],
|
|
},
|
|
},
|
|
{
|
|
.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 msm_taiko_config[] __initdata = {
|
|
{
|
|
.gpio = 63, /* SYS_RST_N */
|
|
.settings = {
|
|
[GPIOMUX_SUSPENDED] = &taiko_reset,
|
|
},
|
|
}
|
|
};
|
|
|
|
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(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(msm_taiko_config, ARRAY_SIZE(msm_taiko_config));
|
|
}
|