xor-neon.c 998 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * linux/arch/arm/lib/xor-neon.c
  4. *
  5. * Copyright (C) 2013 Linaro Ltd <ard.biesheuvel@linaro.org>
  6. */
  7. #include <linux/raid/xor.h>
  8. #include <linux/module.h>
  9. MODULE_DESCRIPTION("NEON accelerated XOR implementation");
  10. MODULE_LICENSE("GPL");
  11. #ifndef __ARM_NEON__
  12. #error You should compile this file with '-march=armv7-a -mfloat-abi=softfp -mfpu=neon'
  13. #endif
  14. /*
  15. * Pull in the reference implementations while instructing GCC (through
  16. * -ftree-vectorize) to attempt to exploit implicit parallelism and emit
  17. * NEON instructions. Clang does this by default at O2 so no pragma is
  18. * needed.
  19. */
  20. #ifdef CONFIG_CC_IS_GCC
  21. #pragma GCC optimize "tree-vectorize"
  22. #endif
  23. #pragma GCC diagnostic ignored "-Wunused-variable"
  24. #include <asm-generic/xor.h>
  25. struct xor_block_template const xor_block_neon_inner = {
  26. .name = "__inner_neon__",
  27. .do_2 = xor_8regs_2,
  28. .do_3 = xor_8regs_3,
  29. .do_4 = xor_8regs_4,
  30. .do_5 = xor_8regs_5,
  31. };
  32. EXPORT_SYMBOL(xor_block_neon_inner);