iomd_irq.S revision 1.18 1 1.18 skrll /* $NetBSD: iomd_irq.S,v 1.18 2020/11/21 19:52:56 skrll Exp $ */
2 1.1 reinoud
3 1.1 reinoud /*
4 1.1 reinoud * Copyright (c) 1994-1998 Mark Brinicombe.
5 1.1 reinoud * Copyright (c) 1994 Brini.
6 1.1 reinoud * All rights reserved.
7 1.1 reinoud *
8 1.1 reinoud * This code is derived from software written for Brini by Mark Brinicombe
9 1.1 reinoud *
10 1.1 reinoud * Redistribution and use in source and binary forms, with or without
11 1.1 reinoud * modification, are permitted provided that the following conditions
12 1.1 reinoud * are met:
13 1.1 reinoud * 1. Redistributions of source code must retain the above copyright
14 1.1 reinoud * notice, this list of conditions and the following disclaimer.
15 1.1 reinoud * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 reinoud * notice, this list of conditions and the following disclaimer in the
17 1.1 reinoud * documentation and/or other materials provided with the distribution.
18 1.1 reinoud * 3. All advertising materials mentioning features or use of this software
19 1.1 reinoud * must display the following acknowledgement:
20 1.1 reinoud * This product includes software developed by Mark Brinicombe
21 1.1 reinoud * for the NetBSD Project.
22 1.1 reinoud * 4. The name of the company nor the name of the author may be used to
23 1.1 reinoud * endorse or promote products derived from this software without specific
24 1.1 reinoud * prior written permission.
25 1.1 reinoud *
26 1.1 reinoud * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 1.1 reinoud * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 1.1 reinoud * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 1.1 reinoud * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 1.1 reinoud * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 1.1 reinoud * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 1.1 reinoud * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 1.1 reinoud * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 1.1 reinoud * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 1.1 reinoud * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 1.1 reinoud *
37 1.1 reinoud * Low level irq and fiq handlers
38 1.1 reinoud *
39 1.1 reinoud * Created : 27/09/94
40 1.1 reinoud */
41 1.1 reinoud
42 1.1 reinoud #include "opt_irqstats.h"
43 1.1 reinoud
44 1.1 reinoud #include "assym.h"
45 1.15 matt #include <arm/asm.h>
46 1.15 matt #include <arm/locore.h>
47 1.1 reinoud #include <arm/iomd/iomdreg.h>
48 1.1 reinoud
49 1.1 reinoud .text
50 1.1 reinoud .align 0
51 1.1 reinoud /*
52 1.1 reinoud * ffs table used for servicing irq's quickly must be here otherwise adr can't
53 1.1 reinoud * reach it
54 1.1 reinoud * The algorithm for ffs was devised by D. Seal and posted to
55 1.1 reinoud * comp.sys.arm on 16 Feb 1994.
56 1.1 reinoud */
57 1.1 reinoud .type Lirq_ffs_table, _ASM_TYPE_OBJECT;
58 1.1 reinoud Lirq_ffs_table:
59 1.1 reinoud /* same as ffs table but all nums are -1 from that */
60 1.1 reinoud /* 0 1 2 3 4 5 6 7 */
61 1.1 reinoud .byte 0, 0, 1, 12, 2, 6, 0, 13 /* 0- 7 */
62 1.1 reinoud .byte 3, 0, 7, 0, 0, 0, 0, 14 /* 8-15 */
63 1.1 reinoud .byte 10, 4, 0, 0, 8, 0, 0, 25 /* 16-23 */
64 1.1 reinoud .byte 0, 0, 0, 0, 0, 21, 27, 15 /* 24-31 */
65 1.1 reinoud .byte 31, 11, 5, 0, 0, 0, 0, 0 /* 32-39 */
66 1.1 reinoud .byte 9, 0, 0, 24, 0, 0, 20, 26 /* 40-47 */
67 1.1 reinoud .byte 30, 0, 0, 0, 0, 23, 0, 19 /* 48-55 */
68 1.1 reinoud .byte 29, 0, 22, 18, 28, 17, 16, 0 /* 56-63 */
69 1.1 reinoud
70 1.1 reinoud /*
71 1.1 reinoud *
72 1.1 reinoud * irq_entry
73 1.1 reinoud *
74 1.1 reinoud * Main entry point for the IRQ vector
75 1.1 reinoud *
76 1.1 reinoud * This function reads the irq request bits in the IOMD registers
77 1.1 reinoud * IRQRQA, IRQRQB and DMARQ
78 1.1 reinoud * It then calls an installed handler for each bit that is set.
79 1.1 reinoud * The function stray_irqhandler is called if a handler is not defined
80 1.1 reinoud * for a particular interrupt.
81 1.1 reinoud * If a interrupt handler is found then it is called with r0 containing
82 1.1 reinoud * the argument defined in the handler structure. If the field ih_arg
83 1.1 reinoud * is zero then a pointer to the IRQ frame on the stack is passed instead.
84 1.1 reinoud */
85 1.1 reinoud
86 1.11 matt Lcurrent_spl_level:
87 1.11 matt .word _C_LABEL(cpu_info_store) + CI_CPL
88 1.11 matt
89 1.1 reinoud Ldisabled_mask:
90 1.1 reinoud .word _C_LABEL(disabled_mask)
91 1.1 reinoud
92 1.1 reinoud Lspl_masks:
93 1.1 reinoud .word _C_LABEL(spl_masks)
94 1.1 reinoud
95 1.6 thorpej LOCK_CAS_CHECK_LOCALS
96 1.6 thorpej
97 1.4 scw AST_ALIGNMENT_FAULT_LOCALS
98 1.4 scw
99 1.1 reinoud /*
100 1.1 reinoud * Register usage
101 1.1 reinoud *
102 1.11 matt * r4 - Address of cpu_info
103 1.18 skrll * r5 - Address of curlwp
104 1.1 reinoud * r6 - Address of current handler
105 1.1 reinoud * r7 - Pointer to handler pointer list
106 1.1 reinoud * r8 - Current IRQ requests.
107 1.18 skrll * r9 - scratch
108 1.1 reinoud * r10 - Base address of IOMD
109 1.1 reinoud * r11 - IRQ requests still to service.
110 1.1 reinoud */
111 1.1 reinoud
112 1.1 reinoud Liomd_base:
113 1.1 reinoud .word _C_LABEL(iomd_base)
114 1.1 reinoud
115 1.1 reinoud Larm7500_ioc_found:
116 1.1 reinoud .word _C_LABEL(arm7500_ioc_found)
117 1.1 reinoud
118 1.1 reinoud ASENTRY_NP(irq_entry)
119 1.1 reinoud sub lr, lr, #0x00000004 /* Adjust the lr */
120 1.1 reinoud
121 1.1 reinoud PUSHFRAMEINSVC /* Push an interrupt frame */
122 1.18 skrll ENABLE_ALIGNMENT_FAULTS /* puts cur{cpu,lwp} in r4/r5 */
123 1.1 reinoud
124 1.14 matt str r7, [sp, #TF_FILL] /* save r7 */
125 1.14 matt
126 1.1 reinoud /* Load r8 with the IOMD interrupt requests */
127 1.1 reinoud
128 1.1 reinoud ldr r10, Liomd_base
129 1.1 reinoud ldr r10, [r10] /* Point to the IOMD */
130 1.1 reinoud ldrb r8, [r10, #(IOMD_IRQRQA << 2)] /* Get IRQ request A */
131 1.1 reinoud ldrb r9, [r10, #(IOMD_IRQRQB << 2)] /* Get IRQ request B */
132 1.1 reinoud orr r8, r8, r9, lsl #8
133 1.1 reinoud
134 1.1 reinoud ldr r9, Larm7500_ioc_found
135 1.1 reinoud ldr r9, [r9] /* get the flag */
136 1.1 reinoud cmp r9, #0
137 1.1 reinoud beq skip_extended_IRQs_reading
138 1.1 reinoud
139 1.1 reinoud /* ARM 7500 only */
140 1.1 reinoud ldrb r9, [r10, #(IOMD_IRQRQC << 2)] /* Get IRQ request C */
141 1.1 reinoud orr r8, r8, r9, lsl #16
142 1.1 reinoud ldrb r9, [r10, #(IOMD_IRQRQD << 2)] /* Get IRQ request D */
143 1.1 reinoud orr r8, r8, r9, lsl #24
144 1.1 reinoud ldrb r9, [r10, #(IOMD_DMARQ << 2)] /* Get DMA Request */
145 1.1 reinoud tst r9, #0x10
146 1.1 reinoud orrne r8, r8, r9, lsl #27
147 1.1 reinoud b irq_entry_continue
148 1.1 reinoud
149 1.1 reinoud skip_extended_IRQs_reading:
150 1.1 reinoud /* non ARM7500 machines */
151 1.1 reinoud ldrb r9, [r10, #(IOMD_DMARQ << 2)] /* Get DMA Request */
152 1.1 reinoud orr r8, r8, r9, lsl #16
153 1.1 reinoud irq_entry_continue:
154 1.1 reinoud
155 1.1 reinoud and r0, r8, #0x7d /* Clear IOMD IRQA bits */
156 1.1 reinoud strb r0, [r10, #(IOMD_IRQRQA << 2)]
157 1.1 reinoud
158 1.1 reinoud /*
159 1.1 reinoud * Note that we have entered the IRQ handler.
160 1.1 reinoud * We are in SVC mode so we cannot use the processor mode
161 1.1 reinoud * to determine if we are in an IRQ. Instead we will count the
162 1.1 reinoud * each time the interrupt handler is nested.
163 1.1 reinoud */
164 1.1 reinoud
165 1.11 matt ldr r0, [r4, #CI_INTR_DEPTH]
166 1.11 matt add r0, r0, #1
167 1.11 matt str r0, [r4, #CI_INTR_DEPTH]
168 1.1 reinoud
169 1.1 reinoud /* Block the current requested interrupts */
170 1.1 reinoud ldr r1, Ldisabled_mask
171 1.1 reinoud ldr r0, [r1]
172 1.1 reinoud stmfd sp!, {r0}
173 1.1 reinoud orr r0, r0, r8
174 1.1 reinoud
175 1.1 reinoud /*
176 1.1 reinoud * Need to block all interrupts at the IPL or lower for
177 1.1 reinoud * all asserted interrupts.
178 1.1 reinoud * This basically emulates hardware interrupt priority levels.
179 1.1 reinoud * Means we need to go through the interrupt mask and for
180 1.1 reinoud * every asserted interrupt we need to mask out all other
181 1.1 reinoud * interrupts at the same or lower IPL.
182 1.1 reinoud * If only we could wait until the main loop but we need to sort
183 1.1 reinoud * this out first so interrupts can be re-enabled.
184 1.1 reinoud *
185 1.1 reinoud * This would benefit from a special ffs type routine
186 1.1 reinoud */
187 1.1 reinoud
188 1.11 matt mov r9, #(NIPL - 1)
189 1.1 reinoud ldr r7, Lspl_masks
190 1.1 reinoud
191 1.1 reinoud Lfind_highest_ipl:
192 1.1 reinoud ldr r2, [r7, r9, lsl #2]
193 1.1 reinoud tst r8, r2
194 1.1 reinoud subeq r9, r9, #1
195 1.1 reinoud beq Lfind_highest_ipl
196 1.1 reinoud
197 1.1 reinoud /* r9 = SPL level of highest priority interrupt */
198 1.1 reinoud add r9, r9, #1
199 1.1 reinoud ldr r2, [r7, r9, lsl #2]
200 1.1 reinoud mvn r2, r2
201 1.1 reinoud orr r0, r0, r2
202 1.1 reinoud
203 1.17 skrll str r0, [r1]
204 1.1 reinoud
205 1.11 matt ldr r0, [r4, #CI_CPL]
206 1.11 matt str r9, [r4, #CI_CPL]
207 1.11 matt stmfd sp!, {r0}
208 1.1 reinoud
209 1.1 reinoud /* Update the IOMD irq masks */
210 1.1 reinoud bl _C_LABEL(irq_setmasks)
211 1.1 reinoud
212 1.16 joerg mrs r0, cpsr /* Enable IRQ's */
213 1.1 reinoud bic r0, r0, #I32_bit
214 1.1 reinoud msr cpsr_all, r0
215 1.1 reinoud
216 1.17 skrll /*
217 1.1 reinoud * take a copy of the IRQ request so that we can strip bits out of it
218 1.1 reinoud * note that we only use 24 bits with iomd2 chips
219 1.1 reinoud */
220 1.18 skrll ldr r7, Larm7500_ioc_found
221 1.18 skrll ldr r7, [r7] /* get the flag */
222 1.18 skrll cmp r7, #0
223 1.1 reinoud movne r11, r8 /* ARM7500 -> copy all bits */
224 1.1 reinoud biceq r11, r8, #0xff000000 /* !ARM7500 -> only use 24 bit */
225 1.1 reinoud
226 1.1 reinoud /* ffs routine to find first irq to service */
227 1.1 reinoud /* standard trick to isolate bottom bit in a0 or 0 if a0 = 0 on entry */
228 1.18 skrll rsb r7, r11, #0
229 1.18 skrll ands r10, r11, r7
230 1.1 reinoud
231 1.17 skrll /*
232 1.1 reinoud * now r10 has at most 1 set bit, call this X
233 1.1 reinoud * if X = 0, branch to exit code
234 1.1 reinoud */
235 1.1 reinoud beq exitirq
236 1.12 matt irqloop:
237 1.18 skrll ldr r6, Lirqhandlers
238 1.18 skrll adr r7, Lirq_ffs_table
239 1.1 reinoud /*
240 1.1 reinoud * at this point:
241 1.18 skrll * r6 = address of irq handlers table
242 1.18 skrll * r7 = address of ffs table
243 1.1 reinoud * r8 = irq request
244 1.1 reinoud * r10 = bit of irq to be serviced
245 1.1 reinoud * r11 = bitmask of IRQ's to service
246 1.1 reinoud */
247 1.1 reinoud /* find the set bit */
248 1.1 reinoud orr r9, r10, r10, lsl #4 /* X * 0x11 */
249 1.1 reinoud orr r9, r9, r9, lsl #6 /* X * 0x451 */
250 1.1 reinoud rsb r9, r9, r9, lsl #16 /* X * 0x0450fbaf */
251 1.1 reinoud /* fetch the bit number */
252 1.18 skrll ldrb r9, [r7, r9, lsr #26 ]
253 1.1 reinoud
254 1.17 skrll /*
255 1.1 reinoud * r9 = irq to service
256 1.1 reinoud */
257 1.1 reinoud
258 1.1 reinoud /* apologies for the dogs dinner of code here, but it's in an attempt
259 1.1 reinoud * to minimise stalling on SA's, hence lots of things happen here:
260 1.1 reinoud * - getting address of handler, if it doesn't exist we call
261 1.1 reinoud * stray_irqhandler this is assumed to be rare so we don't
262 1.1 reinoud * care about performance for it
263 1.1 reinoud * - statinfo is updated
264 1.1 reinoud * - unsetting of the irq bit in r11
265 1.1 reinoud * - irq stats (if enabled) also get put in the mix
266 1.1 reinoud */
267 1.18 skrll ldr r6, [r6, r9, lsl #2] /* Get address of first handler structure */
268 1.1 reinoud
269 1.1 reinoud teq r6, #0x00000000 /* Do we have a handler */
270 1.1 reinoud moveq r0, r8 /* IRQ requests as arg 0 */
271 1.3 bjh21 adreq lr, nextirq /* return Address */
272 1.1 reinoud beq _C_LABEL(stray_irqhandler) /* call special handler */
273 1.17 skrll
274 1.13 matt /* stat info C */
275 1.13 matt ldr r1, [r4, #(CI_CC_NINTR)] /* Stat info B */
276 1.13 matt ldr r2, [r4, #(CI_CC_NINTR+4)]
277 1.13 matt #ifdef _ARMEL
278 1.13 matt adds r1, r1, #0x00000001
279 1.13 matt adc r2, r2, #0x00000000
280 1.13 matt #else
281 1.13 matt adds r2, r2, #0x00000001
282 1.13 matt adc r1, r1, #0x00000000
283 1.13 matt #endif
284 1.13 matt str r1, [r4, #(CI_CC_NINTR)]
285 1.13 matt str r2, [r4, #(CI_CC_NINTR+4)]
286 1.13 matt
287 1.1 reinoud #ifdef IRQSTATS
288 1.1 reinoud ldr r2, Lintrcnt
289 1.1 reinoud ldr r3, [r6, #(IH_NUM)]
290 1.1 reinoud ldr r3, [r2, r3, lsl #2]!
291 1.1 reinoud #endif
292 1.1 reinoud bic r11, r11, r10 /* clear the IRQ bit */
293 1.1 reinoud
294 1.1 reinoud #ifdef IRQSTATS
295 1.1 reinoud add r3, r3, #0x00000001
296 1.1 reinoud str r3, [r2]
297 1.1 reinoud #endif /* IRQSTATS */
298 1.1 reinoud
299 1.1 reinoud irqchainloop:
300 1.1 reinoud ldr r0, [r6, #(IH_ARG)] /* Get argument pointer */
301 1.1 reinoud teq r0, #0x00000000 /* If arg is zero pass stack frame */
302 1.1 reinoud addeq r0, sp, #8 /* ... stack frame [XXX needs care] */
303 1.18 skrll
304 1.3 bjh21 mov lr, pc /* return address */
305 1.1 reinoud ldr pc, [r6, #(IH_FUNC)] /* Call handler */
306 1.1 reinoud
307 1.1 reinoud ldr r6, [r6, #(IH_NEXT)] /* fetch next handler */
308 1.17 skrll
309 1.1 reinoud teq r0, #0x00000001 /* Was the irq serviced ? */
310 1.17 skrll
311 1.1 reinoud /* if it was it'll just fall through this: */
312 1.1 reinoud teqne r6, #0x00000000
313 1.1 reinoud bne irqchainloop
314 1.1 reinoud nextirq:
315 1.1 reinoud /* Check for next irq */
316 1.18 skrll rsb r7, r11, #0
317 1.18 skrll ands r10, r11, r7
318 1.1 reinoud /* check if there are anymore irq's to service */
319 1.1 reinoud bne irqloop
320 1.1 reinoud
321 1.1 reinoud exitirq:
322 1.1 reinoud ldmfd sp!, {r2, r3}
323 1.11 matt ldr r0, Ldisabled_mask
324 1.11 matt str r2, [r4, #CI_CPL]
325 1.11 matt str r3, [r0]
326 1.1 reinoud
327 1.1 reinoud bl _C_LABEL(irq_setmasks)
328 1.1 reinoud
329 1.1 reinoud /* Kill IRQ's in preparation for exit */
330 1.16 joerg mrs r0, cpsr
331 1.1 reinoud orr r0, r0, #(I32_bit)
332 1.1 reinoud msr cpsr_all, r0
333 1.1 reinoud
334 1.1 reinoud /* Decrement the nest count */
335 1.11 matt ldr r0, [r4, #CI_INTR_DEPTH]
336 1.11 matt sub r0, r0, #1
337 1.11 matt str r0, [r4, #CI_INTR_DEPTH]
338 1.1 reinoud
339 1.14 matt ldr r7, [sp, #TF_FILL] /* restore r7 */
340 1.6 thorpej LOCK_CAS_CHECK
341 1.6 thorpej
342 1.4 scw DO_AST_AND_RESTORE_ALIGNMENT_FAULTS
343 1.1 reinoud PULLFRAMEFROMSVCANDEXIT
344 1.1 reinoud
345 1.1 reinoud /* NOT REACHED */
346 1.1 reinoud b . - 8
347 1.1 reinoud
348 1.1 reinoud Lcurrent_mask:
349 1.1 reinoud .word _C_LABEL(current_mask) /* irq's that are usable */
350 1.1 reinoud
351 1.1 reinoud ENTRY(irq_setmasks)
352 1.1 reinoud /* Disable interrupts */
353 1.16 joerg mrs r3, cpsr
354 1.1 reinoud orr r1, r3, #(I32_bit)
355 1.1 reinoud msr cpsr_all, r1
356 1.1 reinoud
357 1.1 reinoud /* Calculate IOMD interrupt mask */
358 1.1 reinoud ldr r1, Lcurrent_mask /* All the enabled interrupts */
359 1.1 reinoud ldr r1, [r1]
360 1.7 tsutsui ldr r0, Lspl_masks /* Block due to current spl level */
361 1.7 tsutsui ldr r2, Lcurrent_spl_level
362 1.1 reinoud ldr r2, [r2]
363 1.7 tsutsui ldr r2, [r0, r2, lsl #2]
364 1.1 reinoud and r1, r1, r2
365 1.1 reinoud ldr r2, Ldisabled_mask /* Block due to active interrupts */
366 1.1 reinoud ldr r2, [r2]
367 1.1 reinoud bic r1, r1, r2
368 1.1 reinoud
369 1.1 reinoud ldr r0, Liomd_base
370 1.1 reinoud ldr r0, [r0] /* Point to the IOMD */
371 1.1 reinoud strb r1, [r0, #(IOMD_IRQMSKA << 2)] /* Set IRQ mask A */
372 1.1 reinoud mov r1, r1, lsr #8
373 1.1 reinoud strb r1, [r0, #(IOMD_IRQMSKB << 2)] /* Set IRQ mask B */
374 1.1 reinoud mov r1, r1, lsr #8
375 1.1 reinoud
376 1.1 reinoud ldr r2, Larm7500_ioc_found
377 1.1 reinoud ldr r2, [r2]
378 1.1 reinoud cmp r2, #0
379 1.1 reinoud beq skip_setting_extended_DMA_mask
380 1.1 reinoud
381 1.1 reinoud /* only for ARM7500's */
382 1.1 reinoud strb r1, [r0, #(IOMD_IRQMSKC << 2)]
383 1.1 reinoud mov r1, r1, lsr #8
384 1.1 reinoud and r2, r1, #0xef
385 1.1 reinoud strb r2, [r0, #(IOMD_IRQMSKD << 2)]
386 1.1 reinoud mov r1, r1, lsr #3
387 1.1 reinoud and r2, r1, #0x10
388 1.1 reinoud strb r2, [r0, #(IOMD_DMAMSK << 2)] /* Set DMA mask */
389 1.1 reinoud b continue_setting_masks
390 1.1 reinoud
391 1.1 reinoud skip_setting_extended_DMA_mask:
392 1.1 reinoud /* non ARM7500's */
393 1.1 reinoud strb r1, [r0, #(IOMD_DMAMSK << 2)] /* Set DMA mask */
394 1.1 reinoud
395 1.1 reinoud continue_setting_masks:
396 1.1 reinoud
397 1.1 reinoud /* Restore old cpsr and exit */
398 1.1 reinoud msr cpsr_all, r3
399 1.1 reinoud mov pc, lr
400 1.1 reinoud
401 1.1 reinoud Lintrcnt:
402 1.1 reinoud .word _C_LABEL(intrcnt)
403 1.1 reinoud
404 1.1 reinoud
405 1.1 reinoud Lirqhandlers:
406 1.1 reinoud .word _C_LABEL(irqhandlers) /* Pointer to array of irqhandlers */
407 1.1 reinoud
408 1.1 reinoud #ifdef IRQSTATS
409 1.1 reinoud /* These symbols are used by vmstat */
410 1.1 reinoud
411 1.13 matt .section .rodata
412 1.13 matt
413 1.1 reinoud .global _C_LABEL(_intrnames)
414 1.1 reinoud _C_LABEL(_intrnames):
415 1.1 reinoud .word _C_LABEL(intrnames)
416 1.1 reinoud
417 1.1 reinoud .globl _C_LABEL(intrnames), _C_LABEL(eintrnames), _C_LABEL(intrcnt), _C_LABEL(sintrcnt), _C_LABEL(eintrcnt)
418 1.1 reinoud _C_LABEL(intrnames):
419 1.1 reinoud .asciz "interrupt 0 "
420 1.1 reinoud .asciz "interrupt 1 " /* reserved0 */
421 1.1 reinoud .asciz "interrupt 2 "
422 1.1 reinoud .asciz "interrupt 3 "
423 1.1 reinoud .asciz "interrupt 4 "
424 1.1 reinoud .asciz "interrupt 5 "
425 1.1 reinoud .asciz "interrupt 6 "
426 1.1 reinoud .asciz "interrupt 7 " /* reserved1 */
427 1.1 reinoud .asciz "interrupt 8 " /* reserved2 */
428 1.1 reinoud .asciz "interrupt 9 "
429 1.1 reinoud .asciz "interrupt 10 "
430 1.1 reinoud .asciz "interrupt 11 "
431 1.1 reinoud .asciz "interrupt 12 "
432 1.1 reinoud .asciz "interrupt 13 "
433 1.1 reinoud .asciz "interrupt 14 "
434 1.1 reinoud .asciz "interrupt 15 "
435 1.1 reinoud .asciz "dma channel 0"
436 1.1 reinoud .asciz "dma channel 1"
437 1.1 reinoud .asciz "dma channel 2"
438 1.1 reinoud .asciz "dma channel 3"
439 1.1 reinoud .asciz "interrupt 20 "
440 1.1 reinoud .asciz "interrupt 21 "
441 1.1 reinoud .asciz "reserved 3 "
442 1.1 reinoud .asciz "reserved 4 "
443 1.1 reinoud .asciz "exp card 0 "
444 1.1 reinoud .asciz "exp card 1 "
445 1.1 reinoud .asciz "exp card 2 "
446 1.1 reinoud .asciz "exp card 3 "
447 1.1 reinoud .asciz "exp card 4 "
448 1.1 reinoud .asciz "exp card 5 "
449 1.1 reinoud .asciz "exp card 6 "
450 1.1 reinoud .asciz "exp card 7 "
451 1.1 reinoud
452 1.1 reinoud _C_LABEL(sintrnames):
453 1.1 reinoud .asciz "softclock "
454 1.1 reinoud .asciz "softnet "
455 1.1 reinoud .asciz "softserial "
456 1.1 reinoud .asciz "softintr 3 "
457 1.1 reinoud .asciz "softintr 4 "
458 1.1 reinoud .asciz "softintr 5 "
459 1.1 reinoud .asciz "softintr 6 "
460 1.1 reinoud .asciz "softintr 7 "
461 1.1 reinoud .asciz "softintr 8 "
462 1.1 reinoud .asciz "softintr 9 "
463 1.1 reinoud .asciz "softintr 10 "
464 1.1 reinoud .asciz "softintr 11 "
465 1.1 reinoud .asciz "softintr 12 "
466 1.1 reinoud .asciz "softintr 13 "
467 1.1 reinoud .asciz "softintr 14 "
468 1.1 reinoud .asciz "softintr 15 "
469 1.1 reinoud .asciz "softintr 16 "
470 1.1 reinoud .asciz "softintr 17 "
471 1.1 reinoud .asciz "softintr 18 "
472 1.1 reinoud .asciz "softintr 19 "
473 1.1 reinoud .asciz "softintr 20 "
474 1.1 reinoud .asciz "softintr 21 "
475 1.1 reinoud .asciz "softintr 22 "
476 1.1 reinoud .asciz "softintr 23 "
477 1.1 reinoud .asciz "softintr 24 "
478 1.1 reinoud .asciz "softintr 25 "
479 1.1 reinoud .asciz "softintr 26 "
480 1.1 reinoud .asciz "softintr 27 "
481 1.1 reinoud .asciz "softintr 28 "
482 1.1 reinoud .asciz "softintr 29 "
483 1.1 reinoud .asciz "softintr 30 "
484 1.1 reinoud .asciz "softintr 31 "
485 1.1 reinoud _C_LABEL(eintrnames):
486 1.1 reinoud
487 1.1 reinoud .bss
488 1.1 reinoud .align 0
489 1.1 reinoud _C_LABEL(intrcnt):
490 1.1 reinoud .space 32*4 /* XXX Should be linked to number of interrupts */
491 1.1 reinoud
492 1.1 reinoud _C_LABEL(sintrcnt):
493 1.1 reinoud .space 32*4 /* XXX Should be linked to number of interrupts */
494 1.1 reinoud _C_LABEL(eintrcnt):
495 1.1 reinoud
496 1.1 reinoud #else /* IRQSTATS */
497 1.1 reinoud /* Dummy entries to keep vmstat happy */
498 1.1 reinoud
499 1.13 matt .section .rodata
500 1.1 reinoud .globl _C_LABEL(intrnames), _C_LABEL(eintrnames), _C_LABEL(intrcnt), _C_LABEL(eintrcnt)
501 1.1 reinoud _C_LABEL(intrnames):
502 1.1 reinoud .long 0
503 1.1 reinoud _C_LABEL(eintrnames):
504 1.1 reinoud
505 1.1 reinoud _C_LABEL(intrcnt):
506 1.1 reinoud .long 0
507 1.1 reinoud _C_LABEL(eintrcnt):
508 1.1 reinoud #endif /* IRQSTATS */
509