irq.c 874 字节
Newer Older
1 2 3 4 5
/*
 * 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.
 *
6 7
 * Copyright (C) 2014 Broadcom Corporation
 * Author: Kevin Cernekee <cernekee@gmail.com>
8 9
 */

10 11
#include <linux/of.h>
#include <linux/irqchip.h>
12 13

#include <asm/bmips.h>
14
#include <asm/irq.h>
15
#include <asm/irq_cpu.h>
16
#include <asm/time.h>
17 18 19 20 21 22

unsigned int get_c0_compare_int(void)
{
	return CP0_LEGACY_COMPARE_IRQ;
}

23
void __init arch_init_irq(void)
24
{
25
	struct device_node *dn;
26

27 28 29 30 31 32
	/* Only the STB (bcm7038) controller supports SMP IRQ affinity */
	dn = of_find_compatible_node(NULL, NULL, "brcm,bcm7038-l1-intc");
	if (dn)
		of_node_put(dn);
	else
		bmips_tp1_irqs = 0;
33

34
	irqchip_init();
35 36
}

37 38
OF_DECLARE_2(irqchip, mips_cpu_intc, "mti,cpu-interrupt-controller",
	     mips_cpu_irq_of_init);