blob: 26f4e4c9db1a10b9c93e98ad5825fd714cc4ecf2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2003 Ralf Baechle
3 *
Ralf Baechle70342282013-01-22 12:59:30 +01004 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * Handler for RM7000 extended interrupts. These are a non-standard
10 * feature so we handle them separately from standard interrupts.
11 */
12#include <linux/init.h>
13#include <linux/interrupt.h>
David Howellsca4d3e672010-10-07 14:08:54 +010014#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel.h>
16
17#include <asm/irq_cpu.h>
18#include <asm/mipsregs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Thomas Gleixnere0598522011-03-23 21:09:00 +000020static inline void unmask_rm7k_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
Thomas Gleixnere0598522011-03-23 21:09:00 +000022 set_c0_intcontrol(0x100 << (d->irq - RM7K_CPU_IRQ_BASE));
Linus Torvalds1da177e2005-04-16 15:20:36 -070023}
24
Thomas Gleixnere0598522011-03-23 21:09:00 +000025static inline void mask_rm7k_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026{
Thomas Gleixnere0598522011-03-23 21:09:00 +000027 clear_c0_intcontrol(0x100 << (d->irq - RM7K_CPU_IRQ_BASE));
Linus Torvalds1da177e2005-04-16 15:20:36 -070028}
29
Ralf Baechle94dee172006-07-02 14:41:42 +010030static struct irq_chip rm7k_irq_controller = {
Atsushi Nemoto70d21cd2007-01-15 00:07:25 +090031 .name = "RM7000",
Thomas Gleixnere0598522011-03-23 21:09:00 +000032 .irq_ack = mask_rm7k_irq,
33 .irq_mask = mask_rm7k_irq,
34 .irq_mask_ack = mask_rm7k_irq,
35 .irq_unmask = unmask_rm7k_irq,
36 .irq_eoi = unmask_rm7k_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -070037};
38
Atsushi Nemoto97dcb822007-01-08 02:14:29 +090039void __init rm7k_cpu_irq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
Atsushi Nemoto97dcb822007-01-08 02:14:29 +090041 int base = RM7K_CPU_IRQ_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 int i;
43
44 clear_c0_intcontrol(0x00000f00); /* Mask all */
45
Atsushi Nemoto1603b5a2006-11-02 02:08:36 +090046 for (i = base; i < base + 4; i++)
Thomas Gleixnere4ec7982011-03-27 15:19:28 +020047 irq_set_chip_and_handler(i, &rm7k_irq_controller,
Ralf Baechle30e748a2007-11-15 19:37:15 +000048 handle_percpu_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049}