]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * Copyright (C) 2003 Ralf Baechle | |
3 | * | |
70342287 RB |
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 | |
1da177e4 LT |
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> | |
ca4d3e67 | 14 | #include <linux/irq.h> |
1da177e4 LT |
15 | #include <linux/kernel.h> |
16 | ||
17 | #include <asm/irq_cpu.h> | |
18 | #include <asm/mipsregs.h> | |
1da177e4 | 19 | |
e059852a | 20 | static inline void unmask_rm7k_irq(struct irq_data *d) |
1da177e4 | 21 | { |
e059852a | 22 | set_c0_intcontrol(0x100 << (d->irq - RM7K_CPU_IRQ_BASE)); |
1da177e4 LT |
23 | } |
24 | ||
e059852a | 25 | static inline void mask_rm7k_irq(struct irq_data *d) |
1da177e4 | 26 | { |
e059852a | 27 | clear_c0_intcontrol(0x100 << (d->irq - RM7K_CPU_IRQ_BASE)); |
1da177e4 LT |
28 | } |
29 | ||
94dee171 | 30 | static struct irq_chip rm7k_irq_controller = { |
70d21cde | 31 | .name = "RM7000", |
e059852a TG |
32 | .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 | |
1da177e4 LT |
37 | }; |
38 | ||
97dcb82d | 39 | void __init rm7k_cpu_irq_init(void) |
1da177e4 | 40 | { |
97dcb82d | 41 | int base = RM7K_CPU_IRQ_BASE; |
1da177e4 LT |
42 | int i; |
43 | ||
44 | clear_c0_intcontrol(0x00000f00); /* Mask all */ | |
45 | ||
1603b5ac | 46 | for (i = base; i < base + 4; i++) |
e4ec7989 | 47 | irq_set_chip_and_handler(i, &rm7k_irq_controller, |
30e748a5 | 48 | handle_percpu_irq); |
1da177e4 | 49 | } |