요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
* Dallas DS1390 SPI Serial Real-Time Clock
3
Required properties:
4
- compatible: Should contain "dallas,ds1390".
5
- reg: SPI address for chip
7
Optional properties:
8
- trickle-resistor-ohms : Selected resistor for trickle charger
9
Values usable for ds1390 are 250, 2000, 4000
10
Should be given if trickle charger should be enabled
11
- trickle-diode-disable : Do not use internal trickle charger diode
12
Should be given if internal trickle charger diode should be disabled
13
Example:
14
ds1390: rtc@0 {
15
compatible = "dallas,ds1390";
16
trickle-resistor-ohms = <250>;
17
reg = <0>;
18
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Dallas DS1390 필수 속성
1-5Dallas DS1390은 SPI serial real-time clock입니다. `compatible`은 `dallas,ds1390`이고 `reg`는 칩의 SPI 주소입니다.
trickle charger 선택 속성
6-12trickle charger를 활성화하려면 `trickle-resistor-ohms`에 DS1390이 지원하는 250, 2000, 4000Ω 가운데 선택한 저항값을 지정합니다.
내부 trickle charger diode를 사용하지 않으려면 `trickle-diode-disable`을 지정합니다.
DS1390 예제
13-18예제는 chip select 0에 연결된 DS1390에서 250Ω trickle resistor를 활성화합니다.
ds1390: rtc@0 {
compatible = "dallas,ds1390";
trickle-resistor-ohms = <250>;
reg = <0>;
};
요약과 해설
dallas,ds1390.txt:1-18장치의 연결 방식과 필수·선택 속성을 먼저 해설하고, 접을 수 있는 영어 원문 전체와 원문 줄 좌표를 보존한 한국어 전문 번역을 제공합니다.