For the thermal framework to cool devfreq-managed devices properly, it seems like the following conditions must be met: 1. the devfreq device has a cooling device associated with it 2. there exists some thermal zone provider 3. the cooling device is referenced in a cooling map 4. the cooling map is associated with a thermal trip point 5. the thermal trip point is of the "passive" kind 6. the "passive" trip point is being updated (via polling or otherwise) 7. the trip point is being hit (i.e. the thing gets hot enough) Various QC DTs have various issues, mostly around 4, 5, 6 and 7. This series tries to amend the platforms that currently can't have Adreno throttled, without making much unnecessary/debatable mess, although sneaking in some configuration unification/standardization. Further updates can be made in the future. This was originally brought into attention by Daniel in [1], this series resolves the issues on a treewide scale. Developed atop (and thereby depends on) [2]. [1] https://lore.kernel.org/linux-arm-msm/20240116115921.804185-1-daniel.lezcano@xxxxxxxxxx/ [2] https://lore.kernel.org/linux-arm-msm/b4dba1d5-448a-4a4b-94d5-f27c6ff0010d@xxxxxxxxxx/T/#t Signed-off-by: Konrad Dybcio <konrad.dybcio@xxxxxxxxxx> --- Konrad Dybcio (12): arm64: dts: qcom: sc8180x: Throttle the GPU when overheating arm64: dts: qcom: sc8280xp: Throttle the GPU when overheating arm64: dts: qcom: sdm630: Throttle the GPU when overheating arm64: dts: qcom: sdm845: Throttle the GPU when overheating arm64: dts: qcom: sm6115: Update GPU thermal zone settings arm64: dts: qcom: sm6350: Update GPU thermal zone settings arm64: dts: qcom: sm8150: Throttle the GPU when overheating arm64: dts: qcom: sm8250: Throttle the GPU when overheating arm64: dts: qcom: sm8350: Throttle the GPU when overheating arm64: dts: qcom: sm8450: Throttle the GPU when overheating arm64: dts: qcom: sm8550: Throttle the GPU when overheating arm64: dts: qcom: sm8650: Throttle the GPU when overheating arch/arm64/boot/dts/qcom/sc8180x.dtsi | 28 ++++- arch/arm64/boot/dts/qcom/sc8280xp.dtsi | 17 ++- arch/arm64/boot/dts/qcom/sdm630.dtsi | 12 ++ arch/arm64/boot/dts/qcom/sdm845.dtsi | 28 ++++- arch/arm64/boot/dts/qcom/sm6115.dtsi | 8 +- arch/arm64/boot/dts/qcom/sm6350.dtsi | 16 ++- arch/arm64/boot/dts/qcom/sm8150.dtsi | 28 ++++- arch/arm64/boot/dts/qcom/sm8250.dtsi | 28 ++++- arch/arm64/boot/dts/qcom/sm8350.dtsi | 24 ++++ arch/arm64/boot/dts/qcom/sm8450.dtsi | 48 +++----- arch/arm64/boot/dts/qcom/sm8550.dtsi | 208 +++++++++++++-------------------- arch/arm64/boot/dts/qcom/sm8650.dtsi | 169 ++++++++++++++++++++++----- 12 files changed, 406 insertions(+), 208 deletions(-) --- base-commit: 2adffd063e54f8790132eedfaf3019bfb6f62268 change-id: 20240510-topic-gpus_are_cool_now-ed8d8c4f5f7f Best regards, -- Konrad Dybcio <konrad.dybcio@xxxxxxxxxx>