요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
Device Tree bindings for the Armada 370 DB audio
2
================================================
4
These Device Tree bindings are used to describe the audio complex
5
found on the Armada 370 DB platform.
7
Mandatory properties:
9
* compatible: must be "marvell,a370db-audio"
11
* marvell,audio-controller: a phandle that points to the audio
12
controller of the Armada 370 SoC.
14
* marvell,audio-codec: a set of three phandles that points to:
16
1/ the analog audio codec connected to the Armada 370 SoC
17
2/ the S/PDIF transceiver
18
3/ the S/PDIF receiver
20
Example:
22
sound {
23
compatible = "marvell,a370db-audio";
24
marvell,audio-controller = <&audio_controller>;
25
marvell,audio-codec = <&audio_codec &spdif_out &spdif_in>;
26
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Armada 370 DB audio complex
1-6이 binding은 Armada 370 DB platform의 audio complex를 설명합니다.
필수 controller와 codec phandle
7-19`compatible`은 `marvell,a370db-audio`이고 `marvell,audio-controller`는 Armada 370 SoC audio controller의 phandle입니다.
`marvell,audio-codec`은 순서대로 analog audio codec, S/PDIF transmitter, S/PDIF receiver를 가리키는 phandle 세 개의 집합입니다.
Armada 370 DB 예제
20-26예제는 audio controller와 세 codec endpoint를 지정한 sound node입니다.
sound {
compatible = "marvell,a370db-audio";
marvell,audio-controller = <&audio_controller>;
marvell,audio-codec = <&audio_codec &spdif_out &spdif_in>;
};
요약과 해설
armada-370db-audio.txt:1-26Audio controller와 codec의 clock, DMA, GPIO, supply 연결 규칙을 먼저 해설하고, 접을 수 있는 영어 원문 전체와 원문 줄 좌표를 보존한 한국어 전문 번역을 제공합니다.