[PATCH 00/11] Optimize SHA256 and SHA512 for Intel x86_64 withSSSE3, AVX or AVX2 instructions

From: Tim Chen
Date: Fri Mar 22 2013 - 17:29:00 EST


Herbert,

The following patch series provides optimized SHA256 and SHA512 routines
using the SSSE3, AVX or AVX2 instructions on x86_64 for Intel cpus.
Depending on cpu capabilities, speedup between 40% to 70% or more can be achieved
over the generic SHA256 and SHA512 routines.


Tim Chen (11):
Added macro to check for AVX2 feature.
Expose SHA256 generic routine to be callable externally.
Optimized sha256 x86_64 assembly routine using Supplemental SSE3
instructions.
Optimized sha256 x86_64 assembly routine with AVX instructions.
Optimized sha256 x86_64 routine using AVX2's RORX instructions
Create module providing optimized SHA256 routines using SSSE3,
AVX or AVX2 instructions.
Expose generic sha512 routine to be callable from other modules
Optimized SHA512 x86_64 assembly routine using Supplemental SSE3
instructions.
Optimized SHA512 x86_64 assembly routine using AVX instructions.
Optimized SHA512 x86_64 assembly routine using AVX2 RORX instruction.
Create module providing optimized SHA512 routines using SSSE3,
AVX or AVX2 instructions.

arch/x86/crypto/Makefile | 4 +
arch/x86/crypto/sha256-avx-asm.S | 493 +++++++++++++++++++++++
arch/x86/crypto/sha256-avx2-asm.S | 769 ++++++++++++++++++++++++++++++++++++
arch/x86/crypto/sha256-ssse3-asm.S | 504 +++++++++++++++++++++++
arch/x86/crypto/sha256_ssse3_glue.c | 269 +++++++++++++
arch/x86/crypto/sha512-avx-asm.S | 420 ++++++++++++++++++++
arch/x86/crypto/sha512-avx2-asm.S | 741 ++++++++++++++++++++++++++++++++++
arch/x86/crypto/sha512-ssse3-asm.S | 419 ++++++++++++++++++++
arch/x86/crypto/sha512_ssse3_glue.c | 276 +++++++++++++
arch/x86/include/asm/cpufeature.h | 1 +
crypto/Kconfig | 22 ++
crypto/sha256_generic.c | 11 +-
crypto/sha512_generic.c | 13 +-
include/crypto/sha.h | 5 +
14 files changed, 3936 insertions(+), 11 deletions(-)
create mode 100644 arch/x86/crypto/sha256-avx-asm.S
create mode 100644 arch/x86/crypto/sha256-avx2-asm.S
create mode 100644 arch/x86/crypto/sha256-ssse3-asm.S
create mode 100644 arch/x86/crypto/sha256_ssse3_glue.c
create mode 100644 arch/x86/crypto/sha512-avx-asm.S
create mode 100644 arch/x86/crypto/sha512-avx2-asm.S
create mode 100644 arch/x86/crypto/sha512-ssse3-asm.S
create mode 100644 arch/x86/crypto/sha512_ssse3_glue.c

--
1.7.11.7


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/