All of lore.kernel.org
 help / color / mirror / Atom feed
From: plagnioj@jcrosoft.com (Jean-Christophe PLAGNIOL-VILLARD)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/3] ARM: at91: move aic driver to drivers/irqchip
Date: Thu, 23 May 2013 10:51:22 +0200	[thread overview]
Message-ID: <20130523085122.GF9937@game.jcrosoft.org> (raw)
In-Reply-To: <1369298990-9826-1-git-send-email-b.brezillon@overkiz.com>

Hi,

	please resend with git format-path -M so see the diff not the copy

Best Regsards,
J.
On 10:49 Thu 23 May     , Boris BREZILLON wrote:
> Hello,
> 
> This patch series move the at91 AIC (Advance Interrupt Controller)
> driver to the irqchip subsystem directory (drivers/irqchip).
> 
> It also make use of IRQCHIP_DECLARE to register irqchip for dt boards
> instead of using the machine specific "init_irq" function.
> 
> Finally it register the arch specific irq handler inside the the init
> functions using set_handle_irq. This way we can remove all the machine
> specific "handle_irq".
> 
> This patch series was tested on kizbox board (sam9g20 SoC) using
> device tree. Could someone test it on other boards (both dt and non dt)?
> 
> Best Regards,
> Boris
> 
> 
> Boris BREZILLON (3):
>   ARM: at91: move at91 aic driver to drivers/irqchip
>   ARM: at91: use IRQCHIP_DECLARE instead of machine specific init_irq
>   ARM: at91: use set_handle_irq instead of machine specific handle_irq
> 
>  arch/arm/mach-at91/Makefile                |    2 +-
>  arch/arm/mach-at91/at91_aic.h              |   99 -----
>  arch/arm/mach-at91/at91rm9200.c            |    2 +-
>  arch/arm/mach-at91/at91sam9260.c           |    2 +-
>  arch/arm/mach-at91/at91sam9261.c           |    2 +-
>  arch/arm/mach-at91/at91sam9263.c           |    2 +-
>  arch/arm/mach-at91/at91sam9g45.c           |    2 +-
>  arch/arm/mach-at91/at91sam9rl.c            |    2 +-
>  arch/arm/mach-at91/at91x40.c               |    2 +-
>  arch/arm/mach-at91/board-1arm.c            |    3 +-
>  arch/arm/mach-at91/board-afeb-9260v1.c     |    3 +-
>  arch/arm/mach-at91/board-cam60.c           |    3 +-
>  arch/arm/mach-at91/board-carmeva.c         |    3 +-
>  arch/arm/mach-at91/board-cpu9krea.c        |    3 +-
>  arch/arm/mach-at91/board-cpuat91.c         |    3 +-
>  arch/arm/mach-at91/board-csb337.c          |    3 +-
>  arch/arm/mach-at91/board-csb637.c          |    3 +-
>  arch/arm/mach-at91/board-dt-rm9200.c       |   15 +-
>  arch/arm/mach-at91/board-dt-sam9.c         |   16 +-
>  arch/arm/mach-at91/board-dt-sama5.c        |   16 +-
>  arch/arm/mach-at91/board-eb01.c            |    4 +-
>  arch/arm/mach-at91/board-eb9200.c          |    4 +-
>  arch/arm/mach-at91/board-ecbat91.c         |    3 +-
>  arch/arm/mach-at91/board-eco920.c          |    3 +-
>  arch/arm/mach-at91/board-flexibity.c       |    3 +-
>  arch/arm/mach-at91/board-foxg20.c          |    3 +-
>  arch/arm/mach-at91/board-gsia18s.c         |    3 +-
>  arch/arm/mach-at91/board-kafa.c            |    3 +-
>  arch/arm/mach-at91/board-kb9202.c          |    3 +-
>  arch/arm/mach-at91/board-pcontrol-g20.c    |    3 +-
>  arch/arm/mach-at91/board-picotux200.c      |    3 +-
>  arch/arm/mach-at91/board-qil-a9260.c       |    3 +-
>  arch/arm/mach-at91/board-rm9200dk.c        |    3 +-
>  arch/arm/mach-at91/board-rm9200ek.c        |    3 +-
>  arch/arm/mach-at91/board-rsi-ews.c         |    4 +-
>  arch/arm/mach-at91/board-sam9-l9260.c      |    3 +-
>  arch/arm/mach-at91/board-sam9260ek.c       |    3 +-
>  arch/arm/mach-at91/board-sam9261ek.c       |    3 +-
>  arch/arm/mach-at91/board-sam9263ek.c       |    3 +-
>  arch/arm/mach-at91/board-sam9g20ek.c       |    4 +-
>  arch/arm/mach-at91/board-sam9m10g45ek.c    |    3 +-
>  arch/arm/mach-at91/board-sam9rlek.c        |    3 +-
>  arch/arm/mach-at91/board-snapper9260.c     |    3 +-
>  arch/arm/mach-at91/board-stamp9g20.c       |    4 +-
>  arch/arm/mach-at91/board-usb-a926x.c       |    5 +-
>  arch/arm/mach-at91/board-yl-9200.c         |    3 +-
>  arch/arm/mach-at91/generic.h               |    5 -
>  arch/arm/mach-at91/include/mach/at91_aic.h |   96 +++++
>  arch/arm/mach-at91/irq.c                   |  547 ---------------------------
>  arch/arm/mach-at91/pm.c                    |    2 +-
>  drivers/irqchip/Makefile                   |    1 +
>  drivers/irqchip/irq-at91.c                 |  557 ++++++++++++++++++++++++++++
>  52 files changed, 706 insertions(+), 773 deletions(-)
>  delete mode 100644 arch/arm/mach-at91/at91_aic.h
>  create mode 100644 arch/arm/mach-at91/include/mach/at91_aic.h
>  delete mode 100644 arch/arm/mach-at91/irq.c
>  create mode 100644 drivers/irqchip/irq-at91.c
> 
> -- 
> 1.7.9.5
> 

