All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] ARM: S3C24XX: more fixes and enhancements for the s3c24xx irqs
@ 2013-02-26 22:57 ` Heiko Stübner
  0 siblings, 0 replies; 16+ messages in thread
From: Heiko Stübner @ 2013-02-26 22:57 UTC (permalink / raw)
  To: Kukjin Kim; +Cc: Julia Lawall, linux-samsung-soc, linux-arm-kernel

Asorted fixes and enhancements for the recent redo of the s3c24xx
interrupt controllers.

The only real error that gets fixed is the handling of 0-hwirq as
parent_irq on s3c2412 in patch 2. No other of the s3c24xx platforms
uses the bit0 of the parent controller as parent_irq.

Heiko Stuebner (5):
  ARM: S3C24XX: fix redundant checks in the irq mapping function
  ARM: S3C24XX: fix irq parent check
  ARM: S3C24XX: move s3c24xx_init_irq to s3c2410_init_irq
  ARM: S3C24XX: make s3c24xx_init_intc static
  ARM: S3C24XX: add handle_irq function

 arch/arm/Kconfig                                 |    1 +
 arch/arm/mach-s3c24xx/common.h                   |    1 +
 arch/arm/mach-s3c24xx/include/mach/entry-macro.S |   70 ---------
 arch/arm/mach-s3c24xx/irq.c                      |  167 +++++++++++++--------
 arch/arm/mach-s3c24xx/mach-amlm5900.c            |    2 +-
 arch/arm/mach-s3c24xx/mach-bast.c                |    2 +-
 arch/arm/mach-s3c24xx/mach-h1940.c               |    7 +-
 arch/arm/mach-s3c24xx/mach-n30.c                 |    4 +-
 arch/arm/mach-s3c24xx/mach-otom.c                |    2 +-
 arch/arm/mach-s3c24xx/mach-qt2410.c              |    2 +-
 arch/arm/mach-s3c24xx/mach-smdk2410.c            |    2 +-
 arch/arm/mach-s3c24xx/mach-tct_hammer.c          |    2 +-
 arch/arm/mach-s3c24xx/mach-vr1000.c              |    2 +-
 arch/arm/plat-samsung/include/plat/cpu.h         |    1 -
 14 files changed, 115 insertions(+), 150 deletions(-)
 delete mode 100644 arch/arm/mach-s3c24xx/include/mach/entry-macro.S

-- 
1.7.2.3

^ permalink raw reply	[flat|nested] 16+ messages in thread
* [PATCH 0/5] ARM: S3C24XX: more fixes and enhancements for the s3c24xx irqs
@ 2013-02-26 22:55 ` Heiko Stübner
  0 siblings, 0 replies; 16+ messages in thread
From: Heiko Stübner @ 2013-02-26 22:55 UTC (permalink / raw)
  To: Kukjin Kim; +Cc: Julia Lawall, linux-samsung-soc, linux-arm-kernel

Asorted fixes and enhancements for the recent redo of the s3c24xx
interrupt controllers.

The only real error that gets fixed is the handling of 0-hwirq as
parent_irq on s3c2412 in patch 2. No other of the s3c24xx platforms
uses the bit0 of the parent controller as parent_irq.

Heiko Stuebner (5):
  ARM: S3C24XX: fix redundant checks in the irq mapping function
  ARM: S3C24XX: fix irq parent check
  ARM: S3C24XX: move s3c24xx_init_irq to s3c2410_init_irq
  ARM: S3C24XX: make s3c24xx_init_intc static
  ARM: S3C24XX: add handle_irq function

 arch/arm/Kconfig                                 |    1 +
 arch/arm/mach-s3c24xx/common.h                   |    1 +
 arch/arm/mach-s3c24xx/include/mach/entry-macro.S |   70 ---------
 arch/arm/mach-s3c24xx/irq.c                      |  167 +++++++++++++--------
 arch/arm/mach-s3c24xx/mach-amlm5900.c            |    2 +-
 arch/arm/mach-s3c24xx/mach-bast.c                |    2 +-
 arch/arm/mach-s3c24xx/mach-h1940.c               |    7 +-
 arch/arm/mach-s3c24xx/mach-n30.c                 |    4 +-
 arch/arm/mach-s3c24xx/mach-otom.c                |    2 +-
 arch/arm/mach-s3c24xx/mach-qt2410.c              |    2 +-
 arch/arm/mach-s3c24xx/mach-smdk2410.c            |    2 +-
 arch/arm/mach-s3c24xx/mach-tct_hammer.c          |    2 +-
 arch/arm/mach-s3c24xx/mach-vr1000.c              |    2 +-
 arch/arm/plat-samsung/include/plat/cpu.h         |    1 -
 14 files changed, 115 insertions(+), 150 deletions(-)
 delete mode 100644 arch/arm/mach-s3c24xx/include/mach/entry-macro.S

-- 
1.7.2.3

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

end of thread, other threads:[~2013-03-09  9:14 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-26 22:57 [PATCH 0/5] ARM: S3C24XX: more fixes and enhancements for the s3c24xx irqs Heiko Stübner
2013-02-26 22:57 ` Heiko Stübner
2013-02-26 22:57 ` [PATCH 1/5] ARM: S3C24XX: fix redundant checks in the irq mapping function Heiko Stübner
2013-02-26 22:57   ` Heiko Stübner
2013-02-26 22:58 ` [PATCH 2/5] ARM: S3C24XX: fix irq parent check Heiko Stübner
2013-02-26 22:58   ` Heiko Stübner
2013-02-26 22:58 ` [PATCH 3/5] ARM: S3C24XX: move s3c24xx_init_irq to s3c2410_init_irq Heiko Stübner
2013-02-26 22:58   ` Heiko Stübner
2013-02-26 22:59 ` [PATCH 4/5] ARM: S3C24XX: make s3c24xx_init_intc static Heiko Stübner
2013-02-26 22:59   ` Heiko Stübner
2013-02-26 23:00 ` [PATCH 5/5] ARM: S3C24XX: add handle_irq function Heiko Stübner
2013-02-26 23:00   ` Heiko Stübner
2013-03-09  9:14 ` [PATCH 0/5] ARM: S3C24XX: more fixes and enhancements for the s3c24xx irqs Kukjin Kim
2013-03-09  9:14   ` Kukjin Kim
  -- strict thread matches above, loose matches on Subject: below --
2013-02-26 22:55 Heiko Stübner
2013-02-26 22:55 ` Heiko Stübner

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.