blob: 2507328834886e7f6151799713cb1de5ae505fef [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2003 Ralf Baechle
3 *
4 * 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
6 * 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>
14#include <linux/kernel.h>
15
16#include <asm/irq_cpu.h>
17#include <asm/mipsregs.h>
18#include <asm/system.h>
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020static inline void unmask_rm7k_irq(unsigned int irq)
21{
Atsushi Nemoto97dcb822007-01-08 02:14:29 +090022 set_c0_intcontrol(0x100 << (irq - RM7K_CPU_IRQ_BASE));
Linus Torvalds1da177e2005-04-16 15:20:36 -070023}
24
25static inline void mask_rm7k_irq(unsigned int irq)
26{
Atsushi Nemoto97dcb822007-01-08 02:14:29 +090027 clear_c0_intcontrol(0x100 << (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",
Atsushi Nemoto1603b5a2006-11-02 02:08:36 +090032 .ack = mask_rm7k_irq,
33 .mask = mask_rm7k_irq,
34 .mask_ack = mask_rm7k_irq,
35 .unmask = unmask_rm7k_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -070036};
37
Atsushi Nemoto97dcb822007-01-08 02:14:29 +090038void __init rm7k_cpu_irq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Atsushi Nemoto97dcb822007-01-08 02:14:29 +090040 int base = RM7K_CPU_IRQ_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 int i;
42
43 clear_c0_intcontrol(0x00000f00); /* Mask all */
44
Atsushi Nemoto1603b5a2006-11-02 02:08:36 +090045 for (i = base; i < base + 4; i++)
Atsushi Nemoto14178362006-11-14 01:13:18 +090046 set_irq_chip_and_handler(i, &rm7k_irq_controller,
47 handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048}