Message ID | 1402863452-30365-2-git-send-email-robert.jarzmik@free.fr (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Robert, On Sun, 15 Jun 2014, Robert Jarzmik wrote: > Add documentation for the Micron mt9m111 image sensor. A nitpick: this isn't documentation for the sensor:) This is driver DT bindings' documentation. Thanks Guennadi > > Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr> > --- > .../devicetree/bindings/media/i2c/mt9m111.txt | 28 ++++++++++++++++++++++ > 1 file changed, 28 insertions(+) > create mode 100644 Documentation/devicetree/bindings/media/i2c/mt9m111.txt > > diff --git a/Documentation/devicetree/bindings/media/i2c/mt9m111.txt b/Documentation/devicetree/bindings/media/i2c/mt9m111.txt > new file mode 100644 > index 0000000..ed5a334 > --- /dev/null > +++ b/Documentation/devicetree/bindings/media/i2c/mt9m111.txt > @@ -0,0 +1,28 @@ > +Micron 1.3Mp CMOS Digital Image Sensor > + > +The Micron MT9M111 is a CMOS active pixel digital image sensor with an active > +array size of 1280H x 1024V. It is programmable through a simple two-wire serial > +interface. > + > +Required Properties: > +- compatible: value should be "micron,mt9m111" > + > +For further reading on port node refer to > +Documentation/devicetree/bindings/media/video-interfaces.txt. > + > +Example: > + > + i2c_master { > + mt9m111@5d { > + compatible = "micron,mt9m111"; > + reg = <0x5d>; > + > + remote = <&pxa_camera>; > + port { > + mt9m111_1: endpoint { > + bus-width = <8>; > + remote-endpoint = <&pxa_camera>; > + }; > + }; > + }; > + }; > -- > 2.0.0.rc2 > -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Guennadi Liakhovetski <g.liakhovetski@gmx.de> writes: > Hi Robert, > > On Sun, 15 Jun 2014, Robert Jarzmik wrote: > >> Add documentation for the Micron mt9m111 image sensor. > > A nitpick: this isn't documentation for the sensor:) This is driver DT > bindings' documentation. OK, for V2 (as its twin in pxa_camera). Cheers. -- Robert -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/Documentation/devicetree/bindings/media/i2c/mt9m111.txt b/Documentation/devicetree/bindings/media/i2c/mt9m111.txt new file mode 100644 index 0000000..ed5a334 --- /dev/null +++ b/Documentation/devicetree/bindings/media/i2c/mt9m111.txt @@ -0,0 +1,28 @@ +Micron 1.3Mp CMOS Digital Image Sensor + +The Micron MT9M111 is a CMOS active pixel digital image sensor with an active +array size of 1280H x 1024V. It is programmable through a simple two-wire serial +interface. + +Required Properties: +- compatible: value should be "micron,mt9m111" + +For further reading on port node refer to +Documentation/devicetree/bindings/media/video-interfaces.txt. + +Example: + + i2c_master { + mt9m111@5d { + compatible = "micron,mt9m111"; + reg = <0x5d>; + + remote = <&pxa_camera>; + port { + mt9m111_1: endpoint { + bus-width = <8>; + remote-endpoint = <&pxa_camera>; + }; + }; + }; + };
Add documentation for the Micron mt9m111 image sensor. Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr> --- .../devicetree/bindings/media/i2c/mt9m111.txt | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/mt9m111.txt