linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/6] Use chained handler entry/exit functions in platform code
@ 2011-04-12 18:35 Will Deacon
  2011-04-12 18:35 ` [PATCH 1/6] ARM: omap: update GPIO chained IRQ handler to use entry/exit functions Will Deacon
                   ` (5 more replies)
  0 siblings, 6 replies; 27+ messages in thread
From: Will Deacon @ 2011-04-12 18:35 UTC (permalink / raw)
  To: linux-arm-kernel

Hello,

This is version 2 of the patches originally posted here:

http://lists.infradead.org/pipermail/linux-arm-kernel/2011-April/046905.html

Changes since v1:

	* Updated to irq_desc_get_chip
	* Fixed missing includes
	* Updated Tegra IRQ handling
	* Based on -rc3

Colin - Please can you look at the changes I've made to mach-tegra/irq.c?
I'd also value some feedback on how you'd like to see this merged. See
my previous post here:

http://lists.infradead.org/pipermail/linux-arm-kernel/2011-April/047253.html

Please test/ack/complain wherever possible,

Will


Will Deacon (6):
  ARM: omap: update GPIO chained IRQ handler to use entry/exit
    functions
  ARM: tegra: update GPIO chained IRQ handler to use entry/exit
    functions
  ARM: s5pv310: update IRQ combiner to use chained entry/exit functions
  ARM: msm: update GPIO chained IRQ handler to use entry/exit functions
  ARM: nmk: update GPIO chained IRQ handler to entry/exit functions
  ARM: gic: use handle_fasteoi_irq for SPIs

 arch/arm/common/gic.c                |   32 ++++++++++++++++----------------
 arch/arm/mach-exynos4/irq-combiner.c |    6 ++----
 arch/arm/mach-msm/gpio-v2.c          |   10 ++++++++--
 arch/arm/mach-tegra/gpio.c           |    9 ++++++---
 arch/arm/mach-tegra/irq.c            |   12 ++++++------
 arch/arm/plat-nomadik/gpio.c         |   12 ++++--------
 arch/arm/plat-omap/gpio.c            |    7 ++++---
 7 files changed, 46 insertions(+), 42 deletions(-)

^ permalink raw reply	[flat|nested] 27+ messages in thread
* [PATCH 0/6] Use chained handler entry/exit functions in platform code
@ 2011-04-01 14:50 Will Deacon
  2011-04-01 14:50 ` [PATCH 2/6] ARM: tegra: update GPIO chained IRQ handler to use entry/exit functions Will Deacon
  0 siblings, 1 reply; 27+ messages in thread
From: Will Deacon @ 2011-04-01 14:50 UTC (permalink / raw)
  To: linux-arm-kernel

Hello,

Commit 10a8c383 ("ARM: irq: introduce entry and exit functions for
chained handlers") added chained handler entry/exit functions in
preparation for moving the GIC to fasteoi flow control.

This series of patches updates the relevant platforms to use the new
functions so that when the GIC changes its flow control type, breakage
will not occur.

I've included the GIC patch as the final patch (6) in the series so you
can test the change easily enough on your favourite platform.

All Acked-bys/Tested-bys greatly appreciated!

Cheers,

Will


Will Deacon (6):
  ARM: omap: update GPIO chained IRQ handler to use entry/exit
    functions
  ARM: tegra: update GPIO chained IRQ handler to use entry/exit
    functions
  ARM: s5pv310: update IRQ combiner to use chained entry/exit functions
  ARM: msm: update GPIO chained IRQ handler to use entry/exit functions
  ARM: nmk: update GPIO chained IRQ handler to entry/exit functions
  ARM: gic: use handle_fasteoi_irq for SPIs

 arch/arm/common/gic.c                |   24 +++++++++---------------
 arch/arm/mach-exynos4/irq-combiner.c |    6 ++----
 arch/arm/mach-msm/gpio-v2.c          |    6 +++++-
 arch/arm/mach-tegra/gpio.c           |    7 ++++---
 arch/arm/plat-nomadik/gpio.c         |   10 ++--------
 arch/arm/plat-omap/gpio.c            |    7 ++++---
 6 files changed, 26 insertions(+), 34 deletions(-)

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

end of thread, other threads:[~2011-05-01 12:42 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-12 18:35 [PATCH v2 0/6] Use chained handler entry/exit functions in platform code Will Deacon
2011-04-12 18:35 ` [PATCH 1/6] ARM: omap: update GPIO chained IRQ handler to use entry/exit functions Will Deacon
2011-04-12 18:35 ` [PATCH 2/6] ARM: tegra: " Will Deacon
2011-05-01  7:26   ` Colin Cross
2011-05-01 12:42     ` Will Deacon
2011-04-12 18:35 ` [PATCH 3/6] ARM: s5pv310: update IRQ combiner to use chained " Will Deacon
2011-04-12 18:35 ` [PATCH 4/6] ARM: msm: update GPIO chained IRQ handler to use " Will Deacon
2011-04-15 18:27   ` David Brown
2011-04-18 17:57     ` Will Deacon
2011-04-16  1:51   ` Abhijeet Dharmapurikar
2011-04-18 17:56     ` Will Deacon
2011-04-12 18:35 ` [PATCH 5/6] ARM: nmk: update GPIO chained IRQ handler to " Will Deacon
2011-04-18 18:26   ` Linus Walleij
2011-04-18 19:04     ` Will Deacon
2011-04-18 23:46       ` Linus Walleij
2011-04-19 19:52         ` Grant Likely
2011-04-12 18:35 ` [PATCH 6/6] ARM: gic: use handle_fasteoi_irq for SPIs Will Deacon
2011-04-16  1:52   ` Abhijeet Dharmapurikar
2011-04-19 11:20   ` Santosh Shilimkar
2011-04-19 15:16     ` Will Deacon
2011-04-20  4:20       ` Santosh Shilimkar
2011-04-30  2:38   ` Colin Cross
2011-04-30  9:54     ` Thomas Gleixner
2011-04-30 16:42       ` Colin Cross
  -- strict thread matches above, loose matches on Subject: below --
2011-04-01 14:50 [PATCH 0/6] Use chained handler entry/exit functions in platform code Will Deacon
2011-04-01 14:50 ` [PATCH 2/6] ARM: tegra: update GPIO chained IRQ handler to use entry/exit functions Will Deacon
2011-04-01 20:29   ` Colin Cross
2011-04-03 12:13     ` Will Deacon

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