2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
8 #include <linux/init.h>
10 #include <linux/irqchip/mips-gic.h>
13 #include <asm/irq_cpu.h>
14 #include <asm/setup.h>
16 #include <asm/mips-boards/sead3int.h>
18 #define SEAD_CONFIG_GIC_PRESENT_SHF 1
19 #define SEAD_CONFIG_GIC_PRESENT_MSK (1 << SEAD_CONFIG_GIC_PRESENT_SHF)
20 #define SEAD_CONFIG_BASE 0x1b100110
21 #define SEAD_CONFIG_SIZE 4
23 static void __iomem
*sead3_config_reg
;
25 void __init
arch_init_irq(void)
30 sead3_config_reg
= ioremap_nocache(SEAD_CONFIG_BASE
, SEAD_CONFIG_SIZE
);
31 gic_present
= (__raw_readl(sead3_config_reg
) &
32 SEAD_CONFIG_GIC_PRESENT_MSK
) >>
33 SEAD_CONFIG_GIC_PRESENT_SHF
;
34 pr_info("GIC: %spresent\n", (gic_present
) ? "" : "not ");
36 (current_cpu_data
.options
& MIPS_CPU_VEIC
) ? "on" : "off");
39 gic_init(GIC_BASE_ADDR
, GIC_ADDRSPACE_SZ
, CPU_INT_GIC
,