← Documents Documentation/devicetree/bindings/thermal/brcm,avs-ro-thermal.yaml GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings / Thermal

Broadcom AVS Ring Oscillator Thermal

BCM2711 AVS monitor syscon의 thermal child 구성을 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

brcm,avs-ro-thermal.yaml:1-48

BCM2711 AVS monitor syscon의 thermal child 구성을 설명합니다. 접을 수 있는 영어 원문 전체와 줄 좌표를 보존하고, 한국어 전문 번역에서는 compatible·property·phandle·clock·interrupt·수치·예제 코드를 원형대로 유지합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/thermal/brcm,avs-ro-thermal.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: Broadcom AVS ring oscillator thermal
8
9 maintainers:
10 - Stefan Wahren <[email protected]>
11
12 description: |+
13 The thermal node should be the child of a syscon node with the
14 required property:
15
16 - compatible: Should be one of the following:
17 "brcm,bcm2711-avs-monitor", "syscon", "simple-mfd"
18
19 Refer to the bindings described in
20 Documentation/devicetree/bindings/mfd/syscon.yaml
21
22 $ref: thermal-sensor.yaml#
23
24 properties:
25 compatible:
26 const: brcm,bcm2711-thermal
27
28 "#thermal-sensor-cells":
29 const: 0
30
31 required:
32 - compatible
33
34 unevaluatedProperties: false
35
36 examples:
37 - |
38 avs-monitor@7d5d2000 {
39 compatible = "brcm,bcm2711-avs-monitor",
40 "syscon", "simple-mfd";
41 reg = <0x7d5d2000 0xf00>;
42
43 thermal: thermal {
44 compatible = "brcm,bcm2711-thermal";
45 #thermal-sensor-cells = <0>;
46 };
47 };
48 ...
49

3. 한국어 전문 번역

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

Broadcom AVS ring oscillator thermal

1-23

이 GPL-2.0-only 또는 BSD-2-Clause YAML schema는 Broadcom AVS ring oscillator thermal sensor를 정의하며 공통 `thermal-sensor.yaml#`을 따릅니다. Maintainer는 Stefan Wahren입니다.

Thermal node는 `brcm,bcm2711-avs-monitor`, `syscon`, `simple-mfd` compatible을 가진 syscon node의 child여야 합니다. 자세한 syscon 규칙은 `Documentation/devicetree/bindings/mfd/syscon.yaml`을 참고합니다.

BCM2711 sensor 속성

24-35

`compatible`은 `brcm,bcm2711-thermal`이고 `#thermal-sensor-cells`는 0입니다. `compatible`이 필수이며 `unevaluatedProperties: false`로 추가 속성을 제한합니다.

AVS monitor child 예제

36-48

예제는 0x7d5d2000의 AVS monitor syscon 안에 0-cell `brcm,bcm2711-thermal` child를 배치합니다.

    avs-monitor@7d5d2000 {
        compatible = "brcm,bcm2711-avs-monitor",
                     "syscon", "simple-mfd";
        reg = <0x7d5d2000 0xf00>;

        thermal: thermal {
            compatible = "brcm,bcm2711-thermal";
            #thermal-sensor-cells = <0>;
        };
    };
...