요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
* Device tree bindings for Nokia Retu and Tahvo multi-function device
Retu and Tahvo are a multi-function devices found on Nokia Internet
Tablets (770, N800 and N810). The Retu chip provides watchdog timer
and power button control functionalities while Tahvo chip provides
USB transceiver functionality.
Required properties:
- compatible: "nokia,retu" or "nokia,tahvo"
- reg: Specifies the CBUS slave address of the ASIC chip
- interrupts: The interrupt line the device is connected to
Example:
cbus0 {
compatible = "i2c-cbus-gpio";
...
retu: retu@1 {
compatible = "nokia,retu";
interrupt-parent = <&gpio4>;
interrupts = <12 IRQ_TYPE_EDGE_RISING>;
reg = <0x1>;
};
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Nokia Retu와 Tahvo
1-7Retu와 Tahvo는 Nokia Internet Tablet 770, N800, N810에 들어간 다기능 장치입니다. Retu chip은 watchdog timer와 power button 제어 기능을 제공하고, Tahvo chip은 USB transceiver 기능을 제공합니다.
두 ASIC이 담당하는 기능을 구분했습니다.
CBUS 주소와 interrupt
8-12`compatible`은 `nokia,retu` 또는 `nokia,tahvo`입니다. `reg`는 ASIC chip의 CBUS slave address를 지정하고, `interrupts`는 장치가 연결된 interrupt line을 지정합니다.
Retu CBUS 예제
13-24예제는 `i2c-cbus-gpio` 버스의 slave address `0x1`에 Retu를 두고 GPIO4 pin 12의 rising-edge interrupt를 연결합니다.
cbus0 {
compatible = "i2c-cbus-gpio";
...
retu: retu@1 {
compatible = "nokia,retu";
interrupt-parent = <&gpio4>;
interrupts = <12 IRQ_TYPE_EDGE_RISING>;
reg = <0x1>;
};
};
요약과 해설
retu.txt:1-24Retu의 watchdog·power button과 Tahvo의 USB transceiver 역할, CBUS 예제를 설명합니다.