mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 22:23:05 +00:00

'st,passive_colling_temp' does not appear in the device-tree, 'reg' and '#thermal-sensor-cells' are also missing in the device description. Convert st,stih407-thermal binding to DT schema format in order to clean unused 'st,passive_cooling_temp' and add missing properties. Signed-off-by: Raphael Gallais-Pou <rgallaispou@gmail.com> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Link: https://lore.kernel.org/r/20240320-thermal-v3-1-700296694c4a@gmail.com
59 lines
1.2 KiB
YAML
59 lines
1.2 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/thermal/st,stih407-thermal.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: STMicroelectronics STi digital thermal sensor (DTS)
|
|
|
|
maintainers:
|
|
- Patrice Chotard <patrice.chotard@foss.st.com>
|
|
- Lee Jones <lee@kernel.org>
|
|
|
|
allOf:
|
|
- $ref: thermal-sensor.yaml
|
|
|
|
properties:
|
|
compatible:
|
|
const: st,stih407-thermal
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
maxItems: 1
|
|
|
|
clock-names:
|
|
items:
|
|
- const: thermal
|
|
|
|
interrupts:
|
|
description:
|
|
For thermal sensors for which no interrupt has been defined, a polling
|
|
delay of 1000ms will be used to read the temperature from device.
|
|
maxItems: 1
|
|
|
|
'#thermal-sensor-cells':
|
|
const: 0
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
- clock-names
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
temperature-sensor@91a0000 {
|
|
compatible = "st,stih407-thermal";
|
|
reg = <0x91a0000 0x28>;
|
|
clock-names = "thermal";
|
|
clocks = <&CLK_SYSIN>;
|
|
interrupts = <GIC_SPI 205 IRQ_TYPE_EDGE_RISING>;
|
|
#thermal-sensor-cells = <0>;
|
|
};
|
|
...
|