요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
Lantiq WTD watchdog binding
2
============================
4
This describes the binding of the Lantiq watchdog driver.
6
-------------------------------------------------------------------------------
7
Required properties:
8
- compatible : Should be one of
9
"lantiq,wdt"
10
"lantiq,xrx100-wdt"
11
"lantiq,xrx200-wdt", "lantiq,xrx100-wdt"
12
"lantiq,falcon-wdt"
13
- reg : Address of the watchdog block
14
- lantiq,rcu : A phandle to the RCU syscon (required for
15
"lantiq,falcon-wdt" and "lantiq,xrx100-wdt")
17
-------------------------------------------------------------------------------
18
Example for the watchdog on the xRX200 SoCs:
19
watchdog@803f0 {
20
compatible = "lantiq,xrx200-wdt", "lantiq,xrx100-wdt";
21
reg = <0x803f0 0x10>;
23
lantiq,rcu = <&rcu0>;
24
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Lantiq 워치독 binding
1-6이 구형 TXT binding은 Lantiq watchdog driver의 devicetree 표현을 설명합니다.
호환 문자열, register와 RCU syscon
7-16`compatible`은 `lantiq,wdt`, `lantiq,xrx100-wdt`, XRX200 문자열과 XRX100 fallback 조합, 또는 `lantiq,falcon-wdt`입니다. `reg`는 watchdog block 주소를 담습니다.
`lantiq,rcu`는 RCU syscon을 가리키는 phandle이며 Falcon과 XRX100 워치독에서 필수입니다.
Required properties:
- compatible : Should be one of
"lantiq,wdt"
"lantiq,xrx100-wdt"
"lantiq,xrx200-wdt", "lantiq,xrx100-wdt"
"lantiq,falcon-wdt"
- reg : Address of the watchdog block
- lantiq,rcu : A phandle to the RCU syscon (required for
"lantiq,falcon-wdt" and "lantiq,xrx100-wdt")
XRX200 워치독 예제
17-24예제는 주소 `0x803f0`의 XRX200 워치독에 XRX100 fallback을 함께 적고 RCU syscon `rcu0`를 연결합니다.
-------------------------------------------------------------------------------
Example for the watchdog on the xRX200 SoCs:
watchdog@803f0 {
compatible = "lantiq,xrx200-wdt", "lantiq,xrx100-wdt";
reg = <0x803f0 0x10>;
lantiq,rcu = <&rcu0>;
};
요약과 해설
lantiq-wdt.txt:1-24Lantiq·XRX·Falcon 워치독 호환성과 RCU syscon phandle을 설명합니다. 접을 수 있는 영어 원문 전체와 한국어 전문 번역을 함께 제공하며, compatible, register, clock, interrupt, GPIO, 예제와 원문 줄 좌표를 원형대로 보존합니다.