Message ID | 20230327163249.1081824-4-quic_mohs@quicinc.com |
---|---|
State | New |
Headers | show |
Series | Remove the qdsp6ss register from lpasscc | expand |
diff --git a/arch/arm64/boot/dts/qcom/sc7280.dtsi b/arch/arm64/boot/dts/qcom/sc7280.dtsi index 3914f262aa12..625ac36790a0 100644 --- a/arch/arm64/boot/dts/qcom/sc7280.dtsi +++ b/arch/arm64/boot/dts/qcom/sc7280.dtsi @@ -2230,11 +2230,10 @@ tcsr_2: syscon@1fc0000 { reg = <0 0x01fc0000 0 0x30000>; }; - lpasscc: clock-controller@3000000 { + lpasscc: clock-controller@3c04000 { compatible = "qcom,sc7280-lpasscc"; - reg = <0 0x03000000 0 0x40>, - <0 0x03c04000 0 0x4>; - reg-names = "qdsp6ss", "top_cc"; + reg = <0 0x03c04000 0 0x4>; + reg-names = "top_cc"; clocks = <&gcc GCC_CFG_NOC_LPASS_CLK>; clock-names = "iface"; #clock-cells = <1>;
The qdsp6ss memory region is being shared by ADSP remoteproc device and lpasscc clock device, hence causing memory conflict and as the qdsp6ss clocks are being enabled in remoteproc driver, remove the register memory region from lpasscc device tree node. Change the base address of lpasscc with top_cc register address. Signed-off-by: Mohammad Rafi Shaik <quic_mohs@quicinc.com> --- arch/arm64/boot/dts/qcom/sc7280.dtsi | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-)