intr.h revision 1.1.10.1 1 1.1.10.1 bouyer /* $NetBSD: intr.h,v 1.1.10.1 2007/10/25 22:36:26 bouyer Exp $ */
2 1.1.10.1 bouyer
3 1.1.10.1 bouyer /*-
4 1.1.10.1 bouyer * Copyright (c) 2007 Michael Lorenz
5 1.1.10.1 bouyer * All rights reserved.
6 1.1.10.1 bouyer *
7 1.1.10.1 bouyer * Redistribution and use in source and binary forms, with or without
8 1.1.10.1 bouyer * modification, are permitted provided that the following conditions
9 1.1.10.1 bouyer * are met:
10 1.1.10.1 bouyer * 1. Redistributions of source code must retain the above copyright
11 1.1.10.1 bouyer * notice, this list of conditions and the following disclaimer.
12 1.1.10.1 bouyer * 2. Redistributions in binary form must reproduce the above copyright
13 1.1.10.1 bouyer * notice, this list of conditions and the following disclaimer in the
14 1.1.10.1 bouyer * documentation and/or other materials provided with the distribution.
15 1.1.10.1 bouyer * 3. Neither the name of The NetBSD Foundation nor the names of its
16 1.1.10.1 bouyer * contributors may be used to endorse or promote products derived
17 1.1.10.1 bouyer * from this software without specific prior written permission.
18 1.1.10.1 bouyer *
19 1.1.10.1 bouyer * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1.10.1 bouyer * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1.10.1 bouyer * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1.10.1 bouyer * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1.10.1 bouyer * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1.10.1 bouyer * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1.10.1 bouyer * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1.10.1 bouyer * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1.10.1 bouyer * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1.10.1 bouyer * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1.10.1 bouyer * POSSIBILITY OF SUCH DAMAGE.
30 1.1.10.1 bouyer */
31 1.1.10.1 bouyer
32 1.1.10.1 bouyer #include <sys/cdefs.h>
33 1.1.10.1 bouyer __KERNEL_RCSID(0, "$NetBSD: intr.h,v 1.1.10.1 2007/10/25 22:36:26 bouyer Exp $");
34 1.1.10.1 bouyer
35 1.1.10.1 bouyer #ifndef POWERPC_INTR_MACHDEP_H
36 1.1.10.1 bouyer #define POWERPC_INTR_MACHDEP_H
37 1.1.10.1 bouyer
38 1.1.10.1 bouyer void *intr_establish(int, int, int, int (*)(void *), void *);
39 1.1.10.1 bouyer void intr_disestablish(void *);
40 1.1.10.1 bouyer const char *intr_typename(int);
41 1.1.10.1 bouyer void genppc_cpu_configure(void);
42 1.1.10.1 bouyer
43 1.1.10.1 bouyer /* Interrupt priority `levels'. */
44 1.1.10.1 bouyer #define IPL_NONE 0 /* nothing */
45 1.1.10.1 bouyer #define IPL_SOFTCLOCK 1 /* timeouts */
46 1.1.10.1 bouyer #define IPL_SOFTNET 2 /* protocol stacks */
47 1.1.10.1 bouyer #define IPL_BIO 3 /* block I/O */
48 1.1.10.1 bouyer #define IPL_NET 4 /* network */
49 1.1.10.1 bouyer #define IPL_SOFTSERIAL 5 /* serial */
50 1.1.10.1 bouyer #define IPL_AUDIO 6 /* audio */
51 1.1.10.1 bouyer #define IPL_TTY 7 /* terminal */
52 1.1.10.1 bouyer #define IPL_LPT IPL_TTY
53 1.1.10.1 bouyer #define IPL_VM 8 /* memory allocation */
54 1.1.10.1 bouyer #define IPL_CLOCK 9
55 1.1.10.1 bouyer #define IPL_STATCLOCK 10 /* clock */
56 1.1.10.1 bouyer #define IPL_SCHED 11
57 1.1.10.1 bouyer #define IPL_SERIAL 12 /* serial */
58 1.1.10.1 bouyer #define IPL_LOCK 13
59 1.1.10.1 bouyer #define IPL_HIGH 14 /* everything */
60 1.1.10.1 bouyer #define NIPL 15
61 1.1.10.1 bouyer
62 1.1.10.1 bouyer /* Interrupt sharing types. */
63 1.1.10.1 bouyer #define IST_NONE 0 /* none */
64 1.1.10.1 bouyer #define IST_PULSE 1 /* pulsed */
65 1.1.10.1 bouyer #define IST_EDGE 2 /* edge-triggered */
66 1.1.10.1 bouyer #define IST_LEVEL 3 /* level-triggered */
67 1.1.10.1 bouyer
68 1.1.10.1 bouyer #ifndef _LOCORE
69 1.1.10.1 bouyer #include <powerpc/softintr.h>
70 1.1.10.1 bouyer
71 1.1.10.1 bouyer /*
72 1.1.10.1 bouyer * Interrupt handler chains. intr_establish() inserts a handler into
73 1.1.10.1 bouyer * the list. The handler is called with its (single) argument.
74 1.1.10.1 bouyer */
75 1.1.10.1 bouyer struct intrhand {
76 1.1.10.1 bouyer int (*ih_fun)(void *);
77 1.1.10.1 bouyer void *ih_arg;
78 1.1.10.1 bouyer struct intrhand *ih_next;
79 1.1.10.1 bouyer int ih_level;
80 1.1.10.1 bouyer int ih_irq;
81 1.1.10.1 bouyer };
82 1.1.10.1 bouyer
83 1.1.10.1 bouyer int splraise(int);
84 1.1.10.1 bouyer int spllower(int);
85 1.1.10.1 bouyer void splx(int);
86 1.1.10.1 bouyer void softintr(int);
87 1.1.10.1 bouyer
88 1.1.10.1 bouyer extern int imask[];
89 1.1.10.1 bouyer
90 1.1.10.1 bouyer /* Soft interrupt masks. */
91 1.1.10.1 bouyer #define SIR_CLOCK 28
92 1.1.10.1 bouyer #define SIR_NET 29
93 1.1.10.1 bouyer #define SIR_SERIAL 30
94 1.1.10.1 bouyer #define SPL_CLOCK 31
95 1.1.10.1 bouyer
96 1.1.10.1 bouyer #define setsoftclock() softintr(SIR_CLOCK)
97 1.1.10.1 bouyer #define setsoftnet() softintr(SIR_NET)
98 1.1.10.1 bouyer #define setsoftserial() softintr(SIR_SERIAL)
99 1.1.10.1 bouyer
100 1.1.10.1 bouyer #define spl0() spllower(0)
101 1.1.10.1 bouyer
102 1.1.10.1 bouyer typedef int ipl_t;
103 1.1.10.1 bouyer typedef struct {
104 1.1.10.1 bouyer ipl_t _ipl;
105 1.1.10.1 bouyer } ipl_cookie_t;
106 1.1.10.1 bouyer
107 1.1.10.1 bouyer static inline ipl_cookie_t
108 1.1.10.1 bouyer makeiplcookie(ipl_t ipl)
109 1.1.10.1 bouyer {
110 1.1.10.1 bouyer
111 1.1.10.1 bouyer return (ipl_cookie_t){._ipl = ipl};
112 1.1.10.1 bouyer }
113 1.1.10.1 bouyer
114 1.1.10.1 bouyer static inline int
115 1.1.10.1 bouyer splraiseipl(ipl_cookie_t icookie)
116 1.1.10.1 bouyer {
117 1.1.10.1 bouyer
118 1.1.10.1 bouyer return splraise(imask[icookie._ipl]);
119 1.1.10.1 bouyer }
120 1.1.10.1 bouyer
121 1.1.10.1 bouyer #include <sys/spl.h>
122 1.1.10.1 bouyer
123 1.1.10.1 bouyer #endif /* _LOCORE */
124 1.1.10.1 bouyer
125 1.1.10.1 bouyer #endif /* POWERPC_INTR_MACHDEP_H */
126