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

Linux 6.18.37 · Devicetree Bindings / Watchdog

NXP PNX4008 Watchdog

PNX4008 워치독의 register와 선택적인 clock 속성을 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

nxp,pnx4008-wdt.yaml:1-37

PNX4008 워치독의 register와 선택적인 clock 속성을 설명합니다. 접을 수 있는 영어 원문 전체와 한국어 전문 번역을 함께 제공하며, 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/nxp,pnx4008-wdt.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: NXP PNX watchdog timer
8
9 maintainers:
10 - Roland Stigge <[email protected]>
11
12 allOf:
13 - $ref: watchdog.yaml#
14
15 properties:
16 compatible:
17 const: nxp,pnx4008-wdt
18
19 reg:
20 maxItems: 1
21
22 clocks:
23 maxItems: 1
24
25 required:
26 - compatible
27 - reg
28
29 unevaluatedProperties: false
30
31 examples:
32 - |
33 watchdog@4003c000 {
34 compatible = "nxp,pnx4008-wdt";
35 reg = <0x4003c000 0x1000>;
36 timeout-sec = <10>;
37 };
38

3. 한국어 전문 번역

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

NXP PNX4008 워치독

1-14

GPL-2.0-only 또는 BSD-2-Clause로 배포되는 이 스키마는 NXP PNX Watchdog Timer를 정의합니다. 공통 `watchdog.yaml`을 상속하며 관리자는 Roland Stigge입니다.

PNX4008 레지스터와 선택 클록

15-30

`compatible`은 `nxp,pnx4008-wdt`입니다. `reg`와 `clocks`는 각각 항목 하나만 받지만, 필수 속성은 `compatible`과 `reg`입니다. 공통 스키마에서 평가되지 않은 속성은 허용하지 않습니다.

properties:
  compatible:
    const: nxp,pnx4008-wdt

  reg:
    maxItems: 1

  clocks:
    maxItems: 1

required:
  - compatible
  - reg

unevaluatedProperties: false

PNX4008 예제

31-37

예제는 주소 `0x4003c000`, 크기 `0x1000`인 PNX4008 워치독의 timeout을 10초로 설정합니다.

examples:
  - |
    watchdog@4003c000 {
        compatible = "nxp,pnx4008-wdt";
        reg = <0x4003c000 0x1000>;
        timeout-sec = <10>;
    };