Update from previous chapters.
This commit is contained in:
parent
3851c2d561
commit
c33c0f8aea
7 changed files with 31 additions and 21 deletions
|
@ -15,7 +15,7 @@ pub fn kernel_stack_position(app_id: usize) -> (usize, usize) {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "board_k210")]
|
#[cfg(feature = "board_k210")]
|
||||||
pub const CPU_FREQ: usize = 10000000;
|
pub const CLOCK_FREQ: usize = 10000000;
|
||||||
|
|
||||||
#[cfg(feature = "board_qemu")]
|
#[cfg(feature = "board_qemu")]
|
||||||
pub const CPU_FREQ: usize = 12500000;
|
pub const CLOCK_FREQ: usize = 12500000;
|
|
@ -2,10 +2,10 @@ use crate::task::{
|
||||||
suspend_current_and_run_next,
|
suspend_current_and_run_next,
|
||||||
exit_current_and_run_next,
|
exit_current_and_run_next,
|
||||||
};
|
};
|
||||||
use crate::timer::get_time;
|
use crate::timer::get_time_ms;
|
||||||
|
|
||||||
pub fn sys_exit(xstate: i32) -> ! {
|
pub fn sys_exit(exit_code: i32) -> ! {
|
||||||
println!("[kernel] Application exited with code {}", xstate);
|
println!("[kernel] Application exited with code {}", exit_code);
|
||||||
exit_current_and_run_next();
|
exit_current_and_run_next();
|
||||||
panic!("Unreachable in sys_exit!");
|
panic!("Unreachable in sys_exit!");
|
||||||
}
|
}
|
||||||
|
@ -16,5 +16,5 @@ pub fn sys_yield() -> isize {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn sys_get_time() -> isize {
|
pub fn sys_get_time() -> isize {
|
||||||
get_time() as isize
|
get_time_ms() as isize
|
||||||
}
|
}
|
|
@ -1,13 +1,18 @@
|
||||||
use riscv::register::time;
|
use riscv::register::time;
|
||||||
use crate::sbi::set_timer;
|
use crate::sbi::set_timer;
|
||||||
use crate::config::CPU_FREQ;
|
use crate::config::CLOCK_FREQ;
|
||||||
|
|
||||||
const TICKS_PER_SEC: usize = 100;
|
const TICKS_PER_SEC: usize = 100;
|
||||||
|
const MSEC_PER_SEC: usize = 1000;
|
||||||
|
|
||||||
pub fn get_time() -> usize {
|
pub fn get_time() -> usize {
|
||||||
time::read()
|
time::read()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_next_trigger() {
|
pub fn get_time_ms() -> usize {
|
||||||
set_timer(get_time() + CPU_FREQ / TICKS_PER_SEC);
|
time::read() / (CLOCK_FREQ / MSEC_PER_SEC)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn set_next_trigger() {
|
||||||
|
set_timer(get_time() + CLOCK_FREQ / TICKS_PER_SEC);
|
||||||
}
|
}
|
|
@ -4,14 +4,14 @@
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate user_lib;
|
extern crate user_lib;
|
||||||
|
|
||||||
use user_lib::{sys_get_time, sys_yield};
|
use user_lib::{get_time, yield_};
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
fn main() -> i32 {
|
fn main() -> i32 {
|
||||||
let current_timer = sys_get_time();
|
let current_timer = get_time();
|
||||||
let wait_for = current_timer + 10000000;
|
let wait_for = current_timer + 3000;
|
||||||
while sys_get_time() < wait_for {
|
while get_time() < wait_for {
|
||||||
sys_yield();
|
yield_();
|
||||||
}
|
}
|
||||||
println!("Test sleep OK!");
|
println!("Test sleep OK!");
|
||||||
0
|
0
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
use core::fmt::{self, Write};
|
use core::fmt::{self, Write};
|
||||||
use crate::syscall::{STDOUT, sys_write};
|
use super::write;
|
||||||
|
|
||||||
struct Stdout;
|
struct Stdout;
|
||||||
|
|
||||||
|
const STDOUT: usize = 1;
|
||||||
|
|
||||||
impl Write for Stdout {
|
impl Write for Stdout {
|
||||||
fn write_str(&mut self, s: &str) -> fmt::Result {
|
fn write_str(&mut self, s: &str) -> fmt::Result {
|
||||||
sys_write(STDOUT, s.as_bytes());
|
write(STDOUT, s.as_bytes());
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ mod lang_items;
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
#[link_section = ".text.entry"]
|
#[link_section = ".text.entry"]
|
||||||
pub extern "C" fn _start() -> ! {
|
pub extern "C" fn _start() -> ! {
|
||||||
syscall::sys_exit(main());
|
exit(main());
|
||||||
panic!("unreachable after sys_exit!");
|
panic!("unreachable after sys_exit!");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,4 +22,9 @@ fn main() -> i32 {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
pub use syscall::*;
|
use syscall::*;
|
||||||
|
|
||||||
|
pub fn write(fd: usize, buf: &[u8]) -> isize { sys_write(fd, buf) }
|
||||||
|
pub fn exit(exit_code: i32) -> isize { sys_exit(exit_code) }
|
||||||
|
pub fn yield_() -> isize { sys_yield() }
|
||||||
|
pub fn get_time() -> isize { sys_get_time() }
|
|
@ -1,5 +1,3 @@
|
||||||
pub const STDOUT: usize = 1;
|
|
||||||
|
|
||||||
const SYSCALL_WRITE: usize = 64;
|
const SYSCALL_WRITE: usize = 64;
|
||||||
const SYSCALL_EXIT: usize = 93;
|
const SYSCALL_EXIT: usize = 93;
|
||||||
const SYSCALL_YIELD: usize = 124;
|
const SYSCALL_YIELD: usize = 124;
|
||||||
|
@ -22,8 +20,8 @@ pub fn sys_write(fd: usize, buffer: &[u8]) -> isize {
|
||||||
syscall(SYSCALL_WRITE, [fd, buffer.as_ptr() as usize, buffer.len()])
|
syscall(SYSCALL_WRITE, [fd, buffer.as_ptr() as usize, buffer.len()])
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn sys_exit(xstate: i32) -> isize {
|
pub fn sys_exit(exit_code: i32) -> isize {
|
||||||
syscall(SYSCALL_EXIT, [xstate as usize, 0, 0])
|
syscall(SYSCALL_EXIT, [exit_code as usize, 0, 0])
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn sys_yield() -> isize {
|
pub fn sys_yield() -> isize {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue