summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
Diffstat (limited to 'platform')
-rw-r--r--platform/sysenter.h4
-rw-r--r--platform/sysenter.s31
2 files changed, 35 insertions, 0 deletions
diff --git a/platform/sysenter.h b/platform/sysenter.h
new file mode 100644
index 0000000..b0495cc
--- /dev/null
+++ b/platform/sysenter.h
@@ -0,0 +1,4 @@
+#pragma once
+
+void sysexit(void (*fun)(), void *stack_top);
+void sysenter_setup();
diff --git a/platform/sysenter.s b/platform/sysenter.s
new file mode 100644
index 0000000..270dc08
--- /dev/null
+++ b/platform/sysenter.s
@@ -0,0 +1,31 @@
+/* kernel/gdt.c */
+.set SEG_r0code, 1
+.set SEG_r3code, 3
+.set SEG_r3data, 4
+
+.set IA32_SYSENTER_CS, 0x174
+
+.section .text
+.global sysexit
+.type sysexit, @function
+sysexit:
+ pop %ecx
+ pop %edx
+
+ mov $(SEG_r3data << 3 | 3), %ax
+ mov %ax, %ds
+ mov %ax, %es
+ mov %ax, %fs
+ mov %ax, %gs
+
+ sysexit
+
+
+.global sysenter_setup
+.type sysenter_setup, @function
+sysenter_setup:
+ xor %edx, %edx
+ mov $(SEG_r0code << 3), %eax
+ mov $IA32_SYSENTER_CS, %ecx
+ wrmsr
+ ret