linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH v2 0/2] OCTEON GPIO support.
       [not found] <1375133350-18828-1-git-send-email-ddaney.cavm@gmail.com>
@ 2013-08-14 19:16 ` David Daney
       [not found] ` <1375133350-18828-2-git-send-email-ddaney.cavm@gmail.com>
       [not found] ` <1375133350-18828-3-git-send-email-ddaney.cavm@gmail.com>
  2 siblings, 0 replies; 4+ messages in thread
From: David Daney @ 2013-08-14 19:16 UTC (permalink / raw)
  To: linux-gpio, Linus Walleij; +Cc: ralf, linux-mips, linux-kernel, David Daney

Ping.

Hi Linus,

I wonder if you have had a chance to look at these...

David Daney


On 07/29/2013 02:29 PM, David Daney wrote:
> From: David Daney <david.daney@cavium.com>
>
> The Cavium, OCTEON is a MIPS based SoC.  Here we add support for its
> on-chip GPIO lines.
>
> Changes from v1: Cleaned up variable names, messages and added some
> comments as suggested by Linus Walleij.
>
> The second patch depends on the first, but is in code maintained by
> Ralf.  It may be best to mrege both of these together, perhaps from
> the GPIO tree, with Ralf's Acked-by.
>
> David Daney (2):
>    MIPS: OCTEON: Select ARCH_REQUIRE_GPIOLIB
>    gpio MIPS/OCTEON: Add a driver for OCTEON's on-chip GPIO pins.
>
>   arch/mips/Kconfig                               |   1 +
>   arch/mips/include/asm/mach-cavium-octeon/gpio.h |  21 ++++
>   drivers/gpio/Kconfig                            |   8 ++
>   drivers/gpio/Makefile                           |   1 +
>   drivers/gpio/gpio-octeon.c                      | 157 ++++++++++++++++++++++++
>   5 files changed, 188 insertions(+)
>   create mode 100644 arch/mips/include/asm/mach-cavium-octeon/gpio.h
>   create mode 100644 drivers/gpio/gpio-octeon.c
>


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

* Re: [PATCH v2 1/2] MIPS: OCTEON: Select ARCH_REQUIRE_GPIOLIB
       [not found] ` <1375133350-18828-2-git-send-email-ddaney.cavm@gmail.com>
@ 2013-08-16 13:14   ` Linus Walleij
  0 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2013-08-16 13:14 UTC (permalink / raw)
  To: David Daney
  Cc: Ralf Baechle, linux-gpio@vger.kernel.org, linux-mips,
	linux-kernel@vger.kernel.org, David Daney, Alexandre Courbot

On Mon, Jul 29, 2013 at 11:29 PM, David Daney <ddaney.cavm@gmail.com> wrote:

> From: David Daney <david.daney@cavium.com>
>
> ... and create asm/mach-cavium-octeon/gpio.h so that things continue
> to build.
>
> This allows us to use the existing I2C connected GPIO expanders.
>
> Signed-off-by: David Daney <david.daney@cavium.com>

I like the looks of this.
Acked-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij

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

* Re: [PATCH v2 2/2] gpio MIPS/OCTEON: Add a driver for OCTEON's on-chip GPIO pins.
       [not found] ` <1375133350-18828-3-git-send-email-ddaney.cavm@gmail.com>
@ 2013-08-16 13:16   ` Linus Walleij
  2013-08-16 14:43     ` John Crispin
  0 siblings, 1 reply; 4+ messages in thread
From: Linus Walleij @ 2013-08-16 13:16 UTC (permalink / raw)
  To: David Daney
  Cc: Ralf Baechle, linux-gpio@vger.kernel.org, linux-mips,
	linux-kernel@vger.kernel.org, David Daney

On Mon, Jul 29, 2013 at 11:29 PM, David Daney <ddaney.cavm@gmail.com> wrote:

> From: David Daney <david.daney@cavium.com>
>
> The SOCs in the OCTEON family have 16 (or in some cases 20) on-chip
> GPIO pins, this driver handles them all.  Configuring the pins as
> interrupt sources is handled elsewhere (OCTEON's irq handling code).
>
> Signed-off-by: David Daney <david.daney@cavium.com>
> ---
>
> Device tree binding defintions already exist for this device in
> Documentation/devicetree/bindings/gpio/cavium-octeon-gpio.txt

I like this.
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

I guess you will merge both patches through the MIPS arch
tree?

Yours,
Linus Walleij

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

* Re: [PATCH v2 2/2] gpio MIPS/OCTEON: Add a driver for OCTEON's on-chip GPIO pins.
  2013-08-16 13:16   ` [PATCH v2 2/2] gpio MIPS/OCTEON: Add a driver for OCTEON's on-chip GPIO pins Linus Walleij
@ 2013-08-16 14:43     ` John Crispin
  0 siblings, 0 replies; 4+ messages in thread
From: John Crispin @ 2013-08-16 14:43 UTC (permalink / raw)
  To: Linus Walleij
  Cc: David Daney, Ralf Baechle, linux-gpio@vger.kernel.org, linux-mips,
	linux-kernel@vger.kernel.org, David Daney

On 16/08/13 15:16, Linus Walleij wrote:
> I guess you will merge both patches through the MIPS arch
> tree?

Hi Linus,

sure, we can take them via the MIPS tree

	John

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

end of thread, other threads:[~2013-08-16 14:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1375133350-18828-1-git-send-email-ddaney.cavm@gmail.com>
2013-08-14 19:16 ` [PATCH v2 0/2] OCTEON GPIO support David Daney
     [not found] ` <1375133350-18828-2-git-send-email-ddaney.cavm@gmail.com>
2013-08-16 13:14   ` [PATCH v2 1/2] MIPS: OCTEON: Select ARCH_REQUIRE_GPIOLIB Linus Walleij
     [not found] ` <1375133350-18828-3-git-send-email-ddaney.cavm@gmail.com>
2013-08-16 13:16   ` [PATCH v2 2/2] gpio MIPS/OCTEON: Add a driver for OCTEON's on-chip GPIO pins Linus Walleij
2013-08-16 14:43     ` John Crispin

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).