~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/loongarch/lib/xor_simd_glue.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-or-later
  2 /*
  3  * LoongArch SIMD XOR operations
  4  *
  5  * Copyright (C) 2023 WANG Xuerui <git@xen0n.name>
  6  */
  7 
  8 #include <linux/export.h>
  9 #include <linux/sched.h>
 10 #include <asm/fpu.h>
 11 #include <asm/xor_simd.h>
 12 #include "xor_simd.h"
 13 
 14 #define MAKE_XOR_GLUE_2(flavor)                                                 \
 15 void xor_##flavor##_2(unsigned long bytes, unsigned long * __restrict p1,       \
 16                       const unsigned long * __restrict p2)                      \
 17 {                                                                               \
 18         kernel_fpu_begin();                                                     \
 19         __xor_##flavor##_2(bytes, p1, p2);                                      \
 20         kernel_fpu_end();                                                       \
 21 }                                                                               \
 22 EXPORT_SYMBOL_GPL(xor_##flavor##_2)
 23 
 24 #define MAKE_XOR_GLUE_3(flavor)                                                 \
 25 void xor_##flavor##_3(unsigned long bytes, unsigned long * __restrict p1,       \
 26                       const unsigned long * __restrict p2,                      \
 27                       const unsigned long * __restrict p3)                      \
 28 {                                                                               \
 29         kernel_fpu_begin();                                                     \
 30         __xor_##flavor##_3(bytes, p1, p2, p3);                                  \
 31         kernel_fpu_end();                                                       \
 32 }                                                                               \
 33 EXPORT_SYMBOL_GPL(xor_##flavor##_3)
 34 
 35 #define MAKE_XOR_GLUE_4(flavor)                                                 \
 36 void xor_##flavor##_4(unsigned long bytes, unsigned long * __restrict p1,       \
 37                       const unsigned long * __restrict p2,                      \
 38                       const unsigned long * __restrict p3,                      \
 39                       const unsigned long * __restrict p4)                      \
 40 {                                                                               \
 41         kernel_fpu_begin();                                                     \
 42         __xor_##flavor##_4(bytes, p1, p2, p3, p4);                              \
 43         kernel_fpu_end();                                                       \
 44 }                                                                               \
 45 EXPORT_SYMBOL_GPL(xor_##flavor##_4)
 46 
 47 #define MAKE_XOR_GLUE_5(flavor)                                                 \
 48 void xor_##flavor##_5(unsigned long bytes, unsigned long * __restrict p1,       \
 49                       const unsigned long * __restrict p2,                      \
 50                       const unsigned long * __restrict p3,                      \
 51                       const unsigned long * __restrict p4,                      \
 52                       const unsigned long * __restrict p5)                      \
 53 {                                                                               \
 54         kernel_fpu_begin();                                                     \
 55         __xor_##flavor##_5(bytes, p1, p2, p3, p4, p5);                          \
 56         kernel_fpu_end();                                                       \
 57 }                                                                               \
 58 EXPORT_SYMBOL_GPL(xor_##flavor##_5)
 59 
 60 #define MAKE_XOR_GLUES(flavor)          \
 61         MAKE_XOR_GLUE_2(flavor);        \
 62         MAKE_XOR_GLUE_3(flavor);        \
 63         MAKE_XOR_GLUE_4(flavor);        \
 64         MAKE_XOR_GLUE_5(flavor)
 65 
 66 #ifdef CONFIG_CPU_HAS_LSX
 67 MAKE_XOR_GLUES(lsx);
 68 #endif
 69 
 70 #ifdef CONFIG_CPU_HAS_LASX
 71 MAKE_XOR_GLUES(lasx);
 72 #endif
 73 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php