blob: c7972e733e43e551ce38f30d1641692164c8a4fd [file] [log] [blame]
Gary R Hook4b394a22016-07-26 19:10:21 -05001/*
2 * AMD Cryptographic Coprocessor (CCP) driver
3 *
4 * Copyright (C) 2016 Advanced Micro Devices, Inc.
5 *
6 * Author: Gary R Hook <gary.hook@amd.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/pci.h>
16#include <linux/kthread.h>
17#include <linux/dma-mapping.h>
18#include <linux/interrupt.h>
19#include <linux/compiler.h>
20#include <linux/ccp.h>
21
22#include "ccp-dev.h"
23
Gary R Hook103600a2016-10-18 17:33:37 -050024/* Allocate the requested number of contiguous LSB slots
25 * from the LSB bitmap. Look in the private range for this
26 * queue first; failing that, check the public area.
27 * If no space is available, wait around.
28 * Return: first slot number
29 */
Gary R Hook4b394a22016-07-26 19:10:21 -050030static u32 ccp_lsb_alloc(struct ccp_cmd_queue *cmd_q, unsigned int count)
31{
32 struct ccp_device *ccp;
33 int start;
34
35 /* First look at the map for the queue */
36 if (cmd_q->lsb >= 0) {
37 start = (u32)bitmap_find_next_zero_area(cmd_q->lsbmap,
38 LSB_SIZE,
39 0, count, 0);
40 if (start < LSB_SIZE) {
41 bitmap_set(cmd_q->lsbmap, start, count);
42 return start + cmd_q->lsb * LSB_SIZE;
43 }
44 }
45
46 /* No joy; try to get an entry from the shared blocks */
47 ccp = cmd_q->ccp;
48 for (;;) {
49 mutex_lock(&ccp->sb_mutex);
50
51 start = (u32)bitmap_find_next_zero_area(ccp->lsbmap,
52 MAX_LSB_CNT * LSB_SIZE,
53 0,
54 count, 0);
55 if (start <= MAX_LSB_CNT * LSB_SIZE) {
56 bitmap_set(ccp->lsbmap, start, count);
57
58 mutex_unlock(&ccp->sb_mutex);
Gary R Hook103600a2016-10-18 17:33:37 -050059 return start;
Gary R Hook4b394a22016-07-26 19:10:21 -050060 }
61
62 ccp->sb_avail = 0;
63
64 mutex_unlock(&ccp->sb_mutex);
65
66 /* Wait for KSB entries to become available */
67 if (wait_event_interruptible(ccp->sb_queue, ccp->sb_avail))
68 return 0;
69 }
70}
71
Gary R Hook103600a2016-10-18 17:33:37 -050072/* Free a number of LSB slots from the bitmap, starting at
73 * the indicated starting slot number.
74 */
Gary R Hook4b394a22016-07-26 19:10:21 -050075static void ccp_lsb_free(struct ccp_cmd_queue *cmd_q, unsigned int start,
76 unsigned int count)
77{
Gary R Hook4b394a22016-07-26 19:10:21 -050078 if (!start)
79 return;
80
Gary R Hook103600a2016-10-18 17:33:37 -050081 if (cmd_q->lsb == start) {
Gary R Hook4b394a22016-07-26 19:10:21 -050082 /* An entry from the private LSB */
Gary R Hook103600a2016-10-18 17:33:37 -050083 bitmap_clear(cmd_q->lsbmap, start, count);
Gary R Hook4b394a22016-07-26 19:10:21 -050084 } else {
85 /* From the shared LSBs */
86 struct ccp_device *ccp = cmd_q->ccp;
87
88 mutex_lock(&ccp->sb_mutex);
89 bitmap_clear(ccp->lsbmap, start, count);
90 ccp->sb_avail = 1;
91 mutex_unlock(&ccp->sb_mutex);
92 wake_up_interruptible_all(&ccp->sb_queue);
93 }
94}
95
96/* CCP version 5: Union to define the function field (cmd_reg1/dword0) */
97union ccp_function {
98 struct {
99 u16 size:7;
100 u16 encrypt:1;
101 u16 mode:5;
102 u16 type:2;
103 } aes;
104 struct {
105 u16 size:7;
106 u16 encrypt:1;
107 u16 rsvd:5;
108 u16 type:2;
109 } aes_xts;
110 struct {
Gary R Hook990672d2017-03-15 13:20:52 -0500111 u16 size:7;
112 u16 encrypt:1;
113 u16 mode:5;
114 u16 type:2;
115 } des3;
116 struct {
Gary R Hook4b394a22016-07-26 19:10:21 -0500117 u16 rsvd1:10;
118 u16 type:4;
119 u16 rsvd2:1;
120 } sha;
121 struct {
122 u16 mode:3;
123 u16 size:12;
124 } rsa;
125 struct {
126 u16 byteswap:2;
127 u16 bitwise:3;
128 u16 reflect:2;
129 u16 rsvd:8;
130 } pt;
131 struct {
132 u16 rsvd:13;
133 } zlib;
134 struct {
135 u16 size:10;
136 u16 type:2;
137 u16 mode:3;
138 } ecc;
139 u16 raw;
140};
141
142#define CCP_AES_SIZE(p) ((p)->aes.size)
143#define CCP_AES_ENCRYPT(p) ((p)->aes.encrypt)
144#define CCP_AES_MODE(p) ((p)->aes.mode)
145#define CCP_AES_TYPE(p) ((p)->aes.type)
146#define CCP_XTS_SIZE(p) ((p)->aes_xts.size)
147#define CCP_XTS_ENCRYPT(p) ((p)->aes_xts.encrypt)
Gary R Hook990672d2017-03-15 13:20:52 -0500148#define CCP_DES3_SIZE(p) ((p)->des3.size)
149#define CCP_DES3_ENCRYPT(p) ((p)->des3.encrypt)
150#define CCP_DES3_MODE(p) ((p)->des3.mode)
151#define CCP_DES3_TYPE(p) ((p)->des3.type)
Gary R Hook4b394a22016-07-26 19:10:21 -0500152#define CCP_SHA_TYPE(p) ((p)->sha.type)
153#define CCP_RSA_SIZE(p) ((p)->rsa.size)
154#define CCP_PT_BYTESWAP(p) ((p)->pt.byteswap)
155#define CCP_PT_BITWISE(p) ((p)->pt.bitwise)
156#define CCP_ECC_MODE(p) ((p)->ecc.mode)
157#define CCP_ECC_AFFINE(p) ((p)->ecc.one)
158
159/* Word 0 */
160#define CCP5_CMD_DW0(p) ((p)->dw0)
161#define CCP5_CMD_SOC(p) (CCP5_CMD_DW0(p).soc)
162#define CCP5_CMD_IOC(p) (CCP5_CMD_DW0(p).ioc)
163#define CCP5_CMD_INIT(p) (CCP5_CMD_DW0(p).init)
164#define CCP5_CMD_EOM(p) (CCP5_CMD_DW0(p).eom)
165#define CCP5_CMD_FUNCTION(p) (CCP5_CMD_DW0(p).function)
166#define CCP5_CMD_ENGINE(p) (CCP5_CMD_DW0(p).engine)
167#define CCP5_CMD_PROT(p) (CCP5_CMD_DW0(p).prot)
168
169/* Word 1 */
170#define CCP5_CMD_DW1(p) ((p)->length)
171#define CCP5_CMD_LEN(p) (CCP5_CMD_DW1(p))
172
173/* Word 2 */
174#define CCP5_CMD_DW2(p) ((p)->src_lo)
175#define CCP5_CMD_SRC_LO(p) (CCP5_CMD_DW2(p))
176
177/* Word 3 */
178#define CCP5_CMD_DW3(p) ((p)->dw3)
179#define CCP5_CMD_SRC_MEM(p) ((p)->dw3.src_mem)
180#define CCP5_CMD_SRC_HI(p) ((p)->dw3.src_hi)
181#define CCP5_CMD_LSB_ID(p) ((p)->dw3.lsb_cxt_id)
182#define CCP5_CMD_FIX_SRC(p) ((p)->dw3.fixed)
183
184/* Words 4/5 */
185#define CCP5_CMD_DW4(p) ((p)->dw4)
186#define CCP5_CMD_DST_LO(p) (CCP5_CMD_DW4(p).dst_lo)
187#define CCP5_CMD_DW5(p) ((p)->dw5.fields.dst_hi)
188#define CCP5_CMD_DST_HI(p) (CCP5_CMD_DW5(p))
189#define CCP5_CMD_DST_MEM(p) ((p)->dw5.fields.dst_mem)
190#define CCP5_CMD_FIX_DST(p) ((p)->dw5.fields.fixed)
191#define CCP5_CMD_SHA_LO(p) ((p)->dw4.sha_len_lo)
192#define CCP5_CMD_SHA_HI(p) ((p)->dw5.sha_len_hi)
193
194/* Word 6/7 */
195#define CCP5_CMD_DW6(p) ((p)->key_lo)
196#define CCP5_CMD_KEY_LO(p) (CCP5_CMD_DW6(p))
197#define CCP5_CMD_DW7(p) ((p)->dw7)
198#define CCP5_CMD_KEY_HI(p) ((p)->dw7.key_hi)
199#define CCP5_CMD_KEY_MEM(p) ((p)->dw7.key_mem)
200
201static inline u32 low_address(unsigned long addr)
202{
203 return (u64)addr & 0x0ffffffff;
204}
205
206static inline u32 high_address(unsigned long addr)
207{
208 return ((u64)addr >> 32) & 0x00000ffff;
209}
210
211static unsigned int ccp5_get_free_slots(struct ccp_cmd_queue *cmd_q)
212{
213 unsigned int head_idx, n;
214 u32 head_lo, queue_start;
215
216 queue_start = low_address(cmd_q->qdma_tail);
217 head_lo = ioread32(cmd_q->reg_head_lo);
218 head_idx = (head_lo - queue_start) / sizeof(struct ccp5_desc);
219
220 n = head_idx + COMMANDS_PER_QUEUE - cmd_q->qidx - 1;
221
222 return n % COMMANDS_PER_QUEUE; /* Always one unused spot */
223}
224
225static int ccp5_do_cmd(struct ccp5_desc *desc,
226 struct ccp_cmd_queue *cmd_q)
227{
228 u32 *mP;
229 __le32 *dP;
230 u32 tail;
231 int i;
232 int ret = 0;
233
234 if (CCP5_CMD_SOC(desc)) {
235 CCP5_CMD_IOC(desc) = 1;
236 CCP5_CMD_SOC(desc) = 0;
237 }
238 mutex_lock(&cmd_q->q_mutex);
239
240 mP = (u32 *) &cmd_q->qbase[cmd_q->qidx];
241 dP = (__le32 *) desc;
242 for (i = 0; i < 8; i++)
243 mP[i] = cpu_to_le32(dP[i]); /* handle endianness */
244
245 cmd_q->qidx = (cmd_q->qidx + 1) % COMMANDS_PER_QUEUE;
246
247 /* The data used by this command must be flushed to memory */
248 wmb();
249
250 /* Write the new tail address back to the queue register */
251 tail = low_address(cmd_q->qdma_tail + cmd_q->qidx * Q_DESC_SIZE);
252 iowrite32(tail, cmd_q->reg_tail_lo);
253
254 /* Turn the queue back on using our cached control register */
255 iowrite32(cmd_q->qcontrol | CMD5_Q_RUN, cmd_q->reg_control);
256 mutex_unlock(&cmd_q->q_mutex);
257
258 if (CCP5_CMD_IOC(desc)) {
259 /* Wait for the job to complete */
260 ret = wait_event_interruptible(cmd_q->int_queue,
261 cmd_q->int_rcvd);
262 if (ret || cmd_q->cmd_error) {
Gary R Hook4cdf1012017-02-09 15:49:57 -0600263 /* Log the error and flush the queue by
264 * moving the head pointer
265 */
Gary R Hook81422ba2016-09-28 11:53:56 -0500266 if (cmd_q->cmd_error)
267 ccp_log_error(cmd_q->ccp,
268 cmd_q->cmd_error);
Gary R Hook4cdf1012017-02-09 15:49:57 -0600269 iowrite32(tail, cmd_q->reg_head_lo);
Gary R Hook4b394a22016-07-26 19:10:21 -0500270 if (!ret)
271 ret = -EIO;
272 }
273 cmd_q->int_rcvd = 0;
274 }
275
Gary R Hook4cdf1012017-02-09 15:49:57 -0600276 return ret;
Gary R Hook4b394a22016-07-26 19:10:21 -0500277}
278
279static int ccp5_perform_aes(struct ccp_op *op)
280{
281 struct ccp5_desc desc;
282 union ccp_function function;
283 u32 key_addr = op->sb_key * LSB_ITEM_SIZE;
284
285 /* Zero out all the fields of the command desc */
286 memset(&desc, 0, Q_DESC_SIZE);
287
288 CCP5_CMD_ENGINE(&desc) = CCP_ENGINE_AES;
289
290 CCP5_CMD_SOC(&desc) = op->soc;
291 CCP5_CMD_IOC(&desc) = 1;
292 CCP5_CMD_INIT(&desc) = op->init;
293 CCP5_CMD_EOM(&desc) = op->eom;
294 CCP5_CMD_PROT(&desc) = 0;
295
296 function.raw = 0;
297 CCP_AES_ENCRYPT(&function) = op->u.aes.action;
298 CCP_AES_MODE(&function) = op->u.aes.mode;
299 CCP_AES_TYPE(&function) = op->u.aes.type;
Gary R Hookf7cc02b32017-02-08 13:07:06 -0600300 CCP_AES_SIZE(&function) = op->u.aes.size;
Gary R Hook4b394a22016-07-26 19:10:21 -0500301
302 CCP5_CMD_FUNCTION(&desc) = function.raw;
303
304 CCP5_CMD_LEN(&desc) = op->src.u.dma.length;
305
306 CCP5_CMD_SRC_LO(&desc) = ccp_addr_lo(&op->src.u.dma);
307 CCP5_CMD_SRC_HI(&desc) = ccp_addr_hi(&op->src.u.dma);
308 CCP5_CMD_SRC_MEM(&desc) = CCP_MEMTYPE_SYSTEM;
309
310 CCP5_CMD_DST_LO(&desc) = ccp_addr_lo(&op->dst.u.dma);
311 CCP5_CMD_DST_HI(&desc) = ccp_addr_hi(&op->dst.u.dma);
312 CCP5_CMD_DST_MEM(&desc) = CCP_MEMTYPE_SYSTEM;
313
314 CCP5_CMD_KEY_LO(&desc) = lower_32_bits(key_addr);
315 CCP5_CMD_KEY_HI(&desc) = 0;
316 CCP5_CMD_KEY_MEM(&desc) = CCP_MEMTYPE_SB;
317 CCP5_CMD_LSB_ID(&desc) = op->sb_ctx;
318
319 return ccp5_do_cmd(&desc, op->cmd_q);
320}
321
322static int ccp5_perform_xts_aes(struct ccp_op *op)
323{
324 struct ccp5_desc desc;
325 union ccp_function function;
326 u32 key_addr = op->sb_key * LSB_ITEM_SIZE;
327
328 /* Zero out all the fields of the command desc */
329 memset(&desc, 0, Q_DESC_SIZE);
330
331 CCP5_CMD_ENGINE(&desc) = CCP_ENGINE_XTS_AES_128;
332
333 CCP5_CMD_SOC(&desc) = op->soc;
334 CCP5_CMD_IOC(&desc) = 1;
335 CCP5_CMD_INIT(&desc) = op->init;
336 CCP5_CMD_EOM(&desc) = op->eom;
337 CCP5_CMD_PROT(&desc) = 0;
338
339 function.raw = 0;
340 CCP_XTS_ENCRYPT(&function) = op->u.xts.action;
341 CCP_XTS_SIZE(&function) = op->u.xts.unit_size;
342 CCP5_CMD_FUNCTION(&desc) = function.raw;
343
344 CCP5_CMD_LEN(&desc) = op->src.u.dma.length;
345
346 CCP5_CMD_SRC_LO(&desc) = ccp_addr_lo(&op->src.u.dma);
347 CCP5_CMD_SRC_HI(&desc) = ccp_addr_hi(&op->src.u.dma);
348 CCP5_CMD_SRC_MEM(&desc) = CCP_MEMTYPE_SYSTEM;
349
350 CCP5_CMD_DST_LO(&desc) = ccp_addr_lo(&op->dst.u.dma);
351 CCP5_CMD_DST_HI(&desc) = ccp_addr_hi(&op->dst.u.dma);
352 CCP5_CMD_DST_MEM(&desc) = CCP_MEMTYPE_SYSTEM;
353
354 CCP5_CMD_KEY_LO(&desc) = lower_32_bits(key_addr);
355 CCP5_CMD_KEY_HI(&desc) = 0;
356 CCP5_CMD_KEY_MEM(&desc) = CCP_MEMTYPE_SB;
357 CCP5_CMD_LSB_ID(&desc) = op->sb_ctx;
358
359 return ccp5_do_cmd(&desc, op->cmd_q);
360}
361
362static int ccp5_perform_sha(struct ccp_op *op)
363{
364 struct ccp5_desc desc;
365 union ccp_function function;
366
367 /* Zero out all the fields of the command desc */
368 memset(&desc, 0, Q_DESC_SIZE);
369
370 CCP5_CMD_ENGINE(&desc) = CCP_ENGINE_SHA;
371
372 CCP5_CMD_SOC(&desc) = op->soc;
373 CCP5_CMD_IOC(&desc) = 1;
374 CCP5_CMD_INIT(&desc) = 1;
375 CCP5_CMD_EOM(&desc) = op->eom;
376 CCP5_CMD_PROT(&desc) = 0;
377
378 function.raw = 0;
379 CCP_SHA_TYPE(&function) = op->u.sha.type;
380 CCP5_CMD_FUNCTION(&desc) = function.raw;
381
382 CCP5_CMD_LEN(&desc) = op->src.u.dma.length;
383
384 CCP5_CMD_SRC_LO(&desc) = ccp_addr_lo(&op->src.u.dma);
385 CCP5_CMD_SRC_HI(&desc) = ccp_addr_hi(&op->src.u.dma);
386 CCP5_CMD_SRC_MEM(&desc) = CCP_MEMTYPE_SYSTEM;
387
388 CCP5_CMD_LSB_ID(&desc) = op->sb_ctx;
389
390 if (op->eom) {
391 CCP5_CMD_SHA_LO(&desc) = lower_32_bits(op->u.sha.msg_bits);
392 CCP5_CMD_SHA_HI(&desc) = upper_32_bits(op->u.sha.msg_bits);
393 } else {
394 CCP5_CMD_SHA_LO(&desc) = 0;
395 CCP5_CMD_SHA_HI(&desc) = 0;
396 }
397
398 return ccp5_do_cmd(&desc, op->cmd_q);
399}
400
Gary R Hook990672d2017-03-15 13:20:52 -0500401static int ccp5_perform_des3(struct ccp_op *op)
402{
403 struct ccp5_desc desc;
404 union ccp_function function;
405 u32 key_addr = op->sb_key * LSB_ITEM_SIZE;
406
407 /* Zero out all the fields of the command desc */
408 memset(&desc, 0, sizeof(struct ccp5_desc));
409
410 CCP5_CMD_ENGINE(&desc) = CCP_ENGINE_DES3;
411
412 CCP5_CMD_SOC(&desc) = op->soc;
413 CCP5_CMD_IOC(&desc) = 1;
414 CCP5_CMD_INIT(&desc) = op->init;
415 CCP5_CMD_EOM(&desc) = op->eom;
416 CCP5_CMD_PROT(&desc) = 0;
417
418 function.raw = 0;
419 CCP_DES3_ENCRYPT(&function) = op->u.des3.action;
420 CCP_DES3_MODE(&function) = op->u.des3.mode;
421 CCP_DES3_TYPE(&function) = op->u.des3.type;
Gary R Hook51de7dd2017-03-28 08:58:28 -0500422 CCP5_CMD_FUNCTION(&desc) = function.raw;
Gary R Hook990672d2017-03-15 13:20:52 -0500423
Gary R Hook51de7dd2017-03-28 08:58:28 -0500424 CCP5_CMD_LEN(&desc) = op->src.u.dma.length;
Gary R Hook990672d2017-03-15 13:20:52 -0500425
Gary R Hook51de7dd2017-03-28 08:58:28 -0500426 CCP5_CMD_SRC_LO(&desc) = ccp_addr_lo(&op->src.u.dma);
427 CCP5_CMD_SRC_HI(&desc) = ccp_addr_hi(&op->src.u.dma);
428 CCP5_CMD_SRC_MEM(&desc) = CCP_MEMTYPE_SYSTEM;
Gary R Hook990672d2017-03-15 13:20:52 -0500429
Gary R Hook51de7dd2017-03-28 08:58:28 -0500430 CCP5_CMD_DST_LO(&desc) = ccp_addr_lo(&op->dst.u.dma);
431 CCP5_CMD_DST_HI(&desc) = ccp_addr_hi(&op->dst.u.dma);
432 CCP5_CMD_DST_MEM(&desc) = CCP_MEMTYPE_SYSTEM;
Gary R Hook990672d2017-03-15 13:20:52 -0500433
Gary R Hook51de7dd2017-03-28 08:58:28 -0500434 CCP5_CMD_KEY_LO(&desc) = lower_32_bits(key_addr);
Gary R Hook990672d2017-03-15 13:20:52 -0500435 CCP5_CMD_KEY_HI(&desc) = 0;
Gary R Hook51de7dd2017-03-28 08:58:28 -0500436 CCP5_CMD_KEY_MEM(&desc) = CCP_MEMTYPE_SB;
437 CCP5_CMD_LSB_ID(&desc) = op->sb_ctx;
Gary R Hook990672d2017-03-15 13:20:52 -0500438
439 return ccp5_do_cmd(&desc, op->cmd_q);
440}
441
Gary R Hook4b394a22016-07-26 19:10:21 -0500442static int ccp5_perform_rsa(struct ccp_op *op)
443{
444 struct ccp5_desc desc;
445 union ccp_function function;
446
447 /* Zero out all the fields of the command desc */
448 memset(&desc, 0, Q_DESC_SIZE);
449
450 CCP5_CMD_ENGINE(&desc) = CCP_ENGINE_RSA;
451
452 CCP5_CMD_SOC(&desc) = op->soc;
453 CCP5_CMD_IOC(&desc) = 1;
454 CCP5_CMD_INIT(&desc) = 0;
455 CCP5_CMD_EOM(&desc) = 1;
456 CCP5_CMD_PROT(&desc) = 0;
457
458 function.raw = 0;
Gary R Hooke6414b12016-11-01 14:05:05 -0500459 CCP_RSA_SIZE(&function) = op->u.rsa.mod_size >> 3;
Gary R Hook4b394a22016-07-26 19:10:21 -0500460 CCP5_CMD_FUNCTION(&desc) = function.raw;
461
462 CCP5_CMD_LEN(&desc) = op->u.rsa.input_len;
463
464 /* Source is from external memory */
465 CCP5_CMD_SRC_LO(&desc) = ccp_addr_lo(&op->src.u.dma);
466 CCP5_CMD_SRC_HI(&desc) = ccp_addr_hi(&op->src.u.dma);
467 CCP5_CMD_SRC_MEM(&desc) = CCP_MEMTYPE_SYSTEM;
468
469 /* Destination is in external memory */
470 CCP5_CMD_DST_LO(&desc) = ccp_addr_lo(&op->dst.u.dma);
471 CCP5_CMD_DST_HI(&desc) = ccp_addr_hi(&op->dst.u.dma);
472 CCP5_CMD_DST_MEM(&desc) = CCP_MEMTYPE_SYSTEM;
473
Gary R Hooke6414b12016-11-01 14:05:05 -0500474 /* Exponent is in LSB memory */
475 CCP5_CMD_KEY_LO(&desc) = op->sb_key * LSB_ITEM_SIZE;
476 CCP5_CMD_KEY_HI(&desc) = 0;
477 CCP5_CMD_KEY_MEM(&desc) = CCP_MEMTYPE_SB;
Gary R Hook4b394a22016-07-26 19:10:21 -0500478
479 return ccp5_do_cmd(&desc, op->cmd_q);
480}
481
482static int ccp5_perform_passthru(struct ccp_op *op)
483{
484 struct ccp5_desc desc;
485 union ccp_function function;
486 struct ccp_dma_info *saddr = &op->src.u.dma;
487 struct ccp_dma_info *daddr = &op->dst.u.dma;
488
Gary R Hook990672d2017-03-15 13:20:52 -0500489
Gary R Hook4b394a22016-07-26 19:10:21 -0500490 memset(&desc, 0, Q_DESC_SIZE);
491
492 CCP5_CMD_ENGINE(&desc) = CCP_ENGINE_PASSTHRU;
493
494 CCP5_CMD_SOC(&desc) = 0;
495 CCP5_CMD_IOC(&desc) = 1;
496 CCP5_CMD_INIT(&desc) = 0;
497 CCP5_CMD_EOM(&desc) = op->eom;
498 CCP5_CMD_PROT(&desc) = 0;
499
500 function.raw = 0;
501 CCP_PT_BYTESWAP(&function) = op->u.passthru.byte_swap;
502 CCP_PT_BITWISE(&function) = op->u.passthru.bit_mod;
503 CCP5_CMD_FUNCTION(&desc) = function.raw;
504
505 /* Length of source data is always 256 bytes */
506 if (op->src.type == CCP_MEMTYPE_SYSTEM)
507 CCP5_CMD_LEN(&desc) = saddr->length;
508 else
509 CCP5_CMD_LEN(&desc) = daddr->length;
510
511 if (op->src.type == CCP_MEMTYPE_SYSTEM) {
512 CCP5_CMD_SRC_LO(&desc) = ccp_addr_lo(&op->src.u.dma);
513 CCP5_CMD_SRC_HI(&desc) = ccp_addr_hi(&op->src.u.dma);
514 CCP5_CMD_SRC_MEM(&desc) = CCP_MEMTYPE_SYSTEM;
515
516 if (op->u.passthru.bit_mod != CCP_PASSTHRU_BITWISE_NOOP)
517 CCP5_CMD_LSB_ID(&desc) = op->sb_key;
518 } else {
519 u32 key_addr = op->src.u.sb * CCP_SB_BYTES;
520
521 CCP5_CMD_SRC_LO(&desc) = lower_32_bits(key_addr);
522 CCP5_CMD_SRC_HI(&desc) = 0;
523 CCP5_CMD_SRC_MEM(&desc) = CCP_MEMTYPE_SB;
524 }
525
526 if (op->dst.type == CCP_MEMTYPE_SYSTEM) {
527 CCP5_CMD_DST_LO(&desc) = ccp_addr_lo(&op->dst.u.dma);
528 CCP5_CMD_DST_HI(&desc) = ccp_addr_hi(&op->dst.u.dma);
529 CCP5_CMD_DST_MEM(&desc) = CCP_MEMTYPE_SYSTEM;
530 } else {
531 u32 key_addr = op->dst.u.sb * CCP_SB_BYTES;
532
533 CCP5_CMD_DST_LO(&desc) = lower_32_bits(key_addr);
534 CCP5_CMD_DST_HI(&desc) = 0;
535 CCP5_CMD_DST_MEM(&desc) = CCP_MEMTYPE_SB;
536 }
537
538 return ccp5_do_cmd(&desc, op->cmd_q);
539}
540
541static int ccp5_perform_ecc(struct ccp_op *op)
542{
543 struct ccp5_desc desc;
544 union ccp_function function;
545
546 /* Zero out all the fields of the command desc */
547 memset(&desc, 0, Q_DESC_SIZE);
548
549 CCP5_CMD_ENGINE(&desc) = CCP_ENGINE_ECC;
550
551 CCP5_CMD_SOC(&desc) = 0;
552 CCP5_CMD_IOC(&desc) = 1;
553 CCP5_CMD_INIT(&desc) = 0;
554 CCP5_CMD_EOM(&desc) = 1;
555 CCP5_CMD_PROT(&desc) = 0;
556
557 function.raw = 0;
558 function.ecc.mode = op->u.ecc.function;
559 CCP5_CMD_FUNCTION(&desc) = function.raw;
560
561 CCP5_CMD_LEN(&desc) = op->src.u.dma.length;
562
563 CCP5_CMD_SRC_LO(&desc) = ccp_addr_lo(&op->src.u.dma);
564 CCP5_CMD_SRC_HI(&desc) = ccp_addr_hi(&op->src.u.dma);
565 CCP5_CMD_SRC_MEM(&desc) = CCP_MEMTYPE_SYSTEM;
566
567 CCP5_CMD_DST_LO(&desc) = ccp_addr_lo(&op->dst.u.dma);
568 CCP5_CMD_DST_HI(&desc) = ccp_addr_hi(&op->dst.u.dma);
569 CCP5_CMD_DST_MEM(&desc) = CCP_MEMTYPE_SYSTEM;
570
571 return ccp5_do_cmd(&desc, op->cmd_q);
572}
573
574static int ccp_find_lsb_regions(struct ccp_cmd_queue *cmd_q, u64 status)
575{
576 int q_mask = 1 << cmd_q->id;
577 int queues = 0;
578 int j;
579
580 /* Build a bit mask to know which LSBs this queue has access to.
581 * Don't bother with segment 0 as it has special privileges.
582 */
583 for (j = 1; j < MAX_LSB_CNT; j++) {
584 if (status & q_mask)
585 bitmap_set(cmd_q->lsbmask, j, 1);
586 status >>= LSB_REGION_WIDTH;
587 }
588 queues = bitmap_weight(cmd_q->lsbmask, MAX_LSB_CNT);
Gary R Hooka60496a2017-02-09 15:49:48 -0600589 dev_dbg(cmd_q->ccp->dev, "Queue %d can access %d LSB regions\n",
Gary R Hook4b394a22016-07-26 19:10:21 -0500590 cmd_q->id, queues);
591
592 return queues ? 0 : -EINVAL;
593}
594
595
596static int ccp_find_and_assign_lsb_to_q(struct ccp_device *ccp,
597 int lsb_cnt, int n_lsbs,
598 unsigned long *lsb_pub)
599{
600 DECLARE_BITMAP(qlsb, MAX_LSB_CNT);
601 int bitno;
602 int qlsb_wgt;
603 int i;
604
605 /* For each queue:
606 * If the count of potential LSBs available to a queue matches the
607 * ordinal given to us in lsb_cnt:
608 * Copy the mask of possible LSBs for this queue into "qlsb";
609 * For each bit in qlsb, see if the corresponding bit in the
610 * aggregation mask is set; if so, we have a match.
611 * If we have a match, clear the bit in the aggregation to
612 * mark it as no longer available.
613 * If there is no match, clear the bit in qlsb and keep looking.
614 */
615 for (i = 0; i < ccp->cmd_q_count; i++) {
616 struct ccp_cmd_queue *cmd_q = &ccp->cmd_q[i];
617
618 qlsb_wgt = bitmap_weight(cmd_q->lsbmask, MAX_LSB_CNT);
619
620 if (qlsb_wgt == lsb_cnt) {
621 bitmap_copy(qlsb, cmd_q->lsbmask, MAX_LSB_CNT);
622
623 bitno = find_first_bit(qlsb, MAX_LSB_CNT);
624 while (bitno < MAX_LSB_CNT) {
625 if (test_bit(bitno, lsb_pub)) {
626 /* We found an available LSB
627 * that this queue can access
628 */
629 cmd_q->lsb = bitno;
630 bitmap_clear(lsb_pub, bitno, 1);
Gary R Hooka60496a2017-02-09 15:49:48 -0600631 dev_dbg(ccp->dev,
Gary R Hook4b394a22016-07-26 19:10:21 -0500632 "Queue %d gets LSB %d\n",
633 i, bitno);
634 break;
635 }
636 bitmap_clear(qlsb, bitno, 1);
637 bitno = find_first_bit(qlsb, MAX_LSB_CNT);
638 }
639 if (bitno >= MAX_LSB_CNT)
640 return -EINVAL;
641 n_lsbs--;
642 }
643 }
644 return n_lsbs;
645}
646
647/* For each queue, from the most- to least-constrained:
648 * find an LSB that can be assigned to the queue. If there are N queues that
649 * can only use M LSBs, where N > M, fail; otherwise, every queue will get a
650 * dedicated LSB. Remaining LSB regions become a shared resource.
651 * If we have fewer LSBs than queues, all LSB regions become shared resources.
652 */
653static int ccp_assign_lsbs(struct ccp_device *ccp)
654{
655 DECLARE_BITMAP(lsb_pub, MAX_LSB_CNT);
656 DECLARE_BITMAP(qlsb, MAX_LSB_CNT);
657 int n_lsbs = 0;
658 int bitno;
659 int i, lsb_cnt;
660 int rc = 0;
661
662 bitmap_zero(lsb_pub, MAX_LSB_CNT);
663
664 /* Create an aggregate bitmap to get a total count of available LSBs */
665 for (i = 0; i < ccp->cmd_q_count; i++)
666 bitmap_or(lsb_pub,
667 lsb_pub, ccp->cmd_q[i].lsbmask,
668 MAX_LSB_CNT);
669
670 n_lsbs = bitmap_weight(lsb_pub, MAX_LSB_CNT);
671
672 if (n_lsbs >= ccp->cmd_q_count) {
673 /* We have enough LSBS to give every queue a private LSB.
674 * Brute force search to start with the queues that are more
675 * constrained in LSB choice. When an LSB is privately
676 * assigned, it is removed from the public mask.
677 * This is an ugly N squared algorithm with some optimization.
678 */
679 for (lsb_cnt = 1;
680 n_lsbs && (lsb_cnt <= MAX_LSB_CNT);
681 lsb_cnt++) {
682 rc = ccp_find_and_assign_lsb_to_q(ccp, lsb_cnt, n_lsbs,
683 lsb_pub);
684 if (rc < 0)
685 return -EINVAL;
686 n_lsbs = rc;
687 }
688 }
689
690 rc = 0;
691 /* What's left of the LSBs, according to the public mask, now become
692 * shared. Any zero bits in the lsb_pub mask represent an LSB region
693 * that can't be used as a shared resource, so mark the LSB slots for
694 * them as "in use".
695 */
696 bitmap_copy(qlsb, lsb_pub, MAX_LSB_CNT);
697
698 bitno = find_first_zero_bit(qlsb, MAX_LSB_CNT);
699 while (bitno < MAX_LSB_CNT) {
700 bitmap_set(ccp->lsbmap, bitno * LSB_SIZE, LSB_SIZE);
701 bitmap_set(qlsb, bitno, 1);
702 bitno = find_first_zero_bit(qlsb, MAX_LSB_CNT);
703 }
704
705 return rc;
706}
707
708static int ccp5_init(struct ccp_device *ccp)
709{
710 struct device *dev = ccp->dev;
711 struct ccp_cmd_queue *cmd_q;
712 struct dma_pool *dma_pool;
713 char dma_pool_name[MAX_DMAPOOL_NAME_LEN];
714 unsigned int qmr, qim, i;
715 u64 status;
716 u32 status_lo, status_hi;
717 int ret;
718
719 /* Find available queues */
720 qim = 0;
721 qmr = ioread32(ccp->io_regs + Q_MASK_REG);
722 for (i = 0; i < MAX_HW_QUEUES; i++) {
723
724 if (!(qmr & (1 << i)))
725 continue;
726
727 /* Allocate a dma pool for this queue */
728 snprintf(dma_pool_name, sizeof(dma_pool_name), "%s_q%d",
729 ccp->name, i);
730 dma_pool = dma_pool_create(dma_pool_name, dev,
731 CCP_DMAPOOL_MAX_SIZE,
732 CCP_DMAPOOL_ALIGN, 0);
733 if (!dma_pool) {
734 dev_err(dev, "unable to allocate dma pool\n");
735 ret = -ENOMEM;
736 }
737
738 cmd_q = &ccp->cmd_q[ccp->cmd_q_count];
739 ccp->cmd_q_count++;
740
741 cmd_q->ccp = ccp;
742 cmd_q->id = i;
743 cmd_q->dma_pool = dma_pool;
744 mutex_init(&cmd_q->q_mutex);
745
746 /* Page alignment satisfies our needs for N <= 128 */
747 BUILD_BUG_ON(COMMANDS_PER_QUEUE > 128);
748 cmd_q->qsize = Q_SIZE(Q_DESC_SIZE);
749 cmd_q->qbase = dma_zalloc_coherent(dev, cmd_q->qsize,
750 &cmd_q->qbase_dma,
751 GFP_KERNEL);
752 if (!cmd_q->qbase) {
753 dev_err(dev, "unable to allocate command queue\n");
754 ret = -ENOMEM;
755 goto e_pool;
756 }
757
758 cmd_q->qidx = 0;
759 /* Preset some register values and masks that are queue
760 * number dependent
761 */
762 cmd_q->reg_control = ccp->io_regs +
763 CMD5_Q_STATUS_INCR * (i + 1);
764 cmd_q->reg_tail_lo = cmd_q->reg_control + CMD5_Q_TAIL_LO_BASE;
765 cmd_q->reg_head_lo = cmd_q->reg_control + CMD5_Q_HEAD_LO_BASE;
766 cmd_q->reg_int_enable = cmd_q->reg_control +
767 CMD5_Q_INT_ENABLE_BASE;
768 cmd_q->reg_interrupt_status = cmd_q->reg_control +
769 CMD5_Q_INTERRUPT_STATUS_BASE;
770 cmd_q->reg_status = cmd_q->reg_control + CMD5_Q_STATUS_BASE;
771 cmd_q->reg_int_status = cmd_q->reg_control +
772 CMD5_Q_INT_STATUS_BASE;
773 cmd_q->reg_dma_status = cmd_q->reg_control +
774 CMD5_Q_DMA_STATUS_BASE;
775 cmd_q->reg_dma_read_status = cmd_q->reg_control +
776 CMD5_Q_DMA_READ_STATUS_BASE;
777 cmd_q->reg_dma_write_status = cmd_q->reg_control +
778 CMD5_Q_DMA_WRITE_STATUS_BASE;
779
780 init_waitqueue_head(&cmd_q->int_queue);
781
782 dev_dbg(dev, "queue #%u available\n", i);
783 }
Gary R Hook990672d2017-03-15 13:20:52 -0500784
Gary R Hook4b394a22016-07-26 19:10:21 -0500785 if (ccp->cmd_q_count == 0) {
786 dev_notice(dev, "no command queues available\n");
787 ret = -EIO;
788 goto e_pool;
789 }
Gary R Hook4b394a22016-07-26 19:10:21 -0500790
791 /* Turn off the queues and disable interrupts until ready */
792 for (i = 0; i < ccp->cmd_q_count; i++) {
793 cmd_q = &ccp->cmd_q[i];
794
795 cmd_q->qcontrol = 0; /* Start with nothing */
796 iowrite32(cmd_q->qcontrol, cmd_q->reg_control);
797
798 /* Disable the interrupts */
799 iowrite32(0x00, cmd_q->reg_int_enable);
800 ioread32(cmd_q->reg_int_status);
801 ioread32(cmd_q->reg_status);
802
803 /* Clear the interrupts */
Gary R Hook56467cb2017-04-20 15:24:09 -0500804 iowrite32(SUPPORTED_INTERRUPTS, cmd_q->reg_interrupt_status);
Gary R Hook4b394a22016-07-26 19:10:21 -0500805 }
806
807 dev_dbg(dev, "Requesting an IRQ...\n");
808 /* Request an irq */
809 ret = ccp->get_irq(ccp);
810 if (ret) {
811 dev_err(dev, "unable to allocate an IRQ\n");
812 goto e_pool;
813 }
814
Gary R Hook4b394a22016-07-26 19:10:21 -0500815 dev_dbg(dev, "Loading LSB map...\n");
816 /* Copy the private LSB mask to the public registers */
817 status_lo = ioread32(ccp->io_regs + LSB_PRIVATE_MASK_LO_OFFSET);
818 status_hi = ioread32(ccp->io_regs + LSB_PRIVATE_MASK_HI_OFFSET);
819 iowrite32(status_lo, ccp->io_regs + LSB_PUBLIC_MASK_LO_OFFSET);
820 iowrite32(status_hi, ccp->io_regs + LSB_PUBLIC_MASK_HI_OFFSET);
821 status = ((u64)status_hi<<30) | (u64)status_lo;
822
823 dev_dbg(dev, "Configuring virtual queues...\n");
824 /* Configure size of each virtual queue accessible to host */
825 for (i = 0; i < ccp->cmd_q_count; i++) {
826 u32 dma_addr_lo;
827 u32 dma_addr_hi;
828
829 cmd_q = &ccp->cmd_q[i];
830
831 cmd_q->qcontrol &= ~(CMD5_Q_SIZE << CMD5_Q_SHIFT);
832 cmd_q->qcontrol |= QUEUE_SIZE_VAL << CMD5_Q_SHIFT;
833
834 cmd_q->qdma_tail = cmd_q->qbase_dma;
835 dma_addr_lo = low_address(cmd_q->qdma_tail);
836 iowrite32((u32)dma_addr_lo, cmd_q->reg_tail_lo);
837 iowrite32((u32)dma_addr_lo, cmd_q->reg_head_lo);
838
839 dma_addr_hi = high_address(cmd_q->qdma_tail);
840 cmd_q->qcontrol |= (dma_addr_hi << 16);
841 iowrite32(cmd_q->qcontrol, cmd_q->reg_control);
842
843 /* Find the LSB regions accessible to the queue */
844 ccp_find_lsb_regions(cmd_q, status);
845 cmd_q->lsb = -1; /* Unassigned value */
846 }
847
848 dev_dbg(dev, "Assigning LSBs...\n");
849 ret = ccp_assign_lsbs(ccp);
850 if (ret) {
851 dev_err(dev, "Unable to assign LSBs (%d)\n", ret);
852 goto e_irq;
853 }
854
855 /* Optimization: pre-allocate LSB slots for each queue */
856 for (i = 0; i < ccp->cmd_q_count; i++) {
857 ccp->cmd_q[i].sb_key = ccp_lsb_alloc(&ccp->cmd_q[i], 2);
858 ccp->cmd_q[i].sb_ctx = ccp_lsb_alloc(&ccp->cmd_q[i], 2);
859 }
860
861 dev_dbg(dev, "Starting threads...\n");
862 /* Create a kthread for each queue */
863 for (i = 0; i < ccp->cmd_q_count; i++) {
864 struct task_struct *kthread;
865
866 cmd_q = &ccp->cmd_q[i];
867
868 kthread = kthread_create(ccp_cmd_queue_thread, cmd_q,
869 "%s-q%u", ccp->name, cmd_q->id);
870 if (IS_ERR(kthread)) {
871 dev_err(dev, "error creating queue thread (%ld)\n",
872 PTR_ERR(kthread));
873 ret = PTR_ERR(kthread);
874 goto e_kthread;
875 }
876
877 cmd_q->kthread = kthread;
878 wake_up_process(kthread);
879 }
880
881 dev_dbg(dev, "Enabling interrupts...\n");
882 /* Enable interrupts */
883 for (i = 0; i < ccp->cmd_q_count; i++) {
884 cmd_q = &ccp->cmd_q[i];
Gary R Hook56467cb2017-04-20 15:24:09 -0500885 iowrite32(SUPPORTED_INTERRUPTS, cmd_q->reg_int_enable);
Gary R Hook4b394a22016-07-26 19:10:21 -0500886 }
887
888 dev_dbg(dev, "Registering device...\n");
889 /* Put this on the unit list to make it available */
890 ccp_add_device(ccp);
891
Gary R Hook084935b2016-07-26 19:10:31 -0500892 ret = ccp_register_rng(ccp);
893 if (ret)
894 goto e_kthread;
895
Gary R Hook99d90b22016-07-26 19:10:40 -0500896 /* Register the DMA engine support */
897 ret = ccp_dmaengine_register(ccp);
898 if (ret)
Gary R Hook9ddb9dc2016-09-28 11:53:47 -0500899 goto e_hwrng;
Gary R Hook99d90b22016-07-26 19:10:40 -0500900
Gary R Hook4b394a22016-07-26 19:10:21 -0500901 return 0;
902
Gary R Hook9ddb9dc2016-09-28 11:53:47 -0500903e_hwrng:
904 ccp_unregister_rng(ccp);
905
Gary R Hook4b394a22016-07-26 19:10:21 -0500906e_kthread:
907 for (i = 0; i < ccp->cmd_q_count; i++)
908 if (ccp->cmd_q[i].kthread)
909 kthread_stop(ccp->cmd_q[i].kthread);
910
911e_irq:
912 ccp->free_irq(ccp);
913
914e_pool:
915 for (i = 0; i < ccp->cmd_q_count; i++)
916 dma_pool_destroy(ccp->cmd_q[i].dma_pool);
917
918 return ret;
919}
920
921static void ccp5_destroy(struct ccp_device *ccp)
922{
923 struct device *dev = ccp->dev;
924 struct ccp_cmd_queue *cmd_q;
925 struct ccp_cmd *cmd;
926 unsigned int i;
927
Gary R Hook99d90b22016-07-26 19:10:40 -0500928 /* Unregister the DMA engine */
929 ccp_dmaengine_unregister(ccp);
930
Gary R Hook084935b2016-07-26 19:10:31 -0500931 /* Unregister the RNG */
932 ccp_unregister_rng(ccp);
933
Gary R Hook4b394a22016-07-26 19:10:21 -0500934 /* Remove this device from the list of available units first */
935 ccp_del_device(ccp);
936
937 /* Disable and clear interrupts */
938 for (i = 0; i < ccp->cmd_q_count; i++) {
939 cmd_q = &ccp->cmd_q[i];
940
941 /* Turn off the run bit */
942 iowrite32(cmd_q->qcontrol & ~CMD5_Q_RUN, cmd_q->reg_control);
943
944 /* Disable the interrupts */
Gary R Hook56467cb2017-04-20 15:24:09 -0500945 iowrite32(SUPPORTED_INTERRUPTS, cmd_q->reg_interrupt_status);
Gary R Hook4b394a22016-07-26 19:10:21 -0500946
947 /* Clear the interrupt status */
948 iowrite32(0x00, cmd_q->reg_int_enable);
949 ioread32(cmd_q->reg_int_status);
950 ioread32(cmd_q->reg_status);
951 }
952
953 /* Stop the queue kthreads */
954 for (i = 0; i < ccp->cmd_q_count; i++)
955 if (ccp->cmd_q[i].kthread)
956 kthread_stop(ccp->cmd_q[i].kthread);
957
958 ccp->free_irq(ccp);
959
960 for (i = 0; i < ccp->cmd_q_count; i++) {
961 cmd_q = &ccp->cmd_q[i];
962 dma_free_coherent(dev, cmd_q->qsize, cmd_q->qbase,
963 cmd_q->qbase_dma);
964 }
965
966 /* Flush the cmd and backlog queue */
967 while (!list_empty(&ccp->cmd)) {
968 /* Invoke the callback directly with an error code */
969 cmd = list_first_entry(&ccp->cmd, struct ccp_cmd, entry);
970 list_del(&cmd->entry);
971 cmd->callback(cmd->data, -ENODEV);
972 }
973 while (!list_empty(&ccp->backlog)) {
974 /* Invoke the callback directly with an error code */
975 cmd = list_first_entry(&ccp->backlog, struct ccp_cmd, entry);
976 list_del(&cmd->entry);
977 cmd->callback(cmd->data, -ENODEV);
978 }
979}
980
981static irqreturn_t ccp5_irq_handler(int irq, void *data)
982{
983 struct device *dev = data;
984 struct ccp_device *ccp = dev_get_drvdata(dev);
985 u32 status;
986 unsigned int i;
987
988 for (i = 0; i < ccp->cmd_q_count; i++) {
989 struct ccp_cmd_queue *cmd_q = &ccp->cmd_q[i];
990
991 status = ioread32(cmd_q->reg_interrupt_status);
992
993 if (status) {
994 cmd_q->int_status = status;
995 cmd_q->q_status = ioread32(cmd_q->reg_status);
996 cmd_q->q_int_status = ioread32(cmd_q->reg_int_status);
997
998 /* On error, only save the first error value */
999 if ((status & INT_ERROR) && !cmd_q->cmd_error)
1000 cmd_q->cmd_error = CMD_Q_ERROR(cmd_q->q_status);
1001
1002 cmd_q->int_rcvd = 1;
1003
1004 /* Acknowledge the interrupt and wake the kthread */
Gary R Hook56467cb2017-04-20 15:24:09 -05001005 iowrite32(SUPPORTED_INTERRUPTS,
1006 cmd_q->reg_interrupt_status);
Gary R Hook4b394a22016-07-26 19:10:21 -05001007 wake_up_interruptible(&cmd_q->int_queue);
1008 }
1009 }
1010
1011 return IRQ_HANDLED;
1012}
1013
1014static void ccp5_config(struct ccp_device *ccp)
1015{
1016 /* Public side */
Gary R Hook500c0102017-01-27 15:28:45 -06001017 iowrite32(0x0, ccp->io_regs + CMD5_REQID_CONFIG_OFFSET);
Gary R Hook4b394a22016-07-26 19:10:21 -05001018}
1019
Gary R Hooke14e7d12016-07-26 19:10:49 -05001020static void ccp5other_config(struct ccp_device *ccp)
1021{
1022 int i;
1023 u32 rnd;
1024
1025 /* We own all of the queues on the NTB CCP */
1026
1027 iowrite32(0x00012D57, ccp->io_regs + CMD5_TRNG_CTL_OFFSET);
1028 iowrite32(0x00000003, ccp->io_regs + CMD5_CONFIG_0_OFFSET);
1029 for (i = 0; i < 12; i++) {
1030 rnd = ioread32(ccp->io_regs + TRNG_OUT_REG);
1031 iowrite32(rnd, ccp->io_regs + CMD5_AES_MASK_OFFSET);
1032 }
1033
1034 iowrite32(0x0000001F, ccp->io_regs + CMD5_QUEUE_MASK_OFFSET);
1035 iowrite32(0x00005B6D, ccp->io_regs + CMD5_QUEUE_PRIO_OFFSET);
1036 iowrite32(0x00000000, ccp->io_regs + CMD5_CMD_TIMEOUT_OFFSET);
1037
1038 iowrite32(0x3FFFFFFF, ccp->io_regs + LSB_PRIVATE_MASK_LO_OFFSET);
1039 iowrite32(0x000003FF, ccp->io_regs + LSB_PRIVATE_MASK_HI_OFFSET);
1040
1041 iowrite32(0x00108823, ccp->io_regs + CMD5_CLK_GATE_CTL_OFFSET);
1042
1043 ccp5_config(ccp);
1044}
1045
1046/* Version 5 adds some function, but is essentially the same as v5 */
Gary R Hook4b394a22016-07-26 19:10:21 -05001047static const struct ccp_actions ccp5_actions = {
1048 .aes = ccp5_perform_aes,
1049 .xts_aes = ccp5_perform_xts_aes,
1050 .sha = ccp5_perform_sha,
Gary R Hook990672d2017-03-15 13:20:52 -05001051 .des3 = ccp5_perform_des3,
Gary R Hook4b394a22016-07-26 19:10:21 -05001052 .rsa = ccp5_perform_rsa,
1053 .passthru = ccp5_perform_passthru,
1054 .ecc = ccp5_perform_ecc,
1055 .sballoc = ccp_lsb_alloc,
1056 .sbfree = ccp_lsb_free,
1057 .init = ccp5_init,
1058 .destroy = ccp5_destroy,
1059 .get_free_slots = ccp5_get_free_slots,
1060 .irqhandler = ccp5_irq_handler,
1061};
1062
Gary R Hook9ddb9dc2016-09-28 11:53:47 -05001063const struct ccp_vdata ccpv5a = {
Gary R Hook4b394a22016-07-26 19:10:21 -05001064 .version = CCP_VERSION(5, 0),
1065 .setup = ccp5_config,
1066 .perform = &ccp5_actions,
1067 .bar = 2,
1068 .offset = 0x0,
1069};
Gary R Hooke14e7d12016-07-26 19:10:49 -05001070
Gary R Hook9ddb9dc2016-09-28 11:53:47 -05001071const struct ccp_vdata ccpv5b = {
Gary R Hooke14e7d12016-07-26 19:10:49 -05001072 .version = CCP_VERSION(5, 0),
Gary R Hookefc989f2017-03-23 12:53:30 -05001073 .dma_chan_attr = DMA_PRIVATE,
Gary R Hooke14e7d12016-07-26 19:10:49 -05001074 .setup = ccp5other_config,
1075 .perform = &ccp5_actions,
1076 .bar = 2,
1077 .offset = 0x0,
1078};