요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
Motorola CPCAP PMIC voltage regulators
------------------------------------
Requires node properties:
- "compatible" value one of:
"motorola,cpcap-regulator"
"motorola,mapphone-cpcap-regulator"
"motorola,xoom-cpcap-regulator"
Required regulator properties:
- "regulator-name"
- "regulator-enable-ramp-delay"
- "regulator-min-microvolt"
- "regulator-max-microvolt"
Optional regulator properties:
- "regulator-boot-on"
See Documentation/devicetree/bindings/regulator/regulator.txt
for more details about the regulator properties.
Example:
cpcap_regulator: regulator {
compatible = "motorola,cpcap-regulator";
cpcap_regulators: regulators {
sw5: SW5 {
regulator-min-microvolt = <5050000>;
regulator-max-microvolt = <5050000>;
regulator-enable-ramp-delay = <50000>;
regulator-boot-on;
};
};
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Motorola CPCAP compatible
1-9Motorola CPCAP PMIC voltage regulator node의 `compatible`은 `motorola,cpcap-regulator`, `motorola,mapphone-cpcap-regulator`, `motorola,xoom-cpcap-regulator` 중 하나여야 합니다.
필수·선택 regulator property
10-21필수 regulator property는 `regulator-name`, `regulator-enable-ramp-delay`, `regulator-min-microvolt`, `regulator-max-microvolt`입니다. `regulator-boot-on`은 선택 property입니다. 자세한 형식은 `Documentation/devicetree/bindings/regulator/regulator.txt`를 참조합니다.
CPCAP SW5 예제
22-35예제는 `motorola,cpcap-regulator` 아래 `SW5` rail을 5,050,000 microvolt 고정 전압, 50,000의 enable ramp delay, boot-on 상태로 선언합니다.
cpcap_regulator: regulator {
compatible = "motorola,cpcap-regulator";
cpcap_regulators: regulators {
sw5: SW5 {
regulator-min-microvolt = <5050000>;
regulator-max-microvolt = <5050000>;
regulator-enable-ramp-delay = <50000>;
regulator-boot-on;
};
};
};
요약과 해설
cpcap-regulator.txt:1-35PMIC regulator rail의 입력 공급, 전압 범위와 실제 device-tree 구성을 함께 설명합니다.