All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] gpio: pca953x: Add support for CAT9554
@ 2019-03-21  9:21 Geert Uytterhoeven
  2019-03-21  9:21 ` [PATCH v2 1/2] dt-bindings: gpio: pca953x: Document onnn,cat9554 Geert Uytterhoeven
  2019-03-21  9:21 ` [PATCH v2 2/2] gpio: pca953x: Add support for CAT9554 Geert Uytterhoeven
  0 siblings, 2 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2019-03-21  9:21 UTC (permalink / raw)
  To: Linus Walleij, Bartosz Golaszewski
  Cc: Rob Herring, Mark Rutland, Chris Brandt, linux-gpio, devicetree,
	linux-renesas-soc, Geert Uytterhoeven

	Hi Linus, Bartosz,

The ON Semiconductor CAT9554 is a variant of the PCA953x GPIO expander,
with 8 GPIOs and interrupt functionality.

Changes compared to v1:
  - Split DT binding doc and driver update in separate patches.

Thanks!

Geert Uytterhoeven (2):
  dt-bindings: gpio: pca953x: Document onnn,cat9554
  gpio: pca953x: Add support for CAT9554

 Documentation/devicetree/bindings/gpio/gpio-pca953x.txt | 1 +
 drivers/gpio/gpio-pca953x.c                             | 1 +
 2 files changed, 2 insertions(+)

-- 
2.17.1

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH v2 1/2] dt-bindings: gpio: pca953x: Document onnn,cat9554
  2019-03-21  9:21 [PATCH v2 0/2] gpio: pca953x: Add support for CAT9554 Geert Uytterhoeven
@ 2019-03-21  9:21 ` Geert Uytterhoeven
  2019-03-22 15:46   ` Bartosz Golaszewski
  2019-03-21  9:21 ` [PATCH v2 2/2] gpio: pca953x: Add support for CAT9554 Geert Uytterhoeven
  1 sibling, 1 reply; 8+ messages in thread
From: Geert Uytterhoeven @ 2019-03-21  9:21 UTC (permalink / raw)
  To: Linus Walleij, Bartosz Golaszewski
  Cc: Rob Herring, Mark Rutland, Chris Brandt, linux-gpio, devicetree,
	linux-renesas-soc, Geert Uytterhoeven

The ON Semiconductor CAT9554 is a variant of the PCA953x GPIO expander,
with 8 GPIOs and interrupt functionality.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
v2:
  - Split DT binding doc and driver update in separate patches.
---
 Documentation/devicetree/bindings/gpio/gpio-pca953x.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/gpio/gpio-pca953x.txt b/Documentation/devicetree/bindings/gpio/gpio-pca953x.txt
index fb144e2b65226601..8678df2a5713a9af 100644
--- a/Documentation/devicetree/bindings/gpio/gpio-pca953x.txt
+++ b/Documentation/devicetree/bindings/gpio/gpio-pca953x.txt
@@ -30,6 +30,7 @@ Required properties:
 	ti,tca6424
 	ti,tca9539
 	ti,tca9554
+	onnn,cat9554
 	onnn,pca9654
 	exar,xra1202
  - gpio-controller: if used as gpio expander.
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v2 2/2] gpio: pca953x: Add support for CAT9554
  2019-03-21  9:21 [PATCH v2 0/2] gpio: pca953x: Add support for CAT9554 Geert Uytterhoeven
  2019-03-21  9:21 ` [PATCH v2 1/2] dt-bindings: gpio: pca953x: Document onnn,cat9554 Geert Uytterhoeven
@ 2019-03-21  9:21 ` Geert Uytterhoeven
  2019-04-04  5:19     ` Linus Walleij
  1 sibling, 1 reply; 8+ messages in thread
From: Geert Uytterhoeven @ 2019-03-21  9:21 UTC (permalink / raw)
  To: Linus Walleij, Bartosz Golaszewski
  Cc: Rob Herring, Mark Rutland, Chris Brandt, linux-gpio, devicetree,
	linux-renesas-soc, Geert Uytterhoeven

The ON Semiconductor CAT9554 is a variant of the PCA953x GPIO expander,
with 8 GPIOs and interrupt functionality.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
v2:
  - Split DT binding doc and driver update in separate patches.
---
 drivers/gpio/gpio-pca953x.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c
index 7e76830b33682aa3..88c94d155e218535 100644
--- a/drivers/gpio/gpio-pca953x.c
+++ b/drivers/gpio/gpio-pca953x.c
@@ -1167,6 +1167,7 @@ static const struct of_device_id pca953x_dt_ids[] = {
 	{ .compatible = "ti,tca6416", .data = OF_953X(16, PCA_INT), },
 	{ .compatible = "ti,tca6424", .data = OF_953X(24, PCA_INT), },
 
+	{ .compatible = "onnn,cat9554", .data = OF_953X( 8, PCA_INT), },
 	{ .compatible = "onnn,pca9654", .data = OF_953X( 8, PCA_INT), },
 
 	{ .compatible = "exar,xra1202", .data = OF_953X( 8, 0), },
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 1/2] dt-bindings: gpio: pca953x: Document onnn,cat9554
  2019-03-21  9:21 ` [PATCH v2 1/2] dt-bindings: gpio: pca953x: Document onnn,cat9554 Geert Uytterhoeven
@ 2019-03-22 15:46   ` Bartosz Golaszewski
  0 siblings, 0 replies; 8+ messages in thread
From: Bartosz Golaszewski @ 2019-03-22 15:46 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Linus Walleij, Rob Herring, Mark Rutland, Chris Brandt,
	linux-gpio, linux-devicetree, Linux-Renesas

