summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@orcam.me.uk>2021-03-11 21:50:47 -0700
committerJason A. Donenfeld <Jason@zx2c4.com>2022-07-07 13:26:44 +0200
commit09cef871905de7e51efda13cdc300f4188579140 (patch)
tree495ac56fd7e17ebfb80f38c55975d62d65bb2cf8
parentc4112d32b3f0b8d625d2bdf4d9f74f726083319b (diff)
downloadlinux-crypto-backport-5.4.y.tar.gz
linux-crypto-backport-5.4.y.zip
crypto: mips/poly1305 - enable for all MIPS processorsbackport-5.4.y
commit baeae5b993eebbd5d6d62f11ce11461f0a4d74e7 upstream. The MIPS Poly1305 implementation is generic MIPS code written such as to support down to the original MIPS I and MIPS III ISA for the 32-bit and 64-bit variant respectively. Lift the current limitation then to enable code for MIPSr1 ISA or newer processors only and have it available for all MIPS processors. Signed-off-by: Maciej W. Rozycki <macro@orcam.me.uk> Fixes: f9c88283df69 ("crypto: mips/poly1305 - incorporate OpenSSL/CRYPTOGAMS optimized implementation") Cc: stable@vger.kernel.org # v5.5+ Acked-by: Jason A. Donenfeld <Jason@zx2c4.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--crypto/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index deb98b94..98e67c3f 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -716,7 +716,7 @@ config CRYPTO_POLY1305_X86_64
config CRYPTO_POLY1305_MIPS
tristate "Poly1305 authenticator algorithm (MIPS optimized)"
- depends on CPU_MIPS32 || (CPU_MIPS64 && 64BIT)
+ depends on MIPS
select CRYPTO_ARCH_HAVE_LIB_POLY1305
config CRYPTO_MD4