blob: a79937d68c26ddf6212fe5f3eda71dd5b0cda743 [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"
Baoyou Xie1ac6b732016-08-26 17:56:24 +080017#include "ctrl.h"
Kim Phillips8e8ec592011-03-13 16:54:26 +080018
Horia Geantă261ea052016-05-19 18:11:26 +030019bool caam_little_end;
20EXPORT_SYMBOL(caam_little_end);
21
Kim Phillips281922a2012-06-22 19:48:52 -050022/*
Horia Geant?6c3af952015-08-17 15:24:10 +030023 * i.MX targets tend to have clock control subsystems that can
Victoria Milhoan24821c42015-08-05 11:28:37 -070024 * enable/disable clocking to our device.
25 */
Horia Geant?6c3af952015-08-17 15:24:10 +030026#ifdef CONFIG_CRYPTO_DEV_FSL_CAAM_IMX
Victoria Milhoan24821c42015-08-05 11:28:37 -070027static inline struct clk *caam_drv_identify_clk(struct device *dev,
28 char *clk_name)
29{
30 return devm_clk_get(dev, clk_name);
31}
32#else
33static inline struct clk *caam_drv_identify_clk(struct device *dev,
34 char *clk_name)
35{
36 return NULL;
37}
38#endif
39
40/*
Kim Phillips281922a2012-06-22 19:48:52 -050041 * Descriptor to instantiate RNG State Handle 0 in normal mode and
42 * load the JDKEK, TDKEK and TDSK registers
43 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030044static void build_instantiation_desc(u32 *desc, int handle, int do_sk)
Kim Phillips281922a2012-06-22 19:48:52 -050045{
Alex Porosanu1005bcc2013-09-09 18:56:34 +030046 u32 *jump_cmd, op_flags;
Kim Phillips281922a2012-06-22 19:48:52 -050047
48 init_job_desc(desc, 0);
49
Alex Porosanu1005bcc2013-09-09 18:56:34 +030050 op_flags = OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
51 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INIT;
52
Kim Phillips281922a2012-06-22 19:48:52 -050053 /* INIT RNG in non-test mode */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030054 append_operation(desc, op_flags);
Kim Phillips281922a2012-06-22 19:48:52 -050055
Alex Porosanu1005bcc2013-09-09 18:56:34 +030056 if (!handle && do_sk) {
57 /*
58 * For SH0, Secure Keys must be generated as well
59 */
Kim Phillips281922a2012-06-22 19:48:52 -050060
Alex Porosanu1005bcc2013-09-09 18:56:34 +030061 /* wait for done */
62 jump_cmd = append_jump(desc, JUMP_CLASS_CLASS1);
63 set_jump_tgt_here(desc, jump_cmd);
Kim Phillips281922a2012-06-22 19:48:52 -050064
Alex Porosanu1005bcc2013-09-09 18:56:34 +030065 /*
66 * load 1 to clear written reg:
67 * resets the done interrrupt and returns the RNG to idle.
68 */
69 append_load_imm_u32(desc, 1, LDST_SRCDST_WORD_CLRW);
70
71 /* Initialize State Handle */
72 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
73 OP_ALG_AAI_RNG4_SK);
74 }
Alex Porosanud5e4e992013-09-09 18:56:28 +030075
76 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
Kim Phillips281922a2012-06-22 19:48:52 -050077}
78
Alex Porosanub1f996e02013-09-09 18:56:32 +030079/* Descriptor for deinstantiation of State Handle 0 of the RNG block. */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030080static void build_deinstantiation_desc(u32 *desc, int handle)
Alex Porosanub1f996e02013-09-09 18:56:32 +030081{
82 init_job_desc(desc, 0);
83
84 /* Uninstantiate State Handle 0 */
85 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
Alex Porosanu1005bcc2013-09-09 18:56:34 +030086 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INITFINAL);
Alex Porosanub1f996e02013-09-09 18:56:32 +030087
88 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
89}
Alex Porosanu04cddbf2013-09-09 18:56:31 +030090
91/*
92 * run_descriptor_deco0 - runs a descriptor on DECO0, under direct control of
93 * the software (no JR/QI used).
94 * @ctrldev - pointer to device
Alex Porosanu1005bcc2013-09-09 18:56:34 +030095 * @status - descriptor status, after being run
96 *
Alex Porosanu04cddbf2013-09-09 18:56:31 +030097 * Return: - 0 if no error occurred
98 * - -ENODEV if the DECO couldn't be acquired
99 * - -EAGAIN if an error occurred while executing the descriptor
100 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300101static inline int run_descriptor_deco0(struct device *ctrldev, u32 *desc,
102 u32 *status)
Kim Phillips281922a2012-06-22 19:48:52 -0500103{
Ruchika Gupta997ad292013-07-04 11:26:03 +0530104 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530105 struct caam_ctrl __iomem *ctrl = ctrlpriv->ctrl;
106 struct caam_deco __iomem *deco = ctrlpriv->deco;
Ruchika Gupta997ad292013-07-04 11:26:03 +0530107 unsigned int timeout = 100000;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300108 u32 deco_dbg_reg, flags;
Alex Porosanub1f996e02013-09-09 18:56:32 +0300109 int i;
Ruchika Gupta997ad292013-07-04 11:26:03 +0530110
Ruchika Gupta17157c92014-06-23 17:42:33 +0530111
Horia Geanta8f1da7b2014-07-21 16:03:21 +0300112 if (ctrlpriv->virt_en == 1) {
Horia Geantă261ea052016-05-19 18:11:26 +0300113 clrsetbits_32(&ctrl->deco_rsr, 0, DECORSR_JR0);
Ruchika Gupta17157c92014-06-23 17:42:33 +0530114
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530115 while (!(rd_reg32(&ctrl->deco_rsr) & DECORSR_VALID) &&
Horia Geanta8f1da7b2014-07-21 16:03:21 +0300116 --timeout)
117 cpu_relax();
118
119 timeout = 100000;
120 }
Ruchika Gupta17157c92014-06-23 17:42:33 +0530121
Horia Geantă261ea052016-05-19 18:11:26 +0300122 clrsetbits_32(&ctrl->deco_rq, 0, DECORR_RQD0ENABLE);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530123
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530124 while (!(rd_reg32(&ctrl->deco_rq) & DECORR_DEN0) &&
Ruchika Gupta997ad292013-07-04 11:26:03 +0530125 --timeout)
126 cpu_relax();
127
128 if (!timeout) {
129 dev_err(ctrldev, "failed to acquire DECO 0\n");
Horia Geantă261ea052016-05-19 18:11:26 +0300130 clrsetbits_32(&ctrl->deco_rq, DECORR_RQD0ENABLE, 0);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300131 return -ENODEV;
Kim Phillips281922a2012-06-22 19:48:52 -0500132 }
133
Ruchika Gupta997ad292013-07-04 11:26:03 +0530134 for (i = 0; i < desc_len(desc); i++)
Horia Geantă261ea052016-05-19 18:11:26 +0300135 wr_reg32(&deco->descbuf[i], caam32_to_cpu(*(desc + i)));
Kim Phillips281922a2012-06-22 19:48:52 -0500136
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300137 flags = DECO_JQCR_WHL;
138 /*
139 * If the descriptor length is longer than 4 words, then the
140 * FOUR bit in JRCTRL register must be set.
141 */
142 if (desc_len(desc) >= 4)
143 flags |= DECO_JQCR_FOUR;
144
145 /* Instruct the DECO to execute it */
Horia Geantă261ea052016-05-19 18:11:26 +0300146 clrsetbits_32(&deco->jr_ctl_hi, 0, flags);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530147
148 timeout = 10000000;
Alex Porosanu84cf4822013-09-09 18:56:30 +0300149 do {
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530150 deco_dbg_reg = rd_reg32(&deco->desc_dbg);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300151 /*
152 * If an error occured in the descriptor, then
153 * the DECO status field will be set to 0x0D
154 */
155 if ((deco_dbg_reg & DESC_DBG_DECO_STAT_MASK) ==
156 DESC_DBG_DECO_STAT_HOST_ERR)
157 break;
Ruchika Gupta997ad292013-07-04 11:26:03 +0530158 cpu_relax();
Alex Porosanu84cf4822013-09-09 18:56:30 +0300159 } while ((deco_dbg_reg & DESC_DBG_DECO_STAT_VALID) && --timeout);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530160
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530161 *status = rd_reg32(&deco->op_status_hi) &
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300162 DECO_OP_STATUS_HI_ERR_MASK;
163
Ruchika Gupta17157c92014-06-23 17:42:33 +0530164 if (ctrlpriv->virt_en == 1)
Horia Geantă261ea052016-05-19 18:11:26 +0300165 clrsetbits_32(&ctrl->deco_rsr, DECORSR_JR0, 0);
Ruchika Gupta17157c92014-06-23 17:42:33 +0530166
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300167 /* Mark the DECO as free */
Horia Geantă261ea052016-05-19 18:11:26 +0300168 clrsetbits_32(&ctrl->deco_rq, DECORR_RQD0ENABLE, 0);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300169
170 if (!timeout)
171 return -EAGAIN;
172
173 return 0;
174}
175
176/*
177 * instantiate_rng - builds and executes a descriptor on DECO0,
178 * which initializes the RNG block.
179 * @ctrldev - pointer to device
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300180 * @state_handle_mask - bitmask containing the instantiation status
181 * for the RNG4 state handles which exist in
182 * the RNG4 block: 1 if it's been instantiated
183 * by an external entry, 0 otherwise.
184 * @gen_sk - generate data to be loaded into the JDKEK, TDKEK and TDSK;
185 * Caution: this can be done only once; if the keys need to be
186 * regenerated, a POR is required
187 *
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300188 * Return: - 0 if no error occurred
189 * - -ENOMEM if there isn't enough memory to allocate the descriptor
190 * - -ENODEV if DECO0 couldn't be acquired
191 * - -EAGAIN if an error occurred when executing the descriptor
192 * f.i. there was a RNG hardware error due to not "good enough"
193 * entropy being aquired.
194 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300195static int instantiate_rng(struct device *ctrldev, int state_handle_mask,
196 int gen_sk)
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300197{
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300198 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530199 struct caam_ctrl __iomem *ctrl;
Horia Geant?62743a42015-07-17 16:54:53 +0300200 u32 *desc, status = 0, rdsta_val;
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300201 int ret = 0, sh_idx;
202
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530203 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300204 desc = kmalloc(CAAM_CMD_SZ * 7, GFP_KERNEL);
205 if (!desc)
206 return -ENOMEM;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300207
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300208 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
209 /*
210 * If the corresponding bit is set, this state handle
211 * was initialized by somebody else, so it's left alone.
212 */
213 if ((1 << sh_idx) & state_handle_mask)
214 continue;
215
216 /* Create the descriptor for instantiating RNG State Handle */
217 build_instantiation_desc(desc, sh_idx, gen_sk);
218
219 /* Try to run it through DECO0 */
220 ret = run_descriptor_deco0(ctrldev, desc, &status);
221
222 /*
223 * If ret is not 0, or descriptor status is not 0, then
224 * something went wrong. No need to try the next state
225 * handle (if available), bail out here.
226 * Also, if for some reason, the State Handle didn't get
227 * instantiated although the descriptor has finished
228 * without any error (HW optimizations for later
229 * CAAM eras), then try again.
230 */
Cristian Stoica467707b2015-01-21 11:53:31 +0200231 rdsta_val = rd_reg32(&ctrl->r4tst[0].rdsta) & RDSTA_IFMASK;
Horia Geant?62743a42015-07-17 16:54:53 +0300232 if ((status && status != JRSTA_SSRC_JUMP_HALT_CC) ||
233 !(rdsta_val & (1 << sh_idx)))
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300234 ret = -EAGAIN;
235 if (ret)
236 break;
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300237 dev_info(ctrldev, "Instantiated RNG4 SH%d\n", sh_idx);
238 /* Clear the contents before recreating the descriptor */
239 memset(desc, 0x00, CAAM_CMD_SZ * 7);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530240 }
241
Kim Phillips281922a2012-06-22 19:48:52 -0500242 kfree(desc);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300243
Kim Phillips281922a2012-06-22 19:48:52 -0500244 return ret;
245}
246
247/*
Alex Porosanub1f996e02013-09-09 18:56:32 +0300248 * deinstantiate_rng - builds and executes a descriptor on DECO0,
249 * which deinitializes the RNG block.
250 * @ctrldev - pointer to device
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300251 * @state_handle_mask - bitmask containing the instantiation status
252 * for the RNG4 state handles which exist in
253 * the RNG4 block: 1 if it's been instantiated
Alex Porosanub1f996e02013-09-09 18:56:32 +0300254 *
255 * Return: - 0 if no error occurred
256 * - -ENOMEM if there isn't enough memory to allocate the descriptor
257 * - -ENODEV if DECO0 couldn't be acquired
258 * - -EAGAIN if an error occurred when executing the descriptor
Kim Phillips281922a2012-06-22 19:48:52 -0500259 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300260static int deinstantiate_rng(struct device *ctrldev, int state_handle_mask)
Alex Porosanub1f996e02013-09-09 18:56:32 +0300261{
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300262 u32 *desc, status;
263 int sh_idx, ret = 0;
Alex Porosanub1f996e02013-09-09 18:56:32 +0300264
265 desc = kmalloc(CAAM_CMD_SZ * 3, GFP_KERNEL);
266 if (!desc)
267 return -ENOMEM;
268
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300269 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
270 /*
271 * If the corresponding bit is set, then it means the state
272 * handle was initialized by us, and thus it needs to be
273 * deintialized as well
274 */
275 if ((1 << sh_idx) & state_handle_mask) {
276 /*
277 * Create the descriptor for deinstantating this state
278 * handle
279 */
280 build_deinstantiation_desc(desc, sh_idx);
Alex Porosanub1f996e02013-09-09 18:56:32 +0300281
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300282 /* Try to run it through DECO0 */
283 ret = run_descriptor_deco0(ctrldev, desc, &status);
Alex Porosanub1f996e02013-09-09 18:56:32 +0300284
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300285 if (ret || status) {
286 dev_err(ctrldev,
287 "Failed to deinstantiate RNG4 SH%d\n",
288 sh_idx);
289 break;
290 }
291 dev_info(ctrldev, "Deinstantiated RNG4 SH%d\n", sh_idx);
292 }
293 }
Alex Porosanub1f996e02013-09-09 18:56:32 +0300294
295 kfree(desc);
296
297 return ret;
298}
299
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300300static int caam_remove(struct platform_device *pdev)
301{
302 struct device *ctrldev;
303 struct caam_drv_private *ctrlpriv;
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530304 struct caam_ctrl __iomem *ctrl;
Fabio Estevame5580172015-08-12 14:39:38 -0300305 int ring;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300306
307 ctrldev = &pdev->dev;
308 ctrlpriv = dev_get_drvdata(ctrldev);
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530309 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300310
Ruchika Gupta313ea292013-10-25 12:01:01 +0530311 /* Remove platform devices for JobRs */
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300312 for (ring = 0; ring < ctrlpriv->total_jobrs; ring++) {
Ruchika Gupta313ea292013-10-25 12:01:01 +0530313 if (ctrlpriv->jrpdev[ring])
314 of_device_unregister(ctrlpriv->jrpdev[ring]);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300315 }
316
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300317 /* De-initialize RNG state handles initialized by this driver. */
318 if (ctrlpriv->rng4_sh_init)
319 deinstantiate_rng(ctrldev, ctrlpriv->rng4_sh_init);
Alex Porosanub1f996e02013-09-09 18:56:32 +0300320
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300321 /* Shut down debug views */
322#ifdef CONFIG_DEBUG_FS
323 debugfs_remove_recursive(ctrlpriv->dfs_root);
324#endif
325
326 /* Unmap controller region */
Victoria Milhoanf4ec6aa2015-06-15 16:52:58 -0700327 iounmap(ctrl);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300328
Victoria Milhoan24821c42015-08-05 11:28:37 -0700329 /* shut clocks off before finalizing shutdown */
330 clk_disable_unprepare(ctrlpriv->caam_ipg);
331 clk_disable_unprepare(ctrlpriv->caam_mem);
332 clk_disable_unprepare(ctrlpriv->caam_aclk);
Marcus Folkesson4e518812016-10-17 13:28:00 +0200333 if (!of_machine_is_compatible("fsl,imx6ul"))
334 clk_disable_unprepare(ctrlpriv->caam_emi_slow);
Fabio Estevame5580172015-08-12 14:39:38 -0300335 return 0;
Kim Phillips281922a2012-06-22 19:48:52 -0500336}
337
338/*
Alex Porosanu84cf4822013-09-09 18:56:30 +0300339 * kick_trng - sets the various parameters for enabling the initialization
340 * of the RNG4 block in CAAM
341 * @pdev - pointer to the platform device
342 * @ent_delay - Defines the length (in system clocks) of each entropy sample.
Kim Phillips281922a2012-06-22 19:48:52 -0500343 */
Alex Porosanu84cf4822013-09-09 18:56:30 +0300344static void kick_trng(struct platform_device *pdev, int ent_delay)
Kim Phillips281922a2012-06-22 19:48:52 -0500345{
346 struct device *ctrldev = &pdev->dev;
347 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530348 struct caam_ctrl __iomem *ctrl;
Kim Phillips281922a2012-06-22 19:48:52 -0500349 struct rng4tst __iomem *r4tst;
350 u32 val;
351
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530352 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
353 r4tst = &ctrl->r4tst[0];
Kim Phillips281922a2012-06-22 19:48:52 -0500354
355 /* put RNG4 into program mode */
Horia Geantă261ea052016-05-19 18:11:26 +0300356 clrsetbits_32(&r4tst->rtmctl, 0, RTMCTL_PRGM);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300357
358 /*
359 * Performance-wise, it does not make sense to
360 * set the delay to a value that is lower
361 * than the last one that worked (i.e. the state handles
362 * were instantiated properly. Thus, instead of wasting
363 * time trying to set the values controlling the sample
364 * frequency, the function simply returns.
365 */
366 val = (rd_reg32(&r4tst->rtsdctl) & RTSDCTL_ENT_DLY_MASK)
367 >> RTSDCTL_ENT_DLY_SHIFT;
368 if (ent_delay <= val) {
369 /* put RNG4 into run mode */
Horia Geantă261ea052016-05-19 18:11:26 +0300370 clrsetbits_32(&r4tst->rtmctl, RTMCTL_PRGM, 0);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300371 return;
372 }
373
Kim Phillips281922a2012-06-22 19:48:52 -0500374 val = rd_reg32(&r4tst->rtsdctl);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300375 val = (val & ~RTSDCTL_ENT_DLY_MASK) |
376 (ent_delay << RTSDCTL_ENT_DLY_SHIFT);
Kim Phillips281922a2012-06-22 19:48:52 -0500377 wr_reg32(&r4tst->rtsdctl, val);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300378 /* min. freq. count, equal to 1/4 of the entropy sample length */
379 wr_reg32(&r4tst->rtfrqmin, ent_delay >> 2);
Alex Porosanub061f3f2014-08-11 11:40:15 +0300380 /* disable maximum frequency count */
381 wr_reg32(&r4tst->rtfrqmax, RTFRQMAX_DISABLE);
Alex Porosanue5ffbfc2014-08-11 11:40:17 +0300382 /* read the control register */
383 val = rd_reg32(&r4tst->rtmctl);
384 /*
385 * select raw sampling in both entropy shifter
386 * and statistical checker
387 */
Horia Geantă261ea052016-05-19 18:11:26 +0300388 clrsetbits_32(&val, 0, RTMCTL_SAMP_MODE_RAW_ES_SC);
Kim Phillips281922a2012-06-22 19:48:52 -0500389 /* put RNG4 into run mode */
Horia Geantă261ea052016-05-19 18:11:26 +0300390 clrsetbits_32(&val, RTMCTL_PRGM, 0);
Alex Porosanue5ffbfc2014-08-11 11:40:17 +0300391 /* write back the control register */
392 wr_reg32(&r4tst->rtmctl, val);
Kim Phillips281922a2012-06-22 19:48:52 -0500393}
394
Alex Porosanu82c2f962012-07-11 11:06:11 +0800395/**
396 * caam_get_era() - Return the ERA of the SEC on SoC, based
Alex Porosanu883619a2014-02-06 10:27:19 +0200397 * on "sec-era" propery in the DTS. This property is updated by u-boot.
Alex Porosanu82c2f962012-07-11 11:06:11 +0800398 **/
Alex Porosanu883619a2014-02-06 10:27:19 +0200399int caam_get_era(void)
Alex Porosanu82c2f962012-07-11 11:06:11 +0800400{
Alex Porosanu883619a2014-02-06 10:27:19 +0200401 struct device_node *caam_node;
Alex Porosanue27513e2015-07-17 16:54:51 +0300402 int ret;
403 u32 prop;
Alex Porosanu82c2f962012-07-11 11:06:11 +0800404
Alex Porosanue27513e2015-07-17 16:54:51 +0300405 caam_node = of_find_compatible_node(NULL, NULL, "fsl,sec-v4.0");
406 ret = of_property_read_u32(caam_node, "fsl,sec-era", &prop);
407 of_node_put(caam_node);
408
Arnd Bergmann287980e2016-05-27 23:23:25 +0200409 return ret ? -ENOTSUPP : prop;
Alex Porosanu82c2f962012-07-11 11:06:11 +0800410}
411EXPORT_SYMBOL(caam_get_era);
412
Horia Geantă261ea052016-05-19 18:11:26 +0300413#ifdef CONFIG_DEBUG_FS
414static int caam_debugfs_u64_get(void *data, u64 *val)
415{
416 *val = caam64_to_cpu(*(u64 *)data);
417 return 0;
418}
419
420static int caam_debugfs_u32_get(void *data, u64 *val)
421{
422 *val = caam32_to_cpu(*(u32 *)data);
423 return 0;
424}
425
426DEFINE_SIMPLE_ATTRIBUTE(caam_fops_u32_ro, caam_debugfs_u32_get, NULL, "%llu\n");
427DEFINE_SIMPLE_ATTRIBUTE(caam_fops_u64_ro, caam_debugfs_u64_get, NULL, "%llu\n");
428#endif
429
Kim Phillips8e8ec592011-03-13 16:54:26 +0800430/* Probe routine for CAAM top (controller) level */
Kim Phillips2930d492011-05-14 22:07:55 -0500431static int caam_probe(struct platform_device *pdev)
Kim Phillips8e8ec592011-03-13 16:54:26 +0800432{
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300433 int ret, ring, rspec, gen_sk, ent_delay = RTSDCTL_ENT_DLY_MIN;
Alex Porosanu82c2f962012-07-11 11:06:11 +0800434 u64 caam_id;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800435 struct device *dev;
436 struct device_node *nprop, *np;
437 struct caam_ctrl __iomem *ctrl;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800438 struct caam_drv_private *ctrlpriv;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700439 struct clk *clk;
Kim Phillips23457bc2011-06-05 16:42:54 -0500440#ifdef CONFIG_DEBUG_FS
441 struct caam_perfmon *perfmon;
442#endif
Ruchika Gupta17157c92014-06-23 17:42:33 +0530443 u32 scfgr, comp_params;
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530444 u32 cha_vid_ls;
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530445 int pg_size;
446 int BLOCK_OFFSET = 0;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800447
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300448 ctrlpriv = devm_kzalloc(&pdev->dev, sizeof(*ctrlpriv), GFP_KERNEL);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800449 if (!ctrlpriv)
450 return -ENOMEM;
451
452 dev = &pdev->dev;
453 dev_set_drvdata(dev, ctrlpriv);
454 ctrlpriv->pdev = pdev;
455 nprop = pdev->dev.of_node;
456
Victoria Milhoan24821c42015-08-05 11:28:37 -0700457 /* Enable clocking */
458 clk = caam_drv_identify_clk(&pdev->dev, "ipg");
459 if (IS_ERR(clk)) {
460 ret = PTR_ERR(clk);
461 dev_err(&pdev->dev,
462 "can't identify CAAM ipg clk: %d\n", ret);
Fabio Estevama3c09552015-08-21 13:51:59 -0300463 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700464 }
465 ctrlpriv->caam_ipg = clk;
466
467 clk = caam_drv_identify_clk(&pdev->dev, "mem");
468 if (IS_ERR(clk)) {
469 ret = PTR_ERR(clk);
470 dev_err(&pdev->dev,
471 "can't identify CAAM mem clk: %d\n", ret);
Fabio Estevama3c09552015-08-21 13:51:59 -0300472 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700473 }
474 ctrlpriv->caam_mem = clk;
475
476 clk = caam_drv_identify_clk(&pdev->dev, "aclk");
477 if (IS_ERR(clk)) {
478 ret = PTR_ERR(clk);
479 dev_err(&pdev->dev,
480 "can't identify CAAM aclk clk: %d\n", ret);
Fabio Estevama3c09552015-08-21 13:51:59 -0300481 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700482 }
483 ctrlpriv->caam_aclk = clk;
484
Marcus Folkesson4e518812016-10-17 13:28:00 +0200485 if (!of_machine_is_compatible("fsl,imx6ul")) {
486 clk = caam_drv_identify_clk(&pdev->dev, "emi_slow");
487 if (IS_ERR(clk)) {
488 ret = PTR_ERR(clk);
489 dev_err(&pdev->dev,
490 "can't identify CAAM emi_slow clk: %d\n", ret);
491 return ret;
492 }
493 ctrlpriv->caam_emi_slow = clk;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700494 }
Victoria Milhoan24821c42015-08-05 11:28:37 -0700495
496 ret = clk_prepare_enable(ctrlpriv->caam_ipg);
497 if (ret < 0) {
498 dev_err(&pdev->dev, "can't enable CAAM ipg clock: %d\n", ret);
Fabio Estevam31f44d12015-08-21 13:51:58 -0300499 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700500 }
501
502 ret = clk_prepare_enable(ctrlpriv->caam_mem);
503 if (ret < 0) {
504 dev_err(&pdev->dev, "can't enable CAAM secure mem clock: %d\n",
505 ret);
Fabio Estevam31f44d12015-08-21 13:51:58 -0300506 goto disable_caam_ipg;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700507 }
508
509 ret = clk_prepare_enable(ctrlpriv->caam_aclk);
510 if (ret < 0) {
511 dev_err(&pdev->dev, "can't enable CAAM aclk clock: %d\n", ret);
Fabio Estevam31f44d12015-08-21 13:51:58 -0300512 goto disable_caam_mem;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700513 }
514
Marcus Folkesson4e518812016-10-17 13:28:00 +0200515 if (!of_machine_is_compatible("fsl,imx6ul")) {
516 ret = clk_prepare_enable(ctrlpriv->caam_emi_slow);
517 if (ret < 0) {
518 dev_err(&pdev->dev, "can't enable CAAM emi slow clock: %d\n",
519 ret);
520 goto disable_caam_aclk;
521 }
Victoria Milhoan24821c42015-08-05 11:28:37 -0700522 }
523
Kim Phillips8e8ec592011-03-13 16:54:26 +0800524 /* Get configuration properties from device tree */
525 /* First, get register page */
526 ctrl = of_iomap(nprop, 0);
527 if (ctrl == NULL) {
528 dev_err(dev, "caam: of_iomap() failed\n");
Fabio Estevam31f44d12015-08-21 13:51:58 -0300529 ret = -ENOMEM;
530 goto disable_caam_emi_slow;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800531 }
Horia Geantă261ea052016-05-19 18:11:26 +0300532
533 caam_little_end = !(bool)(rd_reg32(&ctrl->perfmon.status) &
534 (CSTA_PLEND | CSTA_ALT_PLEND));
535
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530536 /* Finding the page size for using the CTPR_MS register */
537 comp_params = rd_reg32(&ctrl->perfmon.comp_parms_ms);
538 pg_size = (comp_params & CTPR_MS_PG_SZ_MASK) >> CTPR_MS_PG_SZ_SHIFT;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800539
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530540 /* Allocating the BLOCK_OFFSET based on the supported page size on
541 * the platform
542 */
543 if (pg_size == 0)
544 BLOCK_OFFSET = PG_SIZE_4K;
545 else
546 BLOCK_OFFSET = PG_SIZE_64K;
547
548 ctrlpriv->ctrl = (struct caam_ctrl __force *)ctrl;
549 ctrlpriv->assure = (struct caam_assurance __force *)
550 ((uint8_t *)ctrl +
551 BLOCK_OFFSET * ASSURE_BLOCK_NUMBER
552 );
553 ctrlpriv->deco = (struct caam_deco __force *)
554 ((uint8_t *)ctrl +
555 BLOCK_OFFSET * DECO_BLOCK_NUMBER
556 );
Kim Phillips8e8ec592011-03-13 16:54:26 +0800557
558 /* Get the IRQ of the controller (for security violations only) */
Thierry Redingf7578492013-09-18 15:24:44 +0200559 ctrlpriv->secvio_irq = irq_of_parse_and_map(nprop, 0);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800560
561 /*
562 * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel,
Kim Phillipse13af182012-06-22 19:48:51 -0500563 * long pointers in master configuration register
Kim Phillips8e8ec592011-03-13 16:54:26 +0800564 */
Victoria Milhoan509da8f2015-08-05 11:28:36 -0700565 clrsetbits_32(&ctrl->mcr, MCFGR_AWCACHE_MASK, MCFGR_AWCACHE_CACH |
Horia Geant?624144a2016-01-12 17:14:10 +0200566 MCFGR_AWCACHE_BUFF | MCFGR_WDENABLE | MCFGR_LARGE_BURST |
Horia Geant?e7a71042016-01-12 17:59:29 +0200567 (sizeof(dma_addr_t) == sizeof(u64) ? MCFGR_LONG_PTR : 0));
Kim Phillips8e8ec592011-03-13 16:54:26 +0800568
Ruchika Gupta17157c92014-06-23 17:42:33 +0530569 /*
570 * Read the Compile Time paramters and SCFGR to determine
571 * if Virtualization is enabled for this platform
572 */
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530573 scfgr = rd_reg32(&ctrl->scfgr);
Ruchika Gupta17157c92014-06-23 17:42:33 +0530574
575 ctrlpriv->virt_en = 0;
576 if (comp_params & CTPR_MS_VIRT_EN_INCL) {
577 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or
578 * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SCFGR_VIRT_EN = 1
579 */
580 if ((comp_params & CTPR_MS_VIRT_EN_POR) ||
581 (!(comp_params & CTPR_MS_VIRT_EN_POR) &&
582 (scfgr & SCFGR_VIRT_EN)))
583 ctrlpriv->virt_en = 1;
584 } else {
585 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */
586 if (comp_params & CTPR_MS_VIRT_EN_POR)
587 ctrlpriv->virt_en = 1;
588 }
589
590 if (ctrlpriv->virt_en == 1)
Horia Geantă261ea052016-05-19 18:11:26 +0300591 clrsetbits_32(&ctrl->jrstart, 0, JRSTART_JR0_START |
592 JRSTART_JR1_START | JRSTART_JR2_START |
593 JRSTART_JR3_START);
Ruchika Gupta17157c92014-06-23 17:42:33 +0530594
Kim Phillips8e8ec592011-03-13 16:54:26 +0800595 if (sizeof(dma_addr_t) == sizeof(u64))
Kim Phillipse13af182012-06-22 19:48:51 -0500596 if (of_device_is_compatible(nprop, "fsl,sec-v5.0"))
Horia Geantaa2ac2872014-07-11 15:34:47 +0300597 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(40));
Kim Phillipse13af182012-06-22 19:48:51 -0500598 else
Horia Geantaa2ac2872014-07-11 15:34:47 +0300599 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(36));
Kim Phillipse13af182012-06-22 19:48:51 -0500600 else
Horia Geantaa2ac2872014-07-11 15:34:47 +0300601 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
Kim Phillips8e8ec592011-03-13 16:54:26 +0800602
Kim Phillips8e8ec592011-03-13 16:54:26 +0800603 /*
604 * Detect and enable JobRs
605 * First, find out how many ring spec'ed, allocate references
606 * for all, then go probe each one.
607 */
608 rspec = 0;
Nitesh Lal0a63b092014-02-09 09:59:13 +0800609 for_each_available_child_of_node(nprop, np)
610 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
611 of_device_is_compatible(np, "fsl,sec4.0-job-ring"))
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800612 rspec++;
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800613
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300614 ctrlpriv->jrpdev = devm_kcalloc(&pdev->dev, rspec,
615 sizeof(*ctrlpriv->jrpdev), GFP_KERNEL);
Ruchika Gupta313ea292013-10-25 12:01:01 +0530616 if (ctrlpriv->jrpdev == NULL) {
Fabio Estevam31f44d12015-08-21 13:51:58 -0300617 ret = -ENOMEM;
618 goto iounmap_ctrl;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800619 }
620
621 ring = 0;
622 ctrlpriv->total_jobrs = 0;
Nitesh Lal0a63b092014-02-09 09:59:13 +0800623 for_each_available_child_of_node(nprop, np)
624 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
625 of_device_is_compatible(np, "fsl,sec4.0-job-ring")) {
Ruchika Gupta313ea292013-10-25 12:01:01 +0530626 ctrlpriv->jrpdev[ring] =
627 of_platform_device_create(np, NULL, dev);
628 if (!ctrlpriv->jrpdev[ring]) {
629 pr_warn("JR%d Platform device creation error\n",
630 ring);
631 continue;
632 }
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530633 ctrlpriv->jr[ring] = (struct caam_job_ring __force *)
634 ((uint8_t *)ctrl +
635 (ring + JR_BLOCK_NUMBER) *
636 BLOCK_OFFSET
637 );
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800638 ctrlpriv->total_jobrs++;
639 ring++;
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530640 }
Kim Phillips8e8ec592011-03-13 16:54:26 +0800641
642 /* Check to see if QI present. If so, enable */
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530643 ctrlpriv->qi_present =
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530644 !!(rd_reg32(&ctrl->perfmon.comp_parms_ms) &
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530645 CTPR_MS_QI_MASK);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800646 if (ctrlpriv->qi_present) {
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530647 ctrlpriv->qi = (struct caam_queue_if __force *)
648 ((uint8_t *)ctrl +
649 BLOCK_OFFSET * QI_BLOCK_NUMBER
650 );
Kim Phillips8e8ec592011-03-13 16:54:26 +0800651 /* This is all that's required to physically enable QI */
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530652 wr_reg32(&ctrlpriv->qi->qi_control_lo, QICTL_DQEN);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800653 }
654
655 /* If no QI and no rings specified, quit and go home */
656 if ((!ctrlpriv->qi_present) && (!ctrlpriv->total_jobrs)) {
657 dev_err(dev, "no queues configured, terminating\n");
Fabio Estevam31f44d12015-08-21 13:51:58 -0300658 ret = -ENOMEM;
659 goto caam_remove;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800660 }
661
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530662 cha_vid_ls = rd_reg32(&ctrl->perfmon.cha_id_ls);
Ruchika Gupta986dfbc2013-04-26 15:44:54 +0530663
Kim Phillips281922a2012-06-22 19:48:52 -0500664 /*
Ruchika Gupta986dfbc2013-04-26 15:44:54 +0530665 * If SEC has RNG version >= 4 and RNG state handle has not been
Alex Porosanu84cf4822013-09-09 18:56:30 +0300666 * already instantiated, do RNG instantiation
Kim Phillips281922a2012-06-22 19:48:52 -0500667 */
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530668 if ((cha_vid_ls & CHA_ID_LS_RNG_MASK) >> CHA_ID_LS_RNG_SHIFT >= 4) {
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300669 ctrlpriv->rng4_sh_init =
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530670 rd_reg32(&ctrl->r4tst[0].rdsta);
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300671 /*
672 * If the secure keys (TDKEK, JDKEK, TDSK), were already
673 * generated, signal this to the function that is instantiating
674 * the state handles. An error would occur if RNG4 attempts
675 * to regenerate these keys before the next POR.
676 */
677 gen_sk = ctrlpriv->rng4_sh_init & RDSTA_SKVN ? 0 : 1;
678 ctrlpriv->rng4_sh_init &= RDSTA_IFMASK;
Alex Porosanu84cf4822013-09-09 18:56:30 +0300679 do {
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300680 int inst_handles =
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530681 rd_reg32(&ctrl->r4tst[0].rdsta) &
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300682 RDSTA_IFMASK;
683 /*
684 * If either SH were instantiated by somebody else
685 * (e.g. u-boot) then it is assumed that the entropy
686 * parameters are properly set and thus the function
687 * setting these (kick_trng(...)) is skipped.
688 * Also, if a handle was instantiated, do not change
689 * the TRNG parameters.
690 */
691 if (!(ctrlpriv->rng4_sh_init || inst_handles)) {
Alex Porosanueeaa1722014-08-11 11:40:16 +0300692 dev_info(dev,
693 "Entropy delay = %u\n",
694 ent_delay);
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300695 kick_trng(pdev, ent_delay);
696 ent_delay += 400;
697 }
698 /*
699 * if instantiate_rng(...) fails, the loop will rerun
700 * and the kick_trng(...) function will modfiy the
701 * upper and lower limits of the entropy sampling
702 * interval, leading to a sucessful initialization of
703 * the RNG.
704 */
705 ret = instantiate_rng(dev, inst_handles,
706 gen_sk);
Alex Porosanueeaa1722014-08-11 11:40:16 +0300707 if (ret == -EAGAIN)
708 /*
709 * if here, the loop will rerun,
710 * so don't hog the CPU
711 */
712 cpu_relax();
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300713 } while ((ret == -EAGAIN) && (ent_delay < RTSDCTL_ENT_DLY_MAX));
Kim Phillips281922a2012-06-22 19:48:52 -0500714 if (ret) {
Alex Porosanu84cf4822013-09-09 18:56:30 +0300715 dev_err(dev, "failed to instantiate RNG");
Fabio Estevam31f44d12015-08-21 13:51:58 -0300716 goto caam_remove;
Kim Phillips281922a2012-06-22 19:48:52 -0500717 }
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300718 /*
719 * Set handles init'ed by this module as the complement of the
720 * already initialized ones
721 */
722 ctrlpriv->rng4_sh_init = ~ctrlpriv->rng4_sh_init & RDSTA_IFMASK;
Vakul Garg575c1bd2013-03-12 13:55:21 +0530723
724 /* Enable RDB bit so that RNG works faster */
Horia Geantă261ea052016-05-19 18:11:26 +0300725 clrsetbits_32(&ctrl->scfgr, 0, SCFGR_RDBENABLE);
Kim Phillips281922a2012-06-22 19:48:52 -0500726 }
727
Kim Phillips8e8ec592011-03-13 16:54:26 +0800728 /* NOTE: RTIC detection ought to go here, around Si time */
729
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530730 caam_id = (u64)rd_reg32(&ctrl->perfmon.caam_id_ms) << 32 |
731 (u64)rd_reg32(&ctrl->perfmon.caam_id_ls);
Alex Porosanu82c2f962012-07-11 11:06:11 +0800732
Kim Phillips8e8ec592011-03-13 16:54:26 +0800733 /* Report "alive" for developer to see */
Alex Porosanu82c2f962012-07-11 11:06:11 +0800734 dev_info(dev, "device ID = 0x%016llx (Era %d)\n", caam_id,
Alex Porosanu883619a2014-02-06 10:27:19 +0200735 caam_get_era());
Kim Phillips8e8ec592011-03-13 16:54:26 +0800736 dev_info(dev, "job rings = %d, qi = %d\n",
737 ctrlpriv->total_jobrs, ctrlpriv->qi_present);
738
739#ifdef CONFIG_DEBUG_FS
740 /*
741 * FIXME: needs better naming distinction, as some amalgamation of
742 * "caam" and nprop->full_name. The OF name isn't distinctive,
743 * but does separate instances
744 */
745 perfmon = (struct caam_perfmon __force *)&ctrl->perfmon;
746
Nitesh Narayan Lal178f8272014-07-01 19:54:54 +0530747 ctrlpriv->dfs_root = debugfs_create_dir(dev_name(dev), NULL);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800748 ctrlpriv->ctl = debugfs_create_dir("ctl", ctrlpriv->dfs_root);
749
750 /* Controller-level - performance monitor counters */
Horia Geantă261ea052016-05-19 18:11:26 +0300751
Kim Phillips8e8ec592011-03-13 16:54:26 +0800752 ctrlpriv->ctl_rq_dequeued =
Horia Geantă261ea052016-05-19 18:11:26 +0300753 debugfs_create_file("rq_dequeued",
754 S_IRUSR | S_IRGRP | S_IROTH,
755 ctrlpriv->ctl, &perfmon->req_dequeued,
756 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800757 ctrlpriv->ctl_ob_enc_req =
Horia Geantă261ea052016-05-19 18:11:26 +0300758 debugfs_create_file("ob_rq_encrypted",
759 S_IRUSR | S_IRGRP | S_IROTH,
760 ctrlpriv->ctl, &perfmon->ob_enc_req,
761 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800762 ctrlpriv->ctl_ib_dec_req =
Horia Geantă261ea052016-05-19 18:11:26 +0300763 debugfs_create_file("ib_rq_decrypted",
764 S_IRUSR | S_IRGRP | S_IROTH,
765 ctrlpriv->ctl, &perfmon->ib_dec_req,
766 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800767 ctrlpriv->ctl_ob_enc_bytes =
Horia Geantă261ea052016-05-19 18:11:26 +0300768 debugfs_create_file("ob_bytes_encrypted",
769 S_IRUSR | S_IRGRP | S_IROTH,
770 ctrlpriv->ctl, &perfmon->ob_enc_bytes,
771 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800772 ctrlpriv->ctl_ob_prot_bytes =
Horia Geantă261ea052016-05-19 18:11:26 +0300773 debugfs_create_file("ob_bytes_protected",
774 S_IRUSR | S_IRGRP | S_IROTH,
775 ctrlpriv->ctl, &perfmon->ob_prot_bytes,
776 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800777 ctrlpriv->ctl_ib_dec_bytes =
Horia Geantă261ea052016-05-19 18:11:26 +0300778 debugfs_create_file("ib_bytes_decrypted",
779 S_IRUSR | S_IRGRP | S_IROTH,
780 ctrlpriv->ctl, &perfmon->ib_dec_bytes,
781 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800782 ctrlpriv->ctl_ib_valid_bytes =
Horia Geantă261ea052016-05-19 18:11:26 +0300783 debugfs_create_file("ib_bytes_validated",
784 S_IRUSR | S_IRGRP | S_IROTH,
785 ctrlpriv->ctl, &perfmon->ib_valid_bytes,
786 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800787
788 /* Controller level - global status values */
789 ctrlpriv->ctl_faultaddr =
Horia Geantă261ea052016-05-19 18:11:26 +0300790 debugfs_create_file("fault_addr",
791 S_IRUSR | S_IRGRP | S_IROTH,
792 ctrlpriv->ctl, &perfmon->faultaddr,
793 &caam_fops_u32_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800794 ctrlpriv->ctl_faultdetail =
Horia Geantă261ea052016-05-19 18:11:26 +0300795 debugfs_create_file("fault_detail",
796 S_IRUSR | S_IRGRP | S_IROTH,
797 ctrlpriv->ctl, &perfmon->faultdetail,
798 &caam_fops_u32_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800799 ctrlpriv->ctl_faultstatus =
Horia Geantă261ea052016-05-19 18:11:26 +0300800 debugfs_create_file("fault_status",
801 S_IRUSR | S_IRGRP | S_IROTH,
802 ctrlpriv->ctl, &perfmon->status,
803 &caam_fops_u32_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800804
805 /* Internal covering keys (useful in non-secure mode only) */
806 ctrlpriv->ctl_kek_wrap.data = &ctrlpriv->ctrl->kek[0];
807 ctrlpriv->ctl_kek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
808 ctrlpriv->ctl_kek = debugfs_create_blob("kek",
Al Viroeda65cc2011-07-24 04:32:53 -0400809 S_IRUSR |
Kim Phillips8e8ec592011-03-13 16:54:26 +0800810 S_IRGRP | S_IROTH,
811 ctrlpriv->ctl,
812 &ctrlpriv->ctl_kek_wrap);
813
814 ctrlpriv->ctl_tkek_wrap.data = &ctrlpriv->ctrl->tkek[0];
815 ctrlpriv->ctl_tkek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
816 ctrlpriv->ctl_tkek = debugfs_create_blob("tkek",
Al Viroeda65cc2011-07-24 04:32:53 -0400817 S_IRUSR |
Kim Phillips8e8ec592011-03-13 16:54:26 +0800818 S_IRGRP | S_IROTH,
819 ctrlpriv->ctl,
820 &ctrlpriv->ctl_tkek_wrap);
821
822 ctrlpriv->ctl_tdsk_wrap.data = &ctrlpriv->ctrl->tdsk[0];
823 ctrlpriv->ctl_tdsk_wrap.size = KEK_KEY_SIZE * sizeof(u32);
824 ctrlpriv->ctl_tdsk = debugfs_create_blob("tdsk",
Al Viroeda65cc2011-07-24 04:32:53 -0400825 S_IRUSR |
Kim Phillips8e8ec592011-03-13 16:54:26 +0800826 S_IRGRP | S_IROTH,
827 ctrlpriv->ctl,
828 &ctrlpriv->ctl_tdsk_wrap);
829#endif
830 return 0;
Fabio Estevam31f44d12015-08-21 13:51:58 -0300831
832caam_remove:
833 caam_remove(pdev);
Russell Kingbdc67da2016-08-09 08:30:10 +0100834 return ret;
835
Fabio Estevam31f44d12015-08-21 13:51:58 -0300836iounmap_ctrl:
837 iounmap(ctrl);
838disable_caam_emi_slow:
Marcus Folkesson4e518812016-10-17 13:28:00 +0200839 if (!of_machine_is_compatible("fsl,imx6ul"))
840 clk_disable_unprepare(ctrlpriv->caam_emi_slow);
Fabio Estevam31f44d12015-08-21 13:51:58 -0300841disable_caam_aclk:
842 clk_disable_unprepare(ctrlpriv->caam_aclk);
843disable_caam_mem:
844 clk_disable_unprepare(ctrlpriv->caam_mem);
845disable_caam_ipg:
846 clk_disable_unprepare(ctrlpriv->caam_ipg);
847 return ret;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800848}
849
850static struct of_device_id caam_match[] = {
851 {
Kim Phillips54e198d2011-03-23 21:15:44 +0800852 .compatible = "fsl,sec-v4.0",
Kim Phillips8e8ec592011-03-13 16:54:26 +0800853 },
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800854 {
855 .compatible = "fsl,sec4.0",
856 },
Kim Phillips8e8ec592011-03-13 16:54:26 +0800857 {},
858};
859MODULE_DEVICE_TABLE(of, caam_match);
860
Kim Phillips2930d492011-05-14 22:07:55 -0500861static struct platform_driver caam_driver = {
Kim Phillips8e8ec592011-03-13 16:54:26 +0800862 .driver = {
863 .name = "caam",
Kim Phillips8e8ec592011-03-13 16:54:26 +0800864 .of_match_table = caam_match,
865 },
866 .probe = caam_probe,
Greg Kroah-Hartman49cfe4d2012-12-21 13:14:09 -0800867 .remove = caam_remove,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800868};
869
Axel Lin741e8c22011-11-26 21:26:19 +0800870module_platform_driver(caam_driver);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800871
872MODULE_LICENSE("GPL");
873MODULE_DESCRIPTION("FSL CAAM request backend");
874MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");