2014-10-21 06:28:05 +02:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
|
|
* by the Free Software Foundation.
|
|
|
|
*
|
2014-12-25 18:49:15 +01:00
|
|
|
* Copyright (C) 2014 Broadcom Corporation
|
|
|
|
* Author: Kevin Cernekee <cernekee@gmail.com>
|
2014-10-21 06:28:05 +02:00
|
|
|
*/
|
|
|
|
|
2014-12-25 18:49:15 +01:00
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/irqchip.h>
|
2014-10-21 06:28:05 +02:00
|
|
|
|
|
|
|
#include <asm/bmips.h>
|
2014-12-25 18:49:15 +01:00
|
|
|
#include <asm/irq.h>
|
2014-10-21 06:28:05 +02:00
|
|
|
#include <asm/irq_cpu.h>
|
2014-12-25 18:49:15 +01:00
|
|
|
#include <asm/time.h>
|
2014-10-21 06:28:05 +02:00
|
|
|
|
2015-11-22 15:30:14 +01:00
|
|
|
static const struct of_device_id smp_intc_dt_match[] = {
|
|
|
|
{ .compatible = "brcm,bcm7038-l1-intc" },
|
|
|
|
{ .compatible = "brcm,bcm6345-l1-intc" },
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2014-10-21 06:28:05 +02:00
|
|
|
unsigned int get_c0_compare_int(void)
|
|
|
|
{
|
|
|
|
return CP0_LEGACY_COMPARE_IRQ;
|
|
|
|
}
|
|
|
|
|
2014-12-25 18:49:15 +01:00
|
|
|
void __init arch_init_irq(void)
|
2014-10-21 06:28:05 +02:00
|
|
|
{
|
2014-12-25 18:49:15 +01:00
|
|
|
struct device_node *dn;
|
2014-10-21 06:28:05 +02:00
|
|
|
|
2015-11-22 15:30:14 +01:00
|
|
|
/* Only these controllers support SMP IRQ affinity */
|
|
|
|
dn = of_find_matching_node(NULL, smp_intc_dt_match);
|
2014-12-25 18:49:15 +01:00
|
|
|
if (dn)
|
|
|
|
of_node_put(dn);
|
|
|
|
else
|
|
|
|
bmips_tp1_irqs = 0;
|
2014-10-21 06:28:05 +02:00
|
|
|
|
2014-12-25 18:49:15 +01:00
|
|
|
irqchip_init();
|
2014-10-21 06:28:05 +02:00
|
|
|
}
|
|
|
|
|
2015-07-07 23:17:33 +02:00
|
|
|
IRQCHIP_DECLARE(mips_cpu_intc, "mti,cpu-interrupt-controller",
|
2014-12-25 18:49:15 +01:00
|
|
|
mips_cpu_irq_of_init);
|