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

Linux 6.18.37 · Devicetree Bindings / Sound

Realtek RT1308 amplifier

RT1308 I2C amplifier node를 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

rt1308.txt:1-17

RT1308 I2C amplifier node를 설명합니다. 영어 원문 전체와 줄 좌표를 보존하고, 한국어 전문 번역에서는 module·property·command·source path를 원형으로 유지하며 ASCII 구조도와 표를 구조화해 제공합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 RT1308 audio Amplifier
2
3 This device supports I2C only.
4
5 Required properties:
6
7 - compatible : "realtek,rt1308".
8
9 - reg : The I2C address of the device.
10
11
12 Example:
13
14 rt1308: rt1308@10 {
15 compatible = "realtek,rt1308";
16 reg = <0x10>;
17 };
18

3. 한국어 전문 번역

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

RT1308 I2C 속성

1-11

RT1308 audio amplifier는 I2C만 지원합니다. 필수 `compatible`은 `realtek,rt1308`, `reg`는 device I2C address입니다.

RT1308 예제

12-17

예제는 RT1308을 I2C address `0x10`에 둡니다.

rt1308: rt1308@10 {
        compatible = "realtek,rt1308";
        reg = <0x10>;
};