crypto: arm64/aegis128 - implement plain NEON version
authorArd Biesheuvel <ard.biesheuvel@linaro.org>
Sun, 11 Aug 2019 22:59:12 +0000 (01:59 +0300)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 15 Aug 2019 11:52:15 +0000 (21:52 +1000)
commit198429631a85622da1d08d360ef02cfb84c95919
treecaef44903f6bac05a5757847a2df17fd4c8f947e
parenta4397635afea5d127548d64e0055ed471ef2d5be
crypto: arm64/aegis128 - implement plain NEON version

Provide a version of the core AES transform to the aegis128 SIMD
code that does not rely on the special AES instructions, but uses
plain NEON instructions instead. This allows the SIMD version of
the aegis128 driver to be used on arm64 systems that do not
implement those instructions (which are not mandatory in the
architecture), such as the Raspberry Pi 3.

Since GCC makes a mess of this when using the tbl/tbx intrinsics
to perform the sbox substitution, preload the Sbox into v16..v31
in this case and use inline asm to emit the tbl/tbx instructions.
Clang does not support this approach, nor does it require it, since
it does a much better job at code generation, so there we use the
intrinsics as usual.

Cc: Nick Desaulniers <ndesaulniers@google.com>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Acked-by: Nick Desaulniers <ndesaulniers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/Makefile
crypto/aegis128-neon-inner.c
crypto/aegis128-neon.c