blob: c14f3174f01ebab681dac2f56ff83a700a06b54b (
plain)
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
|
/*
* SPDX-License-Identifier: BSD-2-Clause
*
* Copyright (c) 2026 RISCstar Solutions.
*
* Authors:
* Dave Patel <dave.patel@riscstar.com>
*/
#ifndef __SBI_VECTOR_H__
#define __SBI_VECTOR_H__
#include <sbi/sbi_types.h>
struct sbi_vector_context {
unsigned long vcsr;
unsigned long vstart;
/* size depends on VLEN */
uint8_t vregs[];
};
#define SET_VS_DIRTY(regs) do { \
if (sbi_regs_from_virt(regs)) \
csr_set(CSR_VSSTATUS, MSTATUS_VS); \
regs->mstatus |= MSTATUS_VS; \
} while(0)
#ifdef OPENSBI_CC_SUPPORT_VECTOR
void sbi_vector_save(struct sbi_vector_context *dst);
void sbi_vector_restore(const struct sbi_vector_context *src);
size_t sbi_vector_context_size(void);
#else
static inline void sbi_vector_save(struct sbi_vector_context *dst)
{
}
static inline void sbi_vector_restore(const struct sbi_vector_context *src)
{
}
static inline size_t sbi_vector_context_size(void)
{
return 0;
}
#endif /* OPENSBI_CC_SUPPORT_VECTOR */
#endif /* __SBI_VECTOR_H__ */
|