Add snapshot of device tree bindings from keystone common kernel, branch "android-mainline-keystone-qcom-release" at c4c12103f9c0 ("Snap for 9228065 from e32903b9a63bb558df8b803b076619c53c16baad to android-mainline-keystone-qcom-release"). Change-Id: I7682079615cbd9f29340a5c1f2a1d84ec441a1f1 Signed-off-by: Melody Olvera <quic_molvera@quicinc.com>
34 lines
768 B
Plaintext
34 lines
768 B
Plaintext
Amazon's Annapurna Labs Thermal Sensor
|
|
|
|
Simple thermal device that allows temperature reading by a single MMIO
|
|
transaction.
|
|
|
|
Required properties:
|
|
- compatible: "amazon,al-thermal".
|
|
- reg: The physical base address and length of the sensor's registers.
|
|
- #thermal-sensor-cells: Must be 1. See Documentation/devicetree/bindings/thermal/thermal-sensor.yaml for a description.
|
|
|
|
Example:
|
|
thermal: thermal {
|
|
compatible = "amazon,al-thermal";
|
|
reg = <0x0 0x05002860 0x0 0x1>;
|
|
#thermal-sensor-cells = <0x1>;
|
|
};
|
|
|
|
thermal-zones {
|
|
thermal-z0 {
|
|
polling-delay-passive = <250>;
|
|
polling-delay = <1000>;
|
|
thermal-sensors = <&thermal 0>;
|
|
trips {
|
|
critical {
|
|
temperature = <105000>;
|
|
hysteresis = <2000>;
|
|
type = "critical";
|
|
};
|
|
};
|
|
|
|
};
|
|
};
|
|
|