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

Linux 6.18.37 · Devicetree Bindings

Maxim MAX1586 regulator

Maxim MAX1586 regulator의 regulator 구조, supply와 voltage constraint를 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

max1586-regulator.txt:1-28

필수 property와 chip별 rail 구성을 실제 device-tree 예제와 함께 설명합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 Maxim MAX1586 voltage regulator
2
3 Required properties:
4 - compatible: must be "maxim,max1586"
5 - reg: I2C slave address, usually 0x14
6 - v3-gain: integer specifying the V3 gain as per datasheet
7 (1 + R24/R25 + R24/185.5kOhm)
8 - any required generic properties defined in regulator.txt
9
10 Example:
11
12 i2c_master {
13 max1586@14 {
14 compatible = "maxim,max1586";
15 reg = <0x14>;
16 v3-gain = <1000000>;
17
18 regulators {
19 vcc_core: v3 {
20 regulator-name = "vcc_core";
21 regulator-compatible = "Output_V3";
22 regulator-min-microvolt = <1000000>;
23 regulator-max-microvolt = <1705000>;
24 regulator-always-on;
25 };
26 };
27 };
28 };
29

3. 한국어 전문 번역

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

MAX1586 필수 property

1-9

Maxim MAX1586 voltage regulator의 필수 `compatible`은 `maxim,max1586`, `reg`는 보통 0x14인 I2C slave address입니다. `v3-gain`은 datasheet의 식 `1 + R24/R25 + R24/185.5kOhm`에 따른 V3 gain 정수입니다. 이 밖에 `regulator.txt`가 정의한 필수 generic property를 사용합니다.

MAX1586 V3 예제

10-28

예제는 `v3-gain = 1000000`을 지정하고 `Output_V3`를 1,000,000~1,705,000 microvolt의 always-on `vcc_core` rail로 선언합니다.

i2c_master {
        max1586@14 {
                compatible = "maxim,max1586";
                reg = <0x14>;
                v3-gain = <1000000>;

                regulators {
                        vcc_core: v3 {
                                regulator-name = "vcc_core";
                                regulator-compatible = "Output_V3";
                                regulator-min-microvolt = <1000000>;
                                regulator-max-microvolt = <1705000>;
                                regulator-always-on;
                        };
                };
        };
};