diff options
author | Olof Johansson <olof@lixom.net> | 2014-01-04 00:55:29 -0500 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2014-01-04 00:55:29 -0500 |
commit | 3d7e0207ced354d1647195f53bcc670f9756c649 (patch) | |
tree | bedff8fa54a8a086e7426d66a0069323b5864986 /arch | |
parent | 7bfc397fe76de447ca645edd7453d8ef6ab18279 (diff) | |
parent | 8e048b9997efbe75fe77b1f14d3af41700cc8724 (diff) |
Merge tag 'integrator-for-v3.14' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-integrator into next/drivers
From Linus Walleij:
Some Integrator patches that matured for v3.14:
- Use PATCH_PHYS_TO_VIRT and AUTO_ZRELADDR.
- Support cascaded interrupts on the SIC.
- Complete clock implementation for the IM-PD1.
* tag 'integrator-for-v3.14' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-integrator:
clk: versatile: fixup IM-PD1 clock implementation
clk: versatile: pass a name to ICST clock provider
ARM: integrator: pass parent IRQ to the SIC
irqchip: versatile FPGA: support cascaded interrupts from DT
ARM: integrator: Default enable ARM_PATCH_PHYS_VIRT, AUTO_ZRELADDR
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/Kconfig | 2 | ||||
-rw-r--r-- | arch/arm/boot/dts/integratorcp.dts | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 8b768937c663..63ce70c988de 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -313,6 +313,8 @@ config ARCH_INTEGRATOR | |||
313 | bool "ARM Ltd. Integrator family" | 313 | bool "ARM Ltd. Integrator family" |
314 | select ARCH_HAS_CPUFREQ | 314 | select ARCH_HAS_CPUFREQ |
315 | select ARM_AMBA | 315 | select ARM_AMBA |
316 | select ARM_PATCH_PHYS_VIRT | ||
317 | select AUTO_ZRELADDR | ||
316 | select COMMON_CLK | 318 | select COMMON_CLK |
317 | select COMMON_CLK_VERSATILE | 319 | select COMMON_CLK_VERSATILE |
318 | select GENERIC_CLOCKEVENTS | 320 | select GENERIC_CLOCKEVENTS |
diff --git a/arch/arm/boot/dts/integratorcp.dts b/arch/arm/boot/dts/integratorcp.dts index 7deb3a3182b4..a21c17de9a5e 100644 --- a/arch/arm/boot/dts/integratorcp.dts +++ b/arch/arm/boot/dts/integratorcp.dts | |||
@@ -47,8 +47,11 @@ | |||
47 | valid-mask = <0x00000007>; | 47 | valid-mask = <0x00000007>; |
48 | }; | 48 | }; |
49 | 49 | ||
50 | /* The SIC is cascaded off IRQ 26 on the PIC */ | ||
50 | sic: sic@ca000000 { | 51 | sic: sic@ca000000 { |
51 | compatible = "arm,versatile-fpga-irq"; | 52 | compatible = "arm,versatile-fpga-irq"; |
53 | interrupt-parent = <&pic>; | ||
54 | interrupts = <26>; | ||
52 | #interrupt-cells = <1>; | 55 | #interrupt-cells = <1>; |
53 | interrupt-controller; | 56 | interrupt-controller; |
54 | reg = <0xca000000 0x100>; | 57 | reg = <0xca000000 0x100>; |