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

Linux 6.18.37 · Devicetree Bindings

Marvell 88PM800 regulator

Marvell 88PM800 regulator의 property, cell 형식과 device-tree 예제를 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

88pm800.txt:1-38

필수·선택 property의 의미와 원문의 실제 선언 예제를 함께 읽을 수 있습니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 Marvell 88PM800 regulator
2
3 Required properties:
4 - compatible: "marvell,88pm800"
5 - reg: I2C slave address
6 - regulators: A node that houses a sub-node for each regulator within the
7 device. Each sub-node is identified using the node's name (or the deprecated
8 regulator-compatible property if present), with valid values listed below.
9 The content of each sub-node is defined by the standard binding for
10 regulators; see regulator.txt.
11
12 The valid names for regulators are:
13
14 buck1, buck2, buck3, buck4, buck5, ldo1, ldo2, ldo3, ldo4, ldo5, ldo6, ldo7,
15 ldo8, ldo9, ldo10, ldo11, ldo12, ldo13, ldo14, ldo15, ldo16, ldo17, ldo18, ldo19
16
17 Example:
18
19 pmic: 88pm800@31 {
20 compatible = "marvell,88pm800";
21 reg = <0x31>;
22
23 regulators {
24 buck1 {
25 regulator-min-microvolt = <600000>;
26 regulator-max-microvolt = <3950000>;
27 regulator-boot-on;
28 regulator-always-on;
29 };
30 ldo1 {
31 regulator-min-microvolt = <600000>;
32 regulator-max-microvolt = <15000000>;
33 regulator-boot-on;
34 regulator-always-on;
35 };
36 ...
37 };
38 };
39

3. 한국어 전문 번역

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

88PM800 property

1-11

Marvell 88PM800 regulator의 필수 `compatible`은 `marvell,88pm800`, `reg`는 I2C slave address입니다. `regulators` node에는 각 regulator의 subnode를 둡니다. Subnode는 node 이름으로 식별하며, deprecated `regulator-compatible`이 있으면 그 값을 사용합니다. 내용은 `regulator.txt`의 standard regulator binding을 따릅니다.

유효한 regulator 이름

12-16

유효한 이름은 `buck1`, `buck2`, `buck3`, `buck4`, `buck5`, `ldo1`, `ldo2`, `ldo3`, `ldo4`, `ldo5`, `ldo6`, `ldo7`, `ldo8`, `ldo9`, `ldo10`, `ldo11`, `ldo12`, `ldo13`, `ldo14`, `ldo15`, `ldo16`, `ldo17`, `ldo18`, `ldo19`입니다.

88PM800 예제

17-38

I2C address 0x31의 PMIC 예제는 `buck1`과 `ldo1`을 boot-on·always-on으로 설정합니다. `buck1` 범위는 600,000~3,950,000 microvolt이고 `ldo1` 범위는 600,000~15,000,000 microvolt입니다.

        pmic: 88pm800@31 {
                compatible = "marvell,88pm800";
                reg = <0x31>;

                regulators {
                        buck1 {
                                regulator-min-microvolt = <600000>;
                                regulator-max-microvolt = <3950000>;
                                regulator-boot-on;
                                regulator-always-on;
                        };
                        ldo1 {
                                regulator-min-microvolt = <600000>;
                                regulator-max-microvolt = <15000000>;
                                regulator-boot-on;
                                regulator-always-on;
                        };
...
                };
        };