1
2
3
4
5
6
7
8 #include <linux/raid/xor.h>
9 #include <linux/module.h>
10
11 MODULE_LICENSE("GPL");
12
13 #ifndef __ARM_NEON__
14 #error You should compile this file with '-march=armv7-a -mfloat-abi=softfp -mfpu=neon'
15 #endif
16
17
18
19
20
21
22 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
23 #pragma GCC optimize "tree-vectorize"
24 #else
25
26
27
28
29
30 #warning This code requires at least version 4.6 of GCC
31 #endif
32
33 #pragma GCC diagnostic ignored "-Wunused-variable"
34 #include <asm-generic/xor.h>
35
36 struct xor_block_template const xor_block_neon_inner = {
37 .name = "__inner_neon__",
38 .do_2 = xor_8regs_2,
39 .do_3 = xor_8regs_3,
40 .do_4 = xor_8regs_4,
41 .do_5 = xor_8regs_5,
42 };
43 EXPORT_SYMBOL(xor_block_neon_inner);