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

Linux 6.18.37 · Devicetree Bindings / Watchdog

i.MX SCU Message Protocol Watchdog

IMX-SCU child 워치독 노드와 i.MX8 SoC별 호환 문자열을 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

fsl,scu-wdt.yaml:1-37

IMX-SCU child 워치독 노드와 i.MX8 SoC별 호환 문자열을 설명합니다. 접을 수 있는 영어 원문 전체와 한국어 전문 번역을 함께 제공하며, compatible, register, clock, interrupt, reset, 예제와 원문 줄 좌표를 원형대로 보존합니다.

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/fsl,scu-wdt.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: i.MX SCU Client Device Node - Watchdog Based on SCU Message Protocol
8
9 maintainers:
10 - Dong Aisheng <aisheng.dong@nxp.com>
11
12 description: i.MX SCU Client Device Node
13 Client nodes are maintained as children of the relevant IMX-SCU device node.
14
15 allOf:
16 - $ref: watchdog.yaml#
17
18 properties:
19 compatible:
20 items:
21 - enum:
22 - fsl,imx8dxl-sc-wdt
23 - fsl,imx8qm-sc-wdt
24 - fsl,imx8qxp-sc-wdt
25 - const: fsl,imx-sc-wdt
26
27 required:
28 - compatible
29
30 unevaluatedProperties: false
31
32 examples:
33 - |
34 watchdog {
35 compatible = "fsl,imx8qxp-sc-wdt", "fsl,imx-sc-wdt";
36 timeout-sec = <60>;
37 };
38

3. 한국어 전문 번역

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

i.MX SCU message protocol 워치독

1-14

GPL-2.0-only 또는 BSD-2-Clause로 배포되는 이 스키마는 SCU message protocol 기반 i.MX 워치독 client device node를 정의합니다. client node는 관련 IMX-SCU device node의 child로 유지합니다. 관리자는 Dong Aisheng입니다.

i.MX8 SCU 호환성과 공통 fallback

15-31

공통 `watchdog.yaml`을 상속합니다. `compatible`은 `fsl,imx8dxl-sc-wdt`, `fsl,imx8qm-sc-wdt`, `fsl,imx8qxp-sc-wdt` 중 SoC별 문자열 뒤에 공통 `fsl,imx-sc-wdt` fallback을 둡니다.

`compatible`만 필수이며 평가되지 않은 추가 속성은 허용하지 않습니다.

allOf:
  - $ref: watchdog.yaml#

properties:
  compatible:
    items:
      - enum:
          - fsl,imx8dxl-sc-wdt
          - fsl,imx8qm-sc-wdt
          - fsl,imx8qxp-sc-wdt
      - const: fsl,imx-sc-wdt

required:
  - compatible

unevaluatedProperties: false

i.MX8QXP SCU 워치독 예제

32-37

예제 child node는 i.MX8QXP SCU 호환 문자열과 공통 fallback을 사용하고 timeout을 60초로 설정합니다.

examples:
  - |
    watchdog {
        compatible = "fsl,imx8qxp-sc-wdt", "fsl,imx-sc-wdt";
        timeout-sec = <60>;
    };