| /* |
| * Copyright (C) ST-Ericsson SA 2010 |
| * |
| * License terms: GNU General Public License (GPL) version 2 |
| */ |
| |
| #include <linux/kernel.h> |
| #include <linux/init.h> |
| #include <linux/bug.h> |
| #include <linux/string.h> |
| #include <linux/pinctrl/machine.h> |
| #include <linux/pinctrl/pinconf-generic.h> |
| |
| #include <asm/mach-types.h> |
| |
| #include "board-mop500.h" |
| |
| /* These simply sets bias for pins */ |
| #define BIAS(a,b) static unsigned long a[] = { b } |
| |
| BIAS(abx500_in_pd, PIN_CONF_PACKED(PIN_CONFIG_BIAS_PULL_DOWN, 1)); |
| BIAS(abx500_in_nopull, PIN_CONF_PACKED(PIN_CONFIG_BIAS_PULL_DOWN, 0)); |
| |
| #define AB8500_MUX_HOG(group, func) \ |
| PIN_MAP_MUX_GROUP_HOG_DEFAULT("pinctrl-ab8500.0", group, func) |
| #define AB8500_PIN_HOG(pin, conf) \ |
| PIN_MAP_CONFIGS_PIN_HOG_DEFAULT("pinctrl-ab8500.0", pin, abx500_##conf) |
| |
| #define AB8500_MUX_STATE(group, func, dev, state) \ |
| PIN_MAP_MUX_GROUP(dev, state, "pinctrl-ab8500.0", group, func) |
| #define AB8500_PIN_STATE(pin, conf, dev, state) \ |
| PIN_MAP_CONFIGS_PIN(dev, state, "pinctrl-ab8500.0", pin, abx500_##conf) |
| |
| #define AB8505_MUX_HOG(group, func) \ |
| PIN_MAP_MUX_GROUP_HOG_DEFAULT("pinctrl-ab8505.0", group, func) |
| #define AB8505_PIN_HOG(pin, conf) \ |
| PIN_MAP_CONFIGS_PIN_HOG_DEFAULT("pinctrl-ab8505.0", pin, abx500_##conf) |
| |
| #define AB8505_MUX_STATE(group, func, dev, state) \ |
| PIN_MAP_MUX_GROUP(dev, state, "pinctrl-ab8505.0", group, func) |
| #define AB8505_PIN_STATE(pin, conf, dev, state) \ |
| PIN_MAP_CONFIGS_PIN(dev, state, "pinctrl-ab8505.0", pin, abx500_##conf) |
| |
| static struct pinctrl_map __initdata ab8500_pinmap[] = { |
| /* Sysclkreq2 */ |
| AB8500_MUX_STATE("sysclkreq2_d_1", "sysclkreq", "regulator.35", PINCTRL_STATE_DEFAULT), |
| AB8500_PIN_STATE("GPIO1_T10", in_nopull, "regulator.35", PINCTRL_STATE_DEFAULT), |
| /* sysclkreq2 disable, mux in gpio configured in input pulldown */ |
| AB8500_MUX_STATE("gpio1_a_1", "gpio", "regulator.35", PINCTRL_STATE_SLEEP), |
| AB8500_PIN_STATE("GPIO1_T10", in_pd, "regulator.35", PINCTRL_STATE_SLEEP), |
| |
| /* Sysclkreq4 */ |
| AB8500_MUX_STATE("sysclkreq4_d_1", "sysclkreq", "regulator.36", PINCTRL_STATE_DEFAULT), |
| AB8500_PIN_STATE("GPIO3_U9", in_nopull, "regulator.36", PINCTRL_STATE_DEFAULT), |
| /* sysclkreq4 disable, mux in gpio configured in input pulldown */ |
| AB8500_MUX_STATE("gpio3_a_1", "gpio", "regulator.36", PINCTRL_STATE_SLEEP), |
| AB8500_PIN_STATE("GPIO3_U9", in_pd, "regulator.36", PINCTRL_STATE_SLEEP), |
| |
| /* |
| * pins 34 is muxed in EXTCPENA |
| * configured INPUT PULL DOWN |
| */ |
| AB8500_MUX_HOG("extcpena_d_1", "extcpena"), |
| AB8500_PIN_HOG("GPIO34_R17", in_pd), |
| |
| /* |
| * pins 40 and 41 are muxed in MODCSLSDA |
| * configured INPUT PULL DOWN |
| */ |
| AB8500_MUX_HOG("modsclsda_d_1", "modsclsda"), |
| AB8500_PIN_HOG("GPIO40_T19", in_pd), |
| AB8500_PIN_HOG("GPIO41_U19", in_pd), |
| }; |
| |
| static struct pinctrl_map __initdata ab8505_pinmap[] = { |
| /* Sysclkreq2 */ |
| AB8505_MUX_STATE("sysclkreq2_d_1", "sysclkreq", "regulator.36", PINCTRL_STATE_DEFAULT), |
| AB8505_PIN_STATE("GPIO1_N4", in_nopull, "regulator.36", PINCTRL_STATE_DEFAULT), |
| /* sysclkreq2 disable, mux in gpio configured in input pulldown */ |
| AB8505_MUX_STATE("gpio1_a_1", "gpio", "regulator.36", PINCTRL_STATE_SLEEP), |
| AB8505_PIN_STATE("GPIO1_N4", in_pd, "regulator.36", PINCTRL_STATE_SLEEP), |
| |
| /* pins 2 is muxed in GPIO, configured in INPUT PULL DOWN */ |
| AB8505_MUX_HOG("gpio2_a_1", "gpio"), |
| AB8505_PIN_HOG("GPIO2_R5", in_pd), |
| |
| /* Sysclkreq4 */ |
| AB8505_MUX_STATE("sysclkreq4_d_1", "sysclkreq", "regulator.37", PINCTRL_STATE_DEFAULT), |
| AB8505_PIN_STATE("GPIO3_P5", in_nopull, "regulator.37", PINCTRL_STATE_DEFAULT), |
| /* sysclkreq4 disable, mux in gpio configured in input pulldown */ |
| AB8505_MUX_STATE("gpio3_a_1", "gpio", "regulator.37", PINCTRL_STATE_SLEEP), |
| AB8505_PIN_STATE("GPIO3_P5", in_pd, "regulator.37", PINCTRL_STATE_SLEEP), |
| |
| AB8505_MUX_HOG("gpio10_d_1", "gpio"), |
| AB8505_PIN_HOG("GPIO10_B16", in_pd), |
| |
| AB8505_MUX_HOG("gpio11_d_1", "gpio"), |
| AB8505_PIN_HOG("GPIO11_B17", in_pd), |
| |
| AB8505_MUX_HOG("gpio13_d_1", "gpio"), |
| AB8505_PIN_HOG("GPIO13_D17", in_nopull), |
| |
| AB8505_MUX_HOG("pwmout1_d_1", "pwmout"), |
| AB8505_PIN_HOG("GPIO14_C16", in_pd), |
| |
| AB8505_MUX_HOG("adi2_d_1", "adi2"), |
| AB8505_PIN_HOG("GPIO17_P2", in_pd), |
| AB8505_PIN_HOG("GPIO18_N3", in_pd), |
| AB8505_PIN_HOG("GPIO19_T1", in_pd), |
| AB8505_PIN_HOG("GPIO20_P3", in_pd), |
| |
| AB8505_MUX_HOG("gpio34_a_1", "gpio"), |
| AB8505_PIN_HOG("GPIO34_H14", in_pd), |
| |
| AB8505_MUX_HOG("modsclsda_d_1", "modsclsda"), |
| AB8505_PIN_HOG("GPIO40_J15", in_pd), |
| AB8505_PIN_HOG("GPIO41_J14", in_pd), |
| |
| AB8505_MUX_HOG("gpio50_d_1", "gpio"), |
| AB8505_PIN_HOG("GPIO50_L4", in_nopull), |
| |
| AB8505_MUX_HOG("resethw_d_1", "resethw"), |
| AB8505_PIN_HOG("GPIO52_D16", in_pd), |
| |
| AB8505_MUX_HOG("service_d_1", "service"), |
| AB8505_PIN_HOG("GPIO53_D15", in_pd), |
| }; |
| |
| void __init mop500_pinmaps_init(void) |
| { |
| if (machine_is_u8520()) |
| pinctrl_register_mappings(ab8505_pinmap, |
| ARRAY_SIZE(ab8505_pinmap)); |
| else |
| pinctrl_register_mappings(ab8500_pinmap, |
| ARRAY_SIZE(ab8500_pinmap)); |
| } |
| |
| void __init snowball_pinmaps_init(void) |
| { |
| pinctrl_register_mappings(ab8500_pinmap, |
| ARRAY_SIZE(ab8500_pinmap)); |
| } |
| |
| void __init hrefv60_pinmaps_init(void) |
| { |
| pinctrl_register_mappings(ab8500_pinmap, |
| ARRAY_SIZE(ab8500_pinmap)); |
| } |