Merge tag 'armsoc-dt' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[deliverable/linux.git] / arch / arm / mach-mv78xx0 / irq.c
CommitLineData
794d15b2
SS
1/*
2 * arch/arm/mach-mv78xx0/irq.c
3 *
4 * MV78xx0 IRQ handling.
5 *
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
9 */
2f8163ba 10#include <linux/gpio.h>
794d15b2 11#include <linux/kernel.h>
b95a13d7 12#include <linux/irq.h>
383b9961 13#include <linux/io.h>
b8cd337c 14#include <asm/exception.h>
ce91574c 15#include <plat/orion-gpio.h>
6f088f1d 16#include <plat/irq.h>
4c811b99 17#include "bridge-regs.h"
794d15b2
SS
18#include "common.h"
19
278b45b0
AL
20static int __initdata gpio0_irqs[4] = {
21 IRQ_MV78XX0_GPIO_0_7,
22 IRQ_MV78XX0_GPIO_8_15,
23 IRQ_MV78XX0_GPIO_16_23,
24 IRQ_MV78XX0_GPIO_24_31,
25};
b95a13d7 26
b8cd337c
AB
27static void __iomem *mv78xx0_irq_base = IRQ_VIRT_BASE;
28
29static asmlinkage void
30__exception_irq_entry mv78xx0_legacy_handle_irq(struct pt_regs *regs)
31{
32 u32 stat;
33
34 stat = readl_relaxed(mv78xx0_irq_base + IRQ_CAUSE_LOW_OFF);
35 stat &= readl_relaxed(mv78xx0_irq_base + IRQ_MASK_LOW_OFF);
36 if (stat) {
37 unsigned int hwirq = __fls(stat);
38 handle_IRQ(hwirq, regs);
39 return;
40 }
41 stat = readl_relaxed(mv78xx0_irq_base + IRQ_CAUSE_HIGH_OFF);
42 stat &= readl_relaxed(mv78xx0_irq_base + IRQ_MASK_HIGH_OFF);
43 if (stat) {
44 unsigned int hwirq = 32 + __fls(stat);
45 handle_IRQ(hwirq, regs);
46 return;
47 }
48 stat = readl_relaxed(mv78xx0_irq_base + IRQ_CAUSE_ERR_OFF);
49 stat &= readl_relaxed(mv78xx0_irq_base + IRQ_MASK_ERR_OFF);
50 if (stat) {
51 unsigned int hwirq = 64 + __fls(stat);
52 handle_IRQ(hwirq, regs);
53 return;
54 }
55}
56
794d15b2
SS
57void __init mv78xx0_init_irq(void)
58{
383b9961
TP
59 orion_irq_init(0, IRQ_VIRT_BASE + IRQ_MASK_LOW_OFF);
60 orion_irq_init(32, IRQ_VIRT_BASE + IRQ_MASK_HIGH_OFF);
61 orion_irq_init(64, IRQ_VIRT_BASE + IRQ_MASK_ERR_OFF);
b95a13d7 62
b8cd337c
AB
63 set_handle_irq(mv78xx0_legacy_handle_irq);
64
b95a13d7 65 /*
9eac6d0a
LB
66 * Initialize gpiolib for GPIOs 0-31. (The GPIO interrupt mask
67 * registers for core #1 are at an offset of 0x18 from those of
68 * core #0.)
b95a13d7 69 */
383b9961 70 orion_gpio_init(NULL, 0, 32, GPIO_VIRT_BASE,
9eac6d0a 71 mv78xx0_core_index() ? 0x18 : 0,
278b45b0 72 IRQ_MV78XX0_GPIO_START, gpio0_irqs);
794d15b2 73}
This page took 0.426355 seconds and 5 git commands to generate.