blob: d8453029303640d101cbce1623299dec79b9e53d [file] [log] [blame]
Thomas Gleixnerfcaf2032019-05-27 08:55:08 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Marek Vasut15b59e72013-12-10 20:26:21 +01002/*
3 * Freescale i.MX23/i.MX28 Data Co-Processor driver
4 *
5 * Copyright (C) 2013 Marek Vasut <marex@denx.de>
Marek Vasut15b59e72013-12-10 20:26:21 +01006 */
7
Marek Vasut15b59e72013-12-10 20:26:21 +01008#include <linux/dma-mapping.h>
9#include <linux/interrupt.h>
10#include <linux/io.h>
11#include <linux/kernel.h>
12#include <linux/kthread.h>
13#include <linux/module.h>
14#include <linux/of.h>
15#include <linux/platform_device.h>
16#include <linux/stmp_device.h>
Leonard Crestez57f00282018-11-07 15:33:32 +000017#include <linux/clk.h>
Marek Vasut15b59e72013-12-10 20:26:21 +010018
19#include <crypto/aes.h>
20#include <crypto/sha.h>
21#include <crypto/internal/hash.h>
Herbert Xu29406bb92016-06-29 18:04:02 +080022#include <crypto/internal/skcipher.h>
Rosioru Dragosfa034812020-02-25 17:05:52 +020023#include <crypto/scatterwalk.h>
Marek Vasut15b59e72013-12-10 20:26:21 +010024
25#define DCP_MAX_CHANS 4
26#define DCP_BUF_SZ PAGE_SIZE
Radu Soleac709eeb2018-10-02 19:01:50 +000027#define DCP_SHA_PAY_SZ 64
Marek Vasut15b59e72013-12-10 20:26:21 +010028
Marek Vasut1a7c6852014-03-03 01:23:15 +010029#define DCP_ALIGNMENT 64
30
Radu Soleac709eeb2018-10-02 19:01:50 +000031/*
32 * Null hashes to align with hw behavior on imx6sl and ull
33 * these are flipped for consistency with hw output
34 */
Wei Yongjunce4e4582018-10-11 01:49:48 +000035static const uint8_t sha1_null_hash[] =
Radu Soleac709eeb2018-10-02 19:01:50 +000036 "\x09\x07\xd8\xaf\x90\x18\x60\x95\xef\xbf"
37 "\x55\x32\x0d\x4b\x6b\x5e\xee\xa3\x39\xda";
38
Wei Yongjunce4e4582018-10-11 01:49:48 +000039static const uint8_t sha256_null_hash[] =
Radu Soleac709eeb2018-10-02 19:01:50 +000040 "\x55\xb8\x52\x78\x1b\x99\x95\xa4"
41 "\x4c\x93\x9b\x64\xe4\x41\xae\x27"
42 "\x24\xb9\x6f\x99\xc8\xf4\xfb\x9a"
43 "\x14\x1c\xfc\x98\x42\xc4\xb0\xe3";
44
Marek Vasut15b59e72013-12-10 20:26:21 +010045/* DCP DMA descriptor. */
46struct dcp_dma_desc {
47 uint32_t next_cmd_addr;
48 uint32_t control0;
49 uint32_t control1;
50 uint32_t source;
51 uint32_t destination;
52 uint32_t size;
53 uint32_t payload;
54 uint32_t status;
55};
56
57/* Coherent aligned block for bounce buffering. */
58struct dcp_coherent_block {
59 uint8_t aes_in_buf[DCP_BUF_SZ];
60 uint8_t aes_out_buf[DCP_BUF_SZ];
61 uint8_t sha_in_buf[DCP_BUF_SZ];
Radu Soleac709eeb2018-10-02 19:01:50 +000062 uint8_t sha_out_buf[DCP_SHA_PAY_SZ];
Marek Vasut15b59e72013-12-10 20:26:21 +010063
64 uint8_t aes_key[2 * AES_KEYSIZE_128];
Marek Vasut15b59e72013-12-10 20:26:21 +010065
66 struct dcp_dma_desc desc[DCP_MAX_CHANS];
67};
68
69struct dcp {
70 struct device *dev;
71 void __iomem *base;
72
73 uint32_t caps;
74
75 struct dcp_coherent_block *coh;
76
77 struct completion completion[DCP_MAX_CHANS];
Leonard Crestezd80771c2018-09-21 18:03:18 +030078 spinlock_t lock[DCP_MAX_CHANS];
Marek Vasut15b59e72013-12-10 20:26:21 +010079 struct task_struct *thread[DCP_MAX_CHANS];
80 struct crypto_queue queue[DCP_MAX_CHANS];
Leonard Crestez57f00282018-11-07 15:33:32 +000081 struct clk *dcp_clk;
Marek Vasut15b59e72013-12-10 20:26:21 +010082};
83
84enum dcp_chan {
85 DCP_CHAN_HASH_SHA = 0,
86 DCP_CHAN_CRYPTO = 2,
87};
88
89struct dcp_async_ctx {
90 /* Common context */
91 enum dcp_chan chan;
92 uint32_t fill;
93
94 /* SHA Hash-specific context */
95 struct mutex mutex;
96 uint32_t alg;
97 unsigned int hot:1;
98
99 /* Crypto-specific context */
Kees Cookf805f592018-09-18 19:10:57 -0700100 struct crypto_sync_skcipher *fallback;
Marek Vasut15b59e72013-12-10 20:26:21 +0100101 unsigned int key_len;
102 uint8_t key[AES_KEYSIZE_128];
103};
104
Marek Vasut2021aba2014-01-14 18:31:01 +0100105struct dcp_aes_req_ctx {
106 unsigned int enc:1;
107 unsigned int ecb:1;
108};
109
Marek Vasut15b59e72013-12-10 20:26:21 +0100110struct dcp_sha_req_ctx {
111 unsigned int init:1;
112 unsigned int fini:1;
113};
114
Dan Douglassea9e7562018-10-02 19:01:48 +0000115struct dcp_export_state {
116 struct dcp_sha_req_ctx req_ctx;
117 struct dcp_async_ctx async_ctx;
118};
119
Marek Vasut15b59e72013-12-10 20:26:21 +0100120/*
121 * There can even be only one instance of the MXS DCP due to the
122 * design of Linux Crypto API.
123 */
124static struct dcp *global_sdcp;
Marek Vasut15b59e72013-12-10 20:26:21 +0100125
126/* DCP register layout. */
127#define MXS_DCP_CTRL 0x00
128#define MXS_DCP_CTRL_GATHER_RESIDUAL_WRITES (1 << 23)
129#define MXS_DCP_CTRL_ENABLE_CONTEXT_CACHING (1 << 22)
130
131#define MXS_DCP_STAT 0x10
132#define MXS_DCP_STAT_CLR 0x18
133#define MXS_DCP_STAT_IRQ_MASK 0xf
134
135#define MXS_DCP_CHANNELCTRL 0x20
136#define MXS_DCP_CHANNELCTRL_ENABLE_CHANNEL_MASK 0xff
137
138#define MXS_DCP_CAPABILITY1 0x40
139#define MXS_DCP_CAPABILITY1_SHA256 (4 << 16)
140#define MXS_DCP_CAPABILITY1_SHA1 (1 << 16)
141#define MXS_DCP_CAPABILITY1_AES128 (1 << 0)
142
143#define MXS_DCP_CONTEXT 0x50
144
145#define MXS_DCP_CH_N_CMDPTR(n) (0x100 + ((n) * 0x40))
146
147#define MXS_DCP_CH_N_SEMA(n) (0x110 + ((n) * 0x40))
148
149#define MXS_DCP_CH_N_STAT(n) (0x120 + ((n) * 0x40))
150#define MXS_DCP_CH_N_STAT_CLR(n) (0x128 + ((n) * 0x40))
151
152/* DMA descriptor bits. */
153#define MXS_DCP_CONTROL0_HASH_TERM (1 << 13)
154#define MXS_DCP_CONTROL0_HASH_INIT (1 << 12)
155#define MXS_DCP_CONTROL0_PAYLOAD_KEY (1 << 11)
156#define MXS_DCP_CONTROL0_CIPHER_ENCRYPT (1 << 8)
157#define MXS_DCP_CONTROL0_CIPHER_INIT (1 << 9)
158#define MXS_DCP_CONTROL0_ENABLE_HASH (1 << 6)
159#define MXS_DCP_CONTROL0_ENABLE_CIPHER (1 << 5)
160#define MXS_DCP_CONTROL0_DECR_SEMAPHORE (1 << 1)
161#define MXS_DCP_CONTROL0_INTERRUPT (1 << 0)
162
163#define MXS_DCP_CONTROL1_HASH_SELECT_SHA256 (2 << 16)
164#define MXS_DCP_CONTROL1_HASH_SELECT_SHA1 (0 << 16)
165#define MXS_DCP_CONTROL1_CIPHER_MODE_CBC (1 << 4)
166#define MXS_DCP_CONTROL1_CIPHER_MODE_ECB (0 << 4)
167#define MXS_DCP_CONTROL1_CIPHER_SELECT_AES128 (0 << 0)
168
169static int mxs_dcp_start_dma(struct dcp_async_ctx *actx)
170{
171 struct dcp *sdcp = global_sdcp;
172 const int chan = actx->chan;
173 uint32_t stat;
Nicholas Mc Guiredd0fff82015-02-07 03:09:41 -0500174 unsigned long ret;
Marek Vasut15b59e72013-12-10 20:26:21 +0100175 struct dcp_dma_desc *desc = &sdcp->coh->desc[actx->chan];
176
177 dma_addr_t desc_phys = dma_map_single(sdcp->dev, desc, sizeof(*desc),
178 DMA_TO_DEVICE);
179
180 reinit_completion(&sdcp->completion[chan]);
181
182 /* Clear status register. */
183 writel(0xffffffff, sdcp->base + MXS_DCP_CH_N_STAT_CLR(chan));
184
185 /* Load the DMA descriptor. */
186 writel(desc_phys, sdcp->base + MXS_DCP_CH_N_CMDPTR(chan));
187
188 /* Increment the semaphore to start the DMA transfer. */
189 writel(1, sdcp->base + MXS_DCP_CH_N_SEMA(chan));
190
191 ret = wait_for_completion_timeout(&sdcp->completion[chan],
192 msecs_to_jiffies(1000));
193 if (!ret) {
194 dev_err(sdcp->dev, "Channel %i timeout (DCP_STAT=0x%08x)\n",
195 chan, readl(sdcp->base + MXS_DCP_STAT));
196 return -ETIMEDOUT;
197 }
198
199 stat = readl(sdcp->base + MXS_DCP_CH_N_STAT(chan));
200 if (stat & 0xff) {
201 dev_err(sdcp->dev, "Channel %i error (CH_STAT=0x%08x)\n",
202 chan, stat);
203 return -EINVAL;
204 }
205
206 dma_unmap_single(sdcp->dev, desc_phys, sizeof(*desc), DMA_TO_DEVICE);
207
208 return 0;
209}
210
211/*
212 * Encryption (AES128)
213 */
Marek Vasut2021aba2014-01-14 18:31:01 +0100214static int mxs_dcp_run_aes(struct dcp_async_ctx *actx,
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100215 struct skcipher_request *req, int init)
Marek Vasut15b59e72013-12-10 20:26:21 +0100216{
217 struct dcp *sdcp = global_sdcp;
218 struct dcp_dma_desc *desc = &sdcp->coh->desc[actx->chan];
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100219 struct dcp_aes_req_ctx *rctx = skcipher_request_ctx(req);
Marek Vasut15b59e72013-12-10 20:26:21 +0100220 int ret;
221
222 dma_addr_t key_phys = dma_map_single(sdcp->dev, sdcp->coh->aes_key,
223 2 * AES_KEYSIZE_128,
224 DMA_TO_DEVICE);
225 dma_addr_t src_phys = dma_map_single(sdcp->dev, sdcp->coh->aes_in_buf,
226 DCP_BUF_SZ, DMA_TO_DEVICE);
227 dma_addr_t dst_phys = dma_map_single(sdcp->dev, sdcp->coh->aes_out_buf,
228 DCP_BUF_SZ, DMA_FROM_DEVICE);
229
Radu Soleafadd7a62018-10-02 19:01:52 +0000230 if (actx->fill % AES_BLOCK_SIZE) {
231 dev_err(sdcp->dev, "Invalid block size!\n");
232 ret = -EINVAL;
233 goto aes_done_run;
234 }
235
Marek Vasut15b59e72013-12-10 20:26:21 +0100236 /* Fill in the DMA descriptor. */
237 desc->control0 = MXS_DCP_CONTROL0_DECR_SEMAPHORE |
238 MXS_DCP_CONTROL0_INTERRUPT |
239 MXS_DCP_CONTROL0_ENABLE_CIPHER;
240
241 /* Payload contains the key. */
242 desc->control0 |= MXS_DCP_CONTROL0_PAYLOAD_KEY;
243
Marek Vasut2021aba2014-01-14 18:31:01 +0100244 if (rctx->enc)
Marek Vasut15b59e72013-12-10 20:26:21 +0100245 desc->control0 |= MXS_DCP_CONTROL0_CIPHER_ENCRYPT;
246 if (init)
247 desc->control0 |= MXS_DCP_CONTROL0_CIPHER_INIT;
248
249 desc->control1 = MXS_DCP_CONTROL1_CIPHER_SELECT_AES128;
250
Marek Vasut2021aba2014-01-14 18:31:01 +0100251 if (rctx->ecb)
Marek Vasut15b59e72013-12-10 20:26:21 +0100252 desc->control1 |= MXS_DCP_CONTROL1_CIPHER_MODE_ECB;
253 else
254 desc->control1 |= MXS_DCP_CONTROL1_CIPHER_MODE_CBC;
255
256 desc->next_cmd_addr = 0;
257 desc->source = src_phys;
258 desc->destination = dst_phys;
259 desc->size = actx->fill;
260 desc->payload = key_phys;
261 desc->status = 0;
262
263 ret = mxs_dcp_start_dma(actx);
264
Radu Soleafadd7a62018-10-02 19:01:52 +0000265aes_done_run:
Marek Vasut15b59e72013-12-10 20:26:21 +0100266 dma_unmap_single(sdcp->dev, key_phys, 2 * AES_KEYSIZE_128,
267 DMA_TO_DEVICE);
268 dma_unmap_single(sdcp->dev, src_phys, DCP_BUF_SZ, DMA_TO_DEVICE);
269 dma_unmap_single(sdcp->dev, dst_phys, DCP_BUF_SZ, DMA_FROM_DEVICE);
270
271 return ret;
272}
273
274static int mxs_dcp_aes_block_crypt(struct crypto_async_request *arq)
275{
276 struct dcp *sdcp = global_sdcp;
277
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100278 struct skcipher_request *req = skcipher_request_cast(arq);
Marek Vasut15b59e72013-12-10 20:26:21 +0100279 struct dcp_async_ctx *actx = crypto_tfm_ctx(arq->tfm);
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100280 struct dcp_aes_req_ctx *rctx = skcipher_request_ctx(req);
Marek Vasut15b59e72013-12-10 20:26:21 +0100281
282 struct scatterlist *dst = req->dst;
283 struct scatterlist *src = req->src;
284 const int nents = sg_nents(req->src);
285
286 const int out_off = DCP_BUF_SZ;
287 uint8_t *in_buf = sdcp->coh->aes_in_buf;
288 uint8_t *out_buf = sdcp->coh->aes_out_buf;
289
290 uint8_t *out_tmp, *src_buf, *dst_buf = NULL;
291 uint32_t dst_off = 0;
Radu Soleafadd7a62018-10-02 19:01:52 +0000292 uint32_t last_out_len = 0;
Marek Vasut15b59e72013-12-10 20:26:21 +0100293
294 uint8_t *key = sdcp->coh->aes_key;
295
296 int ret = 0;
297 int split = 0;
Radu Soleafadd7a62018-10-02 19:01:52 +0000298 unsigned int i, len, clen, rem = 0, tlen = 0;
Marek Vasut15b59e72013-12-10 20:26:21 +0100299 int init = 0;
Radu Soleafadd7a62018-10-02 19:01:52 +0000300 bool limit_hit = false;
Marek Vasut15b59e72013-12-10 20:26:21 +0100301
302 actx->fill = 0;
303
304 /* Copy the key from the temporary location. */
305 memcpy(key, actx->key, actx->key_len);
306
Marek Vasut2021aba2014-01-14 18:31:01 +0100307 if (!rctx->ecb) {
Marek Vasut15b59e72013-12-10 20:26:21 +0100308 /* Copy the CBC IV just past the key. */
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100309 memcpy(key + AES_KEYSIZE_128, req->iv, AES_KEYSIZE_128);
Marek Vasut15b59e72013-12-10 20:26:21 +0100310 /* CBC needs the INIT set. */
311 init = 1;
312 } else {
313 memset(key + AES_KEYSIZE_128, 0, AES_KEYSIZE_128);
314 }
315
316 for_each_sg(req->src, src, nents, i) {
317 src_buf = sg_virt(src);
318 len = sg_dma_len(src);
Radu Soleafadd7a62018-10-02 19:01:52 +0000319 tlen += len;
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100320 limit_hit = tlen > req->cryptlen;
Radu Soleafadd7a62018-10-02 19:01:52 +0000321
322 if (limit_hit)
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100323 len = req->cryptlen - (tlen - len);
Marek Vasut15b59e72013-12-10 20:26:21 +0100324
325 do {
326 if (actx->fill + len > out_off)
327 clen = out_off - actx->fill;
328 else
329 clen = len;
330
331 memcpy(in_buf + actx->fill, src_buf, clen);
332 len -= clen;
333 src_buf += clen;
334 actx->fill += clen;
335
336 /*
337 * If we filled the buffer or this is the last SG,
338 * submit the buffer.
339 */
Radu Soleafadd7a62018-10-02 19:01:52 +0000340 if (actx->fill == out_off || sg_is_last(src) ||
341 limit_hit) {
Marek Vasut2021aba2014-01-14 18:31:01 +0100342 ret = mxs_dcp_run_aes(actx, req, init);
Marek Vasut15b59e72013-12-10 20:26:21 +0100343 if (ret)
344 return ret;
345 init = 0;
346
347 out_tmp = out_buf;
Radu Soleafadd7a62018-10-02 19:01:52 +0000348 last_out_len = actx->fill;
Marek Vasut15b59e72013-12-10 20:26:21 +0100349 while (dst && actx->fill) {
350 if (!split) {
351 dst_buf = sg_virt(dst);
352 dst_off = 0;
353 }
354 rem = min(sg_dma_len(dst) - dst_off,
355 actx->fill);
356
357 memcpy(dst_buf + dst_off, out_tmp, rem);
358 out_tmp += rem;
359 dst_off += rem;
360 actx->fill -= rem;
361
362 if (dst_off == sg_dma_len(dst)) {
363 dst = sg_next(dst);
364 split = 0;
365 } else {
366 split = 1;
367 }
368 }
369 }
370 } while (len);
Radu Soleafadd7a62018-10-02 19:01:52 +0000371
372 if (limit_hit)
373 break;
374 }
375
376 /* Copy the IV for CBC for chaining */
377 if (!rctx->ecb) {
378 if (rctx->enc)
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100379 memcpy(req->iv, out_buf+(last_out_len-AES_BLOCK_SIZE),
Radu Soleafadd7a62018-10-02 19:01:52 +0000380 AES_BLOCK_SIZE);
381 else
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100382 memcpy(req->iv, in_buf+(last_out_len-AES_BLOCK_SIZE),
Radu Soleafadd7a62018-10-02 19:01:52 +0000383 AES_BLOCK_SIZE);
Marek Vasut15b59e72013-12-10 20:26:21 +0100384 }
385
386 return ret;
387}
388
389static int dcp_chan_thread_aes(void *data)
390{
391 struct dcp *sdcp = global_sdcp;
392 const int chan = DCP_CHAN_CRYPTO;
393
394 struct crypto_async_request *backlog;
395 struct crypto_async_request *arq;
396
397 int ret;
398
Leonard Crestezd80771c2018-09-21 18:03:18 +0300399 while (!kthread_should_stop()) {
400 set_current_state(TASK_INTERRUPTIBLE);
Marek Vasut15b59e72013-12-10 20:26:21 +0100401
Leonard Crestezd80771c2018-09-21 18:03:18 +0300402 spin_lock(&sdcp->lock[chan]);
Marek Vasut15b59e72013-12-10 20:26:21 +0100403 backlog = crypto_get_backlog(&sdcp->queue[chan]);
404 arq = crypto_dequeue_request(&sdcp->queue[chan]);
Leonard Crestezd80771c2018-09-21 18:03:18 +0300405 spin_unlock(&sdcp->lock[chan]);
406
407 if (!backlog && !arq) {
408 schedule();
409 continue;
410 }
411
412 set_current_state(TASK_RUNNING);
Marek Vasut15b59e72013-12-10 20:26:21 +0100413
414 if (backlog)
415 backlog->complete(backlog, -EINPROGRESS);
416
417 if (arq) {
418 ret = mxs_dcp_aes_block_crypt(arq);
419 arq->complete(arq, ret);
Marek Vasut15b59e72013-12-10 20:26:21 +0100420 }
Leonard Crestezd80771c2018-09-21 18:03:18 +0300421 }
Marek Vasut15b59e72013-12-10 20:26:21 +0100422
423 return 0;
424}
425
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100426static int mxs_dcp_block_fallback(struct skcipher_request *req, int enc)
Marek Vasut15b59e72013-12-10 20:26:21 +0100427{
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100428 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
429 struct dcp_async_ctx *ctx = crypto_skcipher_ctx(tfm);
Kees Cookf805f592018-09-18 19:10:57 -0700430 SYNC_SKCIPHER_REQUEST_ON_STACK(subreq, ctx->fallback);
Marek Vasut15b59e72013-12-10 20:26:21 +0100431 int ret;
432
Kees Cookf805f592018-09-18 19:10:57 -0700433 skcipher_request_set_sync_tfm(subreq, ctx->fallback);
Herbert Xu29406bb92016-06-29 18:04:02 +0800434 skcipher_request_set_callback(subreq, req->base.flags, NULL, NULL);
435 skcipher_request_set_crypt(subreq, req->src, req->dst,
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100436 req->cryptlen, req->iv);
Marek Vasut15b59e72013-12-10 20:26:21 +0100437
438 if (enc)
Herbert Xu29406bb92016-06-29 18:04:02 +0800439 ret = crypto_skcipher_encrypt(subreq);
Marek Vasut15b59e72013-12-10 20:26:21 +0100440 else
Herbert Xu29406bb92016-06-29 18:04:02 +0800441 ret = crypto_skcipher_decrypt(subreq);
Marek Vasut15b59e72013-12-10 20:26:21 +0100442
Herbert Xu29406bb92016-06-29 18:04:02 +0800443 skcipher_request_zero(subreq);
Marek Vasut15b59e72013-12-10 20:26:21 +0100444
445 return ret;
446}
447
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100448static int mxs_dcp_aes_enqueue(struct skcipher_request *req, int enc, int ecb)
Marek Vasut15b59e72013-12-10 20:26:21 +0100449{
450 struct dcp *sdcp = global_sdcp;
451 struct crypto_async_request *arq = &req->base;
452 struct dcp_async_ctx *actx = crypto_tfm_ctx(arq->tfm);
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100453 struct dcp_aes_req_ctx *rctx = skcipher_request_ctx(req);
Marek Vasut15b59e72013-12-10 20:26:21 +0100454 int ret;
455
456 if (unlikely(actx->key_len != AES_KEYSIZE_128))
457 return mxs_dcp_block_fallback(req, enc);
458
Marek Vasut2021aba2014-01-14 18:31:01 +0100459 rctx->enc = enc;
460 rctx->ecb = ecb;
Marek Vasut15b59e72013-12-10 20:26:21 +0100461 actx->chan = DCP_CHAN_CRYPTO;
462
Leonard Crestezd80771c2018-09-21 18:03:18 +0300463 spin_lock(&sdcp->lock[actx->chan]);
Marek Vasut15b59e72013-12-10 20:26:21 +0100464 ret = crypto_enqueue_request(&sdcp->queue[actx->chan], &req->base);
Leonard Crestezd80771c2018-09-21 18:03:18 +0300465 spin_unlock(&sdcp->lock[actx->chan]);
Marek Vasut15b59e72013-12-10 20:26:21 +0100466
467 wake_up_process(sdcp->thread[actx->chan]);
468
YueHaibingdbbaffe2019-03-30 13:52:21 +0800469 return ret;
Marek Vasut15b59e72013-12-10 20:26:21 +0100470}
471
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100472static int mxs_dcp_aes_ecb_decrypt(struct skcipher_request *req)
Marek Vasut15b59e72013-12-10 20:26:21 +0100473{
474 return mxs_dcp_aes_enqueue(req, 0, 1);
475}
476
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100477static int mxs_dcp_aes_ecb_encrypt(struct skcipher_request *req)
Marek Vasut15b59e72013-12-10 20:26:21 +0100478{
479 return mxs_dcp_aes_enqueue(req, 1, 1);
480}
481
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100482static int mxs_dcp_aes_cbc_decrypt(struct skcipher_request *req)
Marek Vasut15b59e72013-12-10 20:26:21 +0100483{
484 return mxs_dcp_aes_enqueue(req, 0, 0);
485}
486
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100487static int mxs_dcp_aes_cbc_encrypt(struct skcipher_request *req)
Marek Vasut15b59e72013-12-10 20:26:21 +0100488{
489 return mxs_dcp_aes_enqueue(req, 1, 0);
490}
491
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100492static int mxs_dcp_aes_setkey(struct crypto_skcipher *tfm, const u8 *key,
Marek Vasut15b59e72013-12-10 20:26:21 +0100493 unsigned int len)
494{
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100495 struct dcp_async_ctx *actx = crypto_skcipher_ctx(tfm);
Marek Vasut15b59e72013-12-10 20:26:21 +0100496
497 /*
498 * AES 128 is supposed by the hardware, store key into temporary
499 * buffer and exit. We must use the temporary buffer here, since
500 * there can still be an operation in progress.
501 */
502 actx->key_len = len;
503 if (len == AES_KEYSIZE_128) {
504 memcpy(actx->key, key, len);
505 return 0;
506 }
507
Marek Vasut15b59e72013-12-10 20:26:21 +0100508 /*
509 * If the requested AES key size is not supported by the hardware,
510 * but is supported by in-kernel software implementation, we use
511 * software fallback.
512 */
Kees Cookf805f592018-09-18 19:10:57 -0700513 crypto_sync_skcipher_clear_flags(actx->fallback, CRYPTO_TFM_REQ_MASK);
514 crypto_sync_skcipher_set_flags(actx->fallback,
Herbert Xu29406bb92016-06-29 18:04:02 +0800515 tfm->base.crt_flags & CRYPTO_TFM_REQ_MASK);
Eric Biggersaf5034e2019-12-30 21:19:38 -0600516 return crypto_sync_skcipher_setkey(actx->fallback, key, len);
Marek Vasut15b59e72013-12-10 20:26:21 +0100517}
518
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100519static int mxs_dcp_aes_fallback_init_tfm(struct crypto_skcipher *tfm)
Marek Vasut15b59e72013-12-10 20:26:21 +0100520{
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100521 const char *name = crypto_tfm_alg_name(crypto_skcipher_tfm(tfm));
522 struct dcp_async_ctx *actx = crypto_skcipher_ctx(tfm);
Kees Cookf805f592018-09-18 19:10:57 -0700523 struct crypto_sync_skcipher *blk;
Marek Vasut15b59e72013-12-10 20:26:21 +0100524
Kees Cookf805f592018-09-18 19:10:57 -0700525 blk = crypto_alloc_sync_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK);
Marek Vasut15b59e72013-12-10 20:26:21 +0100526 if (IS_ERR(blk))
527 return PTR_ERR(blk);
528
529 actx->fallback = blk;
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100530 crypto_skcipher_set_reqsize(tfm, sizeof(struct dcp_aes_req_ctx));
Marek Vasut15b59e72013-12-10 20:26:21 +0100531 return 0;
532}
533
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100534static void mxs_dcp_aes_fallback_exit_tfm(struct crypto_skcipher *tfm)
Marek Vasut15b59e72013-12-10 20:26:21 +0100535{
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100536 struct dcp_async_ctx *actx = crypto_skcipher_ctx(tfm);
Marek Vasut15b59e72013-12-10 20:26:21 +0100537
Kees Cookf805f592018-09-18 19:10:57 -0700538 crypto_free_sync_skcipher(actx->fallback);
Marek Vasut15b59e72013-12-10 20:26:21 +0100539}
540
541/*
542 * Hashing (SHA1/SHA256)
543 */
544static int mxs_dcp_run_sha(struct ahash_request *req)
545{
546 struct dcp *sdcp = global_sdcp;
547 int ret;
548
549 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
550 struct dcp_async_ctx *actx = crypto_ahash_ctx(tfm);
551 struct dcp_sha_req_ctx *rctx = ahash_request_ctx(req);
Marek Vasut15b59e72013-12-10 20:26:21 +0100552 struct dcp_dma_desc *desc = &sdcp->coh->desc[actx->chan];
Marek Vasut15b59e72013-12-10 20:26:21 +0100553
Marek Vasut04d088c2014-03-03 13:40:30 +0100554 dma_addr_t digest_phys = 0;
Marek Vasut15b59e72013-12-10 20:26:21 +0100555 dma_addr_t buf_phys = dma_map_single(sdcp->dev, sdcp->coh->sha_in_buf,
556 DCP_BUF_SZ, DMA_TO_DEVICE);
557
558 /* Fill in the DMA descriptor. */
559 desc->control0 = MXS_DCP_CONTROL0_DECR_SEMAPHORE |
560 MXS_DCP_CONTROL0_INTERRUPT |
561 MXS_DCP_CONTROL0_ENABLE_HASH;
562 if (rctx->init)
563 desc->control0 |= MXS_DCP_CONTROL0_HASH_INIT;
564
565 desc->control1 = actx->alg;
566 desc->next_cmd_addr = 0;
567 desc->source = buf_phys;
568 desc->destination = 0;
569 desc->size = actx->fill;
570 desc->payload = 0;
571 desc->status = 0;
572
Radu Soleac709eeb2018-10-02 19:01:50 +0000573 /*
574 * Align driver with hw behavior when generating null hashes
575 */
576 if (rctx->init && rctx->fini && desc->size == 0) {
577 struct hash_alg_common *halg = crypto_hash_alg_common(tfm);
578 const uint8_t *sha_buf =
579 (actx->alg == MXS_DCP_CONTROL1_HASH_SELECT_SHA1) ?
580 sha1_null_hash : sha256_null_hash;
581 memcpy(sdcp->coh->sha_out_buf, sha_buf, halg->digestsize);
582 ret = 0;
583 goto done_run;
584 }
585
Marek Vasut15b59e72013-12-10 20:26:21 +0100586 /* Set HASH_TERM bit for last transfer block. */
587 if (rctx->fini) {
Radu Soleac709eeb2018-10-02 19:01:50 +0000588 digest_phys = dma_map_single(sdcp->dev, sdcp->coh->sha_out_buf,
589 DCP_SHA_PAY_SZ, DMA_FROM_DEVICE);
Marek Vasut15b59e72013-12-10 20:26:21 +0100590 desc->control0 |= MXS_DCP_CONTROL0_HASH_TERM;
591 desc->payload = digest_phys;
592 }
593
594 ret = mxs_dcp_start_dma(actx);
595
Marek Vasut04d088c2014-03-03 13:40:30 +0100596 if (rctx->fini)
Radu Soleac709eeb2018-10-02 19:01:50 +0000597 dma_unmap_single(sdcp->dev, digest_phys, DCP_SHA_PAY_SZ,
Marek Vasut04d088c2014-03-03 13:40:30 +0100598 DMA_FROM_DEVICE);
599
Radu Soleac709eeb2018-10-02 19:01:50 +0000600done_run:
Marek Vasut15b59e72013-12-10 20:26:21 +0100601 dma_unmap_single(sdcp->dev, buf_phys, DCP_BUF_SZ, DMA_TO_DEVICE);
602
603 return ret;
604}
605
606static int dcp_sha_req_to_buf(struct crypto_async_request *arq)
607{
608 struct dcp *sdcp = global_sdcp;
609
610 struct ahash_request *req = ahash_request_cast(arq);
611 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
612 struct dcp_async_ctx *actx = crypto_ahash_ctx(tfm);
613 struct dcp_sha_req_ctx *rctx = ahash_request_ctx(req);
614 struct hash_alg_common *halg = crypto_hash_alg_common(tfm);
Marek Vasut15b59e72013-12-10 20:26:21 +0100615
Marek Vasut15b59e72013-12-10 20:26:21 +0100616 uint8_t *in_buf = sdcp->coh->sha_in_buf;
Radu Soleac709eeb2018-10-02 19:01:50 +0000617 uint8_t *out_buf = sdcp->coh->sha_out_buf;
Marek Vasut15b59e72013-12-10 20:26:21 +0100618
Marek Vasut15b59e72013-12-10 20:26:21 +0100619 struct scatterlist *src;
620
Rosioru Dragosfa034812020-02-25 17:05:52 +0200621 unsigned int i, len, clen, oft = 0;
Marek Vasut15b59e72013-12-10 20:26:21 +0100622 int ret;
623
624 int fin = rctx->fini;
625 if (fin)
626 rctx->fini = 0;
627
Rosioru Dragosfa034812020-02-25 17:05:52 +0200628 src = req->src;
629 len = req->nbytes;
Marek Vasut15b59e72013-12-10 20:26:21 +0100630
Rosioru Dragosfa034812020-02-25 17:05:52 +0200631 while (len) {
632 if (actx->fill + len > DCP_BUF_SZ)
633 clen = DCP_BUF_SZ - actx->fill;
634 else
635 clen = len;
Marek Vasut15b59e72013-12-10 20:26:21 +0100636
Rosioru Dragosfa034812020-02-25 17:05:52 +0200637 scatterwalk_map_and_copy(in_buf + actx->fill, src, oft, clen,
638 0);
Marek Vasut15b59e72013-12-10 20:26:21 +0100639
Rosioru Dragosfa034812020-02-25 17:05:52 +0200640 len -= clen;
641 oft += clen;
642 actx->fill += clen;
643
644 /*
645 * If we filled the buffer and still have some
646 * more data, submit the buffer.
647 */
648 if (len && actx->fill == DCP_BUF_SZ) {
649 ret = mxs_dcp_run_sha(req);
650 if (ret)
651 return ret;
652 actx->fill = 0;
653 rctx->init = 0;
654 }
Marek Vasut15b59e72013-12-10 20:26:21 +0100655 }
656
657 if (fin) {
658 rctx->fini = 1;
659
660 /* Submit whatever is left. */
Marek Vasut04d088c2014-03-03 13:40:30 +0100661 if (!req->result)
662 return -EINVAL;
663
Marek Vasut15b59e72013-12-10 20:26:21 +0100664 ret = mxs_dcp_run_sha(req);
Marek Vasut04d088c2014-03-03 13:40:30 +0100665 if (ret)
Marek Vasut15b59e72013-12-10 20:26:21 +0100666 return ret;
Marek Vasut04d088c2014-03-03 13:40:30 +0100667
Marek Vasut15b59e72013-12-10 20:26:21 +0100668 actx->fill = 0;
669
Radu Soleac709eeb2018-10-02 19:01:50 +0000670 /* For some reason the result is flipped */
671 for (i = 0; i < halg->digestsize; i++)
672 req->result[i] = out_buf[halg->digestsize - i - 1];
Marek Vasut15b59e72013-12-10 20:26:21 +0100673 }
674
675 return 0;
676}
677
678static int dcp_chan_thread_sha(void *data)
679{
680 struct dcp *sdcp = global_sdcp;
681 const int chan = DCP_CHAN_HASH_SHA;
682
683 struct crypto_async_request *backlog;
684 struct crypto_async_request *arq;
YueHaibing11fe71f12019-04-10 02:47:42 +0000685 int ret;
Marek Vasut15b59e72013-12-10 20:26:21 +0100686
Leonard Crestezd80771c2018-09-21 18:03:18 +0300687 while (!kthread_should_stop()) {
688 set_current_state(TASK_INTERRUPTIBLE);
Marek Vasut15b59e72013-12-10 20:26:21 +0100689
Leonard Crestezd80771c2018-09-21 18:03:18 +0300690 spin_lock(&sdcp->lock[chan]);
Marek Vasut15b59e72013-12-10 20:26:21 +0100691 backlog = crypto_get_backlog(&sdcp->queue[chan]);
692 arq = crypto_dequeue_request(&sdcp->queue[chan]);
Leonard Crestezd80771c2018-09-21 18:03:18 +0300693 spin_unlock(&sdcp->lock[chan]);
694
695 if (!backlog && !arq) {
696 schedule();
697 continue;
698 }
699
700 set_current_state(TASK_RUNNING);
Marek Vasut15b59e72013-12-10 20:26:21 +0100701
702 if (backlog)
703 backlog->complete(backlog, -EINPROGRESS);
704
705 if (arq) {
Marek Vasut15b59e72013-12-10 20:26:21 +0100706 ret = dcp_sha_req_to_buf(arq);
Marek Vasut15b59e72013-12-10 20:26:21 +0100707 arq->complete(arq, ret);
Marek Vasut15b59e72013-12-10 20:26:21 +0100708 }
Leonard Crestezd80771c2018-09-21 18:03:18 +0300709 }
Marek Vasut15b59e72013-12-10 20:26:21 +0100710
711 return 0;
712}
713
714static int dcp_sha_init(struct ahash_request *req)
715{
716 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
717 struct dcp_async_ctx *actx = crypto_ahash_ctx(tfm);
718
719 struct hash_alg_common *halg = crypto_hash_alg_common(tfm);
720
721 /*
722 * Start hashing session. The code below only inits the
723 * hashing session context, nothing more.
724 */
725 memset(actx, 0, sizeof(*actx));
726
727 if (strcmp(halg->base.cra_name, "sha1") == 0)
728 actx->alg = MXS_DCP_CONTROL1_HASH_SELECT_SHA1;
729 else
730 actx->alg = MXS_DCP_CONTROL1_HASH_SELECT_SHA256;
731
732 actx->fill = 0;
733 actx->hot = 0;
734 actx->chan = DCP_CHAN_HASH_SHA;
735
736 mutex_init(&actx->mutex);
737
738 return 0;
739}
740
741static int dcp_sha_update_fx(struct ahash_request *req, int fini)
742{
743 struct dcp *sdcp = global_sdcp;
744
745 struct dcp_sha_req_ctx *rctx = ahash_request_ctx(req);
746 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
747 struct dcp_async_ctx *actx = crypto_ahash_ctx(tfm);
748
749 int ret;
750
751 /*
752 * Ignore requests that have no data in them and are not
753 * the trailing requests in the stream of requests.
754 */
755 if (!req->nbytes && !fini)
756 return 0;
757
758 mutex_lock(&actx->mutex);
759
760 rctx->fini = fini;
761
762 if (!actx->hot) {
763 actx->hot = 1;
764 rctx->init = 1;
765 }
766
Leonard Crestezd80771c2018-09-21 18:03:18 +0300767 spin_lock(&sdcp->lock[actx->chan]);
Marek Vasut15b59e72013-12-10 20:26:21 +0100768 ret = crypto_enqueue_request(&sdcp->queue[actx->chan], &req->base);
Leonard Crestezd80771c2018-09-21 18:03:18 +0300769 spin_unlock(&sdcp->lock[actx->chan]);
Marek Vasut15b59e72013-12-10 20:26:21 +0100770
771 wake_up_process(sdcp->thread[actx->chan]);
772 mutex_unlock(&actx->mutex);
773
YueHaibingdbbaffe2019-03-30 13:52:21 +0800774 return ret;
Marek Vasut15b59e72013-12-10 20:26:21 +0100775}
776
777static int dcp_sha_update(struct ahash_request *req)
778{
779 return dcp_sha_update_fx(req, 0);
780}
781
782static int dcp_sha_final(struct ahash_request *req)
783{
784 ahash_request_set_crypt(req, NULL, req->result, 0);
785 req->nbytes = 0;
786 return dcp_sha_update_fx(req, 1);
787}
788
789static int dcp_sha_finup(struct ahash_request *req)
790{
791 return dcp_sha_update_fx(req, 1);
792}
793
794static int dcp_sha_digest(struct ahash_request *req)
795{
796 int ret;
797
798 ret = dcp_sha_init(req);
799 if (ret)
800 return ret;
801
802 return dcp_sha_finup(req);
803}
804
Dan Douglassea9e7562018-10-02 19:01:48 +0000805static int dcp_sha_import(struct ahash_request *req, const void *in)
Kamil Konieczny9190b6f2018-01-18 19:34:00 +0100806{
Dan Douglassea9e7562018-10-02 19:01:48 +0000807 struct dcp_sha_req_ctx *rctx = ahash_request_ctx(req);
808 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
809 struct dcp_async_ctx *actx = crypto_ahash_ctx(tfm);
810 const struct dcp_export_state *export = in;
811
812 memset(rctx, 0, sizeof(struct dcp_sha_req_ctx));
813 memset(actx, 0, sizeof(struct dcp_async_ctx));
814 memcpy(rctx, &export->req_ctx, sizeof(struct dcp_sha_req_ctx));
815 memcpy(actx, &export->async_ctx, sizeof(struct dcp_async_ctx));
816
817 return 0;
Kamil Konieczny9190b6f2018-01-18 19:34:00 +0100818}
819
Dan Douglassea9e7562018-10-02 19:01:48 +0000820static int dcp_sha_export(struct ahash_request *req, void *out)
Kamil Konieczny9190b6f2018-01-18 19:34:00 +0100821{
Dan Douglassea9e7562018-10-02 19:01:48 +0000822 struct dcp_sha_req_ctx *rctx_state = ahash_request_ctx(req);
823 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
824 struct dcp_async_ctx *actx_state = crypto_ahash_ctx(tfm);
825 struct dcp_export_state *export = out;
826
827 memcpy(&export->req_ctx, rctx_state, sizeof(struct dcp_sha_req_ctx));
828 memcpy(&export->async_ctx, actx_state, sizeof(struct dcp_async_ctx));
829
830 return 0;
Kamil Konieczny9190b6f2018-01-18 19:34:00 +0100831}
832
Marek Vasut15b59e72013-12-10 20:26:21 +0100833static int dcp_sha_cra_init(struct crypto_tfm *tfm)
834{
835 crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm),
836 sizeof(struct dcp_sha_req_ctx));
837 return 0;
838}
839
840static void dcp_sha_cra_exit(struct crypto_tfm *tfm)
841{
842}
843
844/* AES 128 ECB and AES 128 CBC */
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100845static struct skcipher_alg dcp_aes_algs[] = {
Marek Vasut15b59e72013-12-10 20:26:21 +0100846 {
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100847 .base.cra_name = "ecb(aes)",
848 .base.cra_driver_name = "ecb-aes-dcp",
849 .base.cra_priority = 400,
850 .base.cra_alignmask = 15,
851 .base.cra_flags = CRYPTO_ALG_ASYNC |
Marek Vasut15b59e72013-12-10 20:26:21 +0100852 CRYPTO_ALG_NEED_FALLBACK,
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100853 .base.cra_blocksize = AES_BLOCK_SIZE,
854 .base.cra_ctxsize = sizeof(struct dcp_async_ctx),
855 .base.cra_module = THIS_MODULE,
856
857 .min_keysize = AES_MIN_KEY_SIZE,
858 .max_keysize = AES_MAX_KEY_SIZE,
859 .setkey = mxs_dcp_aes_setkey,
860 .encrypt = mxs_dcp_aes_ecb_encrypt,
861 .decrypt = mxs_dcp_aes_ecb_decrypt,
862 .init = mxs_dcp_aes_fallback_init_tfm,
863 .exit = mxs_dcp_aes_fallback_exit_tfm,
Marek Vasut15b59e72013-12-10 20:26:21 +0100864 }, {
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100865 .base.cra_name = "cbc(aes)",
866 .base.cra_driver_name = "cbc-aes-dcp",
867 .base.cra_priority = 400,
868 .base.cra_alignmask = 15,
869 .base.cra_flags = CRYPTO_ALG_ASYNC |
Marek Vasut15b59e72013-12-10 20:26:21 +0100870 CRYPTO_ALG_NEED_FALLBACK,
Ard Biesheuvel9acb3242019-11-09 18:09:41 +0100871 .base.cra_blocksize = AES_BLOCK_SIZE,
872 .base.cra_ctxsize = sizeof(struct dcp_async_ctx),
873 .base.cra_module = THIS_MODULE,
874
875 .min_keysize = AES_MIN_KEY_SIZE,
876 .max_keysize = AES_MAX_KEY_SIZE,
877 .setkey = mxs_dcp_aes_setkey,
878 .encrypt = mxs_dcp_aes_cbc_encrypt,
879 .decrypt = mxs_dcp_aes_cbc_decrypt,
880 .ivsize = AES_BLOCK_SIZE,
881 .init = mxs_dcp_aes_fallback_init_tfm,
882 .exit = mxs_dcp_aes_fallback_exit_tfm,
Marek Vasut15b59e72013-12-10 20:26:21 +0100883 },
884};
885
886/* SHA1 */
887static struct ahash_alg dcp_sha1_alg = {
888 .init = dcp_sha_init,
889 .update = dcp_sha_update,
890 .final = dcp_sha_final,
891 .finup = dcp_sha_finup,
892 .digest = dcp_sha_digest,
Dan Douglassea9e7562018-10-02 19:01:48 +0000893 .import = dcp_sha_import,
894 .export = dcp_sha_export,
Marek Vasut15b59e72013-12-10 20:26:21 +0100895 .halg = {
896 .digestsize = SHA1_DIGEST_SIZE,
Dan Douglassea9e7562018-10-02 19:01:48 +0000897 .statesize = sizeof(struct dcp_export_state),
Marek Vasut15b59e72013-12-10 20:26:21 +0100898 .base = {
899 .cra_name = "sha1",
900 .cra_driver_name = "sha1-dcp",
901 .cra_priority = 400,
902 .cra_alignmask = 63,
903 .cra_flags = CRYPTO_ALG_ASYNC,
904 .cra_blocksize = SHA1_BLOCK_SIZE,
905 .cra_ctxsize = sizeof(struct dcp_async_ctx),
906 .cra_module = THIS_MODULE,
907 .cra_init = dcp_sha_cra_init,
908 .cra_exit = dcp_sha_cra_exit,
909 },
910 },
911};
912
913/* SHA256 */
914static struct ahash_alg dcp_sha256_alg = {
915 .init = dcp_sha_init,
916 .update = dcp_sha_update,
917 .final = dcp_sha_final,
918 .finup = dcp_sha_finup,
919 .digest = dcp_sha_digest,
Dan Douglassea9e7562018-10-02 19:01:48 +0000920 .import = dcp_sha_import,
921 .export = dcp_sha_export,
Marek Vasut15b59e72013-12-10 20:26:21 +0100922 .halg = {
923 .digestsize = SHA256_DIGEST_SIZE,
Dan Douglassea9e7562018-10-02 19:01:48 +0000924 .statesize = sizeof(struct dcp_export_state),
Marek Vasut15b59e72013-12-10 20:26:21 +0100925 .base = {
926 .cra_name = "sha256",
927 .cra_driver_name = "sha256-dcp",
928 .cra_priority = 400,
929 .cra_alignmask = 63,
930 .cra_flags = CRYPTO_ALG_ASYNC,
931 .cra_blocksize = SHA256_BLOCK_SIZE,
932 .cra_ctxsize = sizeof(struct dcp_async_ctx),
933 .cra_module = THIS_MODULE,
934 .cra_init = dcp_sha_cra_init,
935 .cra_exit = dcp_sha_cra_exit,
936 },
937 },
938};
939
940static irqreturn_t mxs_dcp_irq(int irq, void *context)
941{
942 struct dcp *sdcp = context;
943 uint32_t stat;
944 int i;
945
946 stat = readl(sdcp->base + MXS_DCP_STAT);
947 stat &= MXS_DCP_STAT_IRQ_MASK;
948 if (!stat)
949 return IRQ_NONE;
950
951 /* Clear the interrupts. */
952 writel(stat, sdcp->base + MXS_DCP_STAT_CLR);
953
954 /* Complete the DMA requests that finished. */
955 for (i = 0; i < DCP_MAX_CHANS; i++)
956 if (stat & (1 << i))
957 complete(&sdcp->completion[i]);
958
959 return IRQ_HANDLED;
960}
961
962static int mxs_dcp_probe(struct platform_device *pdev)
963{
964 struct device *dev = &pdev->dev;
965 struct dcp *sdcp = NULL;
966 int i, ret;
Marek Vasut15b59e72013-12-10 20:26:21 +0100967 int dcp_vmi_irq, dcp_irq;
968
Marek Vasut15b59e72013-12-10 20:26:21 +0100969 if (global_sdcp) {
970 dev_err(dev, "Only one DCP instance allowed!\n");
Fabio Estevam5fc80052014-05-12 08:44:28 -0300971 return -ENODEV;
Marek Vasut15b59e72013-12-10 20:26:21 +0100972 }
973
Marek Vasut15b59e72013-12-10 20:26:21 +0100974 dcp_vmi_irq = platform_get_irq(pdev, 0);
Stephen Boyd514838e2019-07-30 11:15:05 -0700975 if (dcp_vmi_irq < 0)
Fabio Estevam5fc80052014-05-12 08:44:28 -0300976 return dcp_vmi_irq;
Fabio Estevamd9588f82014-02-14 01:04:44 -0200977
Marek Vasut15b59e72013-12-10 20:26:21 +0100978 dcp_irq = platform_get_irq(pdev, 1);
Stephen Boyd514838e2019-07-30 11:15:05 -0700979 if (dcp_irq < 0)
Fabio Estevam5fc80052014-05-12 08:44:28 -0300980 return dcp_irq;
Marek Vasut15b59e72013-12-10 20:26:21 +0100981
982 sdcp = devm_kzalloc(dev, sizeof(*sdcp), GFP_KERNEL);
Fabio Estevam5fc80052014-05-12 08:44:28 -0300983 if (!sdcp)
984 return -ENOMEM;
Marek Vasut15b59e72013-12-10 20:26:21 +0100985
986 sdcp->dev = dev;
Fabio Estevamcec1caa2019-06-06 13:13:48 -0300987 sdcp->base = devm_platform_ioremap_resource(pdev, 0);
Fabio Estevam5fc80052014-05-12 08:44:28 -0300988 if (IS_ERR(sdcp->base))
989 return PTR_ERR(sdcp->base);
990
Marek Vasut15b59e72013-12-10 20:26:21 +0100991
992 ret = devm_request_irq(dev, dcp_vmi_irq, mxs_dcp_irq, 0,
993 "dcp-vmi-irq", sdcp);
994 if (ret) {
995 dev_err(dev, "Failed to claim DCP VMI IRQ!\n");
Fabio Estevam5fc80052014-05-12 08:44:28 -0300996 return ret;
Marek Vasut15b59e72013-12-10 20:26:21 +0100997 }
998
999 ret = devm_request_irq(dev, dcp_irq, mxs_dcp_irq, 0,
1000 "dcp-irq", sdcp);
1001 if (ret) {
1002 dev_err(dev, "Failed to claim DCP IRQ!\n");
Fabio Estevam5fc80052014-05-12 08:44:28 -03001003 return ret;
Marek Vasut15b59e72013-12-10 20:26:21 +01001004 }
1005
1006 /* Allocate coherent helper block. */
Marek Vasut1a7c6852014-03-03 01:23:15 +01001007 sdcp->coh = devm_kzalloc(dev, sizeof(*sdcp->coh) + DCP_ALIGNMENT,
1008 GFP_KERNEL);
Fabio Estevam5fc80052014-05-12 08:44:28 -03001009 if (!sdcp->coh)
1010 return -ENOMEM;
Marek Vasut15b59e72013-12-10 20:26:21 +01001011
Marek Vasut1a7c6852014-03-03 01:23:15 +01001012 /* Re-align the structure so it fits the DCP constraints. */
1013 sdcp->coh = PTR_ALIGN(sdcp->coh, DCP_ALIGNMENT);
1014
Leonard Crestez57f00282018-11-07 15:33:32 +00001015 /* DCP clock is optional, only used on some SOCs */
1016 sdcp->dcp_clk = devm_clk_get(dev, "dcp");
1017 if (IS_ERR(sdcp->dcp_clk)) {
1018 if (sdcp->dcp_clk != ERR_PTR(-ENOENT))
1019 return PTR_ERR(sdcp->dcp_clk);
1020 sdcp->dcp_clk = NULL;
1021 }
1022 ret = clk_prepare_enable(sdcp->dcp_clk);
Fabio Estevamfecfd7f2014-01-28 22:36:12 -02001023 if (ret)
Fabio Estevam5fc80052014-05-12 08:44:28 -03001024 return ret;
Marek Vasut15b59e72013-12-10 20:26:21 +01001025
Leonard Crestez57f00282018-11-07 15:33:32 +00001026 /* Restart the DCP block. */
1027 ret = stmp_reset_block(sdcp->base);
1028 if (ret) {
1029 dev_err(dev, "Failed reset\n");
1030 goto err_disable_unprepare_clk;
1031 }
1032
Marek Vasut15b59e72013-12-10 20:26:21 +01001033 /* Initialize control register. */
1034 writel(MXS_DCP_CTRL_GATHER_RESIDUAL_WRITES |
1035 MXS_DCP_CTRL_ENABLE_CONTEXT_CACHING | 0xf,
1036 sdcp->base + MXS_DCP_CTRL);
1037
1038 /* Enable all DCP DMA channels. */
1039 writel(MXS_DCP_CHANNELCTRL_ENABLE_CHANNEL_MASK,
1040 sdcp->base + MXS_DCP_CHANNELCTRL);
1041
1042 /*
1043 * We do not enable context switching. Give the context buffer a
1044 * pointer to an illegal address so if context switching is
1045 * inadvertantly enabled, the DCP will return an error instead of
1046 * trashing good memory. The DCP DMA cannot access ROM, so any ROM
1047 * address will do.
1048 */
1049 writel(0xffff0000, sdcp->base + MXS_DCP_CONTEXT);
1050 for (i = 0; i < DCP_MAX_CHANS; i++)
1051 writel(0xffffffff, sdcp->base + MXS_DCP_CH_N_STAT_CLR(i));
1052 writel(0xffffffff, sdcp->base + MXS_DCP_STAT_CLR);
1053
1054 global_sdcp = sdcp;
1055
1056 platform_set_drvdata(pdev, sdcp);
1057
1058 for (i = 0; i < DCP_MAX_CHANS; i++) {
Leonard Crestezd80771c2018-09-21 18:03:18 +03001059 spin_lock_init(&sdcp->lock[i]);
Marek Vasut15b59e72013-12-10 20:26:21 +01001060 init_completion(&sdcp->completion[i]);
1061 crypto_init_queue(&sdcp->queue[i], 50);
1062 }
1063
1064 /* Create the SHA and AES handler threads. */
1065 sdcp->thread[DCP_CHAN_HASH_SHA] = kthread_run(dcp_chan_thread_sha,
1066 NULL, "mxs_dcp_chan/sha");
1067 if (IS_ERR(sdcp->thread[DCP_CHAN_HASH_SHA])) {
1068 dev_err(dev, "Error starting SHA thread!\n");
Leonard Crestez57f00282018-11-07 15:33:32 +00001069 ret = PTR_ERR(sdcp->thread[DCP_CHAN_HASH_SHA]);
1070 goto err_disable_unprepare_clk;
Marek Vasut15b59e72013-12-10 20:26:21 +01001071 }
1072
1073 sdcp->thread[DCP_CHAN_CRYPTO] = kthread_run(dcp_chan_thread_aes,
1074 NULL, "mxs_dcp_chan/aes");
1075 if (IS_ERR(sdcp->thread[DCP_CHAN_CRYPTO])) {
1076 dev_err(dev, "Error starting SHA thread!\n");
1077 ret = PTR_ERR(sdcp->thread[DCP_CHAN_CRYPTO]);
1078 goto err_destroy_sha_thread;
1079 }
1080
1081 /* Register the various crypto algorithms. */
1082 sdcp->caps = readl(sdcp->base + MXS_DCP_CAPABILITY1);
1083
1084 if (sdcp->caps & MXS_DCP_CAPABILITY1_AES128) {
Ard Biesheuvel9acb3242019-11-09 18:09:41 +01001085 ret = crypto_register_skciphers(dcp_aes_algs,
1086 ARRAY_SIZE(dcp_aes_algs));
Marek Vasut15b59e72013-12-10 20:26:21 +01001087 if (ret) {
1088 /* Failed to register algorithm. */
1089 dev_err(dev, "Failed to register AES crypto!\n");
1090 goto err_destroy_aes_thread;
1091 }
1092 }
1093
1094 if (sdcp->caps & MXS_DCP_CAPABILITY1_SHA1) {
1095 ret = crypto_register_ahash(&dcp_sha1_alg);
1096 if (ret) {
1097 dev_err(dev, "Failed to register %s hash!\n",
1098 dcp_sha1_alg.halg.base.cra_name);
1099 goto err_unregister_aes;
1100 }
1101 }
1102
1103 if (sdcp->caps & MXS_DCP_CAPABILITY1_SHA256) {
1104 ret = crypto_register_ahash(&dcp_sha256_alg);
1105 if (ret) {
1106 dev_err(dev, "Failed to register %s hash!\n",
1107 dcp_sha256_alg.halg.base.cra_name);
1108 goto err_unregister_sha1;
1109 }
1110 }
1111
1112 return 0;
1113
1114err_unregister_sha1:
1115 if (sdcp->caps & MXS_DCP_CAPABILITY1_SHA1)
1116 crypto_unregister_ahash(&dcp_sha1_alg);
1117
1118err_unregister_aes:
1119 if (sdcp->caps & MXS_DCP_CAPABILITY1_AES128)
Ard Biesheuvel9acb3242019-11-09 18:09:41 +01001120 crypto_unregister_skciphers(dcp_aes_algs, ARRAY_SIZE(dcp_aes_algs));
Marek Vasut15b59e72013-12-10 20:26:21 +01001121
1122err_destroy_aes_thread:
1123 kthread_stop(sdcp->thread[DCP_CHAN_CRYPTO]);
1124
1125err_destroy_sha_thread:
1126 kthread_stop(sdcp->thread[DCP_CHAN_HASH_SHA]);
Leonard Crestez57f00282018-11-07 15:33:32 +00001127
1128err_disable_unprepare_clk:
1129 clk_disable_unprepare(sdcp->dcp_clk);
1130
Marek Vasut15b59e72013-12-10 20:26:21 +01001131 return ret;
1132}
1133
1134static int mxs_dcp_remove(struct platform_device *pdev)
1135{
1136 struct dcp *sdcp = platform_get_drvdata(pdev);
1137
Marek Vasut15b59e72013-12-10 20:26:21 +01001138 if (sdcp->caps & MXS_DCP_CAPABILITY1_SHA256)
1139 crypto_unregister_ahash(&dcp_sha256_alg);
1140
1141 if (sdcp->caps & MXS_DCP_CAPABILITY1_SHA1)
1142 crypto_unregister_ahash(&dcp_sha1_alg);
1143
1144 if (sdcp->caps & MXS_DCP_CAPABILITY1_AES128)
Ard Biesheuvel9acb3242019-11-09 18:09:41 +01001145 crypto_unregister_skciphers(dcp_aes_algs, ARRAY_SIZE(dcp_aes_algs));
Marek Vasut15b59e72013-12-10 20:26:21 +01001146
1147 kthread_stop(sdcp->thread[DCP_CHAN_HASH_SHA]);
1148 kthread_stop(sdcp->thread[DCP_CHAN_CRYPTO]);
1149
Leonard Crestez57f00282018-11-07 15:33:32 +00001150 clk_disable_unprepare(sdcp->dcp_clk);
1151
Marek Vasut15b59e72013-12-10 20:26:21 +01001152 platform_set_drvdata(pdev, NULL);
1153
Marek Vasut15b59e72013-12-10 20:26:21 +01001154 global_sdcp = NULL;
Marek Vasut15b59e72013-12-10 20:26:21 +01001155
1156 return 0;
1157}
1158
1159static const struct of_device_id mxs_dcp_dt_ids[] = {
1160 { .compatible = "fsl,imx23-dcp", .data = NULL, },
1161 { .compatible = "fsl,imx28-dcp", .data = NULL, },
1162 { /* sentinel */ }
1163};
1164
1165MODULE_DEVICE_TABLE(of, mxs_dcp_dt_ids);
1166
1167static struct platform_driver mxs_dcp_driver = {
1168 .probe = mxs_dcp_probe,
1169 .remove = mxs_dcp_remove,
1170 .driver = {
1171 .name = "mxs-dcp",
Marek Vasut15b59e72013-12-10 20:26:21 +01001172 .of_match_table = mxs_dcp_dt_ids,
1173 },
1174};
1175
1176module_platform_driver(mxs_dcp_driver);
1177
1178MODULE_AUTHOR("Marek Vasut <marex@denx.de>");
1179MODULE_DESCRIPTION("Freescale MXS DCP Driver");
1180MODULE_LICENSE("GPL");
1181MODULE_ALIAS("platform:mxs-dcp");