-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcontext.rs
More file actions
267 lines (243 loc) · 7.54 KB
/
Copy pathcontext.rs
File metadata and controls
267 lines (243 loc) · 7.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
use core::{arch::naked_asm, fmt};
use memory_addr::VirtAddr;
/// Saved registers when a trap (exception) occurs.
#[repr(C)]
#[derive(Default, Clone, Copy)]
pub struct TrapFrame {
/// General-purpose registers (R0..R30).
pub r: [u64; 31],
/// User Stack Pointer (SP_EL0).
pub usp: u64,
/// Exception Link Register (ELR_EL1).
pub elr: u64,
/// Saved Process Status Register (SPSR_EL1).
pub spsr: u64,
}
impl fmt::Debug for TrapFrame {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
writeln!(f, "TrapFrame: {{")?;
for (i, ®) in self.r.iter().enumerate() {
writeln!(f, " r{i}: {reg:#x},")?;
}
writeln!(f, " usp: {:#x},", self.usp)?;
writeln!(f, " elr: {:#x},", self.elr)?;
writeln!(f, " spsr: {:#x},", self.spsr)?;
write!(f, "}}")?;
Ok(())
}
}
impl TrapFrame {
/// Gets the 0th syscall argument.
pub const fn arg0(&self) -> usize {
self.r[0] as _
}
/// Gets the 1st syscall argument.
pub const fn arg1(&self) -> usize {
self.r[1] as _
}
/// Gets the 2nd syscall argument.
pub const fn arg2(&self) -> usize {
self.r[2] as _
}
/// Gets the 3rd syscall argument.
pub const fn arg3(&self) -> usize {
self.r[3] as _
}
/// Gets the 4th syscall argument.
pub const fn arg4(&self) -> usize {
self.r[4] as _
}
/// Gets the 5th syscall argument.
pub const fn arg5(&self) -> usize {
self.r[5] as _
}
}
/// FP & SIMD registers.
#[repr(C, align(16))]
#[derive(Debug, Default)]
pub struct FpState {
/// 128-bit SIMD & FP registers (V0..V31)
pub regs: [u128; 32],
/// Floating-point Control Register (FPCR)
pub fpcr: u32,
/// Floating-point Status Register (FPSR)
pub fpsr: u32,
}
#[cfg(feature = "fp-simd")]
impl FpState {
/// Saves the current FP/SIMD states from CPU to this structure.
pub fn save(&mut self) {
unsafe { fpstate_save(self) }
}
/// Restores the FP/SIMD states from this structure to CPU.
pub fn restore(&self) {
unsafe { fpstate_restore(self) }
}
}
/// Saved hardware states of a task.
///
/// The context usually includes:
///
/// - Callee-saved registers
/// - Stack pointer register
/// - Thread pointer register (for thread-local storage, currently unsupported)
/// - FP/SIMD registers
///
/// On context switch, current task saves its context from CPU to memory,
/// and the next task restores its context from memory to CPU.
#[allow(missing_docs)]
#[repr(C)]
#[derive(Debug, Default)]
pub struct TaskContext {
pub sp: u64,
pub tpidr_el0: u64,
pub r19: u64,
pub r20: u64,
pub r21: u64,
pub r22: u64,
pub r23: u64,
pub r24: u64,
pub r25: u64,
pub r26: u64,
pub r27: u64,
pub r28: u64,
pub r29: u64,
pub lr: u64, // r30
/// The `ttbr0_el1` register value, i.e., the page table root.
#[cfg(feature = "uspace")]
pub ttbr0_el1: memory_addr::PhysAddr,
#[cfg(feature = "fp-simd")]
pub fp_state: FpState,
}
impl TaskContext {
/// Creates a dummy context for a new task.
///
/// Note the context is not initialized, it will be filled by [`switch_to`]
/// (for initial tasks) and [`init`] (for regular tasks) methods.
///
/// [`init`]: TaskContext::init
/// [`switch_to`]: TaskContext::switch_to
pub fn new() -> Self {
Self::default()
}
/// Initializes the context for a new task, with the given entry point and
/// kernel stack.
pub fn init(&mut self, entry: usize, kstack_top: VirtAddr, tls_area: VirtAddr) {
self.sp = kstack_top.as_usize() as u64;
self.lr = entry as u64;
// When under `uspace` feature, kernel will not use this register.
self.tpidr_el0 = tls_area.as_usize() as u64;
}
/// Changes the page table root in this context.
///
/// The hardware register for user page table root (`ttbr0_el1` for aarch64 in EL1)
/// will be updated to the next task's after [`Self::switch_to`].
#[cfg(feature = "uspace")]
pub fn set_page_table_root(&mut self, ttbr0_el1: memory_addr::PhysAddr) {
self.ttbr0_el1 = ttbr0_el1;
}
/// Switches to another task.
///
/// It first saves the current task's context from CPU to this place, and then
/// restores the next task's context from `next_ctx` to CPU.
pub fn switch_to(&mut self, next_ctx: &Self) {
#[cfg(feature = "fp-simd")]
{
self.fp_state.save();
next_ctx.fp_state.restore();
}
#[cfg(feature = "uspace")]
if self.ttbr0_el1 != next_ctx.ttbr0_el1 {
unsafe { crate::asm::write_user_page_table(next_ctx.ttbr0_el1) };
crate::asm::flush_tlb(None); // currently flush the entire TLB
}
unsafe { context_switch(self, next_ctx) }
}
}
#[unsafe(naked)]
unsafe extern "C" fn context_switch(_current_task: &mut TaskContext, _next_task: &TaskContext) {
naked_asm!(
"
// save old context (callee-saved registers)
stp x29, x30, [x0, 12 * 8]
stp x27, x28, [x0, 10 * 8]
stp x25, x26, [x0, 8 * 8]
stp x23, x24, [x0, 6 * 8]
stp x21, x22, [x0, 4 * 8]
stp x19, x20, [x0, 2 * 8]
mov x19, sp
mrs x20, tpidr_el0
stp x19, x20, [x0]
// restore new context
ldp x19, x20, [x1]
mov sp, x19
msr tpidr_el0, x20
ldp x19, x20, [x1, 2 * 8]
ldp x21, x22, [x1, 4 * 8]
ldp x23, x24, [x1, 6 * 8]
ldp x25, x26, [x1, 8 * 8]
ldp x27, x28, [x1, 10 * 8]
ldp x29, x30, [x1, 12 * 8]
ret",
)
}
#[unsafe(naked)]
#[cfg(feature = "fp-simd")]
unsafe extern "C" fn fpstate_save(state: &mut FpState) {
naked_asm!(
".arch armv8
// save fp/neon context
mrs x9, fpcr
mrs x10, fpsr
stp q0, q1, [x0, 0 * 16]
stp q2, q3, [x0, 2 * 16]
stp q4, q5, [x0, 4 * 16]
stp q6, q7, [x0, 6 * 16]
stp q8, q9, [x0, 8 * 16]
stp q10, q11, [x0, 10 * 16]
stp q12, q13, [x0, 12 * 16]
stp q14, q15, [x0, 14 * 16]
stp q16, q17, [x0, 16 * 16]
stp q18, q19, [x0, 18 * 16]
stp q20, q21, [x0, 20 * 16]
stp q22, q23, [x0, 22 * 16]
stp q24, q25, [x0, 24 * 16]
stp q26, q27, [x0, 26 * 16]
stp q28, q29, [x0, 28 * 16]
stp q30, q31, [x0, 30 * 16]
str x9, [x0, 64 * 8]
str x10, [x0, 65 * 8]
isb
ret"
)
}
#[unsafe(naked)]
#[cfg(feature = "fp-simd")]
unsafe extern "C" fn fpstate_restore(state: &FpState) {
naked_asm!(
".arch armv8
// restore fp/neon context
ldp q0, q1, [x0, 0 * 16]
ldp q2, q3, [x0, 2 * 16]
ldp q4, q5, [x0, 4 * 16]
ldp q6, q7, [x0, 6 * 16]
ldp q8, q9, [x0, 8 * 16]
ldp q10, q11, [x0, 10 * 16]
ldp q12, q13, [x0, 12 * 16]
ldp q14, q15, [x0, 14 * 16]
ldp q16, q17, [x0, 16 * 16]
ldp q18, q19, [x0, 18 * 16]
ldp q20, q21, [x0, 20 * 16]
ldp q22, q23, [x0, 22 * 16]
ldp q24, q25, [x0, 24 * 16]
ldp q26, q27, [x0, 26 * 16]
ldp q28, q29, [x0, 28 * 16]
ldp q30, q31, [x0, 30 * 16]
ldr x9, [x0, 64 * 8]
ldr x10, [x0, 65 * 8]
msr fpcr, x9
msr fpsr, x10
isb
ret"
)
}