From: Ivan Mikhaylov <fr0st61te@gmail.com>
To: Jonathan Cameron <jic23@kernel.org>
Cc: Lars-Peter Clausen <lars@metafoo.de>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>,
linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org
Subject: Re: [PATCH v5 1/2] dt-bindings: adc: provide max34408/9 device tree binding document
Date: Thu, 12 Oct 2023 19:27:33 +0300 [thread overview]
Message-ID: <e7b74daa9d0131246fd10f47aa4128bc8f8f3177.camel@gmail.com> (raw)
In-Reply-To: <20231012084052.504ac930@jic23-huawei>
On Thu, 2023-10-12 at 08:40 +0100, Jonathan Cameron wrote:
> On Tue, 10 Oct 2023 23:22:48 +0300
> Ivan Mikhaylov <fr0st61te@gmail.com> wrote:
>
> > On Tue, 2023-10-10 at 15:40 +0100, Jonathan Cameron wrote:
> > > On Sun, 8 Oct 2023 02:48:37 +0300
> > > Ivan Mikhaylov <fr0st61te@gmail.com> wrote:
> > >
> > > > The hardware binding for i2c current monitoring device with
> > > > overcurrent
> > > > control.
> > > >
> > > > Signed-off-by: Ivan Mikhaylov <fr0st61te@gmail.com>
> > > > ---
> > > > .../bindings/iio/adc/maxim,max34408.yaml | 141
> > > > ++++++++++++++++++
> > > > 1 file changed, 141 insertions(+)
> > > > create mode 100644
> > > > Documentation/devicetree/bindings/iio/adc/maxim,max34408.yaml
> > > >
> > > > diff --git
> > > > a/Documentation/devicetree/bindings/iio/adc/maxim,max34408.yaml
> > > > b/Documentation/devicetree/bindings/iio/adc/maxim,max34408.yaml
> > > > new file mode 100644
> > > > index 000000000000..9749f1fd1802
> > > > --- /dev/null
> > > > +++
> > > > b/Documentation/devicetree/bindings/iio/adc/maxim,max34408.yaml
> > > > @@ -0,0 +1,141 @@
> > > > +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> > > > +%YAML 1.2
> > > > +---
> > > > +$id:
> > > > http://devicetree.org/schemas/iio/adc/maxim,max34408.yaml#
> > > > +$schema: http://devicetree.org/meta-schemas/core.yaml#
> > > > +
> > > > +title: Two- and four-channel current monitors with overcurrent
> > > > control
> > > > +
> > > > +maintainers:
> > > > + - Ivan Mikhaylov <fr0st61te@gmail.com>
> > > > +
> > > > +description: |
> > > > + The MAX34408/MAX34409 are two- and four-channel current
> > > > monitors
> > > > that are
> > > > + configured and monitored with a standard I2C/SMBus serial
> > > > interface. Each
> > > > + unidirectional current sensor offers precision high-side
> > > > operation with a
> > > > + low full-scale sense voltage. The devices automatically
> > > > sequence
> > > > through
> > > > + two or four channels and collect the current-sense samples
> > > > and
> > > > average them
> > > > + to reduce the effect of impulse noise. The raw ADC samples
> > > > are
> > > > compared to
> > > > + user-programmable digital thresholds to indicate overcurrent
> > > > conditions.
> > > > + Overcurrent conditions trigger a hardware output to provide
> > > > an
> > > > immediate
> > > > + indication to shut down any necessary external circuitry.
> > > > +
> > > > + Specifications about the devices can be found at:
> > > > +
> > > > https://www.analog.com/media/en/technical-documentation/data-sheets/MAX34408-MAX34409.pdf
> > > > +
> > > > +properties:
> > > > + compatible:
> > > > + enum:
> > > > + - maxim,max34408
> > > > + - maxim,max34409
> > > > +
> > > > + "#address-cells":
> > > > + const: 1
> > > > +
> > > > + "#size-cells":
> > > > + const: 0
> > > > +
> > > > + reg:
> > > > + maxItems: 1
> > > > +
> > > > + interrupts:
> > > > + maxItems: 1
> > > > +
> > > > + powerdown-gpios:
> > > > + description:
> > > > + Shutdown Output. Open-drain output. This output
> > > > transitions
> > > > to high impedance
> > > > + when any of the digital comparator thresholds are
> > > > exceeded
> > > > as long as the ENA
> > > > + pin is high.
> > > > + maxItems: 1
> > > > +
> > > > + shtdn-enable-gpios:
> > >
> > > I guess the review crossed with you sending v5. There is some
> > > feedback on v4 you need
> > > to address here.
> >
> > Jonathan, I thought I did, I've changed ena to powerdown-gpios from
> > Krzysztof's comments but about this one pin I'm still not sure, it
> > looks like *-enable-gpios (like in *-enable-gpios pins in
> > iio/frequency/adi,adf4377.yaml) pin or is it not? Or maybe any
> > other
> > suggestions about naming of this one?
> >
> > Thanks.
>
> shutdown-gpios and make the sense (active high / low) such that
> setting
> it results in teh device being shut down.
> Or treat it as an enable and enable-gpios
>
> Something that indicates both shutdown and enable is confusing ;)
>
> Jonathan
Jonathan, then I make these changes:
powerdown-gpios: -> output-enable:
shtdn-enable-gpios: -> enable-gpios:
Is it ok?
Thanks.
next prev parent reply other threads:[~2023-10-12 16:27 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-07 23:48 [PATCH v5 0/2] Add maxim max34408/34409 ADC driver and yaml Ivan Mikhaylov
2023-10-07 23:48 ` [PATCH v5 1/2] dt-bindings: adc: provide max34408/9 device tree binding document Ivan Mikhaylov
2023-10-10 14:33 ` Rob Herring
2023-10-10 14:40 ` Jonathan Cameron
2023-10-10 20:22 ` Ivan Mikhaylov
2023-10-12 7:40 ` Jonathan Cameron
2023-10-12 16:27 ` Ivan Mikhaylov [this message]
2023-10-13 8:19 ` Jonathan Cameron
2023-10-13 8:35 ` Krzysztof Kozlowski
2023-10-13 9:09 ` Jonathan Cameron
2023-10-13 9:53 ` Krzysztof Kozlowski
2023-10-13 18:12 ` Jonathan Cameron
2023-10-07 23:48 ` [PATCH v5 2/2] iio: adc: Add driver support for MAX34408/9 Ivan Mikhaylov
2023-10-09 10:08 ` kernel test robot
2023-10-10 15:24 ` Jonathan Cameron
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=e7b74daa9d0131246fd10f47aa4128bc8f8f3177.camel@gmail.com \
--to=fr0st61te@gmail.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jic23@kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robh+dt@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).