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

Linux 6.18.37 · Devicetree Bindings

SKY81452 regulator

SKY81452 lout node의 generic property와 전압 범위 예제를 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

sky81452-regulator.txt:1-18

원문 전체, 줄 좌표별 한국어 전문과 설정 예제를 함께 대조할 수 있습니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 SKY81452 voltage regulator
2
3 Required properties:
4 - regulator node named lout.
5 - any required generic properties defined in regulator.txt
6
7 Optional properties:
8 - any available generic properties defined in regulator.txt
9
10 Example:
11
12 regulator {
13 lout {
14 regulator-name = "sky81452-lout";
15 regulator-min-microvolt = <4500000>;
16 regulator-max-microvolt = <8000000>;
17 };
18 };
19

3. 한국어 전문 번역

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

SKY81452 필수 property

1-6

SKY81452 voltage regulator에는 이름이 `lout`인 regulator node와 `regulator.txt`에 정의된 모든 필수 generic property가 필요합니다.

SKY81452 선택 property

7-9

`regulator.txt`에 정의된 사용 가능한 모든 generic property를 선택적으로 지정할 수 있습니다.

SKY81452 예제

10-18

예제는 `lout`의 regulator 이름을 `sky81452-lout`으로 정하고 4,500,000~8,000,000 microvolt 범위를 지정합니다.

regulator {
        lout {
                regulator-name = "sky81452-lout";
                regulator-min-microvolt = <4500000>;
                regulator-max-microvolt = <8000000>;
        };
};