1 // SPDX-License-Identifier: GPL-2.0+
2 /* * CAAM control-plane driver backend
3 * Controller-level driver, kernel property detection, initialization
5 * Copyright 2008-2012 Freescale Semiconductor, Inc.
6 * Copyright 2018-2019 NXP
9 #include <linux/device.h>
10 #include <linux/of_address.h>
11 #include <linux/of_irq.h>
12 #include <linux/sys_soc.h>
18 #include "desc_constr.h"
22 EXPORT_SYMBOL(caam_dpaa2
);
29 * Descriptor to instantiate RNG State Handle 0 in normal mode and
30 * load the JDKEK, TDKEK and TDSK registers
32 static void build_instantiation_desc(u32
*desc
, int handle
, int do_sk
)
34 u32
*jump_cmd
, op_flags
;
36 init_job_desc(desc
, 0);
38 op_flags
= OP_TYPE_CLASS1_ALG
| OP_ALG_ALGSEL_RNG
|
39 (handle
<< OP_ALG_AAI_SHIFT
) | OP_ALG_AS_INIT
;
41 /* INIT RNG in non-test mode */
42 append_operation(desc
, op_flags
);
44 if (!handle
&& do_sk
) {
46 * For SH0, Secure Keys must be generated as well
50 jump_cmd
= append_jump(desc
, JUMP_CLASS_CLASS1
);
51 set_jump_tgt_here(desc
, jump_cmd
);
54 * load 1 to clear written reg:
55 * resets the done interrrupt and returns the RNG to idle.
57 append_load_imm_u32(desc
, 1, LDST_SRCDST_WORD_CLRW
);
59 /* Initialize State Handle */
60 append_operation(desc
, OP_TYPE_CLASS1_ALG
| OP_ALG_ALGSEL_RNG
|
64 append_jump(desc
, JUMP_CLASS_CLASS1
| JUMP_TYPE_HALT
);
67 /* Descriptor for deinstantiation of State Handle 0 of the RNG block. */
68 static void build_deinstantiation_desc(u32
*desc
, int handle
)
70 init_job_desc(desc
, 0);
72 /* Uninstantiate State Handle 0 */
73 append_operation(desc
, OP_TYPE_CLASS1_ALG
| OP_ALG_ALGSEL_RNG
|
74 (handle
<< OP_ALG_AAI_SHIFT
) | OP_ALG_AS_INITFINAL
);
76 append_jump(desc
, JUMP_CLASS_CLASS1
| JUMP_TYPE_HALT
);
80 * run_descriptor_deco0 - runs a descriptor on DECO0, under direct control of
81 * the software (no JR/QI used).
82 * @ctrldev - pointer to device
83 * @status - descriptor status, after being run
85 * Return: - 0 if no error occurred
86 * - -ENODEV if the DECO couldn't be acquired
87 * - -EAGAIN if an error occurred while executing the descriptor
89 static inline int run_descriptor_deco0(struct device
*ctrldev
, u32
*desc
,
92 struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(ctrldev
);
93 struct caam_ctrl __iomem
*ctrl
= ctrlpriv
->ctrl
;
94 struct caam_deco __iomem
*deco
= ctrlpriv
->deco
;
95 unsigned int timeout
= 100000;
96 u32 deco_dbg_reg
, deco_state
, flags
;
100 if (ctrlpriv
->virt_en
== 1 ||
102 * Apparently on i.MX8M{Q,M,N,P} it doesn't matter if virt_en == 1
103 * and the following steps should be performed regardless
105 of_machine_is_compatible("fsl,imx8mq") ||
106 of_machine_is_compatible("fsl,imx8mm") ||
107 of_machine_is_compatible("fsl,imx8mn") ||
108 of_machine_is_compatible("fsl,imx8mp")) {
109 clrsetbits_32(&ctrl
->deco_rsr
, 0, DECORSR_JR0
);
111 while (!(rd_reg32(&ctrl
->deco_rsr
) & DECORSR_VALID
) &&
118 clrsetbits_32(&ctrl
->deco_rq
, 0, DECORR_RQD0ENABLE
);
120 while (!(rd_reg32(&ctrl
->deco_rq
) & DECORR_DEN0
) &&
125 dev_err(ctrldev
, "failed to acquire DECO 0\n");
126 clrsetbits_32(&ctrl
->deco_rq
, DECORR_RQD0ENABLE
, 0);
130 for (i
= 0; i
< desc_len(desc
); i
++)
131 wr_reg32(&deco
->descbuf
[i
], caam32_to_cpu(*(desc
+ i
)));
133 flags
= DECO_JQCR_WHL
;
135 * If the descriptor length is longer than 4 words, then the
136 * FOUR bit in JRCTRL register must be set.
138 if (desc_len(desc
) >= 4)
139 flags
|= DECO_JQCR_FOUR
;
141 /* Instruct the DECO to execute it */
142 clrsetbits_32(&deco
->jr_ctl_hi
, 0, flags
);
146 deco_dbg_reg
= rd_reg32(&deco
->desc_dbg
);
148 if (ctrlpriv
->era
< 10)
149 deco_state
= (deco_dbg_reg
& DESC_DBG_DECO_STAT_MASK
) >>
150 DESC_DBG_DECO_STAT_SHIFT
;
152 deco_state
= (rd_reg32(&deco
->dbg_exec
) &
153 DESC_DER_DECO_STAT_MASK
) >>
154 DESC_DER_DECO_STAT_SHIFT
;
157 * If an error occured in the descriptor, then
158 * the DECO status field will be set to 0x0D
160 if (deco_state
== DECO_STAT_HOST_ERR
)
164 } while ((deco_dbg_reg
& DESC_DBG_DECO_STAT_VALID
) && --timeout
);
166 *status
= rd_reg32(&deco
->op_status_hi
) &
167 DECO_OP_STATUS_HI_ERR_MASK
;
169 if (ctrlpriv
->virt_en
== 1)
170 clrsetbits_32(&ctrl
->deco_rsr
, DECORSR_JR0
, 0);
172 /* Mark the DECO as free */
173 clrsetbits_32(&ctrl
->deco_rq
, DECORR_RQD0ENABLE
, 0);
182 * deinstantiate_rng - builds and executes a descriptor on DECO0,
183 * which deinitializes the RNG block.
184 * @ctrldev - pointer to device
185 * @state_handle_mask - bitmask containing the instantiation status
186 * for the RNG4 state handles which exist in
187 * the RNG4 block: 1 if it's been instantiated
189 * Return: - 0 if no error occurred
190 * - -ENOMEM if there isn't enough memory to allocate the descriptor
191 * - -ENODEV if DECO0 couldn't be acquired
192 * - -EAGAIN if an error occurred when executing the descriptor
194 static int deinstantiate_rng(struct device
*ctrldev
, int state_handle_mask
)
199 desc
= kmalloc(CAAM_CMD_SZ
* 3, GFP_KERNEL
);
203 for (sh_idx
= 0; sh_idx
< RNG4_MAX_HANDLES
; sh_idx
++) {
205 * If the corresponding bit is set, then it means the state
206 * handle was initialized by us, and thus it needs to be
207 * deinitialized as well
209 if ((1 << sh_idx
) & state_handle_mask
) {
211 * Create the descriptor for deinstantating this state
214 build_deinstantiation_desc(desc
, sh_idx
);
216 /* Try to run it through DECO0 */
217 ret
= run_descriptor_deco0(ctrldev
, desc
, &status
);
220 (status
&& status
!= JRSTA_SSRC_JUMP_HALT_CC
)) {
222 "Failed to deinstantiate RNG4 SH%d\n",
226 dev_info(ctrldev
, "Deinstantiated RNG4 SH%d\n", sh_idx
);
235 static void devm_deinstantiate_rng(void *data
)
237 struct device
*ctrldev
= data
;
238 struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(ctrldev
);
241 * De-initialize RNG state handles initialized by this driver.
242 * In case of SoCs with Management Complex, RNG is managed by MC f/w.
244 if (ctrlpriv
->rng4_sh_init
)
245 deinstantiate_rng(ctrldev
, ctrlpriv
->rng4_sh_init
);
249 * instantiate_rng - builds and executes a descriptor on DECO0,
250 * which initializes the RNG block.
251 * @ctrldev - pointer to device
252 * @state_handle_mask - bitmask containing the instantiation status
253 * for the RNG4 state handles which exist in
254 * the RNG4 block: 1 if it's been instantiated
255 * by an external entry, 0 otherwise.
256 * @gen_sk - generate data to be loaded into the JDKEK, TDKEK and TDSK;
257 * Caution: this can be done only once; if the keys need to be
258 * regenerated, a POR is required
260 * Return: - 0 if no error occurred
261 * - -ENOMEM if there isn't enough memory to allocate the descriptor
262 * - -ENODEV if DECO0 couldn't be acquired
263 * - -EAGAIN if an error occurred when executing the descriptor
264 * f.i. there was a RNG hardware error due to not "good enough"
265 * entropy being aquired.
267 static int instantiate_rng(struct device
*ctrldev
, int state_handle_mask
,
270 struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(ctrldev
);
271 struct caam_ctrl __iomem
*ctrl
;
272 u32
*desc
, status
= 0, rdsta_val
;
275 ctrl
= (struct caam_ctrl __iomem
*)ctrlpriv
->ctrl
;
276 desc
= kmalloc(CAAM_CMD_SZ
* 7, GFP_KERNEL
);
280 for (sh_idx
= 0; sh_idx
< RNG4_MAX_HANDLES
; sh_idx
++) {
282 * If the corresponding bit is set, this state handle
283 * was initialized by somebody else, so it's left alone.
285 if ((1 << sh_idx
) & state_handle_mask
)
288 /* Create the descriptor for instantiating RNG State Handle */
289 build_instantiation_desc(desc
, sh_idx
, gen_sk
);
291 /* Try to run it through DECO0 */
292 ret
= run_descriptor_deco0(ctrldev
, desc
, &status
);
295 * If ret is not 0, or descriptor status is not 0, then
296 * something went wrong. No need to try the next state
297 * handle (if available), bail out here.
298 * Also, if for some reason, the State Handle didn't get
299 * instantiated although the descriptor has finished
300 * without any error (HW optimizations for later
301 * CAAM eras), then try again.
306 rdsta_val
= rd_reg32(&ctrl
->r4tst
[0].rdsta
) & RDSTA_IFMASK
;
307 if ((status
&& status
!= JRSTA_SSRC_JUMP_HALT_CC
) ||
308 !(rdsta_val
& (1 << sh_idx
))) {
313 dev_info(ctrldev
, "Instantiated RNG4 SH%d\n", sh_idx
);
314 /* Clear the contents before recreating the descriptor */
315 memset(desc
, 0x00, CAAM_CMD_SZ
* 7);
321 ret
= devm_add_action_or_reset(ctrldev
, devm_deinstantiate_rng
,
328 * kick_trng - sets the various parameters for enabling the initialization
329 * of the RNG4 block in CAAM
330 * @pdev - pointer to the platform device
331 * @ent_delay - Defines the length (in system clocks) of each entropy sample.
333 static void kick_trng(struct platform_device
*pdev
, int ent_delay
)
335 struct device
*ctrldev
= &pdev
->dev
;
336 struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(ctrldev
);
337 struct caam_ctrl __iomem
*ctrl
;
338 struct rng4tst __iomem
*r4tst
;
341 ctrl
= (struct caam_ctrl __iomem
*)ctrlpriv
->ctrl
;
342 r4tst
= &ctrl
->r4tst
[0];
344 /* put RNG4 into program mode */
345 clrsetbits_32(&r4tst
->rtmctl
, 0, RTMCTL_PRGM
);
348 * Performance-wise, it does not make sense to
349 * set the delay to a value that is lower
350 * than the last one that worked (i.e. the state handles
351 * were instantiated properly. Thus, instead of wasting
352 * time trying to set the values controlling the sample
353 * frequency, the function simply returns.
355 val
= (rd_reg32(&r4tst
->rtsdctl
) & RTSDCTL_ENT_DLY_MASK
)
356 >> RTSDCTL_ENT_DLY_SHIFT
;
357 if (ent_delay
<= val
)
360 val
= rd_reg32(&r4tst
->rtsdctl
);
361 val
= (val
& ~RTSDCTL_ENT_DLY_MASK
) |
362 (ent_delay
<< RTSDCTL_ENT_DLY_SHIFT
);
363 wr_reg32(&r4tst
->rtsdctl
, val
);
364 /* min. freq. count, equal to 1/4 of the entropy sample length */
365 wr_reg32(&r4tst
->rtfrqmin
, ent_delay
>> 2);
366 /* disable maximum frequency count */
367 wr_reg32(&r4tst
->rtfrqmax
, RTFRQMAX_DISABLE
);
368 /* read the control register */
369 val
= rd_reg32(&r4tst
->rtmctl
);
372 * select raw sampling in both entropy shifter
373 * and statistical checker; ; put RNG4 into run mode
375 clrsetbits_32(&r4tst
->rtmctl
, RTMCTL_PRGM
, RTMCTL_SAMP_MODE_RAW_ES_SC
);
378 static int caam_get_era_from_hw(struct caam_ctrl __iomem
*ctrl
)
380 static const struct {
404 ccbvid
= rd_reg32(&ctrl
->perfmon
.ccb_id
);
405 era
= (ccbvid
& CCBVID_ERA_MASK
) >> CCBVID_ERA_SHIFT
;
406 if (era
) /* This is '0' prior to CAAM ERA-6 */
409 id_ms
= rd_reg32(&ctrl
->perfmon
.caam_id_ms
);
410 ip_id
= (id_ms
& SECVID_MS_IPID_MASK
) >> SECVID_MS_IPID_SHIFT
;
411 maj_rev
= (id_ms
& SECVID_MS_MAJ_REV_MASK
) >> SECVID_MS_MAJ_REV_SHIFT
;
413 for (i
= 0; i
< ARRAY_SIZE(id
); i
++)
414 if (id
[i
].ip_id
== ip_id
&& id
[i
].maj_rev
== maj_rev
)
421 * caam_get_era() - Return the ERA of the SEC on SoC, based
422 * on "sec-era" optional property in the DTS. This property is updated
424 * In case this property is not passed an attempt to retrieve the CAAM
425 * era via register reads will be made.
427 static int caam_get_era(struct caam_ctrl __iomem
*ctrl
)
429 struct device_node
*caam_node
;
433 caam_node
= of_find_compatible_node(NULL
, NULL
, "fsl,sec-v4.0");
434 ret
= of_property_read_u32(caam_node
, "fsl,sec-era", &prop
);
435 of_node_put(caam_node
);
440 return caam_get_era_from_hw(ctrl
);
444 * ERRATA: imx6 devices (imx6D, imx6Q, imx6DL, imx6S, imx6DP and imx6QP)
445 * have an issue wherein AXI bus transactions may not occur in the correct
446 * order. This isn't a problem running single descriptors, but can be if
447 * running multiple concurrent descriptors. Reworking the driver to throttle
448 * to single requests is impractical, thus the workaround is to limit the AXI
449 * pipeline to a depth of 1 (from it's default of 4) to preclude this situation
452 static void handle_imx6_err005766(u32
*mcr
)
454 if (of_machine_is_compatible("fsl,imx6q") ||
455 of_machine_is_compatible("fsl,imx6dl") ||
456 of_machine_is_compatible("fsl,imx6qp"))
457 clrsetbits_32(mcr
, MCFGR_AXIPIPE_MASK
,
458 1 << MCFGR_AXIPIPE_SHIFT
);
461 static const struct of_device_id caam_match
[] = {
463 .compatible
= "fsl,sec-v4.0",
466 .compatible
= "fsl,sec4.0",
470 MODULE_DEVICE_TABLE(of
, caam_match
);
472 struct caam_imx_data
{
473 const struct clk_bulk_data
*clks
;
477 static const struct clk_bulk_data caam_imx6_clks
[] = {
481 { .id
= "emi_slow" },
484 static const struct caam_imx_data caam_imx6_data
= {
485 .clks
= caam_imx6_clks
,
486 .num_clks
= ARRAY_SIZE(caam_imx6_clks
),
489 static const struct clk_bulk_data caam_imx7_clks
[] = {
494 static const struct caam_imx_data caam_imx7_data
= {
495 .clks
= caam_imx7_clks
,
496 .num_clks
= ARRAY_SIZE(caam_imx7_clks
),
499 static const struct clk_bulk_data caam_imx6ul_clks
[] = {
505 static const struct caam_imx_data caam_imx6ul_data
= {
506 .clks
= caam_imx6ul_clks
,
507 .num_clks
= ARRAY_SIZE(caam_imx6ul_clks
),
510 static const struct soc_device_attribute caam_imx_soc_table
[] = {
511 { .soc_id
= "i.MX6UL", .data
= &caam_imx6ul_data
},
512 { .soc_id
= "i.MX6*", .data
= &caam_imx6_data
},
513 { .soc_id
= "i.MX7*", .data
= &caam_imx7_data
},
514 { .soc_id
= "i.MX8M*", .data
= &caam_imx7_data
},
515 { .family
= "Freescale i.MX" },
519 static void disable_clocks(void *data
)
521 struct caam_drv_private
*ctrlpriv
= data
;
523 clk_bulk_disable_unprepare(ctrlpriv
->num_clks
, ctrlpriv
->clks
);
526 static int init_clocks(struct device
*dev
, const struct caam_imx_data
*data
)
528 struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(dev
);
531 ctrlpriv
->num_clks
= data
->num_clks
;
532 ctrlpriv
->clks
= devm_kmemdup(dev
, data
->clks
,
533 data
->num_clks
* sizeof(data
->clks
[0]),
538 ret
= devm_clk_bulk_get(dev
, ctrlpriv
->num_clks
, ctrlpriv
->clks
);
541 "Failed to request all necessary clocks\n");
545 ret
= clk_bulk_prepare_enable(ctrlpriv
->num_clks
, ctrlpriv
->clks
);
548 "Failed to prepare/enable all necessary clocks\n");
552 return devm_add_action_or_reset(dev
, disable_clocks
, ctrlpriv
);
555 #ifdef CONFIG_DEBUG_FS
556 static void caam_remove_debugfs(void *root
)
558 debugfs_remove_recursive(root
);
562 /* Probe routine for CAAM top (controller) level */
563 static int caam_probe(struct platform_device
*pdev
)
565 int ret
, ring
, gen_sk
, ent_delay
= RTSDCTL_ENT_DLY_MIN
;
567 const struct soc_device_attribute
*imx_soc_match
;
569 struct device_node
*nprop
, *np
;
570 struct caam_ctrl __iomem
*ctrl
;
571 struct caam_drv_private
*ctrlpriv
;
572 #ifdef CONFIG_DEBUG_FS
573 struct caam_perfmon
*perfmon
;
574 struct dentry
*dfs_root
;
576 u32 scfgr
, comp_params
;
579 int BLOCK_OFFSET
= 0;
581 ctrlpriv
= devm_kzalloc(&pdev
->dev
, sizeof(*ctrlpriv
), GFP_KERNEL
);
586 dev_set_drvdata(dev
, ctrlpriv
);
587 nprop
= pdev
->dev
.of_node
;
589 imx_soc_match
= soc_device_match(caam_imx_soc_table
);
590 caam_imx
= (bool)imx_soc_match
;
593 if (!imx_soc_match
->data
) {
594 dev_err(dev
, "No clock data provided for i.MX SoC");
598 ret
= init_clocks(dev
, imx_soc_match
->data
);
604 /* Get configuration properties from device tree */
605 /* First, get register page */
606 ctrl
= devm_of_iomap(dev
, nprop
, 0, NULL
);
607 ret
= PTR_ERR_OR_ZERO(ctrl
);
609 dev_err(dev
, "caam: of_iomap() failed\n");
613 caam_little_end
= !(bool)(rd_reg32(&ctrl
->perfmon
.status
) &
614 (CSTA_PLEND
| CSTA_ALT_PLEND
));
615 comp_params
= rd_reg32(&ctrl
->perfmon
.comp_parms_ms
);
616 if (comp_params
& CTPR_MS_PS
&& rd_reg32(&ctrl
->mcr
) & MCFGR_LONG_PTR
)
617 caam_ptr_sz
= sizeof(u64
);
619 caam_ptr_sz
= sizeof(u32
);
620 caam_dpaa2
= !!(comp_params
& CTPR_MS_DPAA2
);
621 ctrlpriv
->qi_present
= !!(comp_params
& CTPR_MS_QI_MASK
);
623 #ifdef CONFIG_CAAM_QI
624 /* If (DPAA 1.x) QI present, check whether dependencies are available */
625 if (ctrlpriv
->qi_present
&& !caam_dpaa2
) {
626 ret
= qman_is_probed();
628 return -EPROBE_DEFER
;
629 } else if (ret
< 0) {
630 dev_err(dev
, "failing probe due to qman probe error\n");
634 ret
= qman_portals_probed();
636 return -EPROBE_DEFER
;
637 } else if (ret
< 0) {
638 dev_err(dev
, "failing probe due to qman portals probe error\n");
644 /* Allocating the BLOCK_OFFSET based on the supported page size on
647 pg_size
= (comp_params
& CTPR_MS_PG_SZ_MASK
) >> CTPR_MS_PG_SZ_SHIFT
;
649 BLOCK_OFFSET
= PG_SIZE_4K
;
651 BLOCK_OFFSET
= PG_SIZE_64K
;
653 ctrlpriv
->ctrl
= (struct caam_ctrl __iomem __force
*)ctrl
;
654 ctrlpriv
->assure
= (struct caam_assurance __iomem __force
*)
655 ((__force
uint8_t *)ctrl
+
656 BLOCK_OFFSET
* ASSURE_BLOCK_NUMBER
658 ctrlpriv
->deco
= (struct caam_deco __iomem __force
*)
659 ((__force
uint8_t *)ctrl
+
660 BLOCK_OFFSET
* DECO_BLOCK_NUMBER
663 /* Get the IRQ of the controller (for security violations only) */
664 ctrlpriv
->secvio_irq
= irq_of_parse_and_map(nprop
, 0);
667 * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel,
668 * long pointers in master configuration register.
669 * In case of SoCs with Management Complex, MC f/w performs
672 np
= of_find_compatible_node(NULL
, NULL
, "fsl,qoriq-mc");
673 ctrlpriv
->mc_en
= !!np
;
676 if (!ctrlpriv
->mc_en
)
677 clrsetbits_32(&ctrl
->mcr
, MCFGR_AWCACHE_MASK
,
678 MCFGR_AWCACHE_CACH
| MCFGR_AWCACHE_BUFF
|
679 MCFGR_WDENABLE
| MCFGR_LARGE_BURST
);
681 handle_imx6_err005766(&ctrl
->mcr
);
684 * Read the Compile Time paramters and SCFGR to determine
685 * if Virtualization is enabled for this platform
687 scfgr
= rd_reg32(&ctrl
->scfgr
);
689 ctrlpriv
->virt_en
= 0;
690 if (comp_params
& CTPR_MS_VIRT_EN_INCL
) {
691 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or
692 * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SCFGR_VIRT_EN = 1
694 if ((comp_params
& CTPR_MS_VIRT_EN_POR
) ||
695 (!(comp_params
& CTPR_MS_VIRT_EN_POR
) &&
696 (scfgr
& SCFGR_VIRT_EN
)))
697 ctrlpriv
->virt_en
= 1;
699 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */
700 if (comp_params
& CTPR_MS_VIRT_EN_POR
)
701 ctrlpriv
->virt_en
= 1;
704 if (ctrlpriv
->virt_en
== 1)
705 clrsetbits_32(&ctrl
->jrstart
, 0, JRSTART_JR0_START
|
706 JRSTART_JR1_START
| JRSTART_JR2_START
|
709 ret
= dma_set_mask_and_coherent(dev
, caam_get_dma_mask(dev
));
711 dev_err(dev
, "dma_set_mask_and_coherent failed (%d)\n", ret
);
715 ctrlpriv
->era
= caam_get_era(ctrl
);
716 ctrlpriv
->domain
= iommu_get_domain_for_dev(dev
);
718 #ifdef CONFIG_DEBUG_FS
720 * FIXME: needs better naming distinction, as some amalgamation of
721 * "caam" and nprop->full_name. The OF name isn't distinctive,
722 * but does separate instances
724 perfmon
= (struct caam_perfmon __force
*)&ctrl
->perfmon
;
726 dfs_root
= debugfs_create_dir(dev_name(dev
), NULL
);
727 ret
= devm_add_action_or_reset(dev
, caam_remove_debugfs
, dfs_root
);
731 ctrlpriv
->ctl
= debugfs_create_dir("ctl", dfs_root
);
734 /* Check to see if (DPAA 1.x) QI present. If so, enable */
735 if (ctrlpriv
->qi_present
&& !caam_dpaa2
) {
736 ctrlpriv
->qi
= (struct caam_queue_if __iomem __force
*)
737 ((__force
uint8_t *)ctrl
+
738 BLOCK_OFFSET
* QI_BLOCK_NUMBER
740 /* This is all that's required to physically enable QI */
741 wr_reg32(&ctrlpriv
->qi
->qi_control_lo
, QICTL_DQEN
);
743 /* If QMAN driver is present, init CAAM-QI backend */
744 #ifdef CONFIG_CAAM_QI
745 ret
= caam_qi_init(pdev
);
747 dev_err(dev
, "caam qi i/f init failed: %d\n", ret
);
752 for_each_available_child_of_node(nprop
, np
)
753 if (of_device_is_compatible(np
, "fsl,sec-v4.0-job-ring") ||
754 of_device_is_compatible(np
, "fsl,sec4.0-job-ring")) {
755 ctrlpriv
->jr
[ring
] = (struct caam_job_ring __iomem __force
*)
756 ((__force
uint8_t *)ctrl
+
757 (ring
+ JR_BLOCK_NUMBER
) *
760 ctrlpriv
->total_jobrs
++;
764 /* If no QI and no rings specified, quit and go home */
765 if ((!ctrlpriv
->qi_present
) && (!ctrlpriv
->total_jobrs
)) {
766 dev_err(dev
, "no queues configured, terminating\n");
770 if (ctrlpriv
->era
< 10)
771 rng_vid
= (rd_reg32(&ctrl
->perfmon
.cha_id_ls
) &
772 CHA_ID_LS_RNG_MASK
) >> CHA_ID_LS_RNG_SHIFT
;
774 rng_vid
= (rd_reg32(&ctrl
->vreg
.rng
) & CHA_VER_VID_MASK
) >>
778 * If SEC has RNG version >= 4 and RNG state handle has not been
779 * already instantiated, do RNG instantiation
780 * In case of SoCs with Management Complex, RNG is managed by MC f/w.
782 if (!ctrlpriv
->mc_en
&& rng_vid
>= 4) {
783 ctrlpriv
->rng4_sh_init
=
784 rd_reg32(&ctrl
->r4tst
[0].rdsta
);
786 * If the secure keys (TDKEK, JDKEK, TDSK), were already
787 * generated, signal this to the function that is instantiating
788 * the state handles. An error would occur if RNG4 attempts
789 * to regenerate these keys before the next POR.
791 gen_sk
= ctrlpriv
->rng4_sh_init
& RDSTA_SKVN
? 0 : 1;
792 ctrlpriv
->rng4_sh_init
&= RDSTA_IFMASK
;
795 rd_reg32(&ctrl
->r4tst
[0].rdsta
) &
798 * If either SH were instantiated by somebody else
799 * (e.g. u-boot) then it is assumed that the entropy
800 * parameters are properly set and thus the function
801 * setting these (kick_trng(...)) is skipped.
802 * Also, if a handle was instantiated, do not change
803 * the TRNG parameters.
805 if (!(ctrlpriv
->rng4_sh_init
|| inst_handles
)) {
807 "Entropy delay = %u\n",
809 kick_trng(pdev
, ent_delay
);
813 * if instantiate_rng(...) fails, the loop will rerun
814 * and the kick_trng(...) function will modfiy the
815 * upper and lower limits of the entropy sampling
816 * interval, leading to a sucessful initialization of
819 ret
= instantiate_rng(dev
, inst_handles
,
823 * if here, the loop will rerun,
824 * so don't hog the CPU
827 } while ((ret
== -EAGAIN
) && (ent_delay
< RTSDCTL_ENT_DLY_MAX
));
829 dev_err(dev
, "failed to instantiate RNG");
833 * Set handles init'ed by this module as the complement of the
834 * already initialized ones
836 ctrlpriv
->rng4_sh_init
= ~ctrlpriv
->rng4_sh_init
& RDSTA_IFMASK
;
838 /* Enable RDB bit so that RNG works faster */
839 clrsetbits_32(&ctrl
->scfgr
, 0, SCFGR_RDBENABLE
);
842 /* NOTE: RTIC detection ought to go here, around Si time */
844 caam_id
= (u64
)rd_reg32(&ctrl
->perfmon
.caam_id_ms
) << 32 |
845 (u64
)rd_reg32(&ctrl
->perfmon
.caam_id_ls
);
847 /* Report "alive" for developer to see */
848 dev_info(dev
, "device ID = 0x%016llx (Era %d)\n", caam_id
,
850 dev_info(dev
, "job rings = %d, qi = %d\n",
851 ctrlpriv
->total_jobrs
, ctrlpriv
->qi_present
);
853 #ifdef CONFIG_DEBUG_FS
854 debugfs_create_file("rq_dequeued", S_IRUSR
| S_IRGRP
| S_IROTH
,
855 ctrlpriv
->ctl
, &perfmon
->req_dequeued
,
857 debugfs_create_file("ob_rq_encrypted", S_IRUSR
| S_IRGRP
| S_IROTH
,
858 ctrlpriv
->ctl
, &perfmon
->ob_enc_req
,
860 debugfs_create_file("ib_rq_decrypted", S_IRUSR
| S_IRGRP
| S_IROTH
,
861 ctrlpriv
->ctl
, &perfmon
->ib_dec_req
,
863 debugfs_create_file("ob_bytes_encrypted", S_IRUSR
| S_IRGRP
| S_IROTH
,
864 ctrlpriv
->ctl
, &perfmon
->ob_enc_bytes
,
866 debugfs_create_file("ob_bytes_protected", S_IRUSR
| S_IRGRP
| S_IROTH
,
867 ctrlpriv
->ctl
, &perfmon
->ob_prot_bytes
,
869 debugfs_create_file("ib_bytes_decrypted", S_IRUSR
| S_IRGRP
| S_IROTH
,
870 ctrlpriv
->ctl
, &perfmon
->ib_dec_bytes
,
872 debugfs_create_file("ib_bytes_validated", S_IRUSR
| S_IRGRP
| S_IROTH
,
873 ctrlpriv
->ctl
, &perfmon
->ib_valid_bytes
,
876 /* Controller level - global status values */
877 debugfs_create_file("fault_addr", S_IRUSR
| S_IRGRP
| S_IROTH
,
878 ctrlpriv
->ctl
, &perfmon
->faultaddr
,
880 debugfs_create_file("fault_detail", S_IRUSR
| S_IRGRP
| S_IROTH
,
881 ctrlpriv
->ctl
, &perfmon
->faultdetail
,
883 debugfs_create_file("fault_status", S_IRUSR
| S_IRGRP
| S_IROTH
,
884 ctrlpriv
->ctl
, &perfmon
->status
,
887 /* Internal covering keys (useful in non-secure mode only) */
888 ctrlpriv
->ctl_kek_wrap
.data
= (__force
void *)&ctrlpriv
->ctrl
->kek
[0];
889 ctrlpriv
->ctl_kek_wrap
.size
= KEK_KEY_SIZE
* sizeof(u32
);
890 debugfs_create_blob("kek", S_IRUSR
| S_IRGRP
| S_IROTH
, ctrlpriv
->ctl
,
891 &ctrlpriv
->ctl_kek_wrap
);
893 ctrlpriv
->ctl_tkek_wrap
.data
= (__force
void *)&ctrlpriv
->ctrl
->tkek
[0];
894 ctrlpriv
->ctl_tkek_wrap
.size
= KEK_KEY_SIZE
* sizeof(u32
);
895 debugfs_create_blob("tkek", S_IRUSR
| S_IRGRP
| S_IROTH
, ctrlpriv
->ctl
,
896 &ctrlpriv
->ctl_tkek_wrap
);
898 ctrlpriv
->ctl_tdsk_wrap
.data
= (__force
void *)&ctrlpriv
->ctrl
->tdsk
[0];
899 ctrlpriv
->ctl_tdsk_wrap
.size
= KEK_KEY_SIZE
* sizeof(u32
);
900 debugfs_create_blob("tdsk", S_IRUSR
| S_IRGRP
| S_IROTH
, ctrlpriv
->ctl
,
901 &ctrlpriv
->ctl_tdsk_wrap
);
904 ret
= devm_of_platform_populate(dev
);
906 dev_err(dev
, "JR platform devices creation error\n");
911 static struct platform_driver caam_driver
= {
914 .of_match_table
= caam_match
,
919 module_platform_driver(caam_driver
);
921 MODULE_LICENSE("GPL");
922 MODULE_DESCRIPTION("FSL CAAM request backend");
923 MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");