1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2019 Linaro Ltd <ard.biesheuvel@linaro.org>
6 #include <asm/cpufeature.h>
10 #include "aegis-neon.h"
12 int aegis128_have_aes_insn __ro_after_init;
14 bool crypto_aegis128_have_simd(void)
16 if (cpu_have_feature(cpu_feature(AES))) {
17 aegis128_have_aes_insn = 1;
20 return IS_ENABLED(CONFIG_ARM64);
23 void crypto_aegis128_init_simd(struct aegis_state *state,
24 const union aegis_block *key,
28 crypto_aegis128_init_neon(state, key, iv);
32 void crypto_aegis128_update_simd(struct aegis_state *state, const void *msg)
35 crypto_aegis128_update_neon(state, msg);
39 void crypto_aegis128_encrypt_chunk_simd(struct aegis_state *state, u8 *dst,
40 const u8 *src, unsigned int size)
43 crypto_aegis128_encrypt_chunk_neon(state, dst, src, size);
47 void crypto_aegis128_decrypt_chunk_simd(struct aegis_state *state, u8 *dst,
48 const u8 *src, unsigned int size)
51 crypto_aegis128_decrypt_chunk_neon(state, dst, src, size);
55 int crypto_aegis128_final_simd(struct aegis_state *state,
56 union aegis_block *tag_xor,
57 unsigned int assoclen,
58 unsigned int cryptlen,
59 unsigned int authsize)
64 ret = crypto_aegis128_final_neon(state, tag_xor, assoclen, cryptlen,