]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
ARM: tegra: harmony: move over to tegra_gpio_config
authorOlof Johansson <olof@lixom.net>
Tue, 22 Feb 2011 19:29:23 +0000 (11:29 -0800)
committerOlof Johansson <olof@lixom.net>
Wed, 23 Feb 2011 01:28:06 +0000 (17:28 -0800)
Move harmony over to use the new gpio config table instead of having
separate settings in various parts of the code.

(The tegra sdhci driver should have the tegra_gpio_* ops removed, but
that will be done separately from this change.)

Signed-off-by: Olof Johansson <olof@lixom.net>
Acked-by: Erik Gilling <konkers@android.com>
arch/arm/mach-tegra/board-harmony-pinmux.c

index 50b15d500cacc73817258202178b0b79fc42478b..f3246d9f101e031de8f72a91fe7b9ce0cd6c2f77 100644 (file)
  */
 
 #include <linux/kernel.h>
+#include <linux/gpio.h>
 #include <mach/pinmux.h>
 
+#include "gpio-names.h"
 #include "board-harmony.h"
 
 static struct tegra_pingroup_config harmony_pinmux[] = {
@@ -138,7 +140,18 @@ static struct tegra_pingroup_config harmony_pinmux[] = {
        {TEGRA_PINGROUP_XM2D,  TEGRA_MUX_NONE,          TEGRA_PUPD_NORMAL,    TEGRA_TRI_NORMAL},
 };
 
+static struct tegra_gpio_table gpio_table[] = {
+       { .gpio = TEGRA_GPIO_PI5,       .enable = true  }, /* mmc2 cd   */
+       { .gpio = TEGRA_GPIO_PH1,       .enable = true  }, /* mmc2 wp   */
+       { .gpio = TEGRA_GPIO_PT3,       .enable = true  }, /* mmc2 pwr  */
+       { .gpio = TEGRA_GPIO_PH2,       .enable = true  }, /* mmc4 cd   */
+       { .gpio = TEGRA_GPIO_PH3,       .enable = true  }, /* mmc4 wp   */
+       { .gpio = TEGRA_GPIO_PI6,       .enable = true  }, /* mmc4 pwr  */
+};
+
 void harmony_pinmux_init(void)
 {
        tegra_pinmux_config_table(harmony_pinmux, ARRAY_SIZE(harmony_pinmux));
+
+       tegra_gpio_config(gpio_table, ARRAY_SIZE(gpio_table));
 }