Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 355199
b: refs/heads/master
c: 81243e4
h: refs/heads/master
i:
  355197: b51d039
  355195: 882d416
  355191: bc82268
  355183: 2158a2b
  355167: 87fab31
  355135: 3de3517
  355071: e26e593
v: v3
  • Loading branch information
Rob Herring committed Jan 12, 2013
1 parent fcddcec commit 9c67774
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1d5cc604f42ff1acdec0407247b2f720135ba0c2
refs/heads/master: 81243e444c6e9d1625073e4a3d3bc244c8a545f0
8 changes: 0 additions & 8 deletions trunk/arch/arm/common/Kconfig
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
config ARM_GIC
bool
select IRQ_DOMAIN
select MULTI_IRQ_HANDLER

config GIC_NON_BANKED
bool

config ARM_VIC
bool
select IRQ_DOMAIN
Expand Down
1 change: 0 additions & 1 deletion trunk/arch/arm/common/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# Makefile for the linux kernel.
#

obj-$(CONFIG_ARM_GIC) += gic.o
obj-$(CONFIG_ARM_VIC) += vic.o
obj-$(CONFIG_ICST) += icst.o
obj-$(CONFIG_SA1111) += sa1111.o
Expand Down
8 changes: 8 additions & 0 deletions trunk/drivers/irqchip/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ config IRQCHIP
def_bool y
depends on OF_IRQ

config ARM_GIC
bool
select IRQ_DOMAIN
select MULTI_IRQ_HANDLER

config GIC_NON_BANKED
bool

config VERSATILE_FPGA_IRQ
bool
select IRQ_DOMAIN
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/irqchip/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ obj-$(CONFIG_IRQCHIP) += irqchip.o

obj-$(CONFIG_ARCH_BCM2835) += irq-bcm2835.o
obj-$(CONFIG_ARCH_SUNXI) += irq-sunxi.o
obj-$(CONFIG_VERSATILE_FPGA_IRQ) += irq-versatile-fpga.o
obj-$(CONFIG_ARCH_SPEAR3XX) += spear-shirq.o
obj-$(CONFIG_ARM_GIC) += irq-gic.o
obj-$(CONFIG_VERSATILE_FPGA_IRQ) += irq-versatile-fpga.o
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
#include <asm/mach/irq.h>
#include <asm/hardware/gic.h>

#include "irqchip.h"

union gic_base {
void __iomem *common_base;
void __percpu __iomem **percpu_base;
Expand Down Expand Up @@ -814,4 +816,9 @@ int __init gic_of_init(struct device_node *node, struct device_node *parent)
gic_cnt++;
return 0;
}
IRQCHIP_DECLARE(cortex_a15_gic, "arm,cortex-a15-gic", gic_of_init);
IRQCHIP_DECLARE(cortex_a9_gic, "arm,cortex-a9-gic", gic_of_init);
IRQCHIP_DECLARE(msm_8660_qgic, "qcom,msm-8660-qgic", gic_of_init);
IRQCHIP_DECLARE(msm_qgic2, "qcom,msm-qgic2", gic_of_init);

#endif

0 comments on commit 9c67774

Please sign in to comment.