xenbus: don't BUG() on user mode induced condition
[deliverable/linux.git] / arch / mips / mti-sead3 / sead3-int.c
CommitLineData
3070033a
SH
1/*
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
4 * for more details.
5 *
6 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
7 */
8#include <linux/init.h>
9#include <linux/irq.h>
4060bbe9 10#include <linux/irqchip/mips-gic.h>
3070033a
SH
11#include <linux/io.h>
12
3070033a
SH
13#include <asm/irq_cpu.h>
14#include <asm/setup.h>
15
16#include <asm/mips-boards/sead3int.h>
17
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
22
327b8c89 23static void __iomem *sead3_config_reg;
3070033a 24
3070033a
SH
25void __init arch_init_irq(void)
26{
a393d930 27 if (!cpu_has_veic)
3070033a
SH
28 mips_cpu_irq_init();
29
327b8c89
AB
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) >>
3070033a
SH
33 SEAD_CONFIG_GIC_PRESENT_SHF;
34 pr_info("GIC: %spresent\n", (gic_present) ? "" : "not ");
35 pr_info("EIC: %s\n",
36 (current_cpu_data.options & MIPS_CPU_VEIC) ? "on" : "off");
37
38 if (gic_present)
18743d27
AB
39 gic_init(GIC_BASE_ADDR, GIC_ADDRSPACE_SZ, CPU_INT_GIC,
40 MIPS_GIC_IRQ_BASE);
3070033a
SH
41}
42
This page took 0.200098 seconds and 5 git commands to generate.