Re: [PATCH v2 2/2] arm64: dts: qcom: qcs615: Add CPU scaling clock node

From: Taniya Das
Date: Tue Jun 10 2025 - 05:31:54 EST




On 2/10/2025 11:28 PM, Konrad Dybcio wrote:
> On 19.01.2025 1:00 PM, Taniya Das wrote:
>> Add cpufreq-hw node to support CPU frequency scaling.
>>
>> Signed-off-by: Taniya Das <quic_tdas@xxxxxxxxxxx>
>> ---
>
> [...]
>
>> + cpufreq_hw: cpufreq@18323000 {
>> + compatible = "qcom,sc7180-cpufreq-hw", qcom,cpufreq-hw";
>> + reg = <0 0x18323000 0 0x1400>, <0 0x18325800 0 0x1400>;
>> + reg-names = "freq-domain0", "freq-domain1";
>> +
>> + clocks = <&rpmhcc RPMH_CXO_CLK>, <&gcc GPLL0>;
>> + clock-names = "xo", "alternate";
>> +
>> + #freq-domain-cells = <1>;
>> + #clock-cells = <1>;
>> + };
>
> This should be a child of the /soc node
>

My bad, I will move it under /soc.

> Konrad