diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2016-06-06 16:24:43 -0400 |
---|---|---|
committer | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2016-06-07 05:00:32 -0400 |
commit | 2969c03763b40e946b46aee57ef083527711c69f (patch) | |
tree | e27c50c07976eee969ba2e36bd1ace4bcf1f4056 | |
parent | 1a695a905c18548062509178b98bc91e67510864 (diff) |
ARM: dts: exynos: Fix port nodes names for Exynos5250 Snow board
Commit 5c9cbade0629 ("ARM: dts: exynos: Fix DTC unit name warnings in
Exynos5250") fixed all the DTC warnings about mismatchs between unit
names and reg properties in Exynos5250 boards DTS.
But unfortunately it also added a regression on the Exynos5250 Snow
Chromebook when changing the port node names since the OF graph logic
expects the port nodes to be always named 'port'.
The Documentation/devicetree/bindings/graph.txt binding document says
that when there is more than one port, '#address-cells', '#size-cells'
and 'reg' properties should be used to number the port nodes.
Fixes: 5c9cbade0629 ("ARM: dts: exynos: Fix DTC unit name warnings in Exynos5250")
Reported-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Tested-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
-rw-r--r-- | arch/arm/boot/dts/exynos5250-snow-common.dtsi | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/arch/arm/boot/dts/exynos5250-snow-common.dtsi b/arch/arm/boot/dts/exynos5250-snow-common.dtsi index ddfe1f558c10..fa14f77df563 100644 --- a/arch/arm/boot/dts/exynos5250-snow-common.dtsi +++ b/arch/arm/boot/dts/exynos5250-snow-common.dtsi | |||
@@ -242,7 +242,7 @@ | |||
242 | hpd-gpios = <&gpx0 7 GPIO_ACTIVE_HIGH>; | 242 | hpd-gpios = <&gpx0 7 GPIO_ACTIVE_HIGH>; |
243 | 243 | ||
244 | ports { | 244 | ports { |
245 | port0 { | 245 | port { |
246 | dp_out: endpoint { | 246 | dp_out: endpoint { |
247 | remote-endpoint = <&bridge_in>; | 247 | remote-endpoint = <&bridge_in>; |
248 | }; | 248 | }; |
@@ -485,13 +485,20 @@ | |||
485 | edid-emulation = <5>; | 485 | edid-emulation = <5>; |
486 | 486 | ||
487 | ports { | 487 | ports { |
488 | port0 { | 488 | #address-cells = <1>; |
489 | #size-cells = <0>; | ||
490 | |||
491 | port@0 { | ||
492 | reg = <0>; | ||
493 | |||
489 | bridge_out: endpoint { | 494 | bridge_out: endpoint { |
490 | remote-endpoint = <&panel_in>; | 495 | remote-endpoint = <&panel_in>; |
491 | }; | 496 | }; |
492 | }; | 497 | }; |
493 | 498 | ||
494 | port1 { | 499 | port@1 { |
500 | reg = <1>; | ||
501 | |||
495 | bridge_in: endpoint { | 502 | bridge_in: endpoint { |
496 | remote-endpoint = <&dp_out>; | 503 | remote-endpoint = <&dp_out>; |
497 | }; | 504 | }; |