drm/panthor: Don't add write fences to the shared BOs
[drm/drm-misc.git] / arch / x86 / crypto / serpent-avx.h
blob23f3361a0e72d712dcd09062315820379025dd2a
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef ASM_X86_SERPENT_AVX_H
3 #define ASM_X86_SERPENT_AVX_H
5 #include <crypto/b128ops.h>
6 #include <crypto/serpent.h>
7 #include <linux/types.h>
9 struct crypto_skcipher;
11 #define SERPENT_PARALLEL_BLOCKS 8
13 asmlinkage void serpent_ecb_enc_8way_avx(const void *ctx, u8 *dst,
14 const u8 *src);
15 asmlinkage void serpent_ecb_dec_8way_avx(const void *ctx, u8 *dst,
16 const u8 *src);
18 asmlinkage void serpent_cbc_dec_8way_avx(const void *ctx, u8 *dst,
19 const u8 *src);
21 #endif