1 /* $NetBSD: intr.h,v 1.9 2006/05/04 12:21:18 yamt Exp $ */ 2 3 /*- 4 * Copyright (c) 1998 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Paul Kranenburg. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 3. All advertising materials mentioning features or use of this software 19 * must display the following acknowledgement: 20 * This product includes software developed by the NetBSD 21 * Foundation, Inc. and its contributors. 22 * 4. Neither the name of The NetBSD Foundation nor the names of its 23 * contributors may be used to endorse or promote products derived 24 * from this software without specific prior written permission. 25 * 26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 36 * POSSIBILITY OF SUCH DAMAGE. 37 */ 38 39 /* 40 * Device class interrupt levels 41 * Note: sun4 and sun4c hardware only has software interrupt available 42 * on level 1, 4 or 6. This limits the choice of the various 43 * IPL_SOFT* symbols to one of those three values. 44 */ 45 #define IPL_NONE 0 /* nothing */ 46 #define IPL_SOFTCLOCK 1 /* timeouts */ 47 #define IPL_SOFTNET 1 /* protocol stack */ 48 #define IPL_SOFTAUDIO 4 /* second-level audio */ 49 #define IPL_SOFTFDC 4 /* second-level floppy */ 50 #define IPL_BIO 5 /* block I/O */ 51 #define IPL_TTY 6 /* terminal */ 52 #define IPL_SOFTSERIAL 6 /* serial */ 53 #define IPL_VM 7 /* memory allocation */ 54 #define IPL_NET 7 /* network */ 55 #define IPL_CLOCK 10 /* clock */ 56 #define IPL_SCHED 11 /* scheduler */ 57 #define IPL_AUDIO 13 /* audio */ 58 #define IPL_SERIAL 13 /* serial */ 59 #define IPL_STATCLOCK 14 /* statclock */ 60 #define IPL_HIGH 15 /* everything */ 61 #define IPL_LOCK IPL_HIGH 62 63 /* 64 * fd hardware, ts102, and tadpole microcontoller interrupts are at level 11 65 */ 66 67 #define IPL_FD 11 68 #define IPL_TS102 11 69 70 /* 71 * zs hardware interrupts are at level 12 72 * su (com) hardware interrupts are at level 13 73 * IPL_SERIAL must protect them all. 74 */ 75 76 #define IPL_ZS 12 77 78 #if defined(_KERNEL) && !defined(_LOCORE) 79 void * 80 softintr_establish(int level, void (*fun)(void *), void *arg); 81 82 void 83 softintr_disestablish(void *cookie); 84 85 /* 86 * NB that softintr_schedule() casts the cookie to an int *. 87 * This is to get the sic_pilreq member of the softintr_cookie 88 * structure, which is otherwise internal to intr.c. 89 */ 90 #if defined(SUN4M) || defined(SUN4D) 91 extern void raise(int, int); 92 #if !(defined(SUN4) || defined(SUN4C)) 93 #define softintr_schedule(cookie) raise(0, *((int *) (cookie))) 94 #else /* both defined */ 95 #define softintr_schedule(cookie) do { \ 96 if (CPU_ISSUN4M || CPU_ISSUN4D) \ 97 raise(0, *((int *)(cookie))); \ 98 else \ 99 ienab_bis(*((int *)(cookie))); \ 100 } while (0) 101 #endif /* SUN4 || SUN4C */ 102 #else /* SUN4M || SUN4D */ 103 #define softintr_schedule(cookie) ienab_bis(*((int *) (cookie))) 104 #endif /* SUN4M || SUN4D */ 105 106 #if 0 107 void softintr_schedule(void *cookie); 108 #endif 109 #endif /* KERNEL && !_LOCORE */ 110