diff options
author | Heiko Stuebner <heiko@sntech.de> | 2013-01-29 10:25:22 -0800 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2013-01-29 10:25:22 -0800 |
commit | 1f629b7a3ced8e73784a9ae3b0d9039496878f18 (patch) | |
tree | a8298aa022b5e74905c50daa1c3fbafd3f980dd0 /arch/arm/plat-s3c24xx/Kconfig | |
parent | acf2d41d8595829eb0ac7bf6891f4875a78d4d6e (diff) | |
download | op-kernel-dev-1f629b7a3ced8e73784a9ae3b0d9039496878f18.zip op-kernel-dev-1f629b7a3ced8e73784a9ae3b0d9039496878f18.tar.gz |
ARM: S3C24XX: transform irq handling into a declarative form
The irqs available on the machine and even the bit settings in the
irq registers differ a lot through all the s3c24xx subarchitectures.
This results in each subarch having its own irq init which adds its
specific irqs to the base ones created in plat-s3c24xx/irq.c.
This of course makes a future move to devicetree hard to implement.
Therefore this patch transforms the base irq handling to a declarative
style, where the irq types as well as its parent/child relationship
gets read from a predefined datastructure, which later on can hopefully
be easily represented in devicetree too.
It should also be easy to include the subarch specific irqs here
in later patches, reducing code size and duplication.
It should not affect anything outside of the file, as the original
irq numbers and their handling are preserved (hopefully) correctly.
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/plat-s3c24xx/Kconfig')
-rw-r--r-- | arch/arm/plat-s3c24xx/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/plat-s3c24xx/Kconfig b/arch/arm/plat-s3c24xx/Kconfig index eef3b6a..3bb5c8f 100644 --- a/arch/arm/plat-s3c24xx/Kconfig +++ b/arch/arm/plat-s3c24xx/Kconfig @@ -9,6 +9,7 @@ config PLAT_S3C24XX select ARCH_REQUIRE_GPIOLIB select NO_IOPORT select S3C_DEV_NAND + select IRQ_DOMAIN help Base platform code for any Samsung S3C24XX device |