Commit 1b5bad01 authored by Thierry Reding's avatar Thierry Reding
Browse files

ARM: tegra: Rename GPU node on Tegra124



In order to be able to pass DT schema validation, change the GPU nodes'
unit-address to the standard notation. Previously this was using a "0,"
prefix that originated from a time when the top-level device tree node
contained #address-cells = <2>.

Note that this technically breaks backwards-compatibility with certain
older versions of the U-Boot bootloader because early versions used a
hard-coded DT path lookup to find the GPU node and perform some fixups
on it. However, this was changed to a compatible string based lookup in
April 2016, so it's reasonable to expect people to update U-Boot on the
systems that they want to use this updated kernel DTB with.

Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 63658cbc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ hdmi@54280000 {
		};
	};

	gpu@0,57000000 {
	gpu@57000000 {
		/*
		 * Node left disabled on purpose - the bootloader will enable
		 * it after having set the VPR up
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ hdmi@54280000 {
		};
	};

	gpu@0,57000000 {
	gpu@57000000 {
		/*
		 * Node left disabled on purpose - the bootloader will enable
		 * it after having set the VPR up
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ cec@70015000 {
		status = "okay";
	};

	gpu@0,57000000 {
	gpu@57000000 {
		/*
		 * Node left disabled on purpose - the bootloader will enable
		 * it after having set the VPR up
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ dpaux@545c0000 {
		};
	};

	gpu@0,57000000 {
	gpu@57000000 {
		status = "okay";

		vdd-supply = <&vdd_gpu>;
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ dpaux@545c0000 {
		};
	};

	gpu@0,57000000 {
	gpu@57000000 {
		/*
		 * Node left disabled on purpose - the bootloader will enable
		 * it after having set the VPR up
Loading