← Documents Documentation/devicetree/bindings/arm/omap/counter.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

OMAP Counter-32K

OMAP 32K counter register와 hwmod binding입니다.

Source pathDocumentation/devicetree/bindings/arm/omap/counter.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

counter.txt:1-15

32K counter를 timer register range와 counter_32k hwmod로 연결합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 OMAP Counter-32K bindings
2
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"
8
9 Example:
10
11 counter32k: counter@4a304000 {
12 compatible = "ti,omap-counter32k";
13 reg = <0x4a304000 0x20>;
14 ti,hwmods = "counter_32k";
15 };
16

3. 한국어 전문 번역

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

OMAP 32K counter

1-15

OMAP 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";
};