xref: /linux/arch/riscv/kernel/vector.c (revision 7ca7a7b9)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (C) 2023 SiFive
4  * Author: Andy Chiu <andy.chiu@sifive.com>
5  */
6 #include <linux/export.h>
7 #include <linux/sched/signal.h>
8 #include <linux/types.h>
9 #include <linux/slab.h>
10 #include <linux/sched.h>
11 #include <linux/uaccess.h>
12 #include <linux/prctl.h>
13 
14 #include <asm/thread_info.h>
15 #include <asm/processor.h>
16 #include <asm/insn.h>
17 #include <asm/vector.h>
18 #include <asm/csr.h>
19 #include <asm/elf.h>
20 #include <asm/ptrace.h>
21 #include <asm/bug.h>
22 
23 static bool riscv_v_implicit_uacc = IS_ENABLED(CONFIG_RISCV_ISA_V_DEFAULT_ENABLE);
24 
25 unsigned long riscv_v_vsize __read_mostly;
26 EXPORT_SYMBOL_GPL(riscv_v_vsize);
27 
28 int riscv_v_setup_vsize(void)
29 {
30 	unsigned long this_vsize;
31 
32 	/* There are 32 vector registers with vlenb length. */
33 	riscv_v_enable();
34 	this_vsize = csr_read(CSR_VLENB) * 32;
35 	riscv_v_disable();
36 
37 	if (!riscv_v_vsize) {
38 		riscv_v_vsize = this_vsize;
39 		return 0;
40 	}
41 
42 	if (riscv_v_vsize != this_vsize) {
43 		WARN(1, "RISCV_ISA_V only supports one vlenb on SMP systems");
44 		return -EOPNOTSUPP;
45 	}
46 
47 	return 0;
48 }
49 
50 static bool insn_is_vector(u32 insn_buf)
51 {
52 	u32 opcode = insn_buf & __INSN_OPCODE_MASK;
53 	u32 width, csr;
54 
55 	/*
56 	 * All V-related instructions, including CSR operations are 4-Byte. So,
57 	 * do not handle if the instruction length is not 4-Byte.
58 	 */
59 	if (unlikely(GET_INSN_LENGTH(insn_buf) != 4))
60 		return false;
61 
62 	switch (opcode) {
63 	case RVV_OPCODE_VECTOR:
64 		return true;
65 	case RVV_OPCODE_VL:
66 	case RVV_OPCODE_VS:
67 		width = RVV_EXRACT_VL_VS_WIDTH(insn_buf);
68 		if (width == RVV_VL_VS_WIDTH_8 || width == RVV_VL_VS_WIDTH_16 ||
69 		    width == RVV_VL_VS_WIDTH_32 || width == RVV_VL_VS_WIDTH_64)
70 			return true;
71 
72 		break;
73 	case RVG_OPCODE_SYSTEM:
74 		csr = RVG_EXTRACT_SYSTEM_CSR(insn_buf);
75 		if ((csr >= CSR_VSTART && csr <= CSR_VCSR) ||
76 		    (csr >= CSR_VL && csr <= CSR_VLENB))
77 			return true;
78 	}
79 
80 	return false;
81 }
82 
83 static int riscv_v_thread_zalloc(void)
84 {
85 	void *datap;
86 
87 	datap = kzalloc(riscv_v_vsize, GFP_KERNEL);
88 	if (!datap)
89 		return -ENOMEM;
90 
91 	current->thread.vstate.datap = datap;
92 	memset(&current->thread.vstate, 0, offsetof(struct __riscv_v_ext_state,
93 						    datap));
94 	return 0;
95 }
96 
97 #define VSTATE_CTRL_GET_CUR(x) ((x) & PR_RISCV_V_VSTATE_CTRL_CUR_MASK)
98 #define VSTATE_CTRL_GET_NEXT(x) (((x) & PR_RISCV_V_VSTATE_CTRL_NEXT_MASK) >> 2)
99 #define VSTATE_CTRL_MAKE_NEXT(x) (((x) << 2) & PR_RISCV_V_VSTATE_CTRL_NEXT_MASK)
100 #define VSTATE_CTRL_GET_INHERIT(x) (!!((x) & PR_RISCV_V_VSTATE_CTRL_INHERIT))
101 static inline int riscv_v_ctrl_get_cur(struct task_struct *tsk)
102 {
103 	return VSTATE_CTRL_GET_CUR(tsk->thread.vstate_ctrl);
104 }
105 
106 static inline int riscv_v_ctrl_get_next(struct task_struct *tsk)
107 {
108 	return VSTATE_CTRL_GET_NEXT(tsk->thread.vstate_ctrl);
109 }
110 
111 static inline bool riscv_v_ctrl_test_inherit(struct task_struct *tsk)
112 {
113 	return VSTATE_CTRL_GET_INHERIT(tsk->thread.vstate_ctrl);
114 }
115 
116 static inline void riscv_v_ctrl_set(struct task_struct *tsk, int cur, int nxt,
117 				    bool inherit)
118 {
119 	unsigned long ctrl;
120 
121 	ctrl = cur & PR_RISCV_V_VSTATE_CTRL_CUR_MASK;
122 	ctrl |= VSTATE_CTRL_MAKE_NEXT(nxt);
123 	if (inherit)
124 		ctrl |= PR_RISCV_V_VSTATE_CTRL_INHERIT;
125 	tsk->thread.vstate_ctrl = ctrl;
126 }
127 
128 bool riscv_v_vstate_ctrl_user_allowed(void)
129 {
130 	return riscv_v_ctrl_get_cur(current) == PR_RISCV_V_VSTATE_CTRL_ON;
131 }
132 EXPORT_SYMBOL_GPL(riscv_v_vstate_ctrl_user_allowed);
133 
134 bool riscv_v_first_use_handler(struct pt_regs *regs)
135 {
136 	u32 __user *epc = (u32 __user *)regs->epc;
137 	u32 insn = (u32)regs->badaddr;
138 
139 	/* Do not handle if V is not supported, or disabled */
140 	if (!(ELF_HWCAP & COMPAT_HWCAP_ISA_V))
141 		return false;
142 
143 	/* If V has been enabled then it is not the first-use trap */
144 	if (riscv_v_vstate_query(regs))
145 		return false;
146 
147 	/* Get the instruction */
148 	if (!insn) {
149 		if (__get_user(insn, epc))
150 			return false;
151 	}
152 
153 	/* Filter out non-V instructions */
154 	if (!insn_is_vector(insn))
155 		return false;
156 
157 	/* Sanity check. datap should be null by the time of the first-use trap */
158 	WARN_ON(current->thread.vstate.datap);
159 
160 	/*
161 	 * Now we sure that this is a V instruction. And it executes in the
162 	 * context where VS has been off. So, try to allocate the user's V
163 	 * context and resume execution.
164 	 */
165 	if (riscv_v_thread_zalloc()) {
166 		force_sig(SIGBUS);
167 		return true;
168 	}
169 	riscv_v_vstate_on(regs);
170 	return true;
171 }
172 
173 void riscv_v_vstate_ctrl_init(struct task_struct *tsk)
174 {
175 	bool inherit;
176 	int cur, next;
177 
178 	if (!has_vector())
179 		return;
180 
181 	next = riscv_v_ctrl_get_next(tsk);
182 	if (!next) {
183 		if (READ_ONCE(riscv_v_implicit_uacc))
184 			cur = PR_RISCV_V_VSTATE_CTRL_ON;
185 		else
186 			cur = PR_RISCV_V_VSTATE_CTRL_OFF;
187 	} else {
188 		cur = next;
189 	}
190 	/* Clear next mask if inherit-bit is not set */
191 	inherit = riscv_v_ctrl_test_inherit(tsk);
192 	if (!inherit)
193 		next = PR_RISCV_V_VSTATE_CTRL_DEFAULT;
194 
195 	riscv_v_ctrl_set(tsk, cur, next, inherit);
196 }
197 
198 long riscv_v_vstate_ctrl_get_current(void)
199 {
200 	if (!has_vector())
201 		return -EINVAL;
202 
203 	return current->thread.vstate_ctrl & PR_RISCV_V_VSTATE_CTRL_MASK;
204 }
205 
206 long riscv_v_vstate_ctrl_set_current(unsigned long arg)
207 {
208 	bool inherit;
209 	int cur, next;
210 
211 	if (!has_vector())
212 		return -EINVAL;
213 
214 	if (arg & ~PR_RISCV_V_VSTATE_CTRL_MASK)
215 		return -EINVAL;
216 
217 	cur = VSTATE_CTRL_GET_CUR(arg);
218 	switch (cur) {
219 	case PR_RISCV_V_VSTATE_CTRL_OFF:
220 		/* Do not allow user to turn off V if current is not off */
221 		if (riscv_v_ctrl_get_cur(current) != PR_RISCV_V_VSTATE_CTRL_OFF)
222 			return -EPERM;
223 
224 		break;
225 	case PR_RISCV_V_VSTATE_CTRL_ON:
226 		break;
227 	case PR_RISCV_V_VSTATE_CTRL_DEFAULT:
228 		cur = riscv_v_ctrl_get_cur(current);
229 		break;
230 	default:
231 		return -EINVAL;
232 	}
233 
234 	next = VSTATE_CTRL_GET_NEXT(arg);
235 	inherit = VSTATE_CTRL_GET_INHERIT(arg);
236 	switch (next) {
237 	case PR_RISCV_V_VSTATE_CTRL_DEFAULT:
238 	case PR_RISCV_V_VSTATE_CTRL_OFF:
239 	case PR_RISCV_V_VSTATE_CTRL_ON:
240 		riscv_v_ctrl_set(current, cur, next, inherit);
241 		return 0;
242 	}
243 
244 	return -EINVAL;
245 }
246 
247 #ifdef CONFIG_SYSCTL
248 
249 static struct ctl_table riscv_v_default_vstate_table[] = {
250 	{
251 		.procname	= "riscv_v_default_allow",
252 		.data		= &riscv_v_implicit_uacc,
253 		.maxlen		= sizeof(riscv_v_implicit_uacc),
254 		.mode		= 0644,
255 		.proc_handler	= proc_dobool,
256 	},
257 	{ }
258 };
259 
260 static int __init riscv_v_sysctl_init(void)
261 {
262 	if (has_vector())
263 		if (!register_sysctl("abi", riscv_v_default_vstate_table))
264 			return -EINVAL;
265 	return 0;
266 }
267 
268 #else /* ! CONFIG_SYSCTL */
269 static int __init riscv_v_sysctl_init(void) { return 0; }
270 #endif /* ! CONFIG_SYSCTL */
271 
272 static int riscv_v_init(void)
273 {
274 	return riscv_v_sysctl_init();
275 }
276 core_initcall(riscv_v_init);
277