요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
Toshiba et8ek8 5MP sensor
Toshiba et8ek8 5MP sensor is an image sensor found in Nokia N900 device
More detailed documentation can be found in
Documentation/devicetree/bindings/media/video-interfaces.txt .
Mandatory properties
--------------------
- compatible: "toshiba,et8ek8"
- reg: I2C address (0x3e, or an alternative address)
- vana-supply: Analogue voltage supply (VANA), 2.8 volts
- clocks: External clock to the sensor
- reset-gpios: XSHUTDOWN GPIO. The XSHUTDOWN signal is active low. The sensor
is in hardware standby mode when the signal is in the low state.
Optional properties
-------------------
- flash-leds: See ../video-interfaces.txt
- lens-focus: See ../video-interfaces.txt
Endpoint node mandatory properties
----------------------------------
- remote-endpoint: A phandle to the bus receiver's endpoint node.
Example
-------
&i2c3 {
clock-frequency = <400000>;
cam1: camera@3e {
compatible = "toshiba,et8ek8";
reg = <0x3e>;
vana-supply = <&vaux4>;
clocks = <&isp 0>;
assigned-clocks = <&isp 0>;
assigned-clock-rates = <9600000>;
reset-gpio = <&gpio4 6 GPIO_ACTIVE_HIGH>; /* 102 */
port {
csi_cam1: endpoint {
remote-endpoint = <&csi_out1>;
};
};
};
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Nokia N900의 ET8EK8 sensor
1-8Toshiba ET8EK8은 Nokia N900에 사용된 5MP image sensor입니다. 더 자세한 video interface 규칙은 `Documentation/devicetree/bindings/media/video-interfaces.txt`에 있습니다.
2.8V analog supply와 external clock으로 sensor를 구동하고 CSI endpoint를 ISP에 연결합니다.
Supply, clock과 XSHUTDOWN
9-25필수 `compatible`은 `toshiba,et8ek8`, `reg`는 기본 `0x3e` 또는 alternative I2C address입니다. `vana-supply`는 2.8V analog VANA supply, `clocks`는 sensor external clock입니다.
`reset-gpios`는 active-low XSHUTDOWN GPIO이며 signal이 low일 때 sensor는 hardware standby mode입니다. 선택적인 `flash-leds`와 `lens-focus`는 `../video-interfaces.txt`를 따릅니다.
필수 remote endpoint
26-32Endpoint node의 필수 `remote-endpoint`는 bus receiver endpoint의 phandle입니다.
9.6MHz CSI camera 예제
33-55예제는 400kHz I2C3 bus의 주소 `0x3e`에 sensor를 두고 `vaux4` analog supply와 ISP clock 0을 9.6MHz로 공급합니다. 원문 예제는 필수 속성 설명의 `reset-gpios`와 달리 singular `reset-gpio`를 사용하고 active-high flag를 적었으며, 이 표기는 원문 그대로 보존합니다. Sensor endpoint는 `csi_out1`을 가리킵니다.
&i2c3 {
clock-frequency = <400000>;
cam1: camera@3e {
compatible = "toshiba,et8ek8";
reg = <0x3e>;
vana-supply = <&vaux4>;
clocks = <&isp 0>;
assigned-clocks = <&isp 0>;
assigned-clock-rates = <9600000>;
reset-gpio = <&gpio4 6 GPIO_ACTIVE_HIGH>; /* 102 */
port {
csi_cam1: endpoint {
remote-endpoint = <&csi_out1>;
};
};
};
};
요약과 해설
toshiba,et8ek8.txt:1-559.6MHz ISP clock 예제의 원문 GPIO 표기 차이까지 보존합니다.