]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/crypto/caam/ctrl.c
crypto: caam - check return code of dma_set_mask_and_coherent()
[mirror_ubuntu-artful-kernel.git] / drivers / crypto / caam / ctrl.c
CommitLineData
fb4562b2 1/* * CAAM control-plane driver backend
8e8ec596
KP
2 * Controller-level driver, kernel property detection, initialization
3 *
281922a1 4 * Copyright 2008-2012 Freescale Semiconductor, Inc.
8e8ec596
KP
5 */
6
4776d381 7#include <linux/device.h>
5af50730
RH
8#include <linux/of_address.h>
9#include <linux/of_irq.h>
10
8e8ec596
KP
11#include "compat.h"
12#include "regs.h"
13#include "intern.h"
14#include "jr.h"
281922a1 15#include "desc_constr.h"
1ac6b731 16#include "ctrl.h"
8e8ec596 17
261ea058
HG
18bool caam_little_end;
19EXPORT_SYMBOL(caam_little_end);
20
24821c46 21/*
6c3af955 22 * i.MX targets tend to have clock control subsystems that can
24821c46
VM
23 * enable/disable clocking to our device.
24 */
6c3af955 25#ifdef CONFIG_CRYPTO_DEV_FSL_CAAM_IMX
24821c46
VM
26static inline struct clk *caam_drv_identify_clk(struct device *dev,
27 char *clk_name)
28{
29 return devm_clk_get(dev, clk_name);
30}
31#else
32static inline struct clk *caam_drv_identify_clk(struct device *dev,
33 char *clk_name)
34{
35 return NULL;
36}
37#endif
38
281922a1
KP
39/*
40 * Descriptor to instantiate RNG State Handle 0 in normal mode and
41 * load the JDKEK, TDKEK and TDSK registers
42 */
1005bccd 43static void build_instantiation_desc(u32 *desc, int handle, int do_sk)
281922a1 44{
1005bccd 45 u32 *jump_cmd, op_flags;
281922a1
KP
46
47 init_job_desc(desc, 0);
48
1005bccd
AP
49 op_flags = OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
50 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INIT;
51
281922a1 52 /* INIT RNG in non-test mode */
1005bccd 53 append_operation(desc, op_flags);
281922a1 54
1005bccd
AP
55 if (!handle && do_sk) {
56 /*
57 * For SH0, Secure Keys must be generated as well
58 */
281922a1 59
1005bccd
AP
60 /* wait for done */
61 jump_cmd = append_jump(desc, JUMP_CLASS_CLASS1);
62 set_jump_tgt_here(desc, jump_cmd);
281922a1 63
1005bccd
AP
64 /*
65 * load 1 to clear written reg:
66 * resets the done interrrupt and returns the RNG to idle.
67 */
68 append_load_imm_u32(desc, 1, LDST_SRCDST_WORD_CLRW);
69
70 /* Initialize State Handle */
71 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
72 OP_ALG_AAI_RNG4_SK);
73 }
281922a1 74
d5e4e999 75 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
281922a1 76}
281922a1 77
b1f996e0 78/* Descriptor for deinstantiation of State Handle 0 of the RNG block. */
1005bccd 79static void build_deinstantiation_desc(u32 *desc, int handle)
b1f996e0
AP
80{
81 init_job_desc(desc, 0);
281922a1 82
b1f996e0 83 /* Uninstantiate State Handle 0 */
281922a1 84 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
1005bccd 85 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INITFINAL);
b1f996e0
AP
86
87 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
281922a1
KP
88}
89
04cddbfe
AP
90/*
91 * run_descriptor_deco0 - runs a descriptor on DECO0, under direct control of
92 * the software (no JR/QI used).
93 * @ctrldev - pointer to device
1005bccd
AP
94 * @status - descriptor status, after being run
95 *
04cddbfe
AP
96 * Return: - 0 if no error occurred
97 * - -ENODEV if the DECO couldn't be acquired
98 * - -EAGAIN if an error occurred while executing the descriptor
99 */
1005bccd
AP
100static inline int run_descriptor_deco0(struct device *ctrldev, u32 *desc,
101 u32 *status)
281922a1 102{
997ad290 103 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
fb4562b2
NNL
104 struct caam_ctrl __iomem *ctrl = ctrlpriv->ctrl;
105 struct caam_deco __iomem *deco = ctrlpriv->deco;
997ad290 106 unsigned int timeout = 100000;
04cddbfe 107 u32 deco_dbg_reg, flags;
b1f996e0 108 int i;
997ad290 109
17157c90 110
8f1da7b9 111 if (ctrlpriv->virt_en == 1) {
261ea058 112 clrsetbits_32(&ctrl->deco_rsr, 0, DECORSR_JR0);
17157c90 113
fb4562b2 114 while (!(rd_reg32(&ctrl->deco_rsr) & DECORSR_VALID) &&
8f1da7b9
HG
115 --timeout)
116 cpu_relax();
117
118 timeout = 100000;
119 }
17157c90 120
261ea058 121 clrsetbits_32(&ctrl->deco_rq, 0, DECORR_RQD0ENABLE);
997ad290 122
fb4562b2 123 while (!(rd_reg32(&ctrl->deco_rq) & DECORR_DEN0) &&
997ad290
RG
124 --timeout)
125 cpu_relax();
126
127 if (!timeout) {
128 dev_err(ctrldev, "failed to acquire DECO 0\n");
261ea058 129 clrsetbits_32(&ctrl->deco_rq, DECORR_RQD0ENABLE, 0);
04cddbfe 130 return -ENODEV;
281922a1
KP
131 }
132
997ad290 133 for (i = 0; i < desc_len(desc); i++)
261ea058 134 wr_reg32(&deco->descbuf[i], caam32_to_cpu(*(desc + i)));
281922a1 135
04cddbfe
AP
136 flags = DECO_JQCR_WHL;
137 /*
138 * If the descriptor length is longer than 4 words, then the
139 * FOUR bit in JRCTRL register must be set.
140 */
141 if (desc_len(desc) >= 4)
142 flags |= DECO_JQCR_FOUR;
143
144 /* Instruct the DECO to execute it */
261ea058 145 clrsetbits_32(&deco->jr_ctl_hi, 0, flags);
997ad290
RG
146
147 timeout = 10000000;
84cf4827 148 do {
fb4562b2 149 deco_dbg_reg = rd_reg32(&deco->desc_dbg);
84cf4827
AP
150 /*
151 * If an error occured in the descriptor, then
152 * the DECO status field will be set to 0x0D
153 */
154 if ((deco_dbg_reg & DESC_DBG_DECO_STAT_MASK) ==
155 DESC_DBG_DECO_STAT_HOST_ERR)
156 break;
997ad290 157 cpu_relax();
84cf4827 158 } while ((deco_dbg_reg & DESC_DBG_DECO_STAT_VALID) && --timeout);
281922a1 159
fb4562b2 160 *status = rd_reg32(&deco->op_status_hi) &
1005bccd 161 DECO_OP_STATUS_HI_ERR_MASK;
997ad290 162
17157c90 163 if (ctrlpriv->virt_en == 1)
261ea058 164 clrsetbits_32(&ctrl->deco_rsr, DECORSR_JR0, 0);
17157c90 165
04cddbfe 166 /* Mark the DECO as free */
261ea058 167 clrsetbits_32(&ctrl->deco_rq, DECORR_RQD0ENABLE, 0);
04cddbfe
AP
168
169 if (!timeout)
170 return -EAGAIN;
171
172 return 0;
173}
174
175/*
176 * instantiate_rng - builds and executes a descriptor on DECO0,
177 * which initializes the RNG block.
178 * @ctrldev - pointer to device
1005bccd
AP
179 * @state_handle_mask - bitmask containing the instantiation status
180 * for the RNG4 state handles which exist in
181 * the RNG4 block: 1 if it's been instantiated
182 * by an external entry, 0 otherwise.
183 * @gen_sk - generate data to be loaded into the JDKEK, TDKEK and TDSK;
184 * Caution: this can be done only once; if the keys need to be
185 * regenerated, a POR is required
186 *
04cddbfe
AP
187 * Return: - 0 if no error occurred
188 * - -ENOMEM if there isn't enough memory to allocate the descriptor
189 * - -ENODEV if DECO0 couldn't be acquired
190 * - -EAGAIN if an error occurred when executing the descriptor
191 * f.i. there was a RNG hardware error due to not "good enough"
192 * entropy being aquired.
193 */
1005bccd
AP
194static int instantiate_rng(struct device *ctrldev, int state_handle_mask,
195 int gen_sk)
04cddbfe 196{
1005bccd 197 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
fb4562b2 198 struct caam_ctrl __iomem *ctrl;
62743a41 199 u32 *desc, status = 0, rdsta_val;
1005bccd
AP
200 int ret = 0, sh_idx;
201
fb4562b2 202 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
04cddbfe
AP
203 desc = kmalloc(CAAM_CMD_SZ * 7, GFP_KERNEL);
204 if (!desc)
205 return -ENOMEM;
04cddbfe 206
1005bccd
AP
207 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
208 /*
209 * If the corresponding bit is set, this state handle
210 * was initialized by somebody else, so it's left alone.
211 */
212 if ((1 << sh_idx) & state_handle_mask)
213 continue;
214
215 /* Create the descriptor for instantiating RNG State Handle */
216 build_instantiation_desc(desc, sh_idx, gen_sk);
217
218 /* Try to run it through DECO0 */
219 ret = run_descriptor_deco0(ctrldev, desc, &status);
220
221 /*
222 * If ret is not 0, or descriptor status is not 0, then
223 * something went wrong. No need to try the next state
224 * handle (if available), bail out here.
225 * Also, if for some reason, the State Handle didn't get
226 * instantiated although the descriptor has finished
227 * without any error (HW optimizations for later
228 * CAAM eras), then try again.
229 */
467707b2 230 rdsta_val = rd_reg32(&ctrl->r4tst[0].rdsta) & RDSTA_IFMASK;
62743a41
HG
231 if ((status && status != JRSTA_SSRC_JUMP_HALT_CC) ||
232 !(rdsta_val & (1 << sh_idx)))
1005bccd
AP
233 ret = -EAGAIN;
234 if (ret)
235 break;
1005bccd
AP
236 dev_info(ctrldev, "Instantiated RNG4 SH%d\n", sh_idx);
237 /* Clear the contents before recreating the descriptor */
238 memset(desc, 0x00, CAAM_CMD_SZ * 7);
239 }
04cddbfe 240
997ad290 241 kfree(desc);
04cddbfe 242
281922a1
KP
243 return ret;
244}
245
246/*
b1f996e0
AP
247 * deinstantiate_rng - builds and executes a descriptor on DECO0,
248 * which deinitializes the RNG block.
249 * @ctrldev - pointer to device
1005bccd
AP
250 * @state_handle_mask - bitmask containing the instantiation status
251 * for the RNG4 state handles which exist in
252 * the RNG4 block: 1 if it's been instantiated
b1f996e0
AP
253 *
254 * Return: - 0 if no error occurred
255 * - -ENOMEM if there isn't enough memory to allocate the descriptor
256 * - -ENODEV if DECO0 couldn't be acquired
257 * - -EAGAIN if an error occurred when executing the descriptor
281922a1 258 */
1005bccd 259static int deinstantiate_rng(struct device *ctrldev, int state_handle_mask)
b1f996e0 260{
1005bccd
AP
261 u32 *desc, status;
262 int sh_idx, ret = 0;
b1f996e0
AP
263
264 desc = kmalloc(CAAM_CMD_SZ * 3, GFP_KERNEL);
265 if (!desc)
266 return -ENOMEM;
267
1005bccd
AP
268 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
269 /*
270 * If the corresponding bit is set, then it means the state
271 * handle was initialized by us, and thus it needs to be
272 * deintialized as well
273 */
274 if ((1 << sh_idx) & state_handle_mask) {
275 /*
276 * Create the descriptor for deinstantating this state
277 * handle
278 */
279 build_deinstantiation_desc(desc, sh_idx);
280
281 /* Try to run it through DECO0 */
282 ret = run_descriptor_deco0(ctrldev, desc, &status);
283
284 if (ret || status) {
285 dev_err(ctrldev,
286 "Failed to deinstantiate RNG4 SH%d\n",
287 sh_idx);
288 break;
289 }
290 dev_info(ctrldev, "Deinstantiated RNG4 SH%d\n", sh_idx);
291 }
292 }
b1f996e0
AP
293
294 kfree(desc);
295
296 return ret;
297}
298
04cddbfe
AP
299static int caam_remove(struct platform_device *pdev)
300{
301 struct device *ctrldev;
302 struct caam_drv_private *ctrlpriv;
fb4562b2 303 struct caam_ctrl __iomem *ctrl;
e558017b 304 int ring;
04cddbfe
AP
305
306 ctrldev = &pdev->dev;
307 ctrlpriv = dev_get_drvdata(ctrldev);
fb4562b2 308 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
04cddbfe 309
313ea293 310 /* Remove platform devices for JobRs */
04cddbfe 311 for (ring = 0; ring < ctrlpriv->total_jobrs; ring++) {
313ea293
RG
312 if (ctrlpriv->jrpdev[ring])
313 of_device_unregister(ctrlpriv->jrpdev[ring]);
04cddbfe
AP
314 }
315
1005bccd
AP
316 /* De-initialize RNG state handles initialized by this driver. */
317 if (ctrlpriv->rng4_sh_init)
318 deinstantiate_rng(ctrldev, ctrlpriv->rng4_sh_init);
b1f996e0 319
04cddbfe
AP
320 /* Shut down debug views */
321#ifdef CONFIG_DEBUG_FS
322 debugfs_remove_recursive(ctrlpriv->dfs_root);
323#endif
324
325 /* Unmap controller region */
f4ec6aa5 326 iounmap(ctrl);
04cddbfe 327
24821c46
VM
328 /* shut clocks off before finalizing shutdown */
329 clk_disable_unprepare(ctrlpriv->caam_ipg);
330 clk_disable_unprepare(ctrlpriv->caam_mem);
331 clk_disable_unprepare(ctrlpriv->caam_aclk);
b80609a1 332 if (ctrlpriv->caam_emi_slow)
4e518816 333 clk_disable_unprepare(ctrlpriv->caam_emi_slow);
e558017b 334 return 0;
281922a1
KP
335}
336
337/*
84cf4827
AP
338 * kick_trng - sets the various parameters for enabling the initialization
339 * of the RNG4 block in CAAM
340 * @pdev - pointer to the platform device
341 * @ent_delay - Defines the length (in system clocks) of each entropy sample.
281922a1 342 */
84cf4827 343static void kick_trng(struct platform_device *pdev, int ent_delay)
281922a1
KP
344{
345 struct device *ctrldev = &pdev->dev;
346 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
fb4562b2 347 struct caam_ctrl __iomem *ctrl;
281922a1
KP
348 struct rng4tst __iomem *r4tst;
349 u32 val;
350
fb4562b2
NNL
351 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
352 r4tst = &ctrl->r4tst[0];
281922a1
KP
353
354 /* put RNG4 into program mode */
261ea058 355 clrsetbits_32(&r4tst->rtmctl, 0, RTMCTL_PRGM);
84cf4827
AP
356
357 /*
358 * Performance-wise, it does not make sense to
359 * set the delay to a value that is lower
360 * than the last one that worked (i.e. the state handles
361 * were instantiated properly. Thus, instead of wasting
362 * time trying to set the values controlling the sample
363 * frequency, the function simply returns.
364 */
365 val = (rd_reg32(&r4tst->rtsdctl) & RTSDCTL_ENT_DLY_MASK)
366 >> RTSDCTL_ENT_DLY_SHIFT;
8439e94f
HG
367 if (ent_delay <= val)
368 goto start_rng;
84cf4827 369
281922a1 370 val = rd_reg32(&r4tst->rtsdctl);
84cf4827
AP
371 val = (val & ~RTSDCTL_ENT_DLY_MASK) |
372 (ent_delay << RTSDCTL_ENT_DLY_SHIFT);
281922a1 373 wr_reg32(&r4tst->rtsdctl, val);
84cf4827
AP
374 /* min. freq. count, equal to 1/4 of the entropy sample length */
375 wr_reg32(&r4tst->rtfrqmin, ent_delay >> 2);
b061f3fe
AP
376 /* disable maximum frequency count */
377 wr_reg32(&r4tst->rtfrqmax, RTFRQMAX_DISABLE);
e5ffbfc1
AP
378 /* read the control register */
379 val = rd_reg32(&r4tst->rtmctl);
8439e94f 380start_rng:
e5ffbfc1
AP
381 /*
382 * select raw sampling in both entropy shifter
8439e94f 383 * and statistical checker; ; put RNG4 into run mode
e5ffbfc1 384 */
8439e94f 385 clrsetbits_32(&r4tst->rtmctl, RTMCTL_PRGM, RTMCTL_SAMP_MODE_RAW_ES_SC);
281922a1
KP
386}
387
82c2f960
AP
388/**
389 * caam_get_era() - Return the ERA of the SEC on SoC, based
883619a9 390 * on "sec-era" propery in the DTS. This property is updated by u-boot.
82c2f960 391 **/
883619a9 392int caam_get_era(void)
82c2f960 393{
883619a9 394 struct device_node *caam_node;
e27513eb
AP
395 int ret;
396 u32 prop;
397
398 caam_node = of_find_compatible_node(NULL, NULL, "fsl,sec-v4.0");
399 ret = of_property_read_u32(caam_node, "fsl,sec-era", &prop);
400 of_node_put(caam_node);
82c2f960 401
287980e4 402 return ret ? -ENOTSUPP : prop;
82c2f960
AP
403}
404EXPORT_SYMBOL(caam_get_era);
405
261ea058
HG
406#ifdef CONFIG_DEBUG_FS
407static int caam_debugfs_u64_get(void *data, u64 *val)
408{
409 *val = caam64_to_cpu(*(u64 *)data);
410 return 0;
411}
412
413static int caam_debugfs_u32_get(void *data, u64 *val)
414{
415 *val = caam32_to_cpu(*(u32 *)data);
416 return 0;
417}
418
419DEFINE_SIMPLE_ATTRIBUTE(caam_fops_u32_ro, caam_debugfs_u32_get, NULL, "%llu\n");
420DEFINE_SIMPLE_ATTRIBUTE(caam_fops_u64_ro, caam_debugfs_u64_get, NULL, "%llu\n");
421#endif
422
8e8ec596 423/* Probe routine for CAAM top (controller) level */
2930d497 424static int caam_probe(struct platform_device *pdev)
8e8ec596 425{
1005bccd 426 int ret, ring, rspec, gen_sk, ent_delay = RTSDCTL_ENT_DLY_MIN;
82c2f960 427 u64 caam_id;
8e8ec596
KP
428 struct device *dev;
429 struct device_node *nprop, *np;
430 struct caam_ctrl __iomem *ctrl;
8e8ec596 431 struct caam_drv_private *ctrlpriv;
24821c46 432 struct clk *clk;
23457bc9
KP
433#ifdef CONFIG_DEBUG_FS
434 struct caam_perfmon *perfmon;
435#endif
17157c90 436 u32 scfgr, comp_params;
eb1139cd 437 u32 cha_vid_ls;
fb4562b2
NNL
438 int pg_size;
439 int BLOCK_OFFSET = 0;
8e8ec596 440
9c4f9733 441 ctrlpriv = devm_kzalloc(&pdev->dev, sizeof(*ctrlpriv), GFP_KERNEL);
8e8ec596
KP
442 if (!ctrlpriv)
443 return -ENOMEM;
444
445 dev = &pdev->dev;
446 dev_set_drvdata(dev, ctrlpriv);
447 ctrlpriv->pdev = pdev;
448 nprop = pdev->dev.of_node;
449
24821c46
VM
450 /* Enable clocking */
451 clk = caam_drv_identify_clk(&pdev->dev, "ipg");
452 if (IS_ERR(clk)) {
453 ret = PTR_ERR(clk);
454 dev_err(&pdev->dev,
455 "can't identify CAAM ipg clk: %d\n", ret);
a3c09550 456 return ret;
24821c46
VM
457 }
458 ctrlpriv->caam_ipg = clk;
459
460 clk = caam_drv_identify_clk(&pdev->dev, "mem");
461 if (IS_ERR(clk)) {
462 ret = PTR_ERR(clk);
463 dev_err(&pdev->dev,
464 "can't identify CAAM mem clk: %d\n", ret);
a3c09550 465 return ret;
24821c46
VM
466 }
467 ctrlpriv->caam_mem = clk;
468
469 clk = caam_drv_identify_clk(&pdev->dev, "aclk");
470 if (IS_ERR(clk)) {
471 ret = PTR_ERR(clk);
472 dev_err(&pdev->dev,
473 "can't identify CAAM aclk clk: %d\n", ret);
a3c09550 474 return ret;
24821c46
VM
475 }
476 ctrlpriv->caam_aclk = clk;
477
4e518816
MF
478 if (!of_machine_is_compatible("fsl,imx6ul")) {
479 clk = caam_drv_identify_clk(&pdev->dev, "emi_slow");
480 if (IS_ERR(clk)) {
481 ret = PTR_ERR(clk);
482 dev_err(&pdev->dev,
483 "can't identify CAAM emi_slow clk: %d\n", ret);
484 return ret;
485 }
486 ctrlpriv->caam_emi_slow = clk;
24821c46 487 }
24821c46
VM
488
489 ret = clk_prepare_enable(ctrlpriv->caam_ipg);
490 if (ret < 0) {
491 dev_err(&pdev->dev, "can't enable CAAM ipg clock: %d\n", ret);
31f44d15 492 return ret;
24821c46
VM
493 }
494
495 ret = clk_prepare_enable(ctrlpriv->caam_mem);
496 if (ret < 0) {
497 dev_err(&pdev->dev, "can't enable CAAM secure mem clock: %d\n",
498 ret);
31f44d15 499 goto disable_caam_ipg;
24821c46
VM
500 }
501
502 ret = clk_prepare_enable(ctrlpriv->caam_aclk);
503 if (ret < 0) {
504 dev_err(&pdev->dev, "can't enable CAAM aclk clock: %d\n", ret);
31f44d15 505 goto disable_caam_mem;
24821c46
VM
506 }
507
b80609a1 508 if (ctrlpriv->caam_emi_slow) {
4e518816
MF
509 ret = clk_prepare_enable(ctrlpriv->caam_emi_slow);
510 if (ret < 0) {
511 dev_err(&pdev->dev, "can't enable CAAM emi slow clock: %d\n",
512 ret);
513 goto disable_caam_aclk;
514 }
24821c46
VM
515 }
516
8e8ec596
KP
517 /* Get configuration properties from device tree */
518 /* First, get register page */
519 ctrl = of_iomap(nprop, 0);
520 if (ctrl == NULL) {
521 dev_err(dev, "caam: of_iomap() failed\n");
31f44d15
FE
522 ret = -ENOMEM;
523 goto disable_caam_emi_slow;
8e8ec596 524 }
261ea058
HG
525
526 caam_little_end = !(bool)(rd_reg32(&ctrl->perfmon.status) &
527 (CSTA_PLEND | CSTA_ALT_PLEND));
528
fb4562b2
NNL
529 /* Finding the page size for using the CTPR_MS register */
530 comp_params = rd_reg32(&ctrl->perfmon.comp_parms_ms);
531 pg_size = (comp_params & CTPR_MS_PG_SZ_MASK) >> CTPR_MS_PG_SZ_SHIFT;
8e8ec596 532
fb4562b2
NNL
533 /* Allocating the BLOCK_OFFSET based on the supported page size on
534 * the platform
535 */
536 if (pg_size == 0)
537 BLOCK_OFFSET = PG_SIZE_4K;
538 else
539 BLOCK_OFFSET = PG_SIZE_64K;
540
8439e94f
HG
541 ctrlpriv->ctrl = (struct caam_ctrl __iomem __force *)ctrl;
542 ctrlpriv->assure = (struct caam_assurance __iomem __force *)
543 ((__force uint8_t *)ctrl +
fb4562b2
NNL
544 BLOCK_OFFSET * ASSURE_BLOCK_NUMBER
545 );
8439e94f
HG
546 ctrlpriv->deco = (struct caam_deco __iomem __force *)
547 ((__force uint8_t *)ctrl +
fb4562b2
NNL
548 BLOCK_OFFSET * DECO_BLOCK_NUMBER
549 );
8e8ec596
KP
550
551 /* Get the IRQ of the controller (for security violations only) */
f7578496 552 ctrlpriv->secvio_irq = irq_of_parse_and_map(nprop, 0);
8e8ec596
KP
553
554 /*
555 * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel,
e13af18a 556 * long pointers in master configuration register
8e8ec596 557 */
39eaf759
HG
558 clrsetbits_32(&ctrl->mcr, MCFGR_AWCACHE_MASK | MCFGR_LONG_PTR,
559 MCFGR_AWCACHE_CACH | MCFGR_AWCACHE_BUFF |
560 MCFGR_WDENABLE | MCFGR_LARGE_BURST |
e7a7104e 561 (sizeof(dma_addr_t) == sizeof(u64) ? MCFGR_LONG_PTR : 0));
8e8ec596 562
17157c90
RG
563 /*
564 * Read the Compile Time paramters and SCFGR to determine
565 * if Virtualization is enabled for this platform
566 */
fb4562b2 567 scfgr = rd_reg32(&ctrl->scfgr);
17157c90
RG
568
569 ctrlpriv->virt_en = 0;
570 if (comp_params & CTPR_MS_VIRT_EN_INCL) {
571 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or
572 * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SCFGR_VIRT_EN = 1
573 */
574 if ((comp_params & CTPR_MS_VIRT_EN_POR) ||
575 (!(comp_params & CTPR_MS_VIRT_EN_POR) &&
576 (scfgr & SCFGR_VIRT_EN)))
577 ctrlpriv->virt_en = 1;
578 } else {
579 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */
580 if (comp_params & CTPR_MS_VIRT_EN_POR)
581 ctrlpriv->virt_en = 1;
582 }
583
584 if (ctrlpriv->virt_en == 1)
261ea058
HG
585 clrsetbits_32(&ctrl->jrstart, 0, JRSTART_JR0_START |
586 JRSTART_JR1_START | JRSTART_JR2_START |
587 JRSTART_JR3_START);
17157c90 588
b3b5fce7 589 if (sizeof(dma_addr_t) == sizeof(u64)) {
e13af18a 590 if (of_device_is_compatible(nprop, "fsl,sec-v5.0"))
b3b5fce7 591 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(40));
e13af18a 592 else
b3b5fce7
HG
593 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(36));
594 } else {
595 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
596 }
597 if (ret) {
598 dev_err(dev, "dma_set_mask_and_coherent failed (%d)\n", ret);
599 goto iounmap_ctrl;
600 }
8e8ec596 601
8e8ec596
KP
602 /*
603 * Detect and enable JobRs
604 * First, find out how many ring spec'ed, allocate references
605 * for all, then go probe each one.
606 */
607 rspec = 0;
0a63b09d
NL
608 for_each_available_child_of_node(nprop, np)
609 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
610 of_device_is_compatible(np, "fsl,sec4.0-job-ring"))
a0ea0f6d 611 rspec++;
a0ea0f6d 612
9c4f9733
FE
613 ctrlpriv->jrpdev = devm_kcalloc(&pdev->dev, rspec,
614 sizeof(*ctrlpriv->jrpdev), GFP_KERNEL);
313ea293 615 if (ctrlpriv->jrpdev == NULL) {
31f44d15
FE
616 ret = -ENOMEM;
617 goto iounmap_ctrl;
8e8ec596
KP
618 }
619
620 ring = 0;
621 ctrlpriv->total_jobrs = 0;
0a63b09d
NL
622 for_each_available_child_of_node(nprop, np)
623 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
624 of_device_is_compatible(np, "fsl,sec4.0-job-ring")) {
313ea293
RG
625 ctrlpriv->jrpdev[ring] =
626 of_platform_device_create(np, NULL, dev);
627 if (!ctrlpriv->jrpdev[ring]) {
628 pr_warn("JR%d Platform device creation error\n",
629 ring);
630 continue;
631 }
8439e94f
HG
632 ctrlpriv->jr[ring] = (struct caam_job_ring __iomem __force *)
633 ((__force uint8_t *)ctrl +
fb4562b2
NNL
634 (ring + JR_BLOCK_NUMBER) *
635 BLOCK_OFFSET
636 );
a0ea0f6d
SL
637 ctrlpriv->total_jobrs++;
638 ring++;
fb4562b2 639 }
8e8ec596
KP
640
641 /* Check to see if QI present. If so, enable */
eb1139cd 642 ctrlpriv->qi_present =
fb4562b2 643 !!(rd_reg32(&ctrl->perfmon.comp_parms_ms) &
eb1139cd 644 CTPR_MS_QI_MASK);
8e8ec596 645 if (ctrlpriv->qi_present) {
8439e94f
HG
646 ctrlpriv->qi = (struct caam_queue_if __iomem __force *)
647 ((__force uint8_t *)ctrl +
fb4562b2
NNL
648 BLOCK_OFFSET * QI_BLOCK_NUMBER
649 );
8e8ec596 650 /* This is all that's required to physically enable QI */
fb4562b2 651 wr_reg32(&ctrlpriv->qi->qi_control_lo, QICTL_DQEN);
8e8ec596
KP
652 }
653
654 /* If no QI and no rings specified, quit and go home */
655 if ((!ctrlpriv->qi_present) && (!ctrlpriv->total_jobrs)) {
656 dev_err(dev, "no queues configured, terminating\n");
31f44d15
FE
657 ret = -ENOMEM;
658 goto caam_remove;
8e8ec596
KP
659 }
660
fb4562b2 661 cha_vid_ls = rd_reg32(&ctrl->perfmon.cha_id_ls);
986dfbcf 662
281922a1 663 /*
986dfbcf 664 * If SEC has RNG version >= 4 and RNG state handle has not been
84cf4827 665 * already instantiated, do RNG instantiation
281922a1 666 */
eb1139cd 667 if ((cha_vid_ls & CHA_ID_LS_RNG_MASK) >> CHA_ID_LS_RNG_SHIFT >= 4) {
1005bccd 668 ctrlpriv->rng4_sh_init =
fb4562b2 669 rd_reg32(&ctrl->r4tst[0].rdsta);
1005bccd
AP
670 /*
671 * If the secure keys (TDKEK, JDKEK, TDSK), were already
672 * generated, signal this to the function that is instantiating
673 * the state handles. An error would occur if RNG4 attempts
674 * to regenerate these keys before the next POR.
675 */
676 gen_sk = ctrlpriv->rng4_sh_init & RDSTA_SKVN ? 0 : 1;
677 ctrlpriv->rng4_sh_init &= RDSTA_IFMASK;
84cf4827 678 do {
1005bccd 679 int inst_handles =
fb4562b2 680 rd_reg32(&ctrl->r4tst[0].rdsta) &
1005bccd
AP
681 RDSTA_IFMASK;
682 /*
683 * If either SH were instantiated by somebody else
684 * (e.g. u-boot) then it is assumed that the entropy
685 * parameters are properly set and thus the function
686 * setting these (kick_trng(...)) is skipped.
687 * Also, if a handle was instantiated, do not change
688 * the TRNG parameters.
689 */
690 if (!(ctrlpriv->rng4_sh_init || inst_handles)) {
eeaa1724
AP
691 dev_info(dev,
692 "Entropy delay = %u\n",
693 ent_delay);
1005bccd
AP
694 kick_trng(pdev, ent_delay);
695 ent_delay += 400;
696 }
697 /*
698 * if instantiate_rng(...) fails, the loop will rerun
699 * and the kick_trng(...) function will modfiy the
700 * upper and lower limits of the entropy sampling
701 * interval, leading to a sucessful initialization of
702 * the RNG.
703 */
704 ret = instantiate_rng(dev, inst_handles,
705 gen_sk);
eeaa1724
AP
706 if (ret == -EAGAIN)
707 /*
708 * if here, the loop will rerun,
709 * so don't hog the CPU
710 */
711 cpu_relax();
04cddbfe 712 } while ((ret == -EAGAIN) && (ent_delay < RTSDCTL_ENT_DLY_MAX));
281922a1 713 if (ret) {
84cf4827 714 dev_err(dev, "failed to instantiate RNG");
31f44d15 715 goto caam_remove;
281922a1 716 }
1005bccd
AP
717 /*
718 * Set handles init'ed by this module as the complement of the
719 * already initialized ones
720 */
721 ctrlpriv->rng4_sh_init = ~ctrlpriv->rng4_sh_init & RDSTA_IFMASK;
575c1bd5
VG
722
723 /* Enable RDB bit so that RNG works faster */
261ea058 724 clrsetbits_32(&ctrl->scfgr, 0, SCFGR_RDBENABLE);
281922a1
KP
725 }
726
8e8ec596
KP
727 /* NOTE: RTIC detection ought to go here, around Si time */
728
fb4562b2
NNL
729 caam_id = (u64)rd_reg32(&ctrl->perfmon.caam_id_ms) << 32 |
730 (u64)rd_reg32(&ctrl->perfmon.caam_id_ls);
82c2f960 731
8e8ec596 732 /* Report "alive" for developer to see */
82c2f960 733 dev_info(dev, "device ID = 0x%016llx (Era %d)\n", caam_id,
883619a9 734 caam_get_era());
8e8ec596
KP
735 dev_info(dev, "job rings = %d, qi = %d\n",
736 ctrlpriv->total_jobrs, ctrlpriv->qi_present);
737
738#ifdef CONFIG_DEBUG_FS
739 /*
740 * FIXME: needs better naming distinction, as some amalgamation of
741 * "caam" and nprop->full_name. The OF name isn't distinctive,
742 * but does separate instances
743 */
744 perfmon = (struct caam_perfmon __force *)&ctrl->perfmon;
745
178f827a 746 ctrlpriv->dfs_root = debugfs_create_dir(dev_name(dev), NULL);
8e8ec596
KP
747 ctrlpriv->ctl = debugfs_create_dir("ctl", ctrlpriv->dfs_root);
748
749 /* Controller-level - performance monitor counters */
261ea058 750
8e8ec596 751 ctrlpriv->ctl_rq_dequeued =
261ea058
HG
752 debugfs_create_file("rq_dequeued",
753 S_IRUSR | S_IRGRP | S_IROTH,
754 ctrlpriv->ctl, &perfmon->req_dequeued,
755 &caam_fops_u64_ro);
8e8ec596 756 ctrlpriv->ctl_ob_enc_req =
261ea058
HG
757 debugfs_create_file("ob_rq_encrypted",
758 S_IRUSR | S_IRGRP | S_IROTH,
759 ctrlpriv->ctl, &perfmon->ob_enc_req,
760 &caam_fops_u64_ro);
8e8ec596 761 ctrlpriv->ctl_ib_dec_req =
261ea058
HG
762 debugfs_create_file("ib_rq_decrypted",
763 S_IRUSR | S_IRGRP | S_IROTH,
764 ctrlpriv->ctl, &perfmon->ib_dec_req,
765 &caam_fops_u64_ro);
8e8ec596 766 ctrlpriv->ctl_ob_enc_bytes =
261ea058
HG
767 debugfs_create_file("ob_bytes_encrypted",
768 S_IRUSR | S_IRGRP | S_IROTH,
769 ctrlpriv->ctl, &perfmon->ob_enc_bytes,
770 &caam_fops_u64_ro);
8e8ec596 771 ctrlpriv->ctl_ob_prot_bytes =
261ea058
HG
772 debugfs_create_file("ob_bytes_protected",
773 S_IRUSR | S_IRGRP | S_IROTH,
774 ctrlpriv->ctl, &perfmon->ob_prot_bytes,
775 &caam_fops_u64_ro);
8e8ec596 776 ctrlpriv->ctl_ib_dec_bytes =
261ea058
HG
777 debugfs_create_file("ib_bytes_decrypted",
778 S_IRUSR | S_IRGRP | S_IROTH,
779 ctrlpriv->ctl, &perfmon->ib_dec_bytes,
780 &caam_fops_u64_ro);
8e8ec596 781 ctrlpriv->ctl_ib_valid_bytes =
261ea058
HG
782 debugfs_create_file("ib_bytes_validated",
783 S_IRUSR | S_IRGRP | S_IROTH,
784 ctrlpriv->ctl, &perfmon->ib_valid_bytes,
785 &caam_fops_u64_ro);
8e8ec596
KP
786
787 /* Controller level - global status values */
788 ctrlpriv->ctl_faultaddr =
261ea058
HG
789 debugfs_create_file("fault_addr",
790 S_IRUSR | S_IRGRP | S_IROTH,
791 ctrlpriv->ctl, &perfmon->faultaddr,
792 &caam_fops_u32_ro);
8e8ec596 793 ctrlpriv->ctl_faultdetail =
261ea058
HG
794 debugfs_create_file("fault_detail",
795 S_IRUSR | S_IRGRP | S_IROTH,
796 ctrlpriv->ctl, &perfmon->faultdetail,
797 &caam_fops_u32_ro);
8e8ec596 798 ctrlpriv->ctl_faultstatus =
261ea058
HG
799 debugfs_create_file("fault_status",
800 S_IRUSR | S_IRGRP | S_IROTH,
801 ctrlpriv->ctl, &perfmon->status,
802 &caam_fops_u32_ro);
8e8ec596
KP
803
804 /* Internal covering keys (useful in non-secure mode only) */
8439e94f 805 ctrlpriv->ctl_kek_wrap.data = (__force void *)&ctrlpriv->ctrl->kek[0];
8e8ec596
KP
806 ctrlpriv->ctl_kek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
807 ctrlpriv->ctl_kek = debugfs_create_blob("kek",
eda65cc6 808 S_IRUSR |
8e8ec596
KP
809 S_IRGRP | S_IROTH,
810 ctrlpriv->ctl,
811 &ctrlpriv->ctl_kek_wrap);
812
8439e94f 813 ctrlpriv->ctl_tkek_wrap.data = (__force void *)&ctrlpriv->ctrl->tkek[0];
8e8ec596
KP
814 ctrlpriv->ctl_tkek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
815 ctrlpriv->ctl_tkek = debugfs_create_blob("tkek",
eda65cc6 816 S_IRUSR |
8e8ec596
KP
817 S_IRGRP | S_IROTH,
818 ctrlpriv->ctl,
819 &ctrlpriv->ctl_tkek_wrap);
820
8439e94f 821 ctrlpriv->ctl_tdsk_wrap.data = (__force void *)&ctrlpriv->ctrl->tdsk[0];
8e8ec596
KP
822 ctrlpriv->ctl_tdsk_wrap.size = KEK_KEY_SIZE * sizeof(u32);
823 ctrlpriv->ctl_tdsk = debugfs_create_blob("tdsk",
eda65cc6 824 S_IRUSR |
8e8ec596
KP
825 S_IRGRP | S_IROTH,
826 ctrlpriv->ctl,
827 &ctrlpriv->ctl_tdsk_wrap);
828#endif
829 return 0;
31f44d15
FE
830
831caam_remove:
832 caam_remove(pdev);
bdc67da7
RK
833 return ret;
834
31f44d15
FE
835iounmap_ctrl:
836 iounmap(ctrl);
837disable_caam_emi_slow:
b80609a1 838 if (ctrlpriv->caam_emi_slow)
4e518816 839 clk_disable_unprepare(ctrlpriv->caam_emi_slow);
31f44d15
FE
840disable_caam_aclk:
841 clk_disable_unprepare(ctrlpriv->caam_aclk);
842disable_caam_mem:
843 clk_disable_unprepare(ctrlpriv->caam_mem);
844disable_caam_ipg:
845 clk_disable_unprepare(ctrlpriv->caam_ipg);
846 return ret;
8e8ec596
KP
847}
848
849static struct of_device_id caam_match[] = {
850 {
54e198d4 851 .compatible = "fsl,sec-v4.0",
8e8ec596 852 },
a0ea0f6d
SL
853 {
854 .compatible = "fsl,sec4.0",
855 },
8e8ec596
KP
856 {},
857};
858MODULE_DEVICE_TABLE(of, caam_match);
859
2930d497 860static struct platform_driver caam_driver = {
8e8ec596
KP
861 .driver = {
862 .name = "caam",
8e8ec596
KP
863 .of_match_table = caam_match,
864 },
865 .probe = caam_probe,
49cfe4db 866 .remove = caam_remove,
8e8ec596
KP
867};
868
741e8c2d 869module_platform_driver(caam_driver);
8e8ec596
KP
870
871MODULE_LICENSE("GPL");
872MODULE_DESCRIPTION("FSL CAAM request backend");
873MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");