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

Linux 6.18.37 · Devicetree Bindings / Sound

Dialog DA9055 audio codec

DA9055 codec의 별도 I2C 장치 구성을 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

da9055.txt:1-22

Audio codec의 bus·전원·clock·microphone·jack detection 속성을 먼저 해설하고, 접을 수 있는 영어 원문 전체와 원문 줄 좌표를 보존한 한국어 전문 번역을 제공합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 * Dialog DA9055 Audio CODEC
2
3 DA9055 provides Audio CODEC support (I2C only).
4
5 The Audio CODEC device in DA9055 has its own I2C address which is configurable,
6 so the device is instantiated separately from the PMIC (MFD) device.
7
8 For details on accompanying PMIC I2C device, see the following:
9 Documentation/devicetree/bindings/mfd/da9055.txt
10
11 Required properties:
12
13 - compatible: "dlg,da9055-codec"
14 - reg: Specifies the I2C slave address
15
16
17 Example:
18
19 codec: da9055-codec@1a {
20 compatible = "dlg,da9055-codec";
21 reg = <0x1a>;
22 };
23

3. 한국어 전문 번역

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

DA9055 codec와 별도 I2C 주소

1-16

Dialog DA9055는 I2C 전용 audio CODEC을 제공합니다. Codec 장치는 구성 가능한 자체 I2C 주소를 가지므로 PMIC(MFD) 장치와 별도로 instantiate합니다.

함께 쓰는 PMIC I2C 장치의 자세한 내용은 `Documentation/devicetree/bindings/mfd/da9055.txt`를 참조합니다.

필수 `compatible` 값은 `dlg,da9055-codec`이고 `reg`에는 I2C slave address를 지정합니다.

DA9055 codec 예제

17-22

예제는 별도 codec node에 I2C 주소 `0x1a`를 지정합니다.

codec: da9055-codec@1a {
        compatible = "dlg,da9055-codec";
        reg = <0x1a>;
};