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