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

Linux 6.18.37 · Devicetree Bindings / Sound

Analog Devices SSM4567 amplifier

SSM4567의 LR_SEL 연결별 I2C address를 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

ssm4567.txt:1-15

SSM4567의 LR_SEL 연결별 I2C address를 설명합니다. 영어 원문 전체와 줄 좌표를 보존하고 한국어 전문 번역에서는 property·pin·phandle·수치와 예제 코드를 원형대로 유지합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 Analog Devices SSM4567 audio amplifier
2
3 This device supports I2C only.
4
5 Required properties:
6 - compatible : Must be "adi,ssm4567"
7 - reg : the I2C address of the device. This will either be 0x34 (LR_SEL/ADDR connected to AGND),
8 0x35 (LR_SEL/ADDR connected to IOVDD) or 0x36 (LR_SEL/ADDR open).
9
10 Example:
11
12 ssm4567: ssm4567@34 {
13 compatible = "adi,ssm4567";
14 reg = <0x34>;
15 };
16

3. 한국어 전문 번역

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

SSM4567 I2C address 선택

1-9

Analog Devices SSM4567 amplifier는 I2C만 지원합니다. `compatible`은 `adi,ssm4567`입니다. `reg` address는 `LR_SEL/ADDR` 연결에 따라 AGND이면 `0x34`, IOVDD이면 `0x35`, open이면 `0x36`입니다.

SSM4567 예제

10-15

예제는 AGND-selected I2C address `0x34`를 사용합니다.

ssm4567: ssm4567@34 {
        compatible = "adi,ssm4567";
        reg = <0x34>;
};