Merge branch 'drm-next' of git://people.freedesktop.org/~airlied/linux
[linux-2.6-block.git] / drivers / crypto / caam / ctrl.c
1 /*
2  * CAAM control-plane driver backend
3  * Controller-level driver, kernel property detection, initialization
4  *
5  * Copyright 2008-2012 Freescale Semiconductor, Inc.
6  */
7
8 #include <linux/device.h>
9 #include <linux/of_address.h>
10 #include <linux/of_irq.h>
11
12 #include "compat.h"
13 #include "regs.h"
14 #include "intern.h"
15 #include "jr.h"
16 #include "desc_constr.h"
17 #include "error.h"
18
19 /*
20  * Descriptor to instantiate RNG State Handle 0 in normal mode and
21  * load the JDKEK, TDKEK and TDSK registers
22  */
23 static void build_instantiation_desc(u32 *desc, int handle, int do_sk)
24 {
25         u32 *jump_cmd, op_flags;
26
27         init_job_desc(desc, 0);
28
29         op_flags = OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
30                         (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INIT;
31
32         /* INIT RNG in non-test mode */
33         append_operation(desc, op_flags);
34
35         if (!handle && do_sk) {
36                 /*
37                  * For SH0, Secure Keys must be generated as well
38                  */
39
40                 /* wait for done */
41                 jump_cmd = append_jump(desc, JUMP_CLASS_CLASS1);
42                 set_jump_tgt_here(desc, jump_cmd);
43
44                 /*
45                  * load 1 to clear written reg:
46                  * resets the done interrrupt and returns the RNG to idle.
47                  */
48                 append_load_imm_u32(desc, 1, LDST_SRCDST_WORD_CLRW);
49
50                 /* Initialize State Handle  */
51                 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
52                                  OP_ALG_AAI_RNG4_SK);
53         }
54
55         append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
56 }
57
58 /* Descriptor for deinstantiation of State Handle 0 of the RNG block. */
59 static void build_deinstantiation_desc(u32 *desc, int handle)
60 {
61         init_job_desc(desc, 0);
62
63         /* Uninstantiate State Handle 0 */
64         append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
65                          (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INITFINAL);
66
67         append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
68 }
69
70 /*
71  * run_descriptor_deco0 - runs a descriptor on DECO0, under direct control of
72  *                        the software (no JR/QI used).
73  * @ctrldev - pointer to device
74  * @status - descriptor status, after being run
75  *
76  * Return: - 0 if no error occurred
77  *         - -ENODEV if the DECO couldn't be acquired
78  *         - -EAGAIN if an error occurred while executing the descriptor
79  */
80 static inline int run_descriptor_deco0(struct device *ctrldev, u32 *desc,
81                                         u32 *status)
82 {
83         struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
84         struct caam_full __iomem *topregs;
85         unsigned int timeout = 100000;
86         u32 deco_dbg_reg, flags;
87         int i;
88
89         /* Set the bit to request direct access to DECO0 */
90         topregs = (struct caam_full __iomem *)ctrlpriv->ctrl;
91
92         if (ctrlpriv->virt_en == 1) {
93                 setbits32(&topregs->ctrl.deco_rsr, DECORSR_JR0);
94
95                 while (!(rd_reg32(&topregs->ctrl.deco_rsr) & DECORSR_VALID) &&
96                        --timeout)
97                         cpu_relax();
98
99                 timeout = 100000;
100         }
101
102         setbits32(&topregs->ctrl.deco_rq, DECORR_RQD0ENABLE);
103
104         while (!(rd_reg32(&topregs->ctrl.deco_rq) & DECORR_DEN0) &&
105                                                                  --timeout)
106                 cpu_relax();
107
108         if (!timeout) {
109                 dev_err(ctrldev, "failed to acquire DECO 0\n");
110                 clrbits32(&topregs->ctrl.deco_rq, DECORR_RQD0ENABLE);
111                 return -ENODEV;
112         }
113
114         for (i = 0; i < desc_len(desc); i++)
115                 wr_reg32(&topregs->deco.descbuf[i], *(desc + i));
116
117         flags = DECO_JQCR_WHL;
118         /*
119          * If the descriptor length is longer than 4 words, then the
120          * FOUR bit in JRCTRL register must be set.
121          */
122         if (desc_len(desc) >= 4)
123                 flags |= DECO_JQCR_FOUR;
124
125         /* Instruct the DECO to execute it */
126         wr_reg32(&topregs->deco.jr_ctl_hi, flags);
127
128         timeout = 10000000;
129         do {
130                 deco_dbg_reg = rd_reg32(&topregs->deco.desc_dbg);
131                 /*
132                  * If an error occured in the descriptor, then
133                  * the DECO status field will be set to 0x0D
134                  */
135                 if ((deco_dbg_reg & DESC_DBG_DECO_STAT_MASK) ==
136                     DESC_DBG_DECO_STAT_HOST_ERR)
137                         break;
138                 cpu_relax();
139         } while ((deco_dbg_reg & DESC_DBG_DECO_STAT_VALID) && --timeout);
140
141         *status = rd_reg32(&topregs->deco.op_status_hi) &
142                   DECO_OP_STATUS_HI_ERR_MASK;
143
144         if (ctrlpriv->virt_en == 1)
145                 clrbits32(&topregs->ctrl.deco_rsr, DECORSR_JR0);
146
147         /* Mark the DECO as free */
148         clrbits32(&topregs->ctrl.deco_rq, DECORR_RQD0ENABLE);
149
150         if (!timeout)
151                 return -EAGAIN;
152
153         return 0;
154 }
155
156 /*
157  * instantiate_rng - builds and executes a descriptor on DECO0,
158  *                   which initializes the RNG block.
159  * @ctrldev - pointer to device
160  * @state_handle_mask - bitmask containing the instantiation status
161  *                      for the RNG4 state handles which exist in
162  *                      the RNG4 block: 1 if it's been instantiated
163  *                      by an external entry, 0 otherwise.
164  * @gen_sk  - generate data to be loaded into the JDKEK, TDKEK and TDSK;
165  *            Caution: this can be done only once; if the keys need to be
166  *            regenerated, a POR is required
167  *
168  * Return: - 0 if no error occurred
169  *         - -ENOMEM if there isn't enough memory to allocate the descriptor
170  *         - -ENODEV if DECO0 couldn't be acquired
171  *         - -EAGAIN if an error occurred when executing the descriptor
172  *            f.i. there was a RNG hardware error due to not "good enough"
173  *            entropy being aquired.
174  */
175 static int instantiate_rng(struct device *ctrldev, int state_handle_mask,
176                            int gen_sk)
177 {
178         struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
179         struct caam_full __iomem *topregs;
180         struct rng4tst __iomem *r4tst;
181         u32 *desc, status, rdsta_val;
182         int ret = 0, sh_idx;
183
184         topregs = (struct caam_full __iomem *)ctrlpriv->ctrl;
185         r4tst = &topregs->ctrl.r4tst[0];
186
187         desc = kmalloc(CAAM_CMD_SZ * 7, GFP_KERNEL);
188         if (!desc)
189                 return -ENOMEM;
190
191         for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
192                 /*
193                  * If the corresponding bit is set, this state handle
194                  * was initialized by somebody else, so it's left alone.
195                  */
196                 if ((1 << sh_idx) & state_handle_mask)
197                         continue;
198
199                 /* Create the descriptor for instantiating RNG State Handle */
200                 build_instantiation_desc(desc, sh_idx, gen_sk);
201
202                 /* Try to run it through DECO0 */
203                 ret = run_descriptor_deco0(ctrldev, desc, &status);
204
205                 /*
206                  * If ret is not 0, or descriptor status is not 0, then
207                  * something went wrong. No need to try the next state
208                  * handle (if available), bail out here.
209                  * Also, if for some reason, the State Handle didn't get
210                  * instantiated although the descriptor has finished
211                  * without any error (HW optimizations for later
212                  * CAAM eras), then try again.
213                  */
214                 rdsta_val =
215                         rd_reg32(&topregs->ctrl.r4tst[0].rdsta) & RDSTA_IFMASK;
216                 if (status || !(rdsta_val & (1 << sh_idx)))
217                         ret = -EAGAIN;
218                 if (ret)
219                         break;
220
221                 dev_info(ctrldev, "Instantiated RNG4 SH%d\n", sh_idx);
222                 /* Clear the contents before recreating the descriptor */
223                 memset(desc, 0x00, CAAM_CMD_SZ * 7);
224         }
225
226         kfree(desc);
227
228         return ret;
229 }
230
231 /*
232  * deinstantiate_rng - builds and executes a descriptor on DECO0,
233  *                     which deinitializes the RNG block.
234  * @ctrldev - pointer to device
235  * @state_handle_mask - bitmask containing the instantiation status
236  *                      for the RNG4 state handles which exist in
237  *                      the RNG4 block: 1 if it's been instantiated
238  *
239  * Return: - 0 if no error occurred
240  *         - -ENOMEM if there isn't enough memory to allocate the descriptor
241  *         - -ENODEV if DECO0 couldn't be acquired
242  *         - -EAGAIN if an error occurred when executing the descriptor
243  */
244 static int deinstantiate_rng(struct device *ctrldev, int state_handle_mask)
245 {
246         u32 *desc, status;
247         int sh_idx, ret = 0;
248
249         desc = kmalloc(CAAM_CMD_SZ * 3, GFP_KERNEL);
250         if (!desc)
251                 return -ENOMEM;
252
253         for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
254                 /*
255                  * If the corresponding bit is set, then it means the state
256                  * handle was initialized by us, and thus it needs to be
257                  * deintialized as well
258                  */
259                 if ((1 << sh_idx) & state_handle_mask) {
260                         /*
261                          * Create the descriptor for deinstantating this state
262                          * handle
263                          */
264                         build_deinstantiation_desc(desc, sh_idx);
265
266                         /* Try to run it through DECO0 */
267                         ret = run_descriptor_deco0(ctrldev, desc, &status);
268
269                         if (ret || status) {
270                                 dev_err(ctrldev,
271                                         "Failed to deinstantiate RNG4 SH%d\n",
272                                         sh_idx);
273                                 break;
274                         }
275                         dev_info(ctrldev, "Deinstantiated RNG4 SH%d\n", sh_idx);
276                 }
277         }
278
279         kfree(desc);
280
281         return ret;
282 }
283
284 static int caam_remove(struct platform_device *pdev)
285 {
286         struct device *ctrldev;
287         struct caam_drv_private *ctrlpriv;
288         struct caam_full __iomem *topregs;
289         int ring, ret = 0;
290
291         ctrldev = &pdev->dev;
292         ctrlpriv = dev_get_drvdata(ctrldev);
293         topregs = (struct caam_full __iomem *)ctrlpriv->ctrl;
294
295         /* Remove platform devices for JobRs */
296         for (ring = 0; ring < ctrlpriv->total_jobrs; ring++) {
297                 if (ctrlpriv->jrpdev[ring])
298                         of_device_unregister(ctrlpriv->jrpdev[ring]);
299         }
300
301         /* De-initialize RNG state handles initialized by this driver. */
302         if (ctrlpriv->rng4_sh_init)
303                 deinstantiate_rng(ctrldev, ctrlpriv->rng4_sh_init);
304
305         /* Shut down debug views */
306 #ifdef CONFIG_DEBUG_FS
307         debugfs_remove_recursive(ctrlpriv->dfs_root);
308 #endif
309
310         /* Unmap controller region */
311         iounmap(&topregs->ctrl);
312
313         return ret;
314 }
315
316 /*
317  * kick_trng - sets the various parameters for enabling the initialization
318  *             of the RNG4 block in CAAM
319  * @pdev - pointer to the platform device
320  * @ent_delay - Defines the length (in system clocks) of each entropy sample.
321  */
322 static void kick_trng(struct platform_device *pdev, int ent_delay)
323 {
324         struct device *ctrldev = &pdev->dev;
325         struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
326         struct caam_full __iomem *topregs;
327         struct rng4tst __iomem *r4tst;
328         u32 val;
329
330         topregs = (struct caam_full __iomem *)ctrlpriv->ctrl;
331         r4tst = &topregs->ctrl.r4tst[0];
332
333         /* put RNG4 into program mode */
334         setbits32(&r4tst->rtmctl, RTMCTL_PRGM);
335
336         /*
337          * Performance-wise, it does not make sense to
338          * set the delay to a value that is lower
339          * than the last one that worked (i.e. the state handles
340          * were instantiated properly. Thus, instead of wasting
341          * time trying to set the values controlling the sample
342          * frequency, the function simply returns.
343          */
344         val = (rd_reg32(&r4tst->rtsdctl) & RTSDCTL_ENT_DLY_MASK)
345               >> RTSDCTL_ENT_DLY_SHIFT;
346         if (ent_delay <= val) {
347                 /* put RNG4 into run mode */
348                 clrbits32(&r4tst->rtmctl, RTMCTL_PRGM);
349                 return;
350         }
351
352         val = rd_reg32(&r4tst->rtsdctl);
353         val = (val & ~RTSDCTL_ENT_DLY_MASK) |
354               (ent_delay << RTSDCTL_ENT_DLY_SHIFT);
355         wr_reg32(&r4tst->rtsdctl, val);
356         /* min. freq. count, equal to 1/4 of the entropy sample length */
357         wr_reg32(&r4tst->rtfrqmin, ent_delay >> 2);
358         /* max. freq. count, equal to 8 times the entropy sample length */
359         wr_reg32(&r4tst->rtfrqmax, ent_delay << 3);
360         /* put RNG4 into run mode */
361         clrbits32(&r4tst->rtmctl, RTMCTL_PRGM);
362 }
363
364 /**
365  * caam_get_era() - Return the ERA of the SEC on SoC, based
366  * on "sec-era" propery in the DTS. This property is updated by u-boot.
367  **/
368 int caam_get_era(void)
369 {
370         struct device_node *caam_node;
371         for_each_compatible_node(caam_node, NULL, "fsl,sec-v4.0") {
372                 const uint32_t *prop = (uint32_t *)of_get_property(caam_node,
373                                 "fsl,sec-era",
374                                 NULL);
375                 return prop ? *prop : -ENOTSUPP;
376         }
377
378         return -ENOTSUPP;
379 }
380 EXPORT_SYMBOL(caam_get_era);
381
382 /* Probe routine for CAAM top (controller) level */
383 static int caam_probe(struct platform_device *pdev)
384 {
385         int ret, ring, rspec, gen_sk, ent_delay = RTSDCTL_ENT_DLY_MIN;
386         u64 caam_id;
387         struct device *dev;
388         struct device_node *nprop, *np;
389         struct caam_ctrl __iomem *ctrl;
390         struct caam_full __iomem *topregs;
391         struct caam_drv_private *ctrlpriv;
392 #ifdef CONFIG_DEBUG_FS
393         struct caam_perfmon *perfmon;
394 #endif
395         u32 scfgr, comp_params;
396         u32 cha_vid_ls;
397
398         ctrlpriv = devm_kzalloc(&pdev->dev, sizeof(struct caam_drv_private),
399                                 GFP_KERNEL);
400         if (!ctrlpriv)
401                 return -ENOMEM;
402
403         dev = &pdev->dev;
404         dev_set_drvdata(dev, ctrlpriv);
405         ctrlpriv->pdev = pdev;
406         nprop = pdev->dev.of_node;
407
408         /* Get configuration properties from device tree */
409         /* First, get register page */
410         ctrl = of_iomap(nprop, 0);
411         if (ctrl == NULL) {
412                 dev_err(dev, "caam: of_iomap() failed\n");
413                 return -ENOMEM;
414         }
415         ctrlpriv->ctrl = (struct caam_ctrl __force *)ctrl;
416
417         /* topregs used to derive pointers to CAAM sub-blocks only */
418         topregs = (struct caam_full __iomem *)ctrl;
419
420         /* Get the IRQ of the controller (for security violations only) */
421         ctrlpriv->secvio_irq = irq_of_parse_and_map(nprop, 0);
422
423         /*
424          * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel,
425          * long pointers in master configuration register
426          */
427         setbits32(&topregs->ctrl.mcr, MCFGR_WDENABLE |
428                   (sizeof(dma_addr_t) == sizeof(u64) ? MCFGR_LONG_PTR : 0));
429
430         /*
431          *  Read the Compile Time paramters and SCFGR to determine
432          * if Virtualization is enabled for this platform
433          */
434         comp_params = rd_reg32(&topregs->ctrl.perfmon.comp_parms_ms);
435         scfgr = rd_reg32(&topregs->ctrl.scfgr);
436
437         ctrlpriv->virt_en = 0;
438         if (comp_params & CTPR_MS_VIRT_EN_INCL) {
439                 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or
440                  * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SCFGR_VIRT_EN = 1
441                  */
442                 if ((comp_params & CTPR_MS_VIRT_EN_POR) ||
443                     (!(comp_params & CTPR_MS_VIRT_EN_POR) &&
444                        (scfgr & SCFGR_VIRT_EN)))
445                                 ctrlpriv->virt_en = 1;
446         } else {
447                 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */
448                 if (comp_params & CTPR_MS_VIRT_EN_POR)
449                                 ctrlpriv->virt_en = 1;
450         }
451
452         if (ctrlpriv->virt_en == 1)
453                 setbits32(&topregs->ctrl.jrstart, JRSTART_JR0_START |
454                           JRSTART_JR1_START | JRSTART_JR2_START |
455                           JRSTART_JR3_START);
456
457         if (sizeof(dma_addr_t) == sizeof(u64))
458                 if (of_device_is_compatible(nprop, "fsl,sec-v5.0"))
459                         dma_set_mask_and_coherent(dev, DMA_BIT_MASK(40));
460                 else
461                         dma_set_mask_and_coherent(dev, DMA_BIT_MASK(36));
462         else
463                 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
464
465         /*
466          * Detect and enable JobRs
467          * First, find out how many ring spec'ed, allocate references
468          * for all, then go probe each one.
469          */
470         rspec = 0;
471         for_each_available_child_of_node(nprop, np)
472                 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
473                     of_device_is_compatible(np, "fsl,sec4.0-job-ring"))
474                         rspec++;
475
476         ctrlpriv->jrpdev = devm_kzalloc(&pdev->dev,
477                                         sizeof(struct platform_device *) * rspec,
478                                         GFP_KERNEL);
479         if (ctrlpriv->jrpdev == NULL) {
480                 iounmap(&topregs->ctrl);
481                 return -ENOMEM;
482         }
483
484         ring = 0;
485         ctrlpriv->total_jobrs = 0;
486         for_each_available_child_of_node(nprop, np)
487                 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
488                     of_device_is_compatible(np, "fsl,sec4.0-job-ring")) {
489                         ctrlpriv->jrpdev[ring] =
490                                 of_platform_device_create(np, NULL, dev);
491                         if (!ctrlpriv->jrpdev[ring]) {
492                                 pr_warn("JR%d Platform device creation error\n",
493                                         ring);
494                                 continue;
495                         }
496                         ctrlpriv->total_jobrs++;
497                         ring++;
498                 }
499
500         /* Check to see if QI present. If so, enable */
501         ctrlpriv->qi_present =
502                         !!(rd_reg32(&topregs->ctrl.perfmon.comp_parms_ms) &
503                            CTPR_MS_QI_MASK);
504         if (ctrlpriv->qi_present) {
505                 ctrlpriv->qi = (struct caam_queue_if __force *)&topregs->qi;
506                 /* This is all that's required to physically enable QI */
507                 wr_reg32(&topregs->qi.qi_control_lo, QICTL_DQEN);
508         }
509
510         /* If no QI and no rings specified, quit and go home */
511         if ((!ctrlpriv->qi_present) && (!ctrlpriv->total_jobrs)) {
512                 dev_err(dev, "no queues configured, terminating\n");
513                 caam_remove(pdev);
514                 return -ENOMEM;
515         }
516
517         cha_vid_ls = rd_reg32(&topregs->ctrl.perfmon.cha_id_ls);
518
519         /*
520          * If SEC has RNG version >= 4 and RNG state handle has not been
521          * already instantiated, do RNG instantiation
522          */
523         if ((cha_vid_ls & CHA_ID_LS_RNG_MASK) >> CHA_ID_LS_RNG_SHIFT >= 4) {
524                 ctrlpriv->rng4_sh_init =
525                         rd_reg32(&topregs->ctrl.r4tst[0].rdsta);
526                 /*
527                  * If the secure keys (TDKEK, JDKEK, TDSK), were already
528                  * generated, signal this to the function that is instantiating
529                  * the state handles. An error would occur if RNG4 attempts
530                  * to regenerate these keys before the next POR.
531                  */
532                 gen_sk = ctrlpriv->rng4_sh_init & RDSTA_SKVN ? 0 : 1;
533                 ctrlpriv->rng4_sh_init &= RDSTA_IFMASK;
534                 do {
535                         int inst_handles =
536                                 rd_reg32(&topregs->ctrl.r4tst[0].rdsta) &
537                                                                 RDSTA_IFMASK;
538                         /*
539                          * If either SH were instantiated by somebody else
540                          * (e.g. u-boot) then it is assumed that the entropy
541                          * parameters are properly set and thus the function
542                          * setting these (kick_trng(...)) is skipped.
543                          * Also, if a handle was instantiated, do not change
544                          * the TRNG parameters.
545                          */
546                         if (!(ctrlpriv->rng4_sh_init || inst_handles)) {
547                                 kick_trng(pdev, ent_delay);
548                                 ent_delay += 400;
549                         }
550                         /*
551                          * if instantiate_rng(...) fails, the loop will rerun
552                          * and the kick_trng(...) function will modfiy the
553                          * upper and lower limits of the entropy sampling
554                          * interval, leading to a sucessful initialization of
555                          * the RNG.
556                          */
557                         ret = instantiate_rng(dev, inst_handles,
558                                               gen_sk);
559                 } while ((ret == -EAGAIN) && (ent_delay < RTSDCTL_ENT_DLY_MAX));
560                 if (ret) {
561                         dev_err(dev, "failed to instantiate RNG");
562                         caam_remove(pdev);
563                         return ret;
564                 }
565                 /*
566                  * Set handles init'ed by this module as the complement of the
567                  * already initialized ones
568                  */
569                 ctrlpriv->rng4_sh_init = ~ctrlpriv->rng4_sh_init & RDSTA_IFMASK;
570
571                 /* Enable RDB bit so that RNG works faster */
572                 setbits32(&topregs->ctrl.scfgr, SCFGR_RDBENABLE);
573         }
574
575         /* NOTE: RTIC detection ought to go here, around Si time */
576
577         caam_id = (u64)rd_reg32(&topregs->ctrl.perfmon.caam_id_ms) << 32 |
578                   (u64)rd_reg32(&topregs->ctrl.perfmon.caam_id_ls);
579
580         /* Report "alive" for developer to see */
581         dev_info(dev, "device ID = 0x%016llx (Era %d)\n", caam_id,
582                  caam_get_era());
583         dev_info(dev, "job rings = %d, qi = %d\n",
584                  ctrlpriv->total_jobrs, ctrlpriv->qi_present);
585
586 #ifdef CONFIG_DEBUG_FS
587         /*
588          * FIXME: needs better naming distinction, as some amalgamation of
589          * "caam" and nprop->full_name. The OF name isn't distinctive,
590          * but does separate instances
591          */
592         perfmon = (struct caam_perfmon __force *)&ctrl->perfmon;
593
594         ctrlpriv->dfs_root = debugfs_create_dir(dev_name(dev), NULL);
595         ctrlpriv->ctl = debugfs_create_dir("ctl", ctrlpriv->dfs_root);
596
597         /* Controller-level - performance monitor counters */
598         ctrlpriv->ctl_rq_dequeued =
599                 debugfs_create_u64("rq_dequeued",
600                                    S_IRUSR | S_IRGRP | S_IROTH,
601                                    ctrlpriv->ctl, &perfmon->req_dequeued);
602         ctrlpriv->ctl_ob_enc_req =
603                 debugfs_create_u64("ob_rq_encrypted",
604                                    S_IRUSR | S_IRGRP | S_IROTH,
605                                    ctrlpriv->ctl, &perfmon->ob_enc_req);
606         ctrlpriv->ctl_ib_dec_req =
607                 debugfs_create_u64("ib_rq_decrypted",
608                                    S_IRUSR | S_IRGRP | S_IROTH,
609                                    ctrlpriv->ctl, &perfmon->ib_dec_req);
610         ctrlpriv->ctl_ob_enc_bytes =
611                 debugfs_create_u64("ob_bytes_encrypted",
612                                    S_IRUSR | S_IRGRP | S_IROTH,
613                                    ctrlpriv->ctl, &perfmon->ob_enc_bytes);
614         ctrlpriv->ctl_ob_prot_bytes =
615                 debugfs_create_u64("ob_bytes_protected",
616                                    S_IRUSR | S_IRGRP | S_IROTH,
617                                    ctrlpriv->ctl, &perfmon->ob_prot_bytes);
618         ctrlpriv->ctl_ib_dec_bytes =
619                 debugfs_create_u64("ib_bytes_decrypted",
620                                    S_IRUSR | S_IRGRP | S_IROTH,
621                                    ctrlpriv->ctl, &perfmon->ib_dec_bytes);
622         ctrlpriv->ctl_ib_valid_bytes =
623                 debugfs_create_u64("ib_bytes_validated",
624                                    S_IRUSR | S_IRGRP | S_IROTH,
625                                    ctrlpriv->ctl, &perfmon->ib_valid_bytes);
626
627         /* Controller level - global status values */
628         ctrlpriv->ctl_faultaddr =
629                 debugfs_create_u64("fault_addr",
630                                    S_IRUSR | S_IRGRP | S_IROTH,
631                                    ctrlpriv->ctl, &perfmon->faultaddr);
632         ctrlpriv->ctl_faultdetail =
633                 debugfs_create_u32("fault_detail",
634                                    S_IRUSR | S_IRGRP | S_IROTH,
635                                    ctrlpriv->ctl, &perfmon->faultdetail);
636         ctrlpriv->ctl_faultstatus =
637                 debugfs_create_u32("fault_status",
638                                    S_IRUSR | S_IRGRP | S_IROTH,
639                                    ctrlpriv->ctl, &perfmon->status);
640
641         /* Internal covering keys (useful in non-secure mode only) */
642         ctrlpriv->ctl_kek_wrap.data = &ctrlpriv->ctrl->kek[0];
643         ctrlpriv->ctl_kek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
644         ctrlpriv->ctl_kek = debugfs_create_blob("kek",
645                                                 S_IRUSR |
646                                                 S_IRGRP | S_IROTH,
647                                                 ctrlpriv->ctl,
648                                                 &ctrlpriv->ctl_kek_wrap);
649
650         ctrlpriv->ctl_tkek_wrap.data = &ctrlpriv->ctrl->tkek[0];
651         ctrlpriv->ctl_tkek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
652         ctrlpriv->ctl_tkek = debugfs_create_blob("tkek",
653                                                  S_IRUSR |
654                                                  S_IRGRP | S_IROTH,
655                                                  ctrlpriv->ctl,
656                                                  &ctrlpriv->ctl_tkek_wrap);
657
658         ctrlpriv->ctl_tdsk_wrap.data = &ctrlpriv->ctrl->tdsk[0];
659         ctrlpriv->ctl_tdsk_wrap.size = KEK_KEY_SIZE * sizeof(u32);
660         ctrlpriv->ctl_tdsk = debugfs_create_blob("tdsk",
661                                                  S_IRUSR |
662                                                  S_IRGRP | S_IROTH,
663                                                  ctrlpriv->ctl,
664                                                  &ctrlpriv->ctl_tdsk_wrap);
665 #endif
666         return 0;
667 }
668
669 static struct of_device_id caam_match[] = {
670         {
671                 .compatible = "fsl,sec-v4.0",
672         },
673         {
674                 .compatible = "fsl,sec4.0",
675         },
676         {},
677 };
678 MODULE_DEVICE_TABLE(of, caam_match);
679
680 static struct platform_driver caam_driver = {
681         .driver = {
682                 .name = "caam",
683                 .owner = THIS_MODULE,
684                 .of_match_table = caam_match,
685         },
686         .probe       = caam_probe,
687         .remove      = caam_remove,
688 };
689
690 module_platform_driver(caam_driver);
691
692 MODULE_LICENSE("GPL");
693 MODULE_DESCRIPTION("FSL CAAM request backend");
694 MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");