1 /* $NetBSD: intr.h,v 1.2 2001/04/13 23:30:04 thorpej 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 Charles M. Hannum. 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 * Sandpoint-specific code developed 40 * by Allen Briggs for Wasabi Systems, Inc. 41 * 42 * OpenPIC code derived from code with the following notice. 43 */ 44 /*- 45 * Copyright (c) 2000 Tsubai Masanari. All rights reserved. 46 * 47 * Redistribution and use in source and binary forms, with or without 48 * modification, are permitted provided that the following conditions 49 * are met: 50 * 1. Redistributions of source code must retain the above copyright 51 * notice, this list of conditions and the following disclaimer. 52 * 2. Redistributions in binary form must reproduce the above copyright 53 * notice, this list of conditions and the following disclaimer in the 54 * documentation and/or other materials provided with the distribution. 55 * 3. The name of the author may not be used to endorse or promote products 56 * derived from this software without specific prior written permission. 57 * 58 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 59 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 60 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 61 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 62 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 63 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 64 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 65 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 66 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 67 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 68 */ 69 70 #ifndef _SANDPOINT_INTR_H_ 71 #define _SANDPOINT_INTR_H_ 72 73 /* Interrupt priority `levels'. */ 74 #define IPL_NONE 9 /* nothing */ 75 #define IPL_SOFTCLOCK 8 /* software clock interrupt */ 76 #define IPL_SOFTNET 7 /* software network interrupt */ 77 #define IPL_BIO 6 /* block I/O */ 78 #define IPL_NET 5 /* network */ 79 #define IPL_SOFTSERIAL 4 /* software serial interrupt */ 80 #define IPL_TTY 3 /* terminal */ 81 #define IPL_IMP 3 /* memory allocation */ 82 #define IPL_AUDIO 2 /* audio */ 83 #define IPL_CLOCK 1 /* clock */ 84 #define IPL_HIGH 1 /* everything */ 85 #define IPL_SERIAL 0 /* serial */ 86 #define NIPL 10 87 88 /* Interrupt sharing types. */ 89 #define IST_NONE 0 /* none */ 90 #define IST_PULSE 1 /* pulsed */ 91 #define IST_EDGE 2 /* edge-triggered */ 92 #define IST_LEVEL 3 /* level-triggered */ 93 94 #ifndef _LOCORE 95 96 /* 97 * Interrupt handler chains. intr_establish() inserts a handler into 98 * the list. The handler is called with its (single) argument. 99 */ 100 struct intrhand { 101 int (*ih_fun)(void *); 102 void *ih_arg; 103 u_long ih_count; 104 struct intrhand *ih_next; 105 int ih_level; 106 int ih_irq; 107 }; 108 109 void setsoftclock(void); 110 void clearsoftclock(void); 111 int splsoftclock(void); 112 void setsoftnet(void); 113 void clearsoftnet(void); 114 int splsoftnet(void); 115 116 void do_pending_int(void); 117 void *intr_establish(int, int, int, int (*)(void *), void *); 118 void intr_disestablish(void *); 119 120 static __inline int splraise(int); 121 static __inline int spllower(int); 122 static __inline void splx(int); 123 static __inline void set_sint(int); 124 125 void softnet __P((int)); /* Defined in machdep.c, used in extintr.c */ 126 127 extern volatile int cpl, ipending, astpending, tickspending; 128 extern int imask[]; 129 extern long intrcnt[]; 130 131 /* 132 * Reorder protection in the following inline functions is 133 * protected with the "eieio" instruction. 134 */ 135 static __inline int 136 splraise(newcpl) 137 int newcpl; 138 { 139 int oldcpl; 140 141 __asm__ volatile("sync; eieio\n"); /* don't reorder.... */ 142 oldcpl = cpl; 143 cpl = oldcpl | newcpl; 144 __asm__ volatile("sync; eieio\n"); /* reorder protect */ 145 return(oldcpl); 146 } 147 148 static __inline void 149 splx(newcpl) 150 int newcpl; 151 { 152 __asm__ volatile("sync; eieio\n"); /* reorder protect */ 153 cpl = newcpl; 154 if(ipending & ~newcpl) 155 do_pending_int(); 156 __asm__ volatile("sync; eieio\n"); /* reorder protect */ 157 } 158 159 static __inline int 160 spllower(newcpl) 161 int newcpl; 162 { 163 int oldcpl; 164 165 __asm__ volatile("sync; eieio\n"); /* reorder protect */ 166 oldcpl = cpl; 167 cpl = newcpl; 168 if(ipending & ~newcpl) 169 do_pending_int(); 170 __asm__ volatile("sync; eieio\n"); /* reorder protect */ 171 return(oldcpl); 172 } 173 174 /* Following code should be implemented with lwarx/stwcx to avoid 175 * the disable/enable. i need to read the manual once more.... */ 176 static __inline void 177 set_sint(pending) 178 int pending; 179 { 180 int msrsave; 181 182 __asm__ ("mfmsr %0" : "=r"(msrsave)); 183 __asm__ volatile ("mtmsr %0" :: "r"(msrsave & ~PSL_EE)); 184 ipending |= pending; 185 __asm__ volatile ("mtmsr %0" :: "r"(msrsave)); 186 } 187 188 /* 189 * Motorola SandPoint PPC eval board interrupt list 190 */ 191 #define SANDPOINT_INTR_PCI0 0 192 #define SANDPOINT_INTR_IDE0 SANDPOINT_INTR_PCI0 193 #define SANDPOINT_INTR_PCI1 1 194 #define SANDPOINT_INTR_IDE1 SANDPOINT_INTR_PCI1 195 #define SANDPOINT_INTR_ISA SANDPOINT_INTR_PCI1 196 #define SANDPOINT_INTR_PCI2 2 197 #define SANDPOINT_INTR_PCI3 3 198 #define SANDPOINT_INTR_SERCON 4 /* Not used on Unity X4 */ 199 #define SANDPOINT_INTR_I2C 5 200 #define SANDPOINT_INTR_DMA0 6 201 #define SANDPOINT_INTR_DMA1 7 202 #define SANDPOINT_INTR_I2O 8 203 #define SANDPOINT_INTR_TIMER0 9 204 #define SANDPOINT_INTR_TIMER1 10 205 #define SANDPOINT_INTR_TIMER2 11 206 #define SANDPOINT_INTR_TIMER3 12 207 208 #define OPENPIC_MAX_EXTERNAL_INT 4 209 210 #define ICU_LEN 13 211 #define ICU_MASK 0x00001fff 212 #define LEGAL_IRQ(x) ((x) >= 0 && (x) < ICU_LEN) 213 214 #define SINT_ISA 0x10000000 215 #define SINT_NET 0x20000000 216 #define SINT_CLOCK 0x40000000 217 #define SINT_SERIAL 0x80000000 218 #define SPL_CLOCK 0x00000001 219 #define SINT_MASK (SINT_ISA|SINT_CLOCK|SINT_NET|SINT_SERIAL) 220 221 #define CNT_SINT_ISA 28 222 #define CNT_SINT_NET 29 223 #define CNT_SINT_CLOCK 30 224 #define CNT_SINT_SERIAL 31 225 #define CNT_CLOCK 0 226 227 #define splbio() splraise(imask[IPL_BIO]) 228 #define splnet() splraise(imask[IPL_NET]) 229 #define spltty() splraise(imask[IPL_TTY]) 230 #define splclock() splraise(imask[IPL_CLOCK]) 231 #define splvm() splraise(imask[IPL_IMP]) 232 #define splserial() splraise(imask[IPL_SERIAL]) 233 #define splstatclock() splclock() 234 #define spllowersoftclock() spllower(imask[IPL_SOFTCLOCK]) 235 #define splsoftclock() splraise(imask[IPL_SOFTCLOCK]) 236 #define splsoftnet() splraise(imask[IPL_SOFTNET]) 237 #define splsoftserial() splraise(imask[IPL_SOFTSERIAL]) 238 239 #define spllpt() spltty() 240 241 #define setsoftisa() set_sint(SINT_ISA); 242 #define setsoftclock() set_sint(SINT_CLOCK); 243 #define setsoftnet() set_sint(SINT_NET); 244 #define setsoftserial() set_sint(SINT_SERIAL); 245 246 #define splhigh() splraise(imask[IPL_HIGH]) 247 #define spl0() spllower(0) 248 249 #define splsched() splhigh() 250 #define spllock() splhigh() 251 252 #endif /* !_LOCORE */ 253 254 #endif /* !_SANDPOINT_INTR_H_ */ 255