mirror of
https://github.com/torvalds/linux.git
synced 2026-04-20 07:43:57 -04:00
Pull more thermal control updates from Rafael Wysocki:
"These are updates of assorted thermal drivers, mostly for ARM
platforms, generally isolated and fairly straightforward, and the
recent Intel HFI driver fix for systems without HFI support.
Specifics:
- Avoid clearing the HFI status bit on systems without HFI support
which triggers unchecked MSR access errors (Srinivas Pandruvada)
- Add sm8450 and sm8550 QCom compatible string to DT bindings (Luca
Weiss, Neil Armstrong)
- Use devm_platform_get_and_ioremap_resource on the ST platform to
group two calls into a single one (Minghao Chi)
- Use GENMASK instead of bitmaps and validate the temperature after
reading it in the imx8mm_thermal driver (Marcus Folkesson)
- Convert generic-adc-thermal to DT schema (Rob Herring)
- Fix debug print message with inverted logic in the k3_j72xx_bandgap
driver (Keerthy)
- Fix memory leak on thermal_of_zone_register() failure (Ido
Schimmel)
- Add support for IPQ8074 in the tsens thermal driver along with the
DT bindings (Robert Marko)
- Fix and rework the debugfs code in the tsens driver (Christian
Marangi)
- Add calibration and DT documentation for the imx8mm driver (Marek
Vasut)
- Add DT bindings and compatible for the Mediatek SoCs mt7981 and
mt7983 (Daniel Golle)
- Don't show an error message if it happens at probe time while it
will be deferred on the QCom SPMI ADC driver (Johan Hovold)
- Add HWMon support for the imx8mm board (Alexander Stein)
- Remove pointless include from the power allocator governor
(Christophe JAILLET)
- Add interrupt DT bindings for QCom SoCs SC8280XP, SM6350 and SM8450
(Krzysztof Kozlowski)
- Fix inaccurate warning message for the QCom tsens gen2 (Luca Weiss)
- Demote error log of thermal zone register to debug in the tsens
QCom driver (Manivannan Sadhasivam)
- Consolidate the the efuse values and the errata handling in the TI
Bandgap driver (Bryan Brattlof)
- Document Renesas RZ/Five as compatible with RZ/G2UL in the DT
bindings (Lad Prabhakar)
- Fix the irq handler return value in the LMh driver (Bjorn
Andersson)
- Delete empty platform remove callback from imx_sc_thermal (Uwe
Kleine-König)"
* tag 'thermal-6.2-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: (35 commits)
thermal/drivers/imx_sc_thermal: Drop empty platform remove function
thermal/drivers/qcom/lmh: Fix irq handler return value
dt-bindings: thermal: qcom-tsens: Add compatible for sm8550
thermal/drivers/st: Use devm_platform_get_and_ioremap_resource()
dt-bindings: thermal: rzg2l-thermal: Document RZ/Five SoC
dt-bindings: thermal: k3-j72xx: conditionally require efuse reg range
dt-bindings: thermal: k3-j72xx: elaborate on binding description
thermal/drivers/k3_j72xx_bandgap: Map fuse_base only for erratum workaround
thermal/drivers/k3_j72xx_bandgap: Remove fuse_base from structure
thermal/drivers/k3_j72xx_bandgap: Use bool for i2128 erratum flag
thermal/drivers/k3_j72xx_bandgap: Simplify k3_thermal_get_temp() function
thermal/drivers/qcom: Demote error log of thermal zone register to debug
thermal/drivers/qcom/temp-alarm: Fix inaccurate warning for gen2
dt-bindings: thermal: qcom-tsens: narrow interrupts for SC8280XP, SM6350 and SM8450
thermal/core/power allocator: Remove a useless include
thermal/drivers/imx8mm: Add hwmon support
thermal: qcom-spmi-adc-tm5: suppress probe-deferral error message
dt-bindings: thermal: mediatek: add compatible string for MT7986 and MT7981 SoC
thermal: ti-soc-thermal: Drop comma after SoC match table sentinel
thermal/drivers/imx: Add support for loading calibration data from OCOTP
...
290 lines
7.6 KiB
YAML
290 lines
7.6 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0 OR MIT)
|
|
# Copyright 2019 Linaro Ltd.
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/thermal/qcom-tsens.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: QCOM SoC Temperature Sensor (TSENS)
|
|
|
|
maintainers:
|
|
- Amit Kucheria <amitk@kernel.org>
|
|
|
|
description: |
|
|
QCOM SoCs have TSENS IP to allow temperature measurement. There are currently
|
|
three distinct major versions of the IP that is supported by a single driver.
|
|
The IP versions are named v0.1, v1 and v2 in the driver, where v0.1 captures
|
|
everything before v1 when there was no versioning information.
|
|
|
|
properties:
|
|
compatible:
|
|
oneOf:
|
|
- description: msm8960 TSENS based
|
|
items:
|
|
- enum:
|
|
- qcom,ipq8064-tsens
|
|
- qcom,msm8960-tsens
|
|
|
|
- description: v0.1 of TSENS
|
|
items:
|
|
- enum:
|
|
- qcom,mdm9607-tsens
|
|
- qcom,msm8916-tsens
|
|
- qcom,msm8939-tsens
|
|
- qcom,msm8974-tsens
|
|
- const: qcom,tsens-v0_1
|
|
|
|
- description: v1 of TSENS
|
|
items:
|
|
- enum:
|
|
- qcom,msm8976-tsens
|
|
- qcom,qcs404-tsens
|
|
- const: qcom,tsens-v1
|
|
|
|
- description: v2 of TSENS
|
|
items:
|
|
- enum:
|
|
- qcom,msm8953-tsens
|
|
- qcom,msm8996-tsens
|
|
- qcom,msm8998-tsens
|
|
- qcom,sc7180-tsens
|
|
- qcom,sc7280-tsens
|
|
- qcom,sc8180x-tsens
|
|
- qcom,sc8280xp-tsens
|
|
- qcom,sdm630-tsens
|
|
- qcom,sdm845-tsens
|
|
- qcom,sm6115-tsens
|
|
- qcom,sm6350-tsens
|
|
- qcom,sm8150-tsens
|
|
- qcom,sm8250-tsens
|
|
- qcom,sm8350-tsens
|
|
- qcom,sm8450-tsens
|
|
- qcom,sm8550-tsens
|
|
- const: qcom,tsens-v2
|
|
|
|
- description: v2 of TSENS with combined interrupt
|
|
enum:
|
|
- qcom,ipq8074-tsens
|
|
|
|
reg:
|
|
items:
|
|
- description: TM registers
|
|
- description: SROT registers
|
|
|
|
interrupts:
|
|
minItems: 1
|
|
maxItems: 2
|
|
|
|
interrupt-names:
|
|
minItems: 1
|
|
maxItems: 2
|
|
|
|
nvmem-cells:
|
|
minItems: 1
|
|
maxItems: 2
|
|
description:
|
|
Reference to an nvmem node for the calibration data
|
|
|
|
nvmem-cell-names:
|
|
minItems: 1
|
|
items:
|
|
- const: calib
|
|
- enum:
|
|
- calib_backup
|
|
- calib_sel
|
|
|
|
"#qcom,sensors":
|
|
description:
|
|
Number of sensors enabled on this platform
|
|
$ref: /schemas/types.yaml#/definitions/uint32
|
|
minimum: 1
|
|
maximum: 16
|
|
|
|
"#thermal-sensor-cells":
|
|
const: 1
|
|
description:
|
|
Number of cells required to uniquely identify the thermal sensors. Since
|
|
we have multiple sensors this is set to 1
|
|
|
|
required:
|
|
- compatible
|
|
- interrupts
|
|
- interrupt-names
|
|
- "#thermal-sensor-cells"
|
|
- "#qcom,sensors"
|
|
|
|
allOf:
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
contains:
|
|
enum:
|
|
- qcom,ipq8064-tsens
|
|
- qcom,mdm9607-tsens
|
|
- qcom,msm8916-tsens
|
|
- qcom,msm8960-tsens
|
|
- qcom,msm8974-tsens
|
|
- qcom,msm8976-tsens
|
|
- qcom,qcs404-tsens
|
|
- qcom,tsens-v0_1
|
|
- qcom,tsens-v1
|
|
then:
|
|
properties:
|
|
interrupts:
|
|
items:
|
|
- description: Combined interrupt if upper or lower threshold crossed
|
|
interrupt-names:
|
|
items:
|
|
- const: uplow
|
|
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
contains:
|
|
enum:
|
|
- qcom,msm8953-tsens
|
|
- qcom,msm8996-tsens
|
|
- qcom,msm8998-tsens
|
|
- qcom,sc7180-tsens
|
|
- qcom,sc7280-tsens
|
|
- qcom,sc8180x-tsens
|
|
- qcom,sc8280xp-tsens
|
|
- qcom,sdm630-tsens
|
|
- qcom,sdm845-tsens
|
|
- qcom,sm6350-tsens
|
|
- qcom,sm8150-tsens
|
|
- qcom,sm8250-tsens
|
|
- qcom,sm8350-tsens
|
|
- qcom,sm8450-tsens
|
|
- qcom,tsens-v2
|
|
then:
|
|
properties:
|
|
interrupts:
|
|
items:
|
|
- description: Combined interrupt if upper or lower threshold crossed
|
|
- description: Interrupt if critical threshold crossed
|
|
interrupt-names:
|
|
items:
|
|
- const: uplow
|
|
- const: critical
|
|
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
contains:
|
|
enum:
|
|
- qcom,ipq8074-tsens
|
|
then:
|
|
properties:
|
|
interrupts:
|
|
items:
|
|
- description: Combined interrupt if upper, lower or critical thresholds crossed
|
|
interrupt-names:
|
|
items:
|
|
- const: combined
|
|
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
contains:
|
|
enum:
|
|
- qcom,ipq8074-tsens
|
|
- qcom,tsens-v0_1
|
|
- qcom,tsens-v1
|
|
- qcom,tsens-v2
|
|
|
|
then:
|
|
required:
|
|
- reg
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
// Example msm9860 based SoC (ipq8064):
|
|
gcc: clock-controller {
|
|
|
|
/* ... */
|
|
|
|
tsens: thermal-sensor {
|
|
compatible = "qcom,ipq8064-tsens";
|
|
|
|
nvmem-cells = <&tsens_calib>, <&tsens_calib_backup>;
|
|
nvmem-cell-names = "calib", "calib_backup";
|
|
interrupts = <GIC_SPI 178 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-names = "uplow";
|
|
|
|
#qcom,sensors = <11>;
|
|
#thermal-sensor-cells = <1>;
|
|
};
|
|
};
|
|
|
|
- |
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
// Example 1 (legacy: for pre v1 IP):
|
|
tsens1: thermal-sensor@900000 {
|
|
compatible = "qcom,msm8916-tsens", "qcom,tsens-v0_1";
|
|
reg = <0x4a9000 0x1000>, /* TM */
|
|
<0x4a8000 0x1000>; /* SROT */
|
|
|
|
nvmem-cells = <&tsens_caldata>, <&tsens_calsel>;
|
|
nvmem-cell-names = "calib", "calib_sel";
|
|
|
|
interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-names = "uplow";
|
|
|
|
#qcom,sensors = <5>;
|
|
#thermal-sensor-cells = <1>;
|
|
};
|
|
|
|
- |
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
// Example 2 (for any platform containing v1 of the TSENS IP):
|
|
tsens2: thermal-sensor@4a9000 {
|
|
compatible = "qcom,qcs404-tsens", "qcom,tsens-v1";
|
|
reg = <0x004a9000 0x1000>, /* TM */
|
|
<0x004a8000 0x1000>; /* SROT */
|
|
|
|
nvmem-cells = <&tsens_caldata>;
|
|
nvmem-cell-names = "calib";
|
|
|
|
interrupts = <GIC_SPI 506 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-names = "uplow";
|
|
|
|
#qcom,sensors = <10>;
|
|
#thermal-sensor-cells = <1>;
|
|
};
|
|
|
|
- |
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
// Example 3 (for any platform containing v2 of the TSENS IP):
|
|
tsens3: thermal-sensor@c263000 {
|
|
compatible = "qcom,sdm845-tsens", "qcom,tsens-v2";
|
|
reg = <0xc263000 0x1ff>,
|
|
<0xc222000 0x1ff>;
|
|
|
|
interrupts = <GIC_SPI 506 IRQ_TYPE_LEVEL_HIGH>,
|
|
<GIC_SPI 508 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-names = "uplow", "critical";
|
|
|
|
#qcom,sensors = <13>;
|
|
#thermal-sensor-cells = <1>;
|
|
};
|
|
|
|
- |
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
// Example 4 (for any IPQ8074 based SoC-s):
|
|
tsens4: thermal-sensor@4a9000 {
|
|
compatible = "qcom,ipq8074-tsens";
|
|
reg = <0x4a9000 0x1000>,
|
|
<0x4a8000 0x1000>;
|
|
|
|
interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-names = "combined";
|
|
|
|
#qcom,sensors = <16>;
|
|
#thermal-sensor-cells = <1>;
|
|
};
|
|
...
|