intr.h revision 1.52 1 1.52 cherry /* $NetBSD: intr.h,v 1.52 2017/11/04 14:56:48 cherry Exp $ */
2 1.1 fvdl
3 1.1 fvdl /*-
4 1.33 ad * Copyright (c) 1998, 2001, 2006, 2007, 2008 The NetBSD Foundation, Inc.
5 1.1 fvdl * All rights reserved.
6 1.1 fvdl *
7 1.1 fvdl * This code is derived from software contributed to The NetBSD Foundation
8 1.1 fvdl * by Charles M. Hannum, and by Jason R. Thorpe.
9 1.1 fvdl *
10 1.1 fvdl * Redistribution and use in source and binary forms, with or without
11 1.1 fvdl * modification, are permitted provided that the following conditions
12 1.1 fvdl * are met:
13 1.1 fvdl * 1. Redistributions of source code must retain the above copyright
14 1.1 fvdl * notice, this list of conditions and the following disclaimer.
15 1.1 fvdl * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 fvdl * notice, this list of conditions and the following disclaimer in the
17 1.1 fvdl * documentation and/or other materials provided with the distribution.
18 1.1 fvdl *
19 1.1 fvdl * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 fvdl * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 fvdl * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 fvdl * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 fvdl * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 fvdl * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 fvdl * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 fvdl * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 fvdl * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 fvdl * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 fvdl * POSSIBILITY OF SUCH DAMAGE.
30 1.1 fvdl */
31 1.1 fvdl
32 1.1 fvdl #ifndef _X86_INTR_H_
33 1.1 fvdl #define _X86_INTR_H_
34 1.1 fvdl
35 1.51 cherry #if !defined(XEN)
36 1.29 ad #define __HAVE_FAST_SOFTINTS
37 1.33 ad #define __HAVE_PREEMPTION
38 1.51 cherry #endif /* !defined(XEN) */
39 1.29 ad
40 1.38 dyoung #ifdef _KERNEL
41 1.38 dyoung #include <sys/types.h>
42 1.38 dyoung #else
43 1.38 dyoung #include <stdbool.h>
44 1.38 dyoung #endif
45 1.38 dyoung
46 1.37 dyoung #include <sys/evcnt.h>
47 1.46 knakahar #include <sys/queue.h>
48 1.1 fvdl #include <machine/intrdefs.h>
49 1.1 fvdl
50 1.1 fvdl #ifndef _LOCORE
51 1.1 fvdl #include <machine/pic.h>
52 1.1 fvdl
53 1.1 fvdl /*
54 1.1 fvdl * Struct describing an interrupt source for a CPU. struct cpu_info
55 1.1 fvdl * has an array of MAX_INTR_SOURCES of these. The index in the array
56 1.1 fvdl * is equal to the stub number of the stubcode as present in vector.s
57 1.1 fvdl *
58 1.1 fvdl * The primary CPU's array of interrupt sources has its first 16
59 1.1 fvdl * entries reserved for legacy ISA irq handlers. This means that
60 1.1 fvdl * they have a 1:1 mapping for arrayindex:irq_num. This is not
61 1.1 fvdl * true for interrupts that come in through IO APICs, to find
62 1.1 fvdl * their source, go through ci->ci_isources[index].is_pic
63 1.1 fvdl *
64 1.1 fvdl * It's possible to always maintain a 1:1 mapping, but that means
65 1.1 fvdl * limiting the total number of interrupt sources to MAX_INTR_SOURCES
66 1.1 fvdl * (32), instead of 32 per CPU. It also would mean that having multiple
67 1.1 fvdl * IO APICs which deliver interrupts from an equal pin number would
68 1.1 fvdl * overlap if they were to be sent to the same CPU.
69 1.1 fvdl */
70 1.1 fvdl
71 1.1 fvdl struct intrstub {
72 1.51 cherry #if !defined(XEN)
73 1.1 fvdl void *ist_entry;
74 1.51 cherry #endif
75 1.49 msaitoh void *ist_recurse;
76 1.1 fvdl void *ist_resume;
77 1.1 fvdl };
78 1.1 fvdl
79 1.46 knakahar struct percpu_evcnt {
80 1.46 knakahar cpuid_t cpuid;
81 1.46 knakahar uint64_t count;
82 1.46 knakahar };
83 1.46 knakahar
84 1.1 fvdl struct intrsource {
85 1.1 fvdl int is_maxlevel; /* max. IPL for this source */
86 1.43 drochner int is_pin; /* IRQ for legacy; pin for IO APIC,
87 1.43 drochner -1 for MSI */
88 1.1 fvdl struct intrhand *is_handlers; /* handler chain */
89 1.1 fvdl struct pic *is_pic; /* originating PIC */
90 1.1 fvdl void *is_recurse; /* entry for spllower */
91 1.1 fvdl void *is_resume; /* entry for doreti */
92 1.29 ad lwp_t *is_lwp; /* for soft interrupts */
93 1.51 cherry #if defined(XEN)
94 1.51 cherry u_long ipl_evt_mask1; /* pending events for this IPL */
95 1.51 cherry u_long ipl_evt_mask2[NR_EVENT_CHANNELS];
96 1.51 cherry #endif
97 1.48 knakahar struct evcnt is_evcnt; /* interrupt counter per cpu */
98 1.1 fvdl int is_flags; /* see below */
99 1.1 fvdl int is_type; /* level, edge */
100 1.1 fvdl int is_idtvec;
101 1.1 fvdl int is_minlevel;
102 1.29 ad char is_evname[32]; /* event counter name */
103 1.46 knakahar char is_intrid[INTRIDBUF]; /* intrid created by create_intrid() */
104 1.48 knakahar char is_xname[INTRDEVNAMEBUF]; /* device names */
105 1.46 knakahar cpuid_t is_active_cpu; /* active cpuid */
106 1.46 knakahar struct percpu_evcnt *is_saved_evcnt; /* interrupt count of deactivated cpus */
107 1.46 knakahar SIMPLEQ_ENTRY(intrsource) is_list; /* link of intrsources */
108 1.1 fvdl };
109 1.1 fvdl
110 1.1 fvdl #define IS_LEGACY 0x0001 /* legacy ISA irq source */
111 1.1 fvdl #define IS_IPI 0x0002
112 1.1 fvdl #define IS_LOG 0x0004
113 1.1 fvdl
114 1.1 fvdl /*
115 1.1 fvdl * Interrupt handler chains. *_intr_establish() insert a handler into
116 1.1 fvdl * the list. The handler is called with its (single) argument.
117 1.1 fvdl */
118 1.1 fvdl
119 1.1 fvdl struct intrhand {
120 1.52 cherry #if defined(XEN)
121 1.52 cherry /*
122 1.52 cherry * Note: This is transitional and will go away.
123 1.52 cherry *
124 1.52 cherry * We ought to use a union here, but too much effort.
125 1.52 cherry * We use this field to tear down the cookie handed to us
126 1.52 cherry * via x86/intr.c:intr_disestablish();
127 1.52 cherry * Interestingly, the intr_establish_xname() function returns
128 1.52 cherry * a "void *" - so we abuse this for now.
129 1.52 cherry */
130 1.52 cherry int pic_type; /* Overloading wrt struct pintrhand */
131 1.52 cherry #endif
132 1.1 fvdl int (*ih_fun)(void *);
133 1.1 fvdl void *ih_arg;
134 1.1 fvdl int ih_level;
135 1.14 yamt int (*ih_realfun)(void *);
136 1.14 yamt void *ih_realarg;
137 1.1 fvdl struct intrhand *ih_next;
138 1.39 ad struct intrhand **ih_prevp;
139 1.1 fvdl int ih_pin;
140 1.1 fvdl int ih_slot;
141 1.52 cherry #if defined(XEN)
142 1.51 cherry struct intrhand *ih_evt_next;
143 1.51 cherry #endif
144 1.1 fvdl struct cpu_info *ih_cpu;
145 1.1 fvdl };
146 1.1 fvdl
147 1.1 fvdl #define IMASK(ci,level) (ci)->ci_imask[(level)]
148 1.1 fvdl #define IUNMASK(ci,level) (ci)->ci_iunmask[(level)]
149 1.1 fvdl
150 1.41 plunky #ifdef _KERNEL
151 1.41 plunky
152 1.26 yamt void Xspllower(int);
153 1.26 yamt void spllower(int);
154 1.26 yamt int splraise(int);
155 1.26 yamt void softintr(int);
156 1.1 fvdl
157 1.1 fvdl /*
158 1.1 fvdl * Convert spl level to local APIC level
159 1.1 fvdl */
160 1.26 yamt
161 1.1 fvdl #define APIC_LEVEL(l) ((l) << 4)
162 1.1 fvdl
163 1.1 fvdl /*
164 1.26 yamt * Miscellaneous
165 1.1 fvdl */
166 1.1 fvdl
167 1.1 fvdl #define SPL_ASSERT_BELOW(x) KDASSERT(curcpu()->ci_ilevel < (x))
168 1.1 fvdl #define spl0() spllower(IPL_NONE)
169 1.1 fvdl #define splx(x) spllower(x)
170 1.1 fvdl
171 1.23 ad typedef uint8_t ipl_t;
172 1.22 yamt typedef struct {
173 1.22 yamt ipl_t _ipl;
174 1.22 yamt } ipl_cookie_t;
175 1.22 yamt
176 1.22 yamt static inline ipl_cookie_t
177 1.22 yamt makeiplcookie(ipl_t ipl)
178 1.22 yamt {
179 1.22 yamt
180 1.22 yamt return (ipl_cookie_t){._ipl = ipl};
181 1.22 yamt }
182 1.22 yamt
183 1.22 yamt static inline int
184 1.22 yamt splraiseipl(ipl_cookie_t icookie)
185 1.22 yamt {
186 1.22 yamt
187 1.22 yamt return splraise(icookie._ipl);
188 1.22 yamt }
189 1.22 yamt
190 1.18 yamt #include <sys/spl.h>
191 1.18 yamt
192 1.1 fvdl /*
193 1.1 fvdl * Stub declarations.
194 1.1 fvdl */
195 1.1 fvdl
196 1.29 ad void Xsoftintr(void);
197 1.33 ad void Xpreemptrecurse(void);
198 1.33 ad void Xpreemptresume(void);
199 1.1 fvdl
200 1.1 fvdl extern struct intrstub i8259_stubs[];
201 1.2 fvdl extern struct intrstub ioapic_edge_stubs[];
202 1.2 fvdl extern struct intrstub ioapic_level_stubs[];
203 1.50 nonaka extern struct intrstub x2apic_edge_stubs[];
204 1.50 nonaka extern struct intrstub x2apic_level_stubs[];
205 1.1 fvdl
206 1.1 fvdl struct cpu_info;
207 1.1 fvdl
208 1.10 fvdl struct pcibus_attach_args;
209 1.10 fvdl
210 1.47 knakahar typedef uint64_t intr_handle_t;
211 1.47 knakahar
212 1.1 fvdl void intr_default_setup(void);
213 1.42 dyoung void x86_nmi(void);
214 1.48 knakahar void *intr_establish_xname(int, struct pic *, int, int, int, int (*)(void *),
215 1.48 knakahar void *, bool, const char *);
216 1.35 ad void *intr_establish(int, struct pic *, int, int, int, int (*)(void *), void *, bool);
217 1.1 fvdl void intr_disestablish(struct intrhand *);
218 1.10 fvdl void intr_add_pcibus(struct pcibus_attach_args *);
219 1.47 knakahar const char *intr_string(intr_handle_t, char *, size_t);
220 1.1 fvdl void cpu_intr_init(struct cpu_info *);
221 1.47 knakahar int intr_find_mpmapping(int, int, intr_handle_t *);
222 1.21 christos struct pic *intr_findpic(int);
223 1.1 fvdl void intr_printconfig(void);
224 1.1 fvdl
225 1.46 knakahar struct intrsource *intr_allocate_io_intrsource(const char *);
226 1.46 knakahar void intr_free_io_intrsource(const char *);
227 1.46 knakahar
228 1.1 fvdl int x86_send_ipi(struct cpu_info *, int);
229 1.1 fvdl void x86_broadcast_ipi(int);
230 1.1 fvdl void x86_ipi_handler(void);
231 1.1 fvdl
232 1.51 cherry #ifndef XEN
233 1.45 uebayasi extern void (* const ipifunc[X86_NIPI])(struct cpu_info *);
234 1.51 cherry #endif
235 1.1 fvdl
236 1.41 plunky #endif /* _KERNEL */
237 1.41 plunky
238 1.1 fvdl #endif /* !_LOCORE */
239 1.1 fvdl
240 1.1 fvdl #endif /* !_X86_INTR_H_ */
241