요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
OMAP Counter-32K bindings
3
Required properties:
4
- compatible: Must be "ti,omap-counter32k" for OMAP controllers
5
- reg: Contains timer register address range (base address and length)
6
- ti,hwmods: Name of the hwmod associated to the counter, which is typically
7
"counter_32k"
9
Example:
11
counter32k: counter@4a304000 {
12
compatible = "ti,omap-counter32k";
13
reg = <0x4a304000 0x20>;
14
ti,hwmods = "counter_32k";
15
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
OMAP 32K counter
1-15OMAP Counter-32K binding
필수 `compatible`은 OMAP controller를 나타내는 `ti,omap-counter32k`입니다.
`reg`에는 timer register address range의 base address와 길이가 들어갑니다. `ti,hwmods`에는 counter와 연결된 hwmod name을 넣으며 일반적으로 `counter_32k`입니다.
예
counter32k: counter@4a304000 {
compatible = "ti,omap-counter32k";
reg = <0x4a304000 0x20>;
ti,hwmods = "counter_32k";
};
요약과 해설
counter.txt:1-1532K counter를 timer register range와 counter_32k hwmod로 연결합니다.