요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
Sony CXD2880 DVB-T2/T tuner + demodulator driver SPI adapter
3
Required properties:
4
- compatible: Should be "sony,cxd2880".
5
- reg: SPI chip select number for the device.
6
- spi-max-frequency: Maximum bus speed, should be set to <55000000> (55MHz).
8
Optional properties:
9
- vcc-supply: Optional phandle to the vcc regulator to power the adapter,
10
as described in the file ../regulator/regulator.txt
12
Example:
14
cxd2880@0 {
15
compatible = "sony,cxd2880";
16
reg = <0>; /* CE0 */
17
spi-max-frequency = <55000000>; /* 55MHz */
18
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Sony CXD2880 SPI adapter
1-11Sony CXD2880 DVB-T2/T tuner와 demodulator의 SPI adapter입니다. 필수 `compatible`은 `sony,cxd2880`, `reg`는 SPI chip-select 번호, `spi-max-frequency`는 최대 bus speed인 `<55000000>` 즉 55MHz여야 합니다.
선택적인 `vcc-supply`는 adapter 전원용 VCC regulator phandle이며 `../regulator/regulator.txt`의 설명을 따릅니다.
SPI controller CE0→55MHz max
CXD2880 adapter→DVB-T2/T tuner + demodulator
vcc-supply→선택적 regulator
55MHz 이하 SPI link로 tuner·demodulator를 제어하고 선택적 regulator가 전원을 공급합니다.
CE0 55MHz 예제
12-18예제는 chip-select 0에서 CXD2880을 최대 55MHz로 구동합니다.
cxd2880@0 {
compatible = "sony,cxd2880";
reg = <0>; /* CE0 */
spi-max-frequency = <55000000>; /* 55MHz */
};
요약과 해설
sony-cxd2880.txt:1-18Chip-select와 선택적 VCC regulator를 설명합니다.