xref: /freebsd/sys/riscv/include/riscvreg.h (revision a907c6914c5879870b2597a63253cea0a5b7bdb8)
1 /*-
2  * Copyright (c) 2015-2016 Ruslan Bukin <br@bsdpad.com>
3  * All rights reserved.
4  *
5  * Portions of this software were developed by SRI International and the
6  * University of Cambridge Computer Laboratory under DARPA/AFRL contract
7  * FA8750-10-C-0237 ("CTSRD"), as part of the DARPA CRASH research programme.
8  *
9  * Portions of this software were developed by the University of Cambridge
10  * Computer Laboratory as part of the CTSRD Project, with support from the
11  * UK Higher Education Innovation Fund (HEIF).
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  * $FreeBSD$
35  */
36 
37 #ifndef _MACHINE_RISCVREG_H_
38 #define	_MACHINE_RISCVREG_H_
39 
40 /* Machine mode requests */
41 #define	ECALL_MTIMECMP		0x01
42 #define	ECALL_CLEAR_PENDING	0x02
43 #define	ECALL_HTIF_CMD		0x03
44 #define	ECALL_HTIF_GET_ENTRY	0x04
45 #define	ECALL_MCPUID_GET	0x05
46 #define	ECALL_MIMPID_GET	0x06
47 #define	ECALL_SEND_IPI		0x07
48 #define	ECALL_CLEAR_IPI		0x08
49 #define	ECALL_HTIF_LOWPUTC	0x09
50 #define	ECALL_MIE_SET		0x0a
51 #define	ECALL_IO_IRQ_MASK	0x0b
52 
53 #define	EXCP_SHIFT			0
54 #define	EXCP_MASK			(0xf << EXCP_SHIFT)
55 #define	EXCP_INSTR_ADDR_MISALIGNED	0
56 #define	EXCP_INSTR_ACCESS_FAULT		1
57 #define	EXCP_INSTR_ILLEGAL		2
58 #define	EXCP_INSTR_BREAKPOINT		3
59 #define	EXCP_LOAD_ADDR_MISALIGNED	4
60 #define	EXCP_LOAD_ACCESS_FAULT		5
61 #define	EXCP_STORE_ADDR_MISALIGNED	6
62 #define	EXCP_STORE_ACCESS_FAULT		7
63 #define	EXCP_UMODE_ENV_CALL		8
64 #define	EXCP_SMODE_ENV_CALL		9
65 #define	EXCP_HMODE_ENV_CALL		10
66 #define	EXCP_MMODE_ENV_CALL		11
67 #define	EXCP_INTR			(1 << 31)
68 #define	EXCP_INTR_SOFTWARE		0
69 #define	EXCP_INTR_TIMER			1
70 #define	EXCP_INTR_HTIF			2
71 
72 #define	SSTATUS_IE			(1 << 0)
73 #define	SSTATUS_PIE			(1 << 3)
74 #define	SSTATUS_PS			(1 << 4)
75 
76 #define	MSTATUS_MPRV		(1 << 16)
77 #define	MSTATUS_PRV_SHIFT	1
78 #define	MSTATUS_PRV1_SHIFT	4
79 #define	MSTATUS_PRV2_SHIFT	7
80 #define	MSTATUS_PRV_MASK	(0x3 << MSTATUS_PRV_SHIFT)
81 #define	MSTATUS_PRV_U		0	/* user */
82 #define	MSTATUS_PRV_S		1	/* supervisor */
83 #define	MSTATUS_PRV_H		2	/* hypervisor */
84 #define	MSTATUS_PRV_M		3	/* machine */
85 
86 #define	MSTATUS_VM_SHIFT	17
87 #define	MSTATUS_VM_MASK		0x1f
88 #define	MSTATUS_VM_MBARE	0
89 #define	MSTATUS_VM_MBB		1
90 #define	MSTATUS_VM_MBBID	2
91 #define	MSTATUS_VM_SV32		8
92 #define	MSTATUS_VM_SV39		9
93 #define	MSTATUS_VM_SV48		10
94 
95 #define	MIE_SSIE	(1 << 1)
96 #define	MIE_HSIE	(1 << 2)
97 #define	MIE_MSIE	(1 << 3)
98 #define	MIE_STIE	(1 << 5)
99 #define	MIE_HTIE	(1 << 6)
100 #define	MIE_MTIE	(1 << 7)
101 
102 #define	MIP_SSIP	(1 << 1)
103 #define	MIP_HSIP	(1 << 2)
104 #define	MIP_MSIP	(1 << 3)
105 #define	MIP_STIP	(1 << 5)
106 #define	MIP_HTIP	(1 << 6)
107 #define	MIP_MTIP	(1 << 7)
108 
109 #define	SR_IE		(1 << 0)
110 #define	SR_IE1		(1 << 3)
111 #define	SR_IE2		(1 << 6)
112 #define	SR_IE3		(1 << 9)
113 
114 #define	SIE_SSIE	(1 << 1)
115 #define	SIE_STIE	(1 << 5)
116 
117 /* Note: sip register has no SIP_STIP bit in Spike simulator */
118 #define	SIP_SSIP	(1 << 1)
119 #define	SIP_STIP	(1 << 5)
120 
121 #define	NCSRS		4096
122 #define	CSR_IPI		0x783
123 #define	CSR_IO_IRQ	0x7c0	/* lowRISC only? */
124 #define	XLEN		8
125 #define	INSN_SIZE	4
126 
127 #define	CSR_ZIMM(val)							\
128 	(__builtin_constant_p(val) && ((u_long)(val) < 32))
129 
130 #define	csr_swap(csr, val)						\
131 ({	if (CSR_ZIMM(val))  						\
132 		__asm __volatile("csrrwi %0, " #csr ", %1"		\
133 				: "=r" (val) : "i" (val));		\
134 	else 								\
135 		__asm __volatile("csrrw %0, " #csr ", %1"		\
136 				: "=r" (val) : "r" (val));		\
137 	val;								\
138 })
139 
140 #define	csr_write(csr, val)						\
141 ({	if (CSR_ZIMM(val)) 						\
142 		__asm __volatile("csrwi " #csr ", %0" :: "i" (val));	\
143 	else 								\
144 		__asm __volatile("csrw " #csr ", %0" ::  "r" (val));	\
145 })
146 
147 #define	csr_set(csr, val)						\
148 ({	if (CSR_ZIMM(val)) 						\
149 		__asm __volatile("csrsi " #csr ", %0" :: "i" (val));	\
150 	else								\
151 		__asm __volatile("csrs " #csr ", %0" :: "r" (val));	\
152 })
153 
154 #define	csr_clear(csr, val)						\
155 ({	if (CSR_ZIMM(val))						\
156 		__asm __volatile("csrci " #csr ", %0" :: "i" (val));	\
157 	else								\
158 		__asm __volatile("csrc " #csr ", %0" :: "r" (val));	\
159 })
160 
161 #define	csr_read(csr)							\
162 ({	u_long val;							\
163 	__asm __volatile("csrr %0, " #csr : "=r" (val));		\
164 	val;								\
165 })
166 
167 #endif /* !_MACHINE_RISCVREG_H_ */
168