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

Linux 6.18.37 · Devicetree Bindings

MPS MP8859 regulator

MPS MP8859 regulator의 rail 이름, voltage constraint와 device-tree 예제를 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

mp8859.txt:1-22

Regulator별 필수 property와 전체 예제를 원문 줄 좌표와 함께 제공합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 Monolithic Power Systems MP8859 voltage regulator
2
3 Required properties:
4 - compatible: "mps,mp8859";
5 - reg: I2C slave address.
6
7 Optional subnode for regulator: "mp8859_dcdc", using common regulator
8 bindings given in <Documentation/devicetree/bindings/regulator/regulator.txt>.
9
10 Example:
11
12 mp8859: regulator@66 {
13 compatible = "mps,mp8859";
14 reg = <0x66>;
15 dc_12v: mp8859_dcdc {
16 regulator-name = "dc_12v";
17 regulator-min-microvolt = <12000000>;
18 regulator-max-microvolt = <12000000>;
19 regulator-boot-on;
20 regulator-always-on;
21 };
22 };
23

3. 한국어 전문 번역

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

MP8859 필수 property와 subnode

1-9

Monolithic Power Systems MP8859 voltage regulator의 필수 `compatible`은 `mps,mp8859`, `reg`는 I2C slave address입니다. 선택 regulator subnode `mp8859_dcdc`는 `Documentation/devicetree/bindings/regulator/regulator.txt`의 common regulator binding을 사용합니다.

MP8859 12V 예제

10-22

I2C address 0x66의 예제는 `mp8859_dcdc`를 12,000,000 microvolt 고정 전압의 `dc_12v` rail로 선언하고 boot-on·always-on 상태로 설정합니다.

mp8859: regulator@66 {
        compatible = "mps,mp8859";
        reg = <0x66>;
        dc_12v: mp8859_dcdc {
                regulator-name = "dc_12v";
                regulator-min-microvolt = <12000000>;
                regulator-max-microvolt = <12000000>;
                regulator-boot-on;
                regulator-always-on;
        };
};