Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

arm64: dts: qcom: ipq8074: correct PCIe QMP PHY output clock names

Current PCIe QMP PHY output name were changed in ("arm64: dts: qcom: Fix
IPQ8074 PCIe PHY nodes") however it did not account for the fact that GCC
driver is relying on the old names to match them as they are being used as
the parent for the gcc_pcie0_pipe_clk and gcc_pcie1_pipe_clk.

This broke parenting as GCC could not find the parent clock, so fix it by
changing to the names that driver is expecting.

Fixes: 942bcd33ed45 ("arm64: dts: qcom: Fix IPQ8074 PCIe PHY nodes")
Signed-off-by: Robert Marko <robimarko@gmail.com>
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20230113164449.906002-9-robimarko@gmail.com

authored by

Robert Marko and committed by
Bjorn Andersson
0e8b90c0 3e83a9c4

+2 -2
+2 -2
arch/arm64/boot/dts/qcom/ipq8074.dtsi
··· 222 222 #clock-cells = <0>; 223 223 clocks = <&gcc GCC_PCIE0_PIPE_CLK>; 224 224 clock-names = "pipe0"; 225 - clock-output-names = "pcie_0_pipe_clk"; 225 + clock-output-names = "pcie20_phy0_pipe_clk"; 226 226 }; 227 227 }; 228 228 ··· 250 250 #clock-cells = <0>; 251 251 clocks = <&gcc GCC_PCIE1_PIPE_CLK>; 252 252 clock-names = "pipe0"; 253 - clock-output-names = "pcie_1_pipe_clk"; 253 + clock-output-names = "pcie20_phy1_pipe_clk"; 254 254 }; 255 255 }; 256 256