2 * linux/arch/arm/lib/xor-neon.c
4 * Copyright (C) 2013 Linaro Ltd <ard.biesheuvel@linaro.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/raid/xor.h>
12 #include <linux/module.h>
14 MODULE_LICENSE("GPL");
17 #error You should compile this file with '-march=armv7-a -mfloat-abi=softfp -mfpu=neon'
21 * Pull in the reference implementations while instructing GCC (through
22 * -ftree-vectorize) to attempt to exploit implicit parallelism and emit
25 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
26 #pragma GCC optimize "tree-vectorize"
29 * While older versions of GCC do not generate incorrect code, they fail to
30 * recognize the parallel nature of these functions, and emit plain ARM code,
31 * which is known to be slower than the optimized ARM code in asm-arm/xor.h.
33 * #warning This code requires at least version 4.6 of GCC
37 #pragma GCC diagnostic ignored "-Wunused-variable"
38 #include <asm-generic/xor.h>
40 struct xor_block_template const xor_block_neon_inner = {
41 .name = "__inner_neon__",
47 EXPORT_SYMBOL(xor_block_neon_inner);