1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
|
/* arch/sparc/kernel/irq.c: Interrupt request handling routines. On the
* Sparc the IRQ's are basically 'cast in stone'
* and you are supposed to probe the prom's device
* node trees to find out who's got which IRQ.
*
* Copyright (C) 1994 David S. Miller (davem@caip.rutgers.edu)
*
*/
/*
* IRQ's are in fact implemented a bit like signal handlers for the kernel.
* The same sigaction struct is used, and with similar semantics (ie there
* is a SA_INTERRUPT flag etc). Naturally it's not a 1:1 relation, but there
* are similarities.
*
* sa_handler(int irq_NR) is the default function called (0 if no).
* sa_mask is horribly ugly (I won't even mention it)
* sa_flags contains various info: SA_INTERRUPT etc
* sa_restorer is the unused
*/
#include <linux/config.h>
#include <linux/ptrace.h>
#include <linux/errno.h>
#include <linux/linkage.h>
#include <linux/kernel_stat.h>
#include <linux/signal.h>
#include <linux/sched.h>
#include <linux/interrupt.h>
#include <asm/ptrace.h>
#include <asm/system.h>
#include <asm/psr.h>
#include <asm/vaddrs.h>
#include <asm/clock.h>
#include <asm/openprom.h>
#define DEBUG_IRQ
void disable_irq(unsigned int irq_nr)
{
unsigned long flags;
unsigned char *int_reg;
save_flags(flags);
cli();
/* We have mapped the irq enable register in head.S and all we
* have to do here is frob the bits.
*/
int_reg = (unsigned char *) IRQ_ENA_ADR;
switch(irq_nr)
{
case 1:
*int_reg = ((*int_reg) & (~(0x02)));
break;
case 4:
*int_reg = ((*int_reg) & (~(0x04)));
break;
case 6:
*int_reg = ((*int_reg) & (~(0x08)));
break;
case 8:
*int_reg = ((*int_reg) & (~(0x10)));
break;
case 10:
*int_reg = ((*int_reg) & (~(0x20)));
break;
case 14:
*int_reg = ((*int_reg) & (~(0x80)));
break;
default:
printk("AIEEE, Illegal interrupt disable requested irq=%d\n",
(int) irq_nr);
break;
};
restore_flags(flags);
return;
}
void enable_irq(unsigned int irq_nr)
{
unsigned long flags;
unsigned char *int_reg;
save_flags(flags);
cli();
/* We have mapped the irq enable register in head.S and all we
* have to do here is frob the bits.
*/
int_reg = (unsigned char *) IRQ_ENA_ADR;
#ifdef DEBUG_IRQ
printk(" --- Enabling IRQ level %d ---\n", irq_nr);
#endif
switch(irq_nr)
{
case 1:
*int_reg = ((*int_reg) | 0x02);
break;
case 4:
*int_reg = ((*int_reg) | 0x04);
break;
case 6:
*int_reg = ((*int_reg) | 0x08);
break;
case 8:
*int_reg = ((*int_reg) | 0x10);
break;
case 10:
*int_reg = ((*int_reg) | 0x20);
break;
case 14:
*int_reg = ((*int_reg) | 0x80);
break;
default:
printk("AIEEE, Illegal interrupt enable requested irq=%d\n",
(int) irq_nr);
break;
};
restore_flags(flags);
return;
}
/*
* Initial irq handlers.
*/
struct irqaction {
void (*handler)(int, struct pt_regs *);
unsigned long flags;
unsigned long mask;
const char *name;
};
static struct irqaction irq_action[16] = {
{ NULL, 0, 0, NULL }, { NULL, 0, 0, NULL },
{ NULL, 0, 0, NULL }, { NULL, 0, 0, NULL },
{ NULL, 0, 0, NULL }, { NULL, 0, 0, NULL },
{ NULL, 0, 0, NULL }, { NULL, 0, 0, NULL },
{ NULL, 0, 0, NULL }, { NULL, 0, 0, NULL },
{ NULL, 0, 0, NULL }, { NULL, 0, 0, NULL },
{ NULL, 0, 0, NULL }, { NULL, 0, 0, NULL },
{ NULL, 0, 0, NULL }, { NULL, 0, 0, NULL }
};
int get_irq_list(char *buf)
{
int i, len = 0;
struct irqaction * action = irq_action;
for (i = 0 ; i < 16 ; i++, action++) {
if (!action->handler)
continue;
len += sprintf(buf+len, "%2d: %8d %c %s\n",
i, kstat.interrupts[i],
(action->flags & SA_INTERRUPT) ? '+' : ' ',
action->name);
}
return len;
}
void free_irq(unsigned int irq)
{
struct irqaction * action = irq + irq_action;
unsigned long flags;
if (irq > 14) { /* 14 irq levels on the sparc */
printk("Trying to free IRQ %d\n", irq);
return;
}
if (!action->handler) {
printk("Trying to free free IRQ%d\n", irq);
return;
}
save_flags(flags);
cli();
disable_irq(irq);
action->handler = NULL;
action->flags = 0;
action->mask = 0;
action->name = NULL;
restore_flags(flags);
}
#if 0
static void handle_nmi(struct pt_regs * regs)
{
printk("NMI, probably due to bus-parity error.\n");
printk("PC=%08lx, SP=%08lx\n", regs->pc, regs->sp);
}
#endif
void unexpected_irq(int irq, struct pt_regs * regs)
{
int i;
printk("IO device interrupt, irq = %d\n", irq);
printk("PC = %08lx NPC = %08lx SP=%08lx\n", regs->pc,
regs->npc, regs->sp);
printk("Expecting: ");
for (i = 0; i < 16; i++)
if (irq_action[i].handler)
printk("[%s:%d] ", irq_action[i].name, i);
printk("AIEEE\n");
}
static inline void handler_irq(int irq, struct pt_regs * regs)
{
struct irqaction * action = irq + irq_action;
if (!action->handler) {
unexpected_irq(irq, regs);
return;
}
action->handler(irq, regs);
}
/*
* do_IRQ handles IRQ's that have been installed without the
* SA_INTERRUPT flag: it uses the full signal-handling return
* and runs with other interrupts enabled. All relatively slow
* IRQ's should use this format: notably the keyboard/timer
* routines.
*/
asmlinkage void do_IRQ(int irq, struct pt_regs * regs)
{
struct irqaction *action = irq + irq_action;
kstat.interrupts[irq]++;
action->handler(irq, regs);
return;
}
/*
* Since we need to special things to clear up the clock chip around
* the do_timer() call we have a special version of do_IRQ for the
* level 14 interrupt which does these things.
*/
asmlinkage void do_sparc_timer(int irq, struct pt_regs * regs)
{
struct irqaction *action = irq + irq_action;
register volatile int clear;
kstat.interrupts[irq]++;
/* I do the following already in the entry code, better safe than
* sorry for now. Reading the limit register clears the interrupt.
*/
clear = TIMER_STRUCT->timer_limit14;
action->handler(irq, regs);
return;
}
/*
* do_fast_IRQ handles IRQ's that don't need the fancy interrupt return
* stuff - the handler is also running with interrupts disabled unless
* it explicitly enables them later.
*/
asmlinkage void do_fast_IRQ(int irq)
{
kstat.interrupts[irq]++;
printk("Got FAST_IRQ number %04lx\n", (long unsigned int) irq);
return;
}
extern int first_descent;
extern void probe_clock(int);
int request_irq(unsigned int irq, void (*handler)(int, struct pt_regs *),
unsigned long irqflags, const char * devname)
{
struct irqaction *action;
unsigned long flags;
if(irq > 14) /* Only levels 1-14 are valid on the Sparc. */
return -EINVAL;
if(irq == 0) /* sched_init() requesting the timer IRQ */
{
irq = 14;
probe_clock(first_descent);
}
action = irq + irq_action;
if(action->handler)
return -EBUSY;
if(!handler)
return -EINVAL;
save_flags(flags);
cli();
action->handler = handler;
action->flags = irqflags;
action->mask = 0;
action->name = devname;
enable_irq(irq);
restore_flags(flags);
return 0;
}
unsigned int probe_irq_on (void)
{
unsigned int irqs = 0;
return irqs;
}
int probe_irq_off (unsigned int irqs)
{
unsigned int i = 0;
return i;
}
void init_IRQ(void)
{
return;
}
|