diff options
author | Simon Glass | 2017-06-12 06:22:01 -0600 |
---|---|---|
committer | Simon Glass | 2017-07-11 10:08:20 -0600 |
commit | f53dcc0e35b46f169432448d8db254b0d6776806 (patch) | |
tree | 58ba898bc492619ac25b659bd5e4d8ad29e7c87e /arch/arm/dts/tegra20-colibri.dts | |
parent | 50d8c4a4652311e66e6ff1e44d09f17046261ee1 (diff) |
tegra: fdt: Ensure that the console UART is enabled
Many tegra boards have the console UART node disabled. With livetree this
prevents serial from working since it does not 'force' the console to be
bound. Updates the affected boards to fix this error.
The boards were checked with:
for b in $(grep tegra boards.cfg |grep -v integrator | \
awk '{print $7}' | sort); do
echo $b;
fdtgrep -c nvidia,tegra20-uart b/$b/u-boot.dtb |grep okay;
done
Signed-off-by: Simon Glass <sjg@chromium.org>
Tested-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Tested-on: Beaver, Jetson-TK1
Diffstat (limited to 'arch/arm/dts/tegra20-colibri.dts')
-rw-r--r-- | arch/arm/dts/tegra20-colibri.dts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/dts/tegra20-colibri.dts b/arch/arm/dts/tegra20-colibri.dts index 3c10dd6630a..9171319d98b 100644 --- a/arch/arm/dts/tegra20-colibri.dts +++ b/arch/arm/dts/tegra20-colibri.dts @@ -162,3 +162,7 @@ }; }; }; + +&uarta { + status = "okay"; +}; |