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