요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
Texas Instruments TAS6424 Quad-Channel Audio amplifier
3
The TAS6424 serial control bus communicates through I2C protocols.
5
Required properties:
6
- compatible: "ti,tas6424" - TAS6424
7
- reg: I2C slave address
8
- sound-dai-cells: must be equal to 0
9
- standby-gpios: GPIO used to shut the TAS6424 down.
10
- mute-gpios: GPIO used to mute all the outputs
12
Example:
14
tas6424: tas6424@6a {
15
compatible = "ti,tas6424";
16
reg = <0x6a>;
18
#sound-dai-cells = <0>;
19
};
21
For more product information please see the link below:
22
https://www.ti.com/product/TAS6424-Q1
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
TAS6424 I2C·GPIO 속성
1-11TAS6424 quad-channel amplifier는 I2C를 사용합니다. 필수 `compatible`은 `ti,tas6424`, `reg`는 I2C slave address, `#sound-dai-cells`는 0입니다. `standby-gpios`는 shutdown, `mute-gpios`는 모든 output mute용 GPIO입니다.
TAS6424 예제·제품 링크
12-22예제는 address `0x6a`와 0-cell sound DAI를 선언합니다. 제품 정보는 `https://www.ti.com/product/TAS6424-Q1`에 있습니다.
tas6424: tas6424@6a {
compatible = "ti,tas6424";
reg = <0x6a>;
#sound-dai-cells = <0>;
};
요약과 해설
ti,tas6424.txt:1-22TAS6424 standby·mute GPIO와 sound DAI 설정을 설명합니다. 영어 원문 전체와 줄 좌표를 보존하고 한국어 전문 번역에서는 property·callback·pin·phandle·수치와 예제 코드를 원형대로 유지합니다.