summaryrefslogtreecommitdiff
path: root/arch/riscv/include/asm/xor.h
blob: 96011861e46b4df24cb973a9066324283ad17b60 (plain)
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
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2021 SiFive
 */

#include <linux/hardirq.h>
#include <asm-generic/xor.h>
#ifdef CONFIG_RISCV_ISA_V
#include <asm/vector.h>
#include <asm/switch_to.h>
#include <asm/asm-prototypes.h>

static void xor_vector_2(unsigned long bytes, unsigned long *__restrict p1,
			 const unsigned long *__restrict p2)
{
	kernel_vector_begin();
	xor_regs_2_(bytes, p1, p2);
	kernel_vector_end();
}

static void xor_vector_3(unsigned long bytes, unsigned long *__restrict p1,
			 const unsigned long *__restrict p2,
			 const unsigned long *__restrict p3)
{
	kernel_vector_begin();
	xor_regs_3_(bytes, p1, p2, p3);
	kernel_vector_end();
}

static void xor_vector_4(unsigned long bytes, unsigned long *__restrict p1,
			 const unsigned long *__restrict p2,
			 const unsigned long *__restrict p3,
			 const unsigned long *__restrict p4)
{
	kernel_vector_begin();
	xor_regs_4_(bytes, p1, p2, p3, p4);
	kernel_vector_end();
}

static void xor_vector_5(unsigned long bytes, unsigned long *__restrict p1,
			 const unsigned long *__restrict p2,
			 const unsigned long *__restrict p3,
			 const unsigned long *__restrict p4,
			 const unsigned long *__restrict p5)
{
	kernel_vector_begin();
	xor_regs_5_(bytes, p1, p2, p3, p4, p5);
	kernel_vector_end();
}

static struct xor_block_template xor_block_rvv = {
	.name = "rvv",
	.do_2 = xor_vector_2,
	.do_3 = xor_vector_3,
	.do_4 = xor_vector_4,
	.do_5 = xor_vector_5
};

#undef XOR_TRY_TEMPLATES
#define XOR_TRY_TEMPLATES           \
	do {        \
		xor_speed(&xor_block_8regs);    \
		xor_speed(&xor_block_32regs);    \
		if (has_vector()) { \
			xor_speed(&xor_block_rvv);\
		} \
	} while (0)
#endif