← Documents Documentation/devicetree/bindings/watchdog/technologic,ts7200-wdt.yaml GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings / Watchdog

Technologic Systems TS-72xx Watchdog

TS-72xx 보드 호환성과 control·feed register 배치를 설명합니다.

Source pathDocumentation/devicetree/bindings/watchdog/technologic,ts7200-wdt.yaml
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

technologic,ts7200-wdt.yaml:1-45

TS-72xx 보드 호환성과 control·feed register 배치를 설명합니다. 접을 수 있는 영어 원문 전체와 한국어 전문 번역을 함께 제공하며, compatible, register, clock, interrupt, reset, timeout과 예제는 원문 줄 좌표를 원형대로 보존합니다.

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/watchdog/technologic,ts7200-wdt.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: Technologic Systems TS-72xx based SBCs watchdog
8
9 maintainers:
10 - Nikita Shubin <[email protected]>
11
12 allOf:
13 - $ref: watchdog.yaml#
14
15 properties:
16 compatible:
17 oneOf:
18 - const: technologic,ts7200-wdt
19 - items:
20 - enum:
21 - technologic,ts7300-wdt
22 - technologic,ts7260-wdt
23 - technologic,ts7250-wdt
24 - const: technologic,ts7200-wdt
25
26 reg:
27 items:
28 - description: control register
29 - description: feed register
30
31 required:
32 - compatible
33 - reg
34
35 unevaluatedProperties: false
36
37 examples:
38 - |
39 watchdog@23800000 {
40 compatible = "technologic,ts7200-wdt";
41 reg = <0x23800000 0x01>, <0x23c00000 0x01>;
42 timeout-sec = <30>;
43 };
44
45 ...
46

3. 한국어 전문 번역

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

TS-72xx SBC Watchdog

1-14

GPL-2.0-only 또는 BSD-2-Clause로 배포되는 이 스키마는 Technologic Systems TS-72xx 기반 single-board computer의 watchdog을 정의합니다. 관리자는 Nikita Shubin이며 공통 `watchdog.yaml`을 상속합니다.

보드 호환성과 control, feed register

15-36

`compatible`은 `technologic,ts7200-wdt`를 직접 사용하거나, TS-7300, TS-7260, TS-7250의 전용 문자열 뒤에 `technologic,ts7200-wdt`를 fallback으로 둡니다.

`reg`는 control register와 feed register 두 항목을 이 순서로 받습니다. `compatible`과 `reg`는 필수이며 평가되지 않은 속성은 허용하지 않습니다.

properties:
  compatible:
    oneOf:
      - const: technologic,ts7200-wdt
      - items:
          - enum:
              - technologic,ts7300-wdt
              - technologic,ts7260-wdt
              - technologic,ts7250-wdt
          - const: technologic,ts7200-wdt

  reg:
    items:
      - description: control register
      - description: feed register

required:
  - compatible
  - reg

unevaluatedProperties: false

TS-7200 예제

37-45

예제는 control register `0x23800000`과 feed register `0x23c00000`에서 각각 1바이트 영역을 지정하고 timeout을 30초로 설정합니다.

examples:
  - |
    watchdog@23800000 {
      compatible = "technologic,ts7200-wdt";
      reg = <0x23800000 0x01>, <0x23c00000 0x01>;
      timeout-sec = <30>;
    };

...