blob: fa05a03f8dfe79e527df5076f2775b9abfea9170 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/m68k/q40/q40ints.c
3 *
4 * Copyright (C) 1999,2001 Richard Zidlicky
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive
8 * for more details.
9 *
10 * .. used to be loosely based on bvme6000ints.c
11 *
12 */
13
14#include <linux/types.h>
15#include <linux/kernel.h>
16#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/ptrace.h>
20#include <asm/system.h>
21#include <asm/irq.h>
22#include <asm/traps.h>
23
24#include <asm/q40_master.h>
25#include <asm/q40ints.h>
26
27/*
28 * Q40 IRQs are defined as follows:
29 * 3,4,5,6,7,10,11,14,15 : ISA dev IRQs
30 * 16-31: reserved
31 * 32 : keyboard int
32 * 33 : frame int (50/200 Hz periodic timer)
33 * 34 : sample int (10/20 KHz periodic timer)
34 *
35*/
36
Roman Zippel77dda332006-06-25 05:47:05 -070037static void q40_irq_handler(unsigned int, struct pt_regs *fp);
38static void q40_enable_irq(unsigned int);
39static void q40_disable_irq(unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Roman Zippel77dda332006-06-25 05:47:05 -070041unsigned short q40_ablecount[35];
42unsigned short q40_state[35];
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Geert Uytterhoevenc288bf22011-04-13 22:31:28 +020044static unsigned int q40_irq_startup(unsigned int irq)
Roman Zippel77dda332006-06-25 05:47:05 -070045{
46 /* test for ISA ints not implemented by HW */
47 switch (irq) {
48 case 1: case 2: case 8: case 9:
49 case 11: case 12: case 13:
Harvey Harrisonf85e7cd2008-04-28 02:13:49 -070050 printk("%s: ISA IRQ %d not implemented by HW\n", __func__, irq);
Geert Uytterhoevenc288bf22011-04-13 22:31:28 +020051 /* FIXME return -ENXIO; */
Roman Zippel77dda332006-06-25 05:47:05 -070052 }
53 return 0;
54}
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Roman Zippel77dda332006-06-25 05:47:05 -070056static void q40_irq_shutdown(unsigned int irq)
57{
58}
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Geert Uytterhoevenc288bf22011-04-13 22:31:28 +020060static struct irq_chip q40_irq_chip = {
Roman Zippel77dda332006-06-25 05:47:05 -070061 .name = "q40",
Geert Uytterhoevenc288bf22011-04-13 22:31:28 +020062 .irq_startup = q40_irq_startup,
63 .irq_shutdown = q40_irq_shutdown,
64 .irq_enable = q40_enable_irq,
65 .irq_disable = q40_disable_irq,
Roman Zippel77dda332006-06-25 05:47:05 -070066};
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/*
69 * void q40_init_IRQ (void)
70 *
71 * Parameters: None
72 *
73 * Returns: Nothing
74 *
75 * This function is called during kernel startup to initialize
76 * the q40 IRQ handling routines.
77 */
78
Roman Zippel77dda332006-06-25 05:47:05 -070079static int disabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Al Viro66a3f822007-07-20 04:33:28 +010081void __init q40_init_IRQ(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Geert Uytterhoevenc288bf22011-04-13 22:31:28 +020083 m68k_setup_irq_chip(&q40_irq_chip, 1, Q40_IRQ_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 /* setup handler for ISA ints */
Roman Zippel77dda332006-06-25 05:47:05 -070086 m68k_setup_auto_interrupt(q40_irq_handler);
87
88 m68k_irq_startup(IRQ_AUTO_2);
89 m68k_irq_startup(IRQ_AUTO_4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 /* now enable some ints.. */
Roman Zippel77dda332006-06-25 05:47:05 -070092 master_outb(1, EXT_ENABLE_REG); /* ISA IRQ 5-15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 /* make sure keyboard IRQ is disabled */
Roman Zippel77dda332006-06-25 05:47:05 -070095 master_outb(0, KEY_IRQ_ENABLE_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99/*
100 * this stuff doesn't really belong here..
Roman Zippel77dda332006-06-25 05:47:05 -0700101 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103int ql_ticks; /* 200Hz ticks since last jiffie */
104static int sound_ticks;
105
106#define SVOL 45
107
108void q40_mksound(unsigned int hz, unsigned int ticks)
109{
Roman Zippel77dda332006-06-25 05:47:05 -0700110 /* for now ignore hz, except that hz==0 switches off sound */
111 /* simply alternate the ampl (128-SVOL)-(128+SVOL)-..-.. at 200Hz */
112 if (hz == 0) {
113 if (sound_ticks)
114 sound_ticks = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Roman Zippel77dda332006-06-25 05:47:05 -0700116 *DAC_LEFT = 128;
117 *DAC_RIGHT = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Roman Zippel77dda332006-06-25 05:47:05 -0700119 return;
120 }
121 /* sound itself is done in q40_timer_int */
122 if (sound_ticks == 0)
123 sound_ticks = 1000; /* pretty long beep */
124 sound_ticks = ticks << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
David Howells40220c12006-10-09 12:19:47 +0100127static irq_handler_t q40_timer_routine;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Al Viro2850bc22006-10-07 14:16:45 +0100129static irqreturn_t q40_timer_int (int irq, void * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Roman Zippel77dda332006-06-25 05:47:05 -0700131 ql_ticks = ql_ticks ? 0 : 1;
132 if (sound_ticks) {
133 unsigned char sval=(sound_ticks & 1) ? 128-SVOL : 128+SVOL;
134 sound_ticks--;
135 *DAC_LEFT=sval;
136 *DAC_RIGHT=sval;
137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Roman Zippel77dda332006-06-25 05:47:05 -0700139 if (!ql_ticks)
Al Viro2850bc22006-10-07 14:16:45 +0100140 q40_timer_routine(irq, dev);
Roman Zippel77dda332006-06-25 05:47:05 -0700141 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
David Howells40220c12006-10-09 12:19:47 +0100144void q40_sched_init (irq_handler_t timer_routine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Roman Zippel77dda332006-06-25 05:47:05 -0700146 int timer_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Roman Zippel77dda332006-06-25 05:47:05 -0700148 q40_timer_routine = timer_routine;
149 timer_irq = Q40_IRQ_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Roman Zippel77dda332006-06-25 05:47:05 -0700151 if (request_irq(timer_irq, q40_timer_int, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 "timer", q40_timer_int))
Roman Zippel77dda332006-06-25 05:47:05 -0700153 panic("Couldn't register timer int");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Roman Zippel77dda332006-06-25 05:47:05 -0700155 master_outb(-1, FRAME_CLEAR_REG);
156 master_outb( 1, FRAME_RATE_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159
160/*
161 * tables to translate bits into IRQ numbers
162 * it is a good idea to order the entries by priority
163 *
164*/
165
166struct IRQ_TABLE{ unsigned mask; int irq ;};
167#if 0
168static struct IRQ_TABLE iirqs[]={
169 {Q40_IRQ_FRAME_MASK,Q40_IRQ_FRAME},
170 {Q40_IRQ_KEYB_MASK,Q40_IRQ_KEYBOARD},
171 {0,0}};
172#endif
173static struct IRQ_TABLE eirqs[] = {
174 { .mask = Q40_IRQ3_MASK, .irq = 3 }, /* ser 1 */
175 { .mask = Q40_IRQ4_MASK, .irq = 4 }, /* ser 2 */
176 { .mask = Q40_IRQ14_MASK, .irq = 14 }, /* IDE 1 */
177 { .mask = Q40_IRQ15_MASK, .irq = 15 }, /* IDE 2 */
178 { .mask = Q40_IRQ6_MASK, .irq = 6 }, /* floppy, handled elsewhere */
179 { .mask = Q40_IRQ7_MASK, .irq = 7 }, /* par */
180 { .mask = Q40_IRQ5_MASK, .irq = 5 },
181 { .mask = Q40_IRQ10_MASK, .irq = 10 },
182 {0,0}
183};
184
185/* complain only this many times about spurious ints : */
Simon Arlott0c79cf62007-10-20 01:20:32 +0200186static int ccleirq=60; /* ISA dev IRQs*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/*static int cclirq=60;*/ /* internal */
188
189/* FIXME: add shared ints,mask,unmask,probing.... */
190
191#define IRQ_INPROGRESS 1
192/*static unsigned short saved_mask;*/
193//static int do_tint=0;
194
195#define DEBUG_Q40INT
196/*#define IP_USE_DISABLE *//* would be nice, but crashes ???? */
197
198static int mext_disabled=0; /* ext irq disabled by master chip? */
199static int aliased_irq=0; /* how many times inside handler ?*/
200
201
Roman Zippel77dda332006-06-25 05:47:05 -0700202/* got interrupt, dispatch to ISA or keyboard/timer IRQs */
203static void q40_irq_handler(unsigned int irq, struct pt_regs *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Roman Zippel77dda332006-06-25 05:47:05 -0700205 unsigned mir, mer;
206 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208//repeat:
Roman Zippel77dda332006-06-25 05:47:05 -0700209 mir = master_inb(IIRQ_REG);
210#ifdef CONFIG_BLK_DEV_FD
211 if ((mir & Q40_IRQ_EXT_MASK) &&
212 (master_inb(EIRQ_REG) & Q40_IRQ6_MASK)) {
213 floppy_hardint();
214 return;
215 }
216#endif
217 switch (irq) {
218 case 4:
219 case 6:
Al Viro2850bc22006-10-07 14:16:45 +0100220 __m68k_handle_int(Q40_IRQ_SAMPLE, fp);
Roman Zippel77dda332006-06-25 05:47:05 -0700221 return;
222 }
223 if (mir & Q40_IRQ_FRAME_MASK) {
Al Viro2850bc22006-10-07 14:16:45 +0100224 __m68k_handle_int(Q40_IRQ_FRAME, fp);
Roman Zippel77dda332006-06-25 05:47:05 -0700225 master_outb(-1, FRAME_CLEAR_REG);
226 }
227 if ((mir & Q40_IRQ_SER_MASK) || (mir & Q40_IRQ_EXT_MASK)) {
228 mer = master_inb(EIRQ_REG);
229 for (i = 0; eirqs[i].mask; i++) {
230 if (mer & eirqs[i].mask) {
231 irq = eirqs[i].irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232/*
233 * There is a little mess wrt which IRQ really caused this irq request. The
234 * main problem is that IIRQ_REG and EIRQ_REG reflect the state when they
235 * are read - which is long after the request came in. In theory IRQs should
Simon Arlott0c79cf62007-10-20 01:20:32 +0200236 * not just go away but they occasionally do
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 */
Roman Zippel77dda332006-06-25 05:47:05 -0700238 if (irq > 4 && irq <= 15 && mext_disabled) {
239 /*aliased_irq++;*/
240 goto iirq;
241 }
242 if (q40_state[irq] & IRQ_INPROGRESS) {
243 /* some handlers do local_irq_enable() for irq latency reasons, */
244 /* however reentering an active irq handler is not permitted */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245#ifdef IP_USE_DISABLE
Roman Zippel77dda332006-06-25 05:47:05 -0700246 /* in theory this is the better way to do it because it still */
247 /* lets through eg the serial irqs, unfortunately it crashes */
248 disable_irq(irq);
249 disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250#else
Roman Zippel77dda332006-06-25 05:47:05 -0700251 /*printk("IRQ_INPROGRESS detected for irq %d, disabling - %s disabled\n",
252 irq, disabled ? "already" : "not yet"); */
253 fp->sr = (((fp->sr) & (~0x700))+0x200);
254 disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255#endif
Roman Zippel77dda332006-06-25 05:47:05 -0700256 goto iirq;
257 }
258 q40_state[irq] |= IRQ_INPROGRESS;
Al Viro2850bc22006-10-07 14:16:45 +0100259 __m68k_handle_int(irq, fp);
Roman Zippel77dda332006-06-25 05:47:05 -0700260 q40_state[irq] &= ~IRQ_INPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Roman Zippel77dda332006-06-25 05:47:05 -0700262 /* naively enable everything, if that fails than */
263 /* this function will be reentered immediately thus */
264 /* getting another chance to disable the IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Roman Zippel77dda332006-06-25 05:47:05 -0700266 if (disabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267#ifdef IP_USE_DISABLE
Roman Zippel77dda332006-06-25 05:47:05 -0700268 if (irq > 4) {
269 disabled = 0;
270 enable_irq(irq);
271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272#else
Roman Zippel77dda332006-06-25 05:47:05 -0700273 disabled = 0;
274 /*printk("reenabling irq %d\n", irq); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275#endif
Roman Zippel77dda332006-06-25 05:47:05 -0700276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277// used to do 'goto repeat;' here, this delayed bh processing too long
Roman Zippel77dda332006-06-25 05:47:05 -0700278 return;
279 }
280 }
281 if (mer && ccleirq > 0 && !aliased_irq) {
282 printk("ISA interrupt from unknown source? EIRQ_REG = %x\n",mer);
283 ccleirq--;
284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
Roman Zippel77dda332006-06-25 05:47:05 -0700286 iirq:
287 mir = master_inb(IIRQ_REG);
288 /* should test whether keyboard irq is really enabled, doing it in defhand */
289 if (mir & Q40_IRQ_KEYB_MASK)
Al Viro2850bc22006-10-07 14:16:45 +0100290 __m68k_handle_int(Q40_IRQ_KEYBOARD, fp);
Roman Zippel77dda332006-06-25 05:47:05 -0700291
292 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Roman Zippel77dda332006-06-25 05:47:05 -0700295void q40_enable_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Roman Zippel77dda332006-06-25 05:47:05 -0700297 if (irq >= 5 && irq <= 15) {
298 mext_disabled--;
299 if (mext_disabled > 0)
300 printk("q40_enable_irq : nested disable/enable\n");
301 if (mext_disabled == 0)
302 master_outb(1, EXT_ENABLE_REG);
303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306
Roman Zippel77dda332006-06-25 05:47:05 -0700307void q40_disable_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Roman Zippel77dda332006-06-25 05:47:05 -0700309 /* disable ISA iqs : only do something if the driver has been
310 * verified to be Q40 "compatible" - right now IDE, NE2K
311 * Any driver should not attempt to sleep across disable_irq !!
312 */
313
314 if (irq >= 5 && irq <= 15) {
315 master_outb(0, EXT_ENABLE_REG);
316 mext_disabled++;
317 if (mext_disabled > 1)
318 printk("disable_irq nesting count %d\n",mext_disabled);
319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
Roman Zippel77dda332006-06-25 05:47:05 -0700322unsigned long q40_probe_irq_on(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Roman Zippel77dda332006-06-25 05:47:05 -0700324 printk("irq probing not working - reconfigure the driver to avoid this\n");
325 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
Roman Zippel77dda332006-06-25 05:47:05 -0700327int q40_probe_irq_off(unsigned long irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Roman Zippel77dda332006-06-25 05:47:05 -0700329 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}