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

Linux 6.18.37 · Devicetree Bindings

Powerventure PV88080 regulator

PV88080 silicon revision별 compatible과 네 BUCK의 제약을 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

pv88080.txt:1-62

칩별 compatible, I2C address, 유효한 regulator 이름과 예제의 수치 제약을 원문 줄 좌표와 함께 확인할 수 있습니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 * Powerventure Semiconductor PV88080 Voltage Regulator
2
3 Required properties:
4 - compatible: Must be one of the following, depending on the
5 silicon version:
6 - "pvs,pv88080" (DEPRECATED)
7
8 - "pvs,pv88080-aa" for PV88080 AA or AB silicon
9 - "pvs,pv88080-ba" for PV88080 BA or BB silicon
10 NOTE: The use of the compatibles with no silicon version is deprecated.
11 - reg: I2C slave address, usually 0x49
12 - interrupts: the interrupt outputs of the controller
13 - regulators: A node that houses a sub-node for each regulator within the
14 device. Each sub-node is identified using the node's name, with valid
15 values listed below. The content of each sub-node is defined by the
16 standard binding for regulators; see regulator.txt.
17 BUCK1, BUCK2, BUCK3 and HVBUCK.
18
19 Optional properties:
20 - Any optional property defined in regulator.txt
21
22 Example:
23
24 pmic: pv88080@49 {
25 compatible = "pvs,pv88080-ba";
26 reg = <0x49>;
27 interrupt-parent = <&gpio>;
28 interrupts = <24 24>;
29
30 regulators {
31 BUCK1 {
32 regulator-name = "buck1";
33 regulator-min-microvolt = < 600000>;
34 regulator-max-microvolt = <1393750>;
35 regulator-min-microamp = < 220000>;
36 regulator-max-microamp = <7040000>;
37 };
38
39 BUCK2 {
40 regulator-name = "buck2";
41 regulator-min-microvolt = < 600000>;
42 regulator-max-microvolt = <1393750>;
43 regulator-min-microamp = <1496000>;
44 regulator-max-microamp = <4189000>;
45 };
46
47 BUCK3 {
48 regulator-name = "buck3";
49 regulator-min-microvolt = <1400000>;
50 regulator-max-microvolt = <2193750>;
51 regulator-min-microamp = <1496000>;
52 regulator-max-microamp = <4189000>;
53 };
54
55 HVBUCK {
56 regulator-name = "hvbuck";
57 regulator-min-microvolt = < 5000>;
58 regulator-max-microvolt = <1275000>;
59 };
60 };
61 };
62
63

3. 한국어 전문 번역

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

PV88080 revision별 필수 property

1-18

Powerventure Semiconductor PV88080 voltage regulator의 `compatible`은 silicon version에 따라 선택해야 합니다. version이 없는 `pvs,pv88080`은 `DEPRECATED`이며, PV88080 AA 또는 AB silicon에는 `pvs,pv88080-aa`, BA 또는 BB silicon에는 `pvs,pv88080-ba`를 사용합니다.

`reg`는 보통 0x49인 I2C slave address이고, `interrupts`에는 controller의 interrupt output을 지정합니다. `regulators` node의 각 subnode는 node 이름으로 식별하며 `regulator.txt`의 표준 binding을 따릅니다. 유효한 이름은 `BUCK1`, `BUCK2`, `BUCK3`, `HVBUCK`입니다.

PV88080 선택 property

19-21

`regulator.txt`에 정의된 모든 선택 property를 사용할 수 있습니다.

PV88080 BA/BB 예제

22-62

예제는 BA/BB silicon용 `pvs,pv88080-ba`와 I2C address 0x49를 사용합니다. `BUCK1`은 600,000~1,393,750 microvolt와 220,000~7,040,000 microamp, `BUCK2`는 같은 전압 범위와 1,496,000~4,189,000 microamp를 사용합니다.

`BUCK3`은 1,400,000~2,193,750 microvolt와 1,496,000~4,189,000 microamp를 사용합니다. `HVBUCK`의 전압 범위는 원문 값 그대로 5,000~1,275,000 microvolt입니다.

pmic: pv88080@49 {
        compatible = "pvs,pv88080-ba";
        reg = <0x49>;
        interrupt-parent = <&gpio>;
        interrupts = <24 24>;

        regulators {
                BUCK1 {
                        regulator-name = "buck1";
                        regulator-min-microvolt = < 600000>;
                        regulator-max-microvolt = <1393750>;
                        regulator-min-microamp         = < 220000>;
                        regulator-max-microamp         = <7040000>;
                };

                BUCK2 {
                        regulator-name = "buck2";
                        regulator-min-microvolt = < 600000>;
                        regulator-max-microvolt = <1393750>;
                        regulator-min-microamp         = <1496000>;
                        regulator-max-microamp         = <4189000>;
                };

                BUCK3 {
                        regulator-name = "buck3";
                        regulator-min-microvolt = <1400000>;
                        regulator-max-microvolt = <2193750>;
                        regulator-min-microamp         = <1496000>;
                        regulator-max-microamp         = <4189000>;
                };

                HVBUCK {
                        regulator-name = "hvbuck";
                        regulator-min-microvolt = <   5000>;
                        regulator-max-microvolt = <1275000>;
                 };
        };
};