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

Linux 6.18.37 · Devicetree Bindings / Sound

NXP UDA1334 codec

UDA1334 mute·de-emphasis GPIO를 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

uda1334.txt:1-17

UDA1334 mute·de-emphasis GPIO를 설명합니다. 영어 원문 전체와 줄 좌표를 보존하고 한국어 전문 번역에서는 property·callback·pin·phandle·수치와 예제 코드를 원형대로 유지합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 UDA1334 audio CODEC
2
3 This device uses simple GPIO pins for controlling codec settings.
4
5 Required properties:
6
7 - compatible : "nxp,uda1334"
8 - nxp,mute-gpios: a GPIO spec for the MUTE pin.
9 - nxp,deemph-gpios: a GPIO spec for the De-emphasis pin
10
11 Example:
12
13 uda1334: audio-codec {
14 compatible = "nxp,uda1334";
15 nxp,mute-gpios = <&gpio1 8 GPIO_ACTIVE_LOW>;
16 nxp,deemph-gpios = <&gpio3 3 GPIO_ACTIVE_LOW>;
17 };
18

3. 한국어 전문 번역

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

UDA1334 GPIO control

1-10

UDA1334 codec은 단순 GPIO pin으로 설정을 제어합니다. 필수 `compatible`은 `nxp,uda1334`, `nxp,mute-gpios`는 MUTE pin, `nxp,deemph-gpios`는 de-emphasis pin GPIO입니다.

UDA1334 예제

11-17

예제는 GPIO1 pin 8과 GPIO3 pin 3을 active-low mute·de-emphasis 제어로 사용합니다.

uda1334: audio-codec {
        compatible = "nxp,uda1334";
        nxp,mute-gpios = <&gpio1 8 GPIO_ACTIVE_LOW>;
        nxp,deemph-gpios = <&gpio3 3 GPIO_ACTIVE_LOW>;
};