1 | /* |
---|
2 | * hal_context.c - Implementation of Thread Context API for x86_64 |
---|
3 | * |
---|
4 | * Copyright (c) 2017 Maxime Villard |
---|
5 | * |
---|
6 | * This file is part of ALMOS-MKH. |
---|
7 | * |
---|
8 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
9 | * under the terms of the GNU General Public License as published by |
---|
10 | * the Free Software Foundation; version 2.0 of the License. |
---|
11 | * |
---|
12 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
13 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
15 | * General Public License for more details. |
---|
16 | * |
---|
17 | * You should have received a copy of the GNU General Public License |
---|
18 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
19 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
20 | */ |
---|
21 | |
---|
22 | #include <hal_kernel_types.h> |
---|
23 | #include <memcpy.h> |
---|
24 | #include <thread.h> |
---|
25 | #include <string.h> |
---|
26 | #include <process.h> |
---|
27 | #include <printk.h> |
---|
28 | #include <vmm.h> |
---|
29 | #include <core.h> |
---|
30 | #include <cluster.h> |
---|
31 | |
---|
32 | #include <hal_context.h> |
---|
33 | #include <hal_kentry.h> |
---|
34 | #include <hal_internal.h> |
---|
35 | #include <hal_segmentation.h> |
---|
36 | |
---|
37 | error_t hal_cpu_context_create(struct thread_s *thread) |
---|
38 | { |
---|
39 | hal_trapframe_t *tf; |
---|
40 | hal_cpu_context_t *ctx; |
---|
41 | uint64_t kstacktop; |
---|
42 | kmem_req_t req; |
---|
43 | |
---|
44 | kstacktop = (uint64_t)thread->k_stack_base + thread->k_stack_size; |
---|
45 | |
---|
46 | /* allocate memory for cpu_context */ |
---|
47 | req.type = KMEM_CPU_CTX; |
---|
48 | req.size = sizeof(hal_cpu_context_t); |
---|
49 | req.flags = AF_KERNEL | AF_ZERO; |
---|
50 | |
---|
51 | ctx = (hal_cpu_context_t *)kmem_alloc(&req); |
---|
52 | if (ctx == NULL) |
---|
53 | return ENOMEM; |
---|
54 | |
---|
55 | /* set cpu context pointer in thread */ |
---|
56 | thread->cpu_context = (void *)ctx; |
---|
57 | |
---|
58 | /* |
---|
59 | * Build the context |
---|
60 | */ |
---|
61 | ctx->ctx_rsp0 = kstacktop & ~0xF; |
---|
62 | ctx->ctx_tf = (uint64_t)&ctx->ctx_hidden_tf; |
---|
63 | ctx->ctx_intr = INTRS_ENABLED; |
---|
64 | |
---|
65 | /* |
---|
66 | * Build the trap frame |
---|
67 | */ |
---|
68 | tf = &ctx->ctx_hidden_tf; |
---|
69 | tf->tf_rdi = (uint64_t)thread->entry_args; |
---|
70 | tf->tf_gs = GDT_FIXED_SEL(GDT_UDATA_SEL, SEL_UPL); |
---|
71 | tf->tf_fs = GDT_FIXED_SEL(GDT_UDATA_SEL, SEL_UPL); |
---|
72 | tf->tf_es = GDT_FIXED_SEL(GDT_UDATA_SEL, SEL_UPL); |
---|
73 | tf->tf_ds = GDT_FIXED_SEL(GDT_UDATA_SEL, SEL_UPL); |
---|
74 | tf->tf_rip = (uint64_t)thread->entry_func; |
---|
75 | tf->tf_rflags = PSL_USERSET; |
---|
76 | |
---|
77 | if (thread->type == THREAD_USER) { |
---|
78 | tf->tf_cs = GDT_FIXED_SEL(GDT_UCODE_SEL, SEL_UPL); |
---|
79 | tf->tf_ss = GDT_FIXED_SEL(GDT_UDATA_SEL, SEL_UPL); |
---|
80 | tf->tf_rsp = ((uint64_t)thread->u_stack_base) + |
---|
81 | thread->u_stack_size; |
---|
82 | } else { |
---|
83 | tf->tf_cs = GDT_FIXED_SEL(GDT_KCODE_SEL, SEL_KPL); |
---|
84 | tf->tf_ss = GDT_FIXED_SEL(GDT_KDATA_SEL, SEL_KPL); |
---|
85 | tf->tf_rsp = kstacktop; |
---|
86 | } |
---|
87 | |
---|
88 | return 0; |
---|
89 | } |
---|
90 | |
---|
91 | error_t hal_cpu_context_copy(thread_t *dst, thread_t *src) |
---|
92 | { |
---|
93 | x86_panic((char *)__func__); |
---|
94 | return 0; |
---|
95 | } |
---|
96 | |
---|
97 | void hal_cpu_context_destroy(thread_t *thread) |
---|
98 | { |
---|
99 | x86_panic((char *)__func__); |
---|
100 | } |
---|
101 | |
---|
102 | void hal_cpu_context_switch(thread_t *old, thread_t *new) |
---|
103 | { |
---|
104 | process_t *oldproc = old->process; |
---|
105 | process_t *newproc = new->process; |
---|
106 | |
---|
107 | curtls()->tls_thr = new; |
---|
108 | |
---|
109 | /* Switch the VM space */ |
---|
110 | if (newproc != oldproc) { |
---|
111 | lcr3((uint64_t)newproc->vmm.gpt.ppn << CONFIG_PPM_PAGE_SHIFT); |
---|
112 | } |
---|
113 | |
---|
114 | /* Switch the CPU context */ |
---|
115 | cpu_context_switch(old->cpu_context, new->cpu_context); |
---|
116 | } |
---|
117 | |
---|
118 | void hal_cpu_context_load( thread_t * thread ) |
---|
119 | { |
---|
120 | x86_panic((char *)__func__); |
---|
121 | } |
---|
122 | |
---|
123 | error_t hal_fpu_context_create( thread_t * thread ) |
---|
124 | { |
---|
125 | /* FPU not implemented yet */ |
---|
126 | return 0; |
---|
127 | } |
---|
128 | |
---|
129 | error_t hal_fpu_context_copy( thread_t * dst, |
---|
130 | thread_t * src ) |
---|
131 | { |
---|
132 | x86_panic((char *)__func__); |
---|
133 | return 0; |
---|
134 | } |
---|
135 | |
---|
136 | void hal_fpu_context_destroy( thread_t * thread ) |
---|
137 | { |
---|
138 | x86_panic((char *)__func__); |
---|
139 | } |
---|
140 | |
---|
141 | void hal_fpu_context_save( thread_t * thread ) |
---|
142 | { |
---|
143 | x86_panic((char *)__func__); |
---|
144 | } |
---|
145 | |
---|
146 | void hal_fpu_context_restore( thread_t * thread ) |
---|
147 | { |
---|
148 | x86_panic((char *)__func__); |
---|
149 | } |
---|
150 | |
---|
151 | void hal_fpu_context_dup( xptr_t dst, |
---|
152 | xptr_t src ) |
---|
153 | { |
---|
154 | x86_panic((char *)__func__); |
---|
155 | } |
---|
156 | |
---|