요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
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/socionext,uniphier-wdt.yaml#
5
$schema: http://devicetree.org/meta-schemas/core.yaml#
7
title: Socionext UniPhier watchdog timer
9
maintainers:
10
- Keiji Hayashibara <hayashibara.keiji@socionext.com>
12
allOf:
13
- $ref: watchdog.yaml#
15
properties:
16
compatible:
17
const: socionext,uniphier-wdt
19
required:
20
- compatible
22
unevaluatedProperties: false
24
examples:
25
- |
26
// The UniPhier watchdog should be a subnode of a "syscon" compatible node.
28
watchdog {
29
compatible = "socionext,uniphier-wdt";
30
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Socionext UniPhier 워치독
1-14GPL-2.0-only 또는 BSD-2-Clause로 배포되는 이 스키마는 Socionext UniPhier Watchdog Timer를 정의합니다. 공통 `watchdog.yaml`을 상속하며 관리자는 Keiji Hayashibara입니다.
syscon 하위 compatible
15-23`compatible`은 `socionext,uniphier-wdt`이며 유일한 필수 속성입니다. 공통 스키마에서 평가되지 않은 속성은 허용하지 않습니다.
properties:
compatible:
const: socionext,uniphier-wdt
required:
- compatible
unevaluatedProperties: false
UniPhier syscon 하위 노드 예제
24-30UniPhier 워치독은 `syscon` compatible node의 subnode여야 합니다. 예제는 별도 register 없이 해당 하위 노드에 compatible만 지정합니다.
examples:
- |
// The UniPhier watchdog should be a subnode of a "syscon" compatible node.
watchdog {
compatible = "socionext,uniphier-wdt";
};
요약과 해설
socionext,uniphier-wdt.yaml:1-30UniPhier syscon 하위 watchdog node의 binding을 설명합니다. 접을 수 있는 영어 원문 전체와 한국어 전문 번역을 함께 제공하며, compatible, register, clock, interrupt, reset, syscon, timeout, 예제와 원문 줄 좌표를 원형대로 보존합니다.