1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2012 ARM Ltd.
9 #include <asm/ptrace.h>
10 #include <asm/processor.h>
11 #include <asm/sigcontext.h>
12 #include <asm/sysreg.h>
16 #include <linux/bitmap.h>
17 #include <linux/build_bug.h>
18 #include <linux/bug.h>
19 #include <linux/cache.h>
20 #include <linux/init.h>
21 #include <linux/stddef.h>
22 #include <linux/types.h>
25 /* Masks for extracting the FPSR and FPCR from the FPSCR */
26 #define VFP_FPSCR_STAT_MASK 0xf800009f
27 #define VFP_FPSCR_CTRL_MASK 0x07f79f00
29 * The VFP state has 32x64-bit registers and a single 32-bit
30 * control/status register.
32 #define VFP_STATE_SIZE ((32 * 8) + 4)
36 * When we defined the maximum SVE vector length we defined the ABI so
37 * that the maximum vector length included all the reserved for future
38 * expansion bits in ZCR rather than those just currently defined by
39 * the architecture. While SME follows a similar pattern the fact that
40 * it includes a square matrix means that any allocations that attempt
41 * to cover the maximum potential vector length (such as happen with
42 * the regset used for ptrace) end up being extremely large. Define
43 * the much lower actual limit for use in such situations.
49 extern void fpsimd_save_state(struct user_fpsimd_state *state);
50 extern void fpsimd_load_state(struct user_fpsimd_state *state);
52 extern void fpsimd_thread_switch(struct task_struct *next);
53 extern void fpsimd_flush_thread(void);
55 extern void fpsimd_signal_preserve_current_state(void);
56 extern void fpsimd_preserve_current_state(void);
57 extern void fpsimd_restore_current_state(void);
58 extern void fpsimd_update_current_state(struct user_fpsimd_state const *state);
59 extern void fpsimd_kvm_prepare(void);
62 struct user_fpsimd_state *st;
68 enum fp_type *fp_type;
72 extern void fpsimd_bind_state_to_cpu(struct cpu_fp_state *fp_state);
74 extern void fpsimd_flush_task_state(struct task_struct *target);
75 extern void fpsimd_save_and_flush_cpu_state(void);
77 static inline bool thread_sm_enabled(struct thread_struct *thread)
79 return system_supports_sme() && (thread->svcr & SVCR_SM_MASK);
82 static inline bool thread_za_enabled(struct thread_struct *thread)
84 return system_supports_sme() && (thread->svcr & SVCR_ZA_MASK);
87 /* Maximum VL that SVE/SME VL-agnostic software can transparently support */
88 #define VL_ARCH_MAX 0x100
90 /* Offset of FFR in the SVE register dump */
91 static inline size_t sve_ffr_offset(int vl)
93 return SVE_SIG_FFR_OFFSET(sve_vq_from_vl(vl)) - SVE_SIG_REGS_OFFSET;
96 static inline void *sve_pffr(struct thread_struct *thread)
100 if (system_supports_sme() && thread_sm_enabled(thread))
101 vl = thread_get_sme_vl(thread);
103 vl = thread_get_sve_vl(thread);
105 return (char *)thread->sve_state + sve_ffr_offset(vl);
108 static inline void *thread_zt_state(struct thread_struct *thread)
110 /* The ZT register state is stored immediately after the ZA state */
111 unsigned int sme_vq = sve_vq_from_vl(thread_get_sme_vl(thread));
112 return thread->sme_state + ZA_SIG_REGS_SIZE(sme_vq);
115 extern void sve_save_state(void *state, u32 *pfpsr, int save_ffr);
116 extern void sve_load_state(void const *state, u32 const *pfpsr,
118 extern void sve_flush_live(bool flush_ffr, unsigned long vq_minus_1);
119 extern unsigned int sve_get_vl(void);
120 extern void sve_set_vq(unsigned long vq_minus_1);
121 extern void sme_set_vq(unsigned long vq_minus_1);
122 extern void sme_save_state(void *state, int zt);
123 extern void sme_load_state(void const *state, int zt);
125 struct arm64_cpu_capabilities;
126 extern void sve_kernel_enable(const struct arm64_cpu_capabilities *__unused);
127 extern void sme_kernel_enable(const struct arm64_cpu_capabilities *__unused);
128 extern void sme2_kernel_enable(const struct arm64_cpu_capabilities *__unused);
129 extern void fa64_kernel_enable(const struct arm64_cpu_capabilities *__unused);
131 extern u64 read_zcr_features(void);
132 extern u64 read_smcr_features(void);
135 * Helpers to translate bit indices in sve_vq_map to VQ values (and
136 * vice versa). This allows find_next_bit() to be used to find the
137 * _maximum_ VQ not exceeding a certain value.
139 static inline unsigned int __vq_to_bit(unsigned int vq)
141 return SVE_VQ_MAX - vq;
144 static inline unsigned int __bit_to_vq(unsigned int bit)
146 return SVE_VQ_MAX - bit;
152 const char *name; /* For display purposes */
154 /* Minimum supported vector length across all CPUs */
157 /* Maximum supported vector length across all CPUs */
159 int max_virtualisable_vl;
162 * Set of available vector lengths,
163 * where length vq encoded as bit __vq_to_bit(vq):
165 DECLARE_BITMAP(vq_map, SVE_VQ_MAX);
167 /* Set of vector lengths present on at least one cpu: */
168 DECLARE_BITMAP(vq_partial_map, SVE_VQ_MAX);
171 #ifdef CONFIG_ARM64_SVE
173 extern void sve_alloc(struct task_struct *task, bool flush);
174 extern void fpsimd_release_task(struct task_struct *task);
175 extern void fpsimd_sync_to_sve(struct task_struct *task);
176 extern void fpsimd_force_sync_to_sve(struct task_struct *task);
177 extern void sve_sync_to_fpsimd(struct task_struct *task);
178 extern void sve_sync_from_fpsimd_zeropad(struct task_struct *task);
180 extern int vec_set_vector_length(struct task_struct *task, enum vec_type type,
181 unsigned long vl, unsigned long flags);
183 extern int sve_set_current_vl(unsigned long arg);
184 extern int sve_get_current_vl(void);
186 static inline void sve_user_disable(void)
188 sysreg_clear_set(cpacr_el1, CPACR_EL1_ZEN_EL0EN, 0);
191 static inline void sve_user_enable(void)
193 sysreg_clear_set(cpacr_el1, 0, CPACR_EL1_ZEN_EL0EN);
196 #define sve_cond_update_zcr_vq(val, reg) \
198 u64 __zcr = read_sysreg_s((reg)); \
199 u64 __new = __zcr & ~ZCR_ELx_LEN_MASK; \
200 __new |= (val) & ZCR_ELx_LEN_MASK; \
201 if (__zcr != __new) \
202 write_sysreg_s(__new, (reg)); \
206 * Probing and setup functions.
207 * Calls to these functions must be serialised with one another.
211 extern void __init vec_init_vq_map(enum vec_type type);
212 extern void vec_update_vq_map(enum vec_type type);
213 extern int vec_verify_vq_map(enum vec_type type);
214 extern void __init sve_setup(void);
216 extern __ro_after_init struct vl_info vl_info[ARM64_VEC_MAX];
218 static inline void write_vl(enum vec_type type, u64 val)
223 #ifdef CONFIG_ARM64_SVE
225 tmp = read_sysreg_s(SYS_ZCR_EL1) & ~ZCR_ELx_LEN_MASK;
226 write_sysreg_s(tmp | val, SYS_ZCR_EL1);
229 #ifdef CONFIG_ARM64_SME
231 tmp = read_sysreg_s(SYS_SMCR_EL1) & ~SMCR_ELx_LEN_MASK;
232 write_sysreg_s(tmp | val, SYS_SMCR_EL1);
241 static inline int vec_max_vl(enum vec_type type)
243 return vl_info[type].max_vl;
246 static inline int vec_max_virtualisable_vl(enum vec_type type)
248 return vl_info[type].max_virtualisable_vl;
251 static inline int sve_max_vl(void)
253 return vec_max_vl(ARM64_VEC_SVE);
256 static inline int sve_max_virtualisable_vl(void)
258 return vec_max_virtualisable_vl(ARM64_VEC_SVE);
261 /* Ensure vq >= SVE_VQ_MIN && vq <= SVE_VQ_MAX before calling this function */
262 static inline bool vq_available(enum vec_type type, unsigned int vq)
264 return test_bit(__vq_to_bit(vq), vl_info[type].vq_map);
267 static inline bool sve_vq_available(unsigned int vq)
269 return vq_available(ARM64_VEC_SVE, vq);
272 size_t sve_state_size(struct task_struct const *task);
274 #else /* ! CONFIG_ARM64_SVE */
276 static inline void sve_alloc(struct task_struct *task, bool flush) { }
277 static inline void fpsimd_release_task(struct task_struct *task) { }
278 static inline void sve_sync_to_fpsimd(struct task_struct *task) { }
279 static inline void sve_sync_from_fpsimd_zeropad(struct task_struct *task) { }
281 static inline int sve_max_virtualisable_vl(void)
286 static inline int sve_set_current_vl(unsigned long arg)
291 static inline int sve_get_current_vl(void)
296 static inline int sve_max_vl(void)
301 static inline bool sve_vq_available(unsigned int vq) { return false; }
303 static inline void sve_user_disable(void) { BUILD_BUG(); }
304 static inline void sve_user_enable(void) { BUILD_BUG(); }
306 #define sve_cond_update_zcr_vq(val, reg) do { } while (0)
308 static inline void vec_init_vq_map(enum vec_type t) { }
309 static inline void vec_update_vq_map(enum vec_type t) { }
310 static inline int vec_verify_vq_map(enum vec_type t) { return 0; }
311 static inline void sve_setup(void) { }
313 static inline size_t sve_state_size(struct task_struct const *task)
318 #endif /* ! CONFIG_ARM64_SVE */
320 #ifdef CONFIG_ARM64_SME
322 static inline void sme_user_disable(void)
324 sysreg_clear_set(cpacr_el1, CPACR_EL1_SMEN_EL0EN, 0);
327 static inline void sme_user_enable(void)
329 sysreg_clear_set(cpacr_el1, 0, CPACR_EL1_SMEN_EL0EN);
332 static inline void sme_smstart_sm(void)
334 asm volatile(__msr_s(SYS_SVCR_SMSTART_SM_EL0, "xzr"));
337 static inline void sme_smstop_sm(void)
339 asm volatile(__msr_s(SYS_SVCR_SMSTOP_SM_EL0, "xzr"));
342 static inline void sme_smstop(void)
344 asm volatile(__msr_s(SYS_SVCR_SMSTOP_SMZA_EL0, "xzr"));
347 extern void __init sme_setup(void);
349 static inline int sme_max_vl(void)
351 return vec_max_vl(ARM64_VEC_SME);
354 static inline int sme_max_virtualisable_vl(void)
356 return vec_max_virtualisable_vl(ARM64_VEC_SME);
359 extern void sme_alloc(struct task_struct *task);
360 extern unsigned int sme_get_vl(void);
361 extern int sme_set_current_vl(unsigned long arg);
362 extern int sme_get_current_vl(void);
365 * Return how many bytes of memory are required to store the full SME
366 * specific state for task, given task's currently configured vector
369 static inline size_t sme_state_size(struct task_struct const *task)
371 unsigned int vl = task_get_sme_vl(task);
374 size = ZA_SIG_REGS_SIZE(sve_vq_from_vl(vl));
376 if (system_supports_sme2())
377 size += ZT_SIG_REG_SIZE;
384 static inline void sme_user_disable(void) { BUILD_BUG(); }
385 static inline void sme_user_enable(void) { BUILD_BUG(); }
387 static inline void sme_smstart_sm(void) { }
388 static inline void sme_smstop_sm(void) { }
389 static inline void sme_smstop(void) { }
391 static inline void sme_alloc(struct task_struct *task) { }
392 static inline void sme_setup(void) { }
393 static inline unsigned int sme_get_vl(void) { return 0; }
394 static inline int sme_max_vl(void) { return 0; }
395 static inline int sme_max_virtualisable_vl(void) { return 0; }
396 static inline int sme_set_current_vl(unsigned long arg) { return -EINVAL; }
397 static inline int sme_get_current_vl(void) { return -EINVAL; }
399 static inline size_t sme_state_size(struct task_struct const *task)
404 #endif /* ! CONFIG_ARM64_SME */
406 /* For use by EFI runtime services calls only */
407 extern void __efi_fpsimd_begin(void);
408 extern void __efi_fpsimd_end(void);