요약·해설과 원문, 전문 번역을 서로 분리했습니다. 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/atmel,at91rm9200-wdt.yaml#
5
$schema: http://devicetree.org/meta-schemas/core.yaml#
7
title: Atmel AT91RM9200 System Timer Watchdog
9
maintainers:
10
- Nicolas Ferre <[email protected]>
12
allOf:
13
- $ref: watchdog.yaml#
15
properties:
16
compatible:
17
const: atmel,at91rm9200-wdt
19
reg:
20
maxItems: 1
22
required:
23
- compatible
24
- reg
26
unevaluatedProperties: false
28
examples:
29
- |
30
watchdog@fffffd00 {
31
compatible = "atmel,at91rm9200-wdt";
32
reg = <0xfffffd00 0x10>;
33
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Atmel AT91RM9200 시스템 타이머 워치독
1-11GPL-2.0-only 또는 BSD-2-Clause로 배포되는 이 스키마는 Atmel AT91RM9200 System Timer Watchdog를 정의합니다. 관리자는 Nicolas Ferre입니다.
호환 문자열과 레지스터
12-27공통 `watchdog.yaml`을 상속하고 `compatible`은 `atmel,at91rm9200-wdt`로 고정합니다. `reg`는 하나의 레지스터 영역만 받습니다. 두 속성이 모두 필수이며 평가되지 않은 추가 속성은 허용하지 않습니다.
allOf:
- $ref: watchdog.yaml#
properties:
compatible:
const: atmel,at91rm9200-wdt
reg:
maxItems: 1
required:
- compatible
- reg
unevaluatedProperties: false
시스템 타이머 레지스터 예제
28-33예제는 AT91RM9200 워치독을 주소 `0xfffffd00`에 길이 `0x10`인 레지스터 영역으로 배치합니다.
examples:
- |
watchdog@fffffd00 {
compatible = "atmel,at91rm9200-wdt";
reg = <0xfffffd00 0x10>;
};
요약과 해설
atmel,at91rm9200-wdt.yaml:1-33AT91RM9200 시스템 타이머 워치독의 호환 문자열과 레지스터 영역을 설명합니다. 접을 수 있는 영어 원문 전체와 한국어 전문 번역을 함께 제공하며, compatible, register, clock, interrupt, reset, 예제와 원문 줄 좌표를 원형대로 보존합니다.