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

TOMOYO Linux Cross Reference
Linux/arch/loongarch/include/asm/xor.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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  * Copyright (C) 2023 WANG Xuerui <git@xen0n.name>
  4  */
  5 #ifndef _ASM_LOONGARCH_XOR_H
  6 #define _ASM_LOONGARCH_XOR_H
  7 
  8 #include <asm/cpu-features.h>
  9 #include <asm/xor_simd.h>
 10 
 11 #ifdef CONFIG_CPU_HAS_LSX
 12 static struct xor_block_template xor_block_lsx = {
 13         .name = "lsx",
 14         .do_2 = xor_lsx_2,
 15         .do_3 = xor_lsx_3,
 16         .do_4 = xor_lsx_4,
 17         .do_5 = xor_lsx_5,
 18 };
 19 
 20 #define XOR_SPEED_LSX()                                 \
 21         do {                                            \
 22                 if (cpu_has_lsx)                        \
 23                         xor_speed(&xor_block_lsx);      \
 24         } while (0)
 25 #else /* CONFIG_CPU_HAS_LSX */
 26 #define XOR_SPEED_LSX()
 27 #endif /* CONFIG_CPU_HAS_LSX */
 28 
 29 #ifdef CONFIG_CPU_HAS_LASX
 30 static struct xor_block_template xor_block_lasx = {
 31         .name = "lasx",
 32         .do_2 = xor_lasx_2,
 33         .do_3 = xor_lasx_3,
 34         .do_4 = xor_lasx_4,
 35         .do_5 = xor_lasx_5,
 36 };
 37 
 38 #define XOR_SPEED_LASX()                                        \
 39         do {                                                    \
 40                 if (cpu_has_lasx)                               \
 41                         xor_speed(&xor_block_lasx);             \
 42         } while (0)
 43 #else /* CONFIG_CPU_HAS_LASX */
 44 #define XOR_SPEED_LASX()
 45 #endif /* CONFIG_CPU_HAS_LASX */
 46 
 47 /*
 48  * For grins, also test the generic routines.
 49  *
 50  * More importantly: it cannot be ruled out at this point of time, that some
 51  * future (maybe reduced) models could run the vector algorithms slower than
 52  * the scalar ones, maybe for errata or micro-op reasons. It may be
 53  * appropriate to revisit this after one or two more uarch generations.
 54  */
 55 #include <asm-generic/xor.h>
 56 
 57 #undef XOR_TRY_TEMPLATES
 58 #define XOR_TRY_TEMPLATES                               \
 59 do {                                                    \
 60         xor_speed(&xor_block_8regs);                    \
 61         xor_speed(&xor_block_8regs_p);                  \
 62         xor_speed(&xor_block_32regs);                   \
 63         xor_speed(&xor_block_32regs_p);                 \
 64         XOR_SPEED_LSX();                                \
 65         XOR_SPEED_LASX();                               \
 66 } while (0)
 67 
 68 #endif /* _ASM_LOONGARCH_XOR_H */
 69 

~ [ 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