diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-11-24 22:37:20 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-11-24 22:37:20 +0100 |
| commit | ea8d5390ebe2f1917d07f4eed416661ade96c953 (patch) | |
| tree | b53236e7f42e3955b607b0ff0b43ddf830901ef5 /include | |
| parent | 192208770d3866838a450462dd4b1fc8e2b5c91a (diff) | |
| download | fbos-ea8d5390ebe2f1917d07f4eed416661ade96c953.tar.gz fbos-ea8d5390ebe2f1917d07f4eed416661ade96c953.zip | |
Simplify the entry address computation
We actually don't need to preserve the initially computed base address
for each binary, but we can just preserve the final entry address.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/fbos/sched.h | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/include/fbos/sched.h b/include/fbos/sched.h index e05d0a1..3d35f9f 100644 --- a/include/fbos/sched.h +++ b/include/fbos/sched.h @@ -12,18 +12,30 @@ enum task_id { TASK_FIZZBUZZ = 3, }; -// TODO: if we only care about the absolute address, it can be further -// simplified. +// All the information we need to grab for processes. struct task_struct { + // The stack allocated for the process. As you can see when initializing + // each process on `kernel/main.c`, we go over the top for its size. There + // is also the fact that we need to keep this as the first attribue to allow + // for simple `sp` values. void *stack; - const void *addr; - uint64_t entry_offset; + + // The address for the binary entry. + const void *entry_addr; }; // Tasks available on this kernel. extern struct task_struct tasks[4]; -// Switch execution to the given task id. -void switch_to(int task_id); +// Switch execution to the given U-mode task. Note that this function will not +// do the actual returning, but it prepares the relevant registers for an +// eventual jump. +__kernel __always_inline void switch_to(int task_id) +{ + asm volatile("csrc sstatus, %0\n\t" + "mv ra, %1\n\t" + "csrw sepc, ra" ::"r"(1 << 8), + "r"(tasks[task_id].entry_addr)); +} #endif // __FBOS_SCHED_H_ |
