Merge tag 'ceph-for-4.16-rc1' of git://github.com/ceph/ceph-client
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / media / i2c / mt9m111.txt
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 For further reading on port node refer to
13 Documentation/devicetree/bindings/media/video-interfaces.txt.
14
15 Example:
16
17         i2c_master {
18                 mt9m111@5d {
19                         compatible = "micron,mt9m111";
20                         reg = <0x5d>;
21                         clocks = <&mclk>;
22                         clock-names = "mclk";
23
24                         remote = <&pxa_camera>;
25                         port {
26                                 mt9m111_1: endpoint {
27                                         bus-width = <8>;
28                                         remote-endpoint = <&pxa_camera>;
29                                 };
30                         };
31                 };
32         };