Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751728AbdGEOtI (ORCPT ); Wed, 5 Jul 2017 10:49:08 -0400 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:31326 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751626AbdGEOtH (ORCPT ); Wed, 5 Jul 2017 10:49:07 -0400 From: Hugues FRUCHET To: Rob Herring CC: Sylwester Nawrocki , "H. Nikolaus Schaller" , Guennadi Liakhovetski , "Mark Rutland" , Maxime Coquelin , Alexandre TORGUE , Mauro Carvalho Chehab , Hans Verkuil , "devicetree@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" , "linux-media@vger.kernel.org" , Benjamin Gaignard , Yannick FERTRE Subject: Re: [PATCH v2 1/7] DT bindings: add bindings for ov965x camera module Thread-Topic: [PATCH v2 1/7] DT bindings: add bindings for ov965x camera module Thread-Index: AQHS9Zdxb91BmN0w8kODVKga91wTQKJFLr6A Date: Wed, 5 Jul 2017 14:48:15 +0000 Message-ID: <6fa2e20e-ac19-0296-d481-f0cb4aa4a231@st.com> References: <1499073368-31905-1-git-send-email-hugues.fruchet@st.com> <1499073368-31905-2-git-send-email-hugues.fruchet@st.com> <20170705140305.pixlhd65xu6g3nlf@rob-hp-laptop> In-Reply-To: <20170705140305.pixlhd65xu6g3nlf@rob-hp-laptop> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 x-ms-exchange-messagesentrepresentingtype: 1 x-ms-exchange-transport-fromentityheader: Hosted x-originating-ip: [10.75.127.50] Content-Type: text/plain; charset="utf-8" Content-ID: <5B72E720168E7A4888E0005E8C16AB31@st.com> MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-07-05_08:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by mail.home.local id v65EnC4Z017116 Content-Length: 1648 Lines: 53 On 07/05/2017 04:03 PM, Rob Herring wrote: > On Mon, Jul 03, 2017 at 11:16:02AM +0200, Hugues Fruchet wrote: >> From: "H. Nikolaus Schaller" >> >> This adds documentation of device tree bindings >> for the OV965X family camera sensor module. >> >> Signed-off-by: H. Nikolaus Schaller >> Signed-off-by: Hugues Fruchet >> --- >> .../devicetree/bindings/media/i2c/ov965x.txt | 45 ++++++++++++++++++++++ >> 1 file changed, 45 insertions(+) >> create mode 100644 Documentation/devicetree/bindings/media/i2c/ov965x.txt >> >> diff --git a/Documentation/devicetree/bindings/media/i2c/ov965x.txt b/Documentation/devicetree/bindings/media/i2c/ov965x.txt >> new file mode 100644 >> index 0000000..4ceb727 >> --- /dev/null >> +++ b/Documentation/devicetree/bindings/media/i2c/ov965x.txt >> @@ -0,0 +1,45 @@ >> +* Omnivision OV9650/9652/9655 CMOS sensor >> + >> +The Omnivision OV965x sensor support multiple resolutions output, such as >> +CIF, SVGA, UXGA. It also can support YUV422/420, RGB565/555 or raw RGB >> +output format. >> + >> +Required Properties: >> +- compatible: should be one of >> + "ovti,ov9650" >> + "ovti,ov9652" >> + "ovti,ov9655" >> +- clocks: reference to the mclk input clock. >> + >> +Optional Properties: >> +- resetb-gpios: reference to the GPIO connected to the RESETB pin, if any, >> + polarity is active low. > > reset-gpios > >> +- pwdn-gpios: reference to the GPIO connected to the PWDN pin, if any, >> + polarity is active high. > > powerdown-gpios > > Both are standardish names for such signals. > > Rob Thanks Rob, I will fix, Hugues. >