OSDN Git Service

Merge "Merge remote-tracking branch 'remotes/quic/dev/msm-4.4-8996au' into msm-4.4"
[sagit-ice-cold/kernel_xiaomi_msm8998.git] / drivers / crypto / caam / ctrl.c
1 /* * CAAM control-plane driver backend
2  * Controller-level driver, kernel property detection, initialization
3  *
4  * Copyright 2008-2012 Freescale Semiconductor, Inc.
5  */
6
7 #include <linux/device.h>
8 #include <linux/of_address.h>
9 #include <linux/of_irq.h>
10
11 #include "compat.h"
12 #include "regs.h"
13 #include "intern.h"
14 #include "jr.h"
15 #include "desc_constr.h"
16 #include "error.h"
17
18 /*
19  * i.MX targets tend to have clock control subsystems that can
20  * enable/disable clocking to our device.
21  */
22 #ifdef CONFIG_CRYPTO_DEV_FSL_CAAM_IMX
23 static inline struct clk *caam_drv_identify_clk(struct device *dev,
24                                                 char *clk_name)
25 {
26         return devm_clk_get(dev, clk_name);
27 }
28 #else
29 static inline struct clk *caam_drv_identify_clk(struct device *dev,
30                                                 char *clk_name)
31 {
32         return NULL;
33 }
34 #endif
35
36 /*
37  * Descriptor to instantiate RNG State Handle 0 in normal mode and
38  * load the JDKEK, TDKEK and TDSK registers
39  */
40 static void build_instantiation_desc(u32 *desc, int handle, int do_sk)
41 {
42         u32 *jump_cmd, op_flags;
43
44         init_job_desc(desc, 0);
45
46         op_flags = OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
47                         (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INIT;
48
49         /* INIT RNG in non-test mode */
50         append_operation(desc, op_flags);
51
52         if (!handle && do_sk) {
53                 /*
54                  * For SH0, Secure Keys must be generated as well
55                  */
56
57                 /* wait for done */
58                 jump_cmd = append_jump(desc, JUMP_CLASS_CLASS1);
59                 set_jump_tgt_here(desc, jump_cmd);
60
61                 /*
62                  * load 1 to clear written reg:
63                  * resets the done interrrupt and returns the RNG to idle.
64                  */
65                 append_load_imm_u32(desc, 1, LDST_SRCDST_WORD_CLRW);
66
67                 /* Initialize State Handle  */
68                 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
69                                  OP_ALG_AAI_RNG4_SK);
70         }
71
72         append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
73 }
74
75 /* Descriptor for deinstantiation of State Handle 0 of the RNG block. */
76 static void build_deinstantiation_desc(u32 *desc, int handle)
77 {
78         init_job_desc(desc, 0);
79
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);
83
84         append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
85 }
86
87 /*
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
92  *
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
96  */
97 static inline int run_descriptor_deco0(struct device *ctrldev, u32 *desc,
98                                         u32 *status)
99 {
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;
105         int i;
106
107
108         if (ctrlpriv->virt_en == 1) {
109                 setbits32(&ctrl->deco_rsr, DECORSR_JR0);
110
111                 while (!(rd_reg32(&ctrl->deco_rsr) & DECORSR_VALID) &&
112                        --timeout)
113                         cpu_relax();
114
115                 timeout = 100000;
116         }
117
118         setbits32(&ctrl->deco_rq, DECORR_RQD0ENABLE);
119
120         while (!(rd_reg32(&ctrl->deco_rq) & DECORR_DEN0) &&
121                                                                  --timeout)
122                 cpu_relax();
123
124         if (!timeout) {
125                 dev_err(ctrldev, "failed to acquire DECO 0\n");
126                 clrbits32(&ctrl->deco_rq, DECORR_RQD0ENABLE);
127                 return -ENODEV;
128         }
129
130         for (i = 0; i < desc_len(desc); i++)
131                 wr_reg32(&deco->descbuf[i], *(desc + i));
132
133         flags = DECO_JQCR_WHL;
134         /*
135          * If the descriptor length is longer than 4 words, then the
136          * FOUR bit in JRCTRL register must be set.
137          */
138         if (desc_len(desc) >= 4)
139                 flags |= DECO_JQCR_FOUR;
140
141         /* Instruct the DECO to execute it */
142         setbits32(&deco->jr_ctl_hi, flags);
143
144         timeout = 10000000;
145         do {
146                 deco_dbg_reg = rd_reg32(&deco->desc_dbg);
147                 /*
148                  * If an error occured in the descriptor, then
149                  * the DECO status field will be set to 0x0D
150                  */
151                 if ((deco_dbg_reg & DESC_DBG_DECO_STAT_MASK) ==
152                     DESC_DBG_DECO_STAT_HOST_ERR)
153                         break;
154                 cpu_relax();
155         } while ((deco_dbg_reg & DESC_DBG_DECO_STAT_VALID) && --timeout);
156
157         *status = rd_reg32(&deco->op_status_hi) &
158                   DECO_OP_STATUS_HI_ERR_MASK;
159
160         if (ctrlpriv->virt_en == 1)
161                 clrbits32(&ctrl->deco_rsr, DECORSR_JR0);
162
163         /* Mark the DECO as free */
164         clrbits32(&ctrl->deco_rq, DECORR_RQD0ENABLE);
165
166         if (!timeout)
167                 return -EAGAIN;
168
169         return 0;
170 }
171
172 /*
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
183  *
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.
190  */
191 static int instantiate_rng(struct device *ctrldev, int state_handle_mask,
192                            int gen_sk)
193 {
194         struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
195         struct caam_ctrl __iomem *ctrl;
196         u32 *desc, status = 0, rdsta_val;
197         int ret = 0, sh_idx;
198
199         ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
200         desc = kmalloc(CAAM_CMD_SZ * 7, GFP_KERNEL);
201         if (!desc)
202                 return -ENOMEM;
203
204         for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
205                 /*
206                  * If the corresponding bit is set, this state handle
207                  * was initialized by somebody else, so it's left alone.
208                  */
209                 if ((1 << sh_idx) & state_handle_mask)
210                         continue;
211
212                 /* Create the descriptor for instantiating RNG State Handle */
213                 build_instantiation_desc(desc, sh_idx, gen_sk);
214
215                 /* Try to run it through DECO0 */
216                 ret = run_descriptor_deco0(ctrldev, desc, &status);
217
218                 /*
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.
226                  */
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)))
230                         ret = -EAGAIN;
231                 if (ret)
232                         break;
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);
236         }
237
238         kfree(desc);
239
240         return ret;
241 }
242
243 /*
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
250  *
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
255  */
256 static int deinstantiate_rng(struct device *ctrldev, int state_handle_mask)
257 {
258         u32 *desc, status;
259         int sh_idx, ret = 0;
260
261         desc = kmalloc(CAAM_CMD_SZ * 3, GFP_KERNEL);
262         if (!desc)
263                 return -ENOMEM;
264
265         for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
266                 /*
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
270                  */
271                 if ((1 << sh_idx) & state_handle_mask) {
272                         /*
273                          * Create the descriptor for deinstantating this state
274                          * handle
275                          */
276                         build_deinstantiation_desc(desc, sh_idx);
277
278                         /* Try to run it through DECO0 */
279                         ret = run_descriptor_deco0(ctrldev, desc, &status);
280
281                         if (ret ||
282                             (status && status != JRSTA_SSRC_JUMP_HALT_CC)) {
283                                 dev_err(ctrldev,
284                                         "Failed to deinstantiate RNG4 SH%d\n",
285                                         sh_idx);
286                                 break;
287                         }
288                         dev_info(ctrldev, "Deinstantiated RNG4 SH%d\n", sh_idx);
289                 }
290         }
291
292         kfree(desc);
293
294         return ret;
295 }
296
297 static int caam_remove(struct platform_device *pdev)
298 {
299         struct device *ctrldev;
300         struct caam_drv_private *ctrlpriv;
301         struct caam_ctrl __iomem *ctrl;
302         int ring;
303
304         ctrldev = &pdev->dev;
305         ctrlpriv = dev_get_drvdata(ctrldev);
306         ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
307
308         /* Remove platform devices for JobRs */
309         for (ring = 0; ring < ctrlpriv->total_jobrs; ring++) {
310                 if (ctrlpriv->jrpdev[ring])
311                         of_device_unregister(ctrlpriv->jrpdev[ring]);
312         }
313
314         /* De-initialize RNG state handles initialized by this driver. */
315         if (ctrlpriv->rng4_sh_init)
316                 deinstantiate_rng(ctrldev, ctrlpriv->rng4_sh_init);
317
318         /* Shut down debug views */
319 #ifdef CONFIG_DEBUG_FS
320         debugfs_remove_recursive(ctrlpriv->dfs_root);
321 #endif
322
323         /* Unmap controller region */
324         iounmap(ctrl);
325
326         /* shut clocks off before finalizing shutdown */
327         clk_disable_unprepare(ctrlpriv->caam_ipg);
328         clk_disable_unprepare(ctrlpriv->caam_mem);
329         clk_disable_unprepare(ctrlpriv->caam_aclk);
330         clk_disable_unprepare(ctrlpriv->caam_emi_slow);
331
332         return 0;
333 }
334
335 /*
336  * kick_trng - sets the various parameters for enabling the initialization
337  *             of the RNG4 block in CAAM
338  * @pdev - pointer to the platform device
339  * @ent_delay - Defines the length (in system clocks) of each entropy sample.
340  */
341 static void kick_trng(struct platform_device *pdev, int ent_delay)
342 {
343         struct device *ctrldev = &pdev->dev;
344         struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
345         struct caam_ctrl __iomem *ctrl;
346         struct rng4tst __iomem *r4tst;
347         u32 val;
348
349         ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
350         r4tst = &ctrl->r4tst[0];
351
352         /* put RNG4 into program mode */
353         setbits32(&r4tst->rtmctl, RTMCTL_PRGM);
354
355         /*
356          * Performance-wise, it does not make sense to
357          * set the delay to a value that is lower
358          * than the last one that worked (i.e. the state handles
359          * were instantiated properly. Thus, instead of wasting
360          * time trying to set the values controlling the sample
361          * frequency, the function simply returns.
362          */
363         val = (rd_reg32(&r4tst->rtsdctl) & RTSDCTL_ENT_DLY_MASK)
364               >> RTSDCTL_ENT_DLY_SHIFT;
365         if (ent_delay <= val) {
366                 /* put RNG4 into run mode */
367                 clrbits32(&r4tst->rtmctl, RTMCTL_PRGM);
368                 return;
369         }
370
371         val = rd_reg32(&r4tst->rtsdctl);
372         val = (val & ~RTSDCTL_ENT_DLY_MASK) |
373               (ent_delay << RTSDCTL_ENT_DLY_SHIFT);
374         wr_reg32(&r4tst->rtsdctl, val);
375         /* min. freq. count, equal to 1/4 of the entropy sample length */
376         wr_reg32(&r4tst->rtfrqmin, ent_delay >> 2);
377         /* disable maximum frequency count */
378         wr_reg32(&r4tst->rtfrqmax, RTFRQMAX_DISABLE);
379         /* read the control register */
380         val = rd_reg32(&r4tst->rtmctl);
381         /*
382          * select raw sampling in both entropy shifter
383          * and statistical checker
384          */
385         setbits32(&val, RTMCTL_SAMP_MODE_RAW_ES_SC);
386         /* put RNG4 into run mode */
387         clrbits32(&val, RTMCTL_PRGM);
388         /* write back the control register */
389         wr_reg32(&r4tst->rtmctl, val);
390 }
391
392 /**
393  * caam_get_era() - Return the ERA of the SEC on SoC, based
394  * on "sec-era" propery in the DTS. This property is updated by u-boot.
395  **/
396 int caam_get_era(void)
397 {
398         struct device_node *caam_node;
399         int ret;
400         u32 prop;
401
402         caam_node = of_find_compatible_node(NULL, NULL, "fsl,sec-v4.0");
403         ret = of_property_read_u32(caam_node, "fsl,sec-era", &prop);
404         of_node_put(caam_node);
405
406         return IS_ERR_VALUE(ret) ? -ENOTSUPP : prop;
407 }
408 EXPORT_SYMBOL(caam_get_era);
409
410 /* Probe routine for CAAM top (controller) level */
411 static int caam_probe(struct platform_device *pdev)
412 {
413         int ret, ring, rspec, gen_sk, ent_delay = RTSDCTL_ENT_DLY_MIN;
414         u64 caam_id;
415         struct device *dev;
416         struct device_node *nprop, *np;
417         struct caam_ctrl __iomem *ctrl;
418         struct caam_drv_private *ctrlpriv;
419         struct clk *clk;
420 #ifdef CONFIG_DEBUG_FS
421         struct caam_perfmon *perfmon;
422 #endif
423         u32 scfgr, comp_params;
424         u32 cha_vid_ls;
425         int pg_size;
426         int BLOCK_OFFSET = 0;
427
428         ctrlpriv = devm_kzalloc(&pdev->dev, sizeof(*ctrlpriv), GFP_KERNEL);
429         if (!ctrlpriv)
430                 return -ENOMEM;
431
432         dev = &pdev->dev;
433         dev_set_drvdata(dev, ctrlpriv);
434         ctrlpriv->pdev = pdev;
435         nprop = pdev->dev.of_node;
436
437         /* Enable clocking */
438         clk = caam_drv_identify_clk(&pdev->dev, "ipg");
439         if (IS_ERR(clk)) {
440                 ret = PTR_ERR(clk);
441                 dev_err(&pdev->dev,
442                         "can't identify CAAM ipg clk: %d\n", ret);
443                 return ret;
444         }
445         ctrlpriv->caam_ipg = clk;
446
447         clk = caam_drv_identify_clk(&pdev->dev, "mem");
448         if (IS_ERR(clk)) {
449                 ret = PTR_ERR(clk);
450                 dev_err(&pdev->dev,
451                         "can't identify CAAM mem clk: %d\n", ret);
452                 return ret;
453         }
454         ctrlpriv->caam_mem = clk;
455
456         clk = caam_drv_identify_clk(&pdev->dev, "aclk");
457         if (IS_ERR(clk)) {
458                 ret = PTR_ERR(clk);
459                 dev_err(&pdev->dev,
460                         "can't identify CAAM aclk clk: %d\n", ret);
461                 return ret;
462         }
463         ctrlpriv->caam_aclk = clk;
464
465         clk = caam_drv_identify_clk(&pdev->dev, "emi_slow");
466         if (IS_ERR(clk)) {
467                 ret = PTR_ERR(clk);
468                 dev_err(&pdev->dev,
469                         "can't identify CAAM emi_slow clk: %d\n", ret);
470                 return ret;
471         }
472         ctrlpriv->caam_emi_slow = clk;
473
474         ret = clk_prepare_enable(ctrlpriv->caam_ipg);
475         if (ret < 0) {
476                 dev_err(&pdev->dev, "can't enable CAAM ipg clock: %d\n", ret);
477                 return ret;
478         }
479
480         ret = clk_prepare_enable(ctrlpriv->caam_mem);
481         if (ret < 0) {
482                 dev_err(&pdev->dev, "can't enable CAAM secure mem clock: %d\n",
483                         ret);
484                 goto disable_caam_ipg;
485         }
486
487         ret = clk_prepare_enable(ctrlpriv->caam_aclk);
488         if (ret < 0) {
489                 dev_err(&pdev->dev, "can't enable CAAM aclk clock: %d\n", ret);
490                 goto disable_caam_mem;
491         }
492
493         ret = clk_prepare_enable(ctrlpriv->caam_emi_slow);
494         if (ret < 0) {
495                 dev_err(&pdev->dev, "can't enable CAAM emi slow clock: %d\n",
496                         ret);
497                 goto disable_caam_aclk;
498         }
499
500         /* Get configuration properties from device tree */
501         /* First, get register page */
502         ctrl = of_iomap(nprop, 0);
503         if (ctrl == NULL) {
504                 dev_err(dev, "caam: of_iomap() failed\n");
505                 ret = -ENOMEM;
506                 goto disable_caam_emi_slow;
507         }
508         /* Finding the page size for using the CTPR_MS register */
509         comp_params = rd_reg32(&ctrl->perfmon.comp_parms_ms);
510         pg_size = (comp_params & CTPR_MS_PG_SZ_MASK) >> CTPR_MS_PG_SZ_SHIFT;
511
512         /* Allocating the BLOCK_OFFSET based on the supported page size on
513          * the platform
514          */
515         if (pg_size == 0)
516                 BLOCK_OFFSET = PG_SIZE_4K;
517         else
518                 BLOCK_OFFSET = PG_SIZE_64K;
519
520         ctrlpriv->ctrl = (struct caam_ctrl __force *)ctrl;
521         ctrlpriv->assure = (struct caam_assurance __force *)
522                            ((uint8_t *)ctrl +
523                             BLOCK_OFFSET * ASSURE_BLOCK_NUMBER
524                            );
525         ctrlpriv->deco = (struct caam_deco __force *)
526                          ((uint8_t *)ctrl +
527                          BLOCK_OFFSET * DECO_BLOCK_NUMBER
528                          );
529
530         /* Get the IRQ of the controller (for security violations only) */
531         ctrlpriv->secvio_irq = irq_of_parse_and_map(nprop, 0);
532
533         /*
534          * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel,
535          * long pointers in master configuration register
536          */
537         clrsetbits_32(&ctrl->mcr, MCFGR_AWCACHE_MASK, MCFGR_AWCACHE_CACH |
538                       MCFGR_AWCACHE_BUFF | MCFGR_WDENABLE |
539                       (sizeof(dma_addr_t) == sizeof(u64) ? MCFGR_LONG_PTR : 0));
540
541         /*
542          *  Read the Compile Time paramters and SCFGR to determine
543          * if Virtualization is enabled for this platform
544          */
545         scfgr = rd_reg32(&ctrl->scfgr);
546
547         ctrlpriv->virt_en = 0;
548         if (comp_params & CTPR_MS_VIRT_EN_INCL) {
549                 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or
550                  * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SCFGR_VIRT_EN = 1
551                  */
552                 if ((comp_params & CTPR_MS_VIRT_EN_POR) ||
553                     (!(comp_params & CTPR_MS_VIRT_EN_POR) &&
554                        (scfgr & SCFGR_VIRT_EN)))
555                                 ctrlpriv->virt_en = 1;
556         } else {
557                 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */
558                 if (comp_params & CTPR_MS_VIRT_EN_POR)
559                                 ctrlpriv->virt_en = 1;
560         }
561
562         if (ctrlpriv->virt_en == 1)
563                 setbits32(&ctrl->jrstart, JRSTART_JR0_START |
564                           JRSTART_JR1_START | JRSTART_JR2_START |
565                           JRSTART_JR3_START);
566
567         if (sizeof(dma_addr_t) == sizeof(u64))
568                 if (of_device_is_compatible(nprop, "fsl,sec-v5.0"))
569                         dma_set_mask_and_coherent(dev, DMA_BIT_MASK(40));
570                 else
571                         dma_set_mask_and_coherent(dev, DMA_BIT_MASK(36));
572         else
573                 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
574
575         /*
576          * Detect and enable JobRs
577          * First, find out how many ring spec'ed, allocate references
578          * for all, then go probe each one.
579          */
580         rspec = 0;
581         for_each_available_child_of_node(nprop, np)
582                 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
583                     of_device_is_compatible(np, "fsl,sec4.0-job-ring"))
584                         rspec++;
585
586         ctrlpriv->jrpdev = devm_kcalloc(&pdev->dev, rspec,
587                                         sizeof(*ctrlpriv->jrpdev), GFP_KERNEL);
588         if (ctrlpriv->jrpdev == NULL) {
589                 ret = -ENOMEM;
590                 goto iounmap_ctrl;
591         }
592
593         ring = 0;
594         ctrlpriv->total_jobrs = 0;
595         for_each_available_child_of_node(nprop, np)
596                 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
597                     of_device_is_compatible(np, "fsl,sec4.0-job-ring")) {
598                         ctrlpriv->jrpdev[ring] =
599                                 of_platform_device_create(np, NULL, dev);
600                         if (!ctrlpriv->jrpdev[ring]) {
601                                 pr_warn("JR%d Platform device creation error\n",
602                                         ring);
603                                 continue;
604                         }
605                         ctrlpriv->jr[ring] = (struct caam_job_ring __force *)
606                                              ((uint8_t *)ctrl +
607                                              (ring + JR_BLOCK_NUMBER) *
608                                               BLOCK_OFFSET
609                                              );
610                         ctrlpriv->total_jobrs++;
611                         ring++;
612         }
613
614         /* Check to see if QI present. If so, enable */
615         ctrlpriv->qi_present =
616                         !!(rd_reg32(&ctrl->perfmon.comp_parms_ms) &
617                            CTPR_MS_QI_MASK);
618         if (ctrlpriv->qi_present) {
619                 ctrlpriv->qi = (struct caam_queue_if __force *)
620                                ((uint8_t *)ctrl +
621                                  BLOCK_OFFSET * QI_BLOCK_NUMBER
622                                );
623                 /* This is all that's required to physically enable QI */
624                 wr_reg32(&ctrlpriv->qi->qi_control_lo, QICTL_DQEN);
625         }
626
627         /* If no QI and no rings specified, quit and go home */
628         if ((!ctrlpriv->qi_present) && (!ctrlpriv->total_jobrs)) {
629                 dev_err(dev, "no queues configured, terminating\n");
630                 ret = -ENOMEM;
631                 goto caam_remove;
632         }
633
634         cha_vid_ls = rd_reg32(&ctrl->perfmon.cha_id_ls);
635
636         /*
637          * If SEC has RNG version >= 4 and RNG state handle has not been
638          * already instantiated, do RNG instantiation
639          */
640         if ((cha_vid_ls & CHA_ID_LS_RNG_MASK) >> CHA_ID_LS_RNG_SHIFT >= 4) {
641                 ctrlpriv->rng4_sh_init =
642                         rd_reg32(&ctrl->r4tst[0].rdsta);
643                 /*
644                  * If the secure keys (TDKEK, JDKEK, TDSK), were already
645                  * generated, signal this to the function that is instantiating
646                  * the state handles. An error would occur if RNG4 attempts
647                  * to regenerate these keys before the next POR.
648                  */
649                 gen_sk = ctrlpriv->rng4_sh_init & RDSTA_SKVN ? 0 : 1;
650                 ctrlpriv->rng4_sh_init &= RDSTA_IFMASK;
651                 do {
652                         int inst_handles =
653                                 rd_reg32(&ctrl->r4tst[0].rdsta) &
654                                                                 RDSTA_IFMASK;
655                         /*
656                          * If either SH were instantiated by somebody else
657                          * (e.g. u-boot) then it is assumed that the entropy
658                          * parameters are properly set and thus the function
659                          * setting these (kick_trng(...)) is skipped.
660                          * Also, if a handle was instantiated, do not change
661                          * the TRNG parameters.
662                          */
663                         if (!(ctrlpriv->rng4_sh_init || inst_handles)) {
664                                 dev_info(dev,
665                                          "Entropy delay = %u\n",
666                                          ent_delay);
667                                 kick_trng(pdev, ent_delay);
668                                 ent_delay += 400;
669                         }
670                         /*
671                          * if instantiate_rng(...) fails, the loop will rerun
672                          * and the kick_trng(...) function will modfiy the
673                          * upper and lower limits of the entropy sampling
674                          * interval, leading to a sucessful initialization of
675                          * the RNG.
676                          */
677                         ret = instantiate_rng(dev, inst_handles,
678                                               gen_sk);
679                         if (ret == -EAGAIN)
680                                 /*
681                                  * if here, the loop will rerun,
682                                  * so don't hog the CPU
683                                  */
684                                 cpu_relax();
685                 } while ((ret == -EAGAIN) && (ent_delay < RTSDCTL_ENT_DLY_MAX));
686                 if (ret) {
687                         dev_err(dev, "failed to instantiate RNG");
688                         goto caam_remove;
689                 }
690                 /*
691                  * Set handles init'ed by this module as the complement of the
692                  * already initialized ones
693                  */
694                 ctrlpriv->rng4_sh_init = ~ctrlpriv->rng4_sh_init & RDSTA_IFMASK;
695
696                 /* Enable RDB bit so that RNG works faster */
697                 setbits32(&ctrl->scfgr, SCFGR_RDBENABLE);
698         }
699
700         /* NOTE: RTIC detection ought to go here, around Si time */
701
702         caam_id = (u64)rd_reg32(&ctrl->perfmon.caam_id_ms) << 32 |
703                   (u64)rd_reg32(&ctrl->perfmon.caam_id_ls);
704
705         /* Report "alive" for developer to see */
706         dev_info(dev, "device ID = 0x%016llx (Era %d)\n", caam_id,
707                  caam_get_era());
708         dev_info(dev, "job rings = %d, qi = %d\n",
709                  ctrlpriv->total_jobrs, ctrlpriv->qi_present);
710
711 #ifdef CONFIG_DEBUG_FS
712         /*
713          * FIXME: needs better naming distinction, as some amalgamation of
714          * "caam" and nprop->full_name. The OF name isn't distinctive,
715          * but does separate instances
716          */
717         perfmon = (struct caam_perfmon __force *)&ctrl->perfmon;
718
719         ctrlpriv->dfs_root = debugfs_create_dir(dev_name(dev), NULL);
720         ctrlpriv->ctl = debugfs_create_dir("ctl", ctrlpriv->dfs_root);
721
722         /* Controller-level - performance monitor counters */
723         ctrlpriv->ctl_rq_dequeued =
724                 debugfs_create_u64("rq_dequeued",
725                                    S_IRUSR | S_IRGRP | S_IROTH,
726                                    ctrlpriv->ctl, &perfmon->req_dequeued);
727         ctrlpriv->ctl_ob_enc_req =
728                 debugfs_create_u64("ob_rq_encrypted",
729                                    S_IRUSR | S_IRGRP | S_IROTH,
730                                    ctrlpriv->ctl, &perfmon->ob_enc_req);
731         ctrlpriv->ctl_ib_dec_req =
732                 debugfs_create_u64("ib_rq_decrypted",
733                                    S_IRUSR | S_IRGRP | S_IROTH,
734                                    ctrlpriv->ctl, &perfmon->ib_dec_req);
735         ctrlpriv->ctl_ob_enc_bytes =
736                 debugfs_create_u64("ob_bytes_encrypted",
737                                    S_IRUSR | S_IRGRP | S_IROTH,
738                                    ctrlpriv->ctl, &perfmon->ob_enc_bytes);
739         ctrlpriv->ctl_ob_prot_bytes =
740                 debugfs_create_u64("ob_bytes_protected",
741                                    S_IRUSR | S_IRGRP | S_IROTH,
742                                    ctrlpriv->ctl, &perfmon->ob_prot_bytes);
743         ctrlpriv->ctl_ib_dec_bytes =
744                 debugfs_create_u64("ib_bytes_decrypted",
745                                    S_IRUSR | S_IRGRP | S_IROTH,
746                                    ctrlpriv->ctl, &perfmon->ib_dec_bytes);
747         ctrlpriv->ctl_ib_valid_bytes =
748                 debugfs_create_u64("ib_bytes_validated",
749                                    S_IRUSR | S_IRGRP | S_IROTH,
750                                    ctrlpriv->ctl, &perfmon->ib_valid_bytes);
751
752         /* Controller level - global status values */
753         ctrlpriv->ctl_faultaddr =
754                 debugfs_create_u64("fault_addr",
755                                    S_IRUSR | S_IRGRP | S_IROTH,
756                                    ctrlpriv->ctl, &perfmon->faultaddr);
757         ctrlpriv->ctl_faultdetail =
758                 debugfs_create_u32("fault_detail",
759                                    S_IRUSR | S_IRGRP | S_IROTH,
760                                    ctrlpriv->ctl, &perfmon->faultdetail);
761         ctrlpriv->ctl_faultstatus =
762                 debugfs_create_u32("fault_status",
763                                    S_IRUSR | S_IRGRP | S_IROTH,
764                                    ctrlpriv->ctl, &perfmon->status);
765
766         /* Internal covering keys (useful in non-secure mode only) */
767         ctrlpriv->ctl_kek_wrap.data = &ctrlpriv->ctrl->kek[0];
768         ctrlpriv->ctl_kek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
769         ctrlpriv->ctl_kek = debugfs_create_blob("kek",
770                                                 S_IRUSR |
771                                                 S_IRGRP | S_IROTH,
772                                                 ctrlpriv->ctl,
773                                                 &ctrlpriv->ctl_kek_wrap);
774
775         ctrlpriv->ctl_tkek_wrap.data = &ctrlpriv->ctrl->tkek[0];
776         ctrlpriv->ctl_tkek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
777         ctrlpriv->ctl_tkek = debugfs_create_blob("tkek",
778                                                  S_IRUSR |
779                                                  S_IRGRP | S_IROTH,
780                                                  ctrlpriv->ctl,
781                                                  &ctrlpriv->ctl_tkek_wrap);
782
783         ctrlpriv->ctl_tdsk_wrap.data = &ctrlpriv->ctrl->tdsk[0];
784         ctrlpriv->ctl_tdsk_wrap.size = KEK_KEY_SIZE * sizeof(u32);
785         ctrlpriv->ctl_tdsk = debugfs_create_blob("tdsk",
786                                                  S_IRUSR |
787                                                  S_IRGRP | S_IROTH,
788                                                  ctrlpriv->ctl,
789                                                  &ctrlpriv->ctl_tdsk_wrap);
790 #endif
791         return 0;
792
793 caam_remove:
794         caam_remove(pdev);
795 iounmap_ctrl:
796         iounmap(ctrl);
797 disable_caam_emi_slow:
798         clk_disable_unprepare(ctrlpriv->caam_emi_slow);
799 disable_caam_aclk:
800         clk_disable_unprepare(ctrlpriv->caam_aclk);
801 disable_caam_mem:
802         clk_disable_unprepare(ctrlpriv->caam_mem);
803 disable_caam_ipg:
804         clk_disable_unprepare(ctrlpriv->caam_ipg);
805         return ret;
806 }
807
808 static struct of_device_id caam_match[] = {
809         {
810                 .compatible = "fsl,sec-v4.0",
811         },
812         {
813                 .compatible = "fsl,sec4.0",
814         },
815         {},
816 };
817 MODULE_DEVICE_TABLE(of, caam_match);
818
819 static struct platform_driver caam_driver = {
820         .driver = {
821                 .name = "caam",
822                 .of_match_table = caam_match,
823         },
824         .probe       = caam_probe,
825         .remove      = caam_remove,
826 };
827
828 module_platform_driver(caam_driver);
829
830 MODULE_LICENSE("GPL");
831 MODULE_DESCRIPTION("FSL CAAM request backend");
832 MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");