Skip to content

Commit 972b567

Browse files
committed
ARM: dts: exynos: move DP and MIPI phys to PMU node in Exynos5420
The DisplayPort and MIPI phys are actually part of the Power Management Unit system controller. They do not have their own address space, thus keeping the nodes under soc causes warnings: exynos5420-smdk5420.dtb: soc: dp-video-phy: {'compatible': ['samsung,exynos5420-dp-video-phy'], 'samsung,pmu-syscon': [[11]], '#phy-cells': [[0]], 'phandle': [[16]]} should not be valid under {'type': 'object'} Tested-by: Marek Szyprowski <m.szyprowski@samsung.com> Link: https://lore.kernel.org/r/20230127194057.186458-7-krzysztof.kozlowski@linaro.org Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
1 parent d237b22 commit 972b567

1 file changed

Lines changed: 11 additions & 13 deletions

File tree

arch/arm/boot/dts/exynos5420.dtsi

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -696,18 +696,6 @@
696696
status = "disabled";
697697
};
698698

699-
dp_phy: dp-video-phy {
700-
compatible = "samsung,exynos5420-dp-video-phy";
701-
samsung,pmu-syscon = <&pmu_system_controller>;
702-
#phy-cells = <0>;
703-
};
704-
705-
mipi_phy: mipi-video-phy {
706-
compatible = "samsung,exynos5420-mipi-video-phy";
707-
syscon = <&pmu_system_controller>;
708-
#phy-cells = <1>;
709-
};
710-
711699
dsi: dsi@14500000 {
712700
compatible = "samsung,exynos5410-mipi-dsi";
713701
reg = <0x14500000 0x10000>;
@@ -933,14 +921,24 @@
933921
};
934922

935923
pmu_system_controller: system-controller@10040000 {
936-
compatible = "samsung,exynos5420-pmu", "syscon";
924+
compatible = "samsung,exynos5420-pmu", "simple-mfd", "syscon";
937925
reg = <0x10040000 0x5000>;
938926
clock-names = "clkout16";
939927
clocks = <&clock CLK_FIN_PLL>;
940928
#clock-cells = <1>;
941929
interrupt-controller;
942930
#interrupt-cells = <3>;
943931
interrupt-parent = <&gic>;
932+
933+
dp_phy: dp-phy {
934+
compatible = "samsung,exynos5420-dp-video-phy";
935+
#phy-cells = <0>;
936+
};
937+
938+
mipi_phy: mipi-phy {
939+
compatible = "samsung,exynos5420-mipi-video-phy";
940+
#phy-cells = <1>;
941+
};
944942
};
945943

946944
tmu_cpu0: tmu@10060000 {

0 commit comments

Comments
 (0)