blob: 8908d040b1f22c208e2aa0bbefe68c69cd6e7cc3 [file] [log] [blame]
Kim Phillips8e8ec592011-03-13 16:54:26 +08001/*
2 * CAAM control-plane driver backend
3 * Controller-level driver, kernel property detection, initialization
4 *
Kim Phillips281922a2012-06-22 19:48:52 -05005 * Copyright 2008-2012 Freescale Semiconductor, Inc.
Kim Phillips8e8ec592011-03-13 16:54:26 +08006 */
7
Himangi Saraogi4776d382014-05-27 23:55:48 +05308#include <linux/device.h>
Rob Herring5af50732013-09-17 14:28:33 -05009#include <linux/of_address.h>
10#include <linux/of_irq.h>
11
Kim Phillips8e8ec592011-03-13 16:54:26 +080012#include "compat.h"
13#include "regs.h"
14#include "intern.h"
15#include "jr.h"
Kim Phillips281922a2012-06-22 19:48:52 -050016#include "desc_constr.h"
17#include "error.h"
Kim Phillips8e8ec592011-03-13 16:54:26 +080018
Kim Phillips281922a2012-06-22 19:48:52 -050019/*
20 * Descriptor to instantiate RNG State Handle 0 in normal mode and
21 * load the JDKEK, TDKEK and TDSK registers
22 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030023static void build_instantiation_desc(u32 *desc, int handle, int do_sk)
Kim Phillips281922a2012-06-22 19:48:52 -050024{
Alex Porosanu1005bcc2013-09-09 18:56:34 +030025 u32 *jump_cmd, op_flags;
Kim Phillips281922a2012-06-22 19:48:52 -050026
27 init_job_desc(desc, 0);
28
Alex Porosanu1005bcc2013-09-09 18:56:34 +030029 op_flags = OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
30 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INIT;
31
Kim Phillips281922a2012-06-22 19:48:52 -050032 /* INIT RNG in non-test mode */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030033 append_operation(desc, op_flags);
Kim Phillips281922a2012-06-22 19:48:52 -050034
Alex Porosanu1005bcc2013-09-09 18:56:34 +030035 if (!handle && do_sk) {
36 /*
37 * For SH0, Secure Keys must be generated as well
38 */
Kim Phillips281922a2012-06-22 19:48:52 -050039
Alex Porosanu1005bcc2013-09-09 18:56:34 +030040 /* wait for done */
41 jump_cmd = append_jump(desc, JUMP_CLASS_CLASS1);
42 set_jump_tgt_here(desc, jump_cmd);
Kim Phillips281922a2012-06-22 19:48:52 -050043
Alex Porosanu1005bcc2013-09-09 18:56:34 +030044 /*
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 }
Alex Porosanud5e4e992013-09-09 18:56:28 +030054
55 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
Kim Phillips281922a2012-06-22 19:48:52 -050056}
57
Alex Porosanub1f996e02013-09-09 18:56:32 +030058/* Descriptor for deinstantiation of State Handle 0 of the RNG block. */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030059static void build_deinstantiation_desc(u32 *desc, int handle)
Alex Porosanub1f996e02013-09-09 18:56:32 +030060{
61 init_job_desc(desc, 0);
62
63 /* Uninstantiate State Handle 0 */
64 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
Alex Porosanu1005bcc2013-09-09 18:56:34 +030065 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INITFINAL);
Alex Porosanub1f996e02013-09-09 18:56:32 +030066
67 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
68}
Alex Porosanu04cddbf2013-09-09 18:56:31 +030069
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
Alex Porosanu1005bcc2013-09-09 18:56:34 +030074 * @status - descriptor status, after being run
75 *
Alex Porosanu04cddbf2013-09-09 18:56:31 +030076 * 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 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030080static inline int run_descriptor_deco0(struct device *ctrldev, u32 *desc,
81 u32 *status)
Kim Phillips281922a2012-06-22 19:48:52 -050082{
Ruchika Gupta997ad292013-07-04 11:26:03 +053083 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
84 struct caam_full __iomem *topregs;
85 unsigned int timeout = 100000;
Alex Porosanu04cddbf2013-09-09 18:56:31 +030086 u32 deco_dbg_reg, flags;
Alex Porosanub1f996e02013-09-09 18:56:32 +030087 int i;
Ruchika Gupta997ad292013-07-04 11:26:03 +053088
89 /* Set the bit to request direct access to DECO0 */
90 topregs = (struct caam_full __iomem *)ctrlpriv->ctrl;
Ruchika Gupta17157c92014-06-23 17:42:33 +053091
Horia Geanta8f1da7b2014-07-21 16:03:21 +030092 if (ctrlpriv->virt_en == 1) {
Ruchika Gupta17157c92014-06-23 17:42:33 +053093 setbits32(&topregs->ctrl.deco_rsr, DECORSR_JR0);
94
Horia Geanta8f1da7b2014-07-21 16:03:21 +030095 while (!(rd_reg32(&topregs->ctrl.deco_rsr) & DECORSR_VALID) &&
96 --timeout)
97 cpu_relax();
98
99 timeout = 100000;
100 }
Ruchika Gupta17157c92014-06-23 17:42:33 +0530101
Ruchika Gupta997ad292013-07-04 11:26:03 +0530102 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");
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300110 clrbits32(&topregs->ctrl.deco_rq, DECORR_RQD0ENABLE);
111 return -ENODEV;
Kim Phillips281922a2012-06-22 19:48:52 -0500112 }
113
Ruchika Gupta997ad292013-07-04 11:26:03 +0530114 for (i = 0; i < desc_len(desc); i++)
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300115 wr_reg32(&topregs->deco.descbuf[i], *(desc + i));
Kim Phillips281922a2012-06-22 19:48:52 -0500116
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300117 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);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530127
128 timeout = 10000000;
Alex Porosanu84cf4822013-09-09 18:56:30 +0300129 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;
Ruchika Gupta997ad292013-07-04 11:26:03 +0530138 cpu_relax();
Alex Porosanu84cf4822013-09-09 18:56:30 +0300139 } while ((deco_dbg_reg & DESC_DBG_DECO_STAT_VALID) && --timeout);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530140
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300141 *status = rd_reg32(&topregs->deco.op_status_hi) &
142 DECO_OP_STATUS_HI_ERR_MASK;
143
Ruchika Gupta17157c92014-06-23 17:42:33 +0530144 if (ctrlpriv->virt_en == 1)
145 clrbits32(&topregs->ctrl.deco_rsr, DECORSR_JR0);
146
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300147 /* Mark the DECO as free */
Ruchika Gupta997ad292013-07-04 11:26:03 +0530148 clrbits32(&topregs->ctrl.deco_rq, DECORR_RQD0ENABLE);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300149
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
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300160 * @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 *
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300168 * 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 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300175static int instantiate_rng(struct device *ctrldev, int state_handle_mask,
176 int gen_sk)
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300177{
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300178 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];
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300186
187 desc = kmalloc(CAAM_CMD_SZ * 7, GFP_KERNEL);
188 if (!desc)
189 return -ENOMEM;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300190
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300191 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);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530224 }
225
Kim Phillips281922a2012-06-22 19:48:52 -0500226 kfree(desc);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300227
Kim Phillips281922a2012-06-22 19:48:52 -0500228 return ret;
229}
230
231/*
Alex Porosanub1f996e02013-09-09 18:56:32 +0300232 * deinstantiate_rng - builds and executes a descriptor on DECO0,
233 * which deinitializes the RNG block.
234 * @ctrldev - pointer to device
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300235 * @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
Alex Porosanub1f996e02013-09-09 18:56:32 +0300238 *
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
Kim Phillips281922a2012-06-22 19:48:52 -0500243 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300244static int deinstantiate_rng(struct device *ctrldev, int state_handle_mask)
Alex Porosanub1f996e02013-09-09 18:56:32 +0300245{
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300246 u32 *desc, status;
247 int sh_idx, ret = 0;
Alex Porosanub1f996e02013-09-09 18:56:32 +0300248
249 desc = kmalloc(CAAM_CMD_SZ * 3, GFP_KERNEL);
250 if (!desc)
251 return -ENOMEM;
252
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300253 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);
Alex Porosanub1f996e02013-09-09 18:56:32 +0300265
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300266 /* Try to run it through DECO0 */
267 ret = run_descriptor_deco0(ctrldev, desc, &status);
Alex Porosanub1f996e02013-09-09 18:56:32 +0300268
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300269 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 }
Alex Porosanub1f996e02013-09-09 18:56:32 +0300278
279 kfree(desc);
280
281 return ret;
282}
283
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300284static int caam_remove(struct platform_device *pdev)
285{
286 struct device *ctrldev;
287 struct caam_drv_private *ctrlpriv;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300288 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
Ruchika Gupta313ea292013-10-25 12:01:01 +0530295 /* Remove platform devices for JobRs */
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300296 for (ring = 0; ring < ctrlpriv->total_jobrs; ring++) {
Ruchika Gupta313ea292013-10-25 12:01:01 +0530297 if (ctrlpriv->jrpdev[ring])
298 of_device_unregister(ctrlpriv->jrpdev[ring]);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300299 }
300
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300301 /* De-initialize RNG state handles initialized by this driver. */
302 if (ctrlpriv->rng4_sh_init)
303 deinstantiate_rng(ctrldev, ctrlpriv->rng4_sh_init);
Alex Porosanub1f996e02013-09-09 18:56:32 +0300304
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300305 /* 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
Kim Phillips281922a2012-06-22 19:48:52 -0500313 return ret;
314}
315
316/*
Alex Porosanu84cf4822013-09-09 18:56:30 +0300317 * 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.
Kim Phillips281922a2012-06-22 19:48:52 -0500321 */
Alex Porosanu84cf4822013-09-09 18:56:30 +0300322static void kick_trng(struct platform_device *pdev, int ent_delay)
Kim Phillips281922a2012-06-22 19:48:52 -0500323{
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);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300335
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
Kim Phillips281922a2012-06-22 19:48:52 -0500352 val = rd_reg32(&r4tst->rtsdctl);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300353 val = (val & ~RTSDCTL_ENT_DLY_MASK) |
354 (ent_delay << RTSDCTL_ENT_DLY_SHIFT);
Kim Phillips281922a2012-06-22 19:48:52 -0500355 wr_reg32(&r4tst->rtsdctl, val);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300356 /* min. freq. count, equal to 1/4 of the entropy sample length */
357 wr_reg32(&r4tst->rtfrqmin, ent_delay >> 2);
Alex Porosanub061f3f2014-08-11 11:40:15 +0300358 /* disable maximum frequency count */
359 wr_reg32(&r4tst->rtfrqmax, RTFRQMAX_DISABLE);
Kim Phillips281922a2012-06-22 19:48:52 -0500360 /* put RNG4 into run mode */
361 clrbits32(&r4tst->rtmctl, RTMCTL_PRGM);
362}
363
Alex Porosanu82c2f962012-07-11 11:06:11 +0800364/**
365 * caam_get_era() - Return the ERA of the SEC on SoC, based
Alex Porosanu883619a2014-02-06 10:27:19 +0200366 * on "sec-era" propery in the DTS. This property is updated by u-boot.
Alex Porosanu82c2f962012-07-11 11:06:11 +0800367 **/
Alex Porosanu883619a2014-02-06 10:27:19 +0200368int caam_get_era(void)
Alex Porosanu82c2f962012-07-11 11:06:11 +0800369{
Alex Porosanu883619a2014-02-06 10:27:19 +0200370 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 }
Alex Porosanu82c2f962012-07-11 11:06:11 +0800377
378 return -ENOTSUPP;
379}
380EXPORT_SYMBOL(caam_get_era);
381
Kim Phillips8e8ec592011-03-13 16:54:26 +0800382/* Probe routine for CAAM top (controller) level */
Kim Phillips2930d492011-05-14 22:07:55 -0500383static int caam_probe(struct platform_device *pdev)
Kim Phillips8e8ec592011-03-13 16:54:26 +0800384{
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300385 int ret, ring, rspec, gen_sk, ent_delay = RTSDCTL_ENT_DLY_MIN;
Alex Porosanu82c2f962012-07-11 11:06:11 +0800386 u64 caam_id;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800387 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;
Kim Phillips23457bc2011-06-05 16:42:54 -0500392#ifdef CONFIG_DEBUG_FS
393 struct caam_perfmon *perfmon;
394#endif
Ruchika Gupta17157c92014-06-23 17:42:33 +0530395 u32 scfgr, comp_params;
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530396 u32 cha_vid_ls;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800397
Himangi Saraogi4776d382014-05-27 23:55:48 +0530398 ctrlpriv = devm_kzalloc(&pdev->dev, sizeof(struct caam_drv_private),
399 GFP_KERNEL);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800400 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) */
Thierry Redingf7578492013-09-18 15:24:44 +0200421 ctrlpriv->secvio_irq = irq_of_parse_and_map(nprop, 0);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800422
423 /*
424 * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel,
Kim Phillipse13af182012-06-22 19:48:51 -0500425 * long pointers in master configuration register
Kim Phillips8e8ec592011-03-13 16:54:26 +0800426 */
427 setbits32(&topregs->ctrl.mcr, MCFGR_WDENABLE |
428 (sizeof(dma_addr_t) == sizeof(u64) ? MCFGR_LONG_PTR : 0));
429
Ruchika Gupta17157c92014-06-23 17:42:33 +0530430 /*
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
Kim Phillips8e8ec592011-03-13 16:54:26 +0800457 if (sizeof(dma_addr_t) == sizeof(u64))
Kim Phillipse13af182012-06-22 19:48:51 -0500458 if (of_device_is_compatible(nprop, "fsl,sec-v5.0"))
Horia Geantaa2ac2872014-07-11 15:34:47 +0300459 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(40));
Kim Phillipse13af182012-06-22 19:48:51 -0500460 else
Horia Geantaa2ac2872014-07-11 15:34:47 +0300461 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(36));
Kim Phillipse13af182012-06-22 19:48:51 -0500462 else
Horia Geantaa2ac2872014-07-11 15:34:47 +0300463 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
Kim Phillips8e8ec592011-03-13 16:54:26 +0800464
Kim Phillips8e8ec592011-03-13 16:54:26 +0800465 /*
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;
Nitesh Lal0a63b092014-02-09 09:59:13 +0800471 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"))
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800474 rspec++;
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800475
Himangi Saraogi4776d382014-05-27 23:55:48 +0530476 ctrlpriv->jrpdev = devm_kzalloc(&pdev->dev,
477 sizeof(struct platform_device *) * rspec,
478 GFP_KERNEL);
Ruchika Gupta313ea292013-10-25 12:01:01 +0530479 if (ctrlpriv->jrpdev == NULL) {
Kim Phillips8e8ec592011-03-13 16:54:26 +0800480 iounmap(&topregs->ctrl);
481 return -ENOMEM;
482 }
483
484 ring = 0;
485 ctrlpriv->total_jobrs = 0;
Nitesh Lal0a63b092014-02-09 09:59:13 +0800486 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")) {
Ruchika Gupta313ea292013-10-25 12:01:01 +0530489 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 }
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800496 ctrlpriv->total_jobrs++;
497 ring++;
498 }
Kim Phillips8e8ec592011-03-13 16:54:26 +0800499
500 /* Check to see if QI present. If so, enable */
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530501 ctrlpriv->qi_present =
502 !!(rd_reg32(&topregs->ctrl.perfmon.comp_parms_ms) &
503 CTPR_MS_QI_MASK);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800504 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
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530517 cha_vid_ls = rd_reg32(&topregs->ctrl.perfmon.cha_id_ls);
Ruchika Gupta986dfbc2013-04-26 15:44:54 +0530518
Kim Phillips281922a2012-06-22 19:48:52 -0500519 /*
Ruchika Gupta986dfbc2013-04-26 15:44:54 +0530520 * If SEC has RNG version >= 4 and RNG state handle has not been
Alex Porosanu84cf4822013-09-09 18:56:30 +0300521 * already instantiated, do RNG instantiation
Kim Phillips281922a2012-06-22 19:48:52 -0500522 */
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530523 if ((cha_vid_ls & CHA_ID_LS_RNG_MASK) >> CHA_ID_LS_RNG_SHIFT >= 4) {
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300524 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;
Alex Porosanu84cf4822013-09-09 18:56:30 +0300534 do {
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300535 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);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300559 } while ((ret == -EAGAIN) && (ent_delay < RTSDCTL_ENT_DLY_MAX));
Kim Phillips281922a2012-06-22 19:48:52 -0500560 if (ret) {
Alex Porosanu84cf4822013-09-09 18:56:30 +0300561 dev_err(dev, "failed to instantiate RNG");
Kim Phillips281922a2012-06-22 19:48:52 -0500562 caam_remove(pdev);
563 return ret;
564 }
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300565 /*
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;
Vakul Garg575c1bd2013-03-12 13:55:21 +0530570
571 /* Enable RDB bit so that RNG works faster */
572 setbits32(&topregs->ctrl.scfgr, SCFGR_RDBENABLE);
Kim Phillips281922a2012-06-22 19:48:52 -0500573 }
574
Kim Phillips8e8ec592011-03-13 16:54:26 +0800575 /* NOTE: RTIC detection ought to go here, around Si time */
576
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530577 caam_id = (u64)rd_reg32(&topregs->ctrl.perfmon.caam_id_ms) << 32 |
578 (u64)rd_reg32(&topregs->ctrl.perfmon.caam_id_ls);
Alex Porosanu82c2f962012-07-11 11:06:11 +0800579
Kim Phillips8e8ec592011-03-13 16:54:26 +0800580 /* Report "alive" for developer to see */
Alex Porosanu82c2f962012-07-11 11:06:11 +0800581 dev_info(dev, "device ID = 0x%016llx (Era %d)\n", caam_id,
Alex Porosanu883619a2014-02-06 10:27:19 +0200582 caam_get_era());
Kim Phillips8e8ec592011-03-13 16:54:26 +0800583 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
Nitesh Narayan Lal178f8272014-07-01 19:54:54 +0530594 ctrlpriv->dfs_root = debugfs_create_dir(dev_name(dev), NULL);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800595 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",
Al Viroeda65cc2011-07-24 04:32:53 -0400600 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800601 ctrlpriv->ctl, &perfmon->req_dequeued);
602 ctrlpriv->ctl_ob_enc_req =
603 debugfs_create_u64("ob_rq_encrypted",
Al Viroeda65cc2011-07-24 04:32:53 -0400604 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800605 ctrlpriv->ctl, &perfmon->ob_enc_req);
606 ctrlpriv->ctl_ib_dec_req =
607 debugfs_create_u64("ib_rq_decrypted",
Al Viroeda65cc2011-07-24 04:32:53 -0400608 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800609 ctrlpriv->ctl, &perfmon->ib_dec_req);
610 ctrlpriv->ctl_ob_enc_bytes =
611 debugfs_create_u64("ob_bytes_encrypted",
Al Viroeda65cc2011-07-24 04:32:53 -0400612 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800613 ctrlpriv->ctl, &perfmon->ob_enc_bytes);
614 ctrlpriv->ctl_ob_prot_bytes =
615 debugfs_create_u64("ob_bytes_protected",
Al Viroeda65cc2011-07-24 04:32:53 -0400616 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800617 ctrlpriv->ctl, &perfmon->ob_prot_bytes);
618 ctrlpriv->ctl_ib_dec_bytes =
619 debugfs_create_u64("ib_bytes_decrypted",
Al Viroeda65cc2011-07-24 04:32:53 -0400620 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800621 ctrlpriv->ctl, &perfmon->ib_dec_bytes);
622 ctrlpriv->ctl_ib_valid_bytes =
623 debugfs_create_u64("ib_bytes_validated",
Al Viroeda65cc2011-07-24 04:32:53 -0400624 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800625 ctrlpriv->ctl, &perfmon->ib_valid_bytes);
626
627 /* Controller level - global status values */
628 ctrlpriv->ctl_faultaddr =
629 debugfs_create_u64("fault_addr",
Al Viroeda65cc2011-07-24 04:32:53 -0400630 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800631 ctrlpriv->ctl, &perfmon->faultaddr);
632 ctrlpriv->ctl_faultdetail =
633 debugfs_create_u32("fault_detail",
Al Viroeda65cc2011-07-24 04:32:53 -0400634 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800635 ctrlpriv->ctl, &perfmon->faultdetail);
636 ctrlpriv->ctl_faultstatus =
637 debugfs_create_u32("fault_status",
Al Viroeda65cc2011-07-24 04:32:53 -0400638 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800639 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",
Al Viroeda65cc2011-07-24 04:32:53 -0400645 S_IRUSR |
Kim Phillips8e8ec592011-03-13 16:54:26 +0800646 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",
Al Viroeda65cc2011-07-24 04:32:53 -0400653 S_IRUSR |
Kim Phillips8e8ec592011-03-13 16:54:26 +0800654 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",
Al Viroeda65cc2011-07-24 04:32:53 -0400661 S_IRUSR |
Kim Phillips8e8ec592011-03-13 16:54:26 +0800662 S_IRGRP | S_IROTH,
663 ctrlpriv->ctl,
664 &ctrlpriv->ctl_tdsk_wrap);
665#endif
666 return 0;
667}
668
669static struct of_device_id caam_match[] = {
670 {
Kim Phillips54e198d2011-03-23 21:15:44 +0800671 .compatible = "fsl,sec-v4.0",
Kim Phillips8e8ec592011-03-13 16:54:26 +0800672 },
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800673 {
674 .compatible = "fsl,sec4.0",
675 },
Kim Phillips8e8ec592011-03-13 16:54:26 +0800676 {},
677};
678MODULE_DEVICE_TABLE(of, caam_match);
679
Kim Phillips2930d492011-05-14 22:07:55 -0500680static struct platform_driver caam_driver = {
Kim Phillips8e8ec592011-03-13 16:54:26 +0800681 .driver = {
682 .name = "caam",
683 .owner = THIS_MODULE,
684 .of_match_table = caam_match,
685 },
686 .probe = caam_probe,
Greg Kroah-Hartman49cfe4d2012-12-21 13:14:09 -0800687 .remove = caam_remove,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800688};
689
Axel Lin741e8c22011-11-26 21:26:19 +0800690module_platform_driver(caam_driver);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800691
692MODULE_LICENSE("GPL");
693MODULE_DESCRIPTION("FSL CAAM request backend");
694MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");