From: "Ardelean, Alexandru" <alexandru.Ardelean@analog.com>
To: "robh@kernel.org" <robh@kernel.org>,
"ardeleanalex@gmail.com" <ardeleanalex@gmail.com>
Cc: "linux-iio@vger.kernel.org" <linux-iio@vger.kernel.org>,
"Grozav, Andrei" <Andrei.Grozav@analog.com>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"jic23@kernel.org" <jic23@kernel.org>,
"Hennerich, Michael" <Michael.Hennerich@analog.com>,
"Nagy, Laszlo" <Laszlo.Nagy@analog.com>,
"Csomortani, Istvan" <Istvan.Csomortani@analog.com>,
"Costina, Adrian" <Adrian.Costina@analog.com>,
"Bogdan, Dragos" <Dragos.Bogdan@analog.com>
Subject: Re: [PATCH v10 6/8] dt-bindings: iio: adc: add bindings doc for AXI ADC driver
Date: Sat, 21 Mar 2020 07:30:12 +0000 [thread overview]
Message-ID: <ec6b94df12bb1726357f78da32387a7a237a26b9.camel@analog.com> (raw)
In-Reply-To: <20200320175339.GA24239@bogus>
On Fri, 2020-03-20 at 11:53 -0600, Rob Herring wrote:
> On Mon, Mar 16, 2020 at 05:50:33PM +0200, Alexandru Ardelean wrote:
> > This change adds the bindings documentation for the AXI ADC driver.
> >
> > Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com>
>
> Your author and S-o-b emails don't match.
Hmm, crap.
I sent it from my GMail account, since using the company one is a bit more
difficult these days [with WFH, VPN, etc].
I'll try to do some work to access the company one.
>
> > ---
> > .../bindings/iio/adc/adi,axi-adc.yaml | 63 +++++++++++++++++++
> > 1 file changed, 63 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/iio/adc/adi,axi-
> > adc.yaml
> >
> > diff --git a/Documentation/devicetree/bindings/iio/adc/adi,axi-adc.yaml
> > b/Documentation/devicetree/bindings/iio/adc/adi,axi-adc.yaml
> > new file mode 100644
> > index 000000000000..6bd80e241f40
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/iio/adc/adi,axi-adc.yaml
> > @@ -0,0 +1,63 @@
> > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> > +%YAML 1.2
> > +---
> > +$id: http://devicetree.org/schemas/iio/adc/adi,axi-adc.yaml#
> > +$schema: http://devicetree.org/meta-schemas/core.yaml#
> > +
> > +title: Analog Devices AXI ADC IP core
> > +
> > +maintainers:
> > + - Michael Hennerich <michael.hennerich@analog.com>
> > + - Alexandru Ardelean <alexandru.ardelean@analog.com>
> > +
> > +description: |
> > + Analog Devices Generic AXI ADC IP core for interfacing an ADC device
> > + with a high speed serial (JESD204B/C) or source synchronous parallel
> > + interface (LVDS/CMOS).
> > + Usually, some other interface type (i.e SPI) is used as a control
> > + interface for the actual ADC, while this IP core will interface
> > + to the data-lines of the ADC and handle the streaming of data into
> > + memory via DMA.
> > +
> > + https://wiki.analog.com/resources/fpga/docs/axi_adc_ip
> > +
> > +properties:
> > + compatible:
> > + enum:
> > + - adi,axi-adc-10.0.a
> > +
> > + reg:
> > + maxItems: 1
> > +
> > + dmas:
> > + maxItems: 1
> > +
> > + dma-names:
> > + maxItems: 1
>
> Drop this. Implied by 'items' length.
>
> With those 2 things fixed,
>
> Reviewed-by: Rob Herring <robh@kernel.org>
>
> > + items:
> > + - const: rx
> > +
> > + adi,adc-dev:
> > + $ref: /schemas/types.yaml#/definitions/phandle
> > + description:
> > + A reference to a the actual ADC to which this FPGA ADC interfaces to.
> > +
> > +required:
> > + - compatible
> > + - dmas
> > + - reg
> > + - adi,adc-dev
> > +
> > +additionalProperties: false
> > +
> > +examples:
> > + - |
> > + axi-adc@44a00000 {
> > + compatible = "adi,axi-adc-10.0.a";
> > + reg = <0x44a00000 0x10000>;
> > + dmas = <&rx_dma 0>;
> > + dma-names = "rx";
> > +
> > + adi,adc-dev = <&spi_adc>;
> > + };
> > +...
> > --
> > 2.20.1
> >
next prev parent reply other threads:[~2020-03-21 7:30 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-16 15:50 [PATCH v10 0/8] iio: adi-axi-adc,ad9647: Add support for AD9467 ADC Alexandru Ardelean
2020-03-16 15:50 ` [PATCH v10 1/8] include: fpga: adi-axi-common.h: fixup whitespace tab -> space Alexandru Ardelean
2020-03-16 15:50 ` [PATCH v10 2/8] include: fpga: adi-axi-common.h: add version helper macros Alexandru Ardelean
2020-03-16 15:50 ` [PATCH v10 3/8] iio: buffer-dmaengine: use %zu specifier for sprintf(align) Alexandru Ardelean
2020-03-16 15:50 ` [PATCH v10 4/8] iio: buffer-dmaengine: add dev-managed calls for buffer alloc Alexandru Ardelean
2020-03-16 15:50 ` [PATCH v10 5/8] iio: adc: adi-axi-adc: add support for AXI ADC IP core Alexandru Ardelean
2020-03-16 15:50 ` [PATCH v10 6/8] dt-bindings: iio: adc: add bindings doc for AXI ADC driver Alexandru Ardelean
2020-03-20 17:53 ` Rob Herring
2020-03-21 7:30 ` Ardelean, Alexandru [this message]
2020-03-16 15:50 ` [PATCH v10 7/8] iio: adc: ad9467: add support AD9467 ADC Alexandru Ardelean
2020-03-16 15:50 ` [PATCH v10 8/8] dt-bindings: iio: adc: add bindings doc for " Alexandru Ardelean
2020-03-20 0:50 ` Rob Herring
2020-03-20 6:19 ` Ardelean, Alexandru
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ec6b94df12bb1726357f78da32387a7a237a26b9.camel@analog.com \
--to=alexandru.ardelean@analog.com \
--cc=Adrian.Costina@analog.com \
--cc=Andrei.Grozav@analog.com \
--cc=Dragos.Bogdan@analog.com \
--cc=Istvan.Csomortani@analog.com \
--cc=Laszlo.Nagy@analog.com \
--cc=Michael.Hennerich@analog.com \
--cc=ardeleanalex@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=jic23@kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robh@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).