2 * AES ECB routines supporting the Power 7+ Nest Accelerators driver
4 * Copyright (C) 2011-2012 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.
19 * Author: Kent Yoder <yoder1@us.ibm.com>
22 #include <crypto/aes.h>
23 #include <crypto/algapi.h>
24 #include <linux/module.h>
25 #include <linux/types.h>
26 #include <linux/crypto.h>
29 #include "nx_csbcpb.h"
33 static int ecb_aes_nx_set_key(struct crypto_tfm
*tfm
,
37 struct nx_crypto_ctx
*nx_ctx
= crypto_tfm_ctx(tfm
);
38 struct nx_csbcpb
*csbcpb
= (struct nx_csbcpb
*)nx_ctx
->csbcpb
;
40 nx_ctx_init(nx_ctx
, HCOP_FC_AES
);
44 NX_CPB_SET_KEY_SIZE(csbcpb
, NX_KS_AES_128
);
45 nx_ctx
->ap
= &nx_ctx
->props
[NX_PROPS_AES_128
];
48 NX_CPB_SET_KEY_SIZE(csbcpb
, NX_KS_AES_192
);
49 nx_ctx
->ap
= &nx_ctx
->props
[NX_PROPS_AES_192
];
52 NX_CPB_SET_KEY_SIZE(csbcpb
, NX_KS_AES_256
);
53 nx_ctx
->ap
= &nx_ctx
->props
[NX_PROPS_AES_256
];
59 csbcpb
->cpb
.hdr
.mode
= NX_MODE_AES_ECB
;
60 memcpy(csbcpb
->cpb
.aes_ecb
.key
, in_key
, key_len
);
65 static int ecb_aes_nx_crypt(struct blkcipher_desc
*desc
,
66 struct scatterlist
*dst
,
67 struct scatterlist
*src
,
71 struct nx_crypto_ctx
*nx_ctx
= crypto_blkcipher_ctx(desc
->tfm
);
72 struct nx_csbcpb
*csbcpb
= nx_ctx
->csbcpb
;
73 unsigned long irq_flags
;
74 unsigned int processed
= 0, to_process
;
78 spin_lock_irqsave(&nx_ctx
->lock
, irq_flags
);
80 max_sg_len
= min_t(u32
, nx_driver
.of
.max_sg_len
/sizeof(struct nx_sg
),
84 NX_CPB_FDM(csbcpb
) |= NX_FDM_ENDE_ENCRYPT
;
86 NX_CPB_FDM(csbcpb
) &= ~NX_FDM_ENDE_ENCRYPT
;
89 to_process
= min_t(u64
, nbytes
- processed
,
90 nx_ctx
->ap
->databytelen
);
91 to_process
= min_t(u64
, to_process
,
92 NX_PAGE_SIZE
* (max_sg_len
- 1));
93 to_process
= to_process
& ~(AES_BLOCK_SIZE
- 1);
95 rc
= nx_build_sg_lists(nx_ctx
, desc
, dst
, src
, to_process
,
100 if (!nx_ctx
->op
.inlen
|| !nx_ctx
->op
.outlen
) {
105 rc
= nx_hcall_sync(nx_ctx
, &nx_ctx
->op
,
106 desc
->flags
& CRYPTO_TFM_REQ_MAY_SLEEP
);
110 atomic_inc(&(nx_ctx
->stats
->aes_ops
));
111 atomic64_add(csbcpb
->csb
.processed_byte_count
,
112 &(nx_ctx
->stats
->aes_bytes
));
114 processed
+= to_process
;
115 } while (processed
< nbytes
);
118 spin_unlock_irqrestore(&nx_ctx
->lock
, irq_flags
);
122 static int ecb_aes_nx_encrypt(struct blkcipher_desc
*desc
,
123 struct scatterlist
*dst
,
124 struct scatterlist
*src
,
127 return ecb_aes_nx_crypt(desc
, dst
, src
, nbytes
, 1);
130 static int ecb_aes_nx_decrypt(struct blkcipher_desc
*desc
,
131 struct scatterlist
*dst
,
132 struct scatterlist
*src
,
135 return ecb_aes_nx_crypt(desc
, dst
, src
, nbytes
, 0);
138 struct crypto_alg nx_ecb_aes_alg
= {
139 .cra_name
= "ecb(aes)",
140 .cra_driver_name
= "ecb-aes-nx",
142 .cra_flags
= CRYPTO_ALG_TYPE_BLKCIPHER
,
143 .cra_blocksize
= AES_BLOCK_SIZE
,
144 .cra_alignmask
= 0xf,
145 .cra_ctxsize
= sizeof(struct nx_crypto_ctx
),
146 .cra_type
= &crypto_blkcipher_type
,
147 .cra_module
= THIS_MODULE
,
148 .cra_init
= nx_crypto_ctx_aes_ecb_init
,
149 .cra_exit
= nx_crypto_ctx_exit
,
151 .min_keysize
= AES_MIN_KEY_SIZE
,
152 .max_keysize
= AES_MAX_KEY_SIZE
,
153 .setkey
= ecb_aes_nx_set_key
,
154 .encrypt
= ecb_aes_nx_encrypt
,
155 .decrypt
= ecb_aes_nx_decrypt
,