4 %include "arch/x86_64/include/common.inc.asm"
11 %define NUM_IRQ_CALLBACKS 4
13 MM_LOCALAPIC equ 0xFFFFFD0000000000
18 ; Save to make following instructions smaller
21 ; Set an IDT entry to a callback
24 mov WORD [rdi + %1*16], ax
26 mov WORD [rdi + %1*16 + 6], ax
28 mov DWORD [rdi + %1*16 + 8], eax
30 mov ax, WORD [rdi + %1*16 + 4]
32 mov WORD [rdi + %1*16 + 4], ax
35 ; Install error handlers
68 out dx, al ; Init Command
71 out dx, al ; Offset (Start of IDT Range)
73 out dx, al ; IRQ connected to Slave (00000100b) = IRQ2
81 out dx, al ; Init Command
84 out dx, al ; Offset (Start of IDT Range)
86 out dx, al ; IRQ Line connected to master
98 ; Re-install GDT (in higher address space)
101 mov QWORD [rax+2], rcx
107 ; Set IA32_LSTAR (RIP of handler)
108 mov ecx, 0xC0000082 ; IA32_LSTAR
109 mov eax, SyscallStub - 0xFFFFFFFF00000000
112 ; Set IA32_FMASK (flags mask)
117 ; Set IA32_STAR (Kernel/User CS)
120 mov edx, 0x8 | (0x1B << 16) ; Kernel CS (and Kernel DS/SS - 8), User CS
125 ; int IRQ_AddHandler(int IRQ, void (*Handler)(int IRQ), void *Ptr)
128 ; -1 on an invalid IRQ Number
129 ; -2 when no slots are avaliable
130 [global IRQ_AddHandler]
136 ; Check for RDI >= 16
144 ; Get handler base into RAX
146 mov rcx, gaIRQ_Handlers
149 ; Find a free callback slot
150 %rep NUM_IRQ_CALLBACKS
156 ; None found, return -2
162 ; Assign the IRQ Callback
164 ; A little bit of debug
170 mov rcx, rdi ; IRQ Number
171 mov rdx, rsi ; Callback
172 mov rsi, rax ; Pointer
173 mov rdi, csIRQ_Assigned
183 add rax, gaIRQ_DataPtrs - gaIRQ_Handlers
192 db "IRQ %p := %p (IRQ %i)",0
209 ISR_NOERRNO 0; 0: Divide By Zero Exception
210 ISR_NOERRNO 1; 1: Debug Exception
211 ISR_NOERRNO 2; 2: Non Maskable Interrupt Exception
212 ISR_NOERRNO 3; 3: Int 3 Exception
213 ISR_NOERRNO 4; 4: INTO Exception
214 ISR_NOERRNO 5; 5: Out of Bounds Exception
215 ISR_NOERRNO 6; 6: Invalid Opcode Exception
216 ISR_NOERRNO 7; 7: Coprocessor Not Available Exception
217 ISR_ERRNO 8; 8: Double Fault Exception (With Error Code!)
218 ISR_NOERRNO 9; 9: Coprocessor Segment Overrun Exception
219 ISR_ERRNO 10; 10: Bad TSS Exception (With Error Code!)
220 ISR_ERRNO 11; 11: Segment Not Present Exception (With Error Code!)
221 ISR_ERRNO 12; 12: Stack Fault Exception (With Error Code!)
222 ISR_ERRNO 13; 13: General Protection Fault Exception (With Error Code!)
223 ISR_ERRNO 14; 14: Page Fault Exception (With Error Code!)
224 ISR_NOERRNO 15; 15: Reserved Exception
225 ISR_NOERRNO 16; 16: Floating Point Exception
226 ISR_NOERRNO 17; 17: Alignment Check Exception
227 ISR_NOERRNO 18; 18: Machine Check Exception
228 ISR_NOERRNO 19; 19: Reserved
229 ISR_NOERRNO 20; 20: Reserved
230 ISR_NOERRNO 21; 21: Reserved
231 ISR_NOERRNO 22; 22: Reserved
232 ISR_NOERRNO 23; 23: Reserved
233 ISR_NOERRNO 24; 24: Reserved
234 ISR_NOERRNO 25; 25: Reserved
235 ISR_NOERRNO 26; 26: Reserved
236 ISR_NOERRNO 27; 27: Reserved
237 ISR_NOERRNO 28; 28: Reserved
238 ISR_NOERRNO 29; 29: Reserved
239 ISR_NOERRNO 30; 30: Reserved
240 ISR_NOERRNO 31; 31: Reserved
242 [extern Error_Handler]
282 ; mov rdi, csIRQ_Fired
283 ; mov rsi, [rsp+(16+2)*8]
286 mov ebx, [rsp+(16+2)*8] ; Get interrupt number (16 GPRS + 2 SRs)
288 mov rax, gaIRQ_Handlers
291 ; Check all callbacks
292 sub rsp, 8 ; Shadow of argument
294 %rep NUM_IRQ_CALLBACKS
295 ; Get callback address
297 test rax, rax ; Check if it exists
299 ; Set RDI to IRQ number
300 mov rdi, [rsp+(16+2+1)*8] ; Get IRQ number
301 mov rsi, [rbx-gaIRQ_Handlers+gaIRQ_DataPtrs]
311 mov rdi, [rsp+(16+2)*8] ; Get IRQ number
324 [extern Time_UpdateTimestamp]
327 [global APIC_Timer_IRQ]
335 mov eax, DWORD [gpMP_LocalAPIC]
336 mov DWORD [eax+0x0B0], 0
350 call Time_UpdateTimestamp
354 csUserSS: db "User SS: 0x%x",0
357 mov rsi, [rsp+0x80+0x20]
363 out 0x20, al ; ACK IRQ
370 [extern ci_offsetof_tThread_KernelStack]
371 [extern SyscallHandler]
375 mov ebx, [rel ci_offsetof_tThread_KernelStack]
376 mov rbp, [rbp+rbx] ; Get kernel stack
377 xchg rbp, rsp ; Swap stacks
379 push rbp ; Save User RSP
386 ; R10 (RCX for non syscall)
390 mov [rsp+0x00], rax ; Number
391 ; mov [rsp+0x08], rax ; Errno (output only)
392 mov [rsp+0x10], rdi ; Arg1
393 mov [rsp+0x18], rsi ; Arg2
394 mov [rsp+0x20], rdx ; Arg3
395 mov [rsp+0x28], r10 ; Arg4
396 mov [rsp+0x30], r8 ; Arg5
397 mov [rsp+0x38], r9 ; Arg6
405 csSyscallReturn: db "Syscall Return: 0x%x",0
407 mov rdi, csSyscallReturn
413 mov ebx, [rsp+8] ; Get errno
414 mov rax, [rsp+0] ; Get return
419 pop rsp ; Change back to user stack
420 ; TODO: Determine if user is 64 or 32 bit
422 db 0x48 ; REX, nasm doesn't have a sysretq opcode
427 ; 64-bit Interrupt Gate, CS = 0x8, IST0 (Disabled)
428 times 256 dd 0x00080000, 0x00000E00, 0, 0
434 times 16*NUM_IRQ_CALLBACKS dq 0
436 times 16*NUM_IRQ_CALLBACKS dq 0