19#ifndef ZEPHYR_INCLUDE_ARCH_RISCV_THREAD_H_
20#define ZEPHYR_INCLUDE_ARCH_RISCV_THREAD_H_
36#if !defined(CONFIG_RISCV_ISA_RV32E)
49typedef struct _callee_saved _callee_saved_t;
51#if !defined(RV_FP_TYPE)
52#ifdef CONFIG_CPU_HAS_FPU_DOUBLE_PRECISION
53#define RV_FP_TYPE uint64_t
55#define RV_FP_TYPE uint32_t
59struct z_riscv_fp_context {
60 RV_FP_TYPE fa0, fa1, fa2, fa3, fa4, fa5, fa6, fa7;
61 RV_FP_TYPE ft0, ft1, ft2, ft3, ft4, ft5, ft6, ft7, ft8, ft9, ft10, ft11;
62 RV_FP_TYPE fs0, fs1, fs2, fs3, fs4, fs5, fs6, fs7, fs8, fs9, fs10, fs11;
65typedef struct z_riscv_fp_context z_riscv_fp_context_t;
68#ifdef CONFIG_FPU_SHARING
69 struct z_riscv_fp_context saved_fp_context;
70 bool fpu_recently_used;
73#ifdef CONFIG_USERSPACE
74 unsigned long priv_stack_start;
75 unsigned long u_mode_pmpaddr_regs[CONFIG_PMP_SLOTS];
76 unsigned long u_mode_pmpcfg_regs[CONFIG_PMP_SLOTS / (__riscv_xlen / 8)];
77 unsigned int u_mode_pmp_domain_offset;
78 unsigned int u_mode_pmp_end_index;
79 unsigned int u_mode_pmp_update_nr;
81#ifdef CONFIG_PMP_KERNEL_MODE_DYNAMIC
82 unsigned int m_mode_pmp_end_index;
83 unsigned long m_mode_pmpaddr_regs[CONFIG_PMP_SLOTS];
84 unsigned long m_mode_pmpcfg_regs[CONFIG_PMP_SLOTS / (__riscv_xlen / 8)];
86#if defined(CONFIG_CPP) && !defined(CONFIG_FPU_SHARING) && !defined(CONFIG_USERSPACE) && \
87 !defined(CONFIG_PMP_STACK_GUARD)
89 uint8_t unused_cpp_size_compatibility;
93#if defined(CONFIG_CPP)
97typedef struct _thread_arch _thread_arch_t;
99#ifdef CONFIG_USERSPACE
103extern bool z_riscv_thread_is_user_mode(
void);
#define RV_FP_TYPE
Definition thread.h:55
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT8_TYPE__ uint8_t
Definition stdint.h:88