2 * CAAM control-plane driver backend
3 * Controller-level driver, kernel property detection, initialization
5 * Copyright 2008-2012 Freescale Semiconductor, Inc.
12 #include "desc_constr.h"
16 static int caam_remove(struct platform_device *pdev)
18 struct device *ctrldev;
19 struct caam_drv_private *ctrlpriv;
20 struct caam_drv_private_jr *jrpriv;
21 struct caam_full __iomem *topregs;
25 ctrlpriv = dev_get_drvdata(ctrldev);
26 topregs = (struct caam_full __iomem *)ctrlpriv->ctrl;
29 for (ring = 0; ring < ctrlpriv->total_jobrs; ring++) {
30 ret |= caam_jr_shutdown(ctrlpriv->jrdev[ring]);
31 jrpriv = dev_get_drvdata(ctrlpriv->jrdev[ring]);
32 irq_dispose_mapping(jrpriv->irq);
35 /* Shut down debug views */
36 #ifdef CONFIG_DEBUG_FS
37 debugfs_remove_recursive(ctrlpriv->dfs_root);
40 /* Unmap controller region */
41 iounmap(&topregs->ctrl);
43 kfree(ctrlpriv->jrdev);
50 * Descriptor to instantiate RNG State Handle 0 in normal mode and
51 * load the JDKEK, TDKEK and TDSK registers
53 static void build_instantiation_desc(u32 *desc)
57 init_job_desc(desc, 0);
59 /* INIT RNG in non-test mode */
60 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
64 jump_cmd = append_jump(desc, JUMP_CLASS_CLASS1);
65 set_jump_tgt_here(desc, jump_cmd);
68 * load 1 to clear written reg:
69 * resets the done interrupt and returns the RNG to idle.
71 append_load_imm_u32(desc, 1, LDST_SRCDST_WORD_CLRW);
73 /* generate secure keys (non-test) */
74 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
78 struct instantiate_result {
79 struct completion completion;
83 static void rng4_init_done(struct device *dev, u32 *desc, u32 err,
86 struct instantiate_result *instantiation = context;
89 char tmp[CAAM_ERROR_STR_MAX];
91 dev_err(dev, "%08x: %s\n", err, caam_jr_strstatus(tmp, err));
94 instantiation->err = err;
95 complete(&instantiation->completion);
98 static int instantiate_rng(struct device *jrdev)
100 struct instantiate_result instantiation;
106 desc = kmalloc(CAAM_CMD_SZ * 6, GFP_KERNEL | GFP_DMA);
108 dev_err(jrdev, "cannot allocate RNG init descriptor memory\n");
112 build_instantiation_desc(desc);
113 desc_dma = dma_map_single(jrdev, desc, desc_bytes(desc), DMA_TO_DEVICE);
114 init_completion(&instantiation.completion);
115 ret = caam_jr_enqueue(jrdev, desc, rng4_init_done, &instantiation);
117 wait_for_completion_interruptible(&instantiation.completion);
118 ret = instantiation.err;
120 dev_err(jrdev, "unable to instantiate RNG\n");
123 dma_unmap_single(jrdev, desc_dma, desc_bytes(desc), DMA_TO_DEVICE);
131 * By default, the TRNG runs for 200 clocks per sample;
132 * 1600 clocks per sample generates better entropy.
134 static void kick_trng(struct platform_device *pdev)
136 struct device *ctrldev = &pdev->dev;
137 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
138 struct caam_full __iomem *topregs;
139 struct rng4tst __iomem *r4tst;
142 topregs = (struct caam_full __iomem *)ctrlpriv->ctrl;
143 r4tst = &topregs->ctrl.r4tst[0];
145 /* put RNG4 into program mode */
146 setbits32(&r4tst->rtmctl, RTMCTL_PRGM);
147 /* 1600 clocks per sample */
148 val = rd_reg32(&r4tst->rtsdctl);
149 val = (val & ~RTSDCTL_ENT_DLY_MASK) | (1600 << RTSDCTL_ENT_DLY_SHIFT);
150 wr_reg32(&r4tst->rtsdctl, val);
151 /* min. freq. count */
152 wr_reg32(&r4tst->rtfrqmin, 400);
153 /* max. freq. count */
154 wr_reg32(&r4tst->rtfrqmax, 6400);
155 /* put RNG4 into run mode */
156 clrbits32(&r4tst->rtmctl, RTMCTL_PRGM);
160 * caam_get_era() - Return the ERA of the SEC on SoC, based
161 * on the SEC_VID register.
162 * Returns the ERA number (1..4) or -ENOTSUPP if the ERA is unknown.
163 * @caam_id - the value of the SEC_VID register
165 int caam_get_era(u64 caam_id)
167 struct sec_vid *sec_vid = (struct sec_vid *)&caam_id;
168 static const struct {
183 for (i = 0; i < ARRAY_SIZE(caam_eras); i++)
184 if (caam_eras[i].ip_id == sec_vid->ip_id &&
185 caam_eras[i].maj_rev == sec_vid->maj_rev)
186 return caam_eras[i].era;
190 EXPORT_SYMBOL(caam_get_era);
192 /* Probe routine for CAAM top (controller) level */
193 static int caam_probe(struct platform_device *pdev)
195 int ret, ring, rspec;
198 struct device_node *nprop, *np;
199 struct caam_ctrl __iomem *ctrl;
200 struct caam_full __iomem *topregs;
201 struct caam_drv_private *ctrlpriv;
202 #ifdef CONFIG_DEBUG_FS
203 struct caam_perfmon *perfmon;
206 ctrlpriv = kzalloc(sizeof(struct caam_drv_private), GFP_KERNEL);
211 dev_set_drvdata(dev, ctrlpriv);
212 ctrlpriv->pdev = pdev;
213 nprop = pdev->dev.of_node;
215 /* Get configuration properties from device tree */
216 /* First, get register page */
217 ctrl = of_iomap(nprop, 0);
219 dev_err(dev, "caam: of_iomap() failed\n");
222 ctrlpriv->ctrl = (struct caam_ctrl __force *)ctrl;
224 /* topregs used to derive pointers to CAAM sub-blocks only */
225 topregs = (struct caam_full __iomem *)ctrl;
227 /* Get the IRQ of the controller (for security violations only) */
228 ctrlpriv->secvio_irq = of_irq_to_resource(nprop, 0, NULL);
231 * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel,
232 * long pointers in master configuration register
234 setbits32(&topregs->ctrl.mcr, MCFGR_WDENABLE |
235 (sizeof(dma_addr_t) == sizeof(u64) ? MCFGR_LONG_PTR : 0));
237 if (sizeof(dma_addr_t) == sizeof(u64))
238 if (of_device_is_compatible(nprop, "fsl,sec-v5.0"))
239 dma_set_mask(dev, DMA_BIT_MASK(40));
241 dma_set_mask(dev, DMA_BIT_MASK(36));
243 dma_set_mask(dev, DMA_BIT_MASK(32));
246 * Detect and enable JobRs
247 * First, find out how many ring spec'ed, allocate references
248 * for all, then go probe each one.
251 for_each_compatible_node(np, NULL, "fsl,sec-v4.0-job-ring")
254 /* for backward compatible with device trees */
255 for_each_compatible_node(np, NULL, "fsl,sec4.0-job-ring")
259 ctrlpriv->jrdev = kzalloc(sizeof(struct device *) * rspec, GFP_KERNEL);
260 if (ctrlpriv->jrdev == NULL) {
261 iounmap(&topregs->ctrl);
266 ctrlpriv->total_jobrs = 0;
267 for_each_compatible_node(np, NULL, "fsl,sec-v4.0-job-ring") {
268 caam_jr_probe(pdev, np, ring);
269 ctrlpriv->total_jobrs++;
273 for_each_compatible_node(np, NULL, "fsl,sec4.0-job-ring") {
274 caam_jr_probe(pdev, np, ring);
275 ctrlpriv->total_jobrs++;
280 /* Check to see if QI present. If so, enable */
281 ctrlpriv->qi_present = !!(rd_reg64(&topregs->ctrl.perfmon.comp_parms) &
283 if (ctrlpriv->qi_present) {
284 ctrlpriv->qi = (struct caam_queue_if __force *)&topregs->qi;
285 /* This is all that's required to physically enable QI */
286 wr_reg32(&topregs->qi.qi_control_lo, QICTL_DQEN);
289 /* If no QI and no rings specified, quit and go home */
290 if ((!ctrlpriv->qi_present) && (!ctrlpriv->total_jobrs)) {
291 dev_err(dev, "no queues configured, terminating\n");
297 * RNG4 based SECs (v5+) need special initialization prior
298 * to executing any descriptors
300 if (of_device_is_compatible(nprop, "fsl,sec-v5.0")) {
302 ret = instantiate_rng(ctrlpriv->jrdev[0]);
308 /* Enable RDB bit so that RNG works faster */
309 setbits32(&topregs->ctrl.scfgr, SCFGR_RDBENABLE);
312 /* NOTE: RTIC detection ought to go here, around Si time */
314 /* Initialize queue allocator lock */
315 spin_lock_init(&ctrlpriv->jr_alloc_lock);
317 caam_id = rd_reg64(&topregs->ctrl.perfmon.caam_id);
319 /* Report "alive" for developer to see */
320 dev_info(dev, "device ID = 0x%016llx (Era %d)\n", caam_id,
321 caam_get_era(caam_id));
322 dev_info(dev, "job rings = %d, qi = %d\n",
323 ctrlpriv->total_jobrs, ctrlpriv->qi_present);
325 #ifdef CONFIG_DEBUG_FS
327 * FIXME: needs better naming distinction, as some amalgamation of
328 * "caam" and nprop->full_name. The OF name isn't distinctive,
329 * but does separate instances
331 perfmon = (struct caam_perfmon __force *)&ctrl->perfmon;
333 ctrlpriv->dfs_root = debugfs_create_dir("caam", NULL);
334 ctrlpriv->ctl = debugfs_create_dir("ctl", ctrlpriv->dfs_root);
336 /* Controller-level - performance monitor counters */
337 ctrlpriv->ctl_rq_dequeued =
338 debugfs_create_u64("rq_dequeued",
339 S_IRUSR | S_IRGRP | S_IROTH,
340 ctrlpriv->ctl, &perfmon->req_dequeued);
341 ctrlpriv->ctl_ob_enc_req =
342 debugfs_create_u64("ob_rq_encrypted",
343 S_IRUSR | S_IRGRP | S_IROTH,
344 ctrlpriv->ctl, &perfmon->ob_enc_req);
345 ctrlpriv->ctl_ib_dec_req =
346 debugfs_create_u64("ib_rq_decrypted",
347 S_IRUSR | S_IRGRP | S_IROTH,
348 ctrlpriv->ctl, &perfmon->ib_dec_req);
349 ctrlpriv->ctl_ob_enc_bytes =
350 debugfs_create_u64("ob_bytes_encrypted",
351 S_IRUSR | S_IRGRP | S_IROTH,
352 ctrlpriv->ctl, &perfmon->ob_enc_bytes);
353 ctrlpriv->ctl_ob_prot_bytes =
354 debugfs_create_u64("ob_bytes_protected",
355 S_IRUSR | S_IRGRP | S_IROTH,
356 ctrlpriv->ctl, &perfmon->ob_prot_bytes);
357 ctrlpriv->ctl_ib_dec_bytes =
358 debugfs_create_u64("ib_bytes_decrypted",
359 S_IRUSR | S_IRGRP | S_IROTH,
360 ctrlpriv->ctl, &perfmon->ib_dec_bytes);
361 ctrlpriv->ctl_ib_valid_bytes =
362 debugfs_create_u64("ib_bytes_validated",
363 S_IRUSR | S_IRGRP | S_IROTH,
364 ctrlpriv->ctl, &perfmon->ib_valid_bytes);
366 /* Controller level - global status values */
367 ctrlpriv->ctl_faultaddr =
368 debugfs_create_u64("fault_addr",
369 S_IRUSR | S_IRGRP | S_IROTH,
370 ctrlpriv->ctl, &perfmon->faultaddr);
371 ctrlpriv->ctl_faultdetail =
372 debugfs_create_u32("fault_detail",
373 S_IRUSR | S_IRGRP | S_IROTH,
374 ctrlpriv->ctl, &perfmon->faultdetail);
375 ctrlpriv->ctl_faultstatus =
376 debugfs_create_u32("fault_status",
377 S_IRUSR | S_IRGRP | S_IROTH,
378 ctrlpriv->ctl, &perfmon->status);
380 /* Internal covering keys (useful in non-secure mode only) */
381 ctrlpriv->ctl_kek_wrap.data = &ctrlpriv->ctrl->kek[0];
382 ctrlpriv->ctl_kek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
383 ctrlpriv->ctl_kek = debugfs_create_blob("kek",
387 &ctrlpriv->ctl_kek_wrap);
389 ctrlpriv->ctl_tkek_wrap.data = &ctrlpriv->ctrl->tkek[0];
390 ctrlpriv->ctl_tkek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
391 ctrlpriv->ctl_tkek = debugfs_create_blob("tkek",
395 &ctrlpriv->ctl_tkek_wrap);
397 ctrlpriv->ctl_tdsk_wrap.data = &ctrlpriv->ctrl->tdsk[0];
398 ctrlpriv->ctl_tdsk_wrap.size = KEK_KEY_SIZE * sizeof(u32);
399 ctrlpriv->ctl_tdsk = debugfs_create_blob("tdsk",
403 &ctrlpriv->ctl_tdsk_wrap);
408 static struct of_device_id caam_match[] = {
410 .compatible = "fsl,sec-v4.0",
413 .compatible = "fsl,sec4.0",
417 MODULE_DEVICE_TABLE(of, caam_match);
419 static struct platform_driver caam_driver = {
422 .owner = THIS_MODULE,
423 .of_match_table = caam_match,
426 .remove = caam_remove,
429 module_platform_driver(caam_driver);
431 MODULE_LICENSE("GPL");
432 MODULE_DESCRIPTION("FSL CAAM request backend");
433 MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");