blob: 44d30b45f3cc35a44ee692bc6b48706e819b760c [file] [log] [blame]
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +05301/* * CAAM control-plane driver backend
Kim Phillips8e8ec592011-03-13 16:54:26 +08002 * Controller-level driver, kernel property detection, initialization
3 *
Kim Phillips281922a2012-06-22 19:48:52 -05004 * Copyright 2008-2012 Freescale Semiconductor, Inc.
Kim Phillips8e8ec592011-03-13 16:54:26 +08005 */
6
Himangi Saraogi4776d382014-05-27 23:55:48 +05307#include <linux/device.h>
Rob Herring5af50732013-09-17 14:28:33 -05008#include <linux/of_address.h>
9#include <linux/of_irq.h>
10
Kim Phillips8e8ec592011-03-13 16:54:26 +080011#include "compat.h"
12#include "regs.h"
13#include "intern.h"
14#include "jr.h"
Kim Phillips281922a2012-06-22 19:48:52 -050015#include "desc_constr.h"
16#include "error.h"
Kim Phillips8e8ec592011-03-13 16:54:26 +080017
Kim Phillips281922a2012-06-22 19:48:52 -050018/*
Horia Geant?6c3af952015-08-17 15:24:10 +030019 * i.MX targets tend to have clock control subsystems that can
Victoria Milhoan24821c42015-08-05 11:28:37 -070020 * enable/disable clocking to our device.
21 */
Horia Geant?6c3af952015-08-17 15:24:10 +030022#ifdef CONFIG_CRYPTO_DEV_FSL_CAAM_IMX
Victoria Milhoan24821c42015-08-05 11:28:37 -070023static 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
29static inline struct clk *caam_drv_identify_clk(struct device *dev,
30 char *clk_name)
31{
32 return NULL;
33}
34#endif
35
36/*
Kim Phillips281922a2012-06-22 19:48:52 -050037 * Descriptor to instantiate RNG State Handle 0 in normal mode and
38 * load the JDKEK, TDKEK and TDSK registers
39 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030040static void build_instantiation_desc(u32 *desc, int handle, int do_sk)
Kim Phillips281922a2012-06-22 19:48:52 -050041{
Alex Porosanu1005bcc2013-09-09 18:56:34 +030042 u32 *jump_cmd, op_flags;
Kim Phillips281922a2012-06-22 19:48:52 -050043
44 init_job_desc(desc, 0);
45
Alex Porosanu1005bcc2013-09-09 18:56:34 +030046 op_flags = OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
47 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INIT;
48
Kim Phillips281922a2012-06-22 19:48:52 -050049 /* INIT RNG in non-test mode */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030050 append_operation(desc, op_flags);
Kim Phillips281922a2012-06-22 19:48:52 -050051
Alex Porosanu1005bcc2013-09-09 18:56:34 +030052 if (!handle && do_sk) {
53 /*
54 * For SH0, Secure Keys must be generated as well
55 */
Kim Phillips281922a2012-06-22 19:48:52 -050056
Alex Porosanu1005bcc2013-09-09 18:56:34 +030057 /* wait for done */
58 jump_cmd = append_jump(desc, JUMP_CLASS_CLASS1);
59 set_jump_tgt_here(desc, jump_cmd);
Kim Phillips281922a2012-06-22 19:48:52 -050060
Alex Porosanu1005bcc2013-09-09 18:56:34 +030061 /*
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 }
Alex Porosanud5e4e992013-09-09 18:56:28 +030071
72 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
Kim Phillips281922a2012-06-22 19:48:52 -050073}
74
Alex Porosanub1f996e02013-09-09 18:56:32 +030075/* Descriptor for deinstantiation of State Handle 0 of the RNG block. */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030076static void build_deinstantiation_desc(u32 *desc, int handle)
Alex Porosanub1f996e02013-09-09 18:56:32 +030077{
78 init_job_desc(desc, 0);
79
80 /* Uninstantiate State Handle 0 */
81 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
Alex Porosanu1005bcc2013-09-09 18:56:34 +030082 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INITFINAL);
Alex Porosanub1f996e02013-09-09 18:56:32 +030083
84 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
85}
Alex Porosanu04cddbf2013-09-09 18:56:31 +030086
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
Alex Porosanu1005bcc2013-09-09 18:56:34 +030091 * @status - descriptor status, after being run
92 *
Alex Porosanu04cddbf2013-09-09 18:56:31 +030093 * 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 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030097static inline int run_descriptor_deco0(struct device *ctrldev, u32 *desc,
98 u32 *status)
Kim Phillips281922a2012-06-22 19:48:52 -050099{
Ruchika Gupta997ad292013-07-04 11:26:03 +0530100 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530101 struct caam_ctrl __iomem *ctrl = ctrlpriv->ctrl;
102 struct caam_deco __iomem *deco = ctrlpriv->deco;
Ruchika Gupta997ad292013-07-04 11:26:03 +0530103 unsigned int timeout = 100000;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300104 u32 deco_dbg_reg, flags;
Alex Porosanub1f996e02013-09-09 18:56:32 +0300105 int i;
Ruchika Gupta997ad292013-07-04 11:26:03 +0530106
Ruchika Gupta17157c92014-06-23 17:42:33 +0530107
Horia Geanta8f1da7b2014-07-21 16:03:21 +0300108 if (ctrlpriv->virt_en == 1) {
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530109 setbits32(&ctrl->deco_rsr, DECORSR_JR0);
Ruchika Gupta17157c92014-06-23 17:42:33 +0530110
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530111 while (!(rd_reg32(&ctrl->deco_rsr) & DECORSR_VALID) &&
Horia Geanta8f1da7b2014-07-21 16:03:21 +0300112 --timeout)
113 cpu_relax();
114
115 timeout = 100000;
116 }
Ruchika Gupta17157c92014-06-23 17:42:33 +0530117
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530118 setbits32(&ctrl->deco_rq, DECORR_RQD0ENABLE);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530119
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530120 while (!(rd_reg32(&ctrl->deco_rq) & DECORR_DEN0) &&
Ruchika Gupta997ad292013-07-04 11:26:03 +0530121 --timeout)
122 cpu_relax();
123
124 if (!timeout) {
125 dev_err(ctrldev, "failed to acquire DECO 0\n");
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530126 clrbits32(&ctrl->deco_rq, DECORR_RQD0ENABLE);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300127 return -ENODEV;
Kim Phillips281922a2012-06-22 19:48:52 -0500128 }
129
Ruchika Gupta997ad292013-07-04 11:26:03 +0530130 for (i = 0; i < desc_len(desc); i++)
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530131 wr_reg32(&deco->descbuf[i], *(desc + i));
Kim Phillips281922a2012-06-22 19:48:52 -0500132
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300133 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 */
Horia Geant?9f587fa2015-08-21 18:53:20 +0300142 setbits32(&deco->jr_ctl_hi, flags);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530143
144 timeout = 10000000;
Alex Porosanu84cf4822013-09-09 18:56:30 +0300145 do {
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530146 deco_dbg_reg = rd_reg32(&deco->desc_dbg);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300147 /*
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;
Ruchika Gupta997ad292013-07-04 11:26:03 +0530154 cpu_relax();
Alex Porosanu84cf4822013-09-09 18:56:30 +0300155 } while ((deco_dbg_reg & DESC_DBG_DECO_STAT_VALID) && --timeout);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530156
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530157 *status = rd_reg32(&deco->op_status_hi) &
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300158 DECO_OP_STATUS_HI_ERR_MASK;
159
Ruchika Gupta17157c92014-06-23 17:42:33 +0530160 if (ctrlpriv->virt_en == 1)
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530161 clrbits32(&ctrl->deco_rsr, DECORSR_JR0);
Ruchika Gupta17157c92014-06-23 17:42:33 +0530162
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300163 /* Mark the DECO as free */
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530164 clrbits32(&ctrl->deco_rq, DECORR_RQD0ENABLE);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300165
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
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300176 * @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 *
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300184 * 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 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300191static int instantiate_rng(struct device *ctrldev, int state_handle_mask,
192 int gen_sk)
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300193{
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300194 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530195 struct caam_ctrl __iomem *ctrl;
Horia Geant?62743a42015-07-17 16:54:53 +0300196 u32 *desc, status = 0, rdsta_val;
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300197 int ret = 0, sh_idx;
198
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530199 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300200 desc = kmalloc(CAAM_CMD_SZ * 7, GFP_KERNEL);
201 if (!desc)
202 return -ENOMEM;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300203
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300204 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 */
Cristian Stoica467707b2015-01-21 11:53:31 +0200227 rdsta_val = rd_reg32(&ctrl->r4tst[0].rdsta) & RDSTA_IFMASK;
Horia Geant?62743a42015-07-17 16:54:53 +0300228 if ((status && status != JRSTA_SSRC_JUMP_HALT_CC) ||
229 !(rdsta_val & (1 << sh_idx)))
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300230 ret = -EAGAIN;
231 if (ret)
232 break;
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300233 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);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530236 }
237
Kim Phillips281922a2012-06-22 19:48:52 -0500238 kfree(desc);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300239
Kim Phillips281922a2012-06-22 19:48:52 -0500240 return ret;
241}
242
243/*
Alex Porosanub1f996e02013-09-09 18:56:32 +0300244 * deinstantiate_rng - builds and executes a descriptor on DECO0,
245 * which deinitializes the RNG block.
246 * @ctrldev - pointer to device
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300247 * @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
Alex Porosanub1f996e02013-09-09 18:56:32 +0300250 *
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
Kim Phillips281922a2012-06-22 19:48:52 -0500255 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300256static int deinstantiate_rng(struct device *ctrldev, int state_handle_mask)
Alex Porosanub1f996e02013-09-09 18:56:32 +0300257{
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300258 u32 *desc, status;
259 int sh_idx, ret = 0;
Alex Porosanub1f996e02013-09-09 18:56:32 +0300260
261 desc = kmalloc(CAAM_CMD_SZ * 3, GFP_KERNEL);
262 if (!desc)
263 return -ENOMEM;
264
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300265 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);
Alex Porosanub1f996e02013-09-09 18:56:32 +0300277
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300278 /* Try to run it through DECO0 */
279 ret = run_descriptor_deco0(ctrldev, desc, &status);
Alex Porosanub1f996e02013-09-09 18:56:32 +0300280
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300281 if (ret || status) {
282 dev_err(ctrldev,
283 "Failed to deinstantiate RNG4 SH%d\n",
284 sh_idx);
285 break;
286 }
287 dev_info(ctrldev, "Deinstantiated RNG4 SH%d\n", sh_idx);
288 }
289 }
Alex Porosanub1f996e02013-09-09 18:56:32 +0300290
291 kfree(desc);
292
293 return ret;
294}
295
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300296static int caam_remove(struct platform_device *pdev)
297{
298 struct device *ctrldev;
299 struct caam_drv_private *ctrlpriv;
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530300 struct caam_ctrl __iomem *ctrl;
Fabio Estevame5580172015-08-12 14:39:38 -0300301 int ring;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300302
303 ctrldev = &pdev->dev;
304 ctrlpriv = dev_get_drvdata(ctrldev);
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530305 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300306
Ruchika Gupta313ea292013-10-25 12:01:01 +0530307 /* Remove platform devices for JobRs */
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300308 for (ring = 0; ring < ctrlpriv->total_jobrs; ring++) {
Ruchika Gupta313ea292013-10-25 12:01:01 +0530309 if (ctrlpriv->jrpdev[ring])
310 of_device_unregister(ctrlpriv->jrpdev[ring]);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300311 }
312
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300313 /* De-initialize RNG state handles initialized by this driver. */
314 if (ctrlpriv->rng4_sh_init)
315 deinstantiate_rng(ctrldev, ctrlpriv->rng4_sh_init);
Alex Porosanub1f996e02013-09-09 18:56:32 +0300316
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300317 /* Shut down debug views */
318#ifdef CONFIG_DEBUG_FS
319 debugfs_remove_recursive(ctrlpriv->dfs_root);
320#endif
321
322 /* Unmap controller region */
Victoria Milhoanf4ec6aa2015-06-15 16:52:58 -0700323 iounmap(ctrl);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300324
Victoria Milhoan24821c42015-08-05 11:28:37 -0700325 /* shut clocks off before finalizing shutdown */
326 clk_disable_unprepare(ctrlpriv->caam_ipg);
327 clk_disable_unprepare(ctrlpriv->caam_mem);
328 clk_disable_unprepare(ctrlpriv->caam_aclk);
329 clk_disable_unprepare(ctrlpriv->caam_emi_slow);
330
Fabio Estevame5580172015-08-12 14:39:38 -0300331 return 0;
Kim Phillips281922a2012-06-22 19:48:52 -0500332}
333
334/*
Alex Porosanu84cf4822013-09-09 18:56:30 +0300335 * kick_trng - sets the various parameters for enabling the initialization
336 * of the RNG4 block in CAAM
337 * @pdev - pointer to the platform device
338 * @ent_delay - Defines the length (in system clocks) of each entropy sample.
Kim Phillips281922a2012-06-22 19:48:52 -0500339 */
Alex Porosanu84cf4822013-09-09 18:56:30 +0300340static void kick_trng(struct platform_device *pdev, int ent_delay)
Kim Phillips281922a2012-06-22 19:48:52 -0500341{
342 struct device *ctrldev = &pdev->dev;
343 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530344 struct caam_ctrl __iomem *ctrl;
Kim Phillips281922a2012-06-22 19:48:52 -0500345 struct rng4tst __iomem *r4tst;
346 u32 val;
347
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530348 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
349 r4tst = &ctrl->r4tst[0];
Kim Phillips281922a2012-06-22 19:48:52 -0500350
351 /* put RNG4 into program mode */
352 setbits32(&r4tst->rtmctl, RTMCTL_PRGM);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300353
354 /*
355 * Performance-wise, it does not make sense to
356 * set the delay to a value that is lower
357 * than the last one that worked (i.e. the state handles
358 * were instantiated properly. Thus, instead of wasting
359 * time trying to set the values controlling the sample
360 * frequency, the function simply returns.
361 */
362 val = (rd_reg32(&r4tst->rtsdctl) & RTSDCTL_ENT_DLY_MASK)
363 >> RTSDCTL_ENT_DLY_SHIFT;
364 if (ent_delay <= val) {
365 /* put RNG4 into run mode */
366 clrbits32(&r4tst->rtmctl, RTMCTL_PRGM);
367 return;
368 }
369
Kim Phillips281922a2012-06-22 19:48:52 -0500370 val = rd_reg32(&r4tst->rtsdctl);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300371 val = (val & ~RTSDCTL_ENT_DLY_MASK) |
372 (ent_delay << RTSDCTL_ENT_DLY_SHIFT);
Kim Phillips281922a2012-06-22 19:48:52 -0500373 wr_reg32(&r4tst->rtsdctl, val);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300374 /* min. freq. count, equal to 1/4 of the entropy sample length */
375 wr_reg32(&r4tst->rtfrqmin, ent_delay >> 2);
Alex Porosanub061f3f2014-08-11 11:40:15 +0300376 /* disable maximum frequency count */
377 wr_reg32(&r4tst->rtfrqmax, RTFRQMAX_DISABLE);
Alex Porosanue5ffbfc2014-08-11 11:40:17 +0300378 /* read the control register */
379 val = rd_reg32(&r4tst->rtmctl);
380 /*
381 * select raw sampling in both entropy shifter
382 * and statistical checker
383 */
384 setbits32(&val, RTMCTL_SAMP_MODE_RAW_ES_SC);
Kim Phillips281922a2012-06-22 19:48:52 -0500385 /* put RNG4 into run mode */
Alex Porosanue5ffbfc2014-08-11 11:40:17 +0300386 clrbits32(&val, RTMCTL_PRGM);
387 /* write back the control register */
388 wr_reg32(&r4tst->rtmctl, val);
Kim Phillips281922a2012-06-22 19:48:52 -0500389}
390
Alex Porosanu82c2f962012-07-11 11:06:11 +0800391/**
392 * caam_get_era() - Return the ERA of the SEC on SoC, based
Alex Porosanu883619a2014-02-06 10:27:19 +0200393 * on "sec-era" propery in the DTS. This property is updated by u-boot.
Alex Porosanu82c2f962012-07-11 11:06:11 +0800394 **/
Alex Porosanu883619a2014-02-06 10:27:19 +0200395int caam_get_era(void)
Alex Porosanu82c2f962012-07-11 11:06:11 +0800396{
Alex Porosanu883619a2014-02-06 10:27:19 +0200397 struct device_node *caam_node;
Alex Porosanue27513e2015-07-17 16:54:51 +0300398 int ret;
399 u32 prop;
Alex Porosanu82c2f962012-07-11 11:06:11 +0800400
Alex Porosanue27513e2015-07-17 16:54:51 +0300401 caam_node = of_find_compatible_node(NULL, NULL, "fsl,sec-v4.0");
402 ret = of_property_read_u32(caam_node, "fsl,sec-era", &prop);
403 of_node_put(caam_node);
404
405 return IS_ERR_VALUE(ret) ? -ENOTSUPP : prop;
Alex Porosanu82c2f962012-07-11 11:06:11 +0800406}
407EXPORT_SYMBOL(caam_get_era);
408
Kim Phillips8e8ec592011-03-13 16:54:26 +0800409/* Probe routine for CAAM top (controller) level */
Kim Phillips2930d492011-05-14 22:07:55 -0500410static int caam_probe(struct platform_device *pdev)
Kim Phillips8e8ec592011-03-13 16:54:26 +0800411{
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300412 int ret, ring, rspec, gen_sk, ent_delay = RTSDCTL_ENT_DLY_MIN;
Alex Porosanu82c2f962012-07-11 11:06:11 +0800413 u64 caam_id;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800414 struct device *dev;
415 struct device_node *nprop, *np;
416 struct caam_ctrl __iomem *ctrl;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800417 struct caam_drv_private *ctrlpriv;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700418 struct clk *clk;
Kim Phillips23457bc2011-06-05 16:42:54 -0500419#ifdef CONFIG_DEBUG_FS
420 struct caam_perfmon *perfmon;
421#endif
Ruchika Gupta17157c92014-06-23 17:42:33 +0530422 u32 scfgr, comp_params;
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530423 u32 cha_vid_ls;
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530424 int pg_size;
425 int BLOCK_OFFSET = 0;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800426
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300427 ctrlpriv = devm_kzalloc(&pdev->dev, sizeof(*ctrlpriv), GFP_KERNEL);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800428 if (!ctrlpriv)
429 return -ENOMEM;
430
431 dev = &pdev->dev;
432 dev_set_drvdata(dev, ctrlpriv);
433 ctrlpriv->pdev = pdev;
434 nprop = pdev->dev.of_node;
435
Victoria Milhoan24821c42015-08-05 11:28:37 -0700436 /* Enable clocking */
437 clk = caam_drv_identify_clk(&pdev->dev, "ipg");
438 if (IS_ERR(clk)) {
439 ret = PTR_ERR(clk);
440 dev_err(&pdev->dev,
441 "can't identify CAAM ipg clk: %d\n", ret);
Fabio Estevama3c09552015-08-21 13:51:59 -0300442 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700443 }
444 ctrlpriv->caam_ipg = clk;
445
446 clk = caam_drv_identify_clk(&pdev->dev, "mem");
447 if (IS_ERR(clk)) {
448 ret = PTR_ERR(clk);
449 dev_err(&pdev->dev,
450 "can't identify CAAM mem clk: %d\n", ret);
Fabio Estevama3c09552015-08-21 13:51:59 -0300451 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700452 }
453 ctrlpriv->caam_mem = clk;
454
455 clk = caam_drv_identify_clk(&pdev->dev, "aclk");
456 if (IS_ERR(clk)) {
457 ret = PTR_ERR(clk);
458 dev_err(&pdev->dev,
459 "can't identify CAAM aclk clk: %d\n", ret);
Fabio Estevama3c09552015-08-21 13:51:59 -0300460 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700461 }
462 ctrlpriv->caam_aclk = clk;
463
464 clk = caam_drv_identify_clk(&pdev->dev, "emi_slow");
465 if (IS_ERR(clk)) {
466 ret = PTR_ERR(clk);
467 dev_err(&pdev->dev,
468 "can't identify CAAM emi_slow clk: %d\n", ret);
Fabio Estevama3c09552015-08-21 13:51:59 -0300469 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700470 }
471 ctrlpriv->caam_emi_slow = clk;
472
473 ret = clk_prepare_enable(ctrlpriv->caam_ipg);
474 if (ret < 0) {
475 dev_err(&pdev->dev, "can't enable CAAM ipg clock: %d\n", ret);
Fabio Estevam31f44d12015-08-21 13:51:58 -0300476 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700477 }
478
479 ret = clk_prepare_enable(ctrlpriv->caam_mem);
480 if (ret < 0) {
481 dev_err(&pdev->dev, "can't enable CAAM secure mem clock: %d\n",
482 ret);
Fabio Estevam31f44d12015-08-21 13:51:58 -0300483 goto disable_caam_ipg;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700484 }
485
486 ret = clk_prepare_enable(ctrlpriv->caam_aclk);
487 if (ret < 0) {
488 dev_err(&pdev->dev, "can't enable CAAM aclk clock: %d\n", ret);
Fabio Estevam31f44d12015-08-21 13:51:58 -0300489 goto disable_caam_mem;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700490 }
491
492 ret = clk_prepare_enable(ctrlpriv->caam_emi_slow);
493 if (ret < 0) {
494 dev_err(&pdev->dev, "can't enable CAAM emi slow clock: %d\n",
495 ret);
Fabio Estevam31f44d12015-08-21 13:51:58 -0300496 goto disable_caam_aclk;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700497 }
498
Kim Phillips8e8ec592011-03-13 16:54:26 +0800499 /* Get configuration properties from device tree */
500 /* First, get register page */
501 ctrl = of_iomap(nprop, 0);
502 if (ctrl == NULL) {
503 dev_err(dev, "caam: of_iomap() failed\n");
Fabio Estevam31f44d12015-08-21 13:51:58 -0300504 ret = -ENOMEM;
505 goto disable_caam_emi_slow;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800506 }
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530507 /* Finding the page size for using the CTPR_MS register */
508 comp_params = rd_reg32(&ctrl->perfmon.comp_parms_ms);
509 pg_size = (comp_params & CTPR_MS_PG_SZ_MASK) >> CTPR_MS_PG_SZ_SHIFT;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800510
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530511 /* Allocating the BLOCK_OFFSET based on the supported page size on
512 * the platform
513 */
514 if (pg_size == 0)
515 BLOCK_OFFSET = PG_SIZE_4K;
516 else
517 BLOCK_OFFSET = PG_SIZE_64K;
518
519 ctrlpriv->ctrl = (struct caam_ctrl __force *)ctrl;
520 ctrlpriv->assure = (struct caam_assurance __force *)
521 ((uint8_t *)ctrl +
522 BLOCK_OFFSET * ASSURE_BLOCK_NUMBER
523 );
524 ctrlpriv->deco = (struct caam_deco __force *)
525 ((uint8_t *)ctrl +
526 BLOCK_OFFSET * DECO_BLOCK_NUMBER
527 );
Kim Phillips8e8ec592011-03-13 16:54:26 +0800528
529 /* Get the IRQ of the controller (for security violations only) */
Thierry Redingf7578492013-09-18 15:24:44 +0200530 ctrlpriv->secvio_irq = irq_of_parse_and_map(nprop, 0);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800531
532 /*
533 * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel,
Kim Phillipse13af182012-06-22 19:48:51 -0500534 * long pointers in master configuration register
Kim Phillips8e8ec592011-03-13 16:54:26 +0800535 */
Victoria Milhoan509da8f2015-08-05 11:28:36 -0700536 clrsetbits_32(&ctrl->mcr, MCFGR_AWCACHE_MASK, MCFGR_AWCACHE_CACH |
Horia Geant?624144a2016-01-12 17:14:10 +0200537 MCFGR_AWCACHE_BUFF | MCFGR_WDENABLE | MCFGR_LARGE_BURST |
Horia Geant?e7a71042016-01-12 17:59:29 +0200538 (sizeof(dma_addr_t) == sizeof(u64) ? MCFGR_LONG_PTR : 0));
Kim Phillips8e8ec592011-03-13 16:54:26 +0800539
Ruchika Gupta17157c92014-06-23 17:42:33 +0530540 /*
541 * Read the Compile Time paramters and SCFGR to determine
542 * if Virtualization is enabled for this platform
543 */
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530544 scfgr = rd_reg32(&ctrl->scfgr);
Ruchika Gupta17157c92014-06-23 17:42:33 +0530545
546 ctrlpriv->virt_en = 0;
547 if (comp_params & CTPR_MS_VIRT_EN_INCL) {
548 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or
549 * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SCFGR_VIRT_EN = 1
550 */
551 if ((comp_params & CTPR_MS_VIRT_EN_POR) ||
552 (!(comp_params & CTPR_MS_VIRT_EN_POR) &&
553 (scfgr & SCFGR_VIRT_EN)))
554 ctrlpriv->virt_en = 1;
555 } else {
556 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */
557 if (comp_params & CTPR_MS_VIRT_EN_POR)
558 ctrlpriv->virt_en = 1;
559 }
560
561 if (ctrlpriv->virt_en == 1)
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530562 setbits32(&ctrl->jrstart, JRSTART_JR0_START |
Ruchika Gupta17157c92014-06-23 17:42:33 +0530563 JRSTART_JR1_START | JRSTART_JR2_START |
564 JRSTART_JR3_START);
565
Kim Phillips8e8ec592011-03-13 16:54:26 +0800566 if (sizeof(dma_addr_t) == sizeof(u64))
Kim Phillipse13af182012-06-22 19:48:51 -0500567 if (of_device_is_compatible(nprop, "fsl,sec-v5.0"))
Horia Geantaa2ac2872014-07-11 15:34:47 +0300568 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(40));
Kim Phillipse13af182012-06-22 19:48:51 -0500569 else
Horia Geantaa2ac2872014-07-11 15:34:47 +0300570 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(36));
Kim Phillipse13af182012-06-22 19:48:51 -0500571 else
Horia Geantaa2ac2872014-07-11 15:34:47 +0300572 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
Kim Phillips8e8ec592011-03-13 16:54:26 +0800573
Kim Phillips8e8ec592011-03-13 16:54:26 +0800574 /*
575 * Detect and enable JobRs
576 * First, find out how many ring spec'ed, allocate references
577 * for all, then go probe each one.
578 */
579 rspec = 0;
Nitesh Lal0a63b092014-02-09 09:59:13 +0800580 for_each_available_child_of_node(nprop, np)
581 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
582 of_device_is_compatible(np, "fsl,sec4.0-job-ring"))
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800583 rspec++;
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800584
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300585 ctrlpriv->jrpdev = devm_kcalloc(&pdev->dev, rspec,
586 sizeof(*ctrlpriv->jrpdev), GFP_KERNEL);
Ruchika Gupta313ea292013-10-25 12:01:01 +0530587 if (ctrlpriv->jrpdev == NULL) {
Fabio Estevam31f44d12015-08-21 13:51:58 -0300588 ret = -ENOMEM;
589 goto iounmap_ctrl;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800590 }
591
592 ring = 0;
593 ctrlpriv->total_jobrs = 0;
Nitesh Lal0a63b092014-02-09 09:59:13 +0800594 for_each_available_child_of_node(nprop, np)
595 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
596 of_device_is_compatible(np, "fsl,sec4.0-job-ring")) {
Ruchika Gupta313ea292013-10-25 12:01:01 +0530597 ctrlpriv->jrpdev[ring] =
598 of_platform_device_create(np, NULL, dev);
599 if (!ctrlpriv->jrpdev[ring]) {
600 pr_warn("JR%d Platform device creation error\n",
601 ring);
602 continue;
603 }
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530604 ctrlpriv->jr[ring] = (struct caam_job_ring __force *)
605 ((uint8_t *)ctrl +
606 (ring + JR_BLOCK_NUMBER) *
607 BLOCK_OFFSET
608 );
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800609 ctrlpriv->total_jobrs++;
610 ring++;
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530611 }
Kim Phillips8e8ec592011-03-13 16:54:26 +0800612
613 /* Check to see if QI present. If so, enable */
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530614 ctrlpriv->qi_present =
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530615 !!(rd_reg32(&ctrl->perfmon.comp_parms_ms) &
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530616 CTPR_MS_QI_MASK);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800617 if (ctrlpriv->qi_present) {
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530618 ctrlpriv->qi = (struct caam_queue_if __force *)
619 ((uint8_t *)ctrl +
620 BLOCK_OFFSET * QI_BLOCK_NUMBER
621 );
Kim Phillips8e8ec592011-03-13 16:54:26 +0800622 /* This is all that's required to physically enable QI */
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530623 wr_reg32(&ctrlpriv->qi->qi_control_lo, QICTL_DQEN);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800624 }
625
626 /* If no QI and no rings specified, quit and go home */
627 if ((!ctrlpriv->qi_present) && (!ctrlpriv->total_jobrs)) {
628 dev_err(dev, "no queues configured, terminating\n");
Fabio Estevam31f44d12015-08-21 13:51:58 -0300629 ret = -ENOMEM;
630 goto caam_remove;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800631 }
632
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530633 cha_vid_ls = rd_reg32(&ctrl->perfmon.cha_id_ls);
Ruchika Gupta986dfbc2013-04-26 15:44:54 +0530634
Kim Phillips281922a2012-06-22 19:48:52 -0500635 /*
Ruchika Gupta986dfbc2013-04-26 15:44:54 +0530636 * If SEC has RNG version >= 4 and RNG state handle has not been
Alex Porosanu84cf4822013-09-09 18:56:30 +0300637 * already instantiated, do RNG instantiation
Kim Phillips281922a2012-06-22 19:48:52 -0500638 */
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530639 if ((cha_vid_ls & CHA_ID_LS_RNG_MASK) >> CHA_ID_LS_RNG_SHIFT >= 4) {
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300640 ctrlpriv->rng4_sh_init =
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530641 rd_reg32(&ctrl->r4tst[0].rdsta);
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300642 /*
643 * If the secure keys (TDKEK, JDKEK, TDSK), were already
644 * generated, signal this to the function that is instantiating
645 * the state handles. An error would occur if RNG4 attempts
646 * to regenerate these keys before the next POR.
647 */
648 gen_sk = ctrlpriv->rng4_sh_init & RDSTA_SKVN ? 0 : 1;
649 ctrlpriv->rng4_sh_init &= RDSTA_IFMASK;
Alex Porosanu84cf4822013-09-09 18:56:30 +0300650 do {
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300651 int inst_handles =
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530652 rd_reg32(&ctrl->r4tst[0].rdsta) &
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300653 RDSTA_IFMASK;
654 /*
655 * If either SH were instantiated by somebody else
656 * (e.g. u-boot) then it is assumed that the entropy
657 * parameters are properly set and thus the function
658 * setting these (kick_trng(...)) is skipped.
659 * Also, if a handle was instantiated, do not change
660 * the TRNG parameters.
661 */
662 if (!(ctrlpriv->rng4_sh_init || inst_handles)) {
Alex Porosanueeaa1722014-08-11 11:40:16 +0300663 dev_info(dev,
664 "Entropy delay = %u\n",
665 ent_delay);
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300666 kick_trng(pdev, ent_delay);
667 ent_delay += 400;
668 }
669 /*
670 * if instantiate_rng(...) fails, the loop will rerun
671 * and the kick_trng(...) function will modfiy the
672 * upper and lower limits of the entropy sampling
673 * interval, leading to a sucessful initialization of
674 * the RNG.
675 */
676 ret = instantiate_rng(dev, inst_handles,
677 gen_sk);
Alex Porosanueeaa1722014-08-11 11:40:16 +0300678 if (ret == -EAGAIN)
679 /*
680 * if here, the loop will rerun,
681 * so don't hog the CPU
682 */
683 cpu_relax();
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300684 } while ((ret == -EAGAIN) && (ent_delay < RTSDCTL_ENT_DLY_MAX));
Kim Phillips281922a2012-06-22 19:48:52 -0500685 if (ret) {
Alex Porosanu84cf4822013-09-09 18:56:30 +0300686 dev_err(dev, "failed to instantiate RNG");
Fabio Estevam31f44d12015-08-21 13:51:58 -0300687 goto caam_remove;
Kim Phillips281922a2012-06-22 19:48:52 -0500688 }
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300689 /*
690 * Set handles init'ed by this module as the complement of the
691 * already initialized ones
692 */
693 ctrlpriv->rng4_sh_init = ~ctrlpriv->rng4_sh_init & RDSTA_IFMASK;
Vakul Garg575c1bd2013-03-12 13:55:21 +0530694
695 /* Enable RDB bit so that RNG works faster */
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530696 setbits32(&ctrl->scfgr, SCFGR_RDBENABLE);
Kim Phillips281922a2012-06-22 19:48:52 -0500697 }
698
Kim Phillips8e8ec592011-03-13 16:54:26 +0800699 /* NOTE: RTIC detection ought to go here, around Si time */
700
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530701 caam_id = (u64)rd_reg32(&ctrl->perfmon.caam_id_ms) << 32 |
702 (u64)rd_reg32(&ctrl->perfmon.caam_id_ls);
Alex Porosanu82c2f962012-07-11 11:06:11 +0800703
Kim Phillips8e8ec592011-03-13 16:54:26 +0800704 /* Report "alive" for developer to see */
Alex Porosanu82c2f962012-07-11 11:06:11 +0800705 dev_info(dev, "device ID = 0x%016llx (Era %d)\n", caam_id,
Alex Porosanu883619a2014-02-06 10:27:19 +0200706 caam_get_era());
Kim Phillips8e8ec592011-03-13 16:54:26 +0800707 dev_info(dev, "job rings = %d, qi = %d\n",
708 ctrlpriv->total_jobrs, ctrlpriv->qi_present);
709
710#ifdef CONFIG_DEBUG_FS
711 /*
712 * FIXME: needs better naming distinction, as some amalgamation of
713 * "caam" and nprop->full_name. The OF name isn't distinctive,
714 * but does separate instances
715 */
716 perfmon = (struct caam_perfmon __force *)&ctrl->perfmon;
717
Nitesh Narayan Lal178f8272014-07-01 19:54:54 +0530718 ctrlpriv->dfs_root = debugfs_create_dir(dev_name(dev), NULL);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800719 ctrlpriv->ctl = debugfs_create_dir("ctl", ctrlpriv->dfs_root);
720
721 /* Controller-level - performance monitor counters */
722 ctrlpriv->ctl_rq_dequeued =
723 debugfs_create_u64("rq_dequeued",
Al Viroeda65cc2011-07-24 04:32:53 -0400724 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800725 ctrlpriv->ctl, &perfmon->req_dequeued);
726 ctrlpriv->ctl_ob_enc_req =
727 debugfs_create_u64("ob_rq_encrypted",
Al Viroeda65cc2011-07-24 04:32:53 -0400728 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800729 ctrlpriv->ctl, &perfmon->ob_enc_req);
730 ctrlpriv->ctl_ib_dec_req =
731 debugfs_create_u64("ib_rq_decrypted",
Al Viroeda65cc2011-07-24 04:32:53 -0400732 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800733 ctrlpriv->ctl, &perfmon->ib_dec_req);
734 ctrlpriv->ctl_ob_enc_bytes =
735 debugfs_create_u64("ob_bytes_encrypted",
Al Viroeda65cc2011-07-24 04:32:53 -0400736 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800737 ctrlpriv->ctl, &perfmon->ob_enc_bytes);
738 ctrlpriv->ctl_ob_prot_bytes =
739 debugfs_create_u64("ob_bytes_protected",
Al Viroeda65cc2011-07-24 04:32:53 -0400740 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800741 ctrlpriv->ctl, &perfmon->ob_prot_bytes);
742 ctrlpriv->ctl_ib_dec_bytes =
743 debugfs_create_u64("ib_bytes_decrypted",
Al Viroeda65cc2011-07-24 04:32:53 -0400744 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800745 ctrlpriv->ctl, &perfmon->ib_dec_bytes);
746 ctrlpriv->ctl_ib_valid_bytes =
747 debugfs_create_u64("ib_bytes_validated",
Al Viroeda65cc2011-07-24 04:32:53 -0400748 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800749 ctrlpriv->ctl, &perfmon->ib_valid_bytes);
750
751 /* Controller level - global status values */
752 ctrlpriv->ctl_faultaddr =
753 debugfs_create_u64("fault_addr",
Al Viroeda65cc2011-07-24 04:32:53 -0400754 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800755 ctrlpriv->ctl, &perfmon->faultaddr);
756 ctrlpriv->ctl_faultdetail =
757 debugfs_create_u32("fault_detail",
Al Viroeda65cc2011-07-24 04:32:53 -0400758 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800759 ctrlpriv->ctl, &perfmon->faultdetail);
760 ctrlpriv->ctl_faultstatus =
761 debugfs_create_u32("fault_status",
Al Viroeda65cc2011-07-24 04:32:53 -0400762 S_IRUSR | S_IRGRP | S_IROTH,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800763 ctrlpriv->ctl, &perfmon->status);
764
765 /* Internal covering keys (useful in non-secure mode only) */
766 ctrlpriv->ctl_kek_wrap.data = &ctrlpriv->ctrl->kek[0];
767 ctrlpriv->ctl_kek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
768 ctrlpriv->ctl_kek = debugfs_create_blob("kek",
Al Viroeda65cc2011-07-24 04:32:53 -0400769 S_IRUSR |
Kim Phillips8e8ec592011-03-13 16:54:26 +0800770 S_IRGRP | S_IROTH,
771 ctrlpriv->ctl,
772 &ctrlpriv->ctl_kek_wrap);
773
774 ctrlpriv->ctl_tkek_wrap.data = &ctrlpriv->ctrl->tkek[0];
775 ctrlpriv->ctl_tkek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
776 ctrlpriv->ctl_tkek = debugfs_create_blob("tkek",
Al Viroeda65cc2011-07-24 04:32:53 -0400777 S_IRUSR |
Kim Phillips8e8ec592011-03-13 16:54:26 +0800778 S_IRGRP | S_IROTH,
779 ctrlpriv->ctl,
780 &ctrlpriv->ctl_tkek_wrap);
781
782 ctrlpriv->ctl_tdsk_wrap.data = &ctrlpriv->ctrl->tdsk[0];
783 ctrlpriv->ctl_tdsk_wrap.size = KEK_KEY_SIZE * sizeof(u32);
784 ctrlpriv->ctl_tdsk = debugfs_create_blob("tdsk",
Al Viroeda65cc2011-07-24 04:32:53 -0400785 S_IRUSR |
Kim Phillips8e8ec592011-03-13 16:54:26 +0800786 S_IRGRP | S_IROTH,
787 ctrlpriv->ctl,
788 &ctrlpriv->ctl_tdsk_wrap);
789#endif
790 return 0;
Fabio Estevam31f44d12015-08-21 13:51:58 -0300791
792caam_remove:
793 caam_remove(pdev);
794iounmap_ctrl:
795 iounmap(ctrl);
796disable_caam_emi_slow:
797 clk_disable_unprepare(ctrlpriv->caam_emi_slow);
798disable_caam_aclk:
799 clk_disable_unprepare(ctrlpriv->caam_aclk);
800disable_caam_mem:
801 clk_disable_unprepare(ctrlpriv->caam_mem);
802disable_caam_ipg:
803 clk_disable_unprepare(ctrlpriv->caam_ipg);
804 return ret;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800805}
806
807static struct of_device_id caam_match[] = {
808 {
Kim Phillips54e198d2011-03-23 21:15:44 +0800809 .compatible = "fsl,sec-v4.0",
Kim Phillips8e8ec592011-03-13 16:54:26 +0800810 },
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800811 {
812 .compatible = "fsl,sec4.0",
813 },
Kim Phillips8e8ec592011-03-13 16:54:26 +0800814 {},
815};
816MODULE_DEVICE_TABLE(of, caam_match);
817
Kim Phillips2930d492011-05-14 22:07:55 -0500818static struct platform_driver caam_driver = {
Kim Phillips8e8ec592011-03-13 16:54:26 +0800819 .driver = {
820 .name = "caam",
Kim Phillips8e8ec592011-03-13 16:54:26 +0800821 .of_match_table = caam_match,
822 },
823 .probe = caam_probe,
Greg Kroah-Hartman49cfe4d2012-12-21 13:14:09 -0800824 .remove = caam_remove,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800825};
826
Axel Lin741e8c22011-11-26 21:26:19 +0800827module_platform_driver(caam_driver);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800828
829MODULE_LICENSE("GPL");
830MODULE_DESCRIPTION("FSL CAAM request backend");
831MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");