2 * GeekOS interrupt handling data structures and functions
3 * Copyright (c) 2001,2003 David H. Hovemeyer <daveho@cs.umd.edu>
6 * This is free software. You are permitted to use,
7 * redistribute, and modify it as specified in the file "COPYING".
10 #include <geekos/idt.h> /* x86-specific int handling stuff */
11 #include <geekos/screen.h>
12 #include <geekos/kassert.h>
13 #include <geekos/int.h>
14 #include <geekos/serial.h>
16 #include <geekos/cpu.h>
19 * Defined in lowlevel.asm.
21 ulong_t Get_Current_EFLAGS(void);
23 /* ----------------------------------------------------------------------
24 * Private functions and data
25 * ---------------------------------------------------------------------- */
28 * A dummy interrupt handler function.
29 * Ensures that the low-level interrupt code always
30 * has a handler to call.
32 static void Dummy_Interrupt_Handler(struct Interrupt_State* state)
36 Print("Unexpected Interrupt! Ignoring!\n");
37 SerialPrint("*** Unexpected interrupt! *** Ignoring!\n");
38 Dump_Interrupt_State(state);
46 static void Print_Selector(const char* regName, uint_t value)
48 Print("%s: index=%d, ti=%d, rpl=%d\n",
49 regName, value >> 3, (value >> 2) & 1, value & 3);
53 static void SerialPrint_Selector(const char* regName, uint_t value)
55 SerialPrint("%s: index=%d, ti=%d, rpl=%d\n",
56 regName, value >> 3, (value >> 2) & 1, value & 3);
59 /* ----------------------------------------------------------------------
61 * ---------------------------------------------------------------------- */
64 * Initialize the interrupt system.
66 void Init_Interrupts(void)
70 PrintBoth("Initializing Interrupts\n");
72 /* Low-level initialization. Build and initialize the IDT. */
76 * Initialize all entries of the handler table with a dummy handler.
77 * This will ensure that we always have a handler function to call.
79 for (i = 0; i < NUM_IDT_ENTRIES; ++i) {
80 Install_Interrupt_Handler(i, Dummy_Interrupt_Handler);
83 /* Re-enable interrupts */
88 * Query whether or not interrupts are currently enabled.
90 bool Interrupts_Enabled(void)
92 ulong_t eflags = Get_Current_EFLAGS();
93 return (eflags & EFLAGS_IF) != 0;
97 * Dump interrupt state struct to screen
99 void Dump_Interrupt_State(struct Interrupt_State* state)
101 uint_t errorCode = state->errorCode;
103 SerialPrint("eax=%08x ebx=%08x ecx=%08x edx=%08x\n"
104 "esi=%08x edi=%08x ebp=%08x\n"
105 "eip=%08x cs=%08x eflags=%08x\n"
106 "Interrupt number=%d, error code=%d\n"
107 "index=%d, TI=%d, IDT=%d, EXT=%d\n",
108 state->eax, state->ebx, state->ecx, state->edx,
109 state->esi, state->edi, state->ebp,
110 state->eip, state->cs, state->eflags,
111 state->intNum, errorCode,
112 errorCode >> 3, (errorCode >> 2) & 1, (errorCode >> 1) & 1, errorCode & 1
114 if (Is_User_Interrupt(state)) {
115 struct User_Interrupt_State *ustate = (struct User_Interrupt_State*) state;
116 SerialPrint("user esp=%08x, user ss=%08x\n", ustate->espUser, ustate->ssUser);
118 SerialPrint_Selector("cs", state->cs);
119 SerialPrint_Selector("ds", state->ds);
120 SerialPrint_Selector("es", state->es);
121 SerialPrint_Selector("fs", state->fs);
122 SerialPrint_Selector("gs", state->gs);