From: Stephen Warren Date: Tue, 22 Apr 2014 20:37:56 +0000 (-0600) Subject: ARM: tegra: clamp inputs on Jetson TK1 X-Git-Tag: v2014.07-rc2~9^2~5^2~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4ff213b8e478ee06feaee3505b4228163661bd3f;p=u-boot ARM: tegra: clamp inputs on Jetson TK1 The HW-defined procedure for booting Tegra requires that CLAMP_INPUTS_WHEN_TRISTATED be enabled before programming the pinmux. Modify the Jetson TK1 board to do this. Signed-off-by: Stephen Warren Signed-off-by: Tom Warren --- diff --git a/board/nvidia/jetson-tk1/jetson-tk1.c b/board/nvidia/jetson-tk1/jetson-tk1.c index 9c54bd64c4..5d37718f3b 100644 --- a/board/nvidia/jetson-tk1/jetson-tk1.c +++ b/board/nvidia/jetson-tk1/jetson-tk1.c @@ -16,6 +16,8 @@ */ void pinmux_init(void) { + pinmux_set_tristate_input_clamping(); + gpio_config_table(jetson_tk1_gpio_inits, ARRAY_SIZE(jetson_tk1_gpio_inits));