summaryrefslogtreecommitdiffstats
path: root/arch/x86/crypto/sha-mb/Makefile
diff options
context:
space:
mode:
authorTim Chen <tim.c.chen@linux.intel.com>2014-07-31 19:30:03 +0200
committerHerbert Xu <herbert@gondor.apana.org.au>2014-08-25 14:32:30 +0200
commitad61e042e9151b55b393d5875e467e7fe0c7470c (patch)
treeb5d6d6ea9872cc2c53405bc25f205c33966115b0 /arch/x86/crypto/sha-mb/Makefile
parentcrypto: sha-mb - SHA1 multibuffer crypto computation (x8 AVX2) (diff)
downloadlinux-ad61e042e9151b55b393d5875e467e7fe0c7470c.tar.xz
linux-ad61e042e9151b55b393d5875e467e7fe0c7470c.zip
crypto: sha-mb - SHA1 multibuffer job manager and glue code
This patch introduces the multi-buffer job manager which is responsible for submitting scatter-gather buffers from several SHA1 jobs to the multi-buffer algorithm. It also contains the flush routine to that's called by the crypto daemon to complete the job when no new jobs arrive before the deadline of maximum latency of a SHA1 crypto job. The SHA1 multi-buffer crypto algorithm is defined and initialized in this patch. Signed-off-by: Tim Chen <tim.c.chen@linux.intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/x86/crypto/sha-mb/Makefile')
-rw-r--r--arch/x86/crypto/sha-mb/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/x86/crypto/sha-mb/Makefile b/arch/x86/crypto/sha-mb/Makefile
new file mode 100644
index 000000000000..2f8756375df5
--- /dev/null
+++ b/arch/x86/crypto/sha-mb/Makefile
@@ -0,0 +1,11 @@
+#
+# Arch-specific CryptoAPI modules.
+#
+
+avx2_supported := $(call as-instr,vpgatherdd %ymm0$(comma)(%eax$(comma)%ymm1\
+ $(comma)4)$(comma)%ymm2,yes,no)
+ifeq ($(avx2_supported),yes)
+ obj-$(CONFIG_CRYPTO_SHA1_MB) += sha1-mb.o
+ sha1-mb-y := sha1_mb.o sha1_mb_mgr_flush_avx2.o \
+ sha1_mb_mgr_init_avx2.o sha1_mb_mgr_submit_avx2.o sha1_x8_avx2.o
+endif