Skip to content

Commit

Permalink
irqchip: vt8500: Convert arch-vt8500 to new irqchip infrastructure
Browse files Browse the repository at this point in the history
This patch moves the arch-vt8500 irq code to drivers/irqchip and converts
it to use the new IRQCHIP_DECLARE and irqchip_init. This allows the removal
of some more functions from common.h

Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
Signed-off-by: Olof Johansson <olof@lixom.net>
  • Loading branch information
Tony Prisk authored and Olof Johansson committed Apr 13, 2013
1 parent 26b2da5 commit 06ff14c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 19 deletions.
2 changes: 1 addition & 1 deletion arch/arm/mach-vt8500/Makefile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
obj-$(CONFIG_ARCH_VT8500) += irq.o vt8500.o
obj-$(CONFIG_ARCH_VT8500) += vt8500.o
6 changes: 0 additions & 6 deletions arch/arm/mach-vt8500/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,7 @@

#include <linux/of.h>

int __init vt8500_irq_init(struct device_node *node,
struct device_node *parent);

/* defined in drivers/clk/clk-vt8500.c */
void __init vtwm_clk_init(void __iomem *pmc_base);

/* defined in irq.c */
asmlinkage void vt8500_handle_irq(struct pt_regs *regs);

#endif
14 changes: 2 additions & 12 deletions arch/arm/mach-vt8500/vt8500.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

#include <linux/clocksource.h>
#include <linux/io.h>
#include <linux/irqchip.h>
#include <linux/pm.h>

#include <asm/mach-types.h>
Expand Down Expand Up @@ -166,16 +167,6 @@ void __init vt8500_init(void)
of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
}

static const struct of_device_id vt8500_irq_match[] __initconst = {
{ .compatible = "via,vt8500-intc", .data = vt8500_irq_init, },
{ /* sentinel */ },
};

static void __init vt8500_init_irq(void)
{
of_irq_init(vt8500_irq_match);
};

static const char * const vt8500_dt_compat[] = {
"via,vt8500",
"wm,wm8650",
Expand All @@ -187,10 +178,9 @@ static const char * const vt8500_dt_compat[] = {
DT_MACHINE_START(WMT_DT, "VIA/Wondermedia SoC (Device Tree Support)")
.dt_compat = vt8500_dt_compat,
.map_io = vt8500_map_io,
.init_irq = vt8500_init_irq,
.init_irq = irqchip_init,
.init_machine = vt8500_init,
.init_time = clocksource_of_init,
.restart = vt8500_restart,
.handle_irq = vt8500_handle_irq,
MACHINE_END

1 change: 1 addition & 0 deletions drivers/irqchip/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ obj-$(CONFIG_ARM_VIC) += irq-vic.o
obj-$(CONFIG_RENESAS_INTC_IRQPIN) += irq-renesas-intc-irqpin.o
obj-$(CONFIG_RENESAS_IRQC) += irq-renesas-irqc.o
obj-$(CONFIG_VERSATILE_FPGA_IRQ) += irq-versatile-fpga.o
obj-$(CONFIG_ARCH_VT8500) += irq-vt8500.o
6 changes: 6 additions & 0 deletions arch/arm/mach-vt8500/irq.c → drivers/irqchip/irq-vt8500.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@

#include <asm/irq.h>
#include <asm/exception.h>
#include <asm/mach/irq.h>

#include "irqchip.h"

#define VT8500_ICPC_IRQ 0x20
#define VT8500_ICPC_FIQ 0x24
Expand Down Expand Up @@ -225,6 +228,8 @@ int __init vt8500_irq_init(struct device_node *node, struct device_node *parent)
goto out;
}

set_handle_irq(vt8500_handle_irq);

vt8500_init_irq_hw(intc[active_cnt].base);

pr_info("vt8500-irq: Added interrupt controller\n");
Expand All @@ -251,3 +256,4 @@ int __init vt8500_irq_init(struct device_node *node, struct device_node *parent)
return 0;
}

IRQCHIP_DECLARE(vt8500_irq, "via,vt8500-intc", vt8500_irq_init);

0 comments on commit 06ff14c

Please sign in to comment.