[f761f1eb] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2001-2004 Jakub Jermar
|
---|
[f761f1eb] | 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 |
|
---|
[b6529ae] | 29 | /** @addtogroup ia32interrupt
|
---|
[b45c443] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[f761f1eb] | 35 | #include <arch/interrupt.h>
|
---|
[204674e] | 36 | #include <syscall/syscall.h>
|
---|
[f761f1eb] | 37 | #include <print.h>
|
---|
[02a99d2] | 38 | #include <debug.h>
|
---|
[f761f1eb] | 39 | #include <panic.h>
|
---|
[80d31883] | 40 | #include <arch/drivers/i8259.h>
|
---|
[f761f1eb] | 41 | #include <func.h>
|
---|
| 42 | #include <cpu.h>
|
---|
| 43 | #include <arch/asm.h>
|
---|
[169587a] | 44 | #include <mm/tlb.h>
|
---|
[20d50a1] | 45 | #include <mm/as.h>
|
---|
[cb4b61d] | 46 | #include <arch.h>
|
---|
[1084a784] | 47 | #include <proc/thread.h>
|
---|
[2382d09] | 48 | #include <proc/task.h>
|
---|
| 49 | #include <synch/spinlock.h>
|
---|
| 50 | #include <arch/ddi/ddi.h>
|
---|
[5626277] | 51 | #include <ipc/sysipc.h>
|
---|
| 52 | #include <interrupt.h>
|
---|
[cea12e9] | 53 | #include <ddi/irq.h>
|
---|
[e2b762ec] | 54 | #include <symtab.h>
|
---|
[203deeb8] | 55 | #include <stacktrace.h>
|
---|
[e2b762ec] | 56 |
|
---|
[f761f1eb] | 57 | /*
|
---|
| 58 | * Interrupt and exception dispatching.
|
---|
| 59 | */
|
---|
| 60 |
|
---|
[7f1c620] | 61 | void (* disable_irqs_function)(uint16_t irqmask) = NULL;
|
---|
| 62 | void (* enable_irqs_function)(uint16_t irqmask) = NULL;
|
---|
[f761f1eb] | 63 | void (* eoi_function)(void) = NULL;
|
---|
| 64 |
|
---|
[22a28a69] | 65 | void istate_decode(istate_t *istate)
|
---|
[97b64c9] | 66 | {
|
---|
[62baed17] | 67 | printf("error_word=%#lx\n", istate->error_word);
|
---|
| 68 | printf("cs =%#0.8lx\teflags=%#0.8lx\n", istate->cs, istate->eflags);
|
---|
| 69 | printf("eax=%#0.8lx\tecx=%#0.8lx\tedx=%#0.8lx\n",
|
---|
| 70 | istate->eax, istate->ecx, istate->edx);
|
---|
[97b64c9] | 71 | }
|
---|
[ab08b42] | 72 |
|
---|
[cea12e9] | 73 | static void trap_virtual_eoi(void)
|
---|
| 74 | {
|
---|
| 75 | if (eoi_function)
|
---|
| 76 | eoi_function();
|
---|
| 77 | else
|
---|
[f651e80] | 78 | panic("No eoi_function.");
|
---|
[cea12e9] | 79 |
|
---|
| 80 | }
|
---|
| 81 |
|
---|
[214ec25c] | 82 | static void null_interrupt(unsigned int n, istate_t *istate)
|
---|
[f761f1eb] | 83 | {
|
---|
[214ec25c] | 84 | fault_if_from_uspace(istate, "Unserviced interrupt: %u.", n);
|
---|
[62baed17] | 85 | panic_badtrap(istate, n, "Unserviced interrupt: %u.", n);
|
---|
[f761f1eb] | 86 | }
|
---|
| 87 |
|
---|
[214ec25c] | 88 | static void de_fault(unsigned int n, istate_t *istate)
|
---|
[4491338] | 89 | {
|
---|
| 90 | fault_if_from_uspace(istate, "Divide error.");
|
---|
[62baed17] | 91 | panic_badtrap(istate, n, "Divide error.");
|
---|
[4491338] | 92 | }
|
---|
| 93 |
|
---|
[2382d09] | 94 | /** General Protection Fault. */
|
---|
[214ec25c] | 95 | static void gp_fault(unsigned int n __attribute__((unused)), istate_t *istate)
|
---|
[f761f1eb] | 96 | {
|
---|
[2382d09] | 97 | if (TASK) {
|
---|
[da1bafb] | 98 | irq_spinlock_lock(&TASK->lock, false);
|
---|
| 99 | size_t ver = TASK->arch.iomapver;
|
---|
| 100 | irq_spinlock_unlock(&TASK->lock, false);
|
---|
[2382d09] | 101 |
|
---|
| 102 | if (CPU->arch.iomapver_copy != ver) {
|
---|
| 103 | /*
|
---|
| 104 | * This fault can be caused by an early access
|
---|
| 105 | * to I/O port because of an out-dated
|
---|
| 106 | * I/O Permission bitmap installed on CPU.
|
---|
| 107 | * Install the fresh copy and restart
|
---|
| 108 | * the instruction.
|
---|
| 109 | */
|
---|
| 110 | io_perm_bitmap_install();
|
---|
| 111 | return;
|
---|
| 112 | }
|
---|
[f651e80] | 113 | fault_if_from_uspace(istate, "General protection fault.");
|
---|
[2382d09] | 114 | }
|
---|
[62baed17] | 115 | panic_badtrap(istate, n, "General protection fault.");
|
---|
[f761f1eb] | 116 | }
|
---|
| 117 |
|
---|
[214ec25c] | 118 | static void ss_fault(unsigned int n __attribute__((unused)), istate_t *istate)
|
---|
[6de2480e] | 119 | {
|
---|
[f651e80] | 120 | fault_if_from_uspace(istate, "Stack fault.");
|
---|
[62baed17] | 121 | panic_badtrap(istate, n, "Stack fault.");
|
---|
[6de2480e] | 122 | }
|
---|
| 123 |
|
---|
[214ec25c] | 124 | static void simd_fp_exception(unsigned int n __attribute__((unused)), istate_t *istate)
|
---|
[3b05862f] | 125 | {
|
---|
[7f1c620] | 126 | uint32_t mxcsr;
|
---|
[da1bafb] | 127 | asm volatile (
|
---|
[add04f7] | 128 | "stmxcsr %[mxcsr]\n"
|
---|
| 129 | : [mxcsr] "=m" (mxcsr)
|
---|
[3b05862f] | 130 | );
|
---|
[da1bafb] | 131 |
|
---|
[62baed17] | 132 | fault_if_from_uspace(istate, "SIMD FP exception(19), MXCSR=%#0.8x.",
|
---|
[e8a0b90] | 133 | (unative_t) mxcsr);
|
---|
[62baed17] | 134 | panic_badtrap(istate, n, "SIMD FP exception, MXCSR=%#0.8x");
|
---|
[3b05862f] | 135 | }
|
---|
| 136 |
|
---|
[214ec25c] | 137 | static void nm_fault(unsigned int n __attribute__((unused)),
|
---|
[da1bafb] | 138 | istate_t *istate __attribute__((unused)))
|
---|
[6a27d63] | 139 | {
|
---|
[da1bafb] | 140 | #ifdef CONFIG_FPU_LAZY
|
---|
[b49f4ae] | 141 | scheduler_fpu_lazy_request();
|
---|
| 142 | #else
|
---|
[f651e80] | 143 | fault_if_from_uspace(istate, "FPU fault.");
|
---|
[62baed17] | 144 | panic_badtrap(istate, n, "FPU fault.");
|
---|
[b49f4ae] | 145 | #endif
|
---|
[6a27d63] | 146 | }
|
---|
| 147 |
|
---|
[cea12e9] | 148 | #ifdef CONFIG_SMP
|
---|
[214ec25c] | 149 | static void tlb_shootdown_ipi(unsigned int n __attribute__((unused)),
|
---|
[da1bafb] | 150 | istate_t *istate __attribute__((unused)))
|
---|
[f761f1eb] | 151 | {
|
---|
[cea12e9] | 152 | trap_virtual_eoi();
|
---|
| 153 | tlb_shootdown_ipi_recv();
|
---|
[f761f1eb] | 154 | }
|
---|
[cea12e9] | 155 | #endif
|
---|
[f761f1eb] | 156 |
|
---|
[cea12e9] | 157 | /** Handler of IRQ exceptions */
|
---|
[214ec25c] | 158 | static void irq_interrupt(unsigned int n, istate_t *istate __attribute__((unused)))
|
---|
[169587a] | 159 | {
|
---|
[cea12e9] | 160 | ASSERT(n >= IVT_IRQBASE);
|
---|
| 161 |
|
---|
[214ec25c] | 162 | unsigned int inum = n - IVT_IRQBASE;
|
---|
[7bcfbbc] | 163 | bool ack = false;
|
---|
[cea12e9] | 164 | ASSERT(inum < IRQ_COUNT);
|
---|
| 165 | ASSERT((inum != IRQ_PIC_SPUR) && (inum != IRQ_PIC1));
|
---|
[7bcfbbc] | 166 |
|
---|
[cea12e9] | 167 | irq_t *irq = irq_dispatch_and_lock(inum);
|
---|
| 168 | if (irq) {
|
---|
| 169 | /*
|
---|
| 170 | * The IRQ handler was found.
|
---|
| 171 | */
|
---|
[da1bafb] | 172 |
|
---|
[7bcfbbc] | 173 | if (irq->preack) {
|
---|
| 174 | /* Send EOI before processing the interrupt */
|
---|
| 175 | trap_virtual_eoi();
|
---|
| 176 | ack = true;
|
---|
| 177 | }
|
---|
[6cd9aa6] | 178 | irq->handler(irq);
|
---|
[da1bafb] | 179 | irq_spinlock_unlock(&irq->lock, false);
|
---|
[cea12e9] | 180 | } else {
|
---|
| 181 | /*
|
---|
| 182 | * Spurious interrupt.
|
---|
| 183 | */
|
---|
| 184 | #ifdef CONFIG_DEBUG
|
---|
[214ec25c] | 185 | printf("cpu%u: spurious interrupt (inum=%u)\n", CPU->id, inum);
|
---|
[cea12e9] | 186 | #endif
|
---|
| 187 | }
|
---|
[7bcfbbc] | 188 |
|
---|
| 189 | if (!ack)
|
---|
| 190 | trap_virtual_eoi();
|
---|
[cea12e9] | 191 | }
|
---|
| 192 |
|
---|
| 193 | void interrupt_init(void)
|
---|
| 194 | {
|
---|
[b3b7e14a] | 195 | unsigned int i;
|
---|
[cea12e9] | 196 |
|
---|
| 197 | for (i = 0; i < IVT_ITEMS; i++)
|
---|
[b3b7e14a] | 198 | exc_register(i, "null", false, (iroutine_t) null_interrupt);
|
---|
[cea12e9] | 199 |
|
---|
| 200 | for (i = 0; i < IRQ_COUNT; i++) {
|
---|
| 201 | if ((i != IRQ_PIC_SPUR) && (i != IRQ_PIC1))
|
---|
[b3b7e14a] | 202 | exc_register(IVT_IRQBASE + i, "irq", true,
|
---|
| 203 | (iroutine_t) irq_interrupt);
|
---|
[cea12e9] | 204 | }
|
---|
| 205 |
|
---|
[b3b7e14a] | 206 | exc_register(0, "de_fault", true, (iroutine_t) de_fault);
|
---|
| 207 | exc_register(7, "nm_fault", true, (iroutine_t) nm_fault);
|
---|
| 208 | exc_register(12, "ss_fault", true, (iroutine_t) ss_fault);
|
---|
| 209 | exc_register(13, "gp_fault", true, (iroutine_t) gp_fault);
|
---|
| 210 | exc_register(19, "simd_fp", true, (iroutine_t) simd_fp_exception);
|
---|
[cea12e9] | 211 |
|
---|
| 212 | #ifdef CONFIG_SMP
|
---|
[b3b7e14a] | 213 | exc_register(VECTOR_TLB_SHOOTDOWN_IPI, "tlb_shootdown", true,
|
---|
| 214 | (iroutine_t) tlb_shootdown_ipi);
|
---|
[cea12e9] | 215 | #endif
|
---|
[169587a] | 216 | }
|
---|
| 217 |
|
---|
[7f1c620] | 218 | void trap_virtual_enable_irqs(uint16_t irqmask)
|
---|
[f761f1eb] | 219 | {
|
---|
| 220 | if (enable_irqs_function)
|
---|
| 221 | enable_irqs_function(irqmask);
|
---|
| 222 | else
|
---|
[f651e80] | 223 | panic("No enable_irqs_function.");
|
---|
[f761f1eb] | 224 | }
|
---|
| 225 |
|
---|
[7f1c620] | 226 | void trap_virtual_disable_irqs(uint16_t irqmask)
|
---|
[f761f1eb] | 227 | {
|
---|
| 228 | if (disable_irqs_function)
|
---|
| 229 | disable_irqs_function(irqmask);
|
---|
| 230 | else
|
---|
[f651e80] | 231 | panic("No disable_irqs_function.");
|
---|
[f761f1eb] | 232 | }
|
---|
| 233 |
|
---|
[3222efd] | 234 | /** @}
|
---|
[b45c443] | 235 | */
|
---|