diff mbox series

arm: tegra: Restore host1x/dc dm-pre-reloc properties

Message ID 20180711165653.12738-1-kwizart@gmail.com
State Not Applicable
Headers show
Series arm: tegra: Restore host1x/dc dm-pre-reloc properties | expand

Commit Message

Nicolas Chauvet July 11, 2018, 4:56 p.m. UTC
Since commit f2faffecb016, tegra: Convert to use binman
the dm-pre-reloc properties are removed.

This lead uboot not to enable the display on paz00

This patch restore the dm-pre-reloc properties allowing
the bootloader to output to the display panel

v2: - Add more character to commit hash

Signed-off-by: Nicolas Chauvet <kwizart@gmail.com>
---
 arch/arm/dts/tegra20-u-boot.dtsi | 10 ++++++++++
 1 file changed, 10 insertions(+)
diff mbox series

Patch

diff --git a/arch/arm/dts/tegra20-u-boot.dtsi b/arch/arm/dts/tegra20-u-boot.dtsi
index 7c11972552..f64667e549 100644
--- a/arch/arm/dts/tegra20-u-boot.dtsi
+++ b/arch/arm/dts/tegra20-u-boot.dtsi
@@ -1,3 +1,13 @@ 
 #include <config.h>
 
 #include "tegra-u-boot.dtsi"
+
+
+/ {
+	host1x@50000000 {
+		u-boot,dm-pre-reloc;
+		dc@54200000 {
+			u-boot,dm-pre-reloc;
+		};
+	};
+};