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
|
/***************************************************************************
* Copyright (c) 2026 10xEngineers
*
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
*
* SPDX-License-Identifier: MIT
**************************************************************************/
/* Trap entry and low-level init for RISC-V QEMU virt regression tests.
Supports both RV32 and RV64 via __riscv_xlen conditionals. */
#include "csr.h"
#if __riscv_xlen == 64
#define STORE sd
#define LOAD ld
#define REGBYTES 8
#else
#define STORE sw
#define LOAD lw
#define REGBYTES 4
#endif
.section .text
.align 4
/**************************************************************************/
/* trap_entry — saves context, calls C trap_handler, restores context. */
/**************************************************************************/
.global trap_entry
.extern trap_handler
.extern _tx_thread_context_restore
trap_entry:
#if defined(__riscv_float_abi_single) || defined(__riscv_float_abi_double)
addi sp, sp, -(65 * REGBYTES)
#else
addi sp, sp, -(32 * REGBYTES)
#endif
STORE x1, (28 * REGBYTES)(sp)
call _tx_thread_context_save
csrr a0, mcause
csrr a1, mepc
csrr a2, mtval
addi sp, sp, -REGBYTES
STORE ra, 0(sp)
call trap_handler
LOAD ra, 0(sp)
addi sp, sp, REGBYTES
call _tx_thread_context_restore
_trap_err:
wfi
j _trap_err
/**************************************************************************/
/* _tx_initialize_low_level — hardware init for QEMU virt. */
/**************************************************************************/
.section .text
.global _tx_initialize_low_level
.extern _end
.extern board_init
_tx_initialize_low_level:
la t0, _tx_thread_system_stack_ptr
STORE sp, 0(t0)
la t0, _end
la t1, _tx_initialize_unused_memory
STORE t0, 0(t1)
li t0, MSTATUS_MIE
csrrc zero, mstatus, t0
li t0, (MSTATUS_MPP_M | MSTATUS_MPIE)
csrrs zero, mstatus, t0
li t0, (MIE_MTIE | MIE_MSIE | MIE_MEIE)
csrrs zero, mie, t0
#ifdef __riscv_flen
li t0, MSTATUS_FS
csrrs zero, mstatus, t0
fscsr x0
#endif
addi sp, sp, -REGBYTES
STORE ra, 0(sp)
call board_init
LOAD ra, 0(sp)
addi sp, sp, REGBYTES
la t0, trap_entry
csrw mtvec, t0
ret
|