summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpio/tegra_gpio.c3
-rw-r--r--drivers/video/tegra.c4
2 files changed, 7 insertions, 0 deletions
diff --git a/drivers/gpio/tegra_gpio.c b/drivers/gpio/tegra_gpio.c
index 0268c61020..c706affaa3 100644
--- a/drivers/gpio/tegra_gpio.c
+++ b/drivers/gpio/tegra_gpio.c
@@ -298,4 +298,7 @@ U_BOOT_CMD(
" - using 'offset', set port:bit as output and drive low or high\n"
" input offset\n"
" - using 'offset', set port:bit as input and read value"
+#ifdef CONFIG_TEGRA2
+ "\nNote: GPIO pins require manual untristating respective pin group!\n"
+#endif
);
diff --git a/drivers/video/tegra.c b/drivers/video/tegra.c
index 9eea1ca62f..90ad31e6bf 100644
--- a/drivers/video/tegra.c
+++ b/drivers/video/tegra.c
@@ -264,6 +264,10 @@ static int handle_stage(const void *blob)
#if defined(CONFIG_TEGRA2)
/* TODO: put pinmux into the FDT */
pinmux_config_table(pinmux_cros_1, ARRAY_SIZE(pinmux_cros_1));
+
+ /* Hack: manually untristate BL_ON (PT4 - SODIMM 71)
+ as specified through device-tree */
+ pinmux_tristate_disable(PINGRP_DTA);
#endif
fdt_setup_gpio(&config.panel_vdd);