요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
Marvell 88PG867/88PG868 voltage regulators
3
Required properties:
4
- compatible: one of "marvell,88pg867", "marvell,88pg868";
5
- reg: I2C slave address.
7
Optional subnodes for regulators: "buck1", "buck2", using common regulator
8
bindings given in <Documentation/devicetree/bindings/regulator/regulator.txt>.
10
Example:
12
pg868@19 {
13
compatible = "marvell,88pg868";
14
reg = <0x19>;
16
vcpu: buck1 {
17
regulator-boot-on;
18
regulator-always-on;
19
regulator-min-microvolt = <1000000>;
20
regulator-max-microvolt = <1350000>;
21
};
22
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
88PG867/88PG868 property
1-9Marvell 88PG867/88PG868 voltage regulator의 `compatible`은 `marvell,88pg867` 또는 `marvell,88pg868`이고 `reg`는 I2C slave address입니다. 선택 regulator subnode `buck1`, `buck2`는 `Documentation/devicetree/bindings/regulator/regulator.txt`의 common regulator binding을 사용합니다.
88PG868 예제
10-22I2C address 0x19의 88PG868 예제는 `buck1`을 `vcpu` label로 선언하고 boot-on·always-on 상태와 1,000,000~1,350,000 microvolt 범위를 지정합니다.
pg868@19 {
compatible = "marvell,88pg868";
reg = <0x19>;
vcpu: buck1 {
regulator-boot-on;
regulator-always-on;
regulator-min-microvolt = <1000000>;
regulator-max-microvolt = <1350000>;
};
};
요약과 해설
88pg86x.txt:1-22필수·선택 property의 의미와 원문의 실제 선언 예제를 함께 읽을 수 있습니다.