diff options
author | Olof Johansson <olof@lixom.net> | 2011-02-14 03:12:27 (GMT) |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2011-02-23 01:27:11 (GMT) |
commit | 632095ea15db51d73d3d084ee18620d3ac1cb040 (patch) | |
tree | f3cf8e089309abce2843e4eeab5e125a56a99752 /arch/arm/mach-tegra/gpio.c | |
parent | 38376866a1fe5b1e6d9510ec4913c2b461f456f3 (diff) | |
download | linux-fsl-qoriq-632095ea15db51d73d3d084ee18620d3ac1cb040.tar.xz |
ARM: tegra: add tegra_gpio_table and tegra_gpio_config
To give one place to setup the pins that are used as GPIOs instead
of as their pinmuxed functions. Specifying enabled as false explicitly
disables the gpio mode of that pin (if left on by firmware).
This should remove the need for calling these from specific drivers and
thus reduce tegra-specific code from them.
Signed-off-by: Olof Johansson <olof@lixom.net>
Acked-by: Erik Gilling <konkers@android.com>
Diffstat (limited to 'arch/arm/mach-tegra/gpio.c')
-rw-r--r-- | arch/arm/mach-tegra/gpio.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/gpio.c b/arch/arm/mach-tegra/gpio.c index 132dcd6..12090a2 100644 --- a/arch/arm/mach-tegra/gpio.c +++ b/arch/arm/mach-tegra/gpio.c @@ -381,6 +381,20 @@ static int __init tegra_gpio_init(void) postcore_initcall(tegra_gpio_init); +void __init tegra_gpio_config(struct tegra_gpio_table *table, int num) +{ + int i; + + for (i = 0; i < num; i++) { + int gpio = table[i].gpio; + + if (table[i].enable) + tegra_gpio_enable(gpio); + else + tegra_gpio_disable(gpio); + } +} + #ifdef CONFIG_DEBUG_FS #include <linux/debugfs.h> |