4 * Support for OMAP SHA1/MD5 HW acceleration.
6 * Copyright (c) 2010 Nokia Corporation
7 * Author: Dmitry Kasatkin <dmitry.kasatkin@nokia.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as published
11 * by the Free Software Foundation.
13 * Some ideas are from old omap-sha1-md5.c driver.
16 #define pr_fmt(fmt) "%s: " fmt, __func__
18 #include <linux/err.h>
19 #include <linux/device.h>
20 #include <linux/module.h>
21 #include <linux/init.h>
22 #include <linux/errno.h>
23 #include <linux/interrupt.h>
24 #include <linux/kernel.h>
25 #include <linux/clk.h>
26 #include <linux/irq.h>
28 #include <linux/platform_device.h>
29 #include <linux/scatterlist.h>
30 #include <linux/dma-mapping.h>
31 #include <linux/delay.h>
32 #include <linux/crypto.h>
33 #include <linux/cryptohash.h>
34 #include <crypto/scatterwalk.h>
35 #include <crypto/algapi.h>
36 #include <crypto/sha.h>
37 #include <crypto/hash.h>
38 #include <crypto/internal/hash.h>
42 #include <mach/irqs.h>
44 #define SHA_REG_DIGEST(x) (0x00 + ((x) * 0x04))
45 #define SHA_REG_DIN(x) (0x1C + ((x) * 0x04))
47 #define SHA1_MD5_BLOCK_SIZE SHA1_BLOCK_SIZE
48 #define MD5_DIGEST_SIZE 16
50 #define SHA_REG_DIGCNT 0x14
52 #define SHA_REG_CTRL 0x18
53 #define SHA_REG_CTRL_LENGTH (0xFFFFFFFF << 5)
54 #define SHA_REG_CTRL_CLOSE_HASH (1 << 4)
55 #define SHA_REG_CTRL_ALGO_CONST (1 << 3)
56 #define SHA_REG_CTRL_ALGO (1 << 2)
57 #define SHA_REG_CTRL_INPUT_READY (1 << 1)
58 #define SHA_REG_CTRL_OUTPUT_READY (1 << 0)
60 #define SHA_REG_REV 0x5C
61 #define SHA_REG_REV_MAJOR 0xF0
62 #define SHA_REG_REV_MINOR 0x0F
64 #define SHA_REG_MASK 0x60
65 #define SHA_REG_MASK_DMA_EN (1 << 3)
66 #define SHA_REG_MASK_IT_EN (1 << 2)
67 #define SHA_REG_MASK_SOFTRESET (1 << 1)
68 #define SHA_REG_AUTOIDLE (1 << 0)
70 #define SHA_REG_SYSSTATUS 0x64
71 #define SHA_REG_SYSSTATUS_RESETDONE (1 << 0)
73 #define DEFAULT_TIMEOUT_INTERVAL HZ
75 /* mostly device flags */
78 #define FLAGS_DMA_ACTIVE 2
79 #define FLAGS_OUTPUT_READY 3
83 #define FLAGS_FINUP 16
87 #define FLAGS_ERROR 20
92 #define OMAP_ALIGN_MASK (sizeof(u32)-1)
93 #define OMAP_ALIGNED __attribute__((aligned(sizeof(u32))))
95 #define BUFLEN PAGE_SIZE
99 struct omap_sham_reqctx {
100 struct omap_sham_dev *dd;
104 u8 digest[SHA1_DIGEST_SIZE] OMAP_ALIGNED;
111 struct scatterlist *sg;
112 unsigned int offset; /* offset in current sg */
113 unsigned int total; /* total request */
115 u8 buffer[0] OMAP_ALIGNED;
118 struct omap_sham_hmac_ctx {
119 struct crypto_shash *shash;
120 u8 ipad[SHA1_MD5_BLOCK_SIZE];
121 u8 opad[SHA1_MD5_BLOCK_SIZE];
124 struct omap_sham_ctx {
125 struct omap_sham_dev *dd;
130 struct crypto_shash *fallback;
132 struct omap_sham_hmac_ctx base[0];
135 #define OMAP_SHAM_QUEUE_LENGTH 1
137 struct omap_sham_dev {
138 struct list_head list;
139 unsigned long phys_base;
141 void __iomem *io_base;
148 struct tasklet_struct done_task;
149 struct tasklet_struct queue_task;
152 struct crypto_queue queue;
153 struct ahash_request *req;
156 struct omap_sham_drv {
157 struct list_head dev_list;
162 static struct omap_sham_drv sham = {
163 .dev_list = LIST_HEAD_INIT(sham.dev_list),
164 .lock = __SPIN_LOCK_UNLOCKED(sham.lock),
167 static inline u32 omap_sham_read(struct omap_sham_dev *dd, u32 offset)
169 return __raw_readl(dd->io_base + offset);
172 static inline void omap_sham_write(struct omap_sham_dev *dd,
173 u32 offset, u32 value)
175 __raw_writel(value, dd->io_base + offset);
178 static inline void omap_sham_write_mask(struct omap_sham_dev *dd, u32 address,
183 val = omap_sham_read(dd, address);
186 omap_sham_write(dd, address, val);
189 static inline int omap_sham_wait(struct omap_sham_dev *dd, u32 offset, u32 bit)
191 unsigned long timeout = jiffies + DEFAULT_TIMEOUT_INTERVAL;
193 while (!(omap_sham_read(dd, offset) & bit)) {
194 if (time_is_before_jiffies(timeout))
201 static void omap_sham_copy_hash(struct ahash_request *req, int out)
203 struct omap_sham_reqctx *ctx = ahash_request_ctx(req);
204 u32 *hash = (u32 *)ctx->digest;
207 /* MD5 is almost unused. So copy sha1 size to reduce code */
208 for (i = 0; i < SHA1_DIGEST_SIZE / sizeof(u32); i++) {
210 hash[i] = omap_sham_read(ctx->dd,
213 omap_sham_write(ctx->dd,
214 SHA_REG_DIGEST(i), hash[i]);
218 static void omap_sham_copy_ready_hash(struct ahash_request *req)
220 struct omap_sham_reqctx *ctx = ahash_request_ctx(req);
221 u32 *in = (u32 *)ctx->digest;
222 u32 *hash = (u32 *)req->result;
228 if (likely(ctx->flags & BIT(FLAGS_SHA1))) {
229 /* SHA1 results are in big endian */
230 for (i = 0; i < SHA1_DIGEST_SIZE / sizeof(u32); i++)
231 hash[i] = be32_to_cpu(in[i]);
233 /* MD5 results are in little endian */
234 for (i = 0; i < MD5_DIGEST_SIZE / sizeof(u32); i++)
235 hash[i] = le32_to_cpu(in[i]);
239 static int omap_sham_hw_init(struct omap_sham_dev *dd)
241 clk_enable(dd->iclk);
243 if (!(dd->flags & BIT(FLAGS_INIT))) {
244 omap_sham_write_mask(dd, SHA_REG_MASK,
245 SHA_REG_MASK_SOFTRESET, SHA_REG_MASK_SOFTRESET);
247 if (omap_sham_wait(dd, SHA_REG_SYSSTATUS,
248 SHA_REG_SYSSTATUS_RESETDONE))
251 dd->flags |= BIT(FLAGS_INIT);
258 static void omap_sham_write_ctrl(struct omap_sham_dev *dd, size_t length,
261 struct omap_sham_reqctx *ctx = ahash_request_ctx(dd->req);
262 u32 val = length << 5, mask;
264 if (likely(ctx->digcnt))
265 omap_sham_write(dd, SHA_REG_DIGCNT, ctx->digcnt);
267 omap_sham_write_mask(dd, SHA_REG_MASK,
268 SHA_REG_MASK_IT_EN | (dma ? SHA_REG_MASK_DMA_EN : 0),
269 SHA_REG_MASK_IT_EN | SHA_REG_MASK_DMA_EN);
271 * Setting ALGO_CONST only for the first iteration
272 * and CLOSE_HASH only for the last one.
274 if (ctx->flags & BIT(FLAGS_SHA1))
275 val |= SHA_REG_CTRL_ALGO;
277 val |= SHA_REG_CTRL_ALGO_CONST;
279 val |= SHA_REG_CTRL_CLOSE_HASH;
281 mask = SHA_REG_CTRL_ALGO_CONST | SHA_REG_CTRL_CLOSE_HASH |
282 SHA_REG_CTRL_ALGO | SHA_REG_CTRL_LENGTH;
284 omap_sham_write_mask(dd, SHA_REG_CTRL, val, mask);
287 static int omap_sham_xmit_cpu(struct omap_sham_dev *dd, const u8 *buf,
288 size_t length, int final)
290 struct omap_sham_reqctx *ctx = ahash_request_ctx(dd->req);
292 const u32 *buffer = (const u32 *)buf;
294 dev_dbg(dd->dev, "xmit_cpu: digcnt: %d, length: %d, final: %d\n",
295 ctx->digcnt, length, final);
297 omap_sham_write_ctrl(dd, length, final, 0);
299 /* should be non-zero before next lines to disable clocks later */
300 ctx->digcnt += length;
302 if (omap_sham_wait(dd, SHA_REG_CTRL, SHA_REG_CTRL_INPUT_READY))
306 ctx->flags |= BIT(FLAGS_FINAL); /* catch last interrupt */
308 len32 = DIV_ROUND_UP(length, sizeof(u32));
310 for (count = 0; count < len32; count++)
311 omap_sham_write(dd, SHA_REG_DIN(count), buffer[count]);
316 static int omap_sham_xmit_dma(struct omap_sham_dev *dd, dma_addr_t dma_addr,
317 size_t length, int final)
319 struct omap_sham_reqctx *ctx = ahash_request_ctx(dd->req);
322 dev_dbg(dd->dev, "xmit_dma: digcnt: %d, length: %d, final: %d\n",
323 ctx->digcnt, length, final);
325 len32 = DIV_ROUND_UP(length, sizeof(u32));
327 omap_set_dma_transfer_params(dd->dma_lch, OMAP_DMA_DATA_TYPE_S32, len32,
328 1, OMAP_DMA_SYNC_PACKET, dd->dma,
329 OMAP_DMA_DST_SYNC_PREFETCH);
331 omap_set_dma_src_params(dd->dma_lch, 0, OMAP_DMA_AMODE_POST_INC,
334 omap_sham_write_ctrl(dd, length, final, 1);
336 ctx->digcnt += length;
339 ctx->flags |= BIT(FLAGS_FINAL); /* catch last interrupt */
341 dd->flags |= BIT(FLAGS_DMA_ACTIVE);
343 omap_start_dma(dd->dma_lch);
348 static size_t omap_sham_append_buffer(struct omap_sham_reqctx *ctx,
349 const u8 *data, size_t length)
351 size_t count = min(length, ctx->buflen - ctx->bufcnt);
353 count = min(count, ctx->total);
356 memcpy(ctx->buffer + ctx->bufcnt, data, count);
357 ctx->bufcnt += count;
362 static size_t omap_sham_append_sg(struct omap_sham_reqctx *ctx)
367 count = omap_sham_append_buffer(ctx,
368 sg_virt(ctx->sg) + ctx->offset,
369 ctx->sg->length - ctx->offset);
372 ctx->offset += count;
374 if (ctx->offset == ctx->sg->length) {
375 ctx->sg = sg_next(ctx->sg);
386 static int omap_sham_xmit_dma_map(struct omap_sham_dev *dd,
387 struct omap_sham_reqctx *ctx,
388 size_t length, int final)
390 ctx->dma_addr = dma_map_single(dd->dev, ctx->buffer, ctx->buflen,
392 if (dma_mapping_error(dd->dev, ctx->dma_addr)) {
393 dev_err(dd->dev, "dma %u bytes error\n", ctx->buflen);
397 ctx->flags &= ~BIT(FLAGS_SG);
399 /* next call does not fail... so no unmap in the case of error */
400 return omap_sham_xmit_dma(dd, ctx->dma_addr, length, final);
403 static int omap_sham_update_dma_slow(struct omap_sham_dev *dd)
405 struct omap_sham_reqctx *ctx = ahash_request_ctx(dd->req);
409 omap_sham_append_sg(ctx);
411 final = (ctx->flags & BIT(FLAGS_FINUP)) && !ctx->total;
413 dev_dbg(dd->dev, "slow: bufcnt: %u, digcnt: %d, final: %d\n",
414 ctx->bufcnt, ctx->digcnt, final);
416 if (final || (ctx->bufcnt == ctx->buflen && ctx->total)) {
419 return omap_sham_xmit_dma_map(dd, ctx, count, final);
425 /* Start address alignment */
426 #define SG_AA(sg) (IS_ALIGNED(sg->offset, sizeof(u32)))
427 /* SHA1 block size alignment */
428 #define SG_SA(sg) (IS_ALIGNED(sg->length, SHA1_MD5_BLOCK_SIZE))
430 static int omap_sham_update_dma_start(struct omap_sham_dev *dd)
432 struct omap_sham_reqctx *ctx = ahash_request_ctx(dd->req);
433 unsigned int length, final, tail;
434 struct scatterlist *sg;
439 if (ctx->bufcnt || ctx->offset)
440 return omap_sham_update_dma_slow(dd);
442 dev_dbg(dd->dev, "fast: digcnt: %d, bufcnt: %u, total: %u\n",
443 ctx->digcnt, ctx->bufcnt, ctx->total);
448 return omap_sham_update_dma_slow(dd);
450 if (!sg_is_last(sg) && !SG_SA(sg))
451 /* size is not SHA1_BLOCK_SIZE aligned */
452 return omap_sham_update_dma_slow(dd);
454 length = min(ctx->total, sg->length);
456 if (sg_is_last(sg)) {
457 if (!(ctx->flags & BIT(FLAGS_FINUP))) {
458 /* not last sg must be SHA1_MD5_BLOCK_SIZE aligned */
459 tail = length & (SHA1_MD5_BLOCK_SIZE - 1);
460 /* without finup() we need one block to close hash */
462 tail = SHA1_MD5_BLOCK_SIZE;
467 if (!dma_map_sg(dd->dev, ctx->sg, 1, DMA_TO_DEVICE)) {
468 dev_err(dd->dev, "dma_map_sg error\n");
472 ctx->flags |= BIT(FLAGS_SG);
474 ctx->total -= length;
475 ctx->offset = length; /* offset where to start slow */
477 final = (ctx->flags & BIT(FLAGS_FINUP)) && !ctx->total;
479 /* next call does not fail... so no unmap in the case of error */
480 return omap_sham_xmit_dma(dd, sg_dma_address(ctx->sg), length, final);
483 static int omap_sham_update_cpu(struct omap_sham_dev *dd)
485 struct omap_sham_reqctx *ctx = ahash_request_ctx(dd->req);
488 omap_sham_append_sg(ctx);
489 bufcnt = ctx->bufcnt;
492 return omap_sham_xmit_cpu(dd, ctx->buffer, bufcnt, 1);
495 static int omap_sham_update_dma_stop(struct omap_sham_dev *dd)
497 struct omap_sham_reqctx *ctx = ahash_request_ctx(dd->req);
499 omap_stop_dma(dd->dma_lch);
500 if (ctx->flags & BIT(FLAGS_SG)) {
501 dma_unmap_sg(dd->dev, ctx->sg, 1, DMA_TO_DEVICE);
502 if (ctx->sg->length == ctx->offset) {
503 ctx->sg = sg_next(ctx->sg);
508 dma_unmap_single(dd->dev, ctx->dma_addr, ctx->buflen,
515 static int omap_sham_init(struct ahash_request *req)
517 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
518 struct omap_sham_ctx *tctx = crypto_ahash_ctx(tfm);
519 struct omap_sham_reqctx *ctx = ahash_request_ctx(req);
520 struct omap_sham_dev *dd = NULL, *tmp;
522 spin_lock_bh(&sham.lock);
524 list_for_each_entry(tmp, &sham.dev_list, list) {
532 spin_unlock_bh(&sham.lock);
538 dev_dbg(dd->dev, "init: digest size: %d\n",
539 crypto_ahash_digestsize(tfm));
541 if (crypto_ahash_digestsize(tfm) == SHA1_DIGEST_SIZE)
542 ctx->flags |= BIT(FLAGS_SHA1);
546 ctx->buflen = BUFLEN;
548 if (tctx->flags & BIT(FLAGS_HMAC)) {
549 struct omap_sham_hmac_ctx *bctx = tctx->base;
551 memcpy(ctx->buffer, bctx->ipad, SHA1_MD5_BLOCK_SIZE);
552 ctx->bufcnt = SHA1_MD5_BLOCK_SIZE;
553 ctx->flags |= BIT(FLAGS_HMAC);
560 static int omap_sham_update_req(struct omap_sham_dev *dd)
562 struct ahash_request *req = dd->req;
563 struct omap_sham_reqctx *ctx = ahash_request_ctx(req);
566 dev_dbg(dd->dev, "update_req: total: %u, digcnt: %d, finup: %d\n",
567 ctx->total, ctx->digcnt, (ctx->flags & BIT(FLAGS_FINUP)) != 0);
569 if (ctx->flags & BIT(FLAGS_CPU))
570 err = omap_sham_update_cpu(dd);
572 err = omap_sham_update_dma_start(dd);
574 /* wait for dma completion before can take more data */
575 dev_dbg(dd->dev, "update: err: %d, digcnt: %d\n", err, ctx->digcnt);
580 static int omap_sham_final_req(struct omap_sham_dev *dd)
582 struct ahash_request *req = dd->req;
583 struct omap_sham_reqctx *ctx = ahash_request_ctx(req);
584 int err = 0, use_dma = 1;
586 if (ctx->bufcnt <= 64)
587 /* faster to handle last block with cpu */
591 err = omap_sham_xmit_dma_map(dd, ctx, ctx->bufcnt, 1);
593 err = omap_sham_xmit_cpu(dd, ctx->buffer, ctx->bufcnt, 1);
597 dev_dbg(dd->dev, "final_req: err: %d\n", err);
602 static int omap_sham_finish_hmac(struct ahash_request *req)
604 struct omap_sham_ctx *tctx = crypto_tfm_ctx(req->base.tfm);
605 struct omap_sham_hmac_ctx *bctx = tctx->base;
606 int bs = crypto_shash_blocksize(bctx->shash);
607 int ds = crypto_shash_digestsize(bctx->shash);
609 struct shash_desc shash;
610 char ctx[crypto_shash_descsize(bctx->shash)];
613 desc.shash.tfm = bctx->shash;
614 desc.shash.flags = 0; /* not CRYPTO_TFM_REQ_MAY_SLEEP */
616 return crypto_shash_init(&desc.shash) ?:
617 crypto_shash_update(&desc.shash, bctx->opad, bs) ?:
618 crypto_shash_finup(&desc.shash, req->result, ds, req->result);
621 static int omap_sham_finish(struct ahash_request *req)
623 struct omap_sham_reqctx *ctx = ahash_request_ctx(req);
624 struct omap_sham_dev *dd = ctx->dd;
628 omap_sham_copy_ready_hash(req);
629 if (ctx->flags & BIT(FLAGS_HMAC))
630 err = omap_sham_finish_hmac(req);
633 dev_dbg(dd->dev, "digcnt: %d, bufcnt: %d\n", ctx->digcnt, ctx->bufcnt);
638 static void omap_sham_finish_req(struct ahash_request *req, int err)
640 struct omap_sham_reqctx *ctx = ahash_request_ctx(req);
641 struct omap_sham_dev *dd = ctx->dd;
644 omap_sham_copy_hash(req, 1);
645 if (ctx->flags & BIT(FLAGS_FINAL))
646 err = omap_sham_finish(req);
648 ctx->flags |= BIT(FLAGS_ERROR);
651 clk_disable(dd->iclk);
652 dd->flags &= ~BIT(FLAGS_BUSY);
654 if (req->base.complete)
655 req->base.complete(&req->base, err);
658 static int omap_sham_handle_queue(struct omap_sham_dev *dd,
659 struct ahash_request *req)
661 struct crypto_async_request *async_req, *backlog;
662 struct omap_sham_reqctx *ctx;
664 int err = 0, ret = 0;
666 spin_lock_irqsave(&dd->lock, flags);
668 ret = ahash_enqueue_request(&dd->queue, req);
669 if (dd->flags & BIT(FLAGS_BUSY)) {
670 spin_unlock_irqrestore(&dd->lock, flags);
673 backlog = crypto_get_backlog(&dd->queue);
674 async_req = crypto_dequeue_request(&dd->queue);
676 dd->flags |= BIT(FLAGS_BUSY);
677 spin_unlock_irqrestore(&dd->lock, flags);
683 backlog->complete(backlog, -EINPROGRESS);
685 req = ahash_request_cast(async_req);
687 ctx = ahash_request_ctx(req);
689 dev_dbg(dd->dev, "handling new req, op: %lu, nbytes: %d\n",
690 ctx->op, req->nbytes);
692 err = omap_sham_hw_init(dd);
696 omap_set_dma_dest_params(dd->dma_lch, 0,
697 OMAP_DMA_AMODE_CONSTANT,
698 dd->phys_base + SHA_REG_DIN(0), 0, 16);
700 omap_set_dma_dest_burst_mode(dd->dma_lch,
701 OMAP_DMA_DATA_BURST_16);
703 omap_set_dma_src_burst_mode(dd->dma_lch,
704 OMAP_DMA_DATA_BURST_4);
707 /* request has changed - restore hash */
708 omap_sham_copy_hash(req, 0);
710 if (ctx->op == OP_UPDATE) {
711 err = omap_sham_update_req(dd);
712 if (err != -EINPROGRESS && (ctx->flags & BIT(FLAGS_FINUP)))
713 /* no final() after finup() */
714 err = omap_sham_final_req(dd);
715 } else if (ctx->op == OP_FINAL) {
716 err = omap_sham_final_req(dd);
719 if (err != -EINPROGRESS) {
720 /* done_task will not finish it, so do it here */
721 omap_sham_finish_req(req, err);
722 tasklet_schedule(&dd->queue_task);
725 dev_dbg(dd->dev, "exit, err: %d\n", err);
730 static int omap_sham_enqueue(struct ahash_request *req, unsigned int op)
732 struct omap_sham_reqctx *ctx = ahash_request_ctx(req);
733 struct omap_sham_ctx *tctx = crypto_tfm_ctx(req->base.tfm);
734 struct omap_sham_dev *dd = tctx->dd;
738 return omap_sham_handle_queue(dd, req);
741 static int omap_sham_update(struct ahash_request *req)
743 struct omap_sham_reqctx *ctx = ahash_request_ctx(req);
748 ctx->total = req->nbytes;
752 if (ctx->flags & BIT(FLAGS_FINUP)) {
753 if ((ctx->digcnt + ctx->bufcnt + ctx->total) < 9) {
755 * OMAP HW accel works only with buffers >= 9
756 * will switch to bypass in final()
757 * final has the same request and data
759 omap_sham_append_sg(ctx);
761 } else if (ctx->bufcnt + ctx->total <= SHA1_MD5_BLOCK_SIZE) {
763 * faster to use CPU for short transfers
765 ctx->flags |= BIT(FLAGS_CPU);
767 } else if (ctx->bufcnt + ctx->total < ctx->buflen) {
768 omap_sham_append_sg(ctx);
772 return omap_sham_enqueue(req, OP_UPDATE);
775 static int omap_sham_shash_digest(struct crypto_shash *shash, u32 flags,
776 const u8 *data, unsigned int len, u8 *out)
779 struct shash_desc shash;
780 char ctx[crypto_shash_descsize(shash)];
783 desc.shash.tfm = shash;
784 desc.shash.flags = flags & CRYPTO_TFM_REQ_MAY_SLEEP;
786 return crypto_shash_digest(&desc.shash, data, len, out);
789 static int omap_sham_final_shash(struct ahash_request *req)
791 struct omap_sham_ctx *tctx = crypto_tfm_ctx(req->base.tfm);
792 struct omap_sham_reqctx *ctx = ahash_request_ctx(req);
794 return omap_sham_shash_digest(tctx->fallback, req->base.flags,
795 ctx->buffer, ctx->bufcnt, req->result);
798 static int omap_sham_final(struct ahash_request *req)
800 struct omap_sham_reqctx *ctx = ahash_request_ctx(req);
802 ctx->flags |= BIT(FLAGS_FINUP);
804 if (ctx->flags & BIT(FLAGS_ERROR))
805 return 0; /* uncompleted hash is not needed */
807 /* OMAP HW accel works only with buffers >= 9 */
808 /* HMAC is always >= 9 because ipad == block size */
809 if ((ctx->digcnt + ctx->bufcnt) < 9)
810 return omap_sham_final_shash(req);
811 else if (ctx->bufcnt)
812 return omap_sham_enqueue(req, OP_FINAL);
814 /* copy ready hash (+ finalize hmac) */
815 return omap_sham_finish(req);
818 static int omap_sham_finup(struct ahash_request *req)
820 struct omap_sham_reqctx *ctx = ahash_request_ctx(req);
823 ctx->flags |= BIT(FLAGS_FINUP);
825 err1 = omap_sham_update(req);
826 if (err1 == -EINPROGRESS || err1 == -EBUSY)
829 * final() has to be always called to cleanup resources
830 * even if udpate() failed, except EINPROGRESS
832 err2 = omap_sham_final(req);
837 static int omap_sham_digest(struct ahash_request *req)
839 return omap_sham_init(req) ?: omap_sham_finup(req);
842 static int omap_sham_setkey(struct crypto_ahash *tfm, const u8 *key,
845 struct omap_sham_ctx *tctx = crypto_ahash_ctx(tfm);
846 struct omap_sham_hmac_ctx *bctx = tctx->base;
847 int bs = crypto_shash_blocksize(bctx->shash);
848 int ds = crypto_shash_digestsize(bctx->shash);
850 err = crypto_shash_setkey(tctx->fallback, key, keylen);
855 err = omap_sham_shash_digest(bctx->shash,
856 crypto_shash_get_flags(bctx->shash),
857 key, keylen, bctx->ipad);
862 memcpy(bctx->ipad, key, keylen);
865 memset(bctx->ipad + keylen, 0, bs - keylen);
866 memcpy(bctx->opad, bctx->ipad, bs);
868 for (i = 0; i < bs; i++) {
869 bctx->ipad[i] ^= 0x36;
870 bctx->opad[i] ^= 0x5c;
876 static int omap_sham_cra_init_alg(struct crypto_tfm *tfm, const char *alg_base)
878 struct omap_sham_ctx *tctx = crypto_tfm_ctx(tfm);
879 const char *alg_name = crypto_tfm_alg_name(tfm);
881 /* Allocate a fallback and abort if it failed. */
882 tctx->fallback = crypto_alloc_shash(alg_name, 0,
883 CRYPTO_ALG_NEED_FALLBACK);
884 if (IS_ERR(tctx->fallback)) {
885 pr_err("omap-sham: fallback driver '%s' "
886 "could not be loaded.\n", alg_name);
887 return PTR_ERR(tctx->fallback);
890 crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm),
891 sizeof(struct omap_sham_reqctx) + BUFLEN);
894 struct omap_sham_hmac_ctx *bctx = tctx->base;
895 tctx->flags |= BIT(FLAGS_HMAC);
896 bctx->shash = crypto_alloc_shash(alg_base, 0,
897 CRYPTO_ALG_NEED_FALLBACK);
898 if (IS_ERR(bctx->shash)) {
899 pr_err("omap-sham: base driver '%s' "
900 "could not be loaded.\n", alg_base);
901 crypto_free_shash(tctx->fallback);
902 return PTR_ERR(bctx->shash);
910 static int omap_sham_cra_init(struct crypto_tfm *tfm)
912 return omap_sham_cra_init_alg(tfm, NULL);
915 static int omap_sham_cra_sha1_init(struct crypto_tfm *tfm)
917 return omap_sham_cra_init_alg(tfm, "sha1");
920 static int omap_sham_cra_md5_init(struct crypto_tfm *tfm)
922 return omap_sham_cra_init_alg(tfm, "md5");
925 static void omap_sham_cra_exit(struct crypto_tfm *tfm)
927 struct omap_sham_ctx *tctx = crypto_tfm_ctx(tfm);
929 crypto_free_shash(tctx->fallback);
930 tctx->fallback = NULL;
932 if (tctx->flags & BIT(FLAGS_HMAC)) {
933 struct omap_sham_hmac_ctx *bctx = tctx->base;
934 crypto_free_shash(bctx->shash);
938 static struct ahash_alg algs[] = {
940 .init = omap_sham_init,
941 .update = omap_sham_update,
942 .final = omap_sham_final,
943 .finup = omap_sham_finup,
944 .digest = omap_sham_digest,
945 .halg.digestsize = SHA1_DIGEST_SIZE,
948 .cra_driver_name = "omap-sha1",
950 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
952 CRYPTO_ALG_NEED_FALLBACK,
953 .cra_blocksize = SHA1_BLOCK_SIZE,
954 .cra_ctxsize = sizeof(struct omap_sham_ctx),
956 .cra_module = THIS_MODULE,
957 .cra_init = omap_sham_cra_init,
958 .cra_exit = omap_sham_cra_exit,
962 .init = omap_sham_init,
963 .update = omap_sham_update,
964 .final = omap_sham_final,
965 .finup = omap_sham_finup,
966 .digest = omap_sham_digest,
967 .halg.digestsize = MD5_DIGEST_SIZE,
970 .cra_driver_name = "omap-md5",
972 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
974 CRYPTO_ALG_NEED_FALLBACK,
975 .cra_blocksize = SHA1_BLOCK_SIZE,
976 .cra_ctxsize = sizeof(struct omap_sham_ctx),
977 .cra_alignmask = OMAP_ALIGN_MASK,
978 .cra_module = THIS_MODULE,
979 .cra_init = omap_sham_cra_init,
980 .cra_exit = omap_sham_cra_exit,
984 .init = omap_sham_init,
985 .update = omap_sham_update,
986 .final = omap_sham_final,
987 .finup = omap_sham_finup,
988 .digest = omap_sham_digest,
989 .setkey = omap_sham_setkey,
990 .halg.digestsize = SHA1_DIGEST_SIZE,
992 .cra_name = "hmac(sha1)",
993 .cra_driver_name = "omap-hmac-sha1",
995 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
997 CRYPTO_ALG_NEED_FALLBACK,
998 .cra_blocksize = SHA1_BLOCK_SIZE,
999 .cra_ctxsize = sizeof(struct omap_sham_ctx) +
1000 sizeof(struct omap_sham_hmac_ctx),
1001 .cra_alignmask = OMAP_ALIGN_MASK,
1002 .cra_module = THIS_MODULE,
1003 .cra_init = omap_sham_cra_sha1_init,
1004 .cra_exit = omap_sham_cra_exit,
1008 .init = omap_sham_init,
1009 .update = omap_sham_update,
1010 .final = omap_sham_final,
1011 .finup = omap_sham_finup,
1012 .digest = omap_sham_digest,
1013 .setkey = omap_sham_setkey,
1014 .halg.digestsize = MD5_DIGEST_SIZE,
1016 .cra_name = "hmac(md5)",
1017 .cra_driver_name = "omap-hmac-md5",
1018 .cra_priority = 100,
1019 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
1021 CRYPTO_ALG_NEED_FALLBACK,
1022 .cra_blocksize = SHA1_BLOCK_SIZE,
1023 .cra_ctxsize = sizeof(struct omap_sham_ctx) +
1024 sizeof(struct omap_sham_hmac_ctx),
1025 .cra_alignmask = OMAP_ALIGN_MASK,
1026 .cra_module = THIS_MODULE,
1027 .cra_init = omap_sham_cra_md5_init,
1028 .cra_exit = omap_sham_cra_exit,
1033 static void omap_sham_done_task(unsigned long data)
1035 struct omap_sham_dev *dd = (struct omap_sham_dev *)data;
1036 struct ahash_request *req = dd->req;
1037 struct omap_sham_reqctx *ctx = ahash_request_ctx(req);
1038 int ready = 0, err = 0;
1040 if (ctx->flags & BIT(FLAGS_OUTPUT_READY)) {
1041 ctx->flags &= ~BIT(FLAGS_OUTPUT_READY);
1045 if (dd->flags & BIT(FLAGS_DMA_ACTIVE)) {
1046 dd->flags &= ~BIT(FLAGS_DMA_ACTIVE);
1047 omap_sham_update_dma_stop(dd);
1049 err = omap_sham_update_dma_start(dd);
1052 err = dd->err ? : err;
1054 if (err != -EINPROGRESS && (ready || err)) {
1055 dev_dbg(dd->dev, "update done: err: %d\n", err);
1056 /* finish curent request */
1057 omap_sham_finish_req(req, err);
1058 /* start new request */
1059 omap_sham_handle_queue(dd, NULL);
1063 static void omap_sham_queue_task(unsigned long data)
1065 struct omap_sham_dev *dd = (struct omap_sham_dev *)data;
1067 omap_sham_handle_queue(dd, NULL);
1070 static irqreturn_t omap_sham_irq(int irq, void *dev_id)
1072 struct omap_sham_dev *dd = dev_id;
1073 struct omap_sham_reqctx *ctx = ahash_request_ctx(dd->req);
1076 dev_err(dd->dev, "unknown interrupt.\n");
1080 if (unlikely(ctx->flags & BIT(FLAGS_FINAL)))
1081 /* final -> allow device to go to power-saving mode */
1082 omap_sham_write_mask(dd, SHA_REG_CTRL, 0, SHA_REG_CTRL_LENGTH);
1084 omap_sham_write_mask(dd, SHA_REG_CTRL, SHA_REG_CTRL_OUTPUT_READY,
1085 SHA_REG_CTRL_OUTPUT_READY);
1086 omap_sham_read(dd, SHA_REG_CTRL);
1088 ctx->flags |= BIT(FLAGS_OUTPUT_READY);
1090 tasklet_schedule(&dd->done_task);
1095 static void omap_sham_dma_callback(int lch, u16 ch_status, void *data)
1097 struct omap_sham_dev *dd = data;
1099 if (ch_status != OMAP_DMA_BLOCK_IRQ) {
1100 pr_err("omap-sham DMA error status: 0x%hx\n", ch_status);
1102 dd->flags &= ~BIT(FLAGS_INIT); /* request to re-initialize */
1105 tasklet_schedule(&dd->done_task);
1108 static int omap_sham_dma_init(struct omap_sham_dev *dd)
1114 err = omap_request_dma(dd->dma, dev_name(dd->dev),
1115 omap_sham_dma_callback, dd, &dd->dma_lch);
1117 dev_err(dd->dev, "Unable to request DMA channel\n");
1124 static void omap_sham_dma_cleanup(struct omap_sham_dev *dd)
1126 if (dd->dma_lch >= 0) {
1127 omap_free_dma(dd->dma_lch);
1132 static int __devinit omap_sham_probe(struct platform_device *pdev)
1134 struct omap_sham_dev *dd;
1135 struct device *dev = &pdev->dev;
1136 struct resource *res;
1139 dd = kzalloc(sizeof(struct omap_sham_dev), GFP_KERNEL);
1141 dev_err(dev, "unable to alloc data struct.\n");
1146 platform_set_drvdata(pdev, dd);
1148 INIT_LIST_HEAD(&dd->list);
1149 spin_lock_init(&dd->lock);
1150 tasklet_init(&dd->done_task, omap_sham_done_task, (unsigned long)dd);
1151 tasklet_init(&dd->queue_task, omap_sham_queue_task, (unsigned long)dd);
1152 crypto_init_queue(&dd->queue, OMAP_SHAM_QUEUE_LENGTH);
1156 /* Get the base address */
1157 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1159 dev_err(dev, "no MEM resource info\n");
1163 dd->phys_base = res->start;
1166 res = platform_get_resource(pdev, IORESOURCE_DMA, 0);
1168 dev_err(dev, "no DMA resource info\n");
1172 dd->dma = res->start;
1175 dd->irq = platform_get_irq(pdev, 0);
1177 dev_err(dev, "no IRQ resource info\n");
1182 err = request_irq(dd->irq, omap_sham_irq,
1183 IRQF_TRIGGER_LOW, dev_name(dev), dd);
1185 dev_err(dev, "unable to request irq.\n");
1189 err = omap_sham_dma_init(dd);
1193 /* Initializing the clock */
1194 dd->iclk = clk_get(dev, "ick");
1195 if (IS_ERR(dd->iclk)) {
1196 dev_err(dev, "clock intialization failed.\n");
1197 err = PTR_ERR(dd->iclk);
1201 dd->io_base = ioremap(dd->phys_base, SZ_4K);
1203 dev_err(dev, "can't ioremap\n");
1208 clk_enable(dd->iclk);
1209 dev_info(dev, "hw accel on OMAP rev %u.%u\n",
1210 (omap_sham_read(dd, SHA_REG_REV) & SHA_REG_REV_MAJOR) >> 4,
1211 omap_sham_read(dd, SHA_REG_REV) & SHA_REG_REV_MINOR);
1212 clk_disable(dd->iclk);
1214 spin_lock(&sham.lock);
1215 list_add_tail(&dd->list, &sham.dev_list);
1216 spin_unlock(&sham.lock);
1218 for (i = 0; i < ARRAY_SIZE(algs); i++) {
1219 err = crypto_register_ahash(&algs[i]);
1227 for (j = 0; j < i; j++)
1228 crypto_unregister_ahash(&algs[j]);
1229 iounmap(dd->io_base);
1233 omap_sham_dma_cleanup(dd);
1236 free_irq(dd->irq, dd);
1241 dev_err(dev, "initialization failed.\n");
1246 static int __devexit omap_sham_remove(struct platform_device *pdev)
1248 static struct omap_sham_dev *dd;
1251 dd = platform_get_drvdata(pdev);
1254 spin_lock(&sham.lock);
1255 list_del(&dd->list);
1256 spin_unlock(&sham.lock);
1257 for (i = 0; i < ARRAY_SIZE(algs); i++)
1258 crypto_unregister_ahash(&algs[i]);
1259 tasklet_kill(&dd->done_task);
1260 tasklet_kill(&dd->queue_task);
1261 iounmap(dd->io_base);
1263 omap_sham_dma_cleanup(dd);
1265 free_irq(dd->irq, dd);
1272 static struct platform_driver omap_sham_driver = {
1273 .probe = omap_sham_probe,
1274 .remove = omap_sham_remove,
1276 .name = "omap-sham",
1277 .owner = THIS_MODULE,
1281 static int __init omap_sham_mod_init(void)
1283 pr_info("loading %s driver\n", "omap-sham");
1285 if (!cpu_class_is_omap2() ||
1286 (omap_type() != OMAP2_DEVICE_TYPE_SEC &&
1287 omap_type() != OMAP2_DEVICE_TYPE_EMU)) {
1288 pr_err("Unsupported cpu\n");
1292 return platform_driver_register(&omap_sham_driver);
1295 static void __exit omap_sham_mod_exit(void)
1297 platform_driver_unregister(&omap_sham_driver);
1300 module_init(omap_sham_mod_init);
1301 module_exit(omap_sham_mod_exit);
1303 MODULE_DESCRIPTION("OMAP SHA1/MD5 hw acceleration support.");
1304 MODULE_LICENSE("GPL v2");
1305 MODULE_AUTHOR("Dmitry Kasatkin");