WARNING: multiple messages have this Message-ID (diff)
From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: Boris BREZILLON <b.brezillon@overkiz.com>
Cc: Andrew Victor <linux@maxim.org.za>,
	Nicolas Ferre <nicolas.ferre@atmel.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 0/3] ARM: at91: move aic driver to drivers/irqchip
Date: Thu, 23 May 2013 10:51:22 +0200	[thread overview]
Message-ID: <20130523085122.GF9937@game.jcrosoft.org> (raw)
In-Reply-To: <1369298990-9826-1-git-send-email-b.brezillon@overkiz.com>

Hi,

	please resend with git format-path -M so see the diff not the copy

Best Regsards,
J.
On 10:49 Thu 23 May     , Boris BREZILLON wrote:
> Hello,
> 
> This patch series move the at91 AIC (Advance Interrupt Controller)
> driver to the irqchip subsystem directory (drivers/irqchip).
> 
> It also make use of IRQCHIP_DECLARE to register irqchip for dt boards
> instead of using the machine specific "init_irq" function.
> 
> Finally it register the arch specific irq handler inside the the init
> functions using set_handle_irq. This way we can remove all the machine
> specific "handle_irq".
> 
> This patch series was tested on kizbox board (sam9g20 SoC) using
> device tree. Could someone test it on other boards (both dt and non dt)?
> 
> Best Regards,
> Boris
> 
> 
> Boris BREZILLON (3):
>   ARM: at91: move at91 aic driver to drivers/irqchip
>   ARM: at91: use IRQCHIP_DECLARE instead of machine specific init_irq
>   ARM: at91: use set_handle_irq instead of machine specific handle_irq
> 
>  arch/arm/mach-at91/Makefile                |    2 +-
>  arch/arm/mach-at91/at91_aic.h              |   99 -----
>  arch/arm/mach-at91/at91rm9200.c            |    2 +-
>  arch/arm/mach-at91/at91sam9260.c           |    2 +-
>  arch/arm/mach-at91/at91sam9261.c           |    2 +-
>  arch/arm/mach-at91/at91sam9263.c           |    2 +-
>  arch/arm/mach-at91/at91sam9g45.c           |    2 +-
>  arch/arm/mach-at91/at91sam9rl.c            |    2 +-
>  arch/arm/mach-at91/at91x40.c               |    2 +-
>  arch/arm/mach-at91/board-1arm.c            |    3 +-
>  arch/arm/mach-at91/board-afeb-9260v1.c     |    3 +-
>  arch/arm/mach-at91/board-cam60.c           |    3 +-
>  arch/arm/mach-at91/board-carmeva.c         |    3 +-
>  arch/arm/mach-at91/board-cpu9krea.c        |    3 +-
>  arch/arm/mach-at91/board-cpuat91.c         |    3 +-
>  arch/arm/mach-at91/board-csb337.c          |    3 +-
>  arch/arm/mach-at91/board-csb637.c          |    3 +-
>  arch/arm/mach-at91/board-dt-rm9200.c       |   15 +-
>  arch/arm/mach-at91/board-dt-sam9.c         |   16 +-
>  arch/arm/mach-at91/board-dt-sama5.c        |   16 +-
>  arch/arm/mach-at91/board-eb01.c            |    4 +-
>  arch/arm/mach-at91/board-eb9200.c          |    4 +-
>  arch/arm/mach-at91/board-ecbat91.c         |    3 +-
>  arch/arm/mach-at91/board-eco920.c          |    3 +-
>  arch/arm/mach-at91/board-flexibity.c       |    3 +-
>  arch/arm/mach-at91/board-foxg20.c          |    3 +-
>  arch/arm/mach-at91/board-gsia18s.c         |    3 +-
>  arch/arm/mach-at91/board-kafa.c            |    3 +-
>  arch/arm/mach-at91/board-kb9202.c          |    3 +-
>  arch/arm/mach-at91/board-pcontrol-g20.c    |    3 +-
>  arch/arm/mach-at91/board-picotux200.c      |    3 +-
>  arch/arm/mach-at91/board-qil-a9260.c       |    3 +-
>  arch/arm/mach-at91/board-rm9200dk.c        |    3 +-
>  arch/arm/mach-at91/board-rm9200ek.c        |    3 +-
>  arch/arm/mach-at91/board-rsi-ews.c         |    4 +-
>  arch/arm/mach-at91/board-sam9-l9260.c      |    3 +-
>  arch/arm/mach-at91/board-sam9260ek.c       |    3 +-
>  arch/arm/mach-at91/board-sam9261ek.c       |    3 +-
>  arch/arm/mach-at91/board-sam9263ek.c       |    3 +-
>  arch/arm/mach-at91/board-sam9g20ek.c       |    4 +-
>  arch/arm/mach-at91/board-sam9m10g45ek.c    |    3 +-
>  arch/arm/mach-at91/board-sam9rlek.c        |    3 +-
>  arch/arm/mach-at91/board-snapper9260.c     |    3 +-
>  arch/arm/mach-at91/board-stamp9g20.c       |    4 +-
>  arch/arm/mach-at91/board-usb-a926x.c       |    5 +-
>  arch/arm/mach-at91/board-yl-9200.c         |    3 +-
>  arch/arm/mach-at91/generic.h               |    5 -
>  arch/arm/mach-at91/include/mach/at91_aic.h |   96 +++++
>  arch/arm/mach-at91/irq.c                   |  547 ---------------------------
>  arch/arm/mach-at91/pm.c                    |    2 +-
>  drivers/irqchip/Makefile                   |    1 +
>  drivers/irqchip/irq-at91.c                 |  557 ++++++++++++++++++++++++++++
>  52 files changed, 706 insertions(+), 773 deletions(-)
>  delete mode 100644 arch/arm/mach-at91/at91_aic.h
>  create mode 100644 arch/arm/mach-at91/include/mach/at91_aic.h
>  delete mode 100644 arch/arm/mach-at91/irq.c
>  create mode 100644 drivers/irqchip/irq-at91.c
> 
> -- 
> 1.7.9.5
> 

  parent reply	other threads:[~2013-05-23  8:51 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-23  8:49 [PATCH 0/3] ARM: at91: move aic driver to drivers/irqchip Boris BREZILLON
2013-05-23  8:49 ` Boris BREZILLON
2013-05-23  8:49 ` [PATCH 1/3] ARM: at91: move at91 " Boris BREZILLON
2013-05-23  8:49   ` Boris BREZILLON
2013-05-23  8:49 ` [PATCH 2/3] ARM: at91: use IRQCHIP_DECLARE instead of machine specific init_irq Boris BREZILLON
2013-05-23  8:49   ` Boris BREZILLON
2013-05-23  8:49 ` [PATCH 3/3] ARM: at91: use set_handle_irq instead of machine specific handle_irq Boris BREZILLON
2013-05-23  8:49   ` Boris BREZILLON
2013-05-23  8:51 ` Jean-Christophe PLAGNIOL-VILLARD [this message]
2013-05-23  8:51   ` [PATCH 0/3] ARM: at91: move aic driver to drivers/irqchip Jean-Christophe PLAGNIOL-VILLARD

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=20130523085122.GF9937@game.jcrosoft.org \
    --to=plagnioj@jcrosoft.com \
    --cc=linux-arm-kernel@lists.infradead.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 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.