요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
Marvell 88PM860x regulator
3
Required properties:
4
- compatible: "marvell,88pm860x"
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 regulator-compatible
8
property, with valid values listed below.
10
Example:
12
pmic: 88pm860x@34 {
13
compatible = "marvell,88pm860x";
14
reg = <0x34>;
16
regulators {
17
BUCK1 {
18
regulator-min-microvolt = <1000000>;
19
regulator-max-microvolt = <1500000>;
20
regulator-boot-on;
21
regulator-always-on;
22
};
23
BUCK3 {
24
regulator-min-microvolt = <1000000>;
25
regulator-max-microvolt = <3000000>;
26
regulator-boot-on;
27
regulator-always-on;
28
};
29
};
30
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
88PM860x property
1-9Marvell 88PM860x regulator의 필수 `compatible`은 `marvell,88pm860x`, `reg`는 I2C slave address입니다. `regulators` node의 각 subnode는 `regulator-compatible` property로 식별됩니다.
원문은 유효한 값이 아래에 나열된다고 설명하지만 별도 목록 없이 곧바로 예제로 이어집니다.
88PM860x 예제
10-30I2C address 0x34의 예제는 `BUCK1`과 `BUCK3`을 boot-on·always-on으로 설정합니다. 두 regulator의 최저값은 1,000,000 microvolt이고 최고값은 각각 1,500,000과 3,000,000 microvolt입니다.
pmic: 88pm860x@34 {
compatible = "marvell,88pm860x";
reg = <0x34>;
regulators {
BUCK1 {
regulator-min-microvolt = <1000000>;
regulator-max-microvolt = <1500000>;
regulator-boot-on;
regulator-always-on;
};
BUCK3 {
regulator-min-microvolt = <1000000>;
regulator-max-microvolt = <3000000>;
regulator-boot-on;
regulator-always-on;
};
};
};
요약과 해설
88pm860x.txt:1-30필수·선택 property의 의미와 원문의 실제 선언 예제를 함께 읽을 수 있습니다.