1 // SPDX-License-Identifier: GPL-2.0-only
3 * AES routines supporting VMX instructions on the Power 8
5 * Copyright (C) 2015 International Business Machines Inc.
7 * Author: Marcelo Henrique Cerri <mhcerri@br.ibm.com>
10 #include <linux/types.h>
11 #include <linux/err.h>
12 #include <linux/crypto.h>
13 #include <linux/delay.h>
15 #include <asm/switch_to.h>
16 #include <crypto/aes.h>
17 #include <crypto/internal/cipher.h>
18 #include <crypto/internal/simd.h>
20 #include "aesp8-ppc.h"
23 struct crypto_cipher
*fallback
;
24 struct aes_key enc_key
;
25 struct aes_key dec_key
;
28 static int p8_aes_init(struct crypto_tfm
*tfm
)
30 const char *alg
= crypto_tfm_alg_name(tfm
);
31 struct crypto_cipher
*fallback
;
32 struct p8_aes_ctx
*ctx
= crypto_tfm_ctx(tfm
);
34 fallback
= crypto_alloc_cipher(alg
, 0, CRYPTO_ALG_NEED_FALLBACK
);
35 if (IS_ERR(fallback
)) {
37 "Failed to allocate transformation for '%s': %ld\n",
38 alg
, PTR_ERR(fallback
));
39 return PTR_ERR(fallback
);
42 crypto_cipher_set_flags(fallback
,
43 crypto_cipher_get_flags((struct
46 ctx
->fallback
= fallback
;
51 static void p8_aes_exit(struct crypto_tfm
*tfm
)
53 struct p8_aes_ctx
*ctx
= crypto_tfm_ctx(tfm
);
56 crypto_free_cipher(ctx
->fallback
);
61 static int p8_aes_setkey(struct crypto_tfm
*tfm
, const u8
*key
,
65 struct p8_aes_ctx
*ctx
= crypto_tfm_ctx(tfm
);
70 ret
= aes_p8_set_encrypt_key(key
, keylen
* 8, &ctx
->enc_key
);
71 ret
|= aes_p8_set_decrypt_key(key
, keylen
* 8, &ctx
->dec_key
);
76 ret
|= crypto_cipher_setkey(ctx
->fallback
, key
, keylen
);
78 return ret
? -EINVAL
: 0;
81 static void p8_aes_encrypt(struct crypto_tfm
*tfm
, u8
*dst
, const u8
*src
)
83 struct p8_aes_ctx
*ctx
= crypto_tfm_ctx(tfm
);
85 if (!crypto_simd_usable()) {
86 crypto_cipher_encrypt_one(ctx
->fallback
, dst
, src
);
91 aes_p8_encrypt(src
, dst
, &ctx
->enc_key
);
98 static void p8_aes_decrypt(struct crypto_tfm
*tfm
, u8
*dst
, const u8
*src
)
100 struct p8_aes_ctx
*ctx
= crypto_tfm_ctx(tfm
);
102 if (!crypto_simd_usable()) {
103 crypto_cipher_decrypt_one(ctx
->fallback
, dst
, src
);
108 aes_p8_decrypt(src
, dst
, &ctx
->dec_key
);
109 disable_kernel_vsx();
115 struct crypto_alg p8_aes_alg
= {
117 .cra_driver_name
= "p8_aes",
118 .cra_module
= THIS_MODULE
,
119 .cra_priority
= 1000,
121 .cra_flags
= CRYPTO_ALG_TYPE_CIPHER
| CRYPTO_ALG_NEED_FALLBACK
,
123 .cra_blocksize
= AES_BLOCK_SIZE
,
124 .cra_ctxsize
= sizeof(struct p8_aes_ctx
),
125 .cra_init
= p8_aes_init
,
126 .cra_exit
= p8_aes_exit
,
128 .cia_min_keysize
= AES_MIN_KEY_SIZE
,
129 .cia_max_keysize
= AES_MAX_KEY_SIZE
,
130 .cia_setkey
= p8_aes_setkey
,
131 .cia_encrypt
= p8_aes_encrypt
,
132 .cia_decrypt
= p8_aes_decrypt
,