From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from saturn.retrosnub.co.uk ([178.18.118.26]:47572 "EHLO saturn.retrosnub.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751083AbbFGPnv (ORCPT ); Sun, 7 Jun 2015 11:43:51 -0400 Message-ID: <557466B3.3030907@kernel.org> Date: Sun, 07 Jun 2015 16:43:47 +0100 From: Jonathan Cameron MIME-Version: 1.0 To: Vladimir Barinov CC: Hartmut Knaack , Lars-Peter Clausen , Peter Meerwald , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org, devicetree@vger.kernel.org Subject: Re: [PATCH 3/3] dt: Document Holt descrete ADC bindings References: <1433161073-21967-1-git-send-email-vladimir.barinov@cogentembedded.com> <1433161252-22122-1-git-send-email-vladimir.barinov@cogentembedded.com> In-Reply-To: <1433161252-22122-1-git-send-email-vladimir.barinov@cogentembedded.com> Content-Type: text/plain; charset=windows-1252 Sender: linux-iio-owner@vger.kernel.org List-Id: linux-iio@vger.kernel.org On 01/06/15 13:20, Vladimir Barinov wrote: > These bindings can be used to register Holt HI-8435/8436/8437 descrete ADC > > Signed-off-by: Vladimir Barinov > --- > .../devicetree/bindings/iio/adc/hi-843x.txt | 27 ++++++++++++++++++++++ > 1 file changed, 27 insertions(+) > create mode 100644 Documentation/devicetree/bindings/iio/adc/hi-843x.txt > > diff --git a/Documentation/devicetree/bindings/iio/adc/hi-843x.txt b/Documentation/devicetree/bindings/iio/adc/hi-843x.txt > new file mode 100644 > index 0000000..872e801 > --- /dev/null > +++ b/Documentation/devicetree/bindings/iio/adc/hi-843x.txt > @@ -0,0 +1,27 @@ > +Holt Integrated Circuits HI-8435/8436/8437 discrete ADC bindings > + > +Required properties: > + - compatible: Should be "holt,hi-8435" or "holt,hi-8436" or "holt,hi-8437" > + - reg: spi chip select number for the device > + > +Recommended properties: > + - spi-max-frequency: Definition as per > + Documentation/devicetree/bindings/spi/spi-bus.txt > + > +Optional properties: > + - holt,mr-gpio: GPIO used for controlling the MR (chip reset) pin Unless there is anything unusual about the chip reset line, I'd be tempted to go with reset-gpios which seems to be somewhat of a convention based on a quick grep of existing bindings. > + - holt,debounce-soft: enable software debounce at startup > + - holt,debounce-soft-delay: software debounce interval in milliseconds > + > +Example: > +adc@0 { > + compatible = "holt,hi-8435"; > + reg = <0>; > + > + holt,mr-gpio = <&gpio6 1 0>; > + > + holt,debounce-soft; > + holt,debounce-soft-delay = <100>; > + > + spi-max-frequency = <1000000>; > +}; >