blob: 6fcf25f795d43e42dd87befd487758b27bcf5b0d [file] [log] [blame]
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001/*
2 * Cryptographic API.
3 *
4 * Support for ATMEL SHA1/SHA256 HW acceleration.
5 *
6 * Copyright (c) 2012 Eukréa Electromatique - ATMEL
7 * Author: Nicolas Royer <nicolas@eukrea.com>
8 *
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.
12 *
13 * Some ideas are from omap-sham.c drivers.
14 */
15
16
17#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/slab.h>
20#include <linux/err.h>
21#include <linux/clk.h>
22#include <linux/io.h>
23#include <linux/hw_random.h>
24#include <linux/platform_device.h>
25
26#include <linux/device.h>
Nicolas Royerebc82ef2012-07-01 19:19:46 +020027#include <linux/init.h>
28#include <linux/errno.h>
29#include <linux/interrupt.h>
Nicolas Royerebc82ef2012-07-01 19:19:46 +020030#include <linux/irq.h>
Nicolas Royerebc82ef2012-07-01 19:19:46 +020031#include <linux/scatterlist.h>
32#include <linux/dma-mapping.h>
Nicolas Ferreabfe7ae2013-10-15 15:36:34 +020033#include <linux/of_device.h>
Nicolas Royerebc82ef2012-07-01 19:19:46 +020034#include <linux/delay.h>
35#include <linux/crypto.h>
36#include <linux/cryptohash.h>
37#include <crypto/scatterwalk.h>
38#include <crypto/algapi.h>
39#include <crypto/sha.h>
40#include <crypto/hash.h>
41#include <crypto/internal/hash.h>
Nicolas Royerd4905b32013-02-20 17:10:26 +010042#include <linux/platform_data/crypto-atmel.h>
Nicolas Royerebc82ef2012-07-01 19:19:46 +020043#include "atmel-sha-regs.h"
44
45/* SHA flags */
46#define SHA_FLAGS_BUSY BIT(0)
47#define SHA_FLAGS_FINAL BIT(1)
48#define SHA_FLAGS_DMA_ACTIVE BIT(2)
49#define SHA_FLAGS_OUTPUT_READY BIT(3)
50#define SHA_FLAGS_INIT BIT(4)
51#define SHA_FLAGS_CPU BIT(5)
52#define SHA_FLAGS_DMA_READY BIT(6)
53
54#define SHA_FLAGS_FINUP BIT(16)
55#define SHA_FLAGS_SG BIT(17)
Cyrille Pitchen7cee3502016-01-15 15:49:34 +010056#define SHA_FLAGS_ALGO_MASK GENMASK(22, 18)
Nicolas Royerebc82ef2012-07-01 19:19:46 +020057#define SHA_FLAGS_SHA1 BIT(18)
Nicolas Royerd4905b32013-02-20 17:10:26 +010058#define SHA_FLAGS_SHA224 BIT(19)
59#define SHA_FLAGS_SHA256 BIT(20)
60#define SHA_FLAGS_SHA384 BIT(21)
61#define SHA_FLAGS_SHA512 BIT(22)
62#define SHA_FLAGS_ERROR BIT(23)
63#define SHA_FLAGS_PAD BIT(24)
Cyrille Pitchen7cee3502016-01-15 15:49:34 +010064#define SHA_FLAGS_RESTORE BIT(25)
Nicolas Royerebc82ef2012-07-01 19:19:46 +020065
66#define SHA_OP_UPDATE 1
67#define SHA_OP_FINAL 2
68
Cyrille Pitchencc831d32016-01-29 17:04:02 +010069#define SHA_BUFFER_LEN (PAGE_SIZE / 16)
Nicolas Royerebc82ef2012-07-01 19:19:46 +020070
71#define ATMEL_SHA_DMA_THRESHOLD 56
72
Nicolas Royerd4905b32013-02-20 17:10:26 +010073struct atmel_sha_caps {
74 bool has_dma;
75 bool has_dualbuff;
76 bool has_sha224;
77 bool has_sha_384_512;
Cyrille Pitchen7cee3502016-01-15 15:49:34 +010078 bool has_uihv;
Nicolas Royerd4905b32013-02-20 17:10:26 +010079};
Nicolas Royerebc82ef2012-07-01 19:19:46 +020080
81struct atmel_sha_dev;
82
Cyrille Pitchencc831d32016-01-29 17:04:02 +010083/*
Cyrille Pitchen9c4274d2016-02-08 16:26:48 +010084 * .statesize = sizeof(struct atmel_sha_reqctx) must be <= PAGE_SIZE / 8 as
Cyrille Pitchencc831d32016-01-29 17:04:02 +010085 * tested by the ahash_prepare_alg() function.
86 */
Nicolas Royerebc82ef2012-07-01 19:19:46 +020087struct atmel_sha_reqctx {
88 struct atmel_sha_dev *dd;
89 unsigned long flags;
90 unsigned long op;
91
Nicolas Royerd4905b32013-02-20 17:10:26 +010092 u8 digest[SHA512_DIGEST_SIZE] __aligned(sizeof(u32));
93 u64 digcnt[2];
Nicolas Royerebc82ef2012-07-01 19:19:46 +020094 size_t bufcnt;
95 size_t buflen;
96 dma_addr_t dma_addr;
97
98 /* walk state */
99 struct scatterlist *sg;
100 unsigned int offset; /* offset in current sg */
101 unsigned int total; /* total request */
102
Nicolas Royerd4905b32013-02-20 17:10:26 +0100103 size_t block_size;
104
Cyrille Pitchen9c4274d2016-02-08 16:26:48 +0100105 u8 buffer[SHA_BUFFER_LEN + SHA512_BLOCK_SIZE] __aligned(sizeof(u32));
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200106};
107
108struct atmel_sha_ctx {
109 struct atmel_sha_dev *dd;
110
111 unsigned long flags;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200112};
113
Nicolas Royerd4905b32013-02-20 17:10:26 +0100114#define ATMEL_SHA_QUEUE_LENGTH 50
115
116struct atmel_sha_dma {
117 struct dma_chan *chan;
118 struct dma_slave_config dma_conf;
119};
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200120
121struct atmel_sha_dev {
122 struct list_head list;
123 unsigned long phys_base;
124 struct device *dev;
125 struct clk *iclk;
126 int irq;
127 void __iomem *io_base;
128
129 spinlock_t lock;
130 int err;
131 struct tasklet_struct done_task;
Cyrille Pitchenf56809c2016-01-15 15:49:32 +0100132 struct tasklet_struct queue_task;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200133
134 unsigned long flags;
135 struct crypto_queue queue;
136 struct ahash_request *req;
Nicolas Royerd4905b32013-02-20 17:10:26 +0100137
138 struct atmel_sha_dma dma_lch_in;
139
140 struct atmel_sha_caps caps;
141
142 u32 hw_version;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200143};
144
145struct atmel_sha_drv {
146 struct list_head dev_list;
147 spinlock_t lock;
148};
149
150static struct atmel_sha_drv atmel_sha = {
151 .dev_list = LIST_HEAD_INIT(atmel_sha.dev_list),
152 .lock = __SPIN_LOCK_UNLOCKED(atmel_sha.lock),
153};
154
155static inline u32 atmel_sha_read(struct atmel_sha_dev *dd, u32 offset)
156{
157 return readl_relaxed(dd->io_base + offset);
158}
159
160static inline void atmel_sha_write(struct atmel_sha_dev *dd,
161 u32 offset, u32 value)
162{
163 writel_relaxed(value, dd->io_base + offset);
164}
165
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200166static size_t atmel_sha_append_sg(struct atmel_sha_reqctx *ctx)
167{
168 size_t count;
169
170 while ((ctx->bufcnt < ctx->buflen) && ctx->total) {
171 count = min(ctx->sg->length - ctx->offset, ctx->total);
172 count = min(count, ctx->buflen - ctx->bufcnt);
173
Leilei Zhao803eeae2015-04-07 17:45:05 +0800174 if (count <= 0) {
175 /*
176 * Check if count <= 0 because the buffer is full or
177 * because the sg length is 0. In the latest case,
178 * check if there is another sg in the list, a 0 length
179 * sg doesn't necessarily mean the end of the sg list.
180 */
181 if ((ctx->sg->length == 0) && !sg_is_last(ctx->sg)) {
182 ctx->sg = sg_next(ctx->sg);
183 continue;
184 } else {
185 break;
186 }
187 }
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200188
189 scatterwalk_map_and_copy(ctx->buffer + ctx->bufcnt, ctx->sg,
190 ctx->offset, count, 0);
191
192 ctx->bufcnt += count;
193 ctx->offset += count;
194 ctx->total -= count;
195
196 if (ctx->offset == ctx->sg->length) {
197 ctx->sg = sg_next(ctx->sg);
198 if (ctx->sg)
199 ctx->offset = 0;
200 else
201 ctx->total = 0;
202 }
203 }
204
205 return 0;
206}
207
208/*
Nicolas Royerd4905b32013-02-20 17:10:26 +0100209 * The purpose of this padding is to ensure that the padded message is a
210 * multiple of 512 bits (SHA1/SHA224/SHA256) or 1024 bits (SHA384/SHA512).
211 * The bit "1" is appended at the end of the message followed by
212 * "padlen-1" zero bits. Then a 64 bits block (SHA1/SHA224/SHA256) or
213 * 128 bits block (SHA384/SHA512) equals to the message length in bits
214 * is appended.
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200215 *
Nicolas Royerd4905b32013-02-20 17:10:26 +0100216 * For SHA1/SHA224/SHA256, padlen is calculated as followed:
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200217 * - if message length < 56 bytes then padlen = 56 - message length
218 * - else padlen = 64 + 56 - message length
Nicolas Royerd4905b32013-02-20 17:10:26 +0100219 *
220 * For SHA384/SHA512, padlen is calculated as followed:
221 * - if message length < 112 bytes then padlen = 112 - message length
222 * - else padlen = 128 + 112 - message length
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200223 */
224static void atmel_sha_fill_padding(struct atmel_sha_reqctx *ctx, int length)
225{
226 unsigned int index, padlen;
Nicolas Royerd4905b32013-02-20 17:10:26 +0100227 u64 bits[2];
228 u64 size[2];
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200229
Nicolas Royerd4905b32013-02-20 17:10:26 +0100230 size[0] = ctx->digcnt[0];
231 size[1] = ctx->digcnt[1];
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200232
Nicolas Royerd4905b32013-02-20 17:10:26 +0100233 size[0] += ctx->bufcnt;
234 if (size[0] < ctx->bufcnt)
235 size[1]++;
236
237 size[0] += length;
238 if (size[0] < length)
239 size[1]++;
240
241 bits[1] = cpu_to_be64(size[0] << 3);
242 bits[0] = cpu_to_be64(size[1] << 3 | size[0] >> 61);
243
244 if (ctx->flags & (SHA_FLAGS_SHA384 | SHA_FLAGS_SHA512)) {
245 index = ctx->bufcnt & 0x7f;
246 padlen = (index < 112) ? (112 - index) : ((128+112) - index);
247 *(ctx->buffer + ctx->bufcnt) = 0x80;
248 memset(ctx->buffer + ctx->bufcnt + 1, 0, padlen-1);
249 memcpy(ctx->buffer + ctx->bufcnt + padlen, bits, 16);
250 ctx->bufcnt += padlen + 16;
251 ctx->flags |= SHA_FLAGS_PAD;
252 } else {
253 index = ctx->bufcnt & 0x3f;
254 padlen = (index < 56) ? (56 - index) : ((64+56) - index);
255 *(ctx->buffer + ctx->bufcnt) = 0x80;
256 memset(ctx->buffer + ctx->bufcnt + 1, 0, padlen-1);
257 memcpy(ctx->buffer + ctx->bufcnt + padlen, &bits[1], 8);
258 ctx->bufcnt += padlen + 8;
259 ctx->flags |= SHA_FLAGS_PAD;
260 }
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200261}
262
263static int atmel_sha_init(struct ahash_request *req)
264{
265 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
266 struct atmel_sha_ctx *tctx = crypto_ahash_ctx(tfm);
267 struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
268 struct atmel_sha_dev *dd = NULL;
269 struct atmel_sha_dev *tmp;
270
271 spin_lock_bh(&atmel_sha.lock);
272 if (!tctx->dd) {
273 list_for_each_entry(tmp, &atmel_sha.dev_list, list) {
274 dd = tmp;
275 break;
276 }
277 tctx->dd = dd;
278 } else {
279 dd = tctx->dd;
280 }
281
282 spin_unlock_bh(&atmel_sha.lock);
283
284 ctx->dd = dd;
285
286 ctx->flags = 0;
287
288 dev_dbg(dd->dev, "init: digest size: %d\n",
289 crypto_ahash_digestsize(tfm));
290
Nicolas Royerd4905b32013-02-20 17:10:26 +0100291 switch (crypto_ahash_digestsize(tfm)) {
292 case SHA1_DIGEST_SIZE:
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200293 ctx->flags |= SHA_FLAGS_SHA1;
Nicolas Royerd4905b32013-02-20 17:10:26 +0100294 ctx->block_size = SHA1_BLOCK_SIZE;
295 break;
296 case SHA224_DIGEST_SIZE:
297 ctx->flags |= SHA_FLAGS_SHA224;
298 ctx->block_size = SHA224_BLOCK_SIZE;
299 break;
300 case SHA256_DIGEST_SIZE:
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200301 ctx->flags |= SHA_FLAGS_SHA256;
Nicolas Royerd4905b32013-02-20 17:10:26 +0100302 ctx->block_size = SHA256_BLOCK_SIZE;
303 break;
304 case SHA384_DIGEST_SIZE:
305 ctx->flags |= SHA_FLAGS_SHA384;
306 ctx->block_size = SHA384_BLOCK_SIZE;
307 break;
308 case SHA512_DIGEST_SIZE:
309 ctx->flags |= SHA_FLAGS_SHA512;
310 ctx->block_size = SHA512_BLOCK_SIZE;
311 break;
312 default:
313 return -EINVAL;
314 break;
315 }
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200316
317 ctx->bufcnt = 0;
Nicolas Royerd4905b32013-02-20 17:10:26 +0100318 ctx->digcnt[0] = 0;
319 ctx->digcnt[1] = 0;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200320 ctx->buflen = SHA_BUFFER_LEN;
321
322 return 0;
323}
324
325static void atmel_sha_write_ctrl(struct atmel_sha_dev *dd, int dma)
326{
327 struct atmel_sha_reqctx *ctx = ahash_request_ctx(dd->req);
Cyrille Pitchen7cee3502016-01-15 15:49:34 +0100328 u32 valmr = SHA_MR_MODE_AUTO;
329 unsigned int i, hashsize = 0;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200330
331 if (likely(dma)) {
Nicolas Royerd4905b32013-02-20 17:10:26 +0100332 if (!dd->caps.has_dma)
333 atmel_sha_write(dd, SHA_IER, SHA_INT_TXBUFE);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200334 valmr = SHA_MR_MODE_PDC;
Nicolas Royerd4905b32013-02-20 17:10:26 +0100335 if (dd->caps.has_dualbuff)
336 valmr |= SHA_MR_DUALBUFF;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200337 } else {
338 atmel_sha_write(dd, SHA_IER, SHA_INT_DATARDY);
339 }
340
Cyrille Pitchen7cee3502016-01-15 15:49:34 +0100341 switch (ctx->flags & SHA_FLAGS_ALGO_MASK) {
342 case SHA_FLAGS_SHA1:
Nicolas Royerd4905b32013-02-20 17:10:26 +0100343 valmr |= SHA_MR_ALGO_SHA1;
Cyrille Pitchen7cee3502016-01-15 15:49:34 +0100344 hashsize = SHA1_DIGEST_SIZE;
345 break;
346
347 case SHA_FLAGS_SHA224:
Nicolas Royerd4905b32013-02-20 17:10:26 +0100348 valmr |= SHA_MR_ALGO_SHA224;
Cyrille Pitchen7cee3502016-01-15 15:49:34 +0100349 hashsize = SHA256_DIGEST_SIZE;
350 break;
351
352 case SHA_FLAGS_SHA256:
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200353 valmr |= SHA_MR_ALGO_SHA256;
Cyrille Pitchen7cee3502016-01-15 15:49:34 +0100354 hashsize = SHA256_DIGEST_SIZE;
355 break;
356
357 case SHA_FLAGS_SHA384:
Nicolas Royerd4905b32013-02-20 17:10:26 +0100358 valmr |= SHA_MR_ALGO_SHA384;
Cyrille Pitchen7cee3502016-01-15 15:49:34 +0100359 hashsize = SHA512_DIGEST_SIZE;
360 break;
361
362 case SHA_FLAGS_SHA512:
Nicolas Royerd4905b32013-02-20 17:10:26 +0100363 valmr |= SHA_MR_ALGO_SHA512;
Cyrille Pitchen7cee3502016-01-15 15:49:34 +0100364 hashsize = SHA512_DIGEST_SIZE;
365 break;
366
367 default:
368 break;
369 }
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200370
371 /* Setting CR_FIRST only for the first iteration */
Cyrille Pitchen7cee3502016-01-15 15:49:34 +0100372 if (!(ctx->digcnt[0] || ctx->digcnt[1])) {
373 atmel_sha_write(dd, SHA_CR, SHA_CR_FIRST);
374 } else if (dd->caps.has_uihv && (ctx->flags & SHA_FLAGS_RESTORE)) {
375 const u32 *hash = (const u32 *)ctx->digest;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200376
Cyrille Pitchen7cee3502016-01-15 15:49:34 +0100377 /*
378 * Restore the hardware context: update the User Initialize
379 * Hash Value (UIHV) with the value saved when the latest
380 * 'update' operation completed on this very same crypto
381 * request.
382 */
383 ctx->flags &= ~SHA_FLAGS_RESTORE;
384 atmel_sha_write(dd, SHA_CR, SHA_CR_WUIHV);
385 for (i = 0; i < hashsize / sizeof(u32); ++i)
386 atmel_sha_write(dd, SHA_REG_DIN(i), hash[i]);
387 atmel_sha_write(dd, SHA_CR, SHA_CR_FIRST);
388 valmr |= SHA_MR_UIHV;
389 }
390 /*
391 * WARNING: If the UIHV feature is not available, the hardware CANNOT
392 * process concurrent requests: the internal registers used to store
393 * the hash/digest are still set to the partial digest output values
394 * computed during the latest round.
395 */
396
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200397 atmel_sha_write(dd, SHA_MR, valmr);
398}
399
400static int atmel_sha_xmit_cpu(struct atmel_sha_dev *dd, const u8 *buf,
401 size_t length, int final)
402{
403 struct atmel_sha_reqctx *ctx = ahash_request_ctx(dd->req);
404 int count, len32;
405 const u32 *buffer = (const u32 *)buf;
406
Nicolas Royerd4905b32013-02-20 17:10:26 +0100407 dev_dbg(dd->dev, "xmit_cpu: digcnt: 0x%llx 0x%llx, length: %d, final: %d\n",
408 ctx->digcnt[1], ctx->digcnt[0], length, final);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200409
410 atmel_sha_write_ctrl(dd, 0);
411
412 /* should be non-zero before next lines to disable clocks later */
Nicolas Royerd4905b32013-02-20 17:10:26 +0100413 ctx->digcnt[0] += length;
414 if (ctx->digcnt[0] < length)
415 ctx->digcnt[1]++;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200416
417 if (final)
418 dd->flags |= SHA_FLAGS_FINAL; /* catch last interrupt */
419
420 len32 = DIV_ROUND_UP(length, sizeof(u32));
421
422 dd->flags |= SHA_FLAGS_CPU;
423
424 for (count = 0; count < len32; count++)
425 atmel_sha_write(dd, SHA_REG_DIN(count), buffer[count]);
426
427 return -EINPROGRESS;
428}
429
430static int atmel_sha_xmit_pdc(struct atmel_sha_dev *dd, dma_addr_t dma_addr1,
431 size_t length1, dma_addr_t dma_addr2, size_t length2, int final)
432{
433 struct atmel_sha_reqctx *ctx = ahash_request_ctx(dd->req);
434 int len32;
435
Nicolas Royerd4905b32013-02-20 17:10:26 +0100436 dev_dbg(dd->dev, "xmit_pdc: digcnt: 0x%llx 0x%llx, length: %d, final: %d\n",
437 ctx->digcnt[1], ctx->digcnt[0], length1, final);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200438
439 len32 = DIV_ROUND_UP(length1, sizeof(u32));
440 atmel_sha_write(dd, SHA_PTCR, SHA_PTCR_TXTDIS);
441 atmel_sha_write(dd, SHA_TPR, dma_addr1);
442 atmel_sha_write(dd, SHA_TCR, len32);
443
444 len32 = DIV_ROUND_UP(length2, sizeof(u32));
445 atmel_sha_write(dd, SHA_TNPR, dma_addr2);
446 atmel_sha_write(dd, SHA_TNCR, len32);
447
448 atmel_sha_write_ctrl(dd, 1);
449
450 /* should be non-zero before next lines to disable clocks later */
Nicolas Royerd4905b32013-02-20 17:10:26 +0100451 ctx->digcnt[0] += length1;
452 if (ctx->digcnt[0] < length1)
453 ctx->digcnt[1]++;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200454
455 if (final)
456 dd->flags |= SHA_FLAGS_FINAL; /* catch last interrupt */
457
458 dd->flags |= SHA_FLAGS_DMA_ACTIVE;
459
460 /* Start DMA transfer */
461 atmel_sha_write(dd, SHA_PTCR, SHA_PTCR_TXTEN);
462
463 return -EINPROGRESS;
464}
465
Nicolas Royerd4905b32013-02-20 17:10:26 +0100466static void atmel_sha_dma_callback(void *data)
467{
468 struct atmel_sha_dev *dd = data;
469
470 /* dma_lch_in - completed - wait DATRDY */
471 atmel_sha_write(dd, SHA_IER, SHA_INT_DATARDY);
472}
473
474static int atmel_sha_xmit_dma(struct atmel_sha_dev *dd, dma_addr_t dma_addr1,
475 size_t length1, dma_addr_t dma_addr2, size_t length2, int final)
476{
477 struct atmel_sha_reqctx *ctx = ahash_request_ctx(dd->req);
478 struct dma_async_tx_descriptor *in_desc;
479 struct scatterlist sg[2];
480
481 dev_dbg(dd->dev, "xmit_dma: digcnt: 0x%llx 0x%llx, length: %d, final: %d\n",
482 ctx->digcnt[1], ctx->digcnt[0], length1, final);
483
Leilei Zhao3f1992c2015-04-07 17:45:07 +0800484 dd->dma_lch_in.dma_conf.src_maxburst = 16;
485 dd->dma_lch_in.dma_conf.dst_maxburst = 16;
Nicolas Royerd4905b32013-02-20 17:10:26 +0100486
487 dmaengine_slave_config(dd->dma_lch_in.chan, &dd->dma_lch_in.dma_conf);
488
489 if (length2) {
490 sg_init_table(sg, 2);
491 sg_dma_address(&sg[0]) = dma_addr1;
492 sg_dma_len(&sg[0]) = length1;
493 sg_dma_address(&sg[1]) = dma_addr2;
494 sg_dma_len(&sg[1]) = length2;
495 in_desc = dmaengine_prep_slave_sg(dd->dma_lch_in.chan, sg, 2,
496 DMA_MEM_TO_DEV, DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
497 } else {
498 sg_init_table(sg, 1);
499 sg_dma_address(&sg[0]) = dma_addr1;
500 sg_dma_len(&sg[0]) = length1;
501 in_desc = dmaengine_prep_slave_sg(dd->dma_lch_in.chan, sg, 1,
502 DMA_MEM_TO_DEV, DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
503 }
504 if (!in_desc)
505 return -EINVAL;
506
507 in_desc->callback = atmel_sha_dma_callback;
508 in_desc->callback_param = dd;
509
510 atmel_sha_write_ctrl(dd, 1);
511
512 /* should be non-zero before next lines to disable clocks later */
513 ctx->digcnt[0] += length1;
514 if (ctx->digcnt[0] < length1)
515 ctx->digcnt[1]++;
516
517 if (final)
518 dd->flags |= SHA_FLAGS_FINAL; /* catch last interrupt */
519
520 dd->flags |= SHA_FLAGS_DMA_ACTIVE;
521
522 /* Start DMA transfer */
523 dmaengine_submit(in_desc);
524 dma_async_issue_pending(dd->dma_lch_in.chan);
525
526 return -EINPROGRESS;
527}
528
529static int atmel_sha_xmit_start(struct atmel_sha_dev *dd, dma_addr_t dma_addr1,
530 size_t length1, dma_addr_t dma_addr2, size_t length2, int final)
531{
532 if (dd->caps.has_dma)
533 return atmel_sha_xmit_dma(dd, dma_addr1, length1,
534 dma_addr2, length2, final);
535 else
536 return atmel_sha_xmit_pdc(dd, dma_addr1, length1,
537 dma_addr2, length2, final);
538}
539
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200540static int atmel_sha_update_cpu(struct atmel_sha_dev *dd)
541{
542 struct atmel_sha_reqctx *ctx = ahash_request_ctx(dd->req);
543 int bufcnt;
544
545 atmel_sha_append_sg(ctx);
546 atmel_sha_fill_padding(ctx, 0);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200547 bufcnt = ctx->bufcnt;
548 ctx->bufcnt = 0;
549
550 return atmel_sha_xmit_cpu(dd, ctx->buffer, bufcnt, 1);
551}
552
553static int atmel_sha_xmit_dma_map(struct atmel_sha_dev *dd,
554 struct atmel_sha_reqctx *ctx,
555 size_t length, int final)
556{
557 ctx->dma_addr = dma_map_single(dd->dev, ctx->buffer,
Nicolas Royerd4905b32013-02-20 17:10:26 +0100558 ctx->buflen + ctx->block_size, DMA_TO_DEVICE);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200559 if (dma_mapping_error(dd->dev, ctx->dma_addr)) {
560 dev_err(dd->dev, "dma %u bytes error\n", ctx->buflen +
Nicolas Royerd4905b32013-02-20 17:10:26 +0100561 ctx->block_size);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200562 return -EINVAL;
563 }
564
565 ctx->flags &= ~SHA_FLAGS_SG;
566
567 /* next call does not fail... so no unmap in the case of error */
Nicolas Royerd4905b32013-02-20 17:10:26 +0100568 return atmel_sha_xmit_start(dd, ctx->dma_addr, length, 0, 0, final);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200569}
570
571static int atmel_sha_update_dma_slow(struct atmel_sha_dev *dd)
572{
573 struct atmel_sha_reqctx *ctx = ahash_request_ctx(dd->req);
574 unsigned int final;
575 size_t count;
576
577 atmel_sha_append_sg(ctx);
578
579 final = (ctx->flags & SHA_FLAGS_FINUP) && !ctx->total;
580
Nicolas Royerd4905b32013-02-20 17:10:26 +0100581 dev_dbg(dd->dev, "slow: bufcnt: %u, digcnt: 0x%llx 0x%llx, final: %d\n",
582 ctx->bufcnt, ctx->digcnt[1], ctx->digcnt[0], final);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200583
584 if (final)
585 atmel_sha_fill_padding(ctx, 0);
586
Ludovic Desroches00992862015-04-07 17:45:04 +0800587 if (final || (ctx->bufcnt == ctx->buflen)) {
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200588 count = ctx->bufcnt;
589 ctx->bufcnt = 0;
590 return atmel_sha_xmit_dma_map(dd, ctx, count, final);
591 }
592
593 return 0;
594}
595
596static int atmel_sha_update_dma_start(struct atmel_sha_dev *dd)
597{
598 struct atmel_sha_reqctx *ctx = ahash_request_ctx(dd->req);
599 unsigned int length, final, tail;
600 struct scatterlist *sg;
601 unsigned int count;
602
603 if (!ctx->total)
604 return 0;
605
606 if (ctx->bufcnt || ctx->offset)
607 return atmel_sha_update_dma_slow(dd);
608
Nicolas Royerd4905b32013-02-20 17:10:26 +0100609 dev_dbg(dd->dev, "fast: digcnt: 0x%llx 0x%llx, bufcnt: %u, total: %u\n",
610 ctx->digcnt[1], ctx->digcnt[0], ctx->bufcnt, ctx->total);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200611
612 sg = ctx->sg;
613
614 if (!IS_ALIGNED(sg->offset, sizeof(u32)))
615 return atmel_sha_update_dma_slow(dd);
616
Nicolas Royerd4905b32013-02-20 17:10:26 +0100617 if (!sg_is_last(sg) && !IS_ALIGNED(sg->length, ctx->block_size))
618 /* size is not ctx->block_size aligned */
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200619 return atmel_sha_update_dma_slow(dd);
620
621 length = min(ctx->total, sg->length);
622
623 if (sg_is_last(sg)) {
624 if (!(ctx->flags & SHA_FLAGS_FINUP)) {
Nicolas Royerd4905b32013-02-20 17:10:26 +0100625 /* not last sg must be ctx->block_size aligned */
626 tail = length & (ctx->block_size - 1);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200627 length -= tail;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200628 }
629 }
630
631 ctx->total -= length;
632 ctx->offset = length; /* offset where to start slow */
633
634 final = (ctx->flags & SHA_FLAGS_FINUP) && !ctx->total;
635
636 /* Add padding */
637 if (final) {
Nicolas Royerd4905b32013-02-20 17:10:26 +0100638 tail = length & (ctx->block_size - 1);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200639 length -= tail;
640 ctx->total += tail;
641 ctx->offset = length; /* offset where to start slow */
642
643 sg = ctx->sg;
644 atmel_sha_append_sg(ctx);
645
646 atmel_sha_fill_padding(ctx, length);
647
648 ctx->dma_addr = dma_map_single(dd->dev, ctx->buffer,
Nicolas Royerd4905b32013-02-20 17:10:26 +0100649 ctx->buflen + ctx->block_size, DMA_TO_DEVICE);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200650 if (dma_mapping_error(dd->dev, ctx->dma_addr)) {
651 dev_err(dd->dev, "dma %u bytes error\n",
Nicolas Royerd4905b32013-02-20 17:10:26 +0100652 ctx->buflen + ctx->block_size);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200653 return -EINVAL;
654 }
655
656 if (length == 0) {
657 ctx->flags &= ~SHA_FLAGS_SG;
658 count = ctx->bufcnt;
659 ctx->bufcnt = 0;
Nicolas Royerd4905b32013-02-20 17:10:26 +0100660 return atmel_sha_xmit_start(dd, ctx->dma_addr, count, 0,
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200661 0, final);
662 } else {
663 ctx->sg = sg;
664 if (!dma_map_sg(dd->dev, ctx->sg, 1,
665 DMA_TO_DEVICE)) {
666 dev_err(dd->dev, "dma_map_sg error\n");
667 return -EINVAL;
668 }
669
670 ctx->flags |= SHA_FLAGS_SG;
671
672 count = ctx->bufcnt;
673 ctx->bufcnt = 0;
Nicolas Royerd4905b32013-02-20 17:10:26 +0100674 return atmel_sha_xmit_start(dd, sg_dma_address(ctx->sg),
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200675 length, ctx->dma_addr, count, final);
676 }
677 }
678
679 if (!dma_map_sg(dd->dev, ctx->sg, 1, DMA_TO_DEVICE)) {
680 dev_err(dd->dev, "dma_map_sg error\n");
681 return -EINVAL;
682 }
683
684 ctx->flags |= SHA_FLAGS_SG;
685
686 /* next call does not fail... so no unmap in the case of error */
Nicolas Royerd4905b32013-02-20 17:10:26 +0100687 return atmel_sha_xmit_start(dd, sg_dma_address(ctx->sg), length, 0,
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200688 0, final);
689}
690
691static int atmel_sha_update_dma_stop(struct atmel_sha_dev *dd)
692{
693 struct atmel_sha_reqctx *ctx = ahash_request_ctx(dd->req);
694
695 if (ctx->flags & SHA_FLAGS_SG) {
696 dma_unmap_sg(dd->dev, ctx->sg, 1, DMA_TO_DEVICE);
697 if (ctx->sg->length == ctx->offset) {
698 ctx->sg = sg_next(ctx->sg);
699 if (ctx->sg)
700 ctx->offset = 0;
701 }
Nicolas Royerd4905b32013-02-20 17:10:26 +0100702 if (ctx->flags & SHA_FLAGS_PAD) {
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200703 dma_unmap_single(dd->dev, ctx->dma_addr,
Nicolas Royerd4905b32013-02-20 17:10:26 +0100704 ctx->buflen + ctx->block_size, DMA_TO_DEVICE);
705 }
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200706 } else {
707 dma_unmap_single(dd->dev, ctx->dma_addr, ctx->buflen +
Nicolas Royerd4905b32013-02-20 17:10:26 +0100708 ctx->block_size, DMA_TO_DEVICE);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200709 }
710
711 return 0;
712}
713
714static int atmel_sha_update_req(struct atmel_sha_dev *dd)
715{
716 struct ahash_request *req = dd->req;
717 struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
718 int err;
719
Nicolas Royerd4905b32013-02-20 17:10:26 +0100720 dev_dbg(dd->dev, "update_req: total: %u, digcnt: 0x%llx 0x%llx\n",
721 ctx->total, ctx->digcnt[1], ctx->digcnt[0]);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200722
723 if (ctx->flags & SHA_FLAGS_CPU)
724 err = atmel_sha_update_cpu(dd);
725 else
726 err = atmel_sha_update_dma_start(dd);
727
728 /* wait for dma completion before can take more data */
Nicolas Royerd4905b32013-02-20 17:10:26 +0100729 dev_dbg(dd->dev, "update: err: %d, digcnt: 0x%llx 0%llx\n",
730 err, ctx->digcnt[1], ctx->digcnt[0]);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200731
732 return err;
733}
734
735static int atmel_sha_final_req(struct atmel_sha_dev *dd)
736{
737 struct ahash_request *req = dd->req;
738 struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
739 int err = 0;
740 int count;
741
742 if (ctx->bufcnt >= ATMEL_SHA_DMA_THRESHOLD) {
743 atmel_sha_fill_padding(ctx, 0);
744 count = ctx->bufcnt;
745 ctx->bufcnt = 0;
746 err = atmel_sha_xmit_dma_map(dd, ctx, count, 1);
747 }
748 /* faster to handle last block with cpu */
749 else {
750 atmel_sha_fill_padding(ctx, 0);
751 count = ctx->bufcnt;
752 ctx->bufcnt = 0;
753 err = atmel_sha_xmit_cpu(dd, ctx->buffer, count, 1);
754 }
755
756 dev_dbg(dd->dev, "final_req: err: %d\n", err);
757
758 return err;
759}
760
761static void atmel_sha_copy_hash(struct ahash_request *req)
762{
763 struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
764 u32 *hash = (u32 *)ctx->digest;
Cyrille Pitchen7cee3502016-01-15 15:49:34 +0100765 unsigned int i, hashsize;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200766
Cyrille Pitchen7cee3502016-01-15 15:49:34 +0100767 switch (ctx->flags & SHA_FLAGS_ALGO_MASK) {
768 case SHA_FLAGS_SHA1:
769 hashsize = SHA1_DIGEST_SIZE;
770 break;
771
772 case SHA_FLAGS_SHA224:
773 case SHA_FLAGS_SHA256:
774 hashsize = SHA256_DIGEST_SIZE;
775 break;
776
777 case SHA_FLAGS_SHA384:
778 case SHA_FLAGS_SHA512:
779 hashsize = SHA512_DIGEST_SIZE;
780 break;
781
782 default:
783 /* Should not happen... */
784 return;
785 }
786
787 for (i = 0; i < hashsize / sizeof(u32); ++i)
788 hash[i] = atmel_sha_read(ctx->dd, SHA_REG_DIGEST(i));
789 ctx->flags |= SHA_FLAGS_RESTORE;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200790}
791
792static void atmel_sha_copy_ready_hash(struct ahash_request *req)
793{
794 struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
795
796 if (!req->result)
797 return;
798
Nicolas Royerd4905b32013-02-20 17:10:26 +0100799 if (ctx->flags & SHA_FLAGS_SHA1)
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200800 memcpy(req->result, ctx->digest, SHA1_DIGEST_SIZE);
Nicolas Royerd4905b32013-02-20 17:10:26 +0100801 else if (ctx->flags & SHA_FLAGS_SHA224)
802 memcpy(req->result, ctx->digest, SHA224_DIGEST_SIZE);
803 else if (ctx->flags & SHA_FLAGS_SHA256)
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200804 memcpy(req->result, ctx->digest, SHA256_DIGEST_SIZE);
Nicolas Royerd4905b32013-02-20 17:10:26 +0100805 else if (ctx->flags & SHA_FLAGS_SHA384)
806 memcpy(req->result, ctx->digest, SHA384_DIGEST_SIZE);
807 else
808 memcpy(req->result, ctx->digest, SHA512_DIGEST_SIZE);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200809}
810
811static int atmel_sha_finish(struct ahash_request *req)
812{
813 struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
814 struct atmel_sha_dev *dd = ctx->dd;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200815
Nicolas Royerd4905b32013-02-20 17:10:26 +0100816 if (ctx->digcnt[0] || ctx->digcnt[1])
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200817 atmel_sha_copy_ready_hash(req);
818
Nicolas Royerd4905b32013-02-20 17:10:26 +0100819 dev_dbg(dd->dev, "digcnt: 0x%llx 0x%llx, bufcnt: %d\n", ctx->digcnt[1],
820 ctx->digcnt[0], ctx->bufcnt);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200821
Rahul Pathak871b88a2015-12-14 08:44:19 +0000822 return 0;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200823}
824
825static void atmel_sha_finish_req(struct ahash_request *req, int err)
826{
827 struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
828 struct atmel_sha_dev *dd = ctx->dd;
829
830 if (!err) {
831 atmel_sha_copy_hash(req);
832 if (SHA_FLAGS_FINAL & dd->flags)
833 err = atmel_sha_finish(req);
834 } else {
835 ctx->flags |= SHA_FLAGS_ERROR;
836 }
837
838 /* atomic operation is not needed here */
839 dd->flags &= ~(SHA_FLAGS_BUSY | SHA_FLAGS_FINAL | SHA_FLAGS_CPU |
840 SHA_FLAGS_DMA_READY | SHA_FLAGS_OUTPUT_READY);
841
Cyrille Pitchenc0330422016-02-05 13:45:13 +0100842 clk_disable(dd->iclk);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200843
844 if (req->base.complete)
845 req->base.complete(&req->base, err);
846
847 /* handle new request */
Cyrille Pitchenf56809c2016-01-15 15:49:32 +0100848 tasklet_schedule(&dd->queue_task);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200849}
850
851static int atmel_sha_hw_init(struct atmel_sha_dev *dd)
852{
LABBE Corentin9d83d292015-10-02 14:12:58 +0200853 int err;
854
Cyrille Pitchenc0330422016-02-05 13:45:13 +0100855 err = clk_enable(dd->iclk);
LABBE Corentin9d83d292015-10-02 14:12:58 +0200856 if (err)
857 return err;
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200858
Nicolas Royerd4905b32013-02-20 17:10:26 +0100859 if (!(SHA_FLAGS_INIT & dd->flags)) {
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200860 atmel_sha_write(dd, SHA_CR, SHA_CR_SWRST);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200861 dd->flags |= SHA_FLAGS_INIT;
862 dd->err = 0;
863 }
864
865 return 0;
866}
867
Nicolas Royerd4905b32013-02-20 17:10:26 +0100868static inline unsigned int atmel_sha_get_version(struct atmel_sha_dev *dd)
869{
870 return atmel_sha_read(dd, SHA_HW_VERSION) & 0x00000fff;
871}
872
873static void atmel_sha_hw_version_init(struct atmel_sha_dev *dd)
874{
875 atmel_sha_hw_init(dd);
876
877 dd->hw_version = atmel_sha_get_version(dd);
878
879 dev_info(dd->dev,
880 "version: 0x%x\n", dd->hw_version);
881
Cyrille Pitchenc0330422016-02-05 13:45:13 +0100882 clk_disable(dd->iclk);
Nicolas Royerd4905b32013-02-20 17:10:26 +0100883}
884
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200885static int atmel_sha_handle_queue(struct atmel_sha_dev *dd,
886 struct ahash_request *req)
887{
888 struct crypto_async_request *async_req, *backlog;
889 struct atmel_sha_reqctx *ctx;
890 unsigned long flags;
891 int err = 0, ret = 0;
892
893 spin_lock_irqsave(&dd->lock, flags);
894 if (req)
895 ret = ahash_enqueue_request(&dd->queue, req);
896
897 if (SHA_FLAGS_BUSY & dd->flags) {
898 spin_unlock_irqrestore(&dd->lock, flags);
899 return ret;
900 }
901
902 backlog = crypto_get_backlog(&dd->queue);
903 async_req = crypto_dequeue_request(&dd->queue);
904 if (async_req)
905 dd->flags |= SHA_FLAGS_BUSY;
906
907 spin_unlock_irqrestore(&dd->lock, flags);
908
909 if (!async_req)
910 return ret;
911
912 if (backlog)
913 backlog->complete(backlog, -EINPROGRESS);
914
915 req = ahash_request_cast(async_req);
916 dd->req = req;
917 ctx = ahash_request_ctx(req);
918
919 dev_dbg(dd->dev, "handling new req, op: %lu, nbytes: %d\n",
920 ctx->op, req->nbytes);
921
922 err = atmel_sha_hw_init(dd);
923
924 if (err)
925 goto err1;
926
927 if (ctx->op == SHA_OP_UPDATE) {
928 err = atmel_sha_update_req(dd);
Nicolas Royerd4905b32013-02-20 17:10:26 +0100929 if (err != -EINPROGRESS && (ctx->flags & SHA_FLAGS_FINUP))
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200930 /* no final() after finup() */
931 err = atmel_sha_final_req(dd);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200932 } else if (ctx->op == SHA_OP_FINAL) {
933 err = atmel_sha_final_req(dd);
934 }
935
936err1:
937 if (err != -EINPROGRESS)
938 /* done_task will not finish it, so do it here */
939 atmel_sha_finish_req(req, err);
940
941 dev_dbg(dd->dev, "exit, err: %d\n", err);
942
943 return ret;
944}
945
946static int atmel_sha_enqueue(struct ahash_request *req, unsigned int op)
947{
948 struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
949 struct atmel_sha_ctx *tctx = crypto_tfm_ctx(req->base.tfm);
950 struct atmel_sha_dev *dd = tctx->dd;
951
952 ctx->op = op;
953
954 return atmel_sha_handle_queue(dd, req);
955}
956
957static int atmel_sha_update(struct ahash_request *req)
958{
959 struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
960
961 if (!req->nbytes)
962 return 0;
963
964 ctx->total = req->nbytes;
965 ctx->sg = req->src;
966 ctx->offset = 0;
967
968 if (ctx->flags & SHA_FLAGS_FINUP) {
969 if (ctx->bufcnt + ctx->total < ATMEL_SHA_DMA_THRESHOLD)
970 /* faster to use CPU for short transfers */
971 ctx->flags |= SHA_FLAGS_CPU;
972 } else if (ctx->bufcnt + ctx->total < ctx->buflen) {
973 atmel_sha_append_sg(ctx);
974 return 0;
975 }
976 return atmel_sha_enqueue(req, SHA_OP_UPDATE);
977}
978
979static int atmel_sha_final(struct ahash_request *req)
980{
981 struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200982
983 ctx->flags |= SHA_FLAGS_FINUP;
984
985 if (ctx->flags & SHA_FLAGS_ERROR)
986 return 0; /* uncompleted hash is not needed */
987
Cyrille Pitchenad841122016-02-08 16:26:49 +0100988 if (ctx->flags & SHA_FLAGS_PAD)
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200989 /* copy ready hash (+ finalize hmac) */
990 return atmel_sha_finish(req);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200991
Cyrille Pitchenad841122016-02-08 16:26:49 +0100992 return atmel_sha_enqueue(req, SHA_OP_FINAL);
Nicolas Royerebc82ef2012-07-01 19:19:46 +0200993}
994
995static int atmel_sha_finup(struct ahash_request *req)
996{
997 struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
998 int err1, err2;
999
1000 ctx->flags |= SHA_FLAGS_FINUP;
1001
1002 err1 = atmel_sha_update(req);
Gilad Ben-Yossef81cc2ef2017-06-28 10:22:03 +03001003 if (err1 == -EINPROGRESS ||
1004 (err1 == -EBUSY && (ahash_request_flags(req) &
1005 CRYPTO_TFM_REQ_MAY_BACKLOG)))
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001006 return err1;
1007
1008 /*
1009 * final() has to be always called to cleanup resources
1010 * even if udpate() failed, except EINPROGRESS
1011 */
1012 err2 = atmel_sha_final(req);
1013
1014 return err1 ?: err2;
1015}
1016
1017static int atmel_sha_digest(struct ahash_request *req)
1018{
1019 return atmel_sha_init(req) ?: atmel_sha_finup(req);
1020}
1021
Cyrille Pitchencc831d32016-01-29 17:04:02 +01001022
1023static int atmel_sha_export(struct ahash_request *req, void *out)
1024{
1025 const struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
Cyrille Pitchencc831d32016-01-29 17:04:02 +01001026
Cyrille Pitchen9c4274d2016-02-08 16:26:48 +01001027 memcpy(out, ctx, sizeof(*ctx));
Cyrille Pitchencc831d32016-01-29 17:04:02 +01001028 return 0;
1029}
1030
1031static int atmel_sha_import(struct ahash_request *req, const void *in)
1032{
1033 struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
Cyrille Pitchencc831d32016-01-29 17:04:02 +01001034
Cyrille Pitchen9c4274d2016-02-08 16:26:48 +01001035 memcpy(ctx, in, sizeof(*ctx));
Cyrille Pitchencc831d32016-01-29 17:04:02 +01001036 return 0;
1037}
1038
Svenning Sørensenbe95f0f2014-12-05 01:18:57 +01001039static int atmel_sha_cra_init(struct crypto_tfm *tfm)
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001040{
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001041 crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm),
Cyrille Pitchen9c4274d2016-02-08 16:26:48 +01001042 sizeof(struct atmel_sha_reqctx));
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001043
1044 return 0;
1045}
1046
Nicolas Royerd4905b32013-02-20 17:10:26 +01001047static struct ahash_alg sha_1_256_algs[] = {
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001048{
1049 .init = atmel_sha_init,
1050 .update = atmel_sha_update,
1051 .final = atmel_sha_final,
1052 .finup = atmel_sha_finup,
1053 .digest = atmel_sha_digest,
Cyrille Pitchencc831d32016-01-29 17:04:02 +01001054 .export = atmel_sha_export,
1055 .import = atmel_sha_import,
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001056 .halg = {
1057 .digestsize = SHA1_DIGEST_SIZE,
Cyrille Pitchen9c4274d2016-02-08 16:26:48 +01001058 .statesize = sizeof(struct atmel_sha_reqctx),
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001059 .base = {
1060 .cra_name = "sha1",
1061 .cra_driver_name = "atmel-sha1",
1062 .cra_priority = 100,
Svenning Sørensenbe95f0f2014-12-05 01:18:57 +01001063 .cra_flags = CRYPTO_ALG_ASYNC,
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001064 .cra_blocksize = SHA1_BLOCK_SIZE,
1065 .cra_ctxsize = sizeof(struct atmel_sha_ctx),
1066 .cra_alignmask = 0,
1067 .cra_module = THIS_MODULE,
1068 .cra_init = atmel_sha_cra_init,
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001069 }
1070 }
1071},
1072{
1073 .init = atmel_sha_init,
1074 .update = atmel_sha_update,
1075 .final = atmel_sha_final,
1076 .finup = atmel_sha_finup,
1077 .digest = atmel_sha_digest,
Cyrille Pitchencc831d32016-01-29 17:04:02 +01001078 .export = atmel_sha_export,
1079 .import = atmel_sha_import,
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001080 .halg = {
1081 .digestsize = SHA256_DIGEST_SIZE,
Cyrille Pitchen9c4274d2016-02-08 16:26:48 +01001082 .statesize = sizeof(struct atmel_sha_reqctx),
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001083 .base = {
1084 .cra_name = "sha256",
1085 .cra_driver_name = "atmel-sha256",
1086 .cra_priority = 100,
Svenning Sørensenbe95f0f2014-12-05 01:18:57 +01001087 .cra_flags = CRYPTO_ALG_ASYNC,
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001088 .cra_blocksize = SHA256_BLOCK_SIZE,
1089 .cra_ctxsize = sizeof(struct atmel_sha_ctx),
1090 .cra_alignmask = 0,
1091 .cra_module = THIS_MODULE,
1092 .cra_init = atmel_sha_cra_init,
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001093 }
1094 }
1095},
1096};
1097
Nicolas Royerd4905b32013-02-20 17:10:26 +01001098static struct ahash_alg sha_224_alg = {
1099 .init = atmel_sha_init,
1100 .update = atmel_sha_update,
1101 .final = atmel_sha_final,
1102 .finup = atmel_sha_finup,
1103 .digest = atmel_sha_digest,
Cyrille Pitchencc831d32016-01-29 17:04:02 +01001104 .export = atmel_sha_export,
1105 .import = atmel_sha_import,
Nicolas Royerd4905b32013-02-20 17:10:26 +01001106 .halg = {
1107 .digestsize = SHA224_DIGEST_SIZE,
Cyrille Pitchen9c4274d2016-02-08 16:26:48 +01001108 .statesize = sizeof(struct atmel_sha_reqctx),
Nicolas Royerd4905b32013-02-20 17:10:26 +01001109 .base = {
1110 .cra_name = "sha224",
1111 .cra_driver_name = "atmel-sha224",
1112 .cra_priority = 100,
Svenning Sørensenbe95f0f2014-12-05 01:18:57 +01001113 .cra_flags = CRYPTO_ALG_ASYNC,
Nicolas Royerd4905b32013-02-20 17:10:26 +01001114 .cra_blocksize = SHA224_BLOCK_SIZE,
1115 .cra_ctxsize = sizeof(struct atmel_sha_ctx),
1116 .cra_alignmask = 0,
1117 .cra_module = THIS_MODULE,
1118 .cra_init = atmel_sha_cra_init,
Nicolas Royerd4905b32013-02-20 17:10:26 +01001119 }
1120 }
1121};
1122
1123static struct ahash_alg sha_384_512_algs[] = {
1124{
1125 .init = atmel_sha_init,
1126 .update = atmel_sha_update,
1127 .final = atmel_sha_final,
1128 .finup = atmel_sha_finup,
1129 .digest = atmel_sha_digest,
Cyrille Pitchencc831d32016-01-29 17:04:02 +01001130 .export = atmel_sha_export,
1131 .import = atmel_sha_import,
Nicolas Royerd4905b32013-02-20 17:10:26 +01001132 .halg = {
1133 .digestsize = SHA384_DIGEST_SIZE,
Cyrille Pitchen9c4274d2016-02-08 16:26:48 +01001134 .statesize = sizeof(struct atmel_sha_reqctx),
Nicolas Royerd4905b32013-02-20 17:10:26 +01001135 .base = {
1136 .cra_name = "sha384",
1137 .cra_driver_name = "atmel-sha384",
1138 .cra_priority = 100,
Svenning Sørensenbe95f0f2014-12-05 01:18:57 +01001139 .cra_flags = CRYPTO_ALG_ASYNC,
Nicolas Royerd4905b32013-02-20 17:10:26 +01001140 .cra_blocksize = SHA384_BLOCK_SIZE,
1141 .cra_ctxsize = sizeof(struct atmel_sha_ctx),
1142 .cra_alignmask = 0x3,
1143 .cra_module = THIS_MODULE,
1144 .cra_init = atmel_sha_cra_init,
Nicolas Royerd4905b32013-02-20 17:10:26 +01001145 }
1146 }
1147},
1148{
1149 .init = atmel_sha_init,
1150 .update = atmel_sha_update,
1151 .final = atmel_sha_final,
1152 .finup = atmel_sha_finup,
1153 .digest = atmel_sha_digest,
Cyrille Pitchencc831d32016-01-29 17:04:02 +01001154 .export = atmel_sha_export,
1155 .import = atmel_sha_import,
Nicolas Royerd4905b32013-02-20 17:10:26 +01001156 .halg = {
1157 .digestsize = SHA512_DIGEST_SIZE,
Cyrille Pitchen9c4274d2016-02-08 16:26:48 +01001158 .statesize = sizeof(struct atmel_sha_reqctx),
Nicolas Royerd4905b32013-02-20 17:10:26 +01001159 .base = {
1160 .cra_name = "sha512",
1161 .cra_driver_name = "atmel-sha512",
1162 .cra_priority = 100,
Svenning Sørensenbe95f0f2014-12-05 01:18:57 +01001163 .cra_flags = CRYPTO_ALG_ASYNC,
Nicolas Royerd4905b32013-02-20 17:10:26 +01001164 .cra_blocksize = SHA512_BLOCK_SIZE,
1165 .cra_ctxsize = sizeof(struct atmel_sha_ctx),
1166 .cra_alignmask = 0x3,
1167 .cra_module = THIS_MODULE,
1168 .cra_init = atmel_sha_cra_init,
Nicolas Royerd4905b32013-02-20 17:10:26 +01001169 }
1170 }
1171},
1172};
1173
Cyrille Pitchenf56809c2016-01-15 15:49:32 +01001174static void atmel_sha_queue_task(unsigned long data)
1175{
1176 struct atmel_sha_dev *dd = (struct atmel_sha_dev *)data;
1177
1178 atmel_sha_handle_queue(dd, NULL);
1179}
1180
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001181static void atmel_sha_done_task(unsigned long data)
1182{
1183 struct atmel_sha_dev *dd = (struct atmel_sha_dev *)data;
1184 int err = 0;
1185
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001186 if (SHA_FLAGS_CPU & dd->flags) {
1187 if (SHA_FLAGS_OUTPUT_READY & dd->flags) {
1188 dd->flags &= ~SHA_FLAGS_OUTPUT_READY;
1189 goto finish;
1190 }
1191 } else if (SHA_FLAGS_DMA_READY & dd->flags) {
1192 if (SHA_FLAGS_DMA_ACTIVE & dd->flags) {
1193 dd->flags &= ~SHA_FLAGS_DMA_ACTIVE;
1194 atmel_sha_update_dma_stop(dd);
1195 if (dd->err) {
1196 err = dd->err;
1197 goto finish;
1198 }
1199 }
1200 if (SHA_FLAGS_OUTPUT_READY & dd->flags) {
1201 /* hash or semi-hash ready */
1202 dd->flags &= ~(SHA_FLAGS_DMA_READY |
1203 SHA_FLAGS_OUTPUT_READY);
1204 err = atmel_sha_update_dma_start(dd);
1205 if (err != -EINPROGRESS)
1206 goto finish;
1207 }
1208 }
1209 return;
1210
1211finish:
1212 /* finish curent request */
1213 atmel_sha_finish_req(dd->req, err);
1214}
1215
1216static irqreturn_t atmel_sha_irq(int irq, void *dev_id)
1217{
1218 struct atmel_sha_dev *sha_dd = dev_id;
1219 u32 reg;
1220
1221 reg = atmel_sha_read(sha_dd, SHA_ISR);
1222 if (reg & atmel_sha_read(sha_dd, SHA_IMR)) {
1223 atmel_sha_write(sha_dd, SHA_IDR, reg);
1224 if (SHA_FLAGS_BUSY & sha_dd->flags) {
1225 sha_dd->flags |= SHA_FLAGS_OUTPUT_READY;
1226 if (!(SHA_FLAGS_CPU & sha_dd->flags))
1227 sha_dd->flags |= SHA_FLAGS_DMA_READY;
1228 tasklet_schedule(&sha_dd->done_task);
1229 } else {
1230 dev_warn(sha_dd->dev, "SHA interrupt when no active requests.\n");
1231 }
1232 return IRQ_HANDLED;
1233 }
1234
1235 return IRQ_NONE;
1236}
1237
1238static void atmel_sha_unregister_algs(struct atmel_sha_dev *dd)
1239{
1240 int i;
1241
Nicolas Royerd4905b32013-02-20 17:10:26 +01001242 for (i = 0; i < ARRAY_SIZE(sha_1_256_algs); i++)
1243 crypto_unregister_ahash(&sha_1_256_algs[i]);
1244
1245 if (dd->caps.has_sha224)
1246 crypto_unregister_ahash(&sha_224_alg);
1247
1248 if (dd->caps.has_sha_384_512) {
1249 for (i = 0; i < ARRAY_SIZE(sha_384_512_algs); i++)
1250 crypto_unregister_ahash(&sha_384_512_algs[i]);
1251 }
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001252}
1253
1254static int atmel_sha_register_algs(struct atmel_sha_dev *dd)
1255{
1256 int err, i, j;
1257
Nicolas Royerd4905b32013-02-20 17:10:26 +01001258 for (i = 0; i < ARRAY_SIZE(sha_1_256_algs); i++) {
1259 err = crypto_register_ahash(&sha_1_256_algs[i]);
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001260 if (err)
Nicolas Royerd4905b32013-02-20 17:10:26 +01001261 goto err_sha_1_256_algs;
1262 }
1263
1264 if (dd->caps.has_sha224) {
1265 err = crypto_register_ahash(&sha_224_alg);
1266 if (err)
1267 goto err_sha_224_algs;
1268 }
1269
1270 if (dd->caps.has_sha_384_512) {
1271 for (i = 0; i < ARRAY_SIZE(sha_384_512_algs); i++) {
1272 err = crypto_register_ahash(&sha_384_512_algs[i]);
1273 if (err)
1274 goto err_sha_384_512_algs;
1275 }
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001276 }
1277
1278 return 0;
1279
Nicolas Royerd4905b32013-02-20 17:10:26 +01001280err_sha_384_512_algs:
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001281 for (j = 0; j < i; j++)
Nicolas Royerd4905b32013-02-20 17:10:26 +01001282 crypto_unregister_ahash(&sha_384_512_algs[j]);
1283 crypto_unregister_ahash(&sha_224_alg);
1284err_sha_224_algs:
1285 i = ARRAY_SIZE(sha_1_256_algs);
1286err_sha_1_256_algs:
1287 for (j = 0; j < i; j++)
1288 crypto_unregister_ahash(&sha_1_256_algs[j]);
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001289
1290 return err;
1291}
1292
Nicolas Royerd4905b32013-02-20 17:10:26 +01001293static bool atmel_sha_filter(struct dma_chan *chan, void *slave)
1294{
1295 struct at_dma_slave *sl = slave;
1296
1297 if (sl && sl->dma_dev == chan->device->dev) {
1298 chan->private = sl;
1299 return true;
1300 } else {
1301 return false;
1302 }
1303}
1304
1305static int atmel_sha_dma_init(struct atmel_sha_dev *dd,
1306 struct crypto_platform_data *pdata)
1307{
1308 int err = -ENOMEM;
1309 dma_cap_mask_t mask_in;
1310
Nicolas Ferreabfe7ae2013-10-15 15:36:34 +02001311 /* Try to grab DMA channel */
1312 dma_cap_zero(mask_in);
1313 dma_cap_set(DMA_SLAVE, mask_in);
Nicolas Royerd4905b32013-02-20 17:10:26 +01001314
Nicolas Ferreabfe7ae2013-10-15 15:36:34 +02001315 dd->dma_lch_in.chan = dma_request_slave_channel_compat(mask_in,
1316 atmel_sha_filter, &pdata->dma_slave->rxdata, dd->dev, "tx");
1317 if (!dd->dma_lch_in.chan) {
1318 dev_warn(dd->dev, "no DMA channel available\n");
1319 return err;
Nicolas Royerd4905b32013-02-20 17:10:26 +01001320 }
1321
Nicolas Ferreabfe7ae2013-10-15 15:36:34 +02001322 dd->dma_lch_in.dma_conf.direction = DMA_MEM_TO_DEV;
1323 dd->dma_lch_in.dma_conf.dst_addr = dd->phys_base +
1324 SHA_REG_DIN(0);
1325 dd->dma_lch_in.dma_conf.src_maxburst = 1;
1326 dd->dma_lch_in.dma_conf.src_addr_width =
1327 DMA_SLAVE_BUSWIDTH_4_BYTES;
1328 dd->dma_lch_in.dma_conf.dst_maxburst = 1;
1329 dd->dma_lch_in.dma_conf.dst_addr_width =
1330 DMA_SLAVE_BUSWIDTH_4_BYTES;
1331 dd->dma_lch_in.dma_conf.device_fc = false;
1332
1333 return 0;
Nicolas Royerd4905b32013-02-20 17:10:26 +01001334}
1335
1336static void atmel_sha_dma_cleanup(struct atmel_sha_dev *dd)
1337{
1338 dma_release_channel(dd->dma_lch_in.chan);
1339}
1340
1341static void atmel_sha_get_cap(struct atmel_sha_dev *dd)
1342{
1343
1344 dd->caps.has_dma = 0;
1345 dd->caps.has_dualbuff = 0;
1346 dd->caps.has_sha224 = 0;
1347 dd->caps.has_sha_384_512 = 0;
Cyrille Pitchen7cee3502016-01-15 15:49:34 +01001348 dd->caps.has_uihv = 0;
Nicolas Royerd4905b32013-02-20 17:10:26 +01001349
1350 /* keep only major version number */
1351 switch (dd->hw_version & 0xff0) {
Cyrille Pitchen507c5cc2016-01-15 15:49:33 +01001352 case 0x510:
1353 dd->caps.has_dma = 1;
1354 dd->caps.has_dualbuff = 1;
1355 dd->caps.has_sha224 = 1;
1356 dd->caps.has_sha_384_512 = 1;
Cyrille Pitchen7cee3502016-01-15 15:49:34 +01001357 dd->caps.has_uihv = 1;
Cyrille Pitchen507c5cc2016-01-15 15:49:33 +01001358 break;
Leilei Zhao141824d2015-04-07 17:45:03 +08001359 case 0x420:
1360 dd->caps.has_dma = 1;
1361 dd->caps.has_dualbuff = 1;
1362 dd->caps.has_sha224 = 1;
1363 dd->caps.has_sha_384_512 = 1;
Cyrille Pitchen7cee3502016-01-15 15:49:34 +01001364 dd->caps.has_uihv = 1;
Leilei Zhao141824d2015-04-07 17:45:03 +08001365 break;
Nicolas Royerd4905b32013-02-20 17:10:26 +01001366 case 0x410:
1367 dd->caps.has_dma = 1;
1368 dd->caps.has_dualbuff = 1;
1369 dd->caps.has_sha224 = 1;
1370 dd->caps.has_sha_384_512 = 1;
1371 break;
1372 case 0x400:
1373 dd->caps.has_dma = 1;
1374 dd->caps.has_dualbuff = 1;
1375 dd->caps.has_sha224 = 1;
1376 break;
1377 case 0x320:
1378 break;
1379 default:
1380 dev_warn(dd->dev,
1381 "Unmanaged sha version, set minimum capabilities\n");
1382 break;
1383 }
1384}
1385
Nicolas Ferreabfe7ae2013-10-15 15:36:34 +02001386#if defined(CONFIG_OF)
1387static const struct of_device_id atmel_sha_dt_ids[] = {
1388 { .compatible = "atmel,at91sam9g46-sha" },
1389 { /* sentinel */ }
1390};
1391
1392MODULE_DEVICE_TABLE(of, atmel_sha_dt_ids);
1393
1394static struct crypto_platform_data *atmel_sha_of_init(struct platform_device *pdev)
1395{
1396 struct device_node *np = pdev->dev.of_node;
1397 struct crypto_platform_data *pdata;
1398
1399 if (!np) {
1400 dev_err(&pdev->dev, "device node not found\n");
1401 return ERR_PTR(-EINVAL);
1402 }
1403
1404 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
1405 if (!pdata) {
1406 dev_err(&pdev->dev, "could not allocate memory for pdata\n");
1407 return ERR_PTR(-ENOMEM);
1408 }
1409
1410 pdata->dma_slave = devm_kzalloc(&pdev->dev,
1411 sizeof(*(pdata->dma_slave)),
1412 GFP_KERNEL);
1413 if (!pdata->dma_slave) {
1414 dev_err(&pdev->dev, "could not allocate memory for dma_slave\n");
Nicolas Ferreabfe7ae2013-10-15 15:36:34 +02001415 return ERR_PTR(-ENOMEM);
1416 }
1417
1418 return pdata;
1419}
1420#else /* CONFIG_OF */
1421static inline struct crypto_platform_data *atmel_sha_of_init(struct platform_device *dev)
1422{
1423 return ERR_PTR(-EINVAL);
1424}
1425#endif
1426
Greg Kroah-Hartman49cfe4d2012-12-21 13:14:09 -08001427static int atmel_sha_probe(struct platform_device *pdev)
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001428{
1429 struct atmel_sha_dev *sha_dd;
Nicolas Royerd4905b32013-02-20 17:10:26 +01001430 struct crypto_platform_data *pdata;
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001431 struct device *dev = &pdev->dev;
1432 struct resource *sha_res;
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001433 int err;
1434
LABBE Corentinb0e8b342015-10-12 19:47:03 +02001435 sha_dd = devm_kzalloc(&pdev->dev, sizeof(*sha_dd), GFP_KERNEL);
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001436 if (sha_dd == NULL) {
1437 dev_err(dev, "unable to alloc data struct.\n");
1438 err = -ENOMEM;
1439 goto sha_dd_err;
1440 }
1441
1442 sha_dd->dev = dev;
1443
1444 platform_set_drvdata(pdev, sha_dd);
1445
1446 INIT_LIST_HEAD(&sha_dd->list);
Leilei Zhao62728e82015-04-07 17:45:06 +08001447 spin_lock_init(&sha_dd->lock);
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001448
1449 tasklet_init(&sha_dd->done_task, atmel_sha_done_task,
1450 (unsigned long)sha_dd);
Cyrille Pitchenf56809c2016-01-15 15:49:32 +01001451 tasklet_init(&sha_dd->queue_task, atmel_sha_queue_task,
1452 (unsigned long)sha_dd);
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001453
1454 crypto_init_queue(&sha_dd->queue, ATMEL_SHA_QUEUE_LENGTH);
1455
1456 sha_dd->irq = -1;
1457
1458 /* Get the base address */
1459 sha_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1460 if (!sha_res) {
1461 dev_err(dev, "no MEM resource info\n");
1462 err = -ENODEV;
1463 goto res_err;
1464 }
1465 sha_dd->phys_base = sha_res->start;
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001466
1467 /* Get the IRQ */
1468 sha_dd->irq = platform_get_irq(pdev, 0);
1469 if (sha_dd->irq < 0) {
1470 dev_err(dev, "no IRQ resource info\n");
1471 err = sha_dd->irq;
1472 goto res_err;
1473 }
1474
LABBE Corentinb0e8b342015-10-12 19:47:03 +02001475 err = devm_request_irq(&pdev->dev, sha_dd->irq, atmel_sha_irq,
1476 IRQF_SHARED, "atmel-sha", sha_dd);
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001477 if (err) {
1478 dev_err(dev, "unable to request sha irq.\n");
1479 goto res_err;
1480 }
1481
1482 /* Initializing the clock */
LABBE Corentinb0e8b342015-10-12 19:47:03 +02001483 sha_dd->iclk = devm_clk_get(&pdev->dev, "sha_clk");
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001484 if (IS_ERR(sha_dd->iclk)) {
Colin Ian Kingbe208352015-02-28 20:40:10 +00001485 dev_err(dev, "clock initialization failed.\n");
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001486 err = PTR_ERR(sha_dd->iclk);
LABBE Corentinb0e8b342015-10-12 19:47:03 +02001487 goto res_err;
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001488 }
1489
LABBE Corentinb0e8b342015-10-12 19:47:03 +02001490 sha_dd->io_base = devm_ioremap_resource(&pdev->dev, sha_res);
Vladimir Zapolskiy9b52d552016-03-06 03:21:52 +02001491 if (IS_ERR(sha_dd->io_base)) {
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001492 dev_err(dev, "can't ioremap\n");
Vladimir Zapolskiy9b52d552016-03-06 03:21:52 +02001493 err = PTR_ERR(sha_dd->io_base);
LABBE Corentinb0e8b342015-10-12 19:47:03 +02001494 goto res_err;
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001495 }
1496
Cyrille Pitchenc0330422016-02-05 13:45:13 +01001497 err = clk_prepare(sha_dd->iclk);
1498 if (err)
1499 goto res_err;
1500
Nicolas Royerd4905b32013-02-20 17:10:26 +01001501 atmel_sha_hw_version_init(sha_dd);
1502
1503 atmel_sha_get_cap(sha_dd);
1504
1505 if (sha_dd->caps.has_dma) {
1506 pdata = pdev->dev.platform_data;
1507 if (!pdata) {
Nicolas Ferreabfe7ae2013-10-15 15:36:34 +02001508 pdata = atmel_sha_of_init(pdev);
1509 if (IS_ERR(pdata)) {
1510 dev_err(&pdev->dev, "platform data not available\n");
1511 err = PTR_ERR(pdata);
Cyrille Pitchenc0330422016-02-05 13:45:13 +01001512 goto iclk_unprepare;
Nicolas Ferreabfe7ae2013-10-15 15:36:34 +02001513 }
1514 }
1515 if (!pdata->dma_slave) {
Nicolas Royerd4905b32013-02-20 17:10:26 +01001516 err = -ENXIO;
Cyrille Pitchenc0330422016-02-05 13:45:13 +01001517 goto iclk_unprepare;
Nicolas Royerd4905b32013-02-20 17:10:26 +01001518 }
1519 err = atmel_sha_dma_init(sha_dd, pdata);
1520 if (err)
1521 goto err_sha_dma;
Nicolas Ferreabfe7ae2013-10-15 15:36:34 +02001522
1523 dev_info(dev, "using %s for DMA transfers\n",
1524 dma_chan_name(sha_dd->dma_lch_in.chan));
Nicolas Royerd4905b32013-02-20 17:10:26 +01001525 }
1526
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001527 spin_lock(&atmel_sha.lock);
1528 list_add_tail(&sha_dd->list, &atmel_sha.dev_list);
1529 spin_unlock(&atmel_sha.lock);
1530
1531 err = atmel_sha_register_algs(sha_dd);
1532 if (err)
1533 goto err_algs;
1534
Nicolas Ferre1ca5b7d2013-10-15 16:37:44 +02001535 dev_info(dev, "Atmel SHA1/SHA256%s%s\n",
1536 sha_dd->caps.has_sha224 ? "/SHA224" : "",
1537 sha_dd->caps.has_sha_384_512 ? "/SHA384/SHA512" : "");
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001538
1539 return 0;
1540
1541err_algs:
1542 spin_lock(&atmel_sha.lock);
1543 list_del(&sha_dd->list);
1544 spin_unlock(&atmel_sha.lock);
Nicolas Royerd4905b32013-02-20 17:10:26 +01001545 if (sha_dd->caps.has_dma)
1546 atmel_sha_dma_cleanup(sha_dd);
1547err_sha_dma:
Cyrille Pitchenc0330422016-02-05 13:45:13 +01001548iclk_unprepare:
1549 clk_unprepare(sha_dd->iclk);
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001550res_err:
Cyrille Pitchenf56809c2016-01-15 15:49:32 +01001551 tasklet_kill(&sha_dd->queue_task);
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001552 tasklet_kill(&sha_dd->done_task);
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001553sha_dd_err:
1554 dev_err(dev, "initialization failed.\n");
1555
1556 return err;
1557}
1558
Greg Kroah-Hartman49cfe4d2012-12-21 13:14:09 -08001559static int atmel_sha_remove(struct platform_device *pdev)
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001560{
1561 static struct atmel_sha_dev *sha_dd;
1562
1563 sha_dd = platform_get_drvdata(pdev);
1564 if (!sha_dd)
1565 return -ENODEV;
1566 spin_lock(&atmel_sha.lock);
1567 list_del(&sha_dd->list);
1568 spin_unlock(&atmel_sha.lock);
1569
1570 atmel_sha_unregister_algs(sha_dd);
1571
Cyrille Pitchenf56809c2016-01-15 15:49:32 +01001572 tasklet_kill(&sha_dd->queue_task);
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001573 tasklet_kill(&sha_dd->done_task);
1574
Nicolas Royerd4905b32013-02-20 17:10:26 +01001575 if (sha_dd->caps.has_dma)
1576 atmel_sha_dma_cleanup(sha_dd);
1577
Cyrille Pitchenc0330422016-02-05 13:45:13 +01001578 clk_unprepare(sha_dd->iclk);
1579
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001580 return 0;
1581}
1582
1583static struct platform_driver atmel_sha_driver = {
1584 .probe = atmel_sha_probe,
Greg Kroah-Hartman49cfe4d2012-12-21 13:14:09 -08001585 .remove = atmel_sha_remove,
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001586 .driver = {
1587 .name = "atmel_sha",
Nicolas Ferreabfe7ae2013-10-15 15:36:34 +02001588 .of_match_table = of_match_ptr(atmel_sha_dt_ids),
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001589 },
1590};
1591
1592module_platform_driver(atmel_sha_driver);
1593
Nicolas Royerd4905b32013-02-20 17:10:26 +01001594MODULE_DESCRIPTION("Atmel SHA (1/256/224/384/512) hw acceleration support.");
Nicolas Royerebc82ef2012-07-01 19:19:46 +02001595MODULE_LICENSE("GPL v2");
1596MODULE_AUTHOR("Nicolas Royer - Eukréa Electromatique");