You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.1 KiB
C
81 lines
1.1 KiB
C
3 years ago
|
#include "ecall.h"
|
||
|
#include "sched.h"
|
||
|
#include "csr.h"
|
||
|
|
||
|
void ecall_handle_fork()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void ecall_handle_sleep(int until)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void ecall_handle_wait(int pid, int timeout)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void ecall_handle_kill(int pid)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void ecall_handle_exit(int status)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void ecall_handle_m_create()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void ecall_handle_m_lock(int mutex_id)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void ecall_handle_m_unlock(int mutex_id)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void ecall_handle_m_destroy(int mutex_id)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void trap_handle_ecall() {
|
||
|
int *regs = get_current_process_registers();
|
||
|
int code = regs[16];
|
||
|
__asm__("ebreak");
|
||
|
HALT(18);
|
||
|
}
|
||
|
|
||
|
void trap_handle(int interrupt_bit, int code, int mtval)
|
||
|
{
|
||
|
if (interrupt_bit) {
|
||
|
switch (code) {
|
||
|
case 7:
|
||
|
scheduler_run_next();
|
||
|
break;
|
||
|
default:
|
||
|
// impossible
|
||
|
HALT(12)
|
||
|
break;
|
||
|
}
|
||
|
} else {
|
||
|
switch (code) {
|
||
|
case 8: // user ecall
|
||
|
trap_handle_ecall();
|
||
|
break;
|
||
|
default:
|
||
|
HALT(13);
|
||
|
}
|
||
|
}
|
||
|
HALT(1);
|
||
|
__builtin_unreachable();
|
||
|
}
|