← Documents Documentation/devicetree/bindings/sound/max9860.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings / Sound

MAX9860 mono voice codec

MAX9860 codec의 전원 rail과 MCLK 연결을 설명합니다.

Source pathDocumentation/devicetree/bindings/sound/max9860.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

max9860.txt:1-28

MAX9860 codec의 전원 rail과 MCLK 연결을 설명합니다. 아래의 접을 수 있는 영어 원문은 source path와 줄 배치를 그대로 보존하고, 한국어 전문 번역은 property·phandle·symbol과 예제 코드를 원형으로 유지합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 MAX9860 Mono Audio Voice Codec
2
3 Required properties:
4
5 - compatible : "maxim,max9860"
6
7 - reg : the I2C address of the device
8
9 - AVDD-supply, DVDD-supply and DVDDIO-supply : power supplies for
10 the device, as covered in bindings/regulator/regulator.txt
11
12 - clock-names : Required element: "mclk".
13
14 - clocks : A clock specifier for the clock connected as MCLK.
15
16 Examples:
17
18 max9860: max9860@10 {
19 compatible = "maxim,max9860";
20 reg = <0x10>;
21
22 AVDD-supply = <&reg_1v8>;
23 DVDD-supply = <&reg_1v8>;
24 DVDDIO-supply = <&reg_3v0>;
25
26 clock-names = "mclk";
27 clocks = <&pck2>;
28 };
29

3. 한국어 전문 번역

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

MAX9860 codec 필수 속성

1-15

MAX9860 mono audio voice codec의 `compatible`은 `maxim,max9860`, `reg`는 I2C address입니다. `AVDD-supply`, `DVDD-supply`, `DVDDIO-supply`는 `bindings/regulator/regulator.txt`가 설명하는 device power supply입니다.

`clock-names`에는 필수 이름 `mclk`를 넣고, `clocks`에는 MCLK pin에 연결된 clock specifier를 지정합니다.

MAX9860 전원·clock 예제

16-28

예제는 address `0x10`의 codec에 1.8 V AVDD/DVDD, 3.0 V DVDDIO와 `pck2` MCLK를 연결합니다.

max9860: max9860@10 {
        compatible = "maxim,max9860";
        reg = <0x10>;

        AVDD-supply = <&reg_1v8>;
        DVDD-supply = <&reg_1v8>;
        DVDDIO-supply = <&reg_3v0>;

        clock-names = "mclk";
        clocks = <&pck2>;
};