← Documents Documentation/devicetree/bindings/sound/adi,ssm2602.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings / Sound

Analog Devices SSM2602 family

SSM2602 계열 codec의 I2C·SPI interface를 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

adi,ssm2602.txt:1-19

Audio controller와 codec의 clock, DMA, GPIO, supply 연결 규칙을 먼저 해설하고, 접을 수 있는 영어 원문 전체와 원문 줄 좌표를 보존한 한국어 전문 번역을 제공합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 Analog Devices SSM2602, SSM2603 and SSM2604 I2S audio CODEC devices
2
3 SSM2602 support both I2C and SPI as the configuration interface,
4 the selection is made by the MODE strap-in pin.
5 SSM2603 and SSM2604 only support I2C as the configuration interface.
6
7 Required properties:
8
9 - compatible : One of "adi,ssm2602", "adi,ssm2603" or "adi,ssm2604"
10
11 - reg : the I2C address of the device for I2C, the chip select
12 number for SPI.
13
14 Example:
15
16 ssm2602: ssm2602@1a {
17 compatible = "adi,ssm2602";
18 reg = <0x1a>;
19 };
20

3. 한국어 전문 번역

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

SSM2602 계열 configuration interface

1-6

SSM2602는 MODE strap-in pin으로 I2C 또는 SPI configuration interface를 선택합니다. SSM2603과 SSM2604는 I2C만 지원합니다.

필수 compatible과 reg

7-13

`compatible`은 `adi,ssm2602`, `adi,ssm2603`, `adi,ssm2604` 중 하나입니다. `reg`는 I2C일 때 device address, SPI일 때 chip select 번호입니다.

SSM2602 I2C 예제

14-19

예제는 I2C address `0x1a`의 SSM2602를 정의합니다.

ssm2602: ssm2602@1a {
        compatible = "adi,ssm2602";
        reg = <0x1a>;
};