-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsched.c
63 lines (51 loc) · 1.18 KB
/
sched.c
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
#include "os.h"
extern void switch_to(struct context *next);
#define MAX_TASKS 10
#define STACK_SIZE 1024
/*
* In the standard RISC-V calling convention, the stack pointer sp
* is always 16-byte aligned.
*/
uint8_t __attribute__((aligned(16))) task_stack[MAX_TASKS][STACK_SIZE];
struct context ctx_tasks[MAX_TASKS];
static int _top = 0; // current number of task
static int _current = -1; // point to the context of current task
void user_task0(void);
void sched_init()
{
w_mscratch(0);
w_mie(r_mie() | MIE_MSIE);
}
void schedule()
{
if (_top <= 0)
{
panic("Num of task should be greater than zero!");
return;
}
_current = (_current + 1) % _top;
struct context *next = &(ctx_tasks[_current]);
switch_to(next);
}
int task_create(void (*start_routin)(void))
{
if (_top < MAX_TASKS)
{
ctx_tasks[_top].sp = (reg_t)&task_stack[_top][STACK_SIZE];
ctx_tasks[_top].pc = (reg_t)start_routin;
_top++;
return 0;
}
return -1;
}
void task_yield()
{
int id = r_mhartid();
*(uint32_t*)CLINT_MSIP(id) = 1;
}
void task_delay(volatile int count)
{
count *= 50000;
while (count--)
;
}