요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
PCM3060 audio CODEC
3
This driver supports both I2C and SPI.
5
Required properties:
7
- compatible: "ti,pcm3060"
9
- reg : the I2C address of the device for I2C, the chip select
10
number for SPI.
12
Optional properties:
14
- ti,out-single-ended: "true" if output is single-ended;
15
"false" or not specified if output is differential.
17
Examples:
19
pcm3060: pcm3060@46 {
20
compatible = "ti,pcm3060";
21
reg = <0x46>;
22
ti,out-single-ended = "true";
23
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
PCM3060 bus·output mode
1-16PCM3060 audio codec driver는 I2C와 SPI를 모두 지원합니다. 필수 `compatible`은 `ti,pcm3060`이고 `reg`는 I2C address 또는 SPI chip-select number입니다.
선택 `ti,out-single-ended`가 `true`이면 output은 single-ended 방식이고, `false`이거나 속성이 없으면 differential 방식입니다.
PCM3060 single-ended 예제
17-23예제는 I2C address `0x46`에서 single-ended output을 활성화합니다.
pcm3060: pcm3060@46 {
compatible = "ti,pcm3060";
reg = <0x46>;
ti,out-single-ended = "true";
};
요약과 해설
pcm3060.txt:1-23PCM3060의 I2C·SPI 주소와 single-ended output 선택을 설명합니다. 접을 수 있는 영어 원문은 전체 source line과 공백을 보존하며, 한국어 전문 번역은 property·endpoint·phandle·예제 코드를 원형대로 유지합니다.