mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 0/6] at91: mux cleanup and switch to gpiolib
Date: Sat, 22 Dec 2012 19:39:27 +0100	[thread overview]
Message-ID: <20121222183927.GR26326@pengutronix.de> (raw)
In-Reply-To: <20121220142902.GI26483@game.jcrosoft.org>

On Thu, Dec 20, 2012 at 03:29:02PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Hi,
> 
> 	this patch series update the mux api of the at91 and use a part of the
> 	pinctrl from the kernel and switch tot hte gpiolib
> 
> 	we also drop the fact taht a gpio is invalid if 0
> 
> 	This pull depends on the gpiolib one
> 
> The following changes since commit b1e244b763731fb16fee15a93f45fc8c5455628a:
> 
>   gpiolib: add command to dump the current gpio status (2012-12-18 23:09:05 +0800)

Applied, thanks

Sascha

> 
> are available in the git repository at:
> 
>   git://git.jcrosoft.org/barebox.git delivery/at91_gpio
> 
> for you to fetch changes up to 35fc9a4f9eb6eff72aa0bed5cad052f7e11a03ab:
> 
>   at91: switch to gpiolib (2012-12-18 23:09:08 +0800)
> 
> ----------------------------------------------------------------
> Jean-Christophe PLAGNIOL-VILLARD (6):
>       at91: use gpio_is_valid to check gpio
>       at91: use -EINVAL for invalid gpio
>       at91: drop PIN_BASE offset for gpio
>       at91: gpio: switch to device driver
>       at91: gpio: switch to ops
>       at91: switch to gpiolib
> 
>  arch/arm/Kconfig                         |    2 +-
>  arch/arm/boards/at91rm9200ek/init.c      |    1 +
>  arch/arm/boards/at91sam9260ek/init.c     |    3 +-
>  arch/arm/boards/at91sam9261ek/init.c     |    2 +-
>  arch/arm/boards/at91sam9263ek/init.c     |    4 +-
>  arch/arm/boards/at91sam9m10g45ek/init.c  |    2 +-
>  arch/arm/boards/at91sam9n12ek/init.c     |    4 +-
>  arch/arm/boards/at91sam9x5ek/init.c      |    2 +-
>  arch/arm/boards/dss11/init.c             |    3 +-
>  arch/arm/boards/mmccpu/init.c            |    2 +-
>  arch/arm/boards/pm9261/init.c            |    2 +-
>  arch/arm/boards/pm9263/init.c            |    4 +-
>  arch/arm/boards/pm9g45/init.c            |    6 +-
>  arch/arm/boards/qil-a9260/init.c         |    4 +-
>  arch/arm/boards/tny-a926x/init.c         |    4 +-
>  arch/arm/boards/usb-a926x/init.c         |    3 +-
>  arch/arm/mach-at91/at91rm9200.c          |   46 ++++++-------
>  arch/arm/mach-at91/at91rm9200_devices.c  |   10 +--
>  arch/arm/mach-at91/at91sam9260.c         |   34 ++++------
>  arch/arm/mach-at91/at91sam9260_devices.c |   14 ++--
>  arch/arm/mach-at91/at91sam9261.c         |   36 ++++------
>  arch/arm/mach-at91/at91sam9261_devices.c |   14 ++--
>  arch/arm/mach-at91/at91sam9263.c         |   44 +++++-------
>  arch/arm/mach-at91/at91sam9263_devices.c |   16 ++---
>  arch/arm/mach-at91/at91sam9g45.c         |   43 +++++-------
>  arch/arm/mach-at91/at91sam9g45_devices.c |   14 ++--
>  arch/arm/mach-at91/at91sam9n12.c         |   38 +++++------
>  arch/arm/mach-at91/at91sam9n12_devices.c |   14 ++--
>  arch/arm/mach-at91/at91sam9x5.c          |   38 +++++------
>  arch/arm/mach-at91/at91sam9x5_devices.c  |   14 ++--
>  arch/arm/mach-at91/generic.h             |   12 ++++
>  arch/arm/mach-at91/gpio.c                |  530 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------------------------------------------
>  arch/arm/mach-at91/include/mach/board.h  |   12 ++--
>  arch/arm/mach-at91/include/mach/gpio.h   |  402 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------------
>  drivers/mtd/nand/atmel_nand.c            |    4 +-
>  drivers/usb/gadget/at91_udc.c            |    4 +-
>  36 files changed, 773 insertions(+), 614 deletions(-)
> 
> Best Regards,
> J.
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

      parent reply	other threads:[~2012-12-22 18:39 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-20 14:29 Jean-Christophe PLAGNIOL-VILLARD
2012-12-20 14:31 ` [PATCH 1/6] at91: use gpio_is_valid to check gpio Jean-Christophe PLAGNIOL-VILLARD
2012-12-20 14:31   ` [PATCH 2/6] at91: use -EINVAL for invalid gpio Jean-Christophe PLAGNIOL-VILLARD
2012-12-20 14:31   ` [PATCH 3/6] at91: drop PIN_BASE offset for gpio Jean-Christophe PLAGNIOL-VILLARD
2012-12-20 14:31   ` [PATCH 4/6] at91: gpio: switch to device driver Jean-Christophe PLAGNIOL-VILLARD
2012-12-20 14:31   ` [PATCH 5/6] at91: gpio: switch to ops Jean-Christophe PLAGNIOL-VILLARD
2012-12-20 14:31   ` [PATCH 6/6] at91: switch to gpiolib Jean-Christophe PLAGNIOL-VILLARD
2012-12-22 18:39 ` Sascha Hauer [this message]

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=20121222183927.GR26326@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=plagnioj@jcrosoft.com \
    /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