요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
Intersil ISL9305/ISL9305H voltage regulator
Required properties:
- compatible: "isil,isl9305" or "isil,isl9305h"
- reg: I2C slave address, usually 0x68.
- regulators: A node that houses a sub-node for each regulator within the
device. Each sub-node is identified using the node's name, with valid
values being "dcd1", "dcd2", "ldo1" and "ldo2". The content of each sub-node
is defined by the standard binding for regulators; see regulator.txt.
- VINDCD1-supply: A phandle to a regulator node supplying VINDCD1.
VINDCD2-supply: A phandle to a regulator node supplying VINDCD2.
VINLDO1-supply: A phandle to a regulator node supplying VINLDO1.
VINLDO2-supply: A phandle to a regulator node supplying VINLDO2.
Optional properties:
- Per-regulator optional properties are defined in regulator.txt
Example
pmic: isl9305@68 {
compatible = "isil,isl9305";
reg = <0x68>;
VINDCD1-supply = <&system_power>;
VINDCD2-supply = <&system_power>;
VINLDO1-supply = <&system_power>;
VINLDO2-supply = <&system_power>;
regulators {
dcd1 {
regulator-name = "VDD_DSP";
regulator-always-on;
};
};
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
ISL9305 필수 property
1-15Intersil ISL9305/ISL9305H voltage regulator의 `compatible`은 `isil,isl9305` 또는 `isil,isl9305h`이며 `reg`는 보통 0x68인 I2C slave address입니다. `regulators` node의 유효한 child 이름은 `dcd1`, `dcd2`, `ldo1`, `ldo2`이고 내용은 `regulator.txt`의 standard binding을 따릅니다.
`VINDCD1-supply`, `VINDCD2-supply`, `VINLDO1-supply`, `VINLDO2-supply`는 각각 이름에 해당하는 입력을 공급하는 regulator node의 phandle입니다.
Regulator별 선택 property
16-18각 regulator에 적용할 수 있는 선택 property는 `regulator.txt`에 정의되어 있습니다.
ISL9305 DCD1 예제
19-36I2C address 0x68의 예제는 네 입력 supply를 `system_power`에 연결하고 `dcd1`을 always-on `VDD_DSP` rail로 선언합니다.
pmic: isl9305@68 {
compatible = "isil,isl9305";
reg = <0x68>;
VINDCD1-supply = <&system_power>;
VINDCD2-supply = <&system_power>;
VINLDO1-supply = <&system_power>;
VINLDO2-supply = <&system_power>;
regulators {
dcd1 {
regulator-name = "VDD_DSP";
regulator-always-on;
};
};
};
요약과 해설
isl9305.txt:1-36Chip별 regulator 구조와 실제 device-tree property를 원문 예제와 함께 설명합니다.