요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
Mediatek MT6311 Regulator
Required properties:
- compatible: "mediatek,mt6311-regulator"
- reg: I2C slave address, usually 0x6b.
- regulators: List of regulators provided by this controller. It is named
to VDVFS and VBIASN.
The definition for each of these nodes is defined using the standard binding
for regulators at Documentation/devicetree/bindings/regulator/regulator.txt.
The valid names for regulators are:
BUCK:
VDVFS
LDO:
VBIASN
Example:
mt6311: pmic@6b {
compatible = "mediatek,mt6311-regulator";
reg = <0x6b>;
regulators {
mt6311_vcpu_reg: VDVFS {
regulator-name = "VDVFS";
regulator-min-microvolt = < 600000>;
regulator-max-microvolt = <1400000>;
regulator-ramp-delay = <10000>;
};
mt6311_ldo_reg: VBIASN {
regulator-name = "VBIASN";
regulator-min-microvolt = <200000>;
regulator-max-microvolt = <800000>;
};
};
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
MT6311 필수 property
1-10Mediatek MT6311 regulator의 필수 `compatible`은 `mediatek,mt6311-regulator`, `reg`는 보통 0x6b인 I2C slave address입니다. `regulators` node에는 controller가 제공하는 `VDVFS`, `VBIASN` regulator를 두며 각 정의는 `Documentation/devicetree/bindings/regulator/regulator.txt`의 standard binding을 따릅니다.
유효한 regulator 이름
11-16유효한 BUCK 이름은 `VDVFS`, LDO 이름은 `VBIASN`입니다.
MT6311 예제
17-35I2C address 0x6b의 예제는 `VDVFS`를 600,000~1,400,000 microvolt와 ramp delay 10,000으로 설정하고 `VBIASN`을 200,000~800,000 microvolt로 설정합니다.
mt6311: pmic@6b {
compatible = "mediatek,mt6311-regulator";
reg = <0x6b>;
regulators {
mt6311_vcpu_reg: VDVFS {
regulator-name = "VDVFS";
regulator-min-microvolt = < 600000>;
regulator-max-microvolt = <1400000>;
regulator-ramp-delay = <10000>;
};
mt6311_ldo_reg: VBIASN {
regulator-name = "VBIASN";
regulator-min-microvolt = <200000>;
regulator-max-microvolt = <800000>;
};
};
};
요약과 해설
mt6311-regulator.txt:1-35Regulator별 필수 property와 전체 예제를 원문 줄 좌표와 함께 제공합니다.