← Documents Documentation/devicetree/bindings/rtc/cpcap-rtc.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings / RTC

Motorola CPCAP PMIC RTC

CPCAP RTC의 alarm 및 1Hz interrupt를 설명합니다.

Source pathDocumentation/devicetree/bindings/rtc/cpcap-rtc.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

cpcap-rtc.txt:1-18

장치의 연결 방식과 필수·선택 속성을 먼저 해설하고, 접을 수 있는 영어 원문 전체와 원문 줄 좌표를 보존한 한국어 전문 번역을 제공합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 Motorola CPCAP PMIC RTC
2 -----------------------
3
4 This module is part of the CPCAP. For more details about the whole
5 chip see Documentation/devicetree/bindings/mfd/motorola-cpcap.txt.
6
7 Requires node properties:
8 - compatible: should contain "motorola,cpcap-rtc"
9 - interrupts: An interrupt specifier for alarm and 1 Hz irq
10
11 Example:
12
13 &cpcap {
14 cpcap_rtc: rtc {
15 compatible = "motorola,cpcap-rtc";
16 interrupts = <39 IRQ_TYPE_NONE>, <26 IRQ_TYPE_NONE>;
17 };
18 };
19

3. 한국어 전문 번역

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

Motorola CPCAP PMIC RTC

1-5

이 RTC 모듈은 CPCAP의 일부입니다. 전체 칩에 관한 자세한 내용은 `Documentation/devicetree/bindings/mfd/motorola-cpcap.txt`를 참조합니다.

필수 속성

6-9

`compatible`에는 `motorola,cpcap-rtc`를 넣습니다. `interrupts`는 alarm과 1Hz IRQ를 위한 두 interrupt specifier입니다.

CPCAP RTC 예제

10-18

예제는 CPCAP 아래에 RTC 자식 노드를 두고 interrupt 39와 26을 모두 `IRQ_TYPE_NONE`으로 연결합니다.

&cpcap {
        cpcap_rtc: rtc {
                compatible = "motorola,cpcap-rtc";
                interrupts = <39 IRQ_TYPE_NONE>, <26 IRQ_TYPE_NONE>;
        };
};