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, 2023 NXP
9 #include <linux/device.h>
10 #include <linux/of_address.h>
11 #include <linux/of_irq.h>
12 #include <linux/platform_device.h>
13 #include <linux/sys_soc.h>
14 #include <linux/fsl/mc.h>
21 #include "desc_constr.h"
25 EXPORT_SYMBOL(caam_dpaa2
);
32 * Descriptor to instantiate RNG State Handle 0 in normal mode and
33 * load the JDKEK, TDKEK and TDSK registers
35 static void build_instantiation_desc(u32
*desc
, int handle
, int do_sk
)
37 u32
*jump_cmd
, op_flags
;
39 init_job_desc(desc
, 0);
41 op_flags
= OP_TYPE_CLASS1_ALG
| OP_ALG_ALGSEL_RNG
|
42 (handle
<< OP_ALG_AAI_SHIFT
) | OP_ALG_AS_INIT
|
45 /* INIT RNG in non-test mode */
46 append_operation(desc
, op_flags
);
48 if (!handle
&& do_sk
) {
50 * For SH0, Secure Keys must be generated as well
54 jump_cmd
= append_jump(desc
, JUMP_CLASS_CLASS1
);
55 set_jump_tgt_here(desc
, jump_cmd
);
58 * load 1 to clear written reg:
59 * resets the done interrupt and returns the RNG to idle.
61 append_load_imm_u32(desc
, 1, LDST_SRCDST_WORD_CLRW
);
63 /* Initialize State Handle */
64 append_operation(desc
, OP_TYPE_CLASS1_ALG
| OP_ALG_ALGSEL_RNG
|
68 append_jump(desc
, JUMP_CLASS_CLASS1
| JUMP_TYPE_HALT
);
71 /* Descriptor for deinstantiation of State Handle 0 of the RNG block. */
72 static void build_deinstantiation_desc(u32
*desc
, int handle
)
74 init_job_desc(desc
, 0);
76 /* Uninstantiate State Handle 0 */
77 append_operation(desc
, OP_TYPE_CLASS1_ALG
| OP_ALG_ALGSEL_RNG
|
78 (handle
<< OP_ALG_AAI_SHIFT
) | OP_ALG_AS_INITFINAL
);
80 append_jump(desc
, JUMP_CLASS_CLASS1
| JUMP_TYPE_HALT
);
84 static const struct of_device_id imx8m_machine_match
[] = {
85 { .compatible
= "fsl,imx8mm", },
86 { .compatible
= "fsl,imx8mn", },
87 { .compatible
= "fsl,imx8mp", },
88 { .compatible
= "fsl,imx8mq", },
89 { .compatible
= "fsl,imx8ulp", },
95 * run_descriptor_deco0 - runs a descriptor on DECO0, under direct control of
96 * the software (no JR/QI used).
97 * @ctrldev - pointer to device
98 * @status - descriptor status, after being run
100 * Return: - 0 if no error occurred
101 * - -ENODEV if the DECO couldn't be acquired
102 * - -EAGAIN if an error occurred while executing the descriptor
104 static inline int run_descriptor_deco0(struct device
*ctrldev
, u32
*desc
,
107 struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(ctrldev
);
108 struct caam_ctrl __iomem
*ctrl
= ctrlpriv
->ctrl
;
109 struct caam_deco __iomem
*deco
= ctrlpriv
->deco
;
110 unsigned int timeout
= 100000;
111 u32 deco_dbg_reg
, deco_state
, flags
;
115 if (ctrlpriv
->virt_en
== 1 ||
117 * Apparently on i.MX8M{Q,M,N,P} it doesn't matter if virt_en == 1
118 * and the following steps should be performed regardless
120 of_match_node(imx8m_machine_match
, of_root
)) {
121 clrsetbits_32(&ctrl
->deco_rsr
, 0, DECORSR_JR0
);
123 while (!(rd_reg32(&ctrl
->deco_rsr
) & DECORSR_VALID
) &&
130 clrsetbits_32(&ctrl
->deco_rq
, 0, DECORR_RQD0ENABLE
);
132 while (!(rd_reg32(&ctrl
->deco_rq
) & DECORR_DEN0
) &&
137 dev_err(ctrldev
, "failed to acquire DECO 0\n");
138 clrsetbits_32(&ctrl
->deco_rq
, DECORR_RQD0ENABLE
, 0);
142 for (i
= 0; i
< desc_len(desc
); i
++)
143 wr_reg32(&deco
->descbuf
[i
], caam32_to_cpu(*(desc
+ i
)));
145 flags
= DECO_JQCR_WHL
;
147 * If the descriptor length is longer than 4 words, then the
148 * FOUR bit in JRCTRL register must be set.
150 if (desc_len(desc
) >= 4)
151 flags
|= DECO_JQCR_FOUR
;
153 /* Instruct the DECO to execute it */
154 clrsetbits_32(&deco
->jr_ctl_hi
, 0, flags
);
158 deco_dbg_reg
= rd_reg32(&deco
->desc_dbg
);
160 if (ctrlpriv
->era
< 10)
161 deco_state
= (deco_dbg_reg
& DESC_DBG_DECO_STAT_MASK
) >>
162 DESC_DBG_DECO_STAT_SHIFT
;
164 deco_state
= (rd_reg32(&deco
->dbg_exec
) &
165 DESC_DER_DECO_STAT_MASK
) >>
166 DESC_DER_DECO_STAT_SHIFT
;
169 * If an error occurred in the descriptor, then
170 * the DECO status field will be set to 0x0D
172 if (deco_state
== DECO_STAT_HOST_ERR
)
176 } while ((deco_dbg_reg
& DESC_DBG_DECO_STAT_VALID
) && --timeout
);
178 *status
= rd_reg32(&deco
->op_status_hi
) &
179 DECO_OP_STATUS_HI_ERR_MASK
;
181 if (ctrlpriv
->virt_en
== 1)
182 clrsetbits_32(&ctrl
->deco_rsr
, DECORSR_JR0
, 0);
184 /* Mark the DECO as free */
185 clrsetbits_32(&ctrl
->deco_rq
, DECORR_RQD0ENABLE
, 0);
194 * deinstantiate_rng - builds and executes a descriptor on DECO0,
195 * which deinitializes the RNG block.
196 * @ctrldev - pointer to device
197 * @state_handle_mask - bitmask containing the instantiation status
198 * for the RNG4 state handles which exist in
199 * the RNG4 block: 1 if it's been instantiated
201 * Return: - 0 if no error occurred
202 * - -ENOMEM if there isn't enough memory to allocate the descriptor
203 * - -ENODEV if DECO0 couldn't be acquired
204 * - -EAGAIN if an error occurred when executing the descriptor
206 static int deinstantiate_rng(struct device
*ctrldev
, int state_handle_mask
)
211 desc
= kmalloc(CAAM_CMD_SZ
* 3, GFP_KERNEL
);
215 for (sh_idx
= 0; sh_idx
< RNG4_MAX_HANDLES
; sh_idx
++) {
217 * If the corresponding bit is set, then it means the state
218 * handle was initialized by us, and thus it needs to be
219 * deinitialized as well
221 if ((1 << sh_idx
) & state_handle_mask
) {
223 * Create the descriptor for deinstantating this state
226 build_deinstantiation_desc(desc
, sh_idx
);
228 /* Try to run it through DECO0 */
229 ret
= run_descriptor_deco0(ctrldev
, desc
, &status
);
232 (status
&& status
!= JRSTA_SSRC_JUMP_HALT_CC
)) {
234 "Failed to deinstantiate RNG4 SH%d\n",
238 dev_info(ctrldev
, "Deinstantiated RNG4 SH%d\n", sh_idx
);
247 static void devm_deinstantiate_rng(void *data
)
249 struct device
*ctrldev
= data
;
250 struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(ctrldev
);
253 * De-initialize RNG state handles initialized by this driver.
254 * In case of SoCs with Management Complex, RNG is managed by MC f/w.
256 if (ctrlpriv
->rng4_sh_init
)
257 deinstantiate_rng(ctrldev
, ctrlpriv
->rng4_sh_init
);
261 * instantiate_rng - builds and executes a descriptor on DECO0,
262 * which initializes the RNG block.
263 * @ctrldev - pointer to device
264 * @state_handle_mask - bitmask containing the instantiation status
265 * for the RNG4 state handles which exist in
266 * the RNG4 block: 1 if it's been instantiated
267 * by an external entry, 0 otherwise.
268 * @gen_sk - generate data to be loaded into the JDKEK, TDKEK and TDSK;
269 * Caution: this can be done only once; if the keys need to be
270 * regenerated, a POR is required
272 * Return: - 0 if no error occurred
273 * - -ENOMEM if there isn't enough memory to allocate the descriptor
274 * - -ENODEV if DECO0 couldn't be acquired
275 * - -EAGAIN if an error occurred when executing the descriptor
276 * f.i. there was a RNG hardware error due to not "good enough"
277 * entropy being acquired.
279 static int instantiate_rng(struct device
*ctrldev
, int state_handle_mask
,
282 struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(ctrldev
);
283 struct caam_ctrl __iomem
*ctrl
;
284 u32
*desc
, status
= 0, rdsta_val
;
287 ctrl
= (struct caam_ctrl __iomem
*)ctrlpriv
->ctrl
;
288 desc
= kmalloc(CAAM_CMD_SZ
* 7, GFP_KERNEL
);
292 for (sh_idx
= 0; sh_idx
< RNG4_MAX_HANDLES
; sh_idx
++) {
293 const u32 rdsta_if
= RDSTA_IF0
<< sh_idx
;
294 const u32 rdsta_pr
= RDSTA_PR0
<< sh_idx
;
295 const u32 rdsta_mask
= rdsta_if
| rdsta_pr
;
297 /* Clear the contents before using the descriptor */
298 memset(desc
, 0x00, CAAM_CMD_SZ
* 7);
301 * If the corresponding bit is set, this state handle
302 * was initialized by somebody else, so it's left alone.
304 if (rdsta_if
& state_handle_mask
) {
305 if (rdsta_pr
& state_handle_mask
)
309 "RNG4 SH%d was previously instantiated without prediction resistance. Tearing it down\n",
312 ret
= deinstantiate_rng(ctrldev
, rdsta_if
);
317 /* Create the descriptor for instantiating RNG State Handle */
318 build_instantiation_desc(desc
, sh_idx
, gen_sk
);
320 /* Try to run it through DECO0 */
321 ret
= run_descriptor_deco0(ctrldev
, desc
, &status
);
324 * If ret is not 0, or descriptor status is not 0, then
325 * something went wrong. No need to try the next state
326 * handle (if available), bail out here.
327 * Also, if for some reason, the State Handle didn't get
328 * instantiated although the descriptor has finished
329 * without any error (HW optimizations for later
330 * CAAM eras), then try again.
335 rdsta_val
= rd_reg32(&ctrl
->r4tst
[0].rdsta
) & RDSTA_MASK
;
336 if ((status
&& status
!= JRSTA_SSRC_JUMP_HALT_CC
) ||
337 (rdsta_val
& rdsta_mask
) != rdsta_mask
) {
342 dev_info(ctrldev
, "Instantiated RNG4 SH%d\n", sh_idx
);
350 return devm_add_action_or_reset(ctrldev
, devm_deinstantiate_rng
, ctrldev
);
354 * kick_trng - sets the various parameters for enabling the initialization
355 * of the RNG4 block in CAAM
356 * @dev - pointer to the controller device
357 * @ent_delay - Defines the length (in system clocks) of each entropy sample.
359 static void kick_trng(struct device
*dev
, int ent_delay
)
361 struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(dev
);
362 struct caam_ctrl __iomem
*ctrl
;
363 struct rng4tst __iomem
*r4tst
;
366 ctrl
= (struct caam_ctrl __iomem
*)ctrlpriv
->ctrl
;
367 r4tst
= &ctrl
->r4tst
[0];
370 * Setting both RTMCTL:PRGM and RTMCTL:TRNG_ACC causes TRNG to
371 * properly invalidate the entropy in the entropy register and
372 * force re-generation.
374 clrsetbits_32(&r4tst
->rtmctl
, 0, RTMCTL_PRGM
| RTMCTL_ACC
);
377 * Performance-wise, it does not make sense to
378 * set the delay to a value that is lower
379 * than the last one that worked (i.e. the state handles
380 * were instantiated properly).
382 rtsdctl
= rd_reg32(&r4tst
->rtsdctl
);
383 val
= (rtsdctl
& RTSDCTL_ENT_DLY_MASK
) >> RTSDCTL_ENT_DLY_SHIFT
;
384 if (ent_delay
> val
) {
386 /* min. freq. count, equal to 1/4 of the entropy sample length */
387 wr_reg32(&r4tst
->rtfrqmin
, val
>> 2);
388 /* disable maximum frequency count */
389 wr_reg32(&r4tst
->rtfrqmax
, RTFRQMAX_DISABLE
);
392 wr_reg32(&r4tst
->rtsdctl
, (val
<< RTSDCTL_ENT_DLY_SHIFT
) |
393 RTSDCTL_SAMP_SIZE_VAL
);
396 * To avoid reprogramming the self-test parameters over and over again,
397 * use RTSDCTL[SAMP_SIZE] as an indicator.
399 if ((rtsdctl
& RTSDCTL_SAMP_SIZE_MASK
) != RTSDCTL_SAMP_SIZE_VAL
) {
400 wr_reg32(&r4tst
->rtscmisc
, (2 << 16) | 32);
401 wr_reg32(&r4tst
->rtpkrrng
, 570);
402 wr_reg32(&r4tst
->rtpkrmax
, 1600);
403 wr_reg32(&r4tst
->rtscml
, (122 << 16) | 317);
404 wr_reg32(&r4tst
->rtscrl
[0], (80 << 16) | 107);
405 wr_reg32(&r4tst
->rtscrl
[1], (57 << 16) | 62);
406 wr_reg32(&r4tst
->rtscrl
[2], (39 << 16) | 39);
407 wr_reg32(&r4tst
->rtscrl
[3], (27 << 16) | 26);
408 wr_reg32(&r4tst
->rtscrl
[4], (19 << 16) | 18);
409 wr_reg32(&r4tst
->rtscrl
[5], (18 << 16) | 17);
413 * select raw sampling in both entropy shifter
414 * and statistical checker; ; put RNG4 into run mode
416 clrsetbits_32(&r4tst
->rtmctl
, RTMCTL_PRGM
| RTMCTL_ACC
,
417 RTMCTL_SAMP_MODE_RAW_ES_SC
);
420 static int caam_get_era_from_hw(struct caam_perfmon __iomem
*perfmon
)
422 static const struct {
446 ccbvid
= rd_reg32(&perfmon
->ccb_id
);
447 era
= (ccbvid
& CCBVID_ERA_MASK
) >> CCBVID_ERA_SHIFT
;
448 if (era
) /* This is '0' prior to CAAM ERA-6 */
451 id_ms
= rd_reg32(&perfmon
->caam_id_ms
);
452 ip_id
= (id_ms
& SECVID_MS_IPID_MASK
) >> SECVID_MS_IPID_SHIFT
;
453 maj_rev
= (id_ms
& SECVID_MS_MAJ_REV_MASK
) >> SECVID_MS_MAJ_REV_SHIFT
;
455 for (i
= 0; i
< ARRAY_SIZE(id
); i
++)
456 if (id
[i
].ip_id
== ip_id
&& id
[i
].maj_rev
== maj_rev
)
463 * caam_get_era() - Return the ERA of the SEC on SoC, based
464 * on "sec-era" optional property in the DTS. This property is updated
466 * In case this property is not passed an attempt to retrieve the CAAM
467 * era via register reads will be made.
469 * @perfmon: Performance Monitor Registers
471 static int caam_get_era(struct caam_perfmon __iomem
*perfmon
)
473 struct device_node
*caam_node
;
477 caam_node
= of_find_compatible_node(NULL
, NULL
, "fsl,sec-v4.0");
478 ret
= of_property_read_u32(caam_node
, "fsl,sec-era", &prop
);
479 of_node_put(caam_node
);
484 return caam_get_era_from_hw(perfmon
);
488 * ERRATA: imx6 devices (imx6D, imx6Q, imx6DL, imx6S, imx6DP and imx6QP)
489 * have an issue wherein AXI bus transactions may not occur in the correct
490 * order. This isn't a problem running single descriptors, but can be if
491 * running multiple concurrent descriptors. Reworking the driver to throttle
492 * to single requests is impractical, thus the workaround is to limit the AXI
493 * pipeline to a depth of 1 (from it's default of 4) to preclude this situation
496 static void handle_imx6_err005766(u32 __iomem
*mcr
)
498 if (of_machine_is_compatible("fsl,imx6q") ||
499 of_machine_is_compatible("fsl,imx6dl") ||
500 of_machine_is_compatible("fsl,imx6qp"))
501 clrsetbits_32(mcr
, MCFGR_AXIPIPE_MASK
,
502 1 << MCFGR_AXIPIPE_SHIFT
);
505 static const struct of_device_id caam_match
[] = {
507 .compatible
= "fsl,sec-v4.0",
510 .compatible
= "fsl,sec4.0",
514 MODULE_DEVICE_TABLE(of
, caam_match
);
516 struct caam_imx_data
{
518 const struct clk_bulk_data
*clks
;
522 static const struct clk_bulk_data caam_imx6_clks
[] = {
526 { .id
= "emi_slow" },
529 static const struct caam_imx_data caam_imx6_data
= {
530 .page0_access
= true,
531 .clks
= caam_imx6_clks
,
532 .num_clks
= ARRAY_SIZE(caam_imx6_clks
),
535 static const struct clk_bulk_data caam_imx7_clks
[] = {
540 static const struct caam_imx_data caam_imx7_data
= {
541 .page0_access
= true,
542 .clks
= caam_imx7_clks
,
543 .num_clks
= ARRAY_SIZE(caam_imx7_clks
),
546 static const struct clk_bulk_data caam_imx6ul_clks
[] = {
552 static const struct caam_imx_data caam_imx6ul_data
= {
553 .page0_access
= true,
554 .clks
= caam_imx6ul_clks
,
555 .num_clks
= ARRAY_SIZE(caam_imx6ul_clks
),
558 static const struct clk_bulk_data caam_vf610_clks
[] = {
562 static const struct caam_imx_data caam_vf610_data
= {
563 .page0_access
= true,
564 .clks
= caam_vf610_clks
,
565 .num_clks
= ARRAY_SIZE(caam_vf610_clks
),
568 static const struct caam_imx_data caam_imx8ulp_data
;
570 static const struct soc_device_attribute caam_imx_soc_table
[] = {
571 { .soc_id
= "i.MX6UL", .data
= &caam_imx6ul_data
},
572 { .soc_id
= "i.MX6*", .data
= &caam_imx6_data
},
573 { .soc_id
= "i.MX7*", .data
= &caam_imx7_data
},
574 { .soc_id
= "i.MX8M*", .data
= &caam_imx7_data
},
575 { .soc_id
= "i.MX8ULP", .data
= &caam_imx8ulp_data
},
576 { .soc_id
= "VF*", .data
= &caam_vf610_data
},
577 { .family
= "Freescale i.MX" },
581 static void disable_clocks(void *data
)
583 struct caam_drv_private
*ctrlpriv
= data
;
585 clk_bulk_disable_unprepare(ctrlpriv
->num_clks
, ctrlpriv
->clks
);
588 static int init_clocks(struct device
*dev
, const struct caam_imx_data
*data
)
590 struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(dev
);
593 ctrlpriv
->num_clks
= data
->num_clks
;
594 ctrlpriv
->clks
= devm_kmemdup(dev
, data
->clks
,
595 data
->num_clks
* sizeof(data
->clks
[0]),
600 ret
= devm_clk_bulk_get(dev
, ctrlpriv
->num_clks
, ctrlpriv
->clks
);
603 "Failed to request all necessary clocks\n");
607 ret
= clk_bulk_prepare_enable(ctrlpriv
->num_clks
, ctrlpriv
->clks
);
610 "Failed to prepare/enable all necessary clocks\n");
614 return devm_add_action_or_reset(dev
, disable_clocks
, ctrlpriv
);
617 static void caam_remove_debugfs(void *root
)
619 debugfs_remove_recursive(root
);
622 #ifdef CONFIG_FSL_MC_BUS
623 static bool check_version(struct fsl_mc_version
*mc_version
, u32 major
,
624 u32 minor
, u32 revision
)
626 if (mc_version
->major
> major
)
629 if (mc_version
->major
== major
) {
630 if (mc_version
->minor
> minor
)
633 if (mc_version
->minor
== minor
&&
634 mc_version
->revision
> revision
)
642 static bool needs_entropy_delay_adjustment(void)
644 if (of_machine_is_compatible("fsl,imx6sx"))
649 static int caam_ctrl_rng_init(struct device
*dev
)
651 struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(dev
);
652 struct caam_ctrl __iomem
*ctrl
= ctrlpriv
->ctrl
;
653 int ret
, gen_sk
, ent_delay
= RTSDCTL_ENT_DLY_MIN
;
656 if (ctrlpriv
->era
< 10) {
657 struct caam_perfmon __iomem
*perfmon
;
659 perfmon
= ctrlpriv
->total_jobrs
?
660 (struct caam_perfmon __iomem
*)&ctrlpriv
->jr
[0]->perfmon
:
661 (struct caam_perfmon __iomem
*)&ctrl
->perfmon
;
663 rng_vid
= (rd_reg32(&perfmon
->cha_id_ls
) &
664 CHA_ID_LS_RNG_MASK
) >> CHA_ID_LS_RNG_SHIFT
;
666 struct version_regs __iomem
*vreg
;
668 vreg
= ctrlpriv
->total_jobrs
?
669 (struct version_regs __iomem
*)&ctrlpriv
->jr
[0]->vreg
:
670 (struct version_regs __iomem
*)&ctrl
->vreg
;
672 rng_vid
= (rd_reg32(&vreg
->rng
) & CHA_VER_VID_MASK
) >>
677 * If SEC has RNG version >= 4 and RNG state handle has not been
678 * already instantiated, do RNG instantiation
679 * In case of SoCs with Management Complex, RNG is managed by MC f/w.
681 if (!(ctrlpriv
->mc_en
&& ctrlpriv
->pr_support
) && rng_vid
>= 4) {
682 ctrlpriv
->rng4_sh_init
=
683 rd_reg32(&ctrl
->r4tst
[0].rdsta
);
685 * If the secure keys (TDKEK, JDKEK, TDSK), were already
686 * generated, signal this to the function that is instantiating
687 * the state handles. An error would occur if RNG4 attempts
688 * to regenerate these keys before the next POR.
690 gen_sk
= ctrlpriv
->rng4_sh_init
& RDSTA_SKVN
? 0 : 1;
691 ctrlpriv
->rng4_sh_init
&= RDSTA_MASK
;
694 rd_reg32(&ctrl
->r4tst
[0].rdsta
) & RDSTA_MASK
;
696 * If either SH were instantiated by somebody else
697 * (e.g. u-boot) then it is assumed that the entropy
698 * parameters are properly set and thus the function
699 * setting these (kick_trng(...)) is skipped.
700 * Also, if a handle was instantiated, do not change
701 * the TRNG parameters.
703 if (needs_entropy_delay_adjustment())
705 if (!(ctrlpriv
->rng4_sh_init
|| inst_handles
)) {
707 "Entropy delay = %u\n",
709 kick_trng(dev
, ent_delay
);
713 * if instantiate_rng(...) fails, the loop will rerun
714 * and the kick_trng(...) function will modify the
715 * upper and lower limits of the entropy sampling
716 * interval, leading to a successful initialization of
719 ret
= instantiate_rng(dev
, inst_handles
,
722 * Entropy delay is determined via TRNG characterization.
723 * TRNG characterization is run across different voltages
725 * If worst case value for ent_dly is identified,
726 * the loop can be skipped for that platform.
728 if (needs_entropy_delay_adjustment())
732 * if here, the loop will rerun,
733 * so don't hog the CPU
736 } while ((ret
== -EAGAIN
) && (ent_delay
< RTSDCTL_ENT_DLY_MAX
));
738 dev_err(dev
, "failed to instantiate RNG");
742 * Set handles initialized by this module as the complement of
743 * the already initialized ones
745 ctrlpriv
->rng4_sh_init
= ~ctrlpriv
->rng4_sh_init
& RDSTA_MASK
;
747 /* Enable RDB bit so that RNG works faster */
748 clrsetbits_32(&ctrl
->scfgr
, 0, SCFGR_RDBENABLE
);
754 /* Indicate if the internal state of the CAAM is lost during PM */
755 static int caam_off_during_pm(void)
757 bool not_off_during_pm
= of_machine_is_compatible("fsl,imx6q") ||
758 of_machine_is_compatible("fsl,imx6qp") ||
759 of_machine_is_compatible("fsl,imx6dl");
761 return not_off_during_pm
? 0 : 1;
764 static void caam_state_save(struct device
*dev
)
766 struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(dev
);
767 struct caam_ctl_state
*state
= &ctrlpriv
->state
;
768 struct caam_ctrl __iomem
*ctrl
= ctrlpriv
->ctrl
;
769 u32 deco_inst
, jr_inst
;
772 state
->mcr
= rd_reg32(&ctrl
->mcr
);
773 state
->scfgr
= rd_reg32(&ctrl
->scfgr
);
775 deco_inst
= (rd_reg32(&ctrl
->perfmon
.cha_num_ms
) &
776 CHA_ID_MS_DECO_MASK
) >> CHA_ID_MS_DECO_SHIFT
;
777 for (i
= 0; i
< deco_inst
; i
++) {
778 state
->deco_mid
[i
].liodn_ms
=
779 rd_reg32(&ctrl
->deco_mid
[i
].liodn_ms
);
780 state
->deco_mid
[i
].liodn_ls
=
781 rd_reg32(&ctrl
->deco_mid
[i
].liodn_ls
);
784 jr_inst
= (rd_reg32(&ctrl
->perfmon
.cha_num_ms
) &
785 CHA_ID_MS_JR_MASK
) >> CHA_ID_MS_JR_SHIFT
;
786 for (i
= 0; i
< jr_inst
; i
++) {
787 state
->jr_mid
[i
].liodn_ms
=
788 rd_reg32(&ctrl
->jr_mid
[i
].liodn_ms
);
789 state
->jr_mid
[i
].liodn_ls
=
790 rd_reg32(&ctrl
->jr_mid
[i
].liodn_ls
);
794 static void caam_state_restore(const struct device
*dev
)
796 const struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(dev
);
797 const struct caam_ctl_state
*state
= &ctrlpriv
->state
;
798 struct caam_ctrl __iomem
*ctrl
= ctrlpriv
->ctrl
;
799 u32 deco_inst
, jr_inst
;
802 wr_reg32(&ctrl
->mcr
, state
->mcr
);
803 wr_reg32(&ctrl
->scfgr
, state
->scfgr
);
805 deco_inst
= (rd_reg32(&ctrl
->perfmon
.cha_num_ms
) &
806 CHA_ID_MS_DECO_MASK
) >> CHA_ID_MS_DECO_SHIFT
;
807 for (i
= 0; i
< deco_inst
; i
++) {
808 wr_reg32(&ctrl
->deco_mid
[i
].liodn_ms
,
809 state
->deco_mid
[i
].liodn_ms
);
810 wr_reg32(&ctrl
->deco_mid
[i
].liodn_ls
,
811 state
->deco_mid
[i
].liodn_ls
);
814 jr_inst
= (rd_reg32(&ctrl
->perfmon
.cha_num_ms
) &
815 CHA_ID_MS_JR_MASK
) >> CHA_ID_MS_JR_SHIFT
;
816 for (i
= 0; i
< jr_inst
; i
++) {
817 wr_reg32(&ctrl
->jr_mid
[i
].liodn_ms
,
818 state
->jr_mid
[i
].liodn_ms
);
819 wr_reg32(&ctrl
->jr_mid
[i
].liodn_ls
,
820 state
->jr_mid
[i
].liodn_ls
);
823 if (ctrlpriv
->virt_en
== 1)
824 clrsetbits_32(&ctrl
->jrstart
, 0, JRSTART_JR0_START
|
825 JRSTART_JR1_START
| JRSTART_JR2_START
|
829 static int caam_ctrl_suspend(struct device
*dev
)
831 const struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(dev
);
833 if (ctrlpriv
->caam_off_during_pm
&& !ctrlpriv
->optee_en
)
834 caam_state_save(dev
);
839 static int caam_ctrl_resume(struct device
*dev
)
841 struct caam_drv_private
*ctrlpriv
= dev_get_drvdata(dev
);
844 if (ctrlpriv
->caam_off_during_pm
&& !ctrlpriv
->optee_en
) {
845 caam_state_restore(dev
);
847 /* HW and rng will be reset so deinstantiation can be removed */
848 devm_remove_action(dev
, devm_deinstantiate_rng
, dev
);
849 ret
= caam_ctrl_rng_init(dev
);
855 static DEFINE_SIMPLE_DEV_PM_OPS(caam_ctrl_pm_ops
, caam_ctrl_suspend
, caam_ctrl_resume
);
857 /* Probe routine for CAAM top (controller) level */
858 static int caam_probe(struct platform_device
*pdev
)
862 const struct soc_device_attribute
*imx_soc_match
;
864 struct device_node
*nprop
, *np
;
865 struct caam_ctrl __iomem
*ctrl
;
866 struct caam_drv_private
*ctrlpriv
;
867 struct caam_perfmon __iomem
*perfmon
;
868 struct dentry
*dfs_root
;
869 u32 scfgr
, comp_params
;
871 int BLOCK_OFFSET
= 0;
872 bool reg_access
= true;
873 const struct caam_imx_data
*imx_soc_data
;
875 ctrlpriv
= devm_kzalloc(&pdev
->dev
, sizeof(*ctrlpriv
), GFP_KERNEL
);
880 dev_set_drvdata(dev
, ctrlpriv
);
881 nprop
= pdev
->dev
.of_node
;
883 imx_soc_match
= soc_device_match(caam_imx_soc_table
);
884 if (!imx_soc_match
&& of_match_node(imx8m_machine_match
, of_root
))
885 return -EPROBE_DEFER
;
887 caam_imx
= (bool)imx_soc_match
;
889 ctrlpriv
->caam_off_during_pm
= caam_imx
&& caam_off_during_pm();
893 * Until Layerscape and i.MX OP-TEE get in sync,
894 * only i.MX OP-TEE use cases disallow access to
895 * caam page 0 (controller) registers.
897 np
= of_find_compatible_node(NULL
, NULL
, "linaro,optee-tz");
898 ctrlpriv
->optee_en
= !!np
;
901 reg_access
= !ctrlpriv
->optee_en
;
903 if (!imx_soc_match
->data
) {
904 dev_err(dev
, "No clock data provided for i.MX SoC");
908 imx_soc_data
= imx_soc_match
->data
;
909 reg_access
= reg_access
&& imx_soc_data
->page0_access
;
911 * CAAM clocks cannot be controlled from kernel.
913 if (!imx_soc_data
->num_clks
)
916 ret
= init_clocks(dev
, imx_soc_match
->data
);
922 /* Get configuration properties from device tree */
923 /* First, get register page */
924 ctrl
= devm_of_iomap(dev
, nprop
, 0, NULL
);
925 ret
= PTR_ERR_OR_ZERO(ctrl
);
927 dev_err(dev
, "caam: of_iomap() failed\n");
932 for_each_available_child_of_node(nprop
, np
)
933 if (of_device_is_compatible(np
, "fsl,sec-v4.0-job-ring") ||
934 of_device_is_compatible(np
, "fsl,sec4.0-job-ring")) {
937 if (of_property_read_u32_index(np
, "reg", 0, ®
)) {
938 dev_err(dev
, "%s read reg property error\n",
943 ctrlpriv
->jr
[ring
] = (struct caam_job_ring __iomem __force
*)
944 ((__force
uint8_t *)ctrl
+ reg
);
946 ctrlpriv
->total_jobrs
++;
951 * Wherever possible, instead of accessing registers from the global page,
952 * use the alias registers in the first (cf. DT nodes order)
955 perfmon
= ring
? (struct caam_perfmon __iomem
*)&ctrlpriv
->jr
[0]->perfmon
:
956 (struct caam_perfmon __iomem
*)&ctrl
->perfmon
;
958 caam_little_end
= !(bool)(rd_reg32(&perfmon
->status
) &
959 (CSTA_PLEND
| CSTA_ALT_PLEND
));
960 comp_params
= rd_reg32(&perfmon
->comp_parms_ms
);
961 if (reg_access
&& comp_params
& CTPR_MS_PS
&&
962 rd_reg32(&ctrl
->mcr
) & MCFGR_LONG_PTR
)
963 caam_ptr_sz
= sizeof(u64
);
965 caam_ptr_sz
= sizeof(u32
);
966 caam_dpaa2
= !!(comp_params
& CTPR_MS_DPAA2
);
967 ctrlpriv
->qi_present
= !!(comp_params
& CTPR_MS_QI_MASK
);
969 #ifdef CONFIG_CAAM_QI
970 /* If (DPAA 1.x) QI present, check whether dependencies are available */
971 if (ctrlpriv
->qi_present
&& !caam_dpaa2
) {
972 ret
= qman_is_probed();
974 return -EPROBE_DEFER
;
975 } else if (ret
< 0) {
976 dev_err(dev
, "failing probe due to qman probe error\n");
980 ret
= qman_portals_probed();
982 return -EPROBE_DEFER
;
983 } else if (ret
< 0) {
984 dev_err(dev
, "failing probe due to qman portals probe error\n");
990 /* Allocating the BLOCK_OFFSET based on the supported page size on
993 pg_size
= (comp_params
& CTPR_MS_PG_SZ_MASK
) >> CTPR_MS_PG_SZ_SHIFT
;
995 BLOCK_OFFSET
= PG_SIZE_4K
;
997 BLOCK_OFFSET
= PG_SIZE_64K
;
999 ctrlpriv
->ctrl
= (struct caam_ctrl __iomem __force
*)ctrl
;
1000 ctrlpriv
->assure
= (struct caam_assurance __iomem __force
*)
1001 ((__force
uint8_t *)ctrl
+
1002 BLOCK_OFFSET
* ASSURE_BLOCK_NUMBER
1004 ctrlpriv
->deco
= (struct caam_deco __iomem __force
*)
1005 ((__force
uint8_t *)ctrl
+
1006 BLOCK_OFFSET
* DECO_BLOCK_NUMBER
1009 /* Get the IRQ of the controller (for security violations only) */
1010 ctrlpriv
->secvio_irq
= irq_of_parse_and_map(nprop
, 0);
1011 np
= of_find_compatible_node(NULL
, NULL
, "fsl,qoriq-mc");
1012 ctrlpriv
->mc_en
= !!np
;
1015 #ifdef CONFIG_FSL_MC_BUS
1016 if (ctrlpriv
->mc_en
) {
1017 struct fsl_mc_version
*mc_version
;
1019 mc_version
= fsl_mc_get_version();
1021 ctrlpriv
->pr_support
= check_version(mc_version
, 10, 20,
1024 return -EPROBE_DEFER
;
1032 * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel,
1033 * long pointers in master configuration register.
1034 * In case of SoCs with Management Complex, MC f/w performs
1035 * the configuration.
1037 if (!ctrlpriv
->mc_en
)
1038 clrsetbits_32(&ctrl
->mcr
, MCFGR_AWCACHE_MASK
,
1039 MCFGR_AWCACHE_CACH
| MCFGR_AWCACHE_BUFF
|
1040 MCFGR_WDENABLE
| MCFGR_LARGE_BURST
);
1042 handle_imx6_err005766(&ctrl
->mcr
);
1045 * Read the Compile Time parameters and SCFGR to determine
1046 * if virtualization is enabled for this platform
1048 scfgr
= rd_reg32(&ctrl
->scfgr
);
1050 ctrlpriv
->virt_en
= 0;
1051 if (comp_params
& CTPR_MS_VIRT_EN_INCL
) {
1052 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or
1053 * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SCFGR_VIRT_EN = 1
1055 if ((comp_params
& CTPR_MS_VIRT_EN_POR
) ||
1056 (!(comp_params
& CTPR_MS_VIRT_EN_POR
) &&
1057 (scfgr
& SCFGR_VIRT_EN
)))
1058 ctrlpriv
->virt_en
= 1;
1060 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */
1061 if (comp_params
& CTPR_MS_VIRT_EN_POR
)
1062 ctrlpriv
->virt_en
= 1;
1065 if (ctrlpriv
->virt_en
== 1)
1066 clrsetbits_32(&ctrl
->jrstart
, 0, JRSTART_JR0_START
|
1067 JRSTART_JR1_START
| JRSTART_JR2_START
|
1071 ret
= dma_set_mask_and_coherent(dev
, caam_get_dma_mask(dev
));
1073 dev_err(dev
, "dma_set_mask_and_coherent failed (%d)\n", ret
);
1077 ctrlpriv
->era
= caam_get_era(perfmon
);
1078 ctrlpriv
->domain
= iommu_get_domain_for_dev(dev
);
1080 dfs_root
= debugfs_create_dir(dev_name(dev
), NULL
);
1081 if (IS_ENABLED(CONFIG_DEBUG_FS
)) {
1082 ret
= devm_add_action_or_reset(dev
, caam_remove_debugfs
,
1088 caam_debugfs_init(ctrlpriv
, perfmon
, dfs_root
);
1090 /* Check to see if (DPAA 1.x) QI present. If so, enable */
1091 if (ctrlpriv
->qi_present
&& !caam_dpaa2
) {
1092 ctrlpriv
->qi
= (struct caam_queue_if __iomem __force
*)
1093 ((__force
uint8_t *)ctrl
+
1094 BLOCK_OFFSET
* QI_BLOCK_NUMBER
1096 /* This is all that's required to physically enable QI */
1097 wr_reg32(&ctrlpriv
->qi
->qi_control_lo
, QICTL_DQEN
);
1099 /* If QMAN driver is present, init CAAM-QI backend */
1100 #ifdef CONFIG_CAAM_QI
1101 ret
= caam_qi_init(pdev
);
1103 dev_err(dev
, "caam qi i/f init failed: %d\n", ret
);
1107 /* If no QI and no rings specified, quit and go home */
1108 if ((!ctrlpriv
->qi_present
) && (!ctrlpriv
->total_jobrs
)) {
1109 dev_err(dev
, "no queues configured, terminating\n");
1113 comp_params
= rd_reg32(&perfmon
->comp_parms_ls
);
1114 ctrlpriv
->blob_present
= !!(comp_params
& CTPR_LS_BLOB
);
1117 * Some SoCs like the LS1028A (non-E) indicate CTPR_LS_BLOB support,
1118 * but fail when actually using it due to missing AES support, so
1121 if (ctrlpriv
->era
< 10) {
1122 ctrlpriv
->blob_present
= ctrlpriv
->blob_present
&&
1123 (rd_reg32(&perfmon
->cha_num_ls
) & CHA_ID_LS_AES_MASK
);
1125 struct version_regs __iomem
*vreg
;
1127 vreg
= ctrlpriv
->total_jobrs
?
1128 (struct version_regs __iomem
*)&ctrlpriv
->jr
[0]->vreg
:
1129 (struct version_regs __iomem
*)&ctrl
->vreg
;
1131 ctrlpriv
->blob_present
= ctrlpriv
->blob_present
&&
1132 (rd_reg32(&vreg
->aesa
) & CHA_VER_MISC_AES_NUM_MASK
);
1136 ret
= caam_ctrl_rng_init(dev
);
1141 caam_id
= (u64
)rd_reg32(&perfmon
->caam_id_ms
) << 32 |
1142 (u64
)rd_reg32(&perfmon
->caam_id_ls
);
1144 /* Report "alive" for developer to see */
1145 dev_info(dev
, "device ID = 0x%016llx (Era %d)\n", caam_id
,
1147 dev_info(dev
, "job rings = %d, qi = %d\n",
1148 ctrlpriv
->total_jobrs
, ctrlpriv
->qi_present
);
1150 ret
= devm_of_platform_populate(dev
);
1152 dev_err(dev
, "JR platform devices creation error\n");
1157 static struct platform_driver caam_driver
= {
1160 .of_match_table
= caam_match
,
1161 .pm
= pm_ptr(&caam_ctrl_pm_ops
),
1163 .probe
= caam_probe
,
1166 module_platform_driver(caam_driver
);
1168 MODULE_LICENSE("GPL");
1169 MODULE_DESCRIPTION("FSL CAAM request backend");
1170 MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");