|
@@ -11,6 +11,7 @@
|
|
|
#include <linux/irqdomain.h>
|
|
|
#include <linux/of.h>
|
|
|
#include <linux/of_address.h>
|
|
|
+#include <linux/of_irq.h>
|
|
|
#include <linux/of_platform.h>
|
|
|
|
|
|
#include <asm/mach/arch.h>
|
|
@@ -33,22 +34,20 @@ static const char *picoxcell_dt_match[] = {
|
|
|
};
|
|
|
|
|
|
static const struct of_device_id vic_of_match[] __initconst = {
|
|
|
- { .compatible = "arm,pl192-vic" },
|
|
|
+ { .compatible = "arm,pl192-vic", .data = vic_of_init, },
|
|
|
{ /* Sentinel */ }
|
|
|
};
|
|
|
|
|
|
static void __init picoxcell_init_irq(void)
|
|
|
{
|
|
|
- vic_init(IO_ADDRESS(PICOXCELL_VIC0_BASE), 0, ~0, 0);
|
|
|
- vic_init(IO_ADDRESS(PICOXCELL_VIC1_BASE), 32, ~0, 0);
|
|
|
- irq_domain_generate_simple(vic_of_match, PICOXCELL_VIC0_BASE, 0);
|
|
|
- irq_domain_generate_simple(vic_of_match, PICOXCELL_VIC1_BASE, 32);
|
|
|
+ of_irq_init(vic_of_match);
|
|
|
}
|
|
|
|
|
|
DT_MACHINE_START(PICOXCELL, "Picochip picoXcell")
|
|
|
.map_io = picoxcell_map_io,
|
|
|
.nr_irqs = ARCH_NR_IRQS,
|
|
|
.init_irq = picoxcell_init_irq,
|
|
|
+ .handle_irq = vic_handle_irq,
|
|
|
.timer = &picoxcell_timer,
|
|
|
.init_machine = picoxcell_init_machine,
|
|
|
.dt_compat = picoxcell_dt_match,
|