2 * Intel IXP4xx NPE-C crypto driver
4 * Copyright (C) 2008 Christian Hohnstaedt <chohnstaedt@innominate.com>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of version 2 of the GNU General Public License
8 * as published by the Free Software Foundation.
12 #include <linux/platform_device.h>
13 #include <linux/dma-mapping.h>
14 #include <linux/dmapool.h>
15 #include <linux/crypto.h>
16 #include <linux/kernel.h>
17 #include <linux/rtnetlink.h>
18 #include <linux/interrupt.h>
19 #include <linux/spinlock.h>
20 #include <linux/gfp.h>
21 #include <linux/module.h>
23 #include <crypto/ctr.h>
24 #include <crypto/des.h>
25 #include <crypto/aes.h>
26 #include <crypto/sha.h>
27 #include <crypto/algapi.h>
28 #include <crypto/internal/aead.h>
29 #include <crypto/authenc.h>
30 #include <crypto/scatterwalk.h>
33 #include <mach/qmgr.h>
37 /* hash: cfgword + 2 * digestlen; crypt: keylen + cfgword */
38 #define NPE_CTX_LEN 80
39 #define AES_BLOCK128 16
41 #define NPE_OP_HASH_VERIFY 0x01
42 #define NPE_OP_CCM_ENABLE 0x04
43 #define NPE_OP_CRYPT_ENABLE 0x08
44 #define NPE_OP_HASH_ENABLE 0x10
45 #define NPE_OP_NOT_IN_PLACE 0x20
46 #define NPE_OP_HMAC_DISABLE 0x40
47 #define NPE_OP_CRYPT_ENCRYPT 0x80
49 #define NPE_OP_CCM_GEN_MIC 0xcc
50 #define NPE_OP_HASH_GEN_ICV 0x50
51 #define NPE_OP_ENC_GEN_KEY 0xc9
53 #define MOD_ECB 0x0000
54 #define MOD_CTR 0x1000
55 #define MOD_CBC_ENC 0x2000
56 #define MOD_CBC_DEC 0x3000
57 #define MOD_CCM_ENC 0x4000
58 #define MOD_CCM_DEC 0x5000
64 #define CIPH_DECR 0x0000
65 #define CIPH_ENCR 0x0400
67 #define MOD_DES 0x0000
68 #define MOD_TDEA2 0x0100
69 #define MOD_3DES 0x0200
70 #define MOD_AES 0x0800
71 #define MOD_AES128 (0x0800 | KEYLEN_128)
72 #define MOD_AES192 (0x0900 | KEYLEN_192)
73 #define MOD_AES256 (0x0a00 | KEYLEN_256)
76 #define NPE_ID 2 /* NPE C */
78 /* Space for registering when the first
79 * NPE_QLEN crypt_ctl are busy */
80 #define NPE_QLEN_TOTAL 64
85 #define CTL_FLAG_UNUSED 0x0000
86 #define CTL_FLAG_USED 0x1000
87 #define CTL_FLAG_PERFORM_ABLK 0x0001
88 #define CTL_FLAG_GEN_ICV 0x0002
89 #define CTL_FLAG_GEN_REVAES 0x0004
90 #define CTL_FLAG_PERFORM_AEAD 0x0008
91 #define CTL_FLAG_MASK 0x000f
93 #define HMAC_IPAD_VALUE 0x36
94 #define HMAC_OPAD_VALUE 0x5C
95 #define HMAC_PAD_BLOCKLEN SHA1_BLOCK_SIZE
97 #define MD5_DIGEST_SIZE 16
110 struct buffer_desc *next;
111 enum dma_data_direction dir;
116 u8 mode; /* NPE_OP_* operation mode */
122 u8 mode; /* NPE_OP_* operation mode */
124 u8 iv[MAX_IVLEN]; /* IV for CBC mode or CTR IV for CTR mode */
125 u32 icv_rev_aes; /* icv or rev aes */
129 u16 auth_offs; /* Authentication start offset */
130 u16 auth_len; /* Authentication data length */
131 u16 crypt_offs; /* Cryption start offset */
132 u16 crypt_len; /* Cryption data length */
134 u16 auth_len; /* Authentication data length */
135 u16 auth_offs; /* Authentication start offset */
136 u16 crypt_len; /* Cryption data length */
137 u16 crypt_offs; /* Cryption start offset */
139 u32 aadAddr; /* Additional Auth Data Addr for CCM mode */
140 u32 crypto_ctx; /* NPE Crypto Param structure address */
142 /* Used by Host: 4*4 bytes*/
145 struct ablkcipher_request *ablk_req;
146 struct aead_request *aead_req;
147 struct crypto_tfm *tfm;
149 struct buffer_desc *regist_buf;
154 struct buffer_desc *src;
155 struct buffer_desc *dst;
159 struct buffer_desc *src;
160 struct buffer_desc *dst;
161 struct scatterlist ivlist;
162 /* used when the hmac is not on one sg entry */
167 struct ix_hash_algo {
173 unsigned char *npe_ctx;
174 dma_addr_t npe_ctx_phys;
180 struct ix_sa_dir encrypt;
181 struct ix_sa_dir decrypt;
183 u8 authkey[MAX_KEYLEN];
185 u8 enckey[MAX_KEYLEN];
187 u8 nonce[CTR_RFC3686_NONCE_SIZE];
189 atomic_t configuring;
190 struct completion completion;
194 struct crypto_alg crypto;
195 const struct ix_hash_algo *hash;
202 struct ixp_aead_alg {
203 struct aead_alg crypto;
204 const struct ix_hash_algo *hash;
211 static const struct ix_hash_algo hash_alg_md5 = {
212 .cfgword = 0xAA010004,
213 .icv = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
214 "\xFE\xDC\xBA\x98\x76\x54\x32\x10",
216 static const struct ix_hash_algo hash_alg_sha1 = {
217 .cfgword = 0x00000005,
218 .icv = "\x67\x45\x23\x01\xEF\xCD\xAB\x89\x98\xBA"
219 "\xDC\xFE\x10\x32\x54\x76\xC3\xD2\xE1\xF0",
222 static struct npe *npe_c;
223 static struct dma_pool *buffer_pool = NULL;
224 static struct dma_pool *ctx_pool = NULL;
226 static struct crypt_ctl *crypt_virt = NULL;
227 static dma_addr_t crypt_phys;
229 static int support_aes = 1;
231 #define DRIVER_NAME "ixp4xx_crypto"
233 static struct platform_device *pdev;
235 static inline dma_addr_t crypt_virt2phys(struct crypt_ctl *virt)
237 return crypt_phys + (virt - crypt_virt) * sizeof(struct crypt_ctl);
240 static inline struct crypt_ctl *crypt_phys2virt(dma_addr_t phys)
242 return crypt_virt + (phys - crypt_phys) / sizeof(struct crypt_ctl);
245 static inline u32 cipher_cfg_enc(struct crypto_tfm *tfm)
247 return container_of(tfm->__crt_alg, struct ixp_alg,crypto)->cfg_enc;
250 static inline u32 cipher_cfg_dec(struct crypto_tfm *tfm)
252 return container_of(tfm->__crt_alg, struct ixp_alg,crypto)->cfg_dec;
255 static inline const struct ix_hash_algo *ix_hash(struct crypto_tfm *tfm)
257 return container_of(tfm->__crt_alg, struct ixp_alg, crypto)->hash;
260 static int setup_crypt_desc(void)
262 struct device *dev = &pdev->dev;
263 BUILD_BUG_ON(sizeof(struct crypt_ctl) != 64);
264 crypt_virt = dma_alloc_coherent(dev,
265 NPE_QLEN * sizeof(struct crypt_ctl),
266 &crypt_phys, GFP_ATOMIC);
269 memset(crypt_virt, 0, NPE_QLEN * sizeof(struct crypt_ctl));
273 static spinlock_t desc_lock;
274 static struct crypt_ctl *get_crypt_desc(void)
280 spin_lock_irqsave(&desc_lock, flags);
282 if (unlikely(!crypt_virt))
284 if (unlikely(!crypt_virt)) {
285 spin_unlock_irqrestore(&desc_lock, flags);
289 if (crypt_virt[i].ctl_flags == CTL_FLAG_UNUSED) {
290 if (++idx >= NPE_QLEN)
292 crypt_virt[i].ctl_flags = CTL_FLAG_USED;
293 spin_unlock_irqrestore(&desc_lock, flags);
294 return crypt_virt +i;
296 spin_unlock_irqrestore(&desc_lock, flags);
301 static spinlock_t emerg_lock;
302 static struct crypt_ctl *get_crypt_desc_emerg(void)
305 static int idx = NPE_QLEN;
306 struct crypt_ctl *desc;
309 desc = get_crypt_desc();
312 if (unlikely(!crypt_virt))
315 spin_lock_irqsave(&emerg_lock, flags);
317 if (crypt_virt[i].ctl_flags == CTL_FLAG_UNUSED) {
318 if (++idx >= NPE_QLEN_TOTAL)
320 crypt_virt[i].ctl_flags = CTL_FLAG_USED;
321 spin_unlock_irqrestore(&emerg_lock, flags);
322 return crypt_virt +i;
324 spin_unlock_irqrestore(&emerg_lock, flags);
329 static void free_buf_chain(struct device *dev, struct buffer_desc *buf,u32 phys)
332 struct buffer_desc *buf1;
336 phys1 = buf->phys_next;
337 dma_unmap_single(dev, buf->phys_addr, buf->buf_len, buf->dir);
338 dma_pool_free(buffer_pool, buf, phys);
344 static struct tasklet_struct crypto_done_tasklet;
346 static void finish_scattered_hmac(struct crypt_ctl *crypt)
348 struct aead_request *req = crypt->data.aead_req;
349 struct aead_ctx *req_ctx = aead_request_ctx(req);
350 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
351 int authsize = crypto_aead_authsize(tfm);
352 int decryptlen = req->assoclen + req->cryptlen - authsize;
354 if (req_ctx->encrypt) {
355 scatterwalk_map_and_copy(req_ctx->hmac_virt,
356 req->dst, decryptlen, authsize, 1);
358 dma_pool_free(buffer_pool, req_ctx->hmac_virt, crypt->icv_rev_aes);
361 static void one_packet(dma_addr_t phys)
363 struct device *dev = &pdev->dev;
364 struct crypt_ctl *crypt;
368 failed = phys & 0x1 ? -EBADMSG : 0;
370 crypt = crypt_phys2virt(phys);
372 switch (crypt->ctl_flags & CTL_FLAG_MASK) {
373 case CTL_FLAG_PERFORM_AEAD: {
374 struct aead_request *req = crypt->data.aead_req;
375 struct aead_ctx *req_ctx = aead_request_ctx(req);
377 free_buf_chain(dev, req_ctx->src, crypt->src_buf);
378 free_buf_chain(dev, req_ctx->dst, crypt->dst_buf);
379 if (req_ctx->hmac_virt) {
380 finish_scattered_hmac(crypt);
382 req->base.complete(&req->base, failed);
385 case CTL_FLAG_PERFORM_ABLK: {
386 struct ablkcipher_request *req = crypt->data.ablk_req;
387 struct ablk_ctx *req_ctx = ablkcipher_request_ctx(req);
390 free_buf_chain(dev, req_ctx->dst, crypt->dst_buf);
392 free_buf_chain(dev, req_ctx->src, crypt->src_buf);
393 req->base.complete(&req->base, failed);
396 case CTL_FLAG_GEN_ICV:
397 ctx = crypto_tfm_ctx(crypt->data.tfm);
398 dma_pool_free(ctx_pool, crypt->regist_ptr,
399 crypt->regist_buf->phys_addr);
400 dma_pool_free(buffer_pool, crypt->regist_buf, crypt->src_buf);
401 if (atomic_dec_and_test(&ctx->configuring))
402 complete(&ctx->completion);
404 case CTL_FLAG_GEN_REVAES:
405 ctx = crypto_tfm_ctx(crypt->data.tfm);
406 *(u32*)ctx->decrypt.npe_ctx &= cpu_to_be32(~CIPH_ENCR);
407 if (atomic_dec_and_test(&ctx->configuring))
408 complete(&ctx->completion);
413 crypt->ctl_flags = CTL_FLAG_UNUSED;
416 static void irqhandler(void *_unused)
418 tasklet_schedule(&crypto_done_tasklet);
421 static void crypto_done_action(unsigned long arg)
426 dma_addr_t phys = qmgr_get_entry(RECV_QID);
431 tasklet_schedule(&crypto_done_tasklet);
434 static int init_ixp_crypto(struct device *dev)
437 u32 msg[2] = { 0, 0 };
439 if (! ( ~(*IXP4XX_EXP_CFG2) & (IXP4XX_FEATURE_HASH |
440 IXP4XX_FEATURE_AES | IXP4XX_FEATURE_DES))) {
441 printk(KERN_ERR "ixp_crypto: No HW crypto available\n");
444 npe_c = npe_request(NPE_ID);
448 if (!npe_running(npe_c)) {
449 ret = npe_load_firmware(npe_c, npe_name(npe_c), dev);
453 if (npe_recv_message(npe_c, msg, "STATUS_MSG"))
456 if (npe_send_message(npe_c, msg, "STATUS_MSG"))
459 if (npe_recv_message(npe_c, msg, "STATUS_MSG"))
463 switch ((msg[1]>>16) & 0xff) {
465 printk(KERN_WARNING "Firmware of %s lacks AES support\n",
474 printk(KERN_ERR "Firmware of %s lacks crypto support\n",
478 /* buffer_pool will also be used to sometimes store the hmac,
479 * so assure it is large enough
481 BUILD_BUG_ON(SHA1_DIGEST_SIZE > sizeof(struct buffer_desc));
482 buffer_pool = dma_pool_create("buffer", dev,
483 sizeof(struct buffer_desc), 32, 0);
488 ctx_pool = dma_pool_create("context", dev,
493 ret = qmgr_request_queue(SEND_QID, NPE_QLEN_TOTAL, 0, 0,
494 "ixp_crypto:out", NULL);
497 ret = qmgr_request_queue(RECV_QID, NPE_QLEN, 0, 0,
498 "ixp_crypto:in", NULL);
500 qmgr_release_queue(SEND_QID);
503 qmgr_set_irq(RECV_QID, QUEUE_IRQ_SRC_NOT_EMPTY, irqhandler, NULL);
504 tasklet_init(&crypto_done_tasklet, crypto_done_action, 0);
506 qmgr_enable_irq(RECV_QID);
510 printk(KERN_ERR "%s not responding\n", npe_name(npe_c));
514 dma_pool_destroy(ctx_pool);
516 dma_pool_destroy(buffer_pool);
521 static void release_ixp_crypto(struct device *dev)
523 qmgr_disable_irq(RECV_QID);
524 tasklet_kill(&crypto_done_tasklet);
526 qmgr_release_queue(SEND_QID);
527 qmgr_release_queue(RECV_QID);
529 dma_pool_destroy(ctx_pool);
530 dma_pool_destroy(buffer_pool);
535 dma_free_coherent(dev,
536 NPE_QLEN * sizeof(struct crypt_ctl),
537 crypt_virt, crypt_phys);
542 static void reset_sa_dir(struct ix_sa_dir *dir)
544 memset(dir->npe_ctx, 0, NPE_CTX_LEN);
545 dir->npe_ctx_idx = 0;
549 static int init_sa_dir(struct ix_sa_dir *dir)
551 dir->npe_ctx = dma_pool_alloc(ctx_pool, GFP_KERNEL, &dir->npe_ctx_phys);
559 static void free_sa_dir(struct ix_sa_dir *dir)
561 memset(dir->npe_ctx, 0, NPE_CTX_LEN);
562 dma_pool_free(ctx_pool, dir->npe_ctx, dir->npe_ctx_phys);
565 static int init_tfm(struct crypto_tfm *tfm)
567 struct ixp_ctx *ctx = crypto_tfm_ctx(tfm);
570 atomic_set(&ctx->configuring, 0);
571 ret = init_sa_dir(&ctx->encrypt);
574 ret = init_sa_dir(&ctx->decrypt);
576 free_sa_dir(&ctx->encrypt);
581 static int init_tfm_ablk(struct crypto_tfm *tfm)
583 tfm->crt_ablkcipher.reqsize = sizeof(struct ablk_ctx);
584 return init_tfm(tfm);
587 static int init_tfm_aead(struct crypto_aead *tfm)
589 crypto_aead_set_reqsize(tfm, sizeof(struct aead_ctx));
590 return init_tfm(crypto_aead_tfm(tfm));
593 static void exit_tfm(struct crypto_tfm *tfm)
595 struct ixp_ctx *ctx = crypto_tfm_ctx(tfm);
596 free_sa_dir(&ctx->encrypt);
597 free_sa_dir(&ctx->decrypt);
600 static void exit_tfm_aead(struct crypto_aead *tfm)
602 exit_tfm(crypto_aead_tfm(tfm));
605 static int register_chain_var(struct crypto_tfm *tfm, u8 xpad, u32 target,
606 int init_len, u32 ctx_addr, const u8 *key, int key_len)
608 struct ixp_ctx *ctx = crypto_tfm_ctx(tfm);
609 struct crypt_ctl *crypt;
610 struct buffer_desc *buf;
613 u32 pad_phys, buf_phys;
615 BUILD_BUG_ON(NPE_CTX_LEN < HMAC_PAD_BLOCKLEN);
616 pad = dma_pool_alloc(ctx_pool, GFP_KERNEL, &pad_phys);
619 buf = dma_pool_alloc(buffer_pool, GFP_KERNEL, &buf_phys);
621 dma_pool_free(ctx_pool, pad, pad_phys);
624 crypt = get_crypt_desc_emerg();
626 dma_pool_free(ctx_pool, pad, pad_phys);
627 dma_pool_free(buffer_pool, buf, buf_phys);
631 memcpy(pad, key, key_len);
632 memset(pad + key_len, 0, HMAC_PAD_BLOCKLEN - key_len);
633 for (i = 0; i < HMAC_PAD_BLOCKLEN; i++) {
637 crypt->data.tfm = tfm;
638 crypt->regist_ptr = pad;
639 crypt->regist_buf = buf;
641 crypt->auth_offs = 0;
642 crypt->auth_len = HMAC_PAD_BLOCKLEN;
643 crypt->crypto_ctx = ctx_addr;
644 crypt->src_buf = buf_phys;
645 crypt->icv_rev_aes = target;
646 crypt->mode = NPE_OP_HASH_GEN_ICV;
647 crypt->init_len = init_len;
648 crypt->ctl_flags |= CTL_FLAG_GEN_ICV;
651 buf->buf_len = HMAC_PAD_BLOCKLEN;
653 buf->phys_addr = pad_phys;
655 atomic_inc(&ctx->configuring);
656 qmgr_put_entry(SEND_QID, crypt_virt2phys(crypt));
657 BUG_ON(qmgr_stat_overflow(SEND_QID));
661 static int setup_auth(struct crypto_tfm *tfm, int encrypt, unsigned authsize,
662 const u8 *key, int key_len, unsigned digest_len)
664 u32 itarget, otarget, npe_ctx_addr;
665 unsigned char *cinfo;
666 int init_len, ret = 0;
668 struct ix_sa_dir *dir;
669 struct ixp_ctx *ctx = crypto_tfm_ctx(tfm);
670 const struct ix_hash_algo *algo;
672 dir = encrypt ? &ctx->encrypt : &ctx->decrypt;
673 cinfo = dir->npe_ctx + dir->npe_ctx_idx;
676 /* write cfg word to cryptinfo */
677 cfgword = algo->cfgword | ( authsize << 6); /* (authsize/4) << 8 */
679 cfgword ^= 0xAA000000; /* change the "byte swap" flags */
681 *(u32*)cinfo = cpu_to_be32(cfgword);
682 cinfo += sizeof(cfgword);
684 /* write ICV to cryptinfo */
685 memcpy(cinfo, algo->icv, digest_len);
688 itarget = dir->npe_ctx_phys + dir->npe_ctx_idx
689 + sizeof(algo->cfgword);
690 otarget = itarget + digest_len;
691 init_len = cinfo - (dir->npe_ctx + dir->npe_ctx_idx);
692 npe_ctx_addr = dir->npe_ctx_phys + dir->npe_ctx_idx;
694 dir->npe_ctx_idx += init_len;
695 dir->npe_mode |= NPE_OP_HASH_ENABLE;
698 dir->npe_mode |= NPE_OP_HASH_VERIFY;
700 ret = register_chain_var(tfm, HMAC_OPAD_VALUE, otarget,
701 init_len, npe_ctx_addr, key, key_len);
704 return register_chain_var(tfm, HMAC_IPAD_VALUE, itarget,
705 init_len, npe_ctx_addr, key, key_len);
708 static int gen_rev_aes_key(struct crypto_tfm *tfm)
710 struct crypt_ctl *crypt;
711 struct ixp_ctx *ctx = crypto_tfm_ctx(tfm);
712 struct ix_sa_dir *dir = &ctx->decrypt;
714 crypt = get_crypt_desc_emerg();
718 *(u32*)dir->npe_ctx |= cpu_to_be32(CIPH_ENCR);
720 crypt->data.tfm = tfm;
721 crypt->crypt_offs = 0;
722 crypt->crypt_len = AES_BLOCK128;
724 crypt->crypto_ctx = dir->npe_ctx_phys;
725 crypt->icv_rev_aes = dir->npe_ctx_phys + sizeof(u32);
726 crypt->mode = NPE_OP_ENC_GEN_KEY;
727 crypt->init_len = dir->npe_ctx_idx;
728 crypt->ctl_flags |= CTL_FLAG_GEN_REVAES;
730 atomic_inc(&ctx->configuring);
731 qmgr_put_entry(SEND_QID, crypt_virt2phys(crypt));
732 BUG_ON(qmgr_stat_overflow(SEND_QID));
736 static int setup_cipher(struct crypto_tfm *tfm, int encrypt,
737 const u8 *key, int key_len)
742 struct ix_sa_dir *dir;
743 struct ixp_ctx *ctx = crypto_tfm_ctx(tfm);
744 u32 *flags = &tfm->crt_flags;
746 dir = encrypt ? &ctx->encrypt : &ctx->decrypt;
747 cinfo = dir->npe_ctx;
750 cipher_cfg = cipher_cfg_enc(tfm);
751 dir->npe_mode |= NPE_OP_CRYPT_ENCRYPT;
753 cipher_cfg = cipher_cfg_dec(tfm);
755 if (cipher_cfg & MOD_AES) {
757 case 16: keylen_cfg = MOD_AES128; break;
758 case 24: keylen_cfg = MOD_AES192; break;
759 case 32: keylen_cfg = MOD_AES256; break;
761 *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
764 cipher_cfg |= keylen_cfg;
765 } else if (cipher_cfg & MOD_3DES) {
766 const u32 *K = (const u32 *)key;
767 if (unlikely(!((K[0] ^ K[2]) | (K[1] ^ K[3])) ||
768 !((K[2] ^ K[4]) | (K[3] ^ K[5]))))
770 *flags |= CRYPTO_TFM_RES_BAD_KEY_SCHED;
774 u32 tmp[DES_EXPKEY_WORDS];
775 if (des_ekey(tmp, key) == 0) {
776 *flags |= CRYPTO_TFM_RES_WEAK_KEY;
779 /* write cfg word to cryptinfo */
780 *(u32*)cinfo = cpu_to_be32(cipher_cfg);
781 cinfo += sizeof(cipher_cfg);
783 /* write cipher key to cryptinfo */
784 memcpy(cinfo, key, key_len);
785 /* NPE wants keylen set to DES3_EDE_KEY_SIZE even for single DES */
786 if (key_len < DES3_EDE_KEY_SIZE && !(cipher_cfg & MOD_AES)) {
787 memset(cinfo + key_len, 0, DES3_EDE_KEY_SIZE -key_len);
788 key_len = DES3_EDE_KEY_SIZE;
790 dir->npe_ctx_idx = sizeof(cipher_cfg) + key_len;
791 dir->npe_mode |= NPE_OP_CRYPT_ENABLE;
792 if ((cipher_cfg & MOD_AES) && !encrypt) {
793 return gen_rev_aes_key(tfm);
798 static struct buffer_desc *chainup_buffers(struct device *dev,
799 struct scatterlist *sg, unsigned nbytes,
800 struct buffer_desc *buf, gfp_t flags,
801 enum dma_data_direction dir)
803 for (; nbytes > 0; sg = sg_next(sg)) {
804 unsigned len = min(nbytes, sg->length);
805 struct buffer_desc *next_buf;
810 ptr = page_address(sg_page(sg)) + sg->offset;
811 next_buf = dma_pool_alloc(buffer_pool, flags, &next_buf_phys);
816 sg_dma_address(sg) = dma_map_single(dev, ptr, len, dir);
817 buf->next = next_buf;
818 buf->phys_next = next_buf_phys;
821 buf->phys_addr = sg_dma_address(sg);
830 static int ablk_setkey(struct crypto_ablkcipher *tfm, const u8 *key,
831 unsigned int key_len)
833 struct ixp_ctx *ctx = crypto_ablkcipher_ctx(tfm);
834 u32 *flags = &tfm->base.crt_flags;
837 init_completion(&ctx->completion);
838 atomic_inc(&ctx->configuring);
840 reset_sa_dir(&ctx->encrypt);
841 reset_sa_dir(&ctx->decrypt);
843 ctx->encrypt.npe_mode = NPE_OP_HMAC_DISABLE;
844 ctx->decrypt.npe_mode = NPE_OP_HMAC_DISABLE;
846 ret = setup_cipher(&tfm->base, 0, key, key_len);
849 ret = setup_cipher(&tfm->base, 1, key, key_len);
853 if (*flags & CRYPTO_TFM_RES_WEAK_KEY) {
854 if (*flags & CRYPTO_TFM_REQ_WEAK_KEY) {
857 *flags &= ~CRYPTO_TFM_RES_WEAK_KEY;
861 if (!atomic_dec_and_test(&ctx->configuring))
862 wait_for_completion(&ctx->completion);
866 static int ablk_rfc3686_setkey(struct crypto_ablkcipher *tfm, const u8 *key,
867 unsigned int key_len)
869 struct ixp_ctx *ctx = crypto_ablkcipher_ctx(tfm);
871 /* the nonce is stored in bytes at end of key */
872 if (key_len < CTR_RFC3686_NONCE_SIZE)
875 memcpy(ctx->nonce, key + (key_len - CTR_RFC3686_NONCE_SIZE),
876 CTR_RFC3686_NONCE_SIZE);
878 key_len -= CTR_RFC3686_NONCE_SIZE;
879 return ablk_setkey(tfm, key, key_len);
882 static int ablk_perform(struct ablkcipher_request *req, int encrypt)
884 struct crypto_ablkcipher *tfm = crypto_ablkcipher_reqtfm(req);
885 struct ixp_ctx *ctx = crypto_ablkcipher_ctx(tfm);
886 unsigned ivsize = crypto_ablkcipher_ivsize(tfm);
887 struct ix_sa_dir *dir;
888 struct crypt_ctl *crypt;
889 unsigned int nbytes = req->nbytes;
890 enum dma_data_direction src_direction = DMA_BIDIRECTIONAL;
891 struct ablk_ctx *req_ctx = ablkcipher_request_ctx(req);
892 struct buffer_desc src_hook;
893 struct device *dev = &pdev->dev;
894 gfp_t flags = req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP ?
895 GFP_KERNEL : GFP_ATOMIC;
897 if (qmgr_stat_full(SEND_QID))
899 if (atomic_read(&ctx->configuring))
902 dir = encrypt ? &ctx->encrypt : &ctx->decrypt;
904 crypt = get_crypt_desc();
908 crypt->data.ablk_req = req;
909 crypt->crypto_ctx = dir->npe_ctx_phys;
910 crypt->mode = dir->npe_mode;
911 crypt->init_len = dir->npe_ctx_idx;
913 crypt->crypt_offs = 0;
914 crypt->crypt_len = nbytes;
916 BUG_ON(ivsize && !req->info);
917 memcpy(crypt->iv, req->info, ivsize);
918 if (req->src != req->dst) {
919 struct buffer_desc dst_hook;
920 crypt->mode |= NPE_OP_NOT_IN_PLACE;
921 /* This was never tested by Intel
922 * for more than one dst buffer, I think. */
924 if (!chainup_buffers(dev, req->dst, nbytes, &dst_hook,
925 flags, DMA_FROM_DEVICE))
927 src_direction = DMA_TO_DEVICE;
928 req_ctx->dst = dst_hook.next;
929 crypt->dst_buf = dst_hook.phys_next;
934 if (!chainup_buffers(dev, req->src, nbytes, &src_hook,
935 flags, src_direction))
938 req_ctx->src = src_hook.next;
939 crypt->src_buf = src_hook.phys_next;
940 crypt->ctl_flags |= CTL_FLAG_PERFORM_ABLK;
941 qmgr_put_entry(SEND_QID, crypt_virt2phys(crypt));
942 BUG_ON(qmgr_stat_overflow(SEND_QID));
946 free_buf_chain(dev, req_ctx->src, crypt->src_buf);
948 if (req->src != req->dst) {
949 free_buf_chain(dev, req_ctx->dst, crypt->dst_buf);
951 crypt->ctl_flags = CTL_FLAG_UNUSED;
955 static int ablk_encrypt(struct ablkcipher_request *req)
957 return ablk_perform(req, 1);
960 static int ablk_decrypt(struct ablkcipher_request *req)
962 return ablk_perform(req, 0);
965 static int ablk_rfc3686_crypt(struct ablkcipher_request *req)
967 struct crypto_ablkcipher *tfm = crypto_ablkcipher_reqtfm(req);
968 struct ixp_ctx *ctx = crypto_ablkcipher_ctx(tfm);
969 u8 iv[CTR_RFC3686_BLOCK_SIZE];
970 u8 *info = req->info;
973 /* set up counter block */
974 memcpy(iv, ctx->nonce, CTR_RFC3686_NONCE_SIZE);
975 memcpy(iv + CTR_RFC3686_NONCE_SIZE, info, CTR_RFC3686_IV_SIZE);
977 /* initialize counter portion of counter block */
978 *(__be32 *)(iv + CTR_RFC3686_NONCE_SIZE + CTR_RFC3686_IV_SIZE) =
982 ret = ablk_perform(req, 1);
987 static int aead_perform(struct aead_request *req, int encrypt,
988 int cryptoffset, int eff_cryptlen, u8 *iv)
990 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
991 struct ixp_ctx *ctx = crypto_aead_ctx(tfm);
992 unsigned ivsize = crypto_aead_ivsize(tfm);
993 unsigned authsize = crypto_aead_authsize(tfm);
994 struct ix_sa_dir *dir;
995 struct crypt_ctl *crypt;
996 unsigned int cryptlen;
997 struct buffer_desc *buf, src_hook;
998 struct aead_ctx *req_ctx = aead_request_ctx(req);
999 struct device *dev = &pdev->dev;
1000 gfp_t flags = req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP ?
1001 GFP_KERNEL : GFP_ATOMIC;
1002 enum dma_data_direction src_direction = DMA_BIDIRECTIONAL;
1003 unsigned int lastlen;
1005 if (qmgr_stat_full(SEND_QID))
1007 if (atomic_read(&ctx->configuring))
1011 dir = &ctx->encrypt;
1012 cryptlen = req->cryptlen;
1014 dir = &ctx->decrypt;
1015 /* req->cryptlen includes the authsize when decrypting */
1016 cryptlen = req->cryptlen -authsize;
1017 eff_cryptlen -= authsize;
1019 crypt = get_crypt_desc();
1023 crypt->data.aead_req = req;
1024 crypt->crypto_ctx = dir->npe_ctx_phys;
1025 crypt->mode = dir->npe_mode;
1026 crypt->init_len = dir->npe_ctx_idx;
1028 crypt->crypt_offs = cryptoffset;
1029 crypt->crypt_len = eff_cryptlen;
1031 crypt->auth_offs = 0;
1032 crypt->auth_len = req->assoclen + cryptlen;
1033 BUG_ON(ivsize && !req->iv);
1034 memcpy(crypt->iv, req->iv, ivsize);
1036 req_ctx->dst = NULL;
1038 if (req->src != req->dst) {
1039 struct buffer_desc dst_hook;
1041 crypt->mode |= NPE_OP_NOT_IN_PLACE;
1042 src_direction = DMA_TO_DEVICE;
1044 buf = chainup_buffers(dev, req->dst, crypt->auth_len,
1045 &dst_hook, flags, DMA_FROM_DEVICE);
1046 req_ctx->dst = dst_hook.next;
1047 crypt->dst_buf = dst_hook.phys_next;
1053 lastlen = buf->buf_len;
1054 if (lastlen >= authsize)
1055 crypt->icv_rev_aes = buf->phys_addr +
1056 buf->buf_len - authsize;
1060 buf = chainup_buffers(dev, req->src, crypt->auth_len,
1061 &src_hook, flags, src_direction);
1062 req_ctx->src = src_hook.next;
1063 crypt->src_buf = src_hook.phys_next;
1067 if (!encrypt || !req_ctx->dst) {
1068 lastlen = buf->buf_len;
1069 if (lastlen >= authsize)
1070 crypt->icv_rev_aes = buf->phys_addr +
1071 buf->buf_len - authsize;
1074 if (unlikely(lastlen < authsize)) {
1075 /* The 12 hmac bytes are scattered,
1076 * we need to copy them into a safe buffer */
1077 req_ctx->hmac_virt = dma_pool_alloc(buffer_pool, flags,
1078 &crypt->icv_rev_aes);
1079 if (unlikely(!req_ctx->hmac_virt))
1082 scatterwalk_map_and_copy(req_ctx->hmac_virt,
1083 req->src, cryptlen, authsize, 0);
1085 req_ctx->encrypt = encrypt;
1087 req_ctx->hmac_virt = NULL;
1090 crypt->ctl_flags |= CTL_FLAG_PERFORM_AEAD;
1091 qmgr_put_entry(SEND_QID, crypt_virt2phys(crypt));
1092 BUG_ON(qmgr_stat_overflow(SEND_QID));
1093 return -EINPROGRESS;
1096 free_buf_chain(dev, req_ctx->src, crypt->src_buf);
1098 free_buf_chain(dev, req_ctx->dst, crypt->dst_buf);
1099 crypt->ctl_flags = CTL_FLAG_UNUSED;
1103 static int aead_setup(struct crypto_aead *tfm, unsigned int authsize)
1105 struct ixp_ctx *ctx = crypto_aead_ctx(tfm);
1106 u32 *flags = &tfm->base.crt_flags;
1107 unsigned digest_len = crypto_aead_maxauthsize(tfm);
1110 if (!ctx->enckey_len && !ctx->authkey_len)
1112 init_completion(&ctx->completion);
1113 atomic_inc(&ctx->configuring);
1115 reset_sa_dir(&ctx->encrypt);
1116 reset_sa_dir(&ctx->decrypt);
1118 ret = setup_cipher(&tfm->base, 0, ctx->enckey, ctx->enckey_len);
1121 ret = setup_cipher(&tfm->base, 1, ctx->enckey, ctx->enckey_len);
1124 ret = setup_auth(&tfm->base, 0, authsize, ctx->authkey,
1125 ctx->authkey_len, digest_len);
1128 ret = setup_auth(&tfm->base, 1, authsize, ctx->authkey,
1129 ctx->authkey_len, digest_len);
1133 if (*flags & CRYPTO_TFM_RES_WEAK_KEY) {
1134 if (*flags & CRYPTO_TFM_REQ_WEAK_KEY) {
1138 *flags &= ~CRYPTO_TFM_RES_WEAK_KEY;
1142 if (!atomic_dec_and_test(&ctx->configuring))
1143 wait_for_completion(&ctx->completion);
1147 static int aead_setauthsize(struct crypto_aead *tfm, unsigned int authsize)
1149 int max = crypto_aead_maxauthsize(tfm) >> 2;
1151 if ((authsize>>2) < 1 || (authsize>>2) > max || (authsize & 3))
1153 return aead_setup(tfm, authsize);
1156 static int aead_setkey(struct crypto_aead *tfm, const u8 *key,
1157 unsigned int keylen)
1159 struct ixp_ctx *ctx = crypto_aead_ctx(tfm);
1160 struct crypto_authenc_keys keys;
1162 if (crypto_authenc_extractkeys(&keys, key, keylen) != 0)
1165 if (keys.authkeylen > sizeof(ctx->authkey))
1168 if (keys.enckeylen > sizeof(ctx->enckey))
1171 memcpy(ctx->authkey, keys.authkey, keys.authkeylen);
1172 memcpy(ctx->enckey, keys.enckey, keys.enckeylen);
1173 ctx->authkey_len = keys.authkeylen;
1174 ctx->enckey_len = keys.enckeylen;
1176 return aead_setup(tfm, crypto_aead_authsize(tfm));
1178 crypto_aead_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN);
1182 static int aead_encrypt(struct aead_request *req)
1184 return aead_perform(req, 1, req->assoclen, req->cryptlen, req->iv);
1187 static int aead_decrypt(struct aead_request *req)
1189 return aead_perform(req, 0, req->assoclen, req->cryptlen, req->iv);
1192 static struct ixp_alg ixp4xx_algos[] = {
1195 .cra_name = "cbc(des)",
1196 .cra_blocksize = DES_BLOCK_SIZE,
1197 .cra_u = { .ablkcipher = {
1198 .min_keysize = DES_KEY_SIZE,
1199 .max_keysize = DES_KEY_SIZE,
1200 .ivsize = DES_BLOCK_SIZE,
1205 .cfg_enc = CIPH_ENCR | MOD_DES | MOD_CBC_ENC | KEYLEN_192,
1206 .cfg_dec = CIPH_DECR | MOD_DES | MOD_CBC_DEC | KEYLEN_192,
1210 .cra_name = "ecb(des)",
1211 .cra_blocksize = DES_BLOCK_SIZE,
1212 .cra_u = { .ablkcipher = {
1213 .min_keysize = DES_KEY_SIZE,
1214 .max_keysize = DES_KEY_SIZE,
1218 .cfg_enc = CIPH_ENCR | MOD_DES | MOD_ECB | KEYLEN_192,
1219 .cfg_dec = CIPH_DECR | MOD_DES | MOD_ECB | KEYLEN_192,
1222 .cra_name = "cbc(des3_ede)",
1223 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
1224 .cra_u = { .ablkcipher = {
1225 .min_keysize = DES3_EDE_KEY_SIZE,
1226 .max_keysize = DES3_EDE_KEY_SIZE,
1227 .ivsize = DES3_EDE_BLOCK_SIZE,
1232 .cfg_enc = CIPH_ENCR | MOD_3DES | MOD_CBC_ENC | KEYLEN_192,
1233 .cfg_dec = CIPH_DECR | MOD_3DES | MOD_CBC_DEC | KEYLEN_192,
1236 .cra_name = "ecb(des3_ede)",
1237 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
1238 .cra_u = { .ablkcipher = {
1239 .min_keysize = DES3_EDE_KEY_SIZE,
1240 .max_keysize = DES3_EDE_KEY_SIZE,
1244 .cfg_enc = CIPH_ENCR | MOD_3DES | MOD_ECB | KEYLEN_192,
1245 .cfg_dec = CIPH_DECR | MOD_3DES | MOD_ECB | KEYLEN_192,
1248 .cra_name = "cbc(aes)",
1249 .cra_blocksize = AES_BLOCK_SIZE,
1250 .cra_u = { .ablkcipher = {
1251 .min_keysize = AES_MIN_KEY_SIZE,
1252 .max_keysize = AES_MAX_KEY_SIZE,
1253 .ivsize = AES_BLOCK_SIZE,
1258 .cfg_enc = CIPH_ENCR | MOD_AES | MOD_CBC_ENC,
1259 .cfg_dec = CIPH_DECR | MOD_AES | MOD_CBC_DEC,
1262 .cra_name = "ecb(aes)",
1263 .cra_blocksize = AES_BLOCK_SIZE,
1264 .cra_u = { .ablkcipher = {
1265 .min_keysize = AES_MIN_KEY_SIZE,
1266 .max_keysize = AES_MAX_KEY_SIZE,
1270 .cfg_enc = CIPH_ENCR | MOD_AES | MOD_ECB,
1271 .cfg_dec = CIPH_DECR | MOD_AES | MOD_ECB,
1274 .cra_name = "ctr(aes)",
1275 .cra_blocksize = AES_BLOCK_SIZE,
1276 .cra_u = { .ablkcipher = {
1277 .min_keysize = AES_MIN_KEY_SIZE,
1278 .max_keysize = AES_MAX_KEY_SIZE,
1279 .ivsize = AES_BLOCK_SIZE,
1284 .cfg_enc = CIPH_ENCR | MOD_AES | MOD_CTR,
1285 .cfg_dec = CIPH_ENCR | MOD_AES | MOD_CTR,
1288 .cra_name = "rfc3686(ctr(aes))",
1289 .cra_blocksize = AES_BLOCK_SIZE,
1290 .cra_u = { .ablkcipher = {
1291 .min_keysize = AES_MIN_KEY_SIZE,
1292 .max_keysize = AES_MAX_KEY_SIZE,
1293 .ivsize = AES_BLOCK_SIZE,
1295 .setkey = ablk_rfc3686_setkey,
1296 .encrypt = ablk_rfc3686_crypt,
1297 .decrypt = ablk_rfc3686_crypt }
1300 .cfg_enc = CIPH_ENCR | MOD_AES | MOD_CTR,
1301 .cfg_dec = CIPH_ENCR | MOD_AES | MOD_CTR,
1304 static struct ixp_aead_alg ixp4xx_aeads[] = {
1308 .cra_name = "authenc(hmac(md5),cbc(des))",
1309 .cra_blocksize = DES_BLOCK_SIZE,
1311 .ivsize = DES_BLOCK_SIZE,
1312 .maxauthsize = MD5_DIGEST_SIZE,
1314 .hash = &hash_alg_md5,
1315 .cfg_enc = CIPH_ENCR | MOD_DES | MOD_CBC_ENC | KEYLEN_192,
1316 .cfg_dec = CIPH_DECR | MOD_DES | MOD_CBC_DEC | KEYLEN_192,
1320 .cra_name = "authenc(hmac(md5),cbc(des3_ede))",
1321 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
1323 .ivsize = DES3_EDE_BLOCK_SIZE,
1324 .maxauthsize = MD5_DIGEST_SIZE,
1326 .hash = &hash_alg_md5,
1327 .cfg_enc = CIPH_ENCR | MOD_3DES | MOD_CBC_ENC | KEYLEN_192,
1328 .cfg_dec = CIPH_DECR | MOD_3DES | MOD_CBC_DEC | KEYLEN_192,
1332 .cra_name = "authenc(hmac(sha1),cbc(des))",
1333 .cra_blocksize = DES_BLOCK_SIZE,
1335 .ivsize = DES_BLOCK_SIZE,
1336 .maxauthsize = SHA1_DIGEST_SIZE,
1338 .hash = &hash_alg_sha1,
1339 .cfg_enc = CIPH_ENCR | MOD_DES | MOD_CBC_ENC | KEYLEN_192,
1340 .cfg_dec = CIPH_DECR | MOD_DES | MOD_CBC_DEC | KEYLEN_192,
1344 .cra_name = "authenc(hmac(sha1),cbc(des3_ede))",
1345 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
1347 .ivsize = DES3_EDE_BLOCK_SIZE,
1348 .maxauthsize = SHA1_DIGEST_SIZE,
1350 .hash = &hash_alg_sha1,
1351 .cfg_enc = CIPH_ENCR | MOD_3DES | MOD_CBC_ENC | KEYLEN_192,
1352 .cfg_dec = CIPH_DECR | MOD_3DES | MOD_CBC_DEC | KEYLEN_192,
1356 .cra_name = "authenc(hmac(md5),cbc(aes))",
1357 .cra_blocksize = AES_BLOCK_SIZE,
1359 .ivsize = AES_BLOCK_SIZE,
1360 .maxauthsize = MD5_DIGEST_SIZE,
1362 .hash = &hash_alg_md5,
1363 .cfg_enc = CIPH_ENCR | MOD_AES | MOD_CBC_ENC,
1364 .cfg_dec = CIPH_DECR | MOD_AES | MOD_CBC_DEC,
1368 .cra_name = "authenc(hmac(sha1),cbc(aes))",
1369 .cra_blocksize = AES_BLOCK_SIZE,
1371 .ivsize = AES_BLOCK_SIZE,
1372 .maxauthsize = SHA1_DIGEST_SIZE,
1374 .hash = &hash_alg_sha1,
1375 .cfg_enc = CIPH_ENCR | MOD_AES | MOD_CBC_ENC,
1376 .cfg_dec = CIPH_DECR | MOD_AES | MOD_CBC_DEC,
1379 #define IXP_POSTFIX "-ixp4xx"
1381 static const struct platform_device_info ixp_dev_info __initdata = {
1382 .name = DRIVER_NAME,
1384 .dma_mask = DMA_BIT_MASK(32),
1387 static int __init ixp_module_init(void)
1389 int num = ARRAY_SIZE(ixp4xx_algos);
1392 pdev = platform_device_register_full(&ixp_dev_info);
1394 return PTR_ERR(pdev);
1396 spin_lock_init(&desc_lock);
1397 spin_lock_init(&emerg_lock);
1399 err = init_ixp_crypto(&pdev->dev);
1401 platform_device_unregister(pdev);
1404 for (i=0; i< num; i++) {
1405 struct crypto_alg *cra = &ixp4xx_algos[i].crypto;
1407 if (snprintf(cra->cra_driver_name, CRYPTO_MAX_ALG_NAME,
1408 "%s"IXP_POSTFIX, cra->cra_name) >=
1409 CRYPTO_MAX_ALG_NAME)
1413 if (!support_aes && (ixp4xx_algos[i].cfg_enc & MOD_AES)) {
1418 cra->cra_type = &crypto_ablkcipher_type;
1419 cra->cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
1420 CRYPTO_ALG_KERN_DRIVER_ONLY |
1422 if (!cra->cra_ablkcipher.setkey)
1423 cra->cra_ablkcipher.setkey = ablk_setkey;
1424 if (!cra->cra_ablkcipher.encrypt)
1425 cra->cra_ablkcipher.encrypt = ablk_encrypt;
1426 if (!cra->cra_ablkcipher.decrypt)
1427 cra->cra_ablkcipher.decrypt = ablk_decrypt;
1428 cra->cra_init = init_tfm_ablk;
1430 cra->cra_ctxsize = sizeof(struct ixp_ctx);
1431 cra->cra_module = THIS_MODULE;
1432 cra->cra_alignmask = 3;
1433 cra->cra_priority = 300;
1434 cra->cra_exit = exit_tfm;
1435 if (crypto_register_alg(cra))
1436 printk(KERN_ERR "Failed to register '%s'\n",
1439 ixp4xx_algos[i].registered = 1;
1442 for (i = 0; i < ARRAY_SIZE(ixp4xx_aeads); i++) {
1443 struct aead_alg *cra = &ixp4xx_aeads[i].crypto;
1445 if (snprintf(cra->base.cra_driver_name, CRYPTO_MAX_ALG_NAME,
1446 "%s"IXP_POSTFIX, cra->base.cra_name) >=
1447 CRYPTO_MAX_ALG_NAME)
1449 if (!support_aes && (ixp4xx_algos[i].cfg_enc & MOD_AES))
1453 cra->base.cra_flags = CRYPTO_ALG_KERN_DRIVER_ONLY |
1455 cra->setkey = aead_setkey;
1456 cra->setauthsize = aead_setauthsize;
1457 cra->encrypt = aead_encrypt;
1458 cra->decrypt = aead_decrypt;
1459 cra->init = init_tfm_aead;
1460 cra->exit = exit_tfm_aead;
1462 cra->base.cra_ctxsize = sizeof(struct ixp_ctx);
1463 cra->base.cra_module = THIS_MODULE;
1464 cra->base.cra_alignmask = 3;
1465 cra->base.cra_priority = 300;
1467 if (crypto_register_aead(cra))
1468 printk(KERN_ERR "Failed to register '%s'\n",
1469 cra->base.cra_driver_name);
1471 ixp4xx_aeads[i].registered = 1;
1476 static void __exit ixp_module_exit(void)
1478 int num = ARRAY_SIZE(ixp4xx_algos);
1481 for (i = 0; i < ARRAY_SIZE(ixp4xx_aeads); i++) {
1482 if (ixp4xx_aeads[i].registered)
1483 crypto_unregister_aead(&ixp4xx_aeads[i].crypto);
1486 for (i=0; i< num; i++) {
1487 if (ixp4xx_algos[i].registered)
1488 crypto_unregister_alg(&ixp4xx_algos[i].crypto);
1490 release_ixp_crypto(&pdev->dev);
1491 platform_device_unregister(pdev);
1494 module_init(ixp_module_init);
1495 module_exit(ixp_module_exit);
1497 MODULE_LICENSE("GPL");
1498 MODULE_AUTHOR("Christian Hohnstaedt <chohnstaedt@innominate.com>");
1499 MODULE_DESCRIPTION("IXP4xx hardware crypto");