]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/crypto/ixp4xx_crypto.c
gpu: ipu-v3: Fix dev_dbg frequency output
[mirror_ubuntu-jammy-kernel.git] / drivers / crypto / ixp4xx_crypto.c
CommitLineData
25763b3c 1// SPDX-License-Identifier: GPL-2.0-only
81bef015
CH
2/*
3 * Intel IXP4xx NPE-C crypto driver
4 *
5 * Copyright (C) 2008 Christian Hohnstaedt <chohnstaedt@innominate.com>
81bef015
CH
6 */
7
8#include <linux/platform_device.h>
9#include <linux/dma-mapping.h>
10#include <linux/dmapool.h>
11#include <linux/crypto.h>
12#include <linux/kernel.h>
13#include <linux/rtnetlink.h>
14#include <linux/interrupt.h>
15#include <linux/spinlock.h>
5a0e3ad6 16#include <linux/gfp.h>
75258723 17#include <linux/module.h>
76f24b4f 18#include <linux/of.h>
81bef015
CH
19
20#include <crypto/ctr.h>
3ca20b65 21#include <crypto/internal/des.h>
81bef015 22#include <crypto/aes.h>
bb9634df 23#include <crypto/hmac.h>
a24d22b2 24#include <crypto/sha1.h>
81bef015 25#include <crypto/algapi.h>
5290b428 26#include <crypto/internal/aead.h>
4aaf3840 27#include <crypto/internal/skcipher.h>
81bef015
CH
28#include <crypto/authenc.h>
29#include <crypto/scatterwalk.h>
30
4af20dc5
LW
31#include <linux/soc/ixp4xx/npe.h>
32#include <linux/soc/ixp4xx/qmgr.h>
81bef015 33
09aa9aab
AB
34/* Intermittent includes, delete this after v5.14-rc1 */
35#include <linux/soc/ixp4xx/cpu.h>
36#include <mach/ixp4xx-regs.h>
37
81bef015
CH
38#define MAX_KEYLEN 32
39
40/* hash: cfgword + 2 * digestlen; crypt: keylen + cfgword */
41#define NPE_CTX_LEN 80
42#define AES_BLOCK128 16
43
44#define NPE_OP_HASH_VERIFY 0x01
45#define NPE_OP_CCM_ENABLE 0x04
46#define NPE_OP_CRYPT_ENABLE 0x08
47#define NPE_OP_HASH_ENABLE 0x10
48#define NPE_OP_NOT_IN_PLACE 0x20
49#define NPE_OP_HMAC_DISABLE 0x40
50#define NPE_OP_CRYPT_ENCRYPT 0x80
51
52#define NPE_OP_CCM_GEN_MIC 0xcc
53#define NPE_OP_HASH_GEN_ICV 0x50
54#define NPE_OP_ENC_GEN_KEY 0xc9
55
56#define MOD_ECB 0x0000
57#define MOD_CTR 0x1000
58#define MOD_CBC_ENC 0x2000
59#define MOD_CBC_DEC 0x3000
60#define MOD_CCM_ENC 0x4000
61#define MOD_CCM_DEC 0x5000
62
63#define KEYLEN_128 4
64#define KEYLEN_192 6
65#define KEYLEN_256 8
66
67#define CIPH_DECR 0x0000
68#define CIPH_ENCR 0x0400
69
70#define MOD_DES 0x0000
71#define MOD_TDEA2 0x0100
72#define MOD_3DES 0x0200
73#define MOD_AES 0x0800
74#define MOD_AES128 (0x0800 | KEYLEN_128)
75#define MOD_AES192 (0x0900 | KEYLEN_192)
76#define MOD_AES256 (0x0a00 | KEYLEN_256)
77
78#define MAX_IVLEN 16
81bef015
CH
79#define NPE_QLEN 16
80/* Space for registering when the first
81 * NPE_QLEN crypt_ctl are busy */
82#define NPE_QLEN_TOTAL 64
83
81bef015
CH
84#define CTL_FLAG_UNUSED 0x0000
85#define CTL_FLAG_USED 0x1000
86#define CTL_FLAG_PERFORM_ABLK 0x0001
87#define CTL_FLAG_GEN_ICV 0x0002
88#define CTL_FLAG_GEN_REVAES 0x0004
89#define CTL_FLAG_PERFORM_AEAD 0x0008
90#define CTL_FLAG_MASK 0x000f
91
81bef015
CH
92#define HMAC_PAD_BLOCKLEN SHA1_BLOCK_SIZE
93
94#define MD5_DIGEST_SIZE 16
95
96struct buffer_desc {
97 u32 phys_next;
ce057297 98#ifdef __ARMEB__
81bef015
CH
99 u16 buf_len;
100 u16 pkt_len;
ce057297
KH
101#else
102 u16 pkt_len;
103 u16 buf_len;
104#endif
ff455ad9 105 dma_addr_t phys_addr;
81bef015
CH
106 u32 __reserved[4];
107 struct buffer_desc *next;
0d44dc59 108 enum dma_data_direction dir;
81bef015
CH
109};
110
111struct crypt_ctl {
ce057297 112#ifdef __ARMEB__
81bef015
CH
113 u8 mode; /* NPE_OP_* operation mode */
114 u8 init_len;
115 u16 reserved;
ce057297
KH
116#else
117 u16 reserved;
118 u8 init_len;
119 u8 mode; /* NPE_OP_* operation mode */
120#endif
81bef015 121 u8 iv[MAX_IVLEN]; /* IV for CBC mode or CTR IV for CTR mode */
ff455ad9
HX
122 dma_addr_t icv_rev_aes; /* icv or rev aes */
123 dma_addr_t src_buf;
124 dma_addr_t dst_buf;
ce057297 125#ifdef __ARMEB__
81bef015
CH
126 u16 auth_offs; /* Authentication start offset */
127 u16 auth_len; /* Authentication data length */
128 u16 crypt_offs; /* Cryption start offset */
129 u16 crypt_len; /* Cryption data length */
ce057297
KH
130#else
131 u16 auth_len; /* Authentication data length */
132 u16 auth_offs; /* Authentication start offset */
133 u16 crypt_len; /* Cryption data length */
134 u16 crypt_offs; /* Cryption start offset */
135#endif
81bef015
CH
136 u32 aadAddr; /* Additional Auth Data Addr for CCM mode */
137 u32 crypto_ctx; /* NPE Crypto Param structure address */
138
139 /* Used by Host: 4*4 bytes*/
3557084e 140 unsigned int ctl_flags;
81bef015 141 union {
4aaf3840 142 struct skcipher_request *ablk_req;
81bef015
CH
143 struct aead_request *aead_req;
144 struct crypto_tfm *tfm;
145 } data;
146 struct buffer_desc *regist_buf;
147 u8 *regist_ptr;
148};
149
150struct ablk_ctx {
151 struct buffer_desc *src;
152 struct buffer_desc *dst;
e8acf011
CL
153 u8 iv[MAX_IVLEN];
154 bool encrypt;
dfb098d6 155 struct skcipher_request fallback_req; // keep at the end
81bef015
CH
156};
157
158struct aead_ctx {
d7295a8d
HX
159 struct buffer_desc *src;
160 struct buffer_desc *dst;
81bef015
CH
161 struct scatterlist ivlist;
162 /* used when the hmac is not on one sg entry */
163 u8 *hmac_virt;
164 int encrypt;
165};
166
167struct ix_hash_algo {
168 u32 cfgword;
169 unsigned char *icv;
170};
171
172struct ix_sa_dir {
173 unsigned char *npe_ctx;
174 dma_addr_t npe_ctx_phys;
175 int npe_ctx_idx;
176 u8 npe_mode;
177};
178
179struct ixp_ctx {
180 struct ix_sa_dir encrypt;
181 struct ix_sa_dir decrypt;
182 int authkey_len;
183 u8 authkey[MAX_KEYLEN];
184 int enckey_len;
185 u8 enckey[MAX_KEYLEN];
186 u8 salt[MAX_IVLEN];
187 u8 nonce[CTR_RFC3686_NONCE_SIZE];
3557084e 188 unsigned int salted;
81bef015
CH
189 atomic_t configuring;
190 struct completion completion;
dfb098d6 191 struct crypto_skcipher *fallback_tfm;
81bef015
CH
192};
193
194struct ixp_alg {
4aaf3840 195 struct skcipher_alg crypto;
81bef015
CH
196 const struct ix_hash_algo *hash;
197 u32 cfg_enc;
198 u32 cfg_dec;
199
200 int registered;
201};
202
d7295a8d
HX
203struct ixp_aead_alg {
204 struct aead_alg crypto;
205 const struct ix_hash_algo *hash;
206 u32 cfg_enc;
207 u32 cfg_dec;
208
209 int registered;
210};
211
81bef015
CH
212static const struct ix_hash_algo hash_alg_md5 = {
213 .cfgword = 0xAA010004,
214 .icv = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
215 "\xFE\xDC\xBA\x98\x76\x54\x32\x10",
216};
39e39cfb 217
81bef015
CH
218static const struct ix_hash_algo hash_alg_sha1 = {
219 .cfgword = 0x00000005,
220 .icv = "\x67\x45\x23\x01\xEF\xCD\xAB\x89\x98\xBA"
221 "\xDC\xFE\x10\x32\x54\x76\xC3\xD2\xE1\xF0",
222};
223
224static struct npe *npe_c;
76f24b4f
LW
225
226static unsigned int send_qid;
227static unsigned int recv_qid;
87d11a5e
CL
228static struct dma_pool *buffer_pool;
229static struct dma_pool *ctx_pool;
81bef015 230
87d11a5e 231static struct crypt_ctl *crypt_virt;
81bef015
CH
232static dma_addr_t crypt_phys;
233
234static int support_aes = 1;
235
d8cbc3f7 236static struct platform_device *pdev;
81bef015
CH
237
238static inline dma_addr_t crypt_virt2phys(struct crypt_ctl *virt)
239{
240 return crypt_phys + (virt - crypt_virt) * sizeof(struct crypt_ctl);
241}
242
243static inline struct crypt_ctl *crypt_phys2virt(dma_addr_t phys)
244{
245 return crypt_virt + (phys - crypt_phys) / sizeof(struct crypt_ctl);
246}
247
248static inline u32 cipher_cfg_enc(struct crypto_tfm *tfm)
249{
39e39cfb 250 return container_of(tfm->__crt_alg, struct ixp_alg, crypto.base)->cfg_enc;
81bef015
CH
251}
252
253static inline u32 cipher_cfg_dec(struct crypto_tfm *tfm)
254{
39e39cfb 255 return container_of(tfm->__crt_alg, struct ixp_alg, crypto.base)->cfg_dec;
81bef015
CH
256}
257
258static inline const struct ix_hash_algo *ix_hash(struct crypto_tfm *tfm)
259{
4aaf3840 260 return container_of(tfm->__crt_alg, struct ixp_alg, crypto.base)->hash;
81bef015
CH
261}
262
263static int setup_crypt_desc(void)
264{
27c1789c 265 struct device *dev = &pdev->dev;
39e39cfb 266
81bef015 267 BUILD_BUG_ON(sizeof(struct crypt_ctl) != 64);
750afb08
LC
268 crypt_virt = dma_alloc_coherent(dev,
269 NPE_QLEN * sizeof(struct crypt_ctl),
270 &crypt_phys, GFP_ATOMIC);
81bef015
CH
271 if (!crypt_virt)
272 return -ENOMEM;
81bef015
CH
273 return 0;
274}
275
7dad7d00 276static DEFINE_SPINLOCK(desc_lock);
81bef015
CH
277static struct crypt_ctl *get_crypt_desc(void)
278{
279 int i;
87d11a5e 280 static int idx;
81bef015
CH
281 unsigned long flags;
282
283 spin_lock_irqsave(&desc_lock, flags);
284
285 if (unlikely(!crypt_virt))
286 setup_crypt_desc();
287 if (unlikely(!crypt_virt)) {
288 spin_unlock_irqrestore(&desc_lock, flags);
289 return NULL;
290 }
291 i = idx;
292 if (crypt_virt[i].ctl_flags == CTL_FLAG_UNUSED) {
293 if (++idx >= NPE_QLEN)
294 idx = 0;
295 crypt_virt[i].ctl_flags = CTL_FLAG_USED;
296 spin_unlock_irqrestore(&desc_lock, flags);
39e39cfb 297 return crypt_virt + i;
81bef015
CH
298 } else {
299 spin_unlock_irqrestore(&desc_lock, flags);
300 return NULL;
301 }
302}
303
7dad7d00 304static DEFINE_SPINLOCK(emerg_lock);
81bef015
CH
305static struct crypt_ctl *get_crypt_desc_emerg(void)
306{
307 int i;
308 static int idx = NPE_QLEN;
309 struct crypt_ctl *desc;
310 unsigned long flags;
311
312 desc = get_crypt_desc();
313 if (desc)
314 return desc;
315 if (unlikely(!crypt_virt))
316 return NULL;
317
318 spin_lock_irqsave(&emerg_lock, flags);
319 i = idx;
320 if (crypt_virt[i].ctl_flags == CTL_FLAG_UNUSED) {
321 if (++idx >= NPE_QLEN_TOTAL)
322 idx = NPE_QLEN;
323 crypt_virt[i].ctl_flags = CTL_FLAG_USED;
324 spin_unlock_irqrestore(&emerg_lock, flags);
39e39cfb 325 return crypt_virt + i;
81bef015
CH
326 } else {
327 spin_unlock_irqrestore(&emerg_lock, flags);
328 return NULL;
329 }
330}
331
ff455ad9
HX
332static void free_buf_chain(struct device *dev, struct buffer_desc *buf,
333 dma_addr_t phys)
81bef015
CH
334{
335 while (buf) {
336 struct buffer_desc *buf1;
337 u32 phys1;
338
339 buf1 = buf->next;
340 phys1 = buf->phys_next;
9395c58f 341 dma_unmap_single(dev, buf->phys_addr, buf->buf_len, buf->dir);
81bef015
CH
342 dma_pool_free(buffer_pool, buf, phys);
343 buf = buf1;
344 phys = phys1;
345 }
346}
347
348static struct tasklet_struct crypto_done_tasklet;
349
350static void finish_scattered_hmac(struct crypt_ctl *crypt)
351{
352 struct aead_request *req = crypt->data.aead_req;
353 struct aead_ctx *req_ctx = aead_request_ctx(req);
354 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
355 int authsize = crypto_aead_authsize(tfm);
d7295a8d 356 int decryptlen = req->assoclen + req->cryptlen - authsize;
81bef015
CH
357
358 if (req_ctx->encrypt) {
c5e07031
CL
359 scatterwalk_map_and_copy(req_ctx->hmac_virt, req->dst,
360 decryptlen, authsize, 1);
81bef015
CH
361 }
362 dma_pool_free(buffer_pool, req_ctx->hmac_virt, crypt->icv_rev_aes);
363}
364
365static void one_packet(dma_addr_t phys)
366{
27c1789c 367 struct device *dev = &pdev->dev;
81bef015
CH
368 struct crypt_ctl *crypt;
369 struct ixp_ctx *ctx;
370 int failed;
81bef015
CH
371
372 failed = phys & 0x1 ? -EBADMSG : 0;
373 phys &= ~0x3;
374 crypt = crypt_phys2virt(phys);
375
376 switch (crypt->ctl_flags & CTL_FLAG_MASK) {
377 case CTL_FLAG_PERFORM_AEAD: {
378 struct aead_request *req = crypt->data.aead_req;
379 struct aead_ctx *req_ctx = aead_request_ctx(req);
81bef015 380
d7295a8d
HX
381 free_buf_chain(dev, req_ctx->src, crypt->src_buf);
382 free_buf_chain(dev, req_ctx->dst, crypt->dst_buf);
ffb017e9 383 if (req_ctx->hmac_virt)
81bef015 384 finish_scattered_hmac(crypt);
ffb017e9 385
81bef015
CH
386 req->base.complete(&req->base, failed);
387 break;
388 }
389 case CTL_FLAG_PERFORM_ABLK: {
4aaf3840
AB
390 struct skcipher_request *req = crypt->data.ablk_req;
391 struct ablk_ctx *req_ctx = skcipher_request_ctx(req);
e8acf011
CL
392 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
393 unsigned int ivsize = crypto_skcipher_ivsize(tfm);
394 unsigned int offset;
395
396 if (ivsize > 0) {
397 offset = req->cryptlen - ivsize;
398 if (req_ctx->encrypt) {
399 scatterwalk_map_and_copy(req->iv, req->dst,
400 offset, ivsize, 0);
401 } else {
402 memcpy(req->iv, req_ctx->iv, ivsize);
403 memzero_explicit(req_ctx->iv, ivsize);
404 }
405 }
0d44dc59 406
ffb017e9 407 if (req_ctx->dst)
0d44dc59 408 free_buf_chain(dev, req_ctx->dst, crypt->dst_buf);
ffb017e9 409
0d44dc59 410 free_buf_chain(dev, req_ctx->src, crypt->src_buf);
81bef015
CH
411 req->base.complete(&req->base, failed);
412 break;
413 }
414 case CTL_FLAG_GEN_ICV:
415 ctx = crypto_tfm_ctx(crypt->data.tfm);
416 dma_pool_free(ctx_pool, crypt->regist_ptr,
c5e07031 417 crypt->regist_buf->phys_addr);
81bef015
CH
418 dma_pool_free(buffer_pool, crypt->regist_buf, crypt->src_buf);
419 if (atomic_dec_and_test(&ctx->configuring))
420 complete(&ctx->completion);
421 break;
422 case CTL_FLAG_GEN_REVAES:
423 ctx = crypto_tfm_ctx(crypt->data.tfm);
39e39cfb 424 *(u32 *)ctx->decrypt.npe_ctx &= cpu_to_be32(~CIPH_ENCR);
81bef015
CH
425 if (atomic_dec_and_test(&ctx->configuring))
426 complete(&ctx->completion);
427 break;
428 default:
429 BUG();
430 }
431 crypt->ctl_flags = CTL_FLAG_UNUSED;
432}
433
434static void irqhandler(void *_unused)
435{
436 tasklet_schedule(&crypto_done_tasklet);
437}
438
439static void crypto_done_action(unsigned long arg)
440{
441 int i;
442
39e39cfb 443 for (i = 0; i < 4; i++) {
76f24b4f 444 dma_addr_t phys = qmgr_get_entry(recv_qid);
81bef015
CH
445 if (!phys)
446 return;
447 one_packet(phys);
448 }
449 tasklet_schedule(&crypto_done_tasklet);
450}
451
27c1789c 452static int init_ixp_crypto(struct device *dev)
81bef015 453{
76f24b4f 454 struct device_node *np = dev->of_node;
295c01f9 455 u32 msg[2] = { 0, 0 };
76f24b4f
LW
456 int ret = -ENODEV;
457 u32 npe_id;
458
459 dev_info(dev, "probing...\n");
460
461 /* Locate the NPE and queue manager to use from device tree */
462 if (IS_ENABLED(CONFIG_OF) && np) {
463 struct of_phandle_args queue_spec;
464 struct of_phandle_args npe_spec;
465
466 ret = of_parse_phandle_with_fixed_args(np, "intel,npe-handle",
467 1, 0, &npe_spec);
468 if (ret) {
469 dev_err(dev, "no NPE engine specified\n");
470 return -ENODEV;
471 }
472 npe_id = npe_spec.args[0];
81bef015 473
76f24b4f
LW
474 ret = of_parse_phandle_with_fixed_args(np, "queue-rx", 1, 0,
475 &queue_spec);
476 if (ret) {
477 dev_err(dev, "no rx queue phandle\n");
478 return -ENODEV;
479 }
480 recv_qid = queue_spec.args[0];
481
482 ret = of_parse_phandle_with_fixed_args(np, "queue-txready", 1, 0,
483 &queue_spec);
484 if (ret) {
485 dev_err(dev, "no txready queue phandle\n");
486 return -ENODEV;
487 }
488 send_qid = queue_spec.args[0];
489 } else {
490 /*
491 * Hardcoded engine when using platform data, this goes away
492 * when we switch to using DT only.
493 */
494 npe_id = 2;
495 send_qid = 29;
496 recv_qid = 30;
497 }
498
499 npe_c = npe_request(npe_id);
81bef015
CH
500 if (!npe_c)
501 return ret;
502
503 if (!npe_running(npe_c)) {
295c01f9 504 ret = npe_load_firmware(npe_c, npe_name(npe_c), dev);
b363700e 505 if (ret)
c5736a40 506 goto npe_release;
295c01f9
CH
507 if (npe_recv_message(npe_c, msg, "STATUS_MSG"))
508 goto npe_error;
509 } else {
510 if (npe_send_message(npe_c, msg, "STATUS_MSG"))
511 goto npe_error;
512
513 if (npe_recv_message(npe_c, msg, "STATUS_MSG"))
514 goto npe_error;
81bef015
CH
515 }
516
39e39cfb 517 switch ((msg[1] >> 16) & 0xff) {
295c01f9 518 case 3:
f5b82be6 519 dev_warn(dev, "Firmware of %s lacks AES support\n", npe_name(npe_c));
295c01f9
CH
520 support_aes = 0;
521 break;
522 case 4:
523 case 5:
524 support_aes = 1;
525 break;
526 default:
f5b82be6 527 dev_err(dev, "Firmware of %s lacks crypto support\n", npe_name(npe_c));
c5736a40
QL
528 ret = -ENODEV;
529 goto npe_release;
295c01f9 530 }
81bef015
CH
531 /* buffer_pool will also be used to sometimes store the hmac,
532 * so assure it is large enough
533 */
534 BUILD_BUG_ON(SHA1_DIGEST_SIZE > sizeof(struct buffer_desc));
c5e07031
CL
535 buffer_pool = dma_pool_create("buffer", dev, sizeof(struct buffer_desc),
536 32, 0);
81bef015 537 ret = -ENOMEM;
ffb017e9 538 if (!buffer_pool)
81bef015 539 goto err;
ffb017e9 540
c5e07031 541 ctx_pool = dma_pool_create("context", dev, NPE_CTX_LEN, 16, 0);
ffb017e9 542 if (!ctx_pool)
81bef015 543 goto err;
ffb017e9 544
76f24b4f 545 ret = qmgr_request_queue(send_qid, NPE_QLEN_TOTAL, 0, 0,
1777f1a9 546 "ixp_crypto:out", NULL);
81bef015
CH
547 if (ret)
548 goto err;
76f24b4f 549 ret = qmgr_request_queue(recv_qid, NPE_QLEN, 0, 0,
1777f1a9 550 "ixp_crypto:in", NULL);
81bef015 551 if (ret) {
76f24b4f 552 qmgr_release_queue(send_qid);
81bef015
CH
553 goto err;
554 }
76f24b4f 555 qmgr_set_irq(recv_qid, QUEUE_IRQ_SRC_NOT_EMPTY, irqhandler, NULL);
81bef015
CH
556 tasklet_init(&crypto_done_tasklet, crypto_done_action, 0);
557
76f24b4f 558 qmgr_enable_irq(recv_qid);
81bef015 559 return 0;
295c01f9
CH
560
561npe_error:
f5b82be6 562 dev_err(dev, "%s not responding\n", npe_name(npe_c));
295c01f9 563 ret = -EIO;
81bef015 564err:
f9d1293b
ME
565 dma_pool_destroy(ctx_pool);
566 dma_pool_destroy(buffer_pool);
c5736a40 567npe_release:
81bef015
CH
568 npe_release(npe_c);
569 return ret;
570}
571
27c1789c 572static void release_ixp_crypto(struct device *dev)
81bef015 573{
76f24b4f 574 qmgr_disable_irq(recv_qid);
81bef015
CH
575 tasklet_kill(&crypto_done_tasklet);
576
76f24b4f
LW
577 qmgr_release_queue(send_qid);
578 qmgr_release_queue(recv_qid);
81bef015
CH
579
580 dma_pool_destroy(ctx_pool);
581 dma_pool_destroy(buffer_pool);
582
583 npe_release(npe_c);
584
ffb017e9 585 if (crypt_virt)
c5e07031
CL
586 dma_free_coherent(dev, NPE_QLEN * sizeof(struct crypt_ctl),
587 crypt_virt, crypt_phys);
81bef015
CH
588}
589
590static void reset_sa_dir(struct ix_sa_dir *dir)
591{
592 memset(dir->npe_ctx, 0, NPE_CTX_LEN);
593 dir->npe_ctx_idx = 0;
594 dir->npe_mode = 0;
595}
596
597static int init_sa_dir(struct ix_sa_dir *dir)
598{
599 dir->npe_ctx = dma_pool_alloc(ctx_pool, GFP_KERNEL, &dir->npe_ctx_phys);
ffb017e9 600 if (!dir->npe_ctx)
81bef015 601 return -ENOMEM;
ffb017e9 602
81bef015
CH
603 reset_sa_dir(dir);
604 return 0;
605}
606
607static void free_sa_dir(struct ix_sa_dir *dir)
608{
609 memset(dir->npe_ctx, 0, NPE_CTX_LEN);
610 dma_pool_free(ctx_pool, dir->npe_ctx, dir->npe_ctx_phys);
611}
612
613static int init_tfm(struct crypto_tfm *tfm)
614{
615 struct ixp_ctx *ctx = crypto_tfm_ctx(tfm);
616 int ret;
617
618 atomic_set(&ctx->configuring, 0);
619 ret = init_sa_dir(&ctx->encrypt);
620 if (ret)
621 return ret;
622 ret = init_sa_dir(&ctx->decrypt);
ffb017e9 623 if (ret)
81bef015 624 free_sa_dir(&ctx->encrypt);
ffb017e9 625
81bef015
CH
626 return ret;
627}
628
4aaf3840 629static int init_tfm_ablk(struct crypto_skcipher *tfm)
81bef015 630{
dfb098d6
CL
631 struct crypto_tfm *ctfm = crypto_skcipher_tfm(tfm);
632 struct ixp_ctx *ctx = crypto_tfm_ctx(ctfm);
633 const char *name = crypto_tfm_alg_name(ctfm);
634
635 ctx->fallback_tfm = crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK);
636 if (IS_ERR(ctx->fallback_tfm)) {
637 pr_err("ERROR: Cannot allocate fallback for %s %ld\n",
638 name, PTR_ERR(ctx->fallback_tfm));
639 return PTR_ERR(ctx->fallback_tfm);
640 }
641
642 pr_info("Fallback for %s is %s\n",
643 crypto_tfm_alg_driver_name(&tfm->base),
644 crypto_tfm_alg_driver_name(crypto_skcipher_tfm(ctx->fallback_tfm))
645 );
646
647 crypto_skcipher_set_reqsize(tfm, sizeof(struct ablk_ctx) + crypto_skcipher_reqsize(ctx->fallback_tfm));
4aaf3840 648 return init_tfm(crypto_skcipher_tfm(tfm));
81bef015
CH
649}
650
d7295a8d 651static int init_tfm_aead(struct crypto_aead *tfm)
81bef015 652{
d7295a8d
HX
653 crypto_aead_set_reqsize(tfm, sizeof(struct aead_ctx));
654 return init_tfm(crypto_aead_tfm(tfm));
81bef015
CH
655}
656
657static void exit_tfm(struct crypto_tfm *tfm)
658{
659 struct ixp_ctx *ctx = crypto_tfm_ctx(tfm);
39e39cfb 660
81bef015
CH
661 free_sa_dir(&ctx->encrypt);
662 free_sa_dir(&ctx->decrypt);
663}
664
4aaf3840
AB
665static void exit_tfm_ablk(struct crypto_skcipher *tfm)
666{
dfb098d6
CL
667 struct crypto_tfm *ctfm = crypto_skcipher_tfm(tfm);
668 struct ixp_ctx *ctx = crypto_tfm_ctx(ctfm);
669
670 crypto_free_skcipher(ctx->fallback_tfm);
4aaf3840
AB
671 exit_tfm(crypto_skcipher_tfm(tfm));
672}
673
d7295a8d
HX
674static void exit_tfm_aead(struct crypto_aead *tfm)
675{
676 exit_tfm(crypto_aead_tfm(tfm));
677}
678
81bef015 679static int register_chain_var(struct crypto_tfm *tfm, u8 xpad, u32 target,
c5e07031
CL
680 int init_len, u32 ctx_addr, const u8 *key,
681 int key_len)
81bef015
CH
682{
683 struct ixp_ctx *ctx = crypto_tfm_ctx(tfm);
684 struct crypt_ctl *crypt;
685 struct buffer_desc *buf;
686 int i;
687 u8 *pad;
ff455ad9 688 dma_addr_t pad_phys, buf_phys;
81bef015
CH
689
690 BUILD_BUG_ON(NPE_CTX_LEN < HMAC_PAD_BLOCKLEN);
691 pad = dma_pool_alloc(ctx_pool, GFP_KERNEL, &pad_phys);
692 if (!pad)
693 return -ENOMEM;
694 buf = dma_pool_alloc(buffer_pool, GFP_KERNEL, &buf_phys);
695 if (!buf) {
696 dma_pool_free(ctx_pool, pad, pad_phys);
697 return -ENOMEM;
698 }
699 crypt = get_crypt_desc_emerg();
700 if (!crypt) {
701 dma_pool_free(ctx_pool, pad, pad_phys);
702 dma_pool_free(buffer_pool, buf, buf_phys);
703 return -EAGAIN;
704 }
705
706 memcpy(pad, key, key_len);
707 memset(pad + key_len, 0, HMAC_PAD_BLOCKLEN - key_len);
ffb017e9 708 for (i = 0; i < HMAC_PAD_BLOCKLEN; i++)
81bef015 709 pad[i] ^= xpad;
81bef015
CH
710
711 crypt->data.tfm = tfm;
712 crypt->regist_ptr = pad;
713 crypt->regist_buf = buf;
714
715 crypt->auth_offs = 0;
716 crypt->auth_len = HMAC_PAD_BLOCKLEN;
717 crypt->crypto_ctx = ctx_addr;
718 crypt->src_buf = buf_phys;
719 crypt->icv_rev_aes = target;
720 crypt->mode = NPE_OP_HASH_GEN_ICV;
721 crypt->init_len = init_len;
722 crypt->ctl_flags |= CTL_FLAG_GEN_ICV;
723
724 buf->next = 0;
725 buf->buf_len = HMAC_PAD_BLOCKLEN;
726 buf->pkt_len = 0;
727 buf->phys_addr = pad_phys;
728
729 atomic_inc(&ctx->configuring);
76f24b4f
LW
730 qmgr_put_entry(send_qid, crypt_virt2phys(crypt));
731 BUG_ON(qmgr_stat_overflow(send_qid));
81bef015
CH
732 return 0;
733}
734
3557084e
CL
735static int setup_auth(struct crypto_tfm *tfm, int encrypt, unsigned int authsize,
736 const u8 *key, int key_len, unsigned int digest_len)
81bef015
CH
737{
738 u32 itarget, otarget, npe_ctx_addr;
739 unsigned char *cinfo;
740 int init_len, ret = 0;
741 u32 cfgword;
742 struct ix_sa_dir *dir;
743 struct ixp_ctx *ctx = crypto_tfm_ctx(tfm);
744 const struct ix_hash_algo *algo;
745
746 dir = encrypt ? &ctx->encrypt : &ctx->decrypt;
747 cinfo = dir->npe_ctx + dir->npe_ctx_idx;
748 algo = ix_hash(tfm);
749
750 /* write cfg word to cryptinfo */
39e39cfb 751 cfgword = algo->cfgword | (authsize << 6); /* (authsize/4) << 8 */
ce057297
KH
752#ifndef __ARMEB__
753 cfgword ^= 0xAA000000; /* change the "byte swap" flags */
754#endif
39e39cfb 755 *(u32 *)cinfo = cpu_to_be32(cfgword);
81bef015
CH
756 cinfo += sizeof(cfgword);
757
758 /* write ICV to cryptinfo */
759 memcpy(cinfo, algo->icv, digest_len);
760 cinfo += digest_len;
761
762 itarget = dir->npe_ctx_phys + dir->npe_ctx_idx
763 + sizeof(algo->cfgword);
764 otarget = itarget + digest_len;
765 init_len = cinfo - (dir->npe_ctx + dir->npe_ctx_idx);
766 npe_ctx_addr = dir->npe_ctx_phys + dir->npe_ctx_idx;
767
768 dir->npe_ctx_idx += init_len;
769 dir->npe_mode |= NPE_OP_HASH_ENABLE;
770
771 if (!encrypt)
772 dir->npe_mode |= NPE_OP_HASH_VERIFY;
773
774 ret = register_chain_var(tfm, HMAC_OPAD_VALUE, otarget,
c5e07031 775 init_len, npe_ctx_addr, key, key_len);
81bef015
CH
776 if (ret)
777 return ret;
778 return register_chain_var(tfm, HMAC_IPAD_VALUE, itarget,
c5e07031 779 init_len, npe_ctx_addr, key, key_len);
81bef015
CH
780}
781
782static int gen_rev_aes_key(struct crypto_tfm *tfm)
783{
784 struct crypt_ctl *crypt;
785 struct ixp_ctx *ctx = crypto_tfm_ctx(tfm);
786 struct ix_sa_dir *dir = &ctx->decrypt;
787
788 crypt = get_crypt_desc_emerg();
ffb017e9 789 if (!crypt)
81bef015 790 return -EAGAIN;
ffb017e9 791
39e39cfb 792 *(u32 *)dir->npe_ctx |= cpu_to_be32(CIPH_ENCR);
81bef015
CH
793
794 crypt->data.tfm = tfm;
795 crypt->crypt_offs = 0;
796 crypt->crypt_len = AES_BLOCK128;
797 crypt->src_buf = 0;
798 crypt->crypto_ctx = dir->npe_ctx_phys;
799 crypt->icv_rev_aes = dir->npe_ctx_phys + sizeof(u32);
800 crypt->mode = NPE_OP_ENC_GEN_KEY;
801 crypt->init_len = dir->npe_ctx_idx;
802 crypt->ctl_flags |= CTL_FLAG_GEN_REVAES;
803
804 atomic_inc(&ctx->configuring);
76f24b4f
LW
805 qmgr_put_entry(send_qid, crypt_virt2phys(crypt));
806 BUG_ON(qmgr_stat_overflow(send_qid));
81bef015
CH
807 return 0;
808}
809
c5e07031
CL
810static int setup_cipher(struct crypto_tfm *tfm, int encrypt, const u8 *key,
811 int key_len)
81bef015
CH
812{
813 u8 *cinfo;
814 u32 cipher_cfg;
815 u32 keylen_cfg = 0;
816 struct ix_sa_dir *dir;
817 struct ixp_ctx *ctx = crypto_tfm_ctx(tfm);
c4c4db0d 818 int err;
81bef015
CH
819
820 dir = encrypt ? &ctx->encrypt : &ctx->decrypt;
821 cinfo = dir->npe_ctx;
822
823 if (encrypt) {
824 cipher_cfg = cipher_cfg_enc(tfm);
825 dir->npe_mode |= NPE_OP_CRYPT_ENCRYPT;
826 } else {
827 cipher_cfg = cipher_cfg_dec(tfm);
828 }
829 if (cipher_cfg & MOD_AES) {
830 switch (key_len) {
c5e07031
CL
831 case 16:
832 keylen_cfg = MOD_AES128;
833 break;
834 case 24:
835 keylen_cfg = MOD_AES192;
836 break;
837 case 32:
838 keylen_cfg = MOD_AES256;
839 break;
9792eb1d 840 default:
9792eb1d 841 return -EINVAL;
81bef015
CH
842 }
843 cipher_cfg |= keylen_cfg;
81bef015 844 } else {
c4c4db0d
EB
845 err = crypto_des_verify_key(tfm, key);
846 if (err)
847 return err;
81bef015
CH
848 }
849 /* write cfg word to cryptinfo */
39e39cfb 850 *(u32 *)cinfo = cpu_to_be32(cipher_cfg);
81bef015
CH
851 cinfo += sizeof(cipher_cfg);
852
853 /* write cipher key to cryptinfo */
854 memcpy(cinfo, key, key_len);
855 /* NPE wants keylen set to DES3_EDE_KEY_SIZE even for single DES */
856 if (key_len < DES3_EDE_KEY_SIZE && !(cipher_cfg & MOD_AES)) {
39e39cfb 857 memset(cinfo + key_len, 0, DES3_EDE_KEY_SIZE - key_len);
81bef015
CH
858 key_len = DES3_EDE_KEY_SIZE;
859 }
860 dir->npe_ctx_idx = sizeof(cipher_cfg) + key_len;
861 dir->npe_mode |= NPE_OP_CRYPT_ENABLE;
39e39cfb 862 if ((cipher_cfg & MOD_AES) && !encrypt)
81bef015 863 return gen_rev_aes_key(tfm);
39e39cfb 864
81bef015
CH
865 return 0;
866}
867
0d44dc59 868static struct buffer_desc *chainup_buffers(struct device *dev,
3557084e 869 struct scatterlist *sg, unsigned int nbytes,
0d44dc59
CH
870 struct buffer_desc *buf, gfp_t flags,
871 enum dma_data_direction dir)
81bef015 872{
5be4d4c9 873 for (; nbytes > 0; sg = sg_next(sg)) {
3557084e 874 unsigned int len = min(nbytes, sg->length);
81bef015 875 struct buffer_desc *next_buf;
ff455ad9 876 dma_addr_t next_buf_phys;
0d44dc59 877 void *ptr;
81bef015 878
81bef015 879 nbytes -= len;
796b40c6 880 ptr = sg_virt(sg);
81bef015 881 next_buf = dma_pool_alloc(buffer_pool, flags, &next_buf_phys);
0d44dc59
CH
882 if (!next_buf) {
883 buf = NULL;
884 break;
885 }
886 sg_dma_address(sg) = dma_map_single(dev, ptr, len, dir);
81bef015
CH
887 buf->next = next_buf;
888 buf->phys_next = next_buf_phys;
81bef015 889 buf = next_buf;
0d44dc59 890
81bef015
CH
891 buf->phys_addr = sg_dma_address(sg);
892 buf->buf_len = len;
0d44dc59 893 buf->dir = dir;
81bef015 894 }
0d44dc59
CH
895 buf->next = NULL;
896 buf->phys_next = 0;
81bef015
CH
897 return buf;
898}
899
4aaf3840 900static int ablk_setkey(struct crypto_skcipher *tfm, const u8 *key,
c5e07031 901 unsigned int key_len)
81bef015 902{
4aaf3840 903 struct ixp_ctx *ctx = crypto_skcipher_ctx(tfm);
81bef015
CH
904 int ret;
905
906 init_completion(&ctx->completion);
907 atomic_inc(&ctx->configuring);
908
909 reset_sa_dir(&ctx->encrypt);
910 reset_sa_dir(&ctx->decrypt);
911
912 ctx->encrypt.npe_mode = NPE_OP_HMAC_DISABLE;
913 ctx->decrypt.npe_mode = NPE_OP_HMAC_DISABLE;
914
915 ret = setup_cipher(&tfm->base, 0, key, key_len);
916 if (ret)
917 goto out;
918 ret = setup_cipher(&tfm->base, 1, key, key_len);
81bef015
CH
919out:
920 if (!atomic_dec_and_test(&ctx->configuring))
921 wait_for_completion(&ctx->completion);
dfb098d6
CL
922 if (ret)
923 return ret;
924 crypto_skcipher_clear_flags(ctx->fallback_tfm, CRYPTO_TFM_REQ_MASK);
925 crypto_skcipher_set_flags(ctx->fallback_tfm, tfm->base.crt_flags & CRYPTO_TFM_REQ_MASK);
926
927 return crypto_skcipher_setkey(ctx->fallback_tfm, key, key_len);
81bef015
CH
928}
929
4aaf3840 930static int ablk_des3_setkey(struct crypto_skcipher *tfm, const u8 *key,
dba434a9
HX
931 unsigned int key_len)
932{
4aaf3840 933 return verify_skcipher_des3_key(tfm, key) ?:
3ca20b65 934 ablk_setkey(tfm, key, key_len);
dba434a9
HX
935}
936
4aaf3840 937static int ablk_rfc3686_setkey(struct crypto_skcipher *tfm, const u8 *key,
c5e07031 938 unsigned int key_len)
81bef015 939{
4aaf3840 940 struct ixp_ctx *ctx = crypto_skcipher_ctx(tfm);
81bef015
CH
941
942 /* the nonce is stored in bytes at end of key */
943 if (key_len < CTR_RFC3686_NONCE_SIZE)
944 return -EINVAL;
945
946 memcpy(ctx->nonce, key + (key_len - CTR_RFC3686_NONCE_SIZE),
c5e07031 947 CTR_RFC3686_NONCE_SIZE);
81bef015
CH
948
949 key_len -= CTR_RFC3686_NONCE_SIZE;
950 return ablk_setkey(tfm, key, key_len);
951}
952
dfb098d6
CL
953static int ixp4xx_cipher_fallback(struct skcipher_request *areq, int encrypt)
954{
955 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(areq);
956 struct ixp_ctx *op = crypto_skcipher_ctx(tfm);
957 struct ablk_ctx *rctx = skcipher_request_ctx(areq);
958 int err;
959
960 skcipher_request_set_tfm(&rctx->fallback_req, op->fallback_tfm);
961 skcipher_request_set_callback(&rctx->fallback_req, areq->base.flags,
962 areq->base.complete, areq->base.data);
963 skcipher_request_set_crypt(&rctx->fallback_req, areq->src, areq->dst,
964 areq->cryptlen, areq->iv);
965 if (encrypt)
966 err = crypto_skcipher_encrypt(&rctx->fallback_req);
967 else
968 err = crypto_skcipher_decrypt(&rctx->fallback_req);
969 return err;
970}
971
4aaf3840 972static int ablk_perform(struct skcipher_request *req, int encrypt)
81bef015 973{
4aaf3840
AB
974 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
975 struct ixp_ctx *ctx = crypto_skcipher_ctx(tfm);
3557084e 976 unsigned int ivsize = crypto_skcipher_ivsize(tfm);
81bef015
CH
977 struct ix_sa_dir *dir;
978 struct crypt_ctl *crypt;
4aaf3840 979 unsigned int nbytes = req->cryptlen;
81bef015 980 enum dma_data_direction src_direction = DMA_BIDIRECTIONAL;
4aaf3840 981 struct ablk_ctx *req_ctx = skcipher_request_ctx(req);
0d44dc59 982 struct buffer_desc src_hook;
27c1789c 983 struct device *dev = &pdev->dev;
e8acf011 984 unsigned int offset;
81bef015
CH
985 gfp_t flags = req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP ?
986 GFP_KERNEL : GFP_ATOMIC;
987
dfb098d6
CL
988 if (sg_nents(req->src) > 1 || sg_nents(req->dst) > 1)
989 return ixp4xx_cipher_fallback(req, encrypt);
990
76f24b4f 991 if (qmgr_stat_full(send_qid))
81bef015
CH
992 return -EAGAIN;
993 if (atomic_read(&ctx->configuring))
994 return -EAGAIN;
995
996 dir = encrypt ? &ctx->encrypt : &ctx->decrypt;
e8acf011 997 req_ctx->encrypt = encrypt;
81bef015
CH
998
999 crypt = get_crypt_desc();
1000 if (!crypt)
0d44dc59 1001 return -ENOMEM;
81bef015
CH
1002
1003 crypt->data.ablk_req = req;
1004 crypt->crypto_ctx = dir->npe_ctx_phys;
1005 crypt->mode = dir->npe_mode;
1006 crypt->init_len = dir->npe_ctx_idx;
1007
1008 crypt->crypt_offs = 0;
1009 crypt->crypt_len = nbytes;
1010
4aaf3840
AB
1011 BUG_ON(ivsize && !req->iv);
1012 memcpy(crypt->iv, req->iv, ivsize);
e8acf011
CL
1013 if (ivsize > 0 && !encrypt) {
1014 offset = req->cryptlen - ivsize;
1015 scatterwalk_map_and_copy(req_ctx->iv, req->src, offset, ivsize, 0);
1016 }
81bef015 1017 if (req->src != req->dst) {
0d44dc59 1018 struct buffer_desc dst_hook;
39e39cfb 1019
81bef015 1020 crypt->mode |= NPE_OP_NOT_IN_PLACE;
81bef015
CH
1021 /* This was never tested by Intel
1022 * for more than one dst buffer, I think. */
0d44dc59
CH
1023 req_ctx->dst = NULL;
1024 if (!chainup_buffers(dev, req->dst, nbytes, &dst_hook,
c5e07031 1025 flags, DMA_FROM_DEVICE))
81bef015
CH
1026 goto free_buf_dest;
1027 src_direction = DMA_TO_DEVICE;
0d44dc59
CH
1028 req_ctx->dst = dst_hook.next;
1029 crypt->dst_buf = dst_hook.phys_next;
81bef015
CH
1030 } else {
1031 req_ctx->dst = NULL;
81bef015 1032 }
0d44dc59 1033 req_ctx->src = NULL;
c5e07031
CL
1034 if (!chainup_buffers(dev, req->src, nbytes, &src_hook, flags,
1035 src_direction))
81bef015
CH
1036 goto free_buf_src;
1037
0d44dc59
CH
1038 req_ctx->src = src_hook.next;
1039 crypt->src_buf = src_hook.phys_next;
81bef015 1040 crypt->ctl_flags |= CTL_FLAG_PERFORM_ABLK;
76f24b4f
LW
1041 qmgr_put_entry(send_qid, crypt_virt2phys(crypt));
1042 BUG_ON(qmgr_stat_overflow(send_qid));
81bef015
CH
1043 return -EINPROGRESS;
1044
1045free_buf_src:
0d44dc59 1046 free_buf_chain(dev, req_ctx->src, crypt->src_buf);
81bef015 1047free_buf_dest:
ffb017e9 1048 if (req->src != req->dst)
0d44dc59 1049 free_buf_chain(dev, req_ctx->dst, crypt->dst_buf);
ffb017e9 1050
81bef015 1051 crypt->ctl_flags = CTL_FLAG_UNUSED;
0d44dc59 1052 return -ENOMEM;
81bef015
CH
1053}
1054
4aaf3840 1055static int ablk_encrypt(struct skcipher_request *req)
81bef015
CH
1056{
1057 return ablk_perform(req, 1);
1058}
1059
4aaf3840 1060static int ablk_decrypt(struct skcipher_request *req)
81bef015
CH
1061{
1062 return ablk_perform(req, 0);
1063}
1064
4aaf3840 1065static int ablk_rfc3686_crypt(struct skcipher_request *req)
81bef015 1066{
4aaf3840
AB
1067 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
1068 struct ixp_ctx *ctx = crypto_skcipher_ctx(tfm);
81bef015 1069 u8 iv[CTR_RFC3686_BLOCK_SIZE];
4aaf3840 1070 u8 *info = req->iv;
81bef015
CH
1071 int ret;
1072
1073 /* set up counter block */
39e39cfb 1074 memcpy(iv, ctx->nonce, CTR_RFC3686_NONCE_SIZE);
81bef015
CH
1075 memcpy(iv + CTR_RFC3686_NONCE_SIZE, info, CTR_RFC3686_IV_SIZE);
1076
1077 /* initialize counter portion of counter block */
1078 *(__be32 *)(iv + CTR_RFC3686_NONCE_SIZE + CTR_RFC3686_IV_SIZE) =
1079 cpu_to_be32(1);
1080
4aaf3840 1081 req->iv = iv;
81bef015 1082 ret = ablk_perform(req, 1);
4aaf3840 1083 req->iv = info;
81bef015
CH
1084 return ret;
1085}
1086
81bef015 1087static int aead_perform(struct aead_request *req, int encrypt,
c5e07031 1088 int cryptoffset, int eff_cryptlen, u8 *iv)
81bef015
CH
1089{
1090 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
1091 struct ixp_ctx *ctx = crypto_aead_ctx(tfm);
3557084e
CL
1092 unsigned int ivsize = crypto_aead_ivsize(tfm);
1093 unsigned int authsize = crypto_aead_authsize(tfm);
81bef015
CH
1094 struct ix_sa_dir *dir;
1095 struct crypt_ctl *crypt;
0d44dc59
CH
1096 unsigned int cryptlen;
1097 struct buffer_desc *buf, src_hook;
81bef015 1098 struct aead_ctx *req_ctx = aead_request_ctx(req);
27c1789c 1099 struct device *dev = &pdev->dev;
81bef015
CH
1100 gfp_t flags = req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP ?
1101 GFP_KERNEL : GFP_ATOMIC;
d7295a8d
HX
1102 enum dma_data_direction src_direction = DMA_BIDIRECTIONAL;
1103 unsigned int lastlen;
81bef015 1104
76f24b4f 1105 if (qmgr_stat_full(send_qid))
81bef015
CH
1106 return -EAGAIN;
1107 if (atomic_read(&ctx->configuring))
1108 return -EAGAIN;
1109
1110 if (encrypt) {
1111 dir = &ctx->encrypt;
1112 cryptlen = req->cryptlen;
1113 } else {
1114 dir = &ctx->decrypt;
1115 /* req->cryptlen includes the authsize when decrypting */
39e39cfb 1116 cryptlen = req->cryptlen - authsize;
81bef015
CH
1117 eff_cryptlen -= authsize;
1118 }
1119 crypt = get_crypt_desc();
1120 if (!crypt)
0d44dc59 1121 return -ENOMEM;
81bef015
CH
1122
1123 crypt->data.aead_req = req;
1124 crypt->crypto_ctx = dir->npe_ctx_phys;
1125 crypt->mode = dir->npe_mode;
1126 crypt->init_len = dir->npe_ctx_idx;
1127
1128 crypt->crypt_offs = cryptoffset;
1129 crypt->crypt_len = eff_cryptlen;
1130
1131 crypt->auth_offs = 0;
d7295a8d 1132 crypt->auth_len = req->assoclen + cryptlen;
81bef015
CH
1133 BUG_ON(ivsize && !req->iv);
1134 memcpy(crypt->iv, req->iv, ivsize);
1135
0f987e25
HX
1136 buf = chainup_buffers(dev, req->src, crypt->auth_len,
1137 &src_hook, flags, src_direction);
1138 req_ctx->src = src_hook.next;
1139 crypt->src_buf = src_hook.phys_next;
1140 if (!buf)
1141 goto free_buf_src;
1142
1143 lastlen = buf->buf_len;
1144 if (lastlen >= authsize)
1145 crypt->icv_rev_aes = buf->phys_addr +
1146 buf->buf_len - authsize;
1147
d7295a8d
HX
1148 req_ctx->dst = NULL;
1149
81bef015 1150 if (req->src != req->dst) {
d7295a8d
HX
1151 struct buffer_desc dst_hook;
1152
1153 crypt->mode |= NPE_OP_NOT_IN_PLACE;
1154 src_direction = DMA_TO_DEVICE;
1155
1156 buf = chainup_buffers(dev, req->dst, crypt->auth_len,
1157 &dst_hook, flags, DMA_FROM_DEVICE);
1158 req_ctx->dst = dst_hook.next;
1159 crypt->dst_buf = dst_hook.phys_next;
1160
1161 if (!buf)
1162 goto free_buf_dst;
1163
1164 if (encrypt) {
1165 lastlen = buf->buf_len;
1166 if (lastlen >= authsize)
1167 crypt->icv_rev_aes = buf->phys_addr +
1168 buf->buf_len - authsize;
1169 }
81bef015
CH
1170 }
1171
d7295a8d 1172 if (unlikely(lastlen < authsize)) {
81bef015
CH
1173 /* The 12 hmac bytes are scattered,
1174 * we need to copy them into a safe buffer */
1175 req_ctx->hmac_virt = dma_pool_alloc(buffer_pool, flags,
c5e07031 1176 &crypt->icv_rev_aes);
81bef015 1177 if (unlikely(!req_ctx->hmac_virt))
28389575 1178 goto free_buf_dst;
81bef015
CH
1179 if (!encrypt) {
1180 scatterwalk_map_and_copy(req_ctx->hmac_virt,
c5e07031 1181 req->src, cryptlen, authsize, 0);
81bef015
CH
1182 }
1183 req_ctx->encrypt = encrypt;
1184 } else {
1185 req_ctx->hmac_virt = NULL;
1186 }
0d44dc59 1187
81bef015 1188 crypt->ctl_flags |= CTL_FLAG_PERFORM_AEAD;
76f24b4f
LW
1189 qmgr_put_entry(send_qid, crypt_virt2phys(crypt));
1190 BUG_ON(qmgr_stat_overflow(send_qid));
81bef015 1191 return -EINPROGRESS;
d7295a8d 1192
d7295a8d
HX
1193free_buf_dst:
1194 free_buf_chain(dev, req_ctx->dst, crypt->dst_buf);
28389575
HX
1195free_buf_src:
1196 free_buf_chain(dev, req_ctx->src, crypt->src_buf);
81bef015 1197 crypt->ctl_flags = CTL_FLAG_UNUSED;
0d44dc59 1198 return -ENOMEM;
81bef015
CH
1199}
1200
1201static int aead_setup(struct crypto_aead *tfm, unsigned int authsize)
1202{
1203 struct ixp_ctx *ctx = crypto_aead_ctx(tfm);
3557084e 1204 unsigned int digest_len = crypto_aead_maxauthsize(tfm);
81bef015
CH
1205 int ret;
1206
1207 if (!ctx->enckey_len && !ctx->authkey_len)
1208 return 0;
1209 init_completion(&ctx->completion);
1210 atomic_inc(&ctx->configuring);
1211
1212 reset_sa_dir(&ctx->encrypt);
1213 reset_sa_dir(&ctx->decrypt);
1214
1215 ret = setup_cipher(&tfm->base, 0, ctx->enckey, ctx->enckey_len);
1216 if (ret)
1217 goto out;
1218 ret = setup_cipher(&tfm->base, 1, ctx->enckey, ctx->enckey_len);
1219 if (ret)
1220 goto out;
1221 ret = setup_auth(&tfm->base, 0, authsize, ctx->authkey,
c5e07031 1222 ctx->authkey_len, digest_len);
81bef015
CH
1223 if (ret)
1224 goto out;
1225 ret = setup_auth(&tfm->base, 1, authsize, ctx->authkey,
c5e07031 1226 ctx->authkey_len, digest_len);
81bef015
CH
1227out:
1228 if (!atomic_dec_and_test(&ctx->configuring))
1229 wait_for_completion(&ctx->completion);
1230 return ret;
1231}
1232
1233static int aead_setauthsize(struct crypto_aead *tfm, unsigned int authsize)
1234{
6da9c233 1235 int max = crypto_aead_maxauthsize(tfm) >> 2;
81bef015 1236
39e39cfb 1237 if ((authsize >> 2) < 1 || (authsize >> 2) > max || (authsize & 3))
81bef015
CH
1238 return -EINVAL;
1239 return aead_setup(tfm, authsize);
1240}
1241
1242static int aead_setkey(struct crypto_aead *tfm, const u8 *key,
c5e07031 1243 unsigned int keylen)
81bef015
CH
1244{
1245 struct ixp_ctx *ctx = crypto_aead_ctx(tfm);
56902781 1246 struct crypto_authenc_keys keys;
81bef015 1247
56902781 1248 if (crypto_authenc_extractkeys(&keys, key, keylen) != 0)
81bef015
CH
1249 goto badkey;
1250
56902781
MK
1251 if (keys.authkeylen > sizeof(ctx->authkey))
1252 goto badkey;
81bef015 1253
56902781 1254 if (keys.enckeylen > sizeof(ctx->enckey))
81bef015
CH
1255 goto badkey;
1256
56902781
MK
1257 memcpy(ctx->authkey, keys.authkey, keys.authkeylen);
1258 memcpy(ctx->enckey, keys.enckey, keys.enckeylen);
1259 ctx->authkey_len = keys.authkeylen;
1260 ctx->enckey_len = keys.enckeylen;
81bef015 1261
0e7da29d 1262 memzero_explicit(&keys, sizeof(keys));
81bef015
CH
1263 return aead_setup(tfm, crypto_aead_authsize(tfm));
1264badkey:
0e7da29d 1265 memzero_explicit(&keys, sizeof(keys));
81bef015
CH
1266 return -EINVAL;
1267}
1268
dba434a9
HX
1269static int des3_aead_setkey(struct crypto_aead *tfm, const u8 *key,
1270 unsigned int keylen)
1271{
1272 struct ixp_ctx *ctx = crypto_aead_ctx(tfm);
dba434a9
HX
1273 struct crypto_authenc_keys keys;
1274 int err;
1275
1276 err = crypto_authenc_extractkeys(&keys, key, keylen);
1277 if (unlikely(err))
1278 goto badkey;
1279
1280 err = -EINVAL;
1281 if (keys.authkeylen > sizeof(ctx->authkey))
1282 goto badkey;
1283
3ca20b65
AB
1284 err = verify_aead_des3_key(tfm, keys.enckey, keys.enckeylen);
1285 if (err)
dba434a9
HX
1286 goto badkey;
1287
1288 memcpy(ctx->authkey, keys.authkey, keys.authkeylen);
1289 memcpy(ctx->enckey, keys.enckey, keys.enckeylen);
1290 ctx->authkey_len = keys.authkeylen;
1291 ctx->enckey_len = keys.enckeylen;
1292
1293 memzero_explicit(&keys, sizeof(keys));
1294 return aead_setup(tfm, crypto_aead_authsize(tfm));
1295badkey:
dba434a9
HX
1296 memzero_explicit(&keys, sizeof(keys));
1297 return err;
1298}
1299
81bef015
CH
1300static int aead_encrypt(struct aead_request *req)
1301{
d7295a8d 1302 return aead_perform(req, 1, req->assoclen, req->cryptlen, req->iv);
81bef015
CH
1303}
1304
1305static int aead_decrypt(struct aead_request *req)
1306{
d7295a8d 1307 return aead_perform(req, 0, req->assoclen, req->cryptlen, req->iv);
81bef015
CH
1308}
1309
1310static struct ixp_alg ixp4xx_algos[] = {
1311{
1312 .crypto = {
4aaf3840
AB
1313 .base.cra_name = "cbc(des)",
1314 .base.cra_blocksize = DES_BLOCK_SIZE,
1315
1316 .min_keysize = DES_KEY_SIZE,
1317 .max_keysize = DES_KEY_SIZE,
1318 .ivsize = DES_BLOCK_SIZE,
81bef015
CH
1319 },
1320 .cfg_enc = CIPH_ENCR | MOD_DES | MOD_CBC_ENC | KEYLEN_192,
1321 .cfg_dec = CIPH_DECR | MOD_DES | MOD_CBC_DEC | KEYLEN_192,
1322
1323}, {
1324 .crypto = {
4aaf3840
AB
1325 .base.cra_name = "ecb(des)",
1326 .base.cra_blocksize = DES_BLOCK_SIZE,
1327 .min_keysize = DES_KEY_SIZE,
1328 .max_keysize = DES_KEY_SIZE,
81bef015
CH
1329 },
1330 .cfg_enc = CIPH_ENCR | MOD_DES | MOD_ECB | KEYLEN_192,
1331 .cfg_dec = CIPH_DECR | MOD_DES | MOD_ECB | KEYLEN_192,
1332}, {
1333 .crypto = {
4aaf3840
AB
1334 .base.cra_name = "cbc(des3_ede)",
1335 .base.cra_blocksize = DES3_EDE_BLOCK_SIZE,
1336
1337 .min_keysize = DES3_EDE_KEY_SIZE,
1338 .max_keysize = DES3_EDE_KEY_SIZE,
1339 .ivsize = DES3_EDE_BLOCK_SIZE,
1340 .setkey = ablk_des3_setkey,
81bef015
CH
1341 },
1342 .cfg_enc = CIPH_ENCR | MOD_3DES | MOD_CBC_ENC | KEYLEN_192,
1343 .cfg_dec = CIPH_DECR | MOD_3DES | MOD_CBC_DEC | KEYLEN_192,
1344}, {
1345 .crypto = {
4aaf3840
AB
1346 .base.cra_name = "ecb(des3_ede)",
1347 .base.cra_blocksize = DES3_EDE_BLOCK_SIZE,
1348
1349 .min_keysize = DES3_EDE_KEY_SIZE,
1350 .max_keysize = DES3_EDE_KEY_SIZE,
1351 .setkey = ablk_des3_setkey,
81bef015
CH
1352 },
1353 .cfg_enc = CIPH_ENCR | MOD_3DES | MOD_ECB | KEYLEN_192,
1354 .cfg_dec = CIPH_DECR | MOD_3DES | MOD_ECB | KEYLEN_192,
1355}, {
1356 .crypto = {
4aaf3840
AB
1357 .base.cra_name = "cbc(aes)",
1358 .base.cra_blocksize = AES_BLOCK_SIZE,
1359
1360 .min_keysize = AES_MIN_KEY_SIZE,
1361 .max_keysize = AES_MAX_KEY_SIZE,
1362 .ivsize = AES_BLOCK_SIZE,
81bef015
CH
1363 },
1364 .cfg_enc = CIPH_ENCR | MOD_AES | MOD_CBC_ENC,
1365 .cfg_dec = CIPH_DECR | MOD_AES | MOD_CBC_DEC,
1366}, {
1367 .crypto = {
4aaf3840
AB
1368 .base.cra_name = "ecb(aes)",
1369 .base.cra_blocksize = AES_BLOCK_SIZE,
1370
1371 .min_keysize = AES_MIN_KEY_SIZE,
1372 .max_keysize = AES_MAX_KEY_SIZE,
81bef015
CH
1373 },
1374 .cfg_enc = CIPH_ENCR | MOD_AES | MOD_ECB,
1375 .cfg_dec = CIPH_DECR | MOD_AES | MOD_ECB,
1376}, {
1377 .crypto = {
4aaf3840
AB
1378 .base.cra_name = "ctr(aes)",
1379 .base.cra_blocksize = 1,
1380
1381 .min_keysize = AES_MIN_KEY_SIZE,
1382 .max_keysize = AES_MAX_KEY_SIZE,
1383 .ivsize = AES_BLOCK_SIZE,
81bef015
CH
1384 },
1385 .cfg_enc = CIPH_ENCR | MOD_AES | MOD_CTR,
1386 .cfg_dec = CIPH_ENCR | MOD_AES | MOD_CTR,
1387}, {
1388 .crypto = {
4aaf3840
AB
1389 .base.cra_name = "rfc3686(ctr(aes))",
1390 .base.cra_blocksize = 1,
1391
1392 .min_keysize = AES_MIN_KEY_SIZE,
1393 .max_keysize = AES_MAX_KEY_SIZE,
1394 .ivsize = AES_BLOCK_SIZE,
1395 .setkey = ablk_rfc3686_setkey,
1396 .encrypt = ablk_rfc3686_crypt,
1397 .decrypt = ablk_rfc3686_crypt,
81bef015
CH
1398 },
1399 .cfg_enc = CIPH_ENCR | MOD_AES | MOD_CTR,
1400 .cfg_dec = CIPH_ENCR | MOD_AES | MOD_CTR,
d7295a8d
HX
1401} };
1402
1403static struct ixp_aead_alg ixp4xx_aeads[] = {
1404{
81bef015 1405 .crypto = {
d7295a8d
HX
1406 .base = {
1407 .cra_name = "authenc(hmac(md5),cbc(des))",
1408 .cra_blocksize = DES_BLOCK_SIZE,
1409 },
1410 .ivsize = DES_BLOCK_SIZE,
1411 .maxauthsize = MD5_DIGEST_SIZE,
81bef015
CH
1412 },
1413 .hash = &hash_alg_md5,
1414 .cfg_enc = CIPH_ENCR | MOD_DES | MOD_CBC_ENC | KEYLEN_192,
1415 .cfg_dec = CIPH_DECR | MOD_DES | MOD_CBC_DEC | KEYLEN_192,
1416}, {
1417 .crypto = {
d7295a8d
HX
1418 .base = {
1419 .cra_name = "authenc(hmac(md5),cbc(des3_ede))",
1420 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
1421 },
1422 .ivsize = DES3_EDE_BLOCK_SIZE,
1423 .maxauthsize = MD5_DIGEST_SIZE,
dba434a9 1424 .setkey = des3_aead_setkey,
81bef015
CH
1425 },
1426 .hash = &hash_alg_md5,
1427 .cfg_enc = CIPH_ENCR | MOD_3DES | MOD_CBC_ENC | KEYLEN_192,
1428 .cfg_dec = CIPH_DECR | MOD_3DES | MOD_CBC_DEC | KEYLEN_192,
1429}, {
1430 .crypto = {
d7295a8d
HX
1431 .base = {
1432 .cra_name = "authenc(hmac(sha1),cbc(des))",
1433 .cra_blocksize = DES_BLOCK_SIZE,
1434 },
81bef015
CH
1435 .ivsize = DES_BLOCK_SIZE,
1436 .maxauthsize = SHA1_DIGEST_SIZE,
81bef015
CH
1437 },
1438 .hash = &hash_alg_sha1,
1439 .cfg_enc = CIPH_ENCR | MOD_DES | MOD_CBC_ENC | KEYLEN_192,
1440 .cfg_dec = CIPH_DECR | MOD_DES | MOD_CBC_DEC | KEYLEN_192,
1441}, {
1442 .crypto = {
d7295a8d
HX
1443 .base = {
1444 .cra_name = "authenc(hmac(sha1),cbc(des3_ede))",
1445 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
1446 },
1447 .ivsize = DES3_EDE_BLOCK_SIZE,
1448 .maxauthsize = SHA1_DIGEST_SIZE,
dba434a9 1449 .setkey = des3_aead_setkey,
81bef015
CH
1450 },
1451 .hash = &hash_alg_sha1,
1452 .cfg_enc = CIPH_ENCR | MOD_3DES | MOD_CBC_ENC | KEYLEN_192,
1453 .cfg_dec = CIPH_DECR | MOD_3DES | MOD_CBC_DEC | KEYLEN_192,
1454}, {
1455 .crypto = {
d7295a8d
HX
1456 .base = {
1457 .cra_name = "authenc(hmac(md5),cbc(aes))",
1458 .cra_blocksize = AES_BLOCK_SIZE,
1459 },
1460 .ivsize = AES_BLOCK_SIZE,
1461 .maxauthsize = MD5_DIGEST_SIZE,
81bef015
CH
1462 },
1463 .hash = &hash_alg_md5,
1464 .cfg_enc = CIPH_ENCR | MOD_AES | MOD_CBC_ENC,
1465 .cfg_dec = CIPH_DECR | MOD_AES | MOD_CBC_DEC,
1466}, {
1467 .crypto = {
d7295a8d
HX
1468 .base = {
1469 .cra_name = "authenc(hmac(sha1),cbc(aes))",
1470 .cra_blocksize = AES_BLOCK_SIZE,
1471 },
1472 .ivsize = AES_BLOCK_SIZE,
1473 .maxauthsize = SHA1_DIGEST_SIZE,
81bef015
CH
1474 },
1475 .hash = &hash_alg_sha1,
1476 .cfg_enc = CIPH_ENCR | MOD_AES | MOD_CBC_ENC,
1477 .cfg_dec = CIPH_DECR | MOD_AES | MOD_CBC_DEC,
1478} };
1479
1480#define IXP_POSTFIX "-ixp4xx"
d8cbc3f7 1481
f5a6bf07 1482static int ixp_crypto_probe(struct platform_device *_pdev)
81bef015 1483{
76f24b4f 1484 struct device *dev = &_pdev->dev;
81bef015 1485 int num = ARRAY_SIZE(ixp4xx_algos);
efb753b8 1486 int i, err;
81bef015 1487
f5a6bf07 1488 pdev = _pdev;
d8cbc3f7 1489
76f24b4f 1490 err = init_ixp_crypto(dev);
f5a6bf07 1491 if (err)
81bef015 1492 return err;
f5a6bf07 1493
39e39cfb 1494 for (i = 0; i < num; i++) {
4aaf3840 1495 struct skcipher_alg *cra = &ixp4xx_algos[i].crypto;
81bef015 1496
4aaf3840 1497 if (snprintf(cra->base.cra_driver_name, CRYPTO_MAX_ALG_NAME,
ffb017e9
CL
1498 "%s"IXP_POSTFIX, cra->base.cra_name) >=
1499 CRYPTO_MAX_ALG_NAME)
81bef015 1500 continue;
ffb017e9 1501 if (!support_aes && (ixp4xx_algos[i].cfg_enc & MOD_AES))
81bef015 1502 continue;
d7295a8d
HX
1503
1504 /* block ciphers */
4aaf3840 1505 cra->base.cra_flags = CRYPTO_ALG_KERN_DRIVER_ONLY |
b8aa7dc5 1506 CRYPTO_ALG_ASYNC |
dfb098d6
CL
1507 CRYPTO_ALG_ALLOCATES_MEMORY |
1508 CRYPTO_ALG_NEED_FALLBACK;
4aaf3840
AB
1509 if (!cra->setkey)
1510 cra->setkey = ablk_setkey;
1511 if (!cra->encrypt)
1512 cra->encrypt = ablk_encrypt;
1513 if (!cra->decrypt)
1514 cra->decrypt = ablk_decrypt;
1515 cra->init = init_tfm_ablk;
1516 cra->exit = exit_tfm_ablk;
1517
1518 cra->base.cra_ctxsize = sizeof(struct ixp_ctx);
1519 cra->base.cra_module = THIS_MODULE;
1520 cra->base.cra_alignmask = 3;
1521 cra->base.cra_priority = 300;
1522 if (crypto_register_skcipher(cra))
f5b82be6 1523 dev_err(&pdev->dev, "Failed to register '%s'\n",
4aaf3840 1524 cra->base.cra_name);
81bef015
CH
1525 else
1526 ixp4xx_algos[i].registered = 1;
1527 }
d7295a8d
HX
1528
1529 for (i = 0; i < ARRAY_SIZE(ixp4xx_aeads); i++) {
1530 struct aead_alg *cra = &ixp4xx_aeads[i].crypto;
1531
1532 if (snprintf(cra->base.cra_driver_name, CRYPTO_MAX_ALG_NAME,
1533 "%s"IXP_POSTFIX, cra->base.cra_name) >=
1534 CRYPTO_MAX_ALG_NAME)
1535 continue;
1536 if (!support_aes && (ixp4xx_algos[i].cfg_enc & MOD_AES))
1537 continue;
1538
1539 /* authenc */
1540 cra->base.cra_flags = CRYPTO_ALG_KERN_DRIVER_ONLY |
b8aa7dc5
MP
1541 CRYPTO_ALG_ASYNC |
1542 CRYPTO_ALG_ALLOCATES_MEMORY;
dba434a9 1543 cra->setkey = cra->setkey ?: aead_setkey;
d7295a8d
HX
1544 cra->setauthsize = aead_setauthsize;
1545 cra->encrypt = aead_encrypt;
1546 cra->decrypt = aead_decrypt;
1547 cra->init = init_tfm_aead;
1548 cra->exit = exit_tfm_aead;
1549
1550 cra->base.cra_ctxsize = sizeof(struct ixp_ctx);
1551 cra->base.cra_module = THIS_MODULE;
1552 cra->base.cra_alignmask = 3;
1553 cra->base.cra_priority = 300;
1554
1555 if (crypto_register_aead(cra))
f5b82be6 1556 dev_err(&pdev->dev, "Failed to register '%s'\n",
d7295a8d
HX
1557 cra->base.cra_driver_name);
1558 else
1559 ixp4xx_aeads[i].registered = 1;
1560 }
81bef015
CH
1561 return 0;
1562}
1563
f5a6bf07 1564static int ixp_crypto_remove(struct platform_device *pdev)
81bef015
CH
1565{
1566 int num = ARRAY_SIZE(ixp4xx_algos);
1567 int i;
1568
d7295a8d
HX
1569 for (i = 0; i < ARRAY_SIZE(ixp4xx_aeads); i++) {
1570 if (ixp4xx_aeads[i].registered)
1571 crypto_unregister_aead(&ixp4xx_aeads[i].crypto);
1572 }
1573
39e39cfb 1574 for (i = 0; i < num; i++) {
81bef015 1575 if (ixp4xx_algos[i].registered)
4aaf3840 1576 crypto_unregister_skcipher(&ixp4xx_algos[i].crypto);
81bef015 1577 }
27c1789c 1578 release_ixp_crypto(&pdev->dev);
f5a6bf07
AB
1579
1580 return 0;
81bef015 1581}
76f24b4f
LW
1582static const struct of_device_id ixp4xx_crypto_of_match[] = {
1583 {
1584 .compatible = "intel,ixp4xx-crypto",
1585 },
1586 {},
1587};
81bef015 1588
f5a6bf07
AB
1589static struct platform_driver ixp_crypto_driver = {
1590 .probe = ixp_crypto_probe,
1591 .remove = ixp_crypto_remove,
76f24b4f
LW
1592 .driver = {
1593 .name = "ixp4xx_crypto",
1594 .of_match_table = ixp4xx_crypto_of_match,
1595 },
f5a6bf07
AB
1596};
1597module_platform_driver(ixp_crypto_driver);
81bef015
CH
1598
1599MODULE_LICENSE("GPL");
1600MODULE_AUTHOR("Christian Hohnstaedt <chohnstaedt@innominate.com>");
1601MODULE_DESCRIPTION("IXP4xx hardware crypto");
1602