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.
227 rdsta_val = rd_reg32(&ctrl->r4tst[0].rdsta) & RDSTA_IFMASK;
228 if ((status && status != JRSTA_SSRC_JUMP_HALT_CC) ||
229 !(rdsta_val & (1 << sh_idx)))
233 dev_info(ctrldev, "Instantiated RNG4 SH%d\n", sh_idx);
234 /* Clear the contents before recreating the descriptor */
235 memset(desc, 0x00, CAAM_CMD_SZ * 7);
244 * deinstantiate_rng - builds and executes a descriptor on DECO0,
245 * which deinitializes the RNG block.
246 * @ctrldev - pointer to device
247 * @state_handle_mask - bitmask containing the instantiation status
248 * for the RNG4 state handles which exist in
249 * the RNG4 block: 1 if it's been instantiated
251 * Return: - 0 if no error occurred
252 * - -ENOMEM if there isn't enough memory to allocate the descriptor
253 * - -ENODEV if DECO0 couldn't be acquired
254 * - -EAGAIN if an error occurred when executing the descriptor
256 static int deinstantiate_rng(struct device *ctrldev, int state_handle_mask)
261 desc = kmalloc(CAAM_CMD_SZ * 3, GFP_KERNEL);
265 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
267 * If the corresponding bit is set, then it means the state
268 * handle was initialized by us, and thus it needs to be
269 * deintialized as well
271 if ((1 << sh_idx) & state_handle_mask) {
273 * Create the descriptor for deinstantating this state
276 build_deinstantiation_desc(desc, sh_idx);
278 /* Try to run it through DECO0 */
279 ret = run_descriptor_deco0(ctrldev, desc, &status);
283 "Failed to deinstantiate RNG4 SH%d\n",
287 dev_info(ctrldev, "Deinstantiated RNG4 SH%d\n", sh_idx);
296 static int caam_remove(struct platform_device *pdev)
298 struct device *ctrldev;
299 struct caam_drv_private *ctrlpriv;
300 struct caam_ctrl __iomem *ctrl;
303 ctrldev = &pdev->dev;
304 ctrlpriv = dev_get_drvdata(ctrldev);
305 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
307 /* Remove platform devices for JobRs */
308 for (ring = 0; ring < ctrlpriv->total_jobrs; ring++) {
309 if (ctrlpriv->jrpdev[ring])
310 of_device_unregister(ctrlpriv->jrpdev[ring]);
313 /* De-initialize RNG state handles initialized by this driver. */
314 if (ctrlpriv->rng4_sh_init)
315 deinstantiate_rng(ctrldev, ctrlpriv->rng4_sh_init);
317 /* Shut down debug views */
318 #ifdef CONFIG_DEBUG_FS
319 debugfs_remove_recursive(ctrlpriv->dfs_root);
322 /* Unmap controller region */
325 /* shut clocks off before finalizing shutdown */
326 clk_disable_unprepare(ctrlpriv->caam_ipg);
327 clk_disable_unprepare(ctrlpriv->caam_mem);
328 clk_disable_unprepare(ctrlpriv->caam_aclk);
329 clk_disable_unprepare(ctrlpriv->caam_emi_slow);
335 * kick_trng - sets the various parameters for enabling the initialization
336 * of the RNG4 block in CAAM
337 * @pdev - pointer to the platform device
338 * @ent_delay - Defines the length (in system clocks) of each entropy sample.
340 static void kick_trng(struct platform_device *pdev, int ent_delay)
342 struct device *ctrldev = &pdev->dev;
343 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
344 struct caam_ctrl __iomem *ctrl;
345 struct rng4tst __iomem *r4tst;
348 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
349 r4tst = &ctrl->r4tst[0];
351 /* put RNG4 into program mode */
352 setbits32(&r4tst->rtmctl, RTMCTL_PRGM);
355 * Performance-wise, it does not make sense to
356 * set the delay to a value that is lower
357 * than the last one that worked (i.e. the state handles
358 * were instantiated properly. Thus, instead of wasting
359 * time trying to set the values controlling the sample
360 * frequency, the function simply returns.
362 val = (rd_reg32(&r4tst->rtsdctl) & RTSDCTL_ENT_DLY_MASK)
363 >> RTSDCTL_ENT_DLY_SHIFT;
364 if (ent_delay <= val) {
365 /* put RNG4 into run mode */
366 clrbits32(&r4tst->rtmctl, RTMCTL_PRGM);
370 val = rd_reg32(&r4tst->rtsdctl);
371 val = (val & ~RTSDCTL_ENT_DLY_MASK) |
372 (ent_delay << RTSDCTL_ENT_DLY_SHIFT);
373 wr_reg32(&r4tst->rtsdctl, val);
374 /* min. freq. count, equal to 1/4 of the entropy sample length */
375 wr_reg32(&r4tst->rtfrqmin, ent_delay >> 2);
376 /* disable maximum frequency count */
377 wr_reg32(&r4tst->rtfrqmax, RTFRQMAX_DISABLE);
378 /* read the control register */
379 val = rd_reg32(&r4tst->rtmctl);
381 * select raw sampling in both entropy shifter
382 * and statistical checker
384 setbits32(&val, RTMCTL_SAMP_MODE_RAW_ES_SC);
385 /* put RNG4 into run mode */
386 clrbits32(&val, RTMCTL_PRGM);
387 /* write back the control register */
388 wr_reg32(&r4tst->rtmctl, val);
392 * caam_get_era() - Return the ERA of the SEC on SoC, based
393 * on "sec-era" propery in the DTS. This property is updated by u-boot.
395 int caam_get_era(void)
397 struct device_node *caam_node;
401 caam_node = of_find_compatible_node(NULL, NULL, "fsl,sec-v4.0");
402 ret = of_property_read_u32(caam_node, "fsl,sec-era", &prop);
403 of_node_put(caam_node);
405 return IS_ERR_VALUE(ret) ? -ENOTSUPP : prop;
407 EXPORT_SYMBOL(caam_get_era);
409 /* Probe routine for CAAM top (controller) level */
410 static int caam_probe(struct platform_device *pdev)
412 int ret, ring, rspec, gen_sk, ent_delay = RTSDCTL_ENT_DLY_MIN;
415 struct device_node *nprop, *np;
416 struct caam_ctrl __iomem *ctrl;
417 struct caam_drv_private *ctrlpriv;
419 #ifdef CONFIG_DEBUG_FS
420 struct caam_perfmon *perfmon;
422 u32 scfgr, comp_params;
425 int BLOCK_OFFSET = 0;
427 ctrlpriv = devm_kzalloc(&pdev->dev, sizeof(*ctrlpriv), GFP_KERNEL);
432 dev_set_drvdata(dev, ctrlpriv);
433 ctrlpriv->pdev = pdev;
434 nprop = pdev->dev.of_node;
436 /* Enable clocking */
437 clk = caam_drv_identify_clk(&pdev->dev, "ipg");
441 "can't identify CAAM ipg clk: %d\n", ret);
444 ctrlpriv->caam_ipg = clk;
446 clk = caam_drv_identify_clk(&pdev->dev, "mem");
450 "can't identify CAAM mem clk: %d\n", ret);
453 ctrlpriv->caam_mem = clk;
455 clk = caam_drv_identify_clk(&pdev->dev, "aclk");
459 "can't identify CAAM aclk clk: %d\n", ret);
462 ctrlpriv->caam_aclk = clk;
464 clk = caam_drv_identify_clk(&pdev->dev, "emi_slow");
468 "can't identify CAAM emi_slow clk: %d\n", ret);
471 ctrlpriv->caam_emi_slow = clk;
473 ret = clk_prepare_enable(ctrlpriv->caam_ipg);
475 dev_err(&pdev->dev, "can't enable CAAM ipg clock: %d\n", ret);
479 ret = clk_prepare_enable(ctrlpriv->caam_mem);
481 dev_err(&pdev->dev, "can't enable CAAM secure mem clock: %d\n",
483 goto disable_caam_ipg;
486 ret = clk_prepare_enable(ctrlpriv->caam_aclk);
488 dev_err(&pdev->dev, "can't enable CAAM aclk clock: %d\n", ret);
489 goto disable_caam_mem;
492 ret = clk_prepare_enable(ctrlpriv->caam_emi_slow);
494 dev_err(&pdev->dev, "can't enable CAAM emi slow clock: %d\n",
496 goto disable_caam_aclk;
499 /* Get configuration properties from device tree */
500 /* First, get register page */
501 ctrl = of_iomap(nprop, 0);
503 dev_err(dev, "caam: of_iomap() failed\n");
505 goto disable_caam_emi_slow;
507 /* Finding the page size for using the CTPR_MS register */
508 comp_params = rd_reg32(&ctrl->perfmon.comp_parms_ms);
509 pg_size = (comp_params & CTPR_MS_PG_SZ_MASK) >> CTPR_MS_PG_SZ_SHIFT;
511 /* Allocating the BLOCK_OFFSET based on the supported page size on
515 BLOCK_OFFSET = PG_SIZE_4K;
517 BLOCK_OFFSET = PG_SIZE_64K;
519 ctrlpriv->ctrl = (struct caam_ctrl __force *)ctrl;
520 ctrlpriv->assure = (struct caam_assurance __force *)
522 BLOCK_OFFSET * ASSURE_BLOCK_NUMBER
524 ctrlpriv->deco = (struct caam_deco __force *)
526 BLOCK_OFFSET * DECO_BLOCK_NUMBER
529 /* Get the IRQ of the controller (for security violations only) */
530 ctrlpriv->secvio_irq = irq_of_parse_and_map(nprop, 0);
533 * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel,
534 * long pointers in master configuration register
536 clrsetbits_32(&ctrl->mcr, MCFGR_AWCACHE_MASK, MCFGR_AWCACHE_CACH |
537 MCFGR_WDENABLE | (sizeof(dma_addr_t) == sizeof(u64) ?
538 MCFGR_LONG_PTR : 0));
541 * Read the Compile Time paramters and SCFGR to determine
542 * if Virtualization is enabled for this platform
544 scfgr = rd_reg32(&ctrl->scfgr);
546 ctrlpriv->virt_en = 0;
547 if (comp_params & CTPR_MS_VIRT_EN_INCL) {
548 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or
549 * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SCFGR_VIRT_EN = 1
551 if ((comp_params & CTPR_MS_VIRT_EN_POR) ||
552 (!(comp_params & CTPR_MS_VIRT_EN_POR) &&
553 (scfgr & SCFGR_VIRT_EN)))
554 ctrlpriv->virt_en = 1;
556 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */
557 if (comp_params & CTPR_MS_VIRT_EN_POR)
558 ctrlpriv->virt_en = 1;
561 if (ctrlpriv->virt_en == 1)
562 setbits32(&ctrl->jrstart, JRSTART_JR0_START |
563 JRSTART_JR1_START | JRSTART_JR2_START |
566 if (sizeof(dma_addr_t) == sizeof(u64))
567 if (of_device_is_compatible(nprop, "fsl,sec-v5.0"))
568 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(40));
570 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(36));
572 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
575 * Detect and enable JobRs
576 * First, find out how many ring spec'ed, allocate references
577 * for all, then go probe each one.
580 for_each_available_child_of_node(nprop, np)
581 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
582 of_device_is_compatible(np, "fsl,sec4.0-job-ring"))
585 ctrlpriv->jrpdev = devm_kcalloc(&pdev->dev, rspec,
586 sizeof(*ctrlpriv->jrpdev), GFP_KERNEL);
587 if (ctrlpriv->jrpdev == NULL) {
593 ctrlpriv->total_jobrs = 0;
594 for_each_available_child_of_node(nprop, np)
595 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
596 of_device_is_compatible(np, "fsl,sec4.0-job-ring")) {
597 ctrlpriv->jrpdev[ring] =
598 of_platform_device_create(np, NULL, dev);
599 if (!ctrlpriv->jrpdev[ring]) {
600 pr_warn("JR%d Platform device creation error\n",
604 ctrlpriv->jr[ring] = (struct caam_job_ring __force *)
606 (ring + JR_BLOCK_NUMBER) *
609 ctrlpriv->total_jobrs++;
613 /* Check to see if QI present. If so, enable */
614 ctrlpriv->qi_present =
615 !!(rd_reg32(&ctrl->perfmon.comp_parms_ms) &
617 if (ctrlpriv->qi_present) {
618 ctrlpriv->qi = (struct caam_queue_if __force *)
620 BLOCK_OFFSET * QI_BLOCK_NUMBER
622 /* This is all that's required to physically enable QI */
623 wr_reg32(&ctrlpriv->qi->qi_control_lo, QICTL_DQEN);
626 /* If no QI and no rings specified, quit and go home */
627 if ((!ctrlpriv->qi_present) && (!ctrlpriv->total_jobrs)) {
628 dev_err(dev, "no queues configured, terminating\n");
633 cha_vid_ls = rd_reg32(&ctrl->perfmon.cha_id_ls);
636 * If SEC has RNG version >= 4 and RNG state handle has not been
637 * already instantiated, do RNG instantiation
639 if ((cha_vid_ls & CHA_ID_LS_RNG_MASK) >> CHA_ID_LS_RNG_SHIFT >= 4) {
640 ctrlpriv->rng4_sh_init =
641 rd_reg32(&ctrl->r4tst[0].rdsta);
643 * If the secure keys (TDKEK, JDKEK, TDSK), were already
644 * generated, signal this to the function that is instantiating
645 * the state handles. An error would occur if RNG4 attempts
646 * to regenerate these keys before the next POR.
648 gen_sk = ctrlpriv->rng4_sh_init & RDSTA_SKVN ? 0 : 1;
649 ctrlpriv->rng4_sh_init &= RDSTA_IFMASK;
652 rd_reg32(&ctrl->r4tst[0].rdsta) &
655 * If either SH were instantiated by somebody else
656 * (e.g. u-boot) then it is assumed that the entropy
657 * parameters are properly set and thus the function
658 * setting these (kick_trng(...)) is skipped.
659 * Also, if a handle was instantiated, do not change
660 * the TRNG parameters.
662 if (!(ctrlpriv->rng4_sh_init || inst_handles)) {
664 "Entropy delay = %u\n",
666 kick_trng(pdev, ent_delay);
670 * if instantiate_rng(...) fails, the loop will rerun
671 * and the kick_trng(...) function will modfiy the
672 * upper and lower limits of the entropy sampling
673 * interval, leading to a sucessful initialization of
676 ret = instantiate_rng(dev, inst_handles,
680 * if here, the loop will rerun,
681 * so don't hog the CPU
684 } while ((ret == -EAGAIN) && (ent_delay < RTSDCTL_ENT_DLY_MAX));
686 dev_err(dev, "failed to instantiate RNG");
690 * Set handles init'ed by this module as the complement of the
691 * already initialized ones
693 ctrlpriv->rng4_sh_init = ~ctrlpriv->rng4_sh_init & RDSTA_IFMASK;
695 /* Enable RDB bit so that RNG works faster */
696 setbits32(&ctrl->scfgr, SCFGR_RDBENABLE);
699 /* NOTE: RTIC detection ought to go here, around Si time */
701 caam_id = (u64)rd_reg32(&ctrl->perfmon.caam_id_ms) << 32 |
702 (u64)rd_reg32(&ctrl->perfmon.caam_id_ls);
704 /* Report "alive" for developer to see */
705 dev_info(dev, "device ID = 0x%016llx (Era %d)\n", caam_id,
707 dev_info(dev, "job rings = %d, qi = %d\n",
708 ctrlpriv->total_jobrs, ctrlpriv->qi_present);
710 #ifdef CONFIG_DEBUG_FS
712 * FIXME: needs better naming distinction, as some amalgamation of
713 * "caam" and nprop->full_name. The OF name isn't distinctive,
714 * but does separate instances
716 perfmon = (struct caam_perfmon __force *)&ctrl->perfmon;
718 ctrlpriv->dfs_root = debugfs_create_dir(dev_name(dev), NULL);
719 ctrlpriv->ctl = debugfs_create_dir("ctl", ctrlpriv->dfs_root);
721 /* Controller-level - performance monitor counters */
722 ctrlpriv->ctl_rq_dequeued =
723 debugfs_create_u64("rq_dequeued",
724 S_IRUSR | S_IRGRP | S_IROTH,
725 ctrlpriv->ctl, &perfmon->req_dequeued);
726 ctrlpriv->ctl_ob_enc_req =
727 debugfs_create_u64("ob_rq_encrypted",
728 S_IRUSR | S_IRGRP | S_IROTH,
729 ctrlpriv->ctl, &perfmon->ob_enc_req);
730 ctrlpriv->ctl_ib_dec_req =
731 debugfs_create_u64("ib_rq_decrypted",
732 S_IRUSR | S_IRGRP | S_IROTH,
733 ctrlpriv->ctl, &perfmon->ib_dec_req);
734 ctrlpriv->ctl_ob_enc_bytes =
735 debugfs_create_u64("ob_bytes_encrypted",
736 S_IRUSR | S_IRGRP | S_IROTH,
737 ctrlpriv->ctl, &perfmon->ob_enc_bytes);
738 ctrlpriv->ctl_ob_prot_bytes =
739 debugfs_create_u64("ob_bytes_protected",
740 S_IRUSR | S_IRGRP | S_IROTH,
741 ctrlpriv->ctl, &perfmon->ob_prot_bytes);
742 ctrlpriv->ctl_ib_dec_bytes =
743 debugfs_create_u64("ib_bytes_decrypted",
744 S_IRUSR | S_IRGRP | S_IROTH,
745 ctrlpriv->ctl, &perfmon->ib_dec_bytes);
746 ctrlpriv->ctl_ib_valid_bytes =
747 debugfs_create_u64("ib_bytes_validated",
748 S_IRUSR | S_IRGRP | S_IROTH,
749 ctrlpriv->ctl, &perfmon->ib_valid_bytes);
751 /* Controller level - global status values */
752 ctrlpriv->ctl_faultaddr =
753 debugfs_create_u64("fault_addr",
754 S_IRUSR | S_IRGRP | S_IROTH,
755 ctrlpriv->ctl, &perfmon->faultaddr);
756 ctrlpriv->ctl_faultdetail =
757 debugfs_create_u32("fault_detail",
758 S_IRUSR | S_IRGRP | S_IROTH,
759 ctrlpriv->ctl, &perfmon->faultdetail);
760 ctrlpriv->ctl_faultstatus =
761 debugfs_create_u32("fault_status",
762 S_IRUSR | S_IRGRP | S_IROTH,
763 ctrlpriv->ctl, &perfmon->status);
765 /* Internal covering keys (useful in non-secure mode only) */
766 ctrlpriv->ctl_kek_wrap.data = &ctrlpriv->ctrl->kek[0];
767 ctrlpriv->ctl_kek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
768 ctrlpriv->ctl_kek = debugfs_create_blob("kek",
772 &ctrlpriv->ctl_kek_wrap);
774 ctrlpriv->ctl_tkek_wrap.data = &ctrlpriv->ctrl->tkek[0];
775 ctrlpriv->ctl_tkek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
776 ctrlpriv->ctl_tkek = debugfs_create_blob("tkek",
780 &ctrlpriv->ctl_tkek_wrap);
782 ctrlpriv->ctl_tdsk_wrap.data = &ctrlpriv->ctrl->tdsk[0];
783 ctrlpriv->ctl_tdsk_wrap.size = KEK_KEY_SIZE * sizeof(u32);
784 ctrlpriv->ctl_tdsk = debugfs_create_blob("tdsk",
788 &ctrlpriv->ctl_tdsk_wrap);
796 disable_caam_emi_slow:
797 clk_disable_unprepare(ctrlpriv->caam_emi_slow);
799 clk_disable_unprepare(ctrlpriv->caam_aclk);
801 clk_disable_unprepare(ctrlpriv->caam_mem);
803 clk_disable_unprepare(ctrlpriv->caam_ipg);
807 static struct of_device_id caam_match[] = {
809 .compatible = "fsl,sec-v4.0",
812 .compatible = "fsl,sec4.0",
816 MODULE_DEVICE_TABLE(of, caam_match);
818 static struct platform_driver caam_driver = {
821 .of_match_table = caam_match,
824 .remove = caam_remove,
827 module_platform_driver(caam_driver);
829 MODULE_LICENSE("GPL");
830 MODULE_DESCRIPTION("FSL CAAM request backend");
831 MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");