summaryrefslogtreecommitdiff
path: root/platform/sysenter.s
diff options
context:
space:
mode:
Diffstat (limited to 'platform/sysenter.s')
-rw-r--r--platform/sysenter.s31
1 files changed, 31 insertions, 0 deletions
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