← Documents Documentation/devicetree/bindings/watchdog/omap-wdt.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings / Watchdog

TI OMAP Watchdog Timer

OMAP3·OMAP4 WDT의 hwmod 이름과 선택 timeout을 설명합니다.

Source pathDocumentation/devicetree/bindings/watchdog/omap-wdt.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

omap-wdt.txt:1-15

OMAP3·OMAP4 WDT의 hwmod 이름과 선택 timeout을 설명합니다. 접을 수 있는 영어 원문 전체와 한국어 전문 번역을 함께 제공하며, compatible, register, clock, interrupt, reset, timeout, 예제와 원문 줄 좌표를 원형대로 보존합니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 TI Watchdog Timer (WDT) Controller for OMAP
2
3 Required properties:
4 - compatible : "ti,omap3-wdt" for OMAP3 or "ti,omap4-wdt" for OMAP4
5 - ti,hwmods : Name of the hwmod associated to the WDT
6
7 Optional properties:
8 - timeout-sec : default watchdog timeout in seconds
9
10 Examples:
11
12 wdt2: wdt@4a314000 {
13 compatible = "ti,omap4-wdt", "ti,omap3-wdt";
14 ti,hwmods = "wd_timer2";
15 };
16

3. 한국어 전문 번역

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

TI OMAP 워치독

1-2

이 구형 TXT binding은 OMAP용 TI Watchdog Timer(WDT) Controller를 설명합니다.

OMAP3·OMAP4 hwmod와 timeout

3-9

`compatible`은 OMAP3에서 `ti,omap3-wdt`, OMAP4에서 `ti,omap4-wdt`를 사용합니다. `ti,hwmods`는 WDT와 연관된 hwmod 이름입니다.

선택 속성 `timeout-sec`는 기본 워치독 timeout을 초 단위로 지정합니다.

Required properties:
- compatible : "ti,omap3-wdt" for OMAP3 or "ti,omap4-wdt" for OMAP4
- ti,hwmods : Name of the hwmod associated to the WDT

Optional properties:
- timeout-sec : default watchdog timeout in seconds

OMAP4 WDT2 예제

10-15

예제는 주소 `0x4a314000`의 WDT2에 OMAP4 문자열과 OMAP3 fallback을 함께 지정하고 hwmod 이름을 `wd_timer2`로 설정합니다.

Examples:

wdt2: wdt@4a314000 {
        compatible = "ti,omap4-wdt", "ti,omap3-wdt";
        ti,hwmods = "wd_timer2";
};