2 * AES routines supporting VMX instructions on the Power 8
4 * Copyright (C) 2015 International Business Machines Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 only.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <linux/types.h>
23 #include <linux/err.h>
24 #include <linux/crypto.h>
25 #include <linux/delay.h>
26 #include <linux/hardirq.h>
27 #include <asm/switch_to.h>
28 #include <crypto/aes.h>
30 #include "aesp8-ppc.h"
33 struct crypto_cipher *fallback;
34 struct aes_key enc_key;
35 struct aes_key dec_key;
38 static int p8_aes_init(struct crypto_tfm *tfm)
41 struct crypto_cipher *fallback;
42 struct p8_aes_ctx *ctx = crypto_tfm_ctx(tfm);
44 if (!(alg = crypto_tfm_alg_name(tfm))) {
45 printk(KERN_ERR "Failed to get algorithm name.\n");
49 fallback = crypto_alloc_cipher(alg, 0, CRYPTO_ALG_NEED_FALLBACK);
50 if (IS_ERR(fallback)) {
52 "Failed to allocate transformation for '%s': %ld\n",
53 alg, PTR_ERR(fallback));
54 return PTR_ERR(fallback);
56 printk(KERN_INFO "Using '%s' as fallback implementation.\n",
57 crypto_tfm_alg_driver_name((struct crypto_tfm *) fallback));
59 crypto_cipher_set_flags(fallback,
60 crypto_cipher_get_flags((struct
63 ctx->fallback = fallback;
68 static void p8_aes_exit(struct crypto_tfm *tfm)
70 struct p8_aes_ctx *ctx = crypto_tfm_ctx(tfm);
73 crypto_free_cipher(ctx->fallback);
78 static int p8_aes_setkey(struct crypto_tfm *tfm, const u8 *key,
82 struct p8_aes_ctx *ctx = crypto_tfm_ctx(tfm);
87 ret = aes_p8_set_encrypt_key(key, keylen * 8, &ctx->enc_key);
88 ret += aes_p8_set_decrypt_key(key, keylen * 8, &ctx->dec_key);
93 ret += crypto_cipher_setkey(ctx->fallback, key, keylen);
97 static void p8_aes_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
99 struct p8_aes_ctx *ctx = crypto_tfm_ctx(tfm);
101 if (in_interrupt()) {
102 crypto_cipher_encrypt_one(ctx->fallback, dst, src);
107 aes_p8_encrypt(src, dst, &ctx->enc_key);
108 disable_kernel_vsx();
114 static void p8_aes_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
116 struct p8_aes_ctx *ctx = crypto_tfm_ctx(tfm);
118 if (in_interrupt()) {
119 crypto_cipher_decrypt_one(ctx->fallback, dst, src);
124 aes_p8_decrypt(src, dst, &ctx->dec_key);
125 disable_kernel_vsx();
131 struct crypto_alg p8_aes_alg = {
133 .cra_driver_name = "p8_aes",
134 .cra_module = THIS_MODULE,
135 .cra_priority = 1000,
137 .cra_flags = CRYPTO_ALG_TYPE_CIPHER | CRYPTO_ALG_NEED_FALLBACK,
139 .cra_blocksize = AES_BLOCK_SIZE,
140 .cra_ctxsize = sizeof(struct p8_aes_ctx),
141 .cra_init = p8_aes_init,
142 .cra_exit = p8_aes_exit,
144 .cia_min_keysize = AES_MIN_KEY_SIZE,
145 .cia_max_keysize = AES_MAX_KEY_SIZE,
146 .cia_setkey = p8_aes_setkey,
147 .cia_encrypt = p8_aes_encrypt,
148 .cia_decrypt = p8_aes_decrypt,