← Documents Documentation/devicetree/bindings/media/i2c/micron,mt9m111.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

Micron MT9M111 Image Sensor

1.3MP sensor의 master clock과 digital video endpoint 바인딩입니다.

Source pathDocumentation/devicetree/bindings/media/i2c/micron,mt9m111.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약과 해설

micron,mt9m111.txt:1-37

PCLK sample edge와 PXA camera endpoint 연결을 설명합니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 Micron 1.3Mp CMOS Digital Image Sensor
2
3 The Micron MT9M111 is a CMOS active pixel digital image sensor with an active
4 array size of 1280H x 1024V. It is programmable through a simple two-wire serial
5 interface.
6
7 Required Properties:
8 - compatible: value should be "micron,mt9m111"
9 - clocks: reference to the master clock.
10 - clock-names: shall be "mclk".
11
12 The device node must contain one 'port' child node with one 'endpoint' child
13 sub-node for its digital output video port, in accordance with the video
14 interface bindings defined in:
15 Documentation/devicetree/bindings/media/video-interfaces.txt
16
17 Optional endpoint properties:
18 - pclk-sample: For information see ../video-interfaces.txt. The value is set to
19 0 if it isn't specified.
20
21 Example:
22
23 i2c_master {
24 mt9m111@5d {
25 compatible = "micron,mt9m111";
26 reg = <0x5d>;
27 clocks = <&mclk>;
28 clock-names = "mclk";
29
30 port {
31 mt9m111_1: endpoint {
32 remote-endpoint = <&pxa_camera>;
33 pclk-sample = <1>;
34 };
35 };
36 };
37 };
38

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

MT9M111 sensor와 video port

1-16

Micron MT9M111은 active array 1280H × 1024V의 1.3-megapixel CMOS active-pixel digital image sensor이며 단순한 two-wire serial interface로 program합니다.

필수 `compatible`은 `micron,mt9m111`, `clocks`는 master clock reference이고 `clock-names`는 `mclk`여야 합니다.

Device node는 digital output video port를 위한 `port` child 하나와 그 안의 `endpoint` child 하나를 포함해야 합니다. 이 graph 구조는 `Documentation/devicetree/bindings/media/video-interfaces.txt`를 따릅니다.

MT9M111 output graph
mclkMT9M111 sensor
1280×1024 active arrayDigital video output
Sensor endpointremote-endpoint
pxa_cameraCapture receiver

Master clock으로 sensor를 구동하고 digital video endpoint를 capture receiver에 연결합니다.

Pixel clock sample edge

17-20

선택적인 endpoint `pclk-sample`의 의미는 `../video-interfaces.txt`를 따릅니다. 이 속성을 지정하지 않으면 값은 0으로 설정됩니다.

PXA camera 연결 예제

21-37

예제는 I2C 주소 `0x5d`의 MT9M111에 `mclk`를 연결합니다. Sensor endpoint는 `pxa_camera`를 remote endpoint로 가리키고 `pclk-sample = <1>`을 선택합니다.

i2c_master {
        mt9m111@5d {
                compatible = "micron,mt9m111";
                reg = <0x5d>;
                clocks = <&mclk>;
                clock-names = "mclk";

                port {
                        mt9m111_1: endpoint {
                                remote-endpoint = <&pxa_camera>;
                                pclk-sample = <1>;
                        };
                };
        };
};