summaryrefslogtreecommitdiff
path: root/arch/arm/include/asm/arch-tegra124
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2015-02-24 21:08:24 (GMT)
committerTom Warren <twarren@nvidia.com>2015-03-04 17:08:59 (GMT)
commit7a28441f4d89cac6885a7e817e41379c83cb35aa (patch)
treed747f8ec40905f88900e6463ec6f0422e100b137 /arch/arm/include/asm/arch-tegra124
parent9f21c1a378f89c6f4ee06e5aeea37c426fdec15f (diff)
downloadu-boot-7a28441f4d89cac6885a7e817e41379c83cb35aa.tar.xz
ARM: tegra: pinmux: simplify some defines
Future SoCs have a slightly different combination of pinmux options per pin. This will be simpler to handle if we simply have one define per option, rather than grouping various options together, in combinations that don't align with future chips. Signed-off-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'arch/arm/include/asm/arch-tegra124')
-rw-r--r--arch/arm/include/asm/arch-tegra124/pinmux.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/arch/arm/include/asm/arch-tegra124/pinmux.h b/arch/arm/include/asm/arch-tegra124/pinmux.h
index 1884935..c440f9f 100644
--- a/arch/arm/include/asm/arch-tegra124/pinmux.h
+++ b/arch/arm/include/asm/arch-tegra124/pinmux.h
@@ -335,9 +335,13 @@ enum pmux_func {
PMUX_FUNC_COUNT,
};
-#define TEGRA_PMX_HAS_PIN_IO_BIT_ETC
-#define TEGRA_PMX_HAS_RCV_SEL
-#define TEGRA_PMX_HAS_DRVGRPS
+#define TEGRA_PMX_SOC_HAS_IO_CLAMPING
+#define TEGRA_PMX_SOC_HAS_DRVGRPS
+#define TEGRA_PMX_PINS_HAVE_E_INPUT
+#define TEGRA_PMX_PINS_HAVE_LOCK
+#define TEGRA_PMX_PINS_HAVE_OD
+#define TEGRA_PMX_PINS_HAVE_IO_RESET
+#define TEGRA_PMX_PINS_HAVE_RCV_SEL
#include <asm/arch-tegra/pinmux.h>
#endif /* _TEGRA124_PINMUX_H_ */