Rev 2131 | Rev 2292 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2131 | Rev 2265 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | /* |
1 | /* |
| 2 | * Copyright (c) 2001-2004 Jakub Jermar |
2 | * Copyright (c) 2001-2004 Jakub Jermar |
| 3 | * All rights reserved. |
3 | * All rights reserved. |
| 4 | * |
4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
7 | * are met: |
| 8 | * |
8 | * |
| 9 | * - Redistributions of source code must retain the above copyright |
9 | * - Redistributions of source code must retain the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer. |
10 | * notice, this list of conditions and the following disclaimer. |
| 11 | * - Redistributions in binary form must reproduce the above copyright |
11 | * - Redistributions in binary form must reproduce the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer in the |
12 | * notice, this list of conditions and the following disclaimer in the |
| 13 | * documentation and/or other materials provided with the distribution. |
13 | * documentation and/or other materials provided with the distribution. |
| 14 | * - The name of the author may not be used to endorse or promote products |
14 | * - The name of the author may not be used to endorse or promote products |
| 15 | * derived from this software without specific prior written permission. |
15 | * derived from this software without specific prior written permission. |
| 16 | * |
16 | * |
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| 29 | /** @addtogroup ia32 |
29 | /** @addtogroup ia32 |
| 30 | * @{ |
30 | * @{ |
| 31 | */ |
31 | */ |
| 32 | /** @file |
32 | /** @file |
| 33 | */ |
33 | */ |
| 34 | 34 | ||
| 35 | #include <arch/types.h> |
35 | #include <arch/types.h> |
| 36 | #include <arch/smp/apic.h> |
36 | #include <arch/smp/apic.h> |
| 37 | #include <arch/smp/ap.h> |
37 | #include <arch/smp/ap.h> |
| 38 | #include <arch/smp/mps.h> |
38 | #include <arch/smp/mps.h> |
| 39 | #include <arch/boot/boot.h> |
39 | #include <arch/boot/boot.h> |
| 40 | #include <mm/page.h> |
40 | #include <mm/page.h> |
| 41 | #include <time/delay.h> |
41 | #include <time/delay.h> |
| 42 | #include <interrupt.h> |
42 | #include <interrupt.h> |
| 43 | #include <arch/interrupt.h> |
43 | #include <arch/interrupt.h> |
| 44 | #include <print.h> |
44 | #include <print.h> |
| 45 | #include <arch/asm.h> |
45 | #include <arch/asm.h> |
| 46 | #include <arch.h> |
46 | #include <arch.h> |
| 47 | #include <ddi/irq.h> |
47 | #include <ddi/irq.h> |
| 48 | #include <ddi/device.h> |
48 | #include <ddi/device.h> |
| 49 | 49 | ||
| 50 | #ifdef CONFIG_SMP |
50 | #ifdef CONFIG_SMP |
| 51 | 51 | ||
| 52 | /* |
52 | /* |
| 53 | * Advanced Programmable Interrupt Controller for SMP systems. |
53 | * Advanced Programmable Interrupt Controller for SMP systems. |
| 54 | * Tested on: |
54 | * Tested on: |
| 55 | * Bochs 2.0.2 - Bochs 2.2.6 with 2-8 CPUs |
55 | * Bochs 2.0.2 - Bochs 2.2.6 with 2-8 CPUs |
| 56 | * Simics 2.0.28 - Simics 2.2.19 2-15 CPUs |
56 | * Simics 2.0.28 - Simics 2.2.19 2-15 CPUs |
| 57 | * VMware Workstation 5.5 with 2 CPUs |
57 | * VMware Workstation 5.5 with 2 CPUs |
| 58 | * QEMU 0.8.0 with 2-15 CPUs |
58 | * QEMU 0.8.0 with 2-15 CPUs |
| 59 | * ASUS P/I-P65UP5 + ASUS C-P55T2D REV. 1.41 with 2x 200Mhz Pentium CPUs |
59 | * ASUS P/I-P65UP5 + ASUS C-P55T2D REV. 1.41 with 2x 200Mhz Pentium CPUs |
| 60 | * ASUS PCH-DL with 2x 3000Mhz Pentium 4 Xeon (HT) CPUs |
60 | * ASUS PCH-DL with 2x 3000Mhz Pentium 4 Xeon (HT) CPUs |
| 61 | * MSI K7D Master-L with 2x 2100MHz Athlon MP CPUs |
61 | * MSI K7D Master-L with 2x 2100MHz Athlon MP CPUs |
| 62 | */ |
62 | */ |
| 63 | 63 | ||
| 64 | /* |
64 | /* |
| 65 | * These variables either stay configured as initilalized, or are changed by |
65 | * These variables either stay configured as initilalized, or are changed by |
| 66 | * the MP configuration code. |
66 | * the MP configuration code. |
| 67 | * |
67 | * |
| 68 | * Pay special attention to the volatile keyword. Without it, gcc -O2 would |
68 | * Pay special attention to the volatile keyword. Without it, gcc -O2 would |
| 69 | * optimize the code too much and accesses to l_apic and io_apic, that must |
69 | * optimize the code too much and accesses to l_apic and io_apic, that must |
| 70 | * always be 32-bit, would use byte oriented instructions. |
70 | * always be 32-bit, would use byte oriented instructions. |
| 71 | */ |
71 | */ |
| 72 | volatile uint32_t *l_apic = (uint32_t *) 0xfee00000; |
72 | volatile uint32_t *l_apic = (uint32_t *) 0xfee00000; |
| 73 | volatile uint32_t *io_apic = (uint32_t *) 0xfec00000; |
73 | volatile uint32_t *io_apic = (uint32_t *) 0xfec00000; |
| 74 | 74 | ||
| 75 | uint32_t apic_id_mask = 0; |
75 | uint32_t apic_id_mask = 0; |
| 76 | static irq_t l_apic_timer_irq; |
76 | static irq_t l_apic_timer_irq; |
| 77 | 77 | ||
| 78 | static int apic_poll_errors(void); |
78 | static int apic_poll_errors(void); |
| 79 | 79 | ||
| 80 | #ifdef LAPIC_VERBOSE |
80 | #ifdef LAPIC_VERBOSE |
| 81 | static char *delmod_str[] = { |
81 | static char *delmod_str[] = { |
| 82 | "Fixed", |
82 | "Fixed", |
| 83 | "Lowest Priority", |
83 | "Lowest Priority", |
| 84 | "SMI", |
84 | "SMI", |
| 85 | "Reserved", |
85 | "Reserved", |
| 86 | "NMI", |
86 | "NMI", |
| 87 | "INIT", |
87 | "INIT", |
| 88 | "STARTUP", |
88 | "STARTUP", |
| 89 | "ExtInt" |
89 | "ExtInt" |
| 90 | }; |
90 | }; |
| 91 | 91 | ||
| 92 | static char *destmod_str[] = { |
92 | static char *destmod_str[] = { |
| 93 | "Physical", |
93 | "Physical", |
| 94 | "Logical" |
94 | "Logical" |
| 95 | }; |
95 | }; |
| 96 | 96 | ||
| 97 | static char *trigmod_str[] = { |
97 | static char *trigmod_str[] = { |
| 98 | "Edge", |
98 | "Edge", |
| 99 | "Level" |
99 | "Level" |
| 100 | }; |
100 | }; |
| 101 | 101 | ||
| 102 | static char *mask_str[] = { |
102 | static char *mask_str[] = { |
| 103 | "Unmasked", |
103 | "Unmasked", |
| 104 | "Masked" |
104 | "Masked" |
| 105 | }; |
105 | }; |
| 106 | 106 | ||
| 107 | static char *delivs_str[] = { |
107 | static char *delivs_str[] = { |
| 108 | "Idle", |
108 | "Idle", |
| 109 | "Send Pending" |
109 | "Send Pending" |
| 110 | }; |
110 | }; |
| 111 | 111 | ||
| 112 | static char *tm_mode_str[] = { |
112 | static char *tm_mode_str[] = { |
| 113 | "One-shot", |
113 | "One-shot", |
| 114 | "Periodic" |
114 | "Periodic" |
| 115 | }; |
115 | }; |
| 116 | 116 | ||
| 117 | static char *intpol_str[] = { |
117 | static char *intpol_str[] = { |
| 118 | "Polarity High", |
118 | "Polarity High", |
| 119 | "Polarity Low" |
119 | "Polarity Low" |
| 120 | }; |
120 | }; |
| 121 | #endif /* LAPIC_VERBOSE */ |
121 | #endif /* LAPIC_VERBOSE */ |
| 122 | 122 | ||
| 123 | /** APIC spurious interrupt handler. |
123 | /** APIC spurious interrupt handler. |
| 124 | * |
124 | * |
| 125 | * @param n Interrupt vector. |
125 | * @param n Interrupt vector. |
| 126 | * @param istate Interrupted state. |
126 | * @param istate Interrupted state. |
| 127 | */ |
127 | */ |
| 128 | static void apic_spurious(int n, istate_t *istate) |
128 | static void apic_spurious(int n, istate_t *istate) |
| 129 | { |
129 | { |
| 130 | #ifdef CONFIG_DEBUG |
130 | #ifdef CONFIG_DEBUG |
| 131 | printf("cpu%d: APIC spurious interrupt\n", CPU->id); |
131 | printf("cpu%d: APIC spurious interrupt\n", CPU->id); |
| 132 | #endif |
132 | #endif |
| 133 | } |
133 | } |
| 134 | 134 | ||
| 135 | static irq_ownership_t l_apic_timer_claim(void) |
135 | static irq_ownership_t l_apic_timer_claim(void) |
| 136 | { |
136 | { |
| 137 | return IRQ_ACCEPT; |
137 | return IRQ_ACCEPT; |
| 138 | } |
138 | } |
| 139 | 139 | ||
| 140 | static void l_apic_timer_irq_handler(irq_t *irq, void *arg, ...) |
140 | static void l_apic_timer_irq_handler(irq_t *irq, void *arg, ...) |
| 141 | { |
141 | { |
| 142 | clock(); |
142 | /* |
| 143 | } |
143 | * Holding a spinlock could prevent clock() from preempting |
| 144 | 144 | * the current thread. In this case, we don't need to hold the |
|
| 145 | /** Initialize APIC on BSP. */ |
145 | * irq->lock so we just unlock it and then lock it again. |
| 146 | void apic_init(void) |
146 | */ |
| 147 | { |
147 | spinlock_unlock(&irq->lock); |
| 148 | io_apic_id_t idreg; |
148 | clock(); |
| 149 | unsigned int i; |
149 | spinlock_lock(&irq->lock); |
| 150 | 150 | } |
|
| 151 | exc_register(VECTOR_APIC_SPUR, "apic_spurious", (iroutine) apic_spurious); |
151 | |
| 152 | 152 | /** Initialize APIC on BSP. */ |
|
| 153 | enable_irqs_function = io_apic_enable_irqs; |
153 | void apic_init(void) |
| 154 | disable_irqs_function = io_apic_disable_irqs; |
154 | { |
| 155 | eoi_function = l_apic_eoi; |
155 | io_apic_id_t idreg; |
| 156 | 156 | unsigned int i; |
|
| 157 | /* |
157 | |
| 158 | * Configure interrupt routing. |
158 | exc_register(VECTOR_APIC_SPUR, "apic_spurious", (iroutine) apic_spurious); |
| 159 | * IRQ 0 remains masked as the time signal is generated by l_apic's themselves. |
159 | |
| 160 | * Other interrupts will be forwarded to the lowest priority CPU. |
160 | enable_irqs_function = io_apic_enable_irqs; |
| 161 | */ |
161 | disable_irqs_function = io_apic_disable_irqs; |
| 162 | io_apic_disable_irqs(0xffff); |
162 | eoi_function = l_apic_eoi; |
| 163 | 163 | ||
| 164 | irq_initialize(&l_apic_timer_irq); |
164 | /* |
| 165 | l_apic_timer_irq.devno = device_assign_devno(); |
165 | * Configure interrupt routing. |
| 166 | l_apic_timer_irq.inr = IRQ_CLK; |
166 | * IRQ 0 remains masked as the time signal is generated by l_apic's themselves. |
| 167 | l_apic_timer_irq.claim = l_apic_timer_claim; |
167 | * Other interrupts will be forwarded to the lowest priority CPU. |
| 168 | l_apic_timer_irq.handler = l_apic_timer_irq_handler; |
168 | */ |
| 169 | irq_register(&l_apic_timer_irq); |
169 | io_apic_disable_irqs(0xffff); |
| 170 | 170 | ||
| 171 | for (i = 0; i < IRQ_COUNT; i++) { |
171 | irq_initialize(&l_apic_timer_irq); |
| 172 | int pin; |
172 | l_apic_timer_irq.preack = true; |
| 173 | 173 | l_apic_timer_irq.devno = device_assign_devno(); |
|
| 174 | if ((pin = smp_irq_to_pin(i)) != -1) |
174 | l_apic_timer_irq.inr = IRQ_CLK; |
| 175 | io_apic_change_ioredtbl(pin, DEST_ALL, IVT_IRQBASE + i, LOPRI); |
175 | l_apic_timer_irq.claim = l_apic_timer_claim; |
| 176 | } |
176 | l_apic_timer_irq.handler = l_apic_timer_irq_handler; |
| 177 | 177 | irq_register(&l_apic_timer_irq); |
|
| 178 | /* |
178 | |
| 179 | * Ensure that io_apic has unique ID. |
179 | for (i = 0; i < IRQ_COUNT; i++) { |
| 180 | */ |
180 | int pin; |
| 181 | idreg.value = io_apic_read(IOAPICID); |
181 | |
| 182 | if ((1 << idreg.apic_id) & apic_id_mask) { /* see if IO APIC ID is used already */ |
182 | if ((pin = smp_irq_to_pin(i)) != -1) |
| 183 | for (i = 0; i < APIC_ID_COUNT; i++) { |
183 | io_apic_change_ioredtbl(pin, DEST_ALL, IVT_IRQBASE + i, LOPRI); |
| 184 | if (!((1 << i) & apic_id_mask)) { |
184 | } |
| 185 | idreg.apic_id = i; |
185 | |
| 186 | io_apic_write(IOAPICID, idreg.value); |
186 | /* |
| 187 | break; |
187 | * Ensure that io_apic has unique ID. |
| 188 | } |
188 | */ |
| 189 | } |
189 | idreg.value = io_apic_read(IOAPICID); |
| 190 | } |
190 | if ((1 << idreg.apic_id) & apic_id_mask) { /* see if IO APIC ID is used already */ |
| 191 | 191 | for (i = 0; i < APIC_ID_COUNT; i++) { |
|
| 192 | /* |
192 | if (!((1 << i) & apic_id_mask)) { |
| 193 | * Configure the BSP's lapic. |
193 | idreg.apic_id = i; |
| 194 | */ |
194 | io_apic_write(IOAPICID, idreg.value); |
| 195 | l_apic_init(); |
195 | break; |
| 196 | 196 | } |
|
| 197 | l_apic_debug(); |
197 | } |
| 198 | } |
198 | } |
| 199 | 199 | ||
| 200 | /** Poll for APIC errors. |
200 | /* |
| 201 | * |
201 | * Configure the BSP's lapic. |
| 202 | * Examine Error Status Register and report all errors found. |
202 | */ |
| 203 | * |
203 | l_apic_init(); |
| 204 | * @return 0 on error, 1 on success. |
204 | |
| 205 | */ |
205 | l_apic_debug(); |
| 206 | int apic_poll_errors(void) |
206 | } |
| 207 | { |
207 | |
| 208 | esr_t esr; |
208 | /** Poll for APIC errors. |
| 209 | 209 | * |
|
| 210 | esr.value = l_apic[ESR]; |
210 | * Examine Error Status Register and report all errors found. |
| 211 | 211 | * |
|
| 212 | if (esr.send_checksum_error) |
212 | * @return 0 on error, 1 on success. |
| 213 | printf("Send Checksum Error\n"); |
213 | */ |
| 214 | if (esr.receive_checksum_error) |
214 | int apic_poll_errors(void) |
| 215 | printf("Receive Checksum Error\n"); |
215 | { |
| 216 | if (esr.send_accept_error) |
216 | esr_t esr; |
| 217 | printf("Send Accept Error\n"); |
217 | |
| 218 | if (esr.receive_accept_error) |
218 | esr.value = l_apic[ESR]; |
| 219 | printf("Receive Accept Error\n"); |
219 | |
| 220 | if (esr.send_illegal_vector) |
220 | if (esr.send_checksum_error) |
| 221 | printf("Send Illegal Vector\n"); |
221 | printf("Send Checksum Error\n"); |
| 222 | if (esr.received_illegal_vector) |
222 | if (esr.receive_checksum_error) |
| 223 | printf("Received Illegal Vector\n"); |
223 | printf("Receive Checksum Error\n"); |
| 224 | if (esr.illegal_register_address) |
224 | if (esr.send_accept_error) |
| 225 | printf("Illegal Register Address\n"); |
225 | printf("Send Accept Error\n"); |
| 226 | 226 | if (esr.receive_accept_error) |
|
| 227 | return !esr.err_bitmap; |
227 | printf("Receive Accept Error\n"); |
| 228 | } |
228 | if (esr.send_illegal_vector) |
| 229 | 229 | printf("Send Illegal Vector\n"); |
|
| 230 | /** Send all CPUs excluding CPU IPI vector. |
230 | if (esr.received_illegal_vector) |
| 231 | * |
231 | printf("Received Illegal Vector\n"); |
| 232 | * @param vector Interrupt vector to be sent. |
232 | if (esr.illegal_register_address) |
| 233 | * |
233 | printf("Illegal Register Address\n"); |
| 234 | * @return 0 on failure, 1 on success. |
234 | |
| 235 | */ |
235 | return !esr.err_bitmap; |
| 236 | int l_apic_broadcast_custom_ipi(uint8_t vector) |
236 | } |
| 237 | { |
237 | |
| 238 | icr_t icr; |
238 | /** Send all CPUs excluding CPU IPI vector. |
| 239 | 239 | * |
|
| 240 | icr.lo = l_apic[ICRlo]; |
240 | * @param vector Interrupt vector to be sent. |
| 241 | icr.delmod = DELMOD_FIXED; |
241 | * |
| 242 | icr.destmod = DESTMOD_LOGIC; |
242 | * @return 0 on failure, 1 on success. |
| 243 | icr.level = LEVEL_ASSERT; |
243 | */ |
| 244 | icr.shorthand = SHORTHAND_ALL_EXCL; |
244 | int l_apic_broadcast_custom_ipi(uint8_t vector) |
| 245 | icr.trigger_mode = TRIGMOD_LEVEL; |
245 | { |
| 246 | icr.vector = vector; |
246 | icr_t icr; |
| 247 | 247 | ||
| 248 | l_apic[ICRlo] = icr.lo; |
248 | icr.lo = l_apic[ICRlo]; |
| 249 | 249 | icr.delmod = DELMOD_FIXED; |
|
| 250 | icr.lo = l_apic[ICRlo]; |
250 | icr.destmod = DESTMOD_LOGIC; |
| 251 | if (icr.delivs == DELIVS_PENDING) { |
251 | icr.level = LEVEL_ASSERT; |
| 252 | #ifdef CONFIG_DEBUG |
252 | icr.shorthand = SHORTHAND_ALL_EXCL; |
| 253 | printf("IPI is pending.\n"); |
253 | icr.trigger_mode = TRIGMOD_LEVEL; |
| 254 | #endif |
254 | icr.vector = vector; |
| 255 | } |
255 | |
| 256 | 256 | l_apic[ICRlo] = icr.lo; |
|
| 257 | return apic_poll_errors(); |
257 | |
| 258 | } |
258 | icr.lo = l_apic[ICRlo]; |
| 259 | 259 | if (icr.delivs == DELIVS_PENDING) { |
|
| 260 | /** Universal Start-up Algorithm for bringing up the AP processors. |
260 | #ifdef CONFIG_DEBUG |
| 261 | * |
261 | printf("IPI is pending.\n"); |
| 262 | * @param apicid APIC ID of the processor to be brought up. |
262 | #endif |
| 263 | * |
263 | } |
| 264 | * @return 0 on failure, 1 on success. |
264 | |
| 265 | */ |
265 | return apic_poll_errors(); |
| 266 | int l_apic_send_init_ipi(uint8_t apicid) |
266 | } |
| 267 | { |
267 | |
| 268 | icr_t icr; |
268 | /** Universal Start-up Algorithm for bringing up the AP processors. |
| 269 | int i; |
269 | * |
| 270 | 270 | * @param apicid APIC ID of the processor to be brought up. |
|
| 271 | /* |
271 | * |
| 272 | * Read the ICR register in and zero all non-reserved fields. |
272 | * @return 0 on failure, 1 on success. |
| 273 | */ |
273 | */ |
| 274 | icr.lo = l_apic[ICRlo]; |
274 | int l_apic_send_init_ipi(uint8_t apicid) |
| 275 | icr.hi = l_apic[ICRhi]; |
275 | { |
| 276 | 276 | icr_t icr; |
|
| 277 | icr.delmod = DELMOD_INIT; |
277 | int i; |
| 278 | icr.destmod = DESTMOD_PHYS; |
278 | |
| 279 | icr.level = LEVEL_ASSERT; |
279 | /* |
| 280 | icr.trigger_mode = TRIGMOD_LEVEL; |
280 | * Read the ICR register in and zero all non-reserved fields. |
| 281 | icr.shorthand = SHORTHAND_NONE; |
281 | */ |
| 282 | icr.vector = 0; |
282 | icr.lo = l_apic[ICRlo]; |
| 283 | icr.dest = apicid; |
283 | icr.hi = l_apic[ICRhi]; |
| 284 | 284 | ||
| 285 | l_apic[ICRhi] = icr.hi; |
285 | icr.delmod = DELMOD_INIT; |
| 286 | l_apic[ICRlo] = icr.lo; |
286 | icr.destmod = DESTMOD_PHYS; |
| 287 | 287 | icr.level = LEVEL_ASSERT; |
|
| 288 | /* |
288 | icr.trigger_mode = TRIGMOD_LEVEL; |
| 289 | * According to MP Specification, 20us should be enough to |
289 | icr.shorthand = SHORTHAND_NONE; |
| 290 | * deliver the IPI. |
290 | icr.vector = 0; |
| 291 | */ |
291 | icr.dest = apicid; |
| 292 | delay(20); |
292 | |
| 293 | 293 | l_apic[ICRhi] = icr.hi; |
|
| 294 | if (!apic_poll_errors()) |
294 | l_apic[ICRlo] = icr.lo; |
| 295 | return 0; |
295 | |
| 296 | 296 | /* |
|
| 297 | icr.lo = l_apic[ICRlo]; |
297 | * According to MP Specification, 20us should be enough to |
| 298 | if (icr.delivs == DELIVS_PENDING) { |
298 | * deliver the IPI. |
| 299 | #ifdef CONFIG_DEBUG |
299 | */ |
| 300 | printf("IPI is pending.\n"); |
300 | delay(20); |
| 301 | #endif |
301 | |
| 302 | } |
302 | if (!apic_poll_errors()) |
| 303 | 303 | return 0; |
|
| 304 | icr.delmod = DELMOD_INIT; |
304 | |
| 305 | icr.destmod = DESTMOD_PHYS; |
305 | icr.lo = l_apic[ICRlo]; |
| 306 | icr.level = LEVEL_DEASSERT; |
306 | if (icr.delivs == DELIVS_PENDING) { |
| 307 | icr.shorthand = SHORTHAND_NONE; |
307 | #ifdef CONFIG_DEBUG |
| 308 | icr.trigger_mode = TRIGMOD_LEVEL; |
308 | printf("IPI is pending.\n"); |
| 309 | icr.vector = 0; |
309 | #endif |
| 310 | l_apic[ICRlo] = icr.lo; |
310 | } |
| 311 | 311 | ||
| 312 | /* |
312 | icr.delmod = DELMOD_INIT; |
| 313 | * Wait 10ms as MP Specification specifies. |
313 | icr.destmod = DESTMOD_PHYS; |
| 314 | */ |
314 | icr.level = LEVEL_DEASSERT; |
| 315 | delay(10000); |
315 | icr.shorthand = SHORTHAND_NONE; |
| 316 | 316 | icr.trigger_mode = TRIGMOD_LEVEL; |
|
| 317 | if (!is_82489DX_apic(l_apic[LAVR])) { |
317 | icr.vector = 0; |
| 318 | /* |
318 | l_apic[ICRlo] = icr.lo; |
| 319 | * If this is not 82489DX-based l_apic we must send two STARTUP IPI's. |
319 | |
| 320 | */ |
320 | /* |
| 321 | for (i = 0; i<2; i++) { |
321 | * Wait 10ms as MP Specification specifies. |
| 322 | icr.lo = l_apic[ICRlo]; |
322 | */ |
| 323 | icr.vector = ((uintptr_t) ap_boot) / 4096; /* calculate the reset vector */ |
323 | delay(10000); |
| 324 | icr.delmod = DELMOD_STARTUP; |
324 | |
| 325 | icr.destmod = DESTMOD_PHYS; |
325 | if (!is_82489DX_apic(l_apic[LAVR])) { |
| 326 | icr.level = LEVEL_ASSERT; |
326 | /* |
| 327 | icr.shorthand = SHORTHAND_NONE; |
327 | * If this is not 82489DX-based l_apic we must send two STARTUP IPI's. |
| 328 | icr.trigger_mode = TRIGMOD_LEVEL; |
328 | */ |
| 329 | l_apic[ICRlo] = icr.lo; |
329 | for (i = 0; i<2; i++) { |
| 330 | delay(200); |
330 | icr.lo = l_apic[ICRlo]; |
| 331 | } |
331 | icr.vector = ((uintptr_t) ap_boot) / 4096; /* calculate the reset vector */ |
| 332 | } |
332 | icr.delmod = DELMOD_STARTUP; |
| 333 | 333 | icr.destmod = DESTMOD_PHYS; |
|
| 334 | return apic_poll_errors(); |
334 | icr.level = LEVEL_ASSERT; |
| 335 | } |
335 | icr.shorthand = SHORTHAND_NONE; |
| 336 | 336 | icr.trigger_mode = TRIGMOD_LEVEL; |
|
| 337 | /** Initialize Local APIC. */ |
337 | l_apic[ICRlo] = icr.lo; |
| 338 | void l_apic_init(void) |
338 | delay(200); |
| 339 | { |
339 | } |
| 340 | lvt_error_t error; |
340 | } |
| 341 | lvt_lint_t lint; |
341 | |
| 342 | tpr_t tpr; |
342 | return apic_poll_errors(); |
| 343 | svr_t svr; |
343 | } |
| 344 | icr_t icr; |
344 | |
| 345 | tdcr_t tdcr; |
345 | /** Initialize Local APIC. */ |
| 346 | lvt_tm_t tm; |
346 | void l_apic_init(void) |
| 347 | ldr_t ldr; |
347 | { |
| 348 | dfr_t dfr; |
348 | lvt_error_t error; |
| 349 | uint32_t t1, t2; |
349 | lvt_lint_t lint; |
| 350 | 350 | tpr_t tpr; |
|
| 351 | /* Initialize LVT Error register. */ |
351 | svr_t svr; |
| 352 | error.value = l_apic[LVT_Err]; |
352 | icr_t icr; |
| 353 | error.masked = true; |
353 | tdcr_t tdcr; |
| 354 | l_apic[LVT_Err] = error.value; |
354 | lvt_tm_t tm; |
| 355 | 355 | ldr_t ldr; |
|
| 356 | /* Initialize LVT LINT0 register. */ |
356 | dfr_t dfr; |
| 357 | lint.value = l_apic[LVT_LINT0]; |
357 | uint32_t t1, t2; |
| 358 | lint.masked = true; |
358 | |
| 359 | l_apic[LVT_LINT0] = lint.value; |
359 | /* Initialize LVT Error register. */ |
| 360 | 360 | error.value = l_apic[LVT_Err]; |
|
| 361 | /* Initialize LVT LINT1 register. */ |
361 | error.masked = true; |
| 362 | lint.value = l_apic[LVT_LINT1]; |
362 | l_apic[LVT_Err] = error.value; |
| 363 | lint.masked = true; |
363 | |
| 364 | l_apic[LVT_LINT1] = lint.value; |
364 | /* Initialize LVT LINT0 register. */ |
| 365 | 365 | lint.value = l_apic[LVT_LINT0]; |
|
| 366 | /* Task Priority Register initialization. */ |
366 | lint.masked = true; |
| 367 | tpr.value = l_apic[TPR]; |
367 | l_apic[LVT_LINT0] = lint.value; |
| 368 | tpr.pri_sc = 0; |
368 | |
| 369 | tpr.pri = 0; |
369 | /* Initialize LVT LINT1 register. */ |
| 370 | l_apic[TPR] = tpr.value; |
370 | lint.value = l_apic[LVT_LINT1]; |
| 371 | 371 | lint.masked = true; |
|
| 372 | /* Spurious-Interrupt Vector Register initialization. */ |
372 | l_apic[LVT_LINT1] = lint.value; |
| 373 | svr.value = l_apic[SVR]; |
373 | |
| 374 | svr.vector = VECTOR_APIC_SPUR; |
374 | /* Task Priority Register initialization. */ |
| 375 | svr.lapic_enabled = true; |
375 | tpr.value = l_apic[TPR]; |
| 376 | svr.focus_checking = true; |
376 | tpr.pri_sc = 0; |
| 377 | l_apic[SVR] = svr.value; |
377 | tpr.pri = 0; |
| 378 | 378 | l_apic[TPR] = tpr.value; |
|
| 379 | if (CPU->arch.family >= 6) |
379 | |
| 380 | enable_l_apic_in_msr(); |
380 | /* Spurious-Interrupt Vector Register initialization. */ |
| 381 | 381 | svr.value = l_apic[SVR]; |
|
| 382 | /* Interrupt Command Register initialization. */ |
382 | svr.vector = VECTOR_APIC_SPUR; |
| 383 | icr.lo = l_apic[ICRlo]; |
383 | svr.lapic_enabled = true; |
| 384 | icr.delmod = DELMOD_INIT; |
384 | svr.focus_checking = true; |
| 385 | icr.destmod = DESTMOD_PHYS; |
385 | l_apic[SVR] = svr.value; |
| 386 | icr.level = LEVEL_DEASSERT; |
386 | |
| 387 | icr.shorthand = SHORTHAND_ALL_INCL; |
387 | if (CPU->arch.family >= 6) |
| 388 | icr.trigger_mode = TRIGMOD_LEVEL; |
388 | enable_l_apic_in_msr(); |
| 389 | l_apic[ICRlo] = icr.lo; |
389 | |
| 390 | 390 | /* Interrupt Command Register initialization. */ |
|
| 391 | /* Timer Divide Configuration Register initialization. */ |
391 | icr.lo = l_apic[ICRlo]; |
| 392 | tdcr.value = l_apic[TDCR]; |
392 | icr.delmod = DELMOD_INIT; |
| 393 | tdcr.div_value = DIVIDE_1; |
393 | icr.destmod = DESTMOD_PHYS; |
| 394 | l_apic[TDCR] = tdcr.value; |
394 | icr.level = LEVEL_DEASSERT; |
| 395 | 395 | icr.shorthand = SHORTHAND_ALL_INCL; |
|
| 396 | /* Program local timer. */ |
396 | icr.trigger_mode = TRIGMOD_LEVEL; |
| 397 | tm.value = l_apic[LVT_Tm]; |
397 | l_apic[ICRlo] = icr.lo; |
| 398 | tm.vector = VECTOR_CLK; |
398 | |
| 399 | tm.mode = TIMER_PERIODIC; |
399 | /* Timer Divide Configuration Register initialization. */ |
| 400 | tm.masked = false; |
400 | tdcr.value = l_apic[TDCR]; |
| 401 | l_apic[LVT_Tm] = tm.value; |
401 | tdcr.div_value = DIVIDE_1; |
| 402 | 402 | l_apic[TDCR] = tdcr.value; |
|
| 403 | /* |
403 | |
| 404 | * Measure and configure the timer to generate timer |
404 | /* Program local timer. */ |
| 405 | * interrupt with period 1s/HZ seconds. |
405 | tm.value = l_apic[LVT_Tm]; |
| 406 | */ |
406 | tm.vector = VECTOR_CLK; |
| 407 | t1 = l_apic[CCRT]; |
407 | tm.mode = TIMER_PERIODIC; |
| 408 | l_apic[ICRT] = 0xffffffff; |
408 | tm.masked = false; |
| 409 | 409 | l_apic[LVT_Tm] = tm.value; |
|
| 410 | while (l_apic[CCRT] == t1) |
410 | |
| 411 | ; |
411 | /* |
| 412 | 412 | * Measure and configure the timer to generate timer |
|
| 413 | t1 = l_apic[CCRT]; |
413 | * interrupt with period 1s/HZ seconds. |
| 414 | delay(1000000/HZ); |
414 | */ |
| 415 | t2 = l_apic[CCRT]; |
415 | t1 = l_apic[CCRT]; |
| 416 | 416 | l_apic[ICRT] = 0xffffffff; |
|
| 417 | l_apic[ICRT] = t1-t2; |
417 | |
| 418 | 418 | while (l_apic[CCRT] == t1) |
|
| 419 | /* Program Logical Destination Register. */ |
419 | ; |
| 420 | ldr.value = l_apic[LDR]; |
420 | |
| 421 | if (CPU->id < sizeof(CPU->id)*8) /* size in bits */ |
421 | t1 = l_apic[CCRT]; |
| 422 | ldr.id = (1<<CPU->id); |
422 | delay(1000000/HZ); |
| 423 | l_apic[LDR] = ldr.value; |
423 | t2 = l_apic[CCRT]; |
| 424 | 424 | ||
| 425 | /* Program Destination Format Register for Flat mode. */ |
425 | l_apic[ICRT] = t1-t2; |
| 426 | dfr.value = l_apic[DFR]; |
426 | |
| 427 | dfr.model = MODEL_FLAT; |
427 | /* Program Logical Destination Register. */ |
| 428 | l_apic[DFR] = dfr.value; |
428 | ldr.value = l_apic[LDR]; |
| 429 | } |
429 | if (CPU->id < sizeof(CPU->id)*8) /* size in bits */ |
| 430 | 430 | ldr.id = (1<<CPU->id); |
|
| 431 | /** Local APIC End of Interrupt. */ |
431 | l_apic[LDR] = ldr.value; |
| 432 | void l_apic_eoi(void) |
432 | |
| 433 | { |
433 | /* Program Destination Format Register for Flat mode. */ |
| 434 | l_apic[EOI] = 0; |
434 | dfr.value = l_apic[DFR]; |
| 435 | } |
435 | dfr.model = MODEL_FLAT; |
| 436 | 436 | l_apic[DFR] = dfr.value; |
|
| 437 | /** Dump content of Local APIC registers. */ |
437 | } |
| 438 | void l_apic_debug(void) |
438 | |
| 439 | { |
439 | /** Local APIC End of Interrupt. */ |
| 440 | #ifdef LAPIC_VERBOSE |
440 | void l_apic_eoi(void) |
| 441 | lvt_tm_t tm; |
441 | { |
| 442 | lvt_lint_t lint; |
442 | l_apic[EOI] = 0; |
| 443 | lvt_error_t error; |
443 | } |
| 444 | 444 | ||
| 445 | printf("LVT on cpu%d, LAPIC ID: %d\n", CPU->id, l_apic_id()); |
445 | /** Dump content of Local APIC registers. */ |
| 446 | 446 | void l_apic_debug(void) |
|
| 447 | tm.value = l_apic[LVT_Tm]; |
447 | { |
| 448 | printf("LVT Tm: vector=%hhd, %s, %s, %s\n", tm.vector, delivs_str[tm.delivs], mask_str[tm.masked], tm_mode_str[tm.mode]); |
448 | #ifdef LAPIC_VERBOSE |
| 449 | lint.value = l_apic[LVT_LINT0]; |
449 | lvt_tm_t tm; |
| 450 | printf("LVT LINT0: vector=%hhd, %s, %s, %s, irr=%d, %s, %s\n", tm.vector, delmod_str[lint.delmod], delivs_str[lint.delivs], intpol_str[lint.intpol], lint.irr, trigmod_str[lint.trigger_mode], mask_str[lint.masked]); |
450 | lvt_lint_t lint; |
| 451 | lint.value = l_apic[LVT_LINT1]; |
451 | lvt_error_t error; |
| 452 | printf("LVT LINT1: vector=%hhd, %s, %s, %s, irr=%d, %s, %s\n", tm.vector, delmod_str[lint.delmod], delivs_str[lint.delivs], intpol_str[lint.intpol], lint.irr, trigmod_str[lint.trigger_mode], mask_str[lint.masked]); |
452 | |
| 453 | error.value = l_apic[LVT_Err]; |
453 | printf("LVT on cpu%d, LAPIC ID: %d\n", CPU->id, l_apic_id()); |
| 454 | printf("LVT Err: vector=%hhd, %s, %s\n", error.vector, delivs_str[error.delivs], mask_str[error.masked]); |
454 | |
| 455 | #endif |
455 | tm.value = l_apic[LVT_Tm]; |
| 456 | } |
456 | printf("LVT Tm: vector=%hhd, %s, %s, %s\n", tm.vector, delivs_str[tm.delivs], mask_str[tm.masked], tm_mode_str[tm.mode]); |
| 457 | 457 | lint.value = l_apic[LVT_LINT0]; |
|
| 458 | /** Get Local APIC ID. |
458 | printf("LVT LINT0: vector=%hhd, %s, %s, %s, irr=%d, %s, %s\n", tm.vector, delmod_str[lint.delmod], delivs_str[lint.delivs], intpol_str[lint.intpol], lint.irr, trigmod_str[lint.trigger_mode], mask_str[lint.masked]); |
| 459 | * |
459 | lint.value = l_apic[LVT_LINT1]; |
| 460 | * @return Local APIC ID. |
460 | printf("LVT LINT1: vector=%hhd, %s, %s, %s, irr=%d, %s, %s\n", tm.vector, delmod_str[lint.delmod], delivs_str[lint.delivs], intpol_str[lint.intpol], lint.irr, trigmod_str[lint.trigger_mode], mask_str[lint.masked]); |
| 461 | */ |
461 | error.value = l_apic[LVT_Err]; |
| 462 | uint8_t l_apic_id(void) |
462 | printf("LVT Err: vector=%hhd, %s, %s\n", error.vector, delivs_str[error.delivs], mask_str[error.masked]); |
| 463 | { |
463 | #endif |
| 464 | l_apic_id_t idreg; |
464 | } |
| 465 | 465 | ||
| 466 | idreg.value = l_apic[L_APIC_ID]; |
466 | /** Get Local APIC ID. |
| 467 | return idreg.apic_id; |
467 | * |
| 468 | } |
468 | * @return Local APIC ID. |
| 469 | 469 | */ |
|
| 470 | /** Read from IO APIC register. |
470 | uint8_t l_apic_id(void) |
| 471 | * |
471 | { |
| 472 | * @param address IO APIC register address. |
472 | l_apic_id_t idreg; |
| 473 | * |
473 | |
| 474 | * @return Content of the addressed IO APIC register. |
474 | idreg.value = l_apic[L_APIC_ID]; |
| 475 | */ |
475 | return idreg.apic_id; |
| 476 | uint32_t io_apic_read(uint8_t address) |
476 | } |
| 477 | { |
477 | |
| 478 | io_regsel_t regsel; |
478 | /** Read from IO APIC register. |
| 479 | 479 | * |
|
| 480 | regsel.value = io_apic[IOREGSEL]; |
480 | * @param address IO APIC register address. |
| 481 | regsel.reg_addr = address; |
481 | * |
| 482 | io_apic[IOREGSEL] = regsel.value; |
482 | * @return Content of the addressed IO APIC register. |
| 483 | return io_apic[IOWIN]; |
483 | */ |
| 484 | } |
484 | uint32_t io_apic_read(uint8_t address) |
| 485 | 485 | { |
|
| 486 | /** Write to IO APIC register. |
486 | io_regsel_t regsel; |
| 487 | * |
487 | |
| 488 | * @param address IO APIC register address. |
488 | regsel.value = io_apic[IOREGSEL]; |
| 489 | * @param x Content to be written to the addressed IO APIC register. |
489 | regsel.reg_addr = address; |
| 490 | */ |
490 | io_apic[IOREGSEL] = regsel.value; |
| 491 | void io_apic_write(uint8_t address, uint32_t x) |
491 | return io_apic[IOWIN]; |
| 492 | { |
492 | } |
| 493 | io_regsel_t regsel; |
493 | |
| 494 | 494 | /** Write to IO APIC register. |
|
| 495 | regsel.value = io_apic[IOREGSEL]; |
495 | * |
| 496 | regsel.reg_addr = address; |
496 | * @param address IO APIC register address. |
| 497 | io_apic[IOREGSEL] = regsel.value; |
497 | * @param x Content to be written to the addressed IO APIC register. |
| 498 | io_apic[IOWIN] = x; |
498 | */ |
| 499 | } |
499 | void io_apic_write(uint8_t address, uint32_t x) |
| 500 | 500 | { |
|
| 501 | /** Change some attributes of one item in I/O Redirection Table. |
501 | io_regsel_t regsel; |
| 502 | * |
502 | |
| 503 | * @param pin IO APIC pin number. |
503 | regsel.value = io_apic[IOREGSEL]; |
| 504 | * @param dest Interrupt destination address. |
504 | regsel.reg_addr = address; |
| 505 | * @param v Interrupt vector to trigger. |
505 | io_apic[IOREGSEL] = regsel.value; |
| 506 | * @param flags Flags. |
506 | io_apic[IOWIN] = x; |
| 507 | */ |
507 | } |
| 508 | void io_apic_change_ioredtbl(int pin, int dest, uint8_t v, int flags) |
508 | |
| 509 | { |
509 | /** Change some attributes of one item in I/O Redirection Table. |
| 510 | io_redirection_reg_t reg; |
510 | * |
| 511 | int dlvr = DELMOD_FIXED; |
511 | * @param pin IO APIC pin number. |
| 512 | 512 | * @param dest Interrupt destination address. |
|
| 513 | if (flags & LOPRI) |
513 | * @param v Interrupt vector to trigger. |
| 514 | dlvr = DELMOD_LOWPRI; |
514 | * @param flags Flags. |
| 515 | 515 | */ |
|
| 516 | reg.lo = io_apic_read(IOREDTBL + pin*2); |
516 | void io_apic_change_ioredtbl(int pin, int dest, uint8_t v, int flags) |
| 517 | reg.hi = io_apic_read(IOREDTBL + pin*2 + 1); |
517 | { |
| 518 | 518 | io_redirection_reg_t reg; |
|
| 519 | reg.dest = dest; |
519 | int dlvr = DELMOD_FIXED; |
| 520 | reg.destmod = DESTMOD_LOGIC; |
520 | |
| 521 | reg.trigger_mode = TRIGMOD_EDGE; |
521 | if (flags & LOPRI) |
| 522 | reg.intpol = POLARITY_HIGH; |
522 | dlvr = DELMOD_LOWPRI; |
| 523 | reg.delmod = dlvr; |
523 | |
| 524 | reg.intvec = v; |
524 | reg.lo = io_apic_read(IOREDTBL + pin*2); |
| 525 | 525 | reg.hi = io_apic_read(IOREDTBL + pin*2 + 1); |
|
| 526 | io_apic_write(IOREDTBL + pin*2, reg.lo); |
526 | |
| 527 | io_apic_write(IOREDTBL + pin*2 + 1, reg.hi); |
527 | reg.dest = dest; |
| 528 | } |
528 | reg.destmod = DESTMOD_LOGIC; |
| 529 | 529 | reg.trigger_mode = TRIGMOD_EDGE; |
|
| 530 | /** Mask IRQs in IO APIC. |
530 | reg.intpol = POLARITY_HIGH; |
| 531 | * |
531 | reg.delmod = dlvr; |
| 532 | * @param irqmask Bitmask of IRQs to be masked (0 = do not mask, 1 = mask). |
532 | reg.intvec = v; |
| 533 | */ |
533 | |
| 534 | void io_apic_disable_irqs(uint16_t irqmask) |
534 | io_apic_write(IOREDTBL + pin*2, reg.lo); |
| 535 | { |
535 | io_apic_write(IOREDTBL + pin*2 + 1, reg.hi); |
| 536 | io_redirection_reg_t reg; |
536 | } |
| 537 | unsigned int i; |
537 | |
| 538 | int pin; |
538 | /** Mask IRQs in IO APIC. |
| 539 | 539 | * |
|
| 540 | for (i = 0; i < 16; i++) { |
540 | * @param irqmask Bitmask of IRQs to be masked (0 = do not mask, 1 = mask). |
| 541 | if (irqmask & (1 << i)) { |
541 | */ |
| 542 | /* |
542 | void io_apic_disable_irqs(uint16_t irqmask) |
| 543 | * Mask the signal input in IO APIC if there is a |
543 | { |
| 544 | * mapping for the respective IRQ number. |
544 | io_redirection_reg_t reg; |
| 545 | */ |
545 | unsigned int i; |
| 546 | pin = smp_irq_to_pin(i); |
546 | int pin; |
| 547 | if (pin != -1) { |
547 | |
| 548 | reg.lo = io_apic_read(IOREDTBL + pin * 2); |
548 | for (i = 0; i < 16; i++) { |
| 549 | reg.masked = true; |
549 | if (irqmask & (1 << i)) { |
| 550 | io_apic_write(IOREDTBL + pin * 2, reg.lo); |
550 | /* |
| 551 | } |
551 | * Mask the signal input in IO APIC if there is a |
| 552 | 552 | * mapping for the respective IRQ number. |
|
| 553 | } |
553 | */ |
| 554 | } |
554 | pin = smp_irq_to_pin(i); |
| 555 | } |
555 | if (pin != -1) { |
| 556 | 556 | reg.lo = io_apic_read(IOREDTBL + pin * 2); |
|
| 557 | /** Unmask IRQs in IO APIC. |
557 | reg.masked = true; |
| 558 | * |
558 | io_apic_write(IOREDTBL + pin * 2, reg.lo); |
| 559 | * @param irqmask Bitmask of IRQs to be unmasked (0 = do not unmask, 1 = unmask). |
559 | } |
| 560 | */ |
560 | |
| 561 | void io_apic_enable_irqs(uint16_t irqmask) |
561 | } |
| 562 | { |
562 | } |
| 563 | unsigned int i; |
563 | } |
| 564 | int pin; |
564 | |
| 565 | io_redirection_reg_t reg; |
565 | /** Unmask IRQs in IO APIC. |
| 566 | 566 | * |
|
| 567 | for (i = 0;i < 16; i++) { |
567 | * @param irqmask Bitmask of IRQs to be unmasked (0 = do not unmask, 1 = unmask). |
| 568 | if (irqmask & (1 << i)) { |
568 | */ |
| 569 | /* |
569 | void io_apic_enable_irqs(uint16_t irqmask) |
| 570 | * Unmask the signal input in IO APIC if there is a |
570 | { |
| 571 | * mapping for the respective IRQ number. |
571 | unsigned int i; |
| 572 | */ |
572 | int pin; |
| 573 | pin = smp_irq_to_pin(i); |
573 | io_redirection_reg_t reg; |
| 574 | if (pin != -1) { |
574 | |
| 575 | reg.lo = io_apic_read(IOREDTBL + pin * 2); |
575 | for (i = 0;i < 16; i++) { |
| 576 | reg.masked = false; |
576 | if (irqmask & (1 << i)) { |
| 577 | io_apic_write(IOREDTBL + pin * 2, reg.lo); |
577 | /* |
| 578 | } |
578 | * Unmask the signal input in IO APIC if there is a |
| 579 | 579 | * mapping for the respective IRQ number. |
|
| 580 | } |
580 | */ |
| 581 | } |
581 | pin = smp_irq_to_pin(i); |
| 582 | } |
582 | if (pin != -1) { |
| 583 | 583 | reg.lo = io_apic_read(IOREDTBL + pin * 2); |
|
| 584 | #endif /* CONFIG_SMP */ |
584 | reg.masked = false; |
| 585 | 585 | io_apic_write(IOREDTBL + pin * 2, reg.lo); |
|
| 586 | /** @} |
586 | } |
| 587 | */ |
587 | |
| - | 588 | } |
|
| - | 589 | } |
|
| - | 590 | } |
|
| - | 591 | ||
| - | 592 | #endif /* CONFIG_SMP */ |
|
| - | 593 | ||
| - | 594 | /** @} |
|
| - | 595 | */ |
|