1 /* * CAAM control-plane driver backend
2 * Controller-level driver, kernel property detection, initialization
4 * Copyright 2008-2012 Freescale Semiconductor, Inc.
7 #include <linux/device.h>
8 #include <linux/of_address.h>
9 #include <linux/of_irq.h>
15 #include "desc_constr.h"
19 * i.MX targets tend to have clock control subsystems that can
20 * enable/disable clocking to our device.
22 #ifdef CONFIG_CRYPTO_DEV_FSL_CAAM_IMX
23 static inline struct clk *caam_drv_identify_clk(struct device *dev,
26 return devm_clk_get(dev, clk_name);
29 static inline struct clk *caam_drv_identify_clk(struct device *dev,
37 * Descriptor to instantiate RNG State Handle 0 in normal mode and
38 * load the JDKEK, TDKEK and TDSK registers
40 static void build_instantiation_desc(u32 *desc, int handle, int do_sk)
42 u32 *jump_cmd, op_flags;
44 init_job_desc(desc, 0);
46 op_flags = OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
47 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INIT;
49 /* INIT RNG in non-test mode */
50 append_operation(desc, op_flags);
52 if (!handle && do_sk) {
54 * For SH0, Secure Keys must be generated as well
58 jump_cmd = append_jump(desc, JUMP_CLASS_CLASS1);
59 set_jump_tgt_here(desc, jump_cmd);
62 * load 1 to clear written reg:
63 * resets the done interrrupt and returns the RNG to idle.
65 append_load_imm_u32(desc, 1, LDST_SRCDST_WORD_CLRW);
67 /* Initialize State Handle */
68 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
72 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
75 /* Descriptor for deinstantiation of State Handle 0 of the RNG block. */
76 static void build_deinstantiation_desc(u32 *desc, int handle)
78 init_job_desc(desc, 0);
80 /* Uninstantiate State Handle 0 */
81 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
82 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INITFINAL);
84 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
88 * run_descriptor_deco0 - runs a descriptor on DECO0, under direct control of
89 * the software (no JR/QI used).
90 * @ctrldev - pointer to device
91 * @status - descriptor status, after being run
93 * Return: - 0 if no error occurred
94 * - -ENODEV if the DECO couldn't be acquired
95 * - -EAGAIN if an error occurred while executing the descriptor
97 static inline int run_descriptor_deco0(struct device *ctrldev, u32 *desc,
100 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
101 struct caam_ctrl __iomem *ctrl = ctrlpriv->ctrl;
102 struct caam_deco __iomem *deco = ctrlpriv->deco;
103 unsigned int timeout = 100000;
104 u32 deco_dbg_reg, flags;
108 if (ctrlpriv->virt_en == 1) {
109 setbits32(&ctrl->deco_rsr, DECORSR_JR0);
111 while (!(rd_reg32(&ctrl->deco_rsr) & DECORSR_VALID) &&
118 setbits32(&ctrl->deco_rq, DECORR_RQD0ENABLE);
120 while (!(rd_reg32(&ctrl->deco_rq) & DECORR_DEN0) &&
125 dev_err(ctrldev, "failed to acquire DECO 0\n");
126 clrbits32(&ctrl->deco_rq, DECORR_RQD0ENABLE);
130 for (i = 0; i < desc_len(desc); i++)
131 wr_reg32(&deco->descbuf[i], *(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 setbits32(&deco->jr_ctl_hi, flags);
146 deco_dbg_reg = rd_reg32(&deco->desc_dbg);
148 * If an error occured in the descriptor, then
149 * the DECO status field will be set to 0x0D
151 if ((deco_dbg_reg & DESC_DBG_DECO_STAT_MASK) ==
152 DESC_DBG_DECO_STAT_HOST_ERR)
155 } while ((deco_dbg_reg & DESC_DBG_DECO_STAT_VALID) && --timeout);
157 *status = rd_reg32(&deco->op_status_hi) &
158 DECO_OP_STATUS_HI_ERR_MASK;
160 if (ctrlpriv->virt_en == 1)
161 clrbits32(&ctrl->deco_rsr, DECORSR_JR0);
163 /* Mark the DECO as free */
164 clrbits32(&ctrl->deco_rq, DECORR_RQD0ENABLE);
173 * instantiate_rng - builds and executes a descriptor on DECO0,
174 * which initializes the RNG block.
175 * @ctrldev - pointer to device
176 * @state_handle_mask - bitmask containing the instantiation status
177 * for the RNG4 state handles which exist in
178 * the RNG4 block: 1 if it's been instantiated
179 * by an external entry, 0 otherwise.
180 * @gen_sk - generate data to be loaded into the JDKEK, TDKEK and TDSK;
181 * Caution: this can be done only once; if the keys need to be
182 * regenerated, a POR is required
184 * Return: - 0 if no error occurred
185 * - -ENOMEM if there isn't enough memory to allocate the descriptor
186 * - -ENODEV if DECO0 couldn't be acquired
187 * - -EAGAIN if an error occurred when executing the descriptor
188 * f.i. there was a RNG hardware error due to not "good enough"
189 * entropy being aquired.
191 static int instantiate_rng(struct device *ctrldev, int state_handle_mask,
194 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
195 struct caam_ctrl __iomem *ctrl;
196 u32 *desc, status = 0, rdsta_val;
199 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
200 desc = kmalloc(CAAM_CMD_SZ * 7, GFP_KERNEL);
204 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
206 * If the corresponding bit is set, this state handle
207 * was initialized by somebody else, so it's left alone.
209 if ((1 << sh_idx) & state_handle_mask)
212 /* Create the descriptor for instantiating RNG State Handle */
213 build_instantiation_desc(desc, sh_idx, gen_sk);
215 /* Try to run it through DECO0 */
216 ret = run_descriptor_deco0(ctrldev, desc, &status);
219 * If ret is not 0, or descriptor status is not 0, then
220 * something went wrong. No need to try the next state
221 * handle (if available), bail out here.
222 * Also, if for some reason, the State Handle didn't get
223 * instantiated although the descriptor has finished
224 * without any error (HW optimizations for later
225 * CAAM eras), then try again.
230 rdsta_val = rd_reg32(&ctrl->r4tst[0].rdsta) & RDSTA_IFMASK;
231 if ((status && status != JRSTA_SSRC_JUMP_HALT_CC) ||
232 !(rdsta_val & (1 << sh_idx))) {
237 dev_info(ctrldev, "Instantiated RNG4 SH%d\n", sh_idx);
238 /* Clear the contents before recreating the descriptor */
239 memset(desc, 0x00, CAAM_CMD_SZ * 7);
248 * deinstantiate_rng - builds and executes a descriptor on DECO0,
249 * which deinitializes the RNG block.
250 * @ctrldev - pointer to device
251 * @state_handle_mask - bitmask containing the instantiation status
252 * for the RNG4 state handles which exist in
253 * the RNG4 block: 1 if it's been instantiated
255 * Return: - 0 if no error occurred
256 * - -ENOMEM if there isn't enough memory to allocate the descriptor
257 * - -ENODEV if DECO0 couldn't be acquired
258 * - -EAGAIN if an error occurred when executing the descriptor
260 static int deinstantiate_rng(struct device *ctrldev, int state_handle_mask)
265 desc = kmalloc(CAAM_CMD_SZ * 3, GFP_KERNEL);
269 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
271 * If the corresponding bit is set, then it means the state
272 * handle was initialized by us, and thus it needs to be
273 * deintialized as well
275 if ((1 << sh_idx) & state_handle_mask) {
277 * Create the descriptor for deinstantating this state
280 build_deinstantiation_desc(desc, sh_idx);
282 /* Try to run it through DECO0 */
283 ret = run_descriptor_deco0(ctrldev, desc, &status);
286 (status && status != JRSTA_SSRC_JUMP_HALT_CC)) {
288 "Failed to deinstantiate RNG4 SH%d\n",
292 dev_info(ctrldev, "Deinstantiated RNG4 SH%d\n", sh_idx);
301 static int caam_remove(struct platform_device *pdev)
303 struct device *ctrldev;
304 struct caam_drv_private *ctrlpriv;
305 struct caam_ctrl __iomem *ctrl;
308 ctrldev = &pdev->dev;
309 ctrlpriv = dev_get_drvdata(ctrldev);
310 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
312 /* Remove platform devices for JobRs */
313 for (ring = 0; ring < ctrlpriv->total_jobrs; ring++) {
314 if (ctrlpriv->jrpdev[ring])
315 of_device_unregister(ctrlpriv->jrpdev[ring]);
318 /* De-initialize RNG state handles initialized by this driver. */
319 if (ctrlpriv->rng4_sh_init)
320 deinstantiate_rng(ctrldev, ctrlpriv->rng4_sh_init);
322 /* Shut down debug views */
323 #ifdef CONFIG_DEBUG_FS
324 debugfs_remove_recursive(ctrlpriv->dfs_root);
327 /* Unmap controller region */
330 /* shut clocks off before finalizing shutdown */
331 clk_disable_unprepare(ctrlpriv->caam_ipg);
332 clk_disable_unprepare(ctrlpriv->caam_mem);
333 clk_disable_unprepare(ctrlpriv->caam_aclk);
334 clk_disable_unprepare(ctrlpriv->caam_emi_slow);
340 * kick_trng - sets the various parameters for enabling the initialization
341 * of the RNG4 block in CAAM
342 * @pdev - pointer to the platform device
343 * @ent_delay - Defines the length (in system clocks) of each entropy sample.
345 static void kick_trng(struct platform_device *pdev, int ent_delay)
347 struct device *ctrldev = &pdev->dev;
348 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
349 struct caam_ctrl __iomem *ctrl;
350 struct rng4tst __iomem *r4tst;
353 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
354 r4tst = &ctrl->r4tst[0];
356 /* put RNG4 into program mode */
357 setbits32(&r4tst->rtmctl, RTMCTL_PRGM);
360 * Performance-wise, it does not make sense to
361 * set the delay to a value that is lower
362 * than the last one that worked (i.e. the state handles
363 * were instantiated properly. Thus, instead of wasting
364 * time trying to set the values controlling the sample
365 * frequency, the function simply returns.
367 val = (rd_reg32(&r4tst->rtsdctl) & RTSDCTL_ENT_DLY_MASK)
368 >> RTSDCTL_ENT_DLY_SHIFT;
369 if (ent_delay <= val) {
370 /* put RNG4 into run mode */
371 clrbits32(&r4tst->rtmctl, RTMCTL_PRGM);
375 val = rd_reg32(&r4tst->rtsdctl);
376 val = (val & ~RTSDCTL_ENT_DLY_MASK) |
377 (ent_delay << RTSDCTL_ENT_DLY_SHIFT);
378 wr_reg32(&r4tst->rtsdctl, val);
379 /* min. freq. count, equal to 1/4 of the entropy sample length */
380 wr_reg32(&r4tst->rtfrqmin, ent_delay >> 2);
381 /* disable maximum frequency count */
382 wr_reg32(&r4tst->rtfrqmax, RTFRQMAX_DISABLE);
383 /* read the control register */
384 val = rd_reg32(&r4tst->rtmctl);
386 * select raw sampling in both entropy shifter
387 * and statistical checker
389 setbits32(&val, RTMCTL_SAMP_MODE_RAW_ES_SC);
390 /* put RNG4 into run mode */
391 clrbits32(&val, RTMCTL_PRGM);
392 /* write back the control register */
393 wr_reg32(&r4tst->rtmctl, val);
397 * caam_get_era() - Return the ERA of the SEC on SoC, based
398 * on "sec-era" propery in the DTS. This property is updated by u-boot.
400 int caam_get_era(void)
402 struct device_node *caam_node;
406 caam_node = of_find_compatible_node(NULL, NULL, "fsl,sec-v4.0");
407 ret = of_property_read_u32(caam_node, "fsl,sec-era", &prop);
408 of_node_put(caam_node);
410 return IS_ERR_VALUE(ret) ? -ENOTSUPP : prop;
412 EXPORT_SYMBOL(caam_get_era);
414 /* Probe routine for CAAM top (controller) level */
415 static int caam_probe(struct platform_device *pdev)
417 int ret, ring, rspec, gen_sk, ent_delay = RTSDCTL_ENT_DLY_MIN;
420 struct device_node *nprop, *np;
421 struct caam_ctrl __iomem *ctrl;
422 struct caam_drv_private *ctrlpriv;
424 #ifdef CONFIG_DEBUG_FS
425 struct caam_perfmon *perfmon;
427 u32 scfgr, comp_params;
430 int BLOCK_OFFSET = 0;
432 ctrlpriv = devm_kzalloc(&pdev->dev, sizeof(*ctrlpriv), GFP_KERNEL);
437 dev_set_drvdata(dev, ctrlpriv);
438 ctrlpriv->pdev = pdev;
439 nprop = pdev->dev.of_node;
441 /* Enable clocking */
442 clk = caam_drv_identify_clk(&pdev->dev, "ipg");
446 "can't identify CAAM ipg clk: %d\n", ret);
449 ctrlpriv->caam_ipg = clk;
451 clk = caam_drv_identify_clk(&pdev->dev, "mem");
455 "can't identify CAAM mem clk: %d\n", ret);
458 ctrlpriv->caam_mem = clk;
460 clk = caam_drv_identify_clk(&pdev->dev, "aclk");
464 "can't identify CAAM aclk clk: %d\n", ret);
467 ctrlpriv->caam_aclk = clk;
469 clk = caam_drv_identify_clk(&pdev->dev, "emi_slow");
473 "can't identify CAAM emi_slow clk: %d\n", ret);
476 ctrlpriv->caam_emi_slow = clk;
478 ret = clk_prepare_enable(ctrlpriv->caam_ipg);
480 dev_err(&pdev->dev, "can't enable CAAM ipg clock: %d\n", ret);
484 ret = clk_prepare_enable(ctrlpriv->caam_mem);
486 dev_err(&pdev->dev, "can't enable CAAM secure mem clock: %d\n",
488 goto disable_caam_ipg;
491 ret = clk_prepare_enable(ctrlpriv->caam_aclk);
493 dev_err(&pdev->dev, "can't enable CAAM aclk clock: %d\n", ret);
494 goto disable_caam_mem;
497 ret = clk_prepare_enable(ctrlpriv->caam_emi_slow);
499 dev_err(&pdev->dev, "can't enable CAAM emi slow clock: %d\n",
501 goto disable_caam_aclk;
504 /* Get configuration properties from device tree */
505 /* First, get register page */
506 ctrl = of_iomap(nprop, 0);
508 dev_err(dev, "caam: of_iomap() failed\n");
510 goto disable_caam_emi_slow;
512 /* Finding the page size for using the CTPR_MS register */
513 comp_params = rd_reg32(&ctrl->perfmon.comp_parms_ms);
514 pg_size = (comp_params & CTPR_MS_PG_SZ_MASK) >> CTPR_MS_PG_SZ_SHIFT;
516 /* Allocating the BLOCK_OFFSET based on the supported page size on
520 BLOCK_OFFSET = PG_SIZE_4K;
522 BLOCK_OFFSET = PG_SIZE_64K;
524 ctrlpriv->ctrl = (struct caam_ctrl __force *)ctrl;
525 ctrlpriv->assure = (struct caam_assurance __force *)
527 BLOCK_OFFSET * ASSURE_BLOCK_NUMBER
529 ctrlpriv->deco = (struct caam_deco __force *)
531 BLOCK_OFFSET * DECO_BLOCK_NUMBER
534 /* Get the IRQ of the controller (for security violations only) */
535 ctrlpriv->secvio_irq = irq_of_parse_and_map(nprop, 0);
538 * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel,
539 * long pointers in master configuration register
541 clrsetbits_32(&ctrl->mcr, MCFGR_AWCACHE_MASK, MCFGR_AWCACHE_CACH |
542 MCFGR_AWCACHE_BUFF | MCFGR_WDENABLE |
543 (sizeof(dma_addr_t) == sizeof(u64) ? MCFGR_LONG_PTR : 0));
546 * Read the Compile Time paramters and SCFGR to determine
547 * if Virtualization is enabled for this platform
549 scfgr = rd_reg32(&ctrl->scfgr);
551 ctrlpriv->virt_en = 0;
552 if (comp_params & CTPR_MS_VIRT_EN_INCL) {
553 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or
554 * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SCFGR_VIRT_EN = 1
556 if ((comp_params & CTPR_MS_VIRT_EN_POR) ||
557 (!(comp_params & CTPR_MS_VIRT_EN_POR) &&
558 (scfgr & SCFGR_VIRT_EN)))
559 ctrlpriv->virt_en = 1;
561 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */
562 if (comp_params & CTPR_MS_VIRT_EN_POR)
563 ctrlpriv->virt_en = 1;
566 if (ctrlpriv->virt_en == 1)
567 setbits32(&ctrl->jrstart, JRSTART_JR0_START |
568 JRSTART_JR1_START | JRSTART_JR2_START |
571 if (sizeof(dma_addr_t) == sizeof(u64))
572 if (of_device_is_compatible(nprop, "fsl,sec-v5.0"))
573 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(40));
575 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(36));
577 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
580 * Detect and enable JobRs
581 * First, find out how many ring spec'ed, allocate references
582 * for all, then go probe each one.
585 for_each_available_child_of_node(nprop, np)
586 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
587 of_device_is_compatible(np, "fsl,sec4.0-job-ring"))
590 ctrlpriv->jrpdev = devm_kcalloc(&pdev->dev, rspec,
591 sizeof(*ctrlpriv->jrpdev), GFP_KERNEL);
592 if (ctrlpriv->jrpdev == NULL) {
598 ctrlpriv->total_jobrs = 0;
599 for_each_available_child_of_node(nprop, np)
600 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
601 of_device_is_compatible(np, "fsl,sec4.0-job-ring")) {
602 ctrlpriv->jrpdev[ring] =
603 of_platform_device_create(np, NULL, dev);
604 if (!ctrlpriv->jrpdev[ring]) {
605 pr_warn("JR%d Platform device creation error\n",
609 ctrlpriv->jr[ring] = (struct caam_job_ring __force *)
611 (ring + JR_BLOCK_NUMBER) *
614 ctrlpriv->total_jobrs++;
618 /* Check to see if QI present. If so, enable */
619 ctrlpriv->qi_present =
620 !!(rd_reg32(&ctrl->perfmon.comp_parms_ms) &
622 if (ctrlpriv->qi_present) {
623 ctrlpriv->qi = (struct caam_queue_if __force *)
625 BLOCK_OFFSET * QI_BLOCK_NUMBER
627 /* This is all that's required to physically enable QI */
628 wr_reg32(&ctrlpriv->qi->qi_control_lo, QICTL_DQEN);
631 /* If no QI and no rings specified, quit and go home */
632 if ((!ctrlpriv->qi_present) && (!ctrlpriv->total_jobrs)) {
633 dev_err(dev, "no queues configured, terminating\n");
638 cha_vid_ls = rd_reg32(&ctrl->perfmon.cha_id_ls);
641 * If SEC has RNG version >= 4 and RNG state handle has not been
642 * already instantiated, do RNG instantiation
644 if ((cha_vid_ls & CHA_ID_LS_RNG_MASK) >> CHA_ID_LS_RNG_SHIFT >= 4) {
645 ctrlpriv->rng4_sh_init =
646 rd_reg32(&ctrl->r4tst[0].rdsta);
648 * If the secure keys (TDKEK, JDKEK, TDSK), were already
649 * generated, signal this to the function that is instantiating
650 * the state handles. An error would occur if RNG4 attempts
651 * to regenerate these keys before the next POR.
653 gen_sk = ctrlpriv->rng4_sh_init & RDSTA_SKVN ? 0 : 1;
654 ctrlpriv->rng4_sh_init &= RDSTA_IFMASK;
657 rd_reg32(&ctrl->r4tst[0].rdsta) &
660 * If either SH were instantiated by somebody else
661 * (e.g. u-boot) then it is assumed that the entropy
662 * parameters are properly set and thus the function
663 * setting these (kick_trng(...)) is skipped.
664 * Also, if a handle was instantiated, do not change
665 * the TRNG parameters.
667 if (!(ctrlpriv->rng4_sh_init || inst_handles)) {
669 "Entropy delay = %u\n",
671 kick_trng(pdev, ent_delay);
675 * if instantiate_rng(...) fails, the loop will rerun
676 * and the kick_trng(...) function will modfiy the
677 * upper and lower limits of the entropy sampling
678 * interval, leading to a sucessful initialization of
681 ret = instantiate_rng(dev, inst_handles,
685 * if here, the loop will rerun,
686 * so don't hog the CPU
689 } while ((ret == -EAGAIN) && (ent_delay < RTSDCTL_ENT_DLY_MAX));
691 dev_err(dev, "failed to instantiate RNG");
695 * Set handles init'ed by this module as the complement of the
696 * already initialized ones
698 ctrlpriv->rng4_sh_init = ~ctrlpriv->rng4_sh_init & RDSTA_IFMASK;
700 /* Enable RDB bit so that RNG works faster */
701 setbits32(&ctrl->scfgr, SCFGR_RDBENABLE);
704 /* NOTE: RTIC detection ought to go here, around Si time */
706 caam_id = (u64)rd_reg32(&ctrl->perfmon.caam_id_ms) << 32 |
707 (u64)rd_reg32(&ctrl->perfmon.caam_id_ls);
709 /* Report "alive" for developer to see */
710 dev_info(dev, "device ID = 0x%016llx (Era %d)\n", caam_id,
712 dev_info(dev, "job rings = %d, qi = %d\n",
713 ctrlpriv->total_jobrs, ctrlpriv->qi_present);
715 #ifdef CONFIG_DEBUG_FS
717 * FIXME: needs better naming distinction, as some amalgamation of
718 * "caam" and nprop->full_name. The OF name isn't distinctive,
719 * but does separate instances
721 perfmon = (struct caam_perfmon __force *)&ctrl->perfmon;
723 ctrlpriv->dfs_root = debugfs_create_dir(dev_name(dev), NULL);
724 ctrlpriv->ctl = debugfs_create_dir("ctl", ctrlpriv->dfs_root);
726 /* Controller-level - performance monitor counters */
727 ctrlpriv->ctl_rq_dequeued =
728 debugfs_create_u64("rq_dequeued",
729 S_IRUSR | S_IRGRP | S_IROTH,
730 ctrlpriv->ctl, &perfmon->req_dequeued);
731 ctrlpriv->ctl_ob_enc_req =
732 debugfs_create_u64("ob_rq_encrypted",
733 S_IRUSR | S_IRGRP | S_IROTH,
734 ctrlpriv->ctl, &perfmon->ob_enc_req);
735 ctrlpriv->ctl_ib_dec_req =
736 debugfs_create_u64("ib_rq_decrypted",
737 S_IRUSR | S_IRGRP | S_IROTH,
738 ctrlpriv->ctl, &perfmon->ib_dec_req);
739 ctrlpriv->ctl_ob_enc_bytes =
740 debugfs_create_u64("ob_bytes_encrypted",
741 S_IRUSR | S_IRGRP | S_IROTH,
742 ctrlpriv->ctl, &perfmon->ob_enc_bytes);
743 ctrlpriv->ctl_ob_prot_bytes =
744 debugfs_create_u64("ob_bytes_protected",
745 S_IRUSR | S_IRGRP | S_IROTH,
746 ctrlpriv->ctl, &perfmon->ob_prot_bytes);
747 ctrlpriv->ctl_ib_dec_bytes =
748 debugfs_create_u64("ib_bytes_decrypted",
749 S_IRUSR | S_IRGRP | S_IROTH,
750 ctrlpriv->ctl, &perfmon->ib_dec_bytes);
751 ctrlpriv->ctl_ib_valid_bytes =
752 debugfs_create_u64("ib_bytes_validated",
753 S_IRUSR | S_IRGRP | S_IROTH,
754 ctrlpriv->ctl, &perfmon->ib_valid_bytes);
756 /* Controller level - global status values */
757 ctrlpriv->ctl_faultaddr =
758 debugfs_create_u64("fault_addr",
759 S_IRUSR | S_IRGRP | S_IROTH,
760 ctrlpriv->ctl, &perfmon->faultaddr);
761 ctrlpriv->ctl_faultdetail =
762 debugfs_create_u32("fault_detail",
763 S_IRUSR | S_IRGRP | S_IROTH,
764 ctrlpriv->ctl, &perfmon->faultdetail);
765 ctrlpriv->ctl_faultstatus =
766 debugfs_create_u32("fault_status",
767 S_IRUSR | S_IRGRP | S_IROTH,
768 ctrlpriv->ctl, &perfmon->status);
770 /* Internal covering keys (useful in non-secure mode only) */
771 ctrlpriv->ctl_kek_wrap.data = &ctrlpriv->ctrl->kek[0];
772 ctrlpriv->ctl_kek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
773 ctrlpriv->ctl_kek = debugfs_create_blob("kek",
777 &ctrlpriv->ctl_kek_wrap);
779 ctrlpriv->ctl_tkek_wrap.data = &ctrlpriv->ctrl->tkek[0];
780 ctrlpriv->ctl_tkek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
781 ctrlpriv->ctl_tkek = debugfs_create_blob("tkek",
785 &ctrlpriv->ctl_tkek_wrap);
787 ctrlpriv->ctl_tdsk_wrap.data = &ctrlpriv->ctrl->tdsk[0];
788 ctrlpriv->ctl_tdsk_wrap.size = KEK_KEY_SIZE * sizeof(u32);
789 ctrlpriv->ctl_tdsk = debugfs_create_blob("tdsk",
793 &ctrlpriv->ctl_tdsk_wrap);
801 disable_caam_emi_slow:
802 clk_disable_unprepare(ctrlpriv->caam_emi_slow);
804 clk_disable_unprepare(ctrlpriv->caam_aclk);
806 clk_disable_unprepare(ctrlpriv->caam_mem);
808 clk_disable_unprepare(ctrlpriv->caam_ipg);
812 static struct of_device_id caam_match[] = {
814 .compatible = "fsl,sec-v4.0",
817 .compatible = "fsl,sec4.0",
821 MODULE_DEVICE_TABLE(of, caam_match);
823 static struct platform_driver caam_driver = {
826 .of_match_table = caam_match,
829 .remove = caam_remove,
832 module_platform_driver(caam_driver);
834 MODULE_LICENSE("GPL");
835 MODULE_DESCRIPTION("FSL CAAM request backend");
836 MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");