mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
Current minimum required version of binutils is 2.25, which supports SHA-256 instruction mnemonics. Remove check for assembler support of SHA-256 instructions and all relevant macros for conditional compilation. No functional change intended. Signed-off-by: Uros Bizjak <ubizjak@gmail.com> Cc: Herbert Xu <herbert@gondor.apana.org.au> Cc: "David S. Miller" <davem@davemloft.net> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@kernel.org> Cc: Borislav Petkov <bp@alien8.de> Cc: Dave Hansen <dave.hansen@linux.intel.com> Cc: "H. Peter Anvin" <hpa@zytor.com> Reviewed-by: Eric Biggers <ebiggers@kernel.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
33 lines
982 B
Plaintext
33 lines
982 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2020 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
|
|
|
|
config AS_AVX512
|
|
def_bool $(as-instr,vpmovm2b %k1$(comma)%zmm5)
|
|
help
|
|
Supported by binutils >= 2.25 and LLVM integrated assembler
|
|
|
|
config AS_TPAUSE
|
|
def_bool $(as-instr,tpause %ecx)
|
|
help
|
|
Supported by binutils >= 2.31.1 and LLVM integrated assembler >= V7
|
|
|
|
config AS_GFNI
|
|
def_bool $(as-instr,vgf2p8mulb %xmm0$(comma)%xmm1$(comma)%xmm2)
|
|
help
|
|
Supported by binutils >= 2.30 and LLVM integrated assembler
|
|
|
|
config AS_VAES
|
|
def_bool $(as-instr,vaesenc %ymm0$(comma)%ymm1$(comma)%ymm2)
|
|
help
|
|
Supported by binutils >= 2.30 and LLVM integrated assembler
|
|
|
|
config AS_VPCLMULQDQ
|
|
def_bool $(as-instr,vpclmulqdq \$0x10$(comma)%ymm0$(comma)%ymm1$(comma)%ymm2)
|
|
help
|
|
Supported by binutils >= 2.30 and LLVM integrated assembler
|
|
|
|
config AS_WRUSS
|
|
def_bool $(as-instr64,wrussq %rax$(comma)(%rbx))
|
|
help
|
|
Supported by binutils >= 2.31 and LLVM integrated assembler
|