blob: 1273eb879a1500818563a5b27544c1fdc86f400c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001 /*
2 * linux/arch/m68k/sun3/sun3ints.c -- Sun-3(x) Linux interrupt handling code
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file COPYING in the main directory of this archive
6 * for more details.
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/types.h>
10#include <linux/kernel.h>
11#include <linux/sched.h>
12#include <linux/kernel_stat.h>
13#include <linux/interrupt.h>
14#include <asm/segment.h>
15#include <asm/intersil.h>
16#include <asm/oplib.h>
17#include <asm/sun3ints.h>
Al Viro2850bc22006-10-07 14:16:45 +010018#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/seq_file.h>
20
21extern void sun3_leds (unsigned char);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23void sun3_disable_interrupts(void)
24{
25 sun3_disable_irq(0);
26}
27
28void sun3_enable_interrupts(void)
29{
30 sun3_enable_irq(0);
31}
32
Adrian Bunk07b81252008-07-17 21:16:27 +020033static int led_pattern[8] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 ~(0x80), ~(0x01),
35 ~(0x40), ~(0x02),
36 ~(0x20), ~(0x04),
37 ~(0x10), ~(0x08)
38};
39
40volatile unsigned char* sun3_intreg;
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042void sun3_enable_irq(unsigned int irq)
43{
Roman Zippelebba61d2006-06-25 05:47:05 -070044 *sun3_intreg |= (1 << irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
47void sun3_disable_irq(unsigned int irq)
48{
Roman Zippelebba61d2006-06-25 05:47:05 -070049 *sun3_intreg &= ~(1 << irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050}
51
Al Viro2850bc22006-10-07 14:16:45 +010052static irqreturn_t sun3_int7(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
Geert Uytterhoeven40455132011-08-18 22:46:01 +020054 unsigned int cnt;
55
Roman Zippelebba61d2006-06-25 05:47:05 -070056 *sun3_intreg |= (1 << irq);
Geert Uytterhoeven40455132011-08-18 22:46:01 +020057 cnt = kstat_irqs_cpu(irq, 0);
58 if (!(cnt % 2000))
59 sun3_leds(led_pattern[cnt % 16000 / 2000]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return IRQ_HANDLED;
61}
62
Al Viro2850bc22006-10-07 14:16:45 +010063static irqreturn_t sun3_int5(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Geert Uytterhoeven40455132011-08-18 22:46:01 +020065 unsigned int cnt;
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#ifdef CONFIG_SUN3
68 intersil_clear();
69#endif
Roman Zippelebba61d2006-06-25 05:47:05 -070070 *sun3_intreg |= (1 << irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#ifdef CONFIG_SUN3
72 intersil_clear();
73#endif
Torben Hohne53f2762011-01-27 16:00:06 +010074 xtime_update(1);
Al Viro2850bc22006-10-07 14:16:45 +010075 update_process_times(user_mode(get_irq_regs()));
Geert Uytterhoeven40455132011-08-18 22:46:01 +020076 cnt = kstat_irqs_cpu(irq, 0);
77 if (!(cnt % 20))
78 sun3_leds(led_pattern[cnt % 160 / 20]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return IRQ_HANDLED;
80}
81
Al Viro2850bc22006-10-07 14:16:45 +010082static irqreturn_t sun3_vec255(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84// intersil_clear();
85 return IRQ_HANDLED;
86}
87
Roman Zippelebba61d2006-06-25 05:47:05 -070088static void sun3_inthandle(unsigned int irq, struct pt_regs *fp)
89{
90 *sun3_intreg &= ~(1 << irq);
91
Geert Uytterhoeven1425df82011-07-01 20:39:19 +020092 do_IRQ(irq, fp);
Roman Zippelebba61d2006-06-25 05:47:05 -070093}
94
Geert Uytterhoevene8abf5e2011-04-17 22:53:04 +020095static void sun3_irq_enable(struct irq_data *data)
96{
97 sun3_enable_irq(data->irq);
98};
99
100static void sun3_irq_disable(struct irq_data *data)
101{
102 sun3_disable_irq(data->irq);
103};
104
Geert Uytterhoevenc288bf22011-04-13 22:31:28 +0200105static struct irq_chip sun3_irq_chip = {
Roman Zippelebba61d2006-06-25 05:47:05 -0700106 .name = "sun3",
Geert Uytterhoevenc288bf22011-04-13 22:31:28 +0200107 .irq_startup = m68k_irq_startup,
108 .irq_shutdown = m68k_irq_shutdown,
Geert Uytterhoevene8abf5e2011-04-17 22:53:04 +0200109 .irq_enable = sun3_irq_enable,
110 .irq_disable = sun3_irq_disable,
Roman Zippelebba61d2006-06-25 05:47:05 -0700111};
112
Al Viro66a3f822007-07-20 04:33:28 +0100113void __init sun3_init_IRQ(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 *sun3_intreg = 1;
116
Roman Zippelebba61d2006-06-25 05:47:05 -0700117 m68k_setup_auto_interrupt(sun3_inthandle);
Geert Uytterhoevenedb34722011-06-01 11:15:21 +0200118 m68k_setup_irq_controller(&sun3_irq_chip, handle_simple_irq,
119 IRQ_AUTO_1, 7);
Sam Creasey35bdd522007-05-01 22:32:47 +0200120 m68k_setup_user_interrupt(VEC_USER, 128, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Geert Uytterhoeven07e449b2008-12-30 14:05:24 +0100122 if (request_irq(IRQ_AUTO_5, sun3_int5, 0, "int5", NULL))
123 pr_err("Couldn't register %s interrupt\n", "int5");
124 if (request_irq(IRQ_AUTO_7, sun3_int7, 0, "int7", NULL))
125 pr_err("Couldn't register %s interrupt\n", "int7");
126 if (request_irq(IRQ_USER+127, sun3_vec255, 0, "vec255", NULL))
127 pr_err("Couldn't register %s interrupt\n", "vec255");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}