blob: d01674d8a32803daef7eebf3ce2eef23791e8ed5 (
plain) (
blame)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
#ifndef APOS_ARCH_PROC_H
#define APOS_ARCH_PROC_H
/**
* @file proc.h
* Arch-specific process related stuff.
*/
#if defined(riscv64)
#include "../../arch/riscv64/include/proc.h"
#elif defined(riscv32)
#include "../../arch/riscv32/include/proc.h"
#endif
#include <apos/uapi.h>
/**
* Attach argument data to thread.
*
* @param t Thread that will run after return.
* @param a Arguments to attach.
*/
void set_args(struct tcb *t, struct sys_ret a);
/**
* Get argument data attached to thread.
* To some extent a hack, used by swap.
*
* @todo is swap necessary? Would assign be enough?
*
* @param t Thread to read data from.
* @return Args associated with thread.
*/
struct sys_ret get_args(struct tcb *t);
/** \todo Should these be in arch/tcb.h or something? */
/**
* Attach thread stack and thread local storage when returning to userspace.
*
* Their info should already be stored in \c t, and this function just
* actualizes the information.
*
* @param t Thread that will run after return.
*/
void set_thread(struct tcb *t);
/**
* Copy registers from tcb save area to address \p p.
* Intended to be used for copying thread state to rpc stack.
*
* @param t Thread whose registers to save.
* @param p Address to save to.
*/
void save_regs(struct tcb *t, void *p);
/**
* Copy registers from address \p p to tcb save registers.
* Intended to be used for copying thread state from rpc stack.
*
* @param p Address to load from.
* @param t Thread whose registers to load.
*/
void load_regs(void *p, struct tcb *t);
void adjust_ipi(struct tcb *t);
void adjust_syscall(struct tcb *t);
/**
* Run \c init program.
*
* @param t Thread that \c init is attached to.
* @param fdt Pointer to FDT that is passed to \c init.
*/
__noreturn void run_init(struct tcb *t, void *fdt);
#endif /* APOS_ARCH_PROC_H */
|