← Documents Documentation/devicetree/bindings/sound/img,pistachio-internal-dac.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings / Sound

Pistachio internal DAC

Pistachio internal DAC의 control syscon과 digital supply를 설명합니다.

Source pathDocumentation/devicetree/bindings/sound/img,pistachio-internal-dac.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

img,pistachio-internal-dac.txt:1-18

Google SC7280 LPASS card와 Hisilicon·Imagination audio controller의 DAI, DMA, clock, reset 계약을 먼저 해설하고, 접을 수 있는 영어 원문 전체와 legacy TXT의 property·code·줄 좌표를 보존한 한국어 전문 번역을 제공합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 Pistachio internal DAC DT bindings
2
3 Required properties:
4
5 - compatible: "img,pistachio-internal-dac"
6
7 - img,cr-top : Must contain a phandle to the top level control syscon
8 node which contains the internal dac control registers
9
10 - VDD-supply : Digital power supply regulator (+1.8V or +3.3V)
11
12 Examples:
13
14 internal_dac: internal-dac {
15 compatible = "img,pistachio-internal-dac";
16 img,cr-top = <&cr_top>;
17 VDD-supply = <&supply3v3>;
18 };
19

3. 한국어 전문 번역

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

Pistachio internal DAC 필수 속성

1-11

`compatible`은 `img,pistachio-internal-dac`입니다. `img,cr-top`은 internal DAC control register를 포함하는 top-level control syscon의 phandle이고 `VDD-supply`는 +1.8 V 또는 +3.3 V digital power regulator입니다.

Internal DAC 예제

12-18

예제는 `cr_top` syscon과 3.3 V supply를 internal DAC에 연결합니다.

internal_dac: internal-dac {
        compatible = "img,pistachio-internal-dac";
        img,cr-top = <&cr_top>;
        VDD-supply = <&supply3v3>;
};