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