From: marc.zyngier@arm.com (Marc Zyngier)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 16/16] ARM: GIC: Make MULTI_IRQ_HANDLER mandatory
Date: Tue, 27 Sep 2011 09:32:26 +0100 [thread overview]
Message-ID: <4E818A1A.2090906@arm.com> (raw)
In-Reply-To: <20110927034350.GA17997@S2100-06.ap.freescale.net>
Hi Shawn,
On 27/09/11 04:43, Shawn Guo wrote:
> On Mon, Sep 26, 2011 at 12:02:35PM +0100, Marc Zyngier wrote:
>> Now that MULTI_IRQ_HANDLER is selected by all the in-tree
>> GIC users, make it mandatory and remove the unused macros.
>>
>> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
>> ---
>> arch/arm/Kconfig | 3 -
>> arch/arm/common/Kconfig | 1 +
>> arch/arm/common/gic.c | 2 +-
>> arch/arm/include/asm/hardware/entry-macro-gic.S | 60 -----------------------
>> arch/arm/include/asm/hardware/gic.h | 1 -
>> arch/arm/mach-msm/Kconfig | 2 -
>> arch/arm/mach-omap2/Kconfig | 1 +
>> arch/arm/mach-tegra/Kconfig | 1 -
>> arch/arm/mach-ux500/Kconfig | 1 -
>> arch/arm/plat-omap/Kconfig | 1 -
>> 10 files changed, 3 insertions(+), 70 deletions(-)
>> delete mode 100644 arch/arm/include/asm/hardware/entry-macro-gic.S
>>
>> diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
>> index 0514264..d3e246c 100644
>> --- a/arch/arm/Kconfig
>> +++ b/arch/arm/Kconfig
>> @@ -334,7 +334,6 @@ config ARCH_CNS3XXX
>> select ARM_GIC
>> select MIGHT_HAVE_PCI
>> select PCI_DOMAINS if PCI
>> - select MULTI_IRQ_HANDLER
>> help
>> Support for Cavium Networks CNS3XXX platform.
>>
>> @@ -788,7 +787,6 @@ config ARCH_EXYNOS4
>> select HAVE_S3C_RTC if RTC_CLASS
>> select HAVE_S3C2410_I2C if I2C
>> select HAVE_S3C2410_WATCHDOG if WATCHDOG
>> - select MULTI_IRQ_HANDLER
>> help
>> Samsung EXYNOS4 series based systems
>>
>> @@ -911,7 +909,6 @@ config ARCH_ZYNQ
>> select ARM_AMBA
>> select ICST
>> select USE_OF
>> - select MULTI_IRQ_HANDLER
>> help
>> Support for Xilinx Zynq ARM Cortex A9 Platform
>> endchoice
>
> Hi Marc,
>
> I'm unsure about your base. But I have the following platforms in
> arch/arm/Kconfig selecting MULTI_IRQ_HANDLER at the end of your series,
> which should also be removed from?
>
> ARCH_REALVIEW
> ARCH_VEXPRESS
These two can be indeed removed, as they are GIC users and GIC now
selects MULTI_IRQ_HANDLER directly. I'll fix the patch.
> ARCH_PXA
PXA doesn't use the GIC, so it has to select MULTI_IRQ_HANDLER directly
as it used to before my patch.
> ARCH_SHMOBILE
This one is caught in the middle. Only SMP shmobile platforms use the
GIC, but they all need MULTI_IRQ_HANDLER anyway, so keeping the option
selected doesn't hurt.
Cheers,
M.
--
Jazz is not dead. It just smells funny...
next prev parent reply other threads:[~2011-09-27 8:32 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-26 11:02 [PATCH v2 00/16] Switch GIC users (and omap2plus) to CONFIG_MULTI_IRQ_HANDLER Marc Zyngier
2011-09-26 11:02 ` [PATCH v2 01/16] ARM: Make global handler and CONFIG_MULTI_IRQ_HANDLER mutually exclusive Marc Zyngier
2011-09-28 1:00 ` Tony Lindgren
2011-09-26 11:02 ` [PATCH v2 02/16] ARM: smp: Add an IPI handler callable from C code Marc Zyngier
2011-09-28 1:01 ` Tony Lindgren
2011-09-26 11:02 ` [PATCH v2 03/16] ARM: GIC: Add global gic_handle_irq() function Marc Zyngier
2011-09-28 1:01 ` Tony Lindgren
2011-09-26 11:02 ` [PATCH v2 04/16] ARM: RealView: convert to CONFIG_MULTI_IRQ_HANDLER Marc Zyngier
2011-09-26 11:02 ` [PATCH v2 05/16] ARM: VExpress: " Marc Zyngier
2011-09-26 11:02 ` [PATCH v2 06/16] ARM: msm: convert SMP platforms " Marc Zyngier
2011-09-26 11:02 ` [PATCH v2 07/16] ARM: GIC: Add global gic_handle_irq_offset() function Marc Zyngier
2011-09-28 15:50 ` Rob Herring
2011-09-29 8:53 ` Marc Zyngier
2011-09-26 11:02 ` [PATCH v2 08/16] ARM: exynos4: convert to CONFIG_MULTI_IRQ_HANDLER Marc Zyngier
2011-09-26 11:02 ` [PATCH v2 09/16] ARM: tegra2: " Marc Zyngier
2011-09-26 11:02 ` [PATCH v2 10/16] ARM: ux500: " Marc Zyngier
2011-09-27 11:47 ` Linus Walleij
2011-09-27 12:33 ` Marc Zyngier
2011-09-26 11:02 ` [PATCH v2 11/16] ARM: shmobile: convert smp platforms to gic_handle_irq() Marc Zyngier
2011-09-26 11:02 ` [PATCH v2 12/16] ARM: cns3xxx: convert to CONFIG_MULTI_IRQ_HANDLER Marc Zyngier
2011-09-26 11:02 ` [PATCH v2 13/16] ARM: zynq: " Marc Zyngier
2011-09-26 11:02 ` [PATCH v2 14/16] ARM: omap2/3: Add global omap2/3_intc_handle_irq() functions Marc Zyngier
2011-09-28 1:02 ` Tony Lindgren
2011-09-26 11:02 ` [PATCH v2 15/16] ARM: omap2plus: convert to CONFIG_MULTI_IRQ_HANDLER Marc Zyngier
2011-09-28 1:04 ` Tony Lindgren
2011-09-26 11:02 ` [PATCH v2 16/16] ARM: GIC: Make MULTI_IRQ_HANDLER mandatory Marc Zyngier
2011-09-27 3:43 ` Shawn Guo
2011-09-27 8:32 ` Marc Zyngier [this message]
2011-09-27 10:19 ` Shawn Guo
2011-09-28 1:04 ` Tony Lindgren
2011-09-26 20:20 ` [PATCH v2 00/16] Switch GIC users (and omap2plus) to CONFIG_MULTI_IRQ_HANDLER David Brown
2011-09-27 0:15 ` David Brown
2011-09-27 8:58 ` Marc Zyngier
2011-09-27 10:20 ` Shawn Guo
2011-09-27 10:22 ` Marc Zyngier
2011-09-27 23:53 ` Tony Lindgren
2011-09-28 0:53 ` Tony Lindgren
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=4E818A1A.2090906@arm.com \
--to=marc.zyngier@arm.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 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).