← Documents Documentation/devicetree/bindings/regulator/isl9305.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

Intersil ISL9305 regulator

Intersil ISL9305 regulator의 regulator 이름, 공급 입력, 전압 범위와 예제를 설명합니다.

Source pathDocumentation/devicetree/bindings/regulator/isl9305.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

isl9305.txt:1-36

Chip별 regulator 구조와 실제 device-tree property를 원문 예제와 함께 설명합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 Intersil ISL9305/ISL9305H voltage regulator
2
3 Required properties:
4
5 - compatible: "isil,isl9305" or "isil,isl9305h"
6 - reg: I2C slave address, usually 0x68.
7 - regulators: A node that houses a sub-node for each regulator within the
8 device. Each sub-node is identified using the node's name, with valid
9 values being "dcd1", "dcd2", "ldo1" and "ldo2". The content of each sub-node
10 is defined by the standard binding for regulators; see regulator.txt.
11 - VINDCD1-supply: A phandle to a regulator node supplying VINDCD1.
12 VINDCD2-supply: A phandle to a regulator node supplying VINDCD2.
13 VINLDO1-supply: A phandle to a regulator node supplying VINLDO1.
14 VINLDO2-supply: A phandle to a regulator node supplying VINLDO2.
15
16 Optional properties:
17 - Per-regulator optional properties are defined in regulator.txt
18
19 Example
20
21 pmic: isl9305@68 {
22 compatible = "isil,isl9305";
23 reg = <0x68>;
24
25 VINDCD1-supply = <&system_power>;
26 VINDCD2-supply = <&system_power>;
27 VINLDO1-supply = <&system_power>;
28 VINLDO2-supply = <&system_power>;
29
30 regulators {
31 dcd1 {
32 regulator-name = "VDD_DSP";
33 regulator-always-on;
34 };
35 };
36 };
37

3. 한국어 전문 번역

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

ISL9305 필수 property

1-15

Intersil 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-36

I2C 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;
                };
        };
};