From: Guenter Roeck <linux@roeck-us.net>
To: Andrey Smirnov <andrew.smirnov@gmail.com>
Cc: Linux PM list <linux-pm@vger.kernel.org>,
Rob Herring <robh+dt@kernel.org>,
Enric Balletbo Serra <enric.balletbo@collabora.com>,
Chris Healy <cphealy@gmail.com>,
Lucas Stach <l.stach@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
Sebastian Reichel <sre@kernel.org>,
linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v6 3/3] dt-bindings: power: supply: Add bindings for Microchip UCS1002
Date: Fri, 3 May 2019 11:17:03 -0700 [thread overview]
Message-ID: <20190503181703.GA5088@roeck-us.net> (raw)
In-Reply-To: <CAHQ1cqGkcOHnW1S8QGGcgY3qV6ErCq5gbYgGwspVeoEt_ce6tg@mail.gmail.com>
On Fri, May 03, 2019 at 12:33:40PM -0500, Andrey Smirnov wrote:
> On Fri, May 3, 2019 at 12:03 PM Guenter Roeck <linux@roeck-us.net> wrote:
> >
> > On Fri, May 03, 2019 at 10:00:42AM -0700, Andrey Smirnov wrote:
> > > Add bindings for Microchip UCS1002 Programmable USB Port Power
> > > Controller with Charger Emulation.
> > >
> > > Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
> > > Reviewed-by: Rob Herring <robh+dt@kernel.org>
> > > Cc: Enric Balletbo Serra <enric.balletbo@collabora.com>
> > > Cc: Chris Healy <cphealy@gmail.com>
> > > Cc: Lucas Stach <l.stach@pengutronix.de>
> > > Cc: Fabio Estevam <festevam@gmail.com>
> > > Cc: Guenter Roeck <linux@roeck-us.net>
> > > Cc: Sebastian Reichel <sre@kernel.org>
> > > Cc: linux-kernel@vger.kernel.org
> > > Cc: linux-pm@vger.kernel.org
> > > ---
> > > .../power/supply/microchip,ucs1002.txt | 27 +++++++++++++++++++
> > > 1 file changed, 27 insertions(+)
> > > create mode 100644 Documentation/devicetree/bindings/power/supply/microchip,ucs1002.txt
> > >
> > > diff --git a/Documentation/devicetree/bindings/power/supply/microchip,ucs1002.txt b/Documentation/devicetree/bindings/power/supply/microchip,ucs1002.txt
> > > new file mode 100644
> > > index 000000000000..1d284ad816bf
> > > --- /dev/null
> > > +++ b/Documentation/devicetree/bindings/power/supply/microchip,ucs1002.txt
> > > @@ -0,0 +1,27 @@
> > > +Microchip UCS1002 USB Port Power Controller
> > > +
> > > +Required properties:
> > > +- compatible : Should be "microchip,ucs1002";
> > > +- reg : I2C slave address
> > > +
> > > +Optional properties:
> > > +- interrupts : A list of interrupts lines present (could be either
> > > + corresponding to A_DET# pin, ALERT# pin, or both)
> > > +- interrupt-names : A list of interrupt names. Should contain (if
> > > + present):
> > > + - "a_det" for line connected to A_DET# pin
> > > + - "alert" for line connected to ALERT# pin
> > > + Both are expected to be IRQ_TYPE_EDGE_BOTH
> > > +Example:
> > > +
> > > +&i2c3 {
> > > + charger@32 {
> > > + compatible = "microchip,ucs1002";
> > > + pinctrl-names = "default";
> > > + pinctrl-0 = <&pinctrl_ucs1002_pins>;
> > > + reg = <0x32>;
> > > + interrupts-extended = <&gpio5 2 IRQ_TYPE_EDGE_BOTH>,
> > > + <&gpio3 21 IRQ_TYPE_EDGE_BOTH>;
> >
> > interrupts ?
>
> Can't really use it here since it assumes single "interrupt-parent"
> (we have gpio5 and gpio3 as parents above)
>
Ah, ok. Thanks for the clarification.
Guenter
next prev parent reply other threads:[~2019-05-03 18:17 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-03 17:00 [PATCH v6 0/3] Driver for UCS1002 Andrey Smirnov
2019-05-03 17:00 ` Andrey Smirnov
2019-05-03 17:00 ` [PATCH v6 1/3] power: supply: core: Add POWER_SUPPLY_HEALTH_OVERCURRENT constant Andrey Smirnov
2019-05-03 17:00 ` Andrey Smirnov
2019-05-03 17:00 ` [PATCH v6 2/3] power: supply: Add driver for Microchip UCS1002 Andrey Smirnov
2019-05-03 17:00 ` Andrey Smirnov
2019-05-03 17:00 ` [PATCH v6 3/3] dt-bindings: power: supply: Add bindings " Andrey Smirnov
2019-05-03 17:00 ` Andrey Smirnov
2019-05-03 17:03 ` Guenter Roeck
2019-05-03 17:03 ` Guenter Roeck
2019-05-03 17:33 ` Andrey Smirnov
2019-05-03 17:33 ` Andrey Smirnov
2019-05-03 18:17 ` Guenter Roeck [this message]
2019-05-03 18:17 ` Guenter Roeck
2019-05-03 20:38 ` [PATCH v6 0/3] Driver for UCS1002 Sebastian Reichel
2019-05-03 20:38 ` Sebastian Reichel
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=20190503181703.GA5088@roeck-us.net \
--to=linux@roeck-us.net \
--cc=andrew.smirnov@gmail.com \
--cc=cphealy@gmail.com \
--cc=enric.balletbo@collabora.com \
--cc=festevam@gmail.com \
--cc=l.stach@pengutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=robh+dt@kernel.org \
--cc=sre@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