← Documents Documentation/devicetree/bindings/thermal/thermal-sensor.yaml GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings / Thermal

Thermal Sensor

공통 thermal sensor provider cell과 SDM845 TSENS 예제를 설명합니다.

Source pathDocumentation/devicetree/bindings/thermal/thermal-sensor.yaml
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약과 해설

thermal-sensor.yaml:1-77

공통 thermal sensor provider cell과 SDM845 TSENS 예제를 설명합니다. 접을 수 있는 영어 원문 전체는 줄 좌표를 보존하고, 한국어 전문 번역에서는 compatible·property·phandle·register·수식·수치·예제 코드를 원형대로 유지합니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 # SPDX-License-Identifier: (GPL-2.0)
2 # Copyright 2020 Linaro Ltd.
3 %YAML 1.2
4 ---
5 $id: http://devicetree.org/schemas/thermal/thermal-sensor.yaml#
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
7
8 title: Thermal sensor
9
10 maintainers:
11 - Amit Kucheria <amitk@kernel.org>
12
13 description: |
14 Thermal management is achieved in devicetree by describing the sensor hardware
15 and the software abstraction of thermal zones required to take appropriate
16 action to mitigate thermal overloads.
17
18 The following node types are used to completely describe a thermal management
19 system in devicetree:
20 - thermal-sensor: device that measures temperature, has SoC-specific bindings
21 - cooling-device: device used to dissipate heat either passively or actively
22 - thermal-zones: a container of the following node types used to describe all
23 thermal data for the platform
24
25 This binding describes the thermal-sensor.
26
27 Thermal sensor devices provide temperature sensing capabilities on thermal
28 zones. Typical devices are I2C ADC converters and bandgaps. Thermal sensor
29 devices may control one or more internal sensors.
30
31 properties:
32 "#thermal-sensor-cells":
33 description:
34 Used to uniquely identify a thermal sensor instance within an IC. Will be
35 0 on sensor nodes with only a single sensor and at least 1 on nodes
36 containing several internal sensors.
37 enum: [0, 1]
38
39 required:
40 - "#thermal-sensor-cells"
41
42 additionalProperties: true
43
44 examples:
45 - |
46 #include <dt-bindings/interrupt-controller/arm-gic.h>
47
48 // Example 1: SDM845 TSENS
49 soc: soc {
50 #address-cells = <2>;
51 #size-cells = <2>;
52
53 /* ... */
54
55 tsens0: thermal-sensor@c263000 {
56 compatible = "qcom,sdm845-tsens", "qcom,tsens-v2";
57 reg = <0 0x0c263000 0 0x1ff>, /* TM */
58 <0 0x0c222000 0 0x1ff>; /* SROT */
59 #qcom,sensors = <13>;
60 interrupts = <GIC_SPI 506 IRQ_TYPE_LEVEL_HIGH>,
61 <GIC_SPI 508 IRQ_TYPE_LEVEL_HIGH>;
62 interrupt-names = "uplow", "critical";
63 #thermal-sensor-cells = <1>;
64 };
65
66 tsens1: thermal-sensor@c265000 {
67 compatible = "qcom,sdm845-tsens", "qcom,tsens-v2";
68 reg = <0 0x0c265000 0 0x1ff>, /* TM */
69 <0 0x0c223000 0 0x1ff>; /* SROT */
70 #qcom,sensors = <8>;
71 interrupts = <GIC_SPI 507 IRQ_TYPE_LEVEL_HIGH>,
72 <GIC_SPI 509 IRQ_TYPE_LEVEL_HIGH>;
73 interrupt-names = "uplow", "critical";
74 #thermal-sensor-cells = <1>;
75 };
76 };
77 ...
78

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

Thermal sensor 공통 스키마

1-12

이 GPL-2.0 YAML 스키마는 thermal sensor의 공통 형태를 정의합니다. 저작권은 Linaro Ltd.에 있고 maintainer는 Amit Kucheria입니다.

Thermal management 구성과 sensor 역할

13-30

Devicetree thermal management는 sensor hardware와 thermal zone abstraction을 기술해 thermal overload를 완화합니다. 시스템은 SoC별 온도 측정 장치인 `thermal-sensor`, 수동·능동으로 열을 방출하는 `cooling-device`, 플랫폼 thermal data를 담는 `thermal-zones`로 구성됩니다. Thermal sensor는 zone에 온도 감지 기능을 제공하며 대표 장치는 I2C ADC converter와 bandgap입니다. 한 장치가 내부 sensor 하나 이상을 제어할 수 있습니다.

내부 sensor instance 식별

31-43

`#thermal-sensor-cells`는 IC 내부의 thermal sensor instance를 유일하게 식별합니다. Sensor가 하나뿐인 node에서는 0이고 여러 내부 sensor가 있으면 적어도 1이며 스키마는 0 또는 1을 허용합니다. 이 속성은 필수이고 SoC별 추가 속성은 허용됩니다.

properties:
  "#thermal-sensor-cells":
    description:
      Used to uniquely identify a thermal sensor instance within an IC. Will be
      0 on sensor nodes with only a single sensor and at least 1 on nodes
      containing several internal sensors.
    enum: [0, 1]

required:
  - "#thermal-sensor-cells"

additionalProperties: true

SDM845 TSENS provider 예제

44-77

예제는 SDM845 TSENS v2 provider 두 개를 보여 줍니다. TSENS0은 TM·SROT register와 sensor 13개, `uplow`·`critical` interrupt를 사용하고 TSENS1은 별도 register와 sensor 8개, 별도 interrupt 쌍을 사용합니다. 둘 다 `#thermal-sensor-cells = 1`로 sensor index를 받습니다.

  - |
    #include <dt-bindings/interrupt-controller/arm-gic.h>

    // Example 1: SDM845 TSENS
    soc: soc {
            #address-cells = <2>;
            #size-cells = <2>;

            /* ... */

            tsens0: thermal-sensor@c263000 {
                    compatible = "qcom,sdm845-tsens", "qcom,tsens-v2";
                    reg = <0 0x0c263000 0 0x1ff>, /* TM */
                          <0 0x0c222000 0 0x1ff>; /* SROT */
                    #qcom,sensors = <13>;
                    interrupts = <GIC_SPI 506 IRQ_TYPE_LEVEL_HIGH>,
                                 <GIC_SPI 508 IRQ_TYPE_LEVEL_HIGH>;
                    interrupt-names = "uplow", "critical";
                    #thermal-sensor-cells = <1>;
            };

            tsens1: thermal-sensor@c265000 {
                    compatible = "qcom,sdm845-tsens", "qcom,tsens-v2";
                    reg = <0 0x0c265000 0 0x1ff>, /* TM */
                          <0 0x0c223000 0 0x1ff>; /* SROT */
                    #qcom,sensors = <8>;
                    interrupts = <GIC_SPI 507 IRQ_TYPE_LEVEL_HIGH>,
                                 <GIC_SPI 509 IRQ_TYPE_LEVEL_HIGH>;
                    interrupt-names = "uplow", "critical";
                    #thermal-sensor-cells = <1>;
            };
    };
...