blob: 89cba2622b79bab10c03737b414a522de6a29292 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Copyright (C) 2017 Linaro Ltd. <ard.biesheuvel@linaro.org>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004 */
5
6#ifndef __ASM_SIMD_H
7#define __ASM_SIMD_H
8
9#include <linux/compiler.h>
10#include <linux/irqflags.h>
11#include <linux/percpu.h>
12#include <linux/preempt.h>
13#include <linux/types.h>
14
David Brazdil0f672f62019-12-10 10:32:29 +000015DECLARE_PER_CPU(bool, fpsimd_context_busy);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000016
David Brazdil0f672f62019-12-10 10:32:29 +000017#ifdef CONFIG_KERNEL_MODE_NEON
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000018
19/*
20 * may_use_simd - whether it is allowable at this time to issue SIMD
21 * instructions or access the SIMD register file
22 *
23 * Callers must not assume that the result remains true beyond the next
24 * preempt_enable() or return from softirq context.
25 */
26static __must_check inline bool may_use_simd(void)
27{
28 /*
Olivier Deprez157378f2022-04-04 15:47:50 +020029 * We must make sure that the SVE has been initialized properly
30 * before using the SIMD in kernel.
David Brazdil0f672f62019-12-10 10:32:29 +000031 * fpsimd_context_busy is only set while preemption is disabled,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000032 * and is clear whenever preemption is enabled. Since
David Brazdil0f672f62019-12-10 10:32:29 +000033 * this_cpu_read() is atomic w.r.t. preemption, fpsimd_context_busy
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000034 * cannot change under our feet -- if it's set we cannot be
35 * migrated, and if it's clear we cannot be migrated to a CPU
36 * where it is set.
37 */
Olivier Deprez157378f2022-04-04 15:47:50 +020038 return !WARN_ON(!system_capabilities_finalized()) &&
39 system_supports_fpsimd() &&
40 !in_irq() && !irqs_disabled() && !in_nmi() &&
41 !this_cpu_read(fpsimd_context_busy);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000042}
43
44#else /* ! CONFIG_KERNEL_MODE_NEON */
45
46static __must_check inline bool may_use_simd(void) {
47 return false;
48}
49
50#endif /* ! CONFIG_KERNEL_MODE_NEON */
51
52#endif