1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
3 *
4 * Copyright (c) 2003 John Baldwin <jhb@FreeBSD.org>
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 */
27
28 #ifndef _X86_APICVAR_H_
29 #define _X86_APICVAR_H_
30
31 /*
32 * Local && I/O APIC variable definitions.
33 */
34
35 /*
36 * Layout of local APIC interrupt vectors:
37 *
38 * 0xff (255) +-------------+
39 * | | 15 (Spurious / IPIs / Local Interrupts)
40 * 0xf0 (240) +-------------+
41 * | | 14 (I/O Interrupts / Timer)
42 * 0xe0 (224) +-------------+
43 * | | 13 (I/O Interrupts)
44 * 0xd0 (208) +-------------+
45 * | | 12 (I/O Interrupts)
46 * 0xc0 (192) +-------------+
47 * | | 11 (I/O Interrupts)
48 * 0xb0 (176) +-------------+
49 * | | 10 (I/O Interrupts)
50 * 0xa0 (160) +-------------+
51 * | | 9 (I/O Interrupts)
52 * 0x90 (144) +-------------+
53 * | | 8 (I/O Interrupts / System Calls)
54 * 0x80 (128) +-------------+
55 * | | 7 (I/O Interrupts)
56 * 0x70 (112) +-------------+
57 * | | 6 (I/O Interrupts)
58 * 0x60 (96) +-------------+
59 * | | 5 (I/O Interrupts)
60 * 0x50 (80) +-------------+
61 * | | 4 (I/O Interrupts)
62 * 0x40 (64) +-------------+
63 * | | 3 (I/O Interrupts)
64 * 0x30 (48) +-------------+
65 * | | 2 (ATPIC Interrupts)
66 * 0x20 (32) +-------------+
67 * | | 1 (Exceptions, traps, faults, etc.)
68 * 0x10 (16) +-------------+
69 * | | 0 (Exceptions, traps, faults, etc.)
70 * 0x00 (0) +-------------+
71 *
72 * Note: 0x80 needs to be handled specially and not allocated to an
73 * I/O device!
74 */
75
76 #define xAPIC_MAX_APIC_ID 0xfe
77 #define xAPIC_ID_ALL 0xff
78 #define MAX_APIC_ID 0x800
79 #define APIC_ID_ALL 0xffffffff
80
81 /*
82 * The 0xff ID is used for broadcast IPIs for local APICs when not using
83 * x2APIC. IPIs are not sent to I/O APICs so it's acceptable for an I/O APIC
84 * to use that ID.
85 */
86 #define IOAPIC_MAX_ID 0xff
87 #define IOAPIC_MAX_EXT_ID 0x7fff
88
89 /* I/O Interrupts are used for external devices such as ISA, PCI, etc. */
90 #define APIC_IO_INTS (IDT_IO_INTS + 16)
91 #define APIC_NUM_IOINTS 191
92
93 /* The timer interrupt is used for clock handling and drives hardclock, etc. */
94 #define APIC_TIMER_INT (APIC_IO_INTS + APIC_NUM_IOINTS)
95
96 /*
97 ********************* !!! WARNING !!! ******************************
98 * Each local apic has an interrupt receive fifo that is two entries deep
99 * for each interrupt priority class (higher 4 bits of interrupt vector).
100 * Once the fifo is full the APIC can no longer receive interrupts for this
101 * class and sending IPIs from other CPUs will be blocked.
102 * To avoid deadlocks there should be no more than two IPI interrupts
103 * pending at the same time.
104 * Currently this is guaranteed by dividing the IPIs in two groups that have
105 * each at most one IPI interrupt pending. The first group is protected by the
106 * smp_ipi_mtx and waits for the completion of the IPI (Only one IPI user
107 * at a time) The second group uses a single interrupt and a bitmap to avoid
108 * redundant IPI interrupts.
109 */
110
111 /* Interrupts for local APIC LVT entries other than the timer. */
112 #define APIC_LOCAL_INTS 240
113 #define APIC_ERROR_INT APIC_LOCAL_INTS
114 #define APIC_THERMAL_INT (APIC_LOCAL_INTS + 1)
115 #define APIC_CMC_INT (APIC_LOCAL_INTS + 2)
116 #define APIC_IPI_INTS (APIC_LOCAL_INTS + 3)
117
118 #define IPI_RENDEZVOUS (APIC_IPI_INTS) /* Inter-CPU rendezvous. */
119 #define IPI_INVLOP (APIC_IPI_INTS + 1) /* TLB Shootdown IPIs, amd64 */
120 #define IPI_INVLTLB (APIC_IPI_INTS + 1) /* TLB Shootdown IPIs, i386 */
121 #define IPI_INVLPG (APIC_IPI_INTS + 2)
122 #define IPI_INVLRNG (APIC_IPI_INTS + 3)
123 #define IPI_INVLCACHE (APIC_IPI_INTS + 4)
124 /* Vector to handle bitmap based IPIs */
125 #define IPI_BITMAP_VECTOR (APIC_IPI_INTS + 5)
126
127 /* IPIs handled by IPI_BITMAP_VECTOR */
128 #define IPI_AST 0 /* Generate software trap. */
129 #define IPI_PREEMPT 1
130 #define IPI_HARDCLOCK 2
131 #define IPI_TRACE 3 /* Collect stack trace. */
132 #define IPI_BITMAP_LAST IPI_TRACE
133 #define IPI_IS_BITMAPED(x) ((x) <= IPI_BITMAP_LAST)
134
135 #define IPI_STOP (APIC_IPI_INTS + 6) /* Stop CPU until restarted. */
136 #define IPI_SUSPEND (APIC_IPI_INTS + 7) /* Suspend CPU until restarted. */
137 #define IPI_SWI (APIC_IPI_INTS + 8) /* Run clk_intr_event. */
138 #define IPI_OFF (APIC_IPI_INTS + 9) /* Stop CPU forever */
139 #define IPI_DYN_FIRST (APIC_IPI_INTS + 10)
140 #define IPI_DYN_LAST (254) /* IPIs allocated at runtime */
141
142 /*
143 * IPI_STOP_HARD does not need to occupy a slot in the IPI vector space since
144 * it is delivered using an NMI anyways.
145 */
146 #define IPI_NMI_FIRST 255
147 #define IPI_STOP_HARD 255 /* Stop CPU with a NMI. */
148
149 /*
150 * The spurious interrupt can share the priority class with the IPIs since
151 * it is not a normal interrupt. (Does not use the APIC's interrupt fifo)
152 */
153 #define APIC_SPURIOUS_INT 255
154
155 #ifndef LOCORE
156
157 #define APIC_IPI_DEST_SELF -1
158 #define APIC_IPI_DEST_ALL -2
159 #define APIC_IPI_DEST_OTHERS -3
160
161 #define APIC_BUS_UNKNOWN -1
162 #define APIC_BUS_ISA 0
163 #define APIC_BUS_EISA 1
164 #define APIC_BUS_PCI 2
165 #define APIC_BUS_MAX APIC_BUS_PCI
166
167 #define IRQ_EXTINT -1
168 #define IRQ_NMI -2
169 #define IRQ_SMI -3
170 #define IRQ_DISABLED -4
171
172 /*
173 * An APIC enumerator is a pseudo bus driver that enumerates APIC's including
174 * CPU's and I/O APIC's.
175 */
176 struct apic_enumerator {
177 const char *apic_name;
178 int (*apic_probe)(void);
179 int (*apic_probe_cpus)(void);
180 int (*apic_setup_local)(void);
181 int (*apic_setup_io)(void);
182 SLIST_ENTRY(apic_enumerator) apic_next;
183 };
184
185 inthand_t
186 IDTVEC(apic_isr1), IDTVEC(apic_isr2), IDTVEC(apic_isr3),
187 IDTVEC(apic_isr4), IDTVEC(apic_isr5), IDTVEC(apic_isr6),
188 IDTVEC(apic_isr7), IDTVEC(cmcint), IDTVEC(errorint),
189 IDTVEC(spuriousint), IDTVEC(timerint),
190 IDTVEC(apic_isr1_pti), IDTVEC(apic_isr2_pti), IDTVEC(apic_isr3_pti),
191 IDTVEC(apic_isr4_pti), IDTVEC(apic_isr5_pti), IDTVEC(apic_isr6_pti),
192 IDTVEC(apic_isr7_pti), IDTVEC(cmcint_pti), IDTVEC(errorint_pti),
193 IDTVEC(spuriousint_pti), IDTVEC(timerint_pti);
194
195 extern vm_paddr_t lapic_paddr;
196 extern int *apic_cpuids;
197
198 /* Allow to replace the lapic_ipi_vectored implementation. */
199 extern void (*ipi_vectored)(u_int, int);
200
201 typedef struct ioapic *ioapic_drv_t;
202
203 void apic_register_enumerator(struct apic_enumerator *enumerator);
204 ioapic_drv_t ioapic_create(vm_paddr_t addr, int32_t apic_id, int intbase);
205 int ioapic_disable_pin(ioapic_drv_t cookie, u_int pin);
206 int ioapic_get_vector(ioapic_drv_t cookie, u_int pin);
207 void ioapic_register(ioapic_drv_t cookie);
208 int ioapic_remap_vector(ioapic_drv_t cookie, u_int pin, int vector);
209 int ioapic_set_bus(ioapic_drv_t cookie, u_int pin, int bus_type);
210 int ioapic_set_extint(ioapic_drv_t cookie, u_int pin);
211 int ioapic_set_nmi(ioapic_drv_t cookie, u_int pin);
212 int ioapic_set_polarity(ioapic_drv_t cookie, u_int pin, enum intr_polarity pol);
213 int ioapic_set_triggermode(ioapic_drv_t cookie, u_int pin,
214 enum intr_trigger trigger);
215 int ioapic_set_smi(ioapic_drv_t cookie, u_int pin);
216
217 void lapic_create(u_int apic_id, int boot_cpu);
218 void lapic_init(vm_paddr_t addr);
219 void lapic_xapic_mode(void);
220 bool lapic_is_x2apic(void);
221 void lapic_setup(int boot);
222 void lapic_dump(const char *str);
223 void lapic_disable(void);
224 void lapic_eoi(void);
225 int lapic_id(void);
226 int lapic_intr_pending(u_int vector);
227 /* XXX: UNUSED */
228 void lapic_set_logical_id(u_int apic_id, u_int cluster, u_int cluster_id);
229 u_int apic_cpuid(u_int apic_id);
230 u_int apic_alloc_vector(u_int apic_id, u_int irq);
231 u_int apic_alloc_vectors(u_int apic_id, u_int *irqs, u_int count, u_int align);
232 void apic_enable_vector(u_int apic_id, u_int vector);
233 void apic_disable_vector(u_int apic_id, u_int vector);
234 void apic_free_vector(u_int apic_id, u_int vector, u_int irq);
235 void lapic_calibrate_timer(void);
236 int lapic_enable_pcint(void);
237 void lapic_disable_pcint(void);
238 void lapic_reenable_pcint(void);
239 void lapic_enable_cmc(void);
240 int lapic_enable_mca_elvt(void);
241 void lapic_ipi_raw(register_t icrlo, u_int dest);
242
243 static inline void
lapic_ipi_vectored(u_int vector,int dest)244 lapic_ipi_vectored(u_int vector, int dest)
245 {
246
247 ipi_vectored(vector, dest);
248 }
249
250 int lapic_ipi_wait(int delay);
251 int lapic_ipi_alloc(inthand_t *ipifunc);
252 void lapic_ipi_free(int vector);
253 int lapic_set_lvt_mask(u_int apic_id, u_int lvt, u_char masked);
254 int lapic_set_lvt_mode(u_int apic_id, u_int lvt, u_int32_t mode);
255 int lapic_set_lvt_polarity(u_int apic_id, u_int lvt,
256 enum intr_polarity pol);
257 int lapic_set_lvt_triggermode(u_int apic_id, u_int lvt,
258 enum intr_trigger trigger);
259 void lapic_handle_cmc(void);
260 void lapic_handle_error(void);
261 void lapic_handle_intr(int vector, struct trapframe *frame);
262 void lapic_handle_timer(struct trapframe *frame);
263
264 int ioapic_get_rid(u_int apic_id, uint16_t *ridp);
265 device_t ioapic_get_dev(u_int apic_id);
266
267 extern int x2apic_mode;
268 extern int lapic_eoi_suppression;
269 extern int apic_ext_dest_id;
270
271 #ifdef _SYS_SYSCTL_H_
272 SYSCTL_DECL(_hw_apic);
273 #endif
274
275 #endif /* !LOCORE */
276 #endif /* _X86_APICVAR_H_ */
277