blob: 8271b1fa0fbc35418e2c6c016a504fc7d41a8a79 [file] [log] [blame]
Ard Biesheuvela4397632019-08-12 01:59:11 +03001// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright (C) 2019 Linaro Ltd <ard.biesheuvel@linaro.org>
4 */
5
6#include <asm/cpufeature.h>
7#include <asm/neon.h>
8
9#include "aegis.h"
10
Ard Biesheuvel52828262019-10-14 18:16:45 +020011void crypto_aegis128_init_neon(void *state, const void *key, const void *iv);
Ard Biesheuvela4397632019-08-12 01:59:11 +030012void crypto_aegis128_update_neon(void *state, const void *msg);
13void crypto_aegis128_encrypt_chunk_neon(void *state, void *dst, const void *src,
14 unsigned int size);
15void crypto_aegis128_decrypt_chunk_neon(void *state, void *dst, const void *src,
16 unsigned int size);
Ard Biesheuvel52828262019-10-14 18:16:45 +020017void crypto_aegis128_final_neon(void *state, void *tag_xor, uint64_t assoclen,
18 uint64_t cryptlen);
Ard Biesheuvela4397632019-08-12 01:59:11 +030019
Ard Biesheuvel19842962019-08-12 01:59:12 +030020int aegis128_have_aes_insn __ro_after_init;
21
Ard Biesheuvela4397632019-08-12 01:59:11 +030022bool crypto_aegis128_have_simd(void)
23{
Ard Biesheuvel19842962019-08-12 01:59:12 +030024 if (cpu_have_feature(cpu_feature(AES))) {
25 aegis128_have_aes_insn = 1;
26 return true;
27 }
28 return IS_ENABLED(CONFIG_ARM64);
Ard Biesheuvela4397632019-08-12 01:59:11 +030029}
30
Ard Biesheuvel52828262019-10-14 18:16:45 +020031void crypto_aegis128_init_simd(union aegis_block *state,
32 const union aegis_block *key,
33 const u8 *iv)
34{
35 kernel_neon_begin();
36 crypto_aegis128_init_neon(state, key, iv);
37 kernel_neon_end();
38}
39
Ard Biesheuvela4397632019-08-12 01:59:11 +030040void crypto_aegis128_update_simd(union aegis_block *state, const void *msg)
41{
42 kernel_neon_begin();
43 crypto_aegis128_update_neon(state, msg);
44 kernel_neon_end();
45}
46
47void crypto_aegis128_encrypt_chunk_simd(union aegis_block *state, u8 *dst,
48 const u8 *src, unsigned int size)
49{
50 kernel_neon_begin();
51 crypto_aegis128_encrypt_chunk_neon(state, dst, src, size);
52 kernel_neon_end();
53}
54
55void crypto_aegis128_decrypt_chunk_simd(union aegis_block *state, u8 *dst,
56 const u8 *src, unsigned int size)
57{
58 kernel_neon_begin();
59 crypto_aegis128_decrypt_chunk_neon(state, dst, src, size);
60 kernel_neon_end();
61}
Ard Biesheuvel52828262019-10-14 18:16:45 +020062
63void crypto_aegis128_final_simd(union aegis_block *state,
64 union aegis_block *tag_xor,
65 u64 assoclen, u64 cryptlen)
66{
67 kernel_neon_begin();
68 crypto_aegis128_final_neon(state, tag_xor, assoclen, cryptlen);
69 kernel_neon_end();
70}