← Documents Documentation/devicetree/bindings/sound/google,chv3-codec.yaml GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings / Sound

Google Chameleon v3 audio codec

Chameleon v3의 간단한 zero-cell audio codec binding을 설명합니다.

Source pathDocumentation/devicetree/bindings/sound/google,chv3-codec.yaml
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

google,chv3-codec.yaml:1-31

NXP XCVR와 Google Chameleon·ChromeOS EC·SC7180 audio 구성의 memory, interrupt, DAI graph를 먼저 해설하고, 접을 수 있는 영어 원문 전체와 source path·symbol·줄 좌표를 보존한 한국어 전문 번역을 제공합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/sound/google,chv3-codec.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: Google Chameleon v3 audio codec
8
9 maintainers:
10 - Paweł Anikiel <pan@semihalf.com>
11
12 allOf:
13 - $ref: dai-common.yaml#
14
15 properties:
16 compatible:
17 const: google,chv3-codec
18
19 "#sound-dai-cells":
20 const: 0
21
22 required:
23 - compatible
24
25 additionalProperties: false
26
27 examples:
28 - |
29 audio-codec {
30 compatible = "google,chv3-codec";
31 };
32

3. 한국어 전문 번역

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

Google Chameleon v3 audio codec

1-14

이 YAML binding은 Google Chameleon v3 audio codec을 정의합니다. `dai-common.yaml#`을 상속하며 schema ID는 `http://devicetree.org/schemas/sound/google,chv3-codec.yaml#`, maintainer는 Paweł Anikiel입니다.

Compatible과 DAI cell

15-26

`compatible`은 `google,chv3-codec`, `#sound-dai-cells`는 0입니다. 필수 속성은 `compatible`이며 `additionalProperties: false`이므로 정의되지 않은 추가 속성은 허용하지 않습니다.

Chameleon v3 codec 예제

27-31

예제는 register나 별도 resource가 없는 `audio-codec` node에 `google,chv3-codec` compatible을 지정합니다.

audio-codec {
    compatible = "google,chv3-codec";
};