* [PATCH 1/2] dt-bindings: media: i2c: Document MT9V111 bindings [not found] <1528730253-25135-1-git-send-email-jacopo+renesas@jmondi.org> @ 2018-06-11 15:17 ` Jacopo Mondi 2018-06-12 22:11 ` Rob Herring 2018-07-23 14:29 ` Sakari Ailus 0 siblings, 2 replies; 3+ messages in thread From: Jacopo Mondi @ 2018-06-11 15:17 UTC (permalink / raw) To: mchehab, robh, devicetree Cc: Jacopo Mondi, linux-media, linux-kernel, linux-renesas-soc Add documentation for Aptina MT9V111 image sensor. Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org> --- .../bindings/media/i2c/aptina,mt9v111.txt | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt diff --git a/Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt b/Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt new file mode 100644 index 0000000..bac4bf0 --- /dev/null +++ b/Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt @@ -0,0 +1,46 @@ +* Aptina MT9V111 CMOS sensor +---------------------------- + +The Aptina MT9V111 is a 1/4-Inch VGA-format digital image sensor with a core +based on Aptina MT9V011 sensor and an integrated Image Flow Processor (IFP). + +The sensor has an active pixel array of 649x489 pixels and can output a number +of image resolution and formats controllable through a simple two-wires +interface. + +Required properties: +-------------------- + +- compatible: shall be "aptina,mt9v111". +- clocks: reference to the system clock input provider. + +Optional properties: +-------------------- + +- enable-gpios: output enable signal, pin name "OE#". Active low. +- standby-gpios: low power state control signal, pin name "STANDBY". + Active high. +- reset-gpios: chip reset signal, pin name "RESET#". Active low. + +The device node must contain one 'port' child node with one 'endpoint' child +sub-node for its digital output video port, in accordance with the video +interface bindings defined in: +Documentation/devicetree/bindings/media/video-interfaces.txt + +Example: +-------- + + &i2c1 { + camera@48 { + compatible = "aptina,mt9v111"; + reg = <0x48>; + + clocks = <&camera_clk>; + + port { + mt9v111_out: endpoint { + remote-endpoint = <&ceu_in>; + }; + }; + }; + }; -- 2.7.4 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] dt-bindings: media: i2c: Document MT9V111 bindings 2018-06-11 15:17 ` [PATCH 1/2] dt-bindings: media: i2c: Document MT9V111 bindings Jacopo Mondi @ 2018-06-12 22:11 ` Rob Herring 2018-07-23 14:29 ` Sakari Ailus 1 sibling, 0 replies; 3+ messages in thread From: Rob Herring @ 2018-06-12 22:11 UTC (permalink / raw) To: Jacopo Mondi Cc: mchehab, devicetree, linux-media, linux-kernel, linux-renesas-soc On Mon, Jun 11, 2018 at 05:17:32PM +0200, Jacopo Mondi wrote: > Add documentation for Aptina MT9V111 image sensor. > > Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org> > --- > .../bindings/media/i2c/aptina,mt9v111.txt | 46 ++++++++++++++++++++++ > 1 file changed, 46 insertions(+) > create mode 100644 Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt Reviewed-by: Rob Herring <robh@kernel.org> ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] dt-bindings: media: i2c: Document MT9V111 bindings 2018-06-11 15:17 ` [PATCH 1/2] dt-bindings: media: i2c: Document MT9V111 bindings Jacopo Mondi 2018-06-12 22:11 ` Rob Herring @ 2018-07-23 14:29 ` Sakari Ailus 1 sibling, 0 replies; 3+ messages in thread From: Sakari Ailus @ 2018-07-23 14:29 UTC (permalink / raw) To: Jacopo Mondi Cc: mchehab, robh, devicetree, linux-media, linux-kernel, linux-renesas-soc Hi Jacopo, On Mon, Jun 11, 2018 at 05:17:32PM +0200, Jacopo Mondi wrote: > Add documentation for Aptina MT9V111 image sensor. > > Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org> > --- > .../bindings/media/i2c/aptina,mt9v111.txt | 46 ++++++++++++++++++++++ > 1 file changed, 46 insertions(+) > create mode 100644 Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt > > diff --git a/Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt b/Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt > new file mode 100644 > index 0000000..bac4bf0 > --- /dev/null > +++ b/Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt > @@ -0,0 +1,46 @@ > +* Aptina MT9V111 CMOS sensor > +---------------------------- > + > +The Aptina MT9V111 is a 1/4-Inch VGA-format digital image sensor with a core > +based on Aptina MT9V011 sensor and an integrated Image Flow Processor (IFP). > + > +The sensor has an active pixel array of 649x489 pixels and can output a number 640x480 ? > +of image resolution and formats controllable through a simple two-wires > +interface. > + > +Required properties: > +-------------------- > + > +- compatible: shall be "aptina,mt9v111". > +- clocks: reference to the system clock input provider. > + > +Optional properties: > +-------------------- > + > +- enable-gpios: output enable signal, pin name "OE#". Active low. > +- standby-gpios: low power state control signal, pin name "STANDBY". > + Active high. > +- reset-gpios: chip reset signal, pin name "RESET#". Active low. > + > +The device node must contain one 'port' child node with one 'endpoint' child > +sub-node for its digital output video port, in accordance with the video > +interface bindings defined in: > +Documentation/devicetree/bindings/media/video-interfaces.txt > + > +Example: > +-------- > + > + &i2c1 { > + camera@48 { > + compatible = "aptina,mt9v111"; > + reg = <0x48>; > + > + clocks = <&camera_clk>; > + > + port { > + mt9v111_out: endpoint { > + remote-endpoint = <&ceu_in>; > + }; > + }; > + }; > + }; -- Sakari Ailus e-mail: sakari.ailus@iki.fi ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-07-23 14:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1528730253-25135-1-git-send-email-jacopo+renesas@jmondi.org>
2018-06-11 15:17 ` [PATCH 1/2] dt-bindings: media: i2c: Document MT9V111 bindings Jacopo Mondi
2018-06-12 22:11 ` Rob Herring
2018-07-23 14:29 ` Sakari Ailus
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox