mirror of
https://github.com/LearningOS/rust-based-os-comp2022.git
synced 2026-05-07 22:34:01 +08:00
48 lines
1.2 KiB
Rust
48 lines
1.2 KiB
Rust
//! Implementation of [`TrapContext`]
|
|
|
|
use riscv::register::sstatus::{self, Sstatus, SPP};
|
|
|
|
#[repr(C)]
|
|
/// trap context structure containing sstatus, sepc and registers
|
|
pub struct TrapContext {
|
|
/// General-Purpose Register x0-31
|
|
pub x: [usize; 32],
|
|
/// sstatus
|
|
pub sstatus: Sstatus,
|
|
/// sepc
|
|
pub sepc: usize,
|
|
/// Token of kernel address space
|
|
pub kernel_satp: usize,
|
|
/// Kernel stack pointer of the current application
|
|
pub kernel_sp: usize,
|
|
/// Virtual address of trap handler entry point in kernel
|
|
pub trap_handler: usize,
|
|
}
|
|
|
|
impl TrapContext {
|
|
pub fn set_sp(&mut self, sp: usize) {
|
|
self.x[2] = sp;
|
|
}
|
|
pub fn app_init_context(
|
|
entry: usize,
|
|
sp: usize,
|
|
kernel_satp: usize,
|
|
kernel_sp: usize,
|
|
trap_handler: usize,
|
|
) -> Self {
|
|
let mut sstatus = sstatus::read();
|
|
// set CPU privilege to User after trapping back
|
|
sstatus.set_spp(SPP::User);
|
|
let mut cx = Self {
|
|
x: [0; 32],
|
|
sstatus,
|
|
sepc: entry,
|
|
kernel_satp,
|
|
kernel_sp,
|
|
trap_handler,
|
|
};
|
|
cx.set_sp(sp);
|
|
cx
|
|
}
|
|
}
|