matos/arch/x86/irq_pit.S

51 lines
1023 B
ArmAsm
Raw Normal View History

2020-04-23 00:49:09 +02:00
.file "irq_pit.S"
.text
2020-04-23 23:40:16 +02:00
.extern switchKthread
2020-04-23 00:49:09 +02:00
.globl pit_handler
.type pit_handler, @function
pit_handler: // already got eflags, cs and eip on stack thanks to CPU
2021-10-26 20:55:15 +02:00
pushl $0 // err_code esp+12+7*4=40
pushl %ebp
pushl %eax
pushl %ecx
pushl %edx
pushl %ebx
pushl %esi
pushl %edi
2020-04-23 00:49:09 +02:00
subl $2, %esp // (alignment) esp+10
pushw %ss // esp+8
pushw %ds // esp+6
pushw %es // esp+4
pushw %fs // esp+2
pushw %gs // esp
/* Send EOI to PIC */
movb $0x20, %al
outb %al, $0x20
pushl %esp
2020-04-27 23:08:36 +02:00
call pitIrqHandler
2020-04-23 00:49:09 +02:00
movl %eax,%esp
/* Restore the CPU context */
popw %gs
popw %fs
popw %es
popw %ds
popw %ss
addl $2,%esp
2021-10-26 20:55:15 +02:00
popl %edi
popl %esi
popl %ebx
popl %edx
popl %ecx
popl %eax
popl %ebp
2020-04-23 00:49:09 +02:00
addl $4, %esp /* Ignore "error code" */
/* This restores the eflags, the cs and the eip registers */
iret /* equivalent to: popfl ; ret */