czw., 21 mar 2019 o 10:21 Geert Uytterhoeven <geert+renesas@glider.be>
napisał(a):
>
> The ON Semiconductor CAT9554 is a variant of the PCA953x GPIO expander,
> with 8 GPIOs and interrupt functionality.
>
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> v2:
>   - Split DT binding doc and driver update in separate patches.
> ---
>  Documentation/devicetree/bindings/gpio/gpio-pca953x.txt | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/Documentation/devicetree/bindings/gpio/gpio-pca953x.txt b/Documentation/devicetree/bindings/gpio/gpio-pca953x.txt
> index fb144e2b65226601..8678df2a5713a9af 100644
> --- a/Documentation/devicetree/bindings/gpio/gpio-pca953x.txt
> +++ b/Documentation/devicetree/bindings/gpio/gpio-pca953x.txt
> @@ -30,6 +30,7 @@ Required properties:
>         ti,tca6424
>         ti,tca9539
>         ti,tca9554
> +       onnn,cat9554
>         onnn,pca9654
>         exar,xra1202
>   - gpio-controller: if used as gpio expander.
> --
> 2.17.1
>

Both applied to for-next.

Thanks,
Bart

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 2/2] gpio: pca953x: Add support for CAT9554
  2019-03-21  9:21 ` [PATCH v2 2/2] gpio: pca953x: Add support for CAT9554 Geert Uytterhoeven
@ 2019-04-04  5:19     ` Linus Walleij
  0 siblings, 0 replies; 8+ messages in thread
From: Linus Walleij @ 2019-04-04  5:19 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Bartosz Golaszewski, Rob Herring, Mark Rutland, Chris Brandt,
	open list:GPIO SUBSYSTEM,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Linux-Renesas

On Thu, Mar 21, 2019 at 4:21 PM Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

> The ON Semiconductor CAT9554 is a variant of the PCA953x GPIO expander,
> with 8 GPIOs and interrupt functionality.
>
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> v2:
>   - Split DT binding doc and driver update in separate patches.

Patch applied.

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 2/2] gpio: pca953x: Add support for CAT9554
@ 2019-04-04  5:19     ` Linus Walleij
  0 siblings, 0 replies; 8+ messages in thread
From: Linus Walleij @ 2019-04-04  5:19 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Bartosz Golaszewski, Rob Herring, Mark Rutland, Chris Brandt,
	open list:GPIO SUBSYSTEM,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Linux-Renesas

On Thu, Mar 21, 2019 at 4:21 PM Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

> The ON Semiconductor CAT9554 is a variant of the PCA953x GPIO expander,
> with 8 GPIOs and interrupt functionality.
>
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> v2:
>   - Split DT binding doc and driver update in separate patches.

Patch applied.

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 2/2] gpio: pca953x: Add support for CAT9554
  2019-04-04  5:19     ` Linus Walleij
@ 2019-04-04  5:19       ` Linus Walleij
  -1 siblings, 0 replies; 8+ messages in thread
From: Linus Walleij @ 2019-04-04  5:19 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Bartosz Golaszewski, Rob Herring, Mark Rutland, Chris Brandt,
	open list:GPIO SUBSYSTEM,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Linux-Renesas

On Thu, Apr 4, 2019 at 12:19 PM Linus Walleij <linus.walleij@linaro.org> wrote:
>
> On Thu, Mar 21, 2019 at 4:21 PM Geert Uytterhoeven
> <geert+renesas@glider.be> wrote:
>
> > The ON Semiconductor CAT9554 is a variant of the PCA953x GPIO expander,
> > with 8 GPIOs and interrupt functionality.
> >
> > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> > ---
> > v2:
> >   - Split DT binding doc and driver update in separate patches.
>
> Patch applied.

Ooops sorry I see Bartosz applied it, backed this out.

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 2/2] gpio: pca953x: Add support for CAT9554
@ 2019-04-04  5:19       ` Linus Walleij
  0 siblings, 0 replies; 8+ messages in thread
From: Linus Walleij @ 2019-04-04  5:19 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Bartosz Golaszewski, Rob Herring, Mark Rutland, Chris Brandt,
	open list:GPIO SUBSYSTEM,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Linux-Renesas

On Thu, Apr 4, 2019 at 12:19 PM Linus Walleij <linus.walleij@linaro.org> wrote:
>
> On Thu, Mar 21, 2019 at 4:21 PM Geert Uytterhoeven
> <geert+renesas@glider.be> wrote:
>
> > The ON Semiconductor CAT9554 is a variant of the PCA953x GPIO expander,
> > with 8 GPIOs and interrupt functionality.
> >
> > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> > ---
> > v2:
> >   - Split DT binding doc and driver update in separate patches.
>
> Patch applied.

Ooops sorry I see Bartosz applied it, backed this out.

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-04-04  5:20 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-21  9:21 [PATCH v2 0/2] gpio: pca953x: Add support for CAT9554 Geert Uytterhoeven
2019-03-21  9:21 ` [PATCH v2 1/2] dt-bindings: gpio: pca953x: Document onnn,cat9554 Geert Uytterhoeven
2019-03-22 15:46   ` Bartosz Golaszewski
2019-03-21  9:21 ` [PATCH v2 2/2] gpio: pca953x: Add support for CAT9554 Geert Uytterhoeven
2019-04-04  5:19   ` Linus Walleij
2019-04-04  5:19     ` Linus Walleij
2019-04-04  5:19     ` Linus Walleij
2019-04-04  5:19       ` Linus Walleij

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.