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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
#ifndef APOS_RISCV_SBI_H
#define APOS_RISCV_SBI_H
/**
* @file sbi.h
* riscv64-specific OpenSBI definitions.
*/
#include <apos/types.h>
/** Return structure of SBI calls. */
struct sbiret {
/** Error code. \see sbi_ecodes */
long error;
/** Value. */
long value;
};
/** SBI error codes. */
enum sbi_ecodes {
/** Succesful call. */
SBI_SUCCESS = 0,
/** Unsuccesful call. */
SBI_ERR_FAILED = -1,
/** Not supported. */
SBI_ERR_NOT_SUPPORTED = -2,
/** Invalid parameter. */
SBI_ERR_INVALID_PARAM = -3,
/** Access denied. */
SBI_ERR_DENIED = -4,
/** Invalid address. */
SBI_ERR_INVALID_ADDRESS = -5,
/** Already available. */
SBI_ERR_ALREADY_AVAILABLE = -6,
/** Already started. */
SBI_ERR_ALREADY_STARTED = -7,
/** Already stopped. */
SBI_ERR_ALREADY_STOPPED = -8,
};
/**
* Do an SBI call.
*
* @param ext \c EXT field of call.
* @param fid \c FID field of call.
* @param arg0 Argument 0.
* @param arg1 Argument 1.
* @param arg2 Argument 2.
* @param arg3 Argument 3.
* @param arg4 Argument 4.
* @param arg5 Argument 5.
* @return SBI call return. \see sbiret.
* @todo Query which extensions are available.
*/
struct sbiret sbi_ecall(int ext, int fid, unsigned long arg0,
unsigned long arg1, unsigned long arg2,
unsigned long arg3, unsigned long arg4,
unsigned long arg5);
/** Timer extension ID. */
#define EID_TIME 0x54494D45
/** Function ID of sbi_set_timer(). */
#define FID_SET_TIMER 0
/**
* Start timer. IRQs have to be enabled for the timer to trigger.
*
* @param stime_value Absolute timepoint in ticks.
* @return SBI call return. \see sbiret.
* @todo Read timebase from fdt, seems to be clocks/sec for accurate timers.
*/
static inline struct sbiret sbi_set_timer(uint64_t stime_value)
{
#if defined(riscv32)
return sbi_ecall(EID_TIME, FID_SET_TIMER, stime_value,
stime_value >> 32, 0, 0, 0, 0);
#else
return sbi_ecall(EID_TIME, FID_SET_TIMER, stime_value, 0, 0, 0, 0, 0);
#endif
}
/** System reset extension ID. */
#define EID_SRST 0x53525354
/** Function ID of sbi_system_reset(). */
#define FID_RESET 0
/**
* Reset system.
*
* @param reset_type Type of reset. \see SBI_SHUTDOWN, SBI_COLD_REBOOT,
* SBI_WARM_REBOOT.
* @param reset_reason Reason for reset. Optional, probably won't be used by the
* kernel.
* @return SBI call return \see sbiret.
* @todo Should \ref SBI_SHUTDOWN etc. be defined in this file instead?
*/
static inline struct sbiret sbi_system_reset(uint32_t reset_type,
uint32_t reset_reason)
{
return sbi_ecall(EID_SRST, FID_RESET, reset_type, reset_reason, 0, 0, 0,
0);
}
#endif /* APOS_RISCV_SBI_H */
|