blob: 0ec112ee5204302ef01bdc7f5dc30d5184e747b4 [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
Horia Geantă261ea052016-05-19 18:11:26 +030018bool caam_little_end;
19EXPORT_SYMBOL(caam_little_end);
20
Kim Phillips281922a2012-06-22 19:48:52 -050021/*
Horia Geant?6c3af952015-08-17 15:24:10 +030022 * i.MX targets tend to have clock control subsystems that can
Victoria Milhoan24821c42015-08-05 11:28:37 -070023 * enable/disable clocking to our device.
24 */
Horia Geant?6c3af952015-08-17 15:24:10 +030025#ifdef CONFIG_CRYPTO_DEV_FSL_CAAM_IMX
Victoria Milhoan24821c42015-08-05 11:28:37 -070026static inline struct clk *caam_drv_identify_clk(struct device *dev,
27 char *clk_name)
28{
29 return devm_clk_get(dev, clk_name);
30}
31#else
32static inline struct clk *caam_drv_identify_clk(struct device *dev,
33 char *clk_name)
34{
35 return NULL;
36}
37#endif
38
39/*
Kim Phillips281922a2012-06-22 19:48:52 -050040 * Descriptor to instantiate RNG State Handle 0 in normal mode and
41 * load the JDKEK, TDKEK and TDSK registers
42 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030043static void build_instantiation_desc(u32 *desc, int handle, int do_sk)
Kim Phillips281922a2012-06-22 19:48:52 -050044{
Alex Porosanu1005bcc2013-09-09 18:56:34 +030045 u32 *jump_cmd, op_flags;
Kim Phillips281922a2012-06-22 19:48:52 -050046
47 init_job_desc(desc, 0);
48
Alex Porosanu1005bcc2013-09-09 18:56:34 +030049 op_flags = OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
50 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INIT;
51
Kim Phillips281922a2012-06-22 19:48:52 -050052 /* INIT RNG in non-test mode */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030053 append_operation(desc, op_flags);
Kim Phillips281922a2012-06-22 19:48:52 -050054
Alex Porosanu1005bcc2013-09-09 18:56:34 +030055 if (!handle && do_sk) {
56 /*
57 * For SH0, Secure Keys must be generated as well
58 */
Kim Phillips281922a2012-06-22 19:48:52 -050059
Alex Porosanu1005bcc2013-09-09 18:56:34 +030060 /* wait for done */
61 jump_cmd = append_jump(desc, JUMP_CLASS_CLASS1);
62 set_jump_tgt_here(desc, jump_cmd);
Kim Phillips281922a2012-06-22 19:48:52 -050063
Alex Porosanu1005bcc2013-09-09 18:56:34 +030064 /*
65 * load 1 to clear written reg:
66 * resets the done interrrupt and returns the RNG to idle.
67 */
68 append_load_imm_u32(desc, 1, LDST_SRCDST_WORD_CLRW);
69
70 /* Initialize State Handle */
71 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
72 OP_ALG_AAI_RNG4_SK);
73 }
Alex Porosanud5e4e992013-09-09 18:56:28 +030074
75 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
Kim Phillips281922a2012-06-22 19:48:52 -050076}
77
Alex Porosanub1f996e02013-09-09 18:56:32 +030078/* Descriptor for deinstantiation of State Handle 0 of the RNG block. */
Alex Porosanu1005bcc2013-09-09 18:56:34 +030079static void build_deinstantiation_desc(u32 *desc, int handle)
Alex Porosanub1f996e02013-09-09 18:56:32 +030080{
81 init_job_desc(desc, 0);
82
83 /* Uninstantiate State Handle 0 */
84 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG |
Alex Porosanu1005bcc2013-09-09 18:56:34 +030085 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INITFINAL);
Alex Porosanub1f996e02013-09-09 18:56:32 +030086
87 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT);
88}
Alex Porosanu04cddbf2013-09-09 18:56:31 +030089
90/*
91 * run_descriptor_deco0 - runs a descriptor on DECO0, under direct control of
92 * the software (no JR/QI used).
93 * @ctrldev - pointer to device
Alex Porosanu1005bcc2013-09-09 18:56:34 +030094 * @status - descriptor status, after being run
95 *
Alex Porosanu04cddbf2013-09-09 18:56:31 +030096 * Return: - 0 if no error occurred
97 * - -ENODEV if the DECO couldn't be acquired
98 * - -EAGAIN if an error occurred while executing the descriptor
99 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300100static inline int run_descriptor_deco0(struct device *ctrldev, u32 *desc,
101 u32 *status)
Kim Phillips281922a2012-06-22 19:48:52 -0500102{
Ruchika Gupta997ad292013-07-04 11:26:03 +0530103 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530104 struct caam_ctrl __iomem *ctrl = ctrlpriv->ctrl;
105 struct caam_deco __iomem *deco = ctrlpriv->deco;
Ruchika Gupta997ad292013-07-04 11:26:03 +0530106 unsigned int timeout = 100000;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300107 u32 deco_dbg_reg, flags;
Alex Porosanub1f996e02013-09-09 18:56:32 +0300108 int i;
Ruchika Gupta997ad292013-07-04 11:26:03 +0530109
Ruchika Gupta17157c92014-06-23 17:42:33 +0530110
Horia Geanta8f1da7b2014-07-21 16:03:21 +0300111 if (ctrlpriv->virt_en == 1) {
Horia Geantă261ea052016-05-19 18:11:26 +0300112 clrsetbits_32(&ctrl->deco_rsr, 0, DECORSR_JR0);
Ruchika Gupta17157c92014-06-23 17:42:33 +0530113
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530114 while (!(rd_reg32(&ctrl->deco_rsr) & DECORSR_VALID) &&
Horia Geanta8f1da7b2014-07-21 16:03:21 +0300115 --timeout)
116 cpu_relax();
117
118 timeout = 100000;
119 }
Ruchika Gupta17157c92014-06-23 17:42:33 +0530120
Horia Geantă261ea052016-05-19 18:11:26 +0300121 clrsetbits_32(&ctrl->deco_rq, 0, DECORR_RQD0ENABLE);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530122
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530123 while (!(rd_reg32(&ctrl->deco_rq) & DECORR_DEN0) &&
Ruchika Gupta997ad292013-07-04 11:26:03 +0530124 --timeout)
125 cpu_relax();
126
127 if (!timeout) {
128 dev_err(ctrldev, "failed to acquire DECO 0\n");
Horia Geantă261ea052016-05-19 18:11:26 +0300129 clrsetbits_32(&ctrl->deco_rq, DECORR_RQD0ENABLE, 0);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300130 return -ENODEV;
Kim Phillips281922a2012-06-22 19:48:52 -0500131 }
132
Ruchika Gupta997ad292013-07-04 11:26:03 +0530133 for (i = 0; i < desc_len(desc); i++)
Horia Geantă261ea052016-05-19 18:11:26 +0300134 wr_reg32(&deco->descbuf[i], caam32_to_cpu(*(desc + i)));
Kim Phillips281922a2012-06-22 19:48:52 -0500135
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300136 flags = DECO_JQCR_WHL;
137 /*
138 * If the descriptor length is longer than 4 words, then the
139 * FOUR bit in JRCTRL register must be set.
140 */
141 if (desc_len(desc) >= 4)
142 flags |= DECO_JQCR_FOUR;
143
144 /* Instruct the DECO to execute it */
Horia Geantă261ea052016-05-19 18:11:26 +0300145 clrsetbits_32(&deco->jr_ctl_hi, 0, flags);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530146
147 timeout = 10000000;
Alex Porosanu84cf4822013-09-09 18:56:30 +0300148 do {
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530149 deco_dbg_reg = rd_reg32(&deco->desc_dbg);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300150 /*
151 * If an error occured in the descriptor, then
152 * the DECO status field will be set to 0x0D
153 */
154 if ((deco_dbg_reg & DESC_DBG_DECO_STAT_MASK) ==
155 DESC_DBG_DECO_STAT_HOST_ERR)
156 break;
Ruchika Gupta997ad292013-07-04 11:26:03 +0530157 cpu_relax();
Alex Porosanu84cf4822013-09-09 18:56:30 +0300158 } while ((deco_dbg_reg & DESC_DBG_DECO_STAT_VALID) && --timeout);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530159
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530160 *status = rd_reg32(&deco->op_status_hi) &
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300161 DECO_OP_STATUS_HI_ERR_MASK;
162
Ruchika Gupta17157c92014-06-23 17:42:33 +0530163 if (ctrlpriv->virt_en == 1)
Horia Geantă261ea052016-05-19 18:11:26 +0300164 clrsetbits_32(&ctrl->deco_rsr, DECORSR_JR0, 0);
Ruchika Gupta17157c92014-06-23 17:42:33 +0530165
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300166 /* Mark the DECO as free */
Horia Geantă261ea052016-05-19 18:11:26 +0300167 clrsetbits_32(&ctrl->deco_rq, DECORR_RQD0ENABLE, 0);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300168
169 if (!timeout)
170 return -EAGAIN;
171
172 return 0;
173}
174
175/*
176 * instantiate_rng - builds and executes a descriptor on DECO0,
177 * which initializes the RNG block.
178 * @ctrldev - pointer to device
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300179 * @state_handle_mask - bitmask containing the instantiation status
180 * for the RNG4 state handles which exist in
181 * the RNG4 block: 1 if it's been instantiated
182 * by an external entry, 0 otherwise.
183 * @gen_sk - generate data to be loaded into the JDKEK, TDKEK and TDSK;
184 * Caution: this can be done only once; if the keys need to be
185 * regenerated, a POR is required
186 *
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300187 * Return: - 0 if no error occurred
188 * - -ENOMEM if there isn't enough memory to allocate the descriptor
189 * - -ENODEV if DECO0 couldn't be acquired
190 * - -EAGAIN if an error occurred when executing the descriptor
191 * f.i. there was a RNG hardware error due to not "good enough"
192 * entropy being aquired.
193 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300194static int instantiate_rng(struct device *ctrldev, int state_handle_mask,
195 int gen_sk)
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300196{
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300197 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530198 struct caam_ctrl __iomem *ctrl;
Horia Geant?62743a42015-07-17 16:54:53 +0300199 u32 *desc, status = 0, rdsta_val;
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300200 int ret = 0, sh_idx;
201
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530202 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300203 desc = kmalloc(CAAM_CMD_SZ * 7, GFP_KERNEL);
204 if (!desc)
205 return -ENOMEM;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300206
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300207 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
208 /*
209 * If the corresponding bit is set, this state handle
210 * was initialized by somebody else, so it's left alone.
211 */
212 if ((1 << sh_idx) & state_handle_mask)
213 continue;
214
215 /* Create the descriptor for instantiating RNG State Handle */
216 build_instantiation_desc(desc, sh_idx, gen_sk);
217
218 /* Try to run it through DECO0 */
219 ret = run_descriptor_deco0(ctrldev, desc, &status);
220
221 /*
222 * If ret is not 0, or descriptor status is not 0, then
223 * something went wrong. No need to try the next state
224 * handle (if available), bail out here.
225 * Also, if for some reason, the State Handle didn't get
226 * instantiated although the descriptor has finished
227 * without any error (HW optimizations for later
228 * CAAM eras), then try again.
229 */
Cristian Stoica467707b2015-01-21 11:53:31 +0200230 rdsta_val = rd_reg32(&ctrl->r4tst[0].rdsta) & RDSTA_IFMASK;
Horia Geant?62743a42015-07-17 16:54:53 +0300231 if ((status && status != JRSTA_SSRC_JUMP_HALT_CC) ||
232 !(rdsta_val & (1 << sh_idx)))
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300233 ret = -EAGAIN;
234 if (ret)
235 break;
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300236 dev_info(ctrldev, "Instantiated RNG4 SH%d\n", sh_idx);
237 /* Clear the contents before recreating the descriptor */
238 memset(desc, 0x00, CAAM_CMD_SZ * 7);
Ruchika Gupta997ad292013-07-04 11:26:03 +0530239 }
240
Kim Phillips281922a2012-06-22 19:48:52 -0500241 kfree(desc);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300242
Kim Phillips281922a2012-06-22 19:48:52 -0500243 return ret;
244}
245
246/*
Alex Porosanub1f996e02013-09-09 18:56:32 +0300247 * deinstantiate_rng - builds and executes a descriptor on DECO0,
248 * which deinitializes the RNG block.
249 * @ctrldev - pointer to device
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300250 * @state_handle_mask - bitmask containing the instantiation status
251 * for the RNG4 state handles which exist in
252 * the RNG4 block: 1 if it's been instantiated
Alex Porosanub1f996e02013-09-09 18:56:32 +0300253 *
254 * Return: - 0 if no error occurred
255 * - -ENOMEM if there isn't enough memory to allocate the descriptor
256 * - -ENODEV if DECO0 couldn't be acquired
257 * - -EAGAIN if an error occurred when executing the descriptor
Kim Phillips281922a2012-06-22 19:48:52 -0500258 */
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300259static int deinstantiate_rng(struct device *ctrldev, int state_handle_mask)
Alex Porosanub1f996e02013-09-09 18:56:32 +0300260{
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300261 u32 *desc, status;
262 int sh_idx, ret = 0;
Alex Porosanub1f996e02013-09-09 18:56:32 +0300263
264 desc = kmalloc(CAAM_CMD_SZ * 3, GFP_KERNEL);
265 if (!desc)
266 return -ENOMEM;
267
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300268 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
269 /*
270 * If the corresponding bit is set, then it means the state
271 * handle was initialized by us, and thus it needs to be
272 * deintialized as well
273 */
274 if ((1 << sh_idx) & state_handle_mask) {
275 /*
276 * Create the descriptor for deinstantating this state
277 * handle
278 */
279 build_deinstantiation_desc(desc, sh_idx);
Alex Porosanub1f996e02013-09-09 18:56:32 +0300280
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300281 /* Try to run it through DECO0 */
282 ret = run_descriptor_deco0(ctrldev, desc, &status);
Alex Porosanub1f996e02013-09-09 18:56:32 +0300283
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300284 if (ret || status) {
285 dev_err(ctrldev,
286 "Failed to deinstantiate RNG4 SH%d\n",
287 sh_idx);
288 break;
289 }
290 dev_info(ctrldev, "Deinstantiated RNG4 SH%d\n", sh_idx);
291 }
292 }
Alex Porosanub1f996e02013-09-09 18:56:32 +0300293
294 kfree(desc);
295
296 return ret;
297}
298
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300299static int caam_remove(struct platform_device *pdev)
300{
301 struct device *ctrldev;
302 struct caam_drv_private *ctrlpriv;
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530303 struct caam_ctrl __iomem *ctrl;
Fabio Estevame5580172015-08-12 14:39:38 -0300304 int ring;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300305
306 ctrldev = &pdev->dev;
307 ctrlpriv = dev_get_drvdata(ctrldev);
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530308 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300309
Ruchika Gupta313ea292013-10-25 12:01:01 +0530310 /* Remove platform devices for JobRs */
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300311 for (ring = 0; ring < ctrlpriv->total_jobrs; ring++) {
Ruchika Gupta313ea292013-10-25 12:01:01 +0530312 if (ctrlpriv->jrpdev[ring])
313 of_device_unregister(ctrlpriv->jrpdev[ring]);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300314 }
315
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300316 /* De-initialize RNG state handles initialized by this driver. */
317 if (ctrlpriv->rng4_sh_init)
318 deinstantiate_rng(ctrldev, ctrlpriv->rng4_sh_init);
Alex Porosanub1f996e02013-09-09 18:56:32 +0300319
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300320 /* Shut down debug views */
321#ifdef CONFIG_DEBUG_FS
322 debugfs_remove_recursive(ctrlpriv->dfs_root);
323#endif
324
325 /* Unmap controller region */
Victoria Milhoanf4ec6aa2015-06-15 16:52:58 -0700326 iounmap(ctrl);
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300327
Victoria Milhoan24821c42015-08-05 11:28:37 -0700328 /* shut clocks off before finalizing shutdown */
329 clk_disable_unprepare(ctrlpriv->caam_ipg);
330 clk_disable_unprepare(ctrlpriv->caam_mem);
331 clk_disable_unprepare(ctrlpriv->caam_aclk);
332 clk_disable_unprepare(ctrlpriv->caam_emi_slow);
333
Fabio Estevame5580172015-08-12 14:39:38 -0300334 return 0;
Kim Phillips281922a2012-06-22 19:48:52 -0500335}
336
337/*
Alex Porosanu84cf4822013-09-09 18:56:30 +0300338 * kick_trng - sets the various parameters for enabling the initialization
339 * of the RNG4 block in CAAM
340 * @pdev - pointer to the platform device
341 * @ent_delay - Defines the length (in system clocks) of each entropy sample.
Kim Phillips281922a2012-06-22 19:48:52 -0500342 */
Alex Porosanu84cf4822013-09-09 18:56:30 +0300343static void kick_trng(struct platform_device *pdev, int ent_delay)
Kim Phillips281922a2012-06-22 19:48:52 -0500344{
345 struct device *ctrldev = &pdev->dev;
346 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev);
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530347 struct caam_ctrl __iomem *ctrl;
Kim Phillips281922a2012-06-22 19:48:52 -0500348 struct rng4tst __iomem *r4tst;
349 u32 val;
350
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530351 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl;
352 r4tst = &ctrl->r4tst[0];
Kim Phillips281922a2012-06-22 19:48:52 -0500353
354 /* put RNG4 into program mode */
Horia Geantă261ea052016-05-19 18:11:26 +0300355 clrsetbits_32(&r4tst->rtmctl, 0, RTMCTL_PRGM);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300356
357 /*
358 * Performance-wise, it does not make sense to
359 * set the delay to a value that is lower
360 * than the last one that worked (i.e. the state handles
361 * were instantiated properly. Thus, instead of wasting
362 * time trying to set the values controlling the sample
363 * frequency, the function simply returns.
364 */
365 val = (rd_reg32(&r4tst->rtsdctl) & RTSDCTL_ENT_DLY_MASK)
366 >> RTSDCTL_ENT_DLY_SHIFT;
367 if (ent_delay <= val) {
368 /* put RNG4 into run mode */
Horia Geantă261ea052016-05-19 18:11:26 +0300369 clrsetbits_32(&r4tst->rtmctl, RTMCTL_PRGM, 0);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300370 return;
371 }
372
Kim Phillips281922a2012-06-22 19:48:52 -0500373 val = rd_reg32(&r4tst->rtsdctl);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300374 val = (val & ~RTSDCTL_ENT_DLY_MASK) |
375 (ent_delay << RTSDCTL_ENT_DLY_SHIFT);
Kim Phillips281922a2012-06-22 19:48:52 -0500376 wr_reg32(&r4tst->rtsdctl, val);
Alex Porosanu84cf4822013-09-09 18:56:30 +0300377 /* min. freq. count, equal to 1/4 of the entropy sample length */
378 wr_reg32(&r4tst->rtfrqmin, ent_delay >> 2);
Alex Porosanub061f3f2014-08-11 11:40:15 +0300379 /* disable maximum frequency count */
380 wr_reg32(&r4tst->rtfrqmax, RTFRQMAX_DISABLE);
Alex Porosanue5ffbfc2014-08-11 11:40:17 +0300381 /* read the control register */
382 val = rd_reg32(&r4tst->rtmctl);
383 /*
384 * select raw sampling in both entropy shifter
385 * and statistical checker
386 */
Horia Geantă261ea052016-05-19 18:11:26 +0300387 clrsetbits_32(&val, 0, RTMCTL_SAMP_MODE_RAW_ES_SC);
Kim Phillips281922a2012-06-22 19:48:52 -0500388 /* put RNG4 into run mode */
Horia Geantă261ea052016-05-19 18:11:26 +0300389 clrsetbits_32(&val, RTMCTL_PRGM, 0);
Alex Porosanue5ffbfc2014-08-11 11:40:17 +0300390 /* write back the control register */
391 wr_reg32(&r4tst->rtmctl, val);
Kim Phillips281922a2012-06-22 19:48:52 -0500392}
393
Alex Porosanu82c2f962012-07-11 11:06:11 +0800394/**
395 * caam_get_era() - Return the ERA of the SEC on SoC, based
Alex Porosanu883619a2014-02-06 10:27:19 +0200396 * on "sec-era" propery in the DTS. This property is updated by u-boot.
Alex Porosanu82c2f962012-07-11 11:06:11 +0800397 **/
Alex Porosanu883619a2014-02-06 10:27:19 +0200398int caam_get_era(void)
Alex Porosanu82c2f962012-07-11 11:06:11 +0800399{
Alex Porosanu883619a2014-02-06 10:27:19 +0200400 struct device_node *caam_node;
Alex Porosanue27513e2015-07-17 16:54:51 +0300401 int ret;
402 u32 prop;
Alex Porosanu82c2f962012-07-11 11:06:11 +0800403
Alex Porosanue27513e2015-07-17 16:54:51 +0300404 caam_node = of_find_compatible_node(NULL, NULL, "fsl,sec-v4.0");
405 ret = of_property_read_u32(caam_node, "fsl,sec-era", &prop);
406 of_node_put(caam_node);
407
Arnd Bergmann287980e2016-05-27 23:23:25 +0200408 return ret ? -ENOTSUPP : prop;
Alex Porosanu82c2f962012-07-11 11:06:11 +0800409}
410EXPORT_SYMBOL(caam_get_era);
411
Horia Geantă261ea052016-05-19 18:11:26 +0300412#ifdef CONFIG_DEBUG_FS
413static int caam_debugfs_u64_get(void *data, u64 *val)
414{
415 *val = caam64_to_cpu(*(u64 *)data);
416 return 0;
417}
418
419static int caam_debugfs_u32_get(void *data, u64 *val)
420{
421 *val = caam32_to_cpu(*(u32 *)data);
422 return 0;
423}
424
425DEFINE_SIMPLE_ATTRIBUTE(caam_fops_u32_ro, caam_debugfs_u32_get, NULL, "%llu\n");
426DEFINE_SIMPLE_ATTRIBUTE(caam_fops_u64_ro, caam_debugfs_u64_get, NULL, "%llu\n");
427#endif
428
Kim Phillips8e8ec592011-03-13 16:54:26 +0800429/* Probe routine for CAAM top (controller) level */
Kim Phillips2930d492011-05-14 22:07:55 -0500430static int caam_probe(struct platform_device *pdev)
Kim Phillips8e8ec592011-03-13 16:54:26 +0800431{
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300432 int ret, ring, rspec, gen_sk, ent_delay = RTSDCTL_ENT_DLY_MIN;
Alex Porosanu82c2f962012-07-11 11:06:11 +0800433 u64 caam_id;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800434 struct device *dev;
435 struct device_node *nprop, *np;
436 struct caam_ctrl __iomem *ctrl;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800437 struct caam_drv_private *ctrlpriv;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700438 struct clk *clk;
Kim Phillips23457bc2011-06-05 16:42:54 -0500439#ifdef CONFIG_DEBUG_FS
440 struct caam_perfmon *perfmon;
441#endif
Ruchika Gupta17157c92014-06-23 17:42:33 +0530442 u32 scfgr, comp_params;
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530443 u32 cha_vid_ls;
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530444 int pg_size;
445 int BLOCK_OFFSET = 0;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800446
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300447 ctrlpriv = devm_kzalloc(&pdev->dev, sizeof(*ctrlpriv), GFP_KERNEL);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800448 if (!ctrlpriv)
449 return -ENOMEM;
450
451 dev = &pdev->dev;
452 dev_set_drvdata(dev, ctrlpriv);
453 ctrlpriv->pdev = pdev;
454 nprop = pdev->dev.of_node;
455
Victoria Milhoan24821c42015-08-05 11:28:37 -0700456 /* Enable clocking */
457 clk = caam_drv_identify_clk(&pdev->dev, "ipg");
458 if (IS_ERR(clk)) {
459 ret = PTR_ERR(clk);
460 dev_err(&pdev->dev,
461 "can't identify CAAM ipg clk: %d\n", ret);
Fabio Estevama3c09552015-08-21 13:51:59 -0300462 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700463 }
464 ctrlpriv->caam_ipg = clk;
465
466 clk = caam_drv_identify_clk(&pdev->dev, "mem");
467 if (IS_ERR(clk)) {
468 ret = PTR_ERR(clk);
469 dev_err(&pdev->dev,
470 "can't identify CAAM mem clk: %d\n", ret);
Fabio Estevama3c09552015-08-21 13:51:59 -0300471 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700472 }
473 ctrlpriv->caam_mem = clk;
474
475 clk = caam_drv_identify_clk(&pdev->dev, "aclk");
476 if (IS_ERR(clk)) {
477 ret = PTR_ERR(clk);
478 dev_err(&pdev->dev,
479 "can't identify CAAM aclk clk: %d\n", ret);
Fabio Estevama3c09552015-08-21 13:51:59 -0300480 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700481 }
482 ctrlpriv->caam_aclk = clk;
483
484 clk = caam_drv_identify_clk(&pdev->dev, "emi_slow");
485 if (IS_ERR(clk)) {
486 ret = PTR_ERR(clk);
487 dev_err(&pdev->dev,
488 "can't identify CAAM emi_slow clk: %d\n", ret);
Fabio Estevama3c09552015-08-21 13:51:59 -0300489 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700490 }
491 ctrlpriv->caam_emi_slow = clk;
492
493 ret = clk_prepare_enable(ctrlpriv->caam_ipg);
494 if (ret < 0) {
495 dev_err(&pdev->dev, "can't enable CAAM ipg clock: %d\n", ret);
Fabio Estevam31f44d12015-08-21 13:51:58 -0300496 return ret;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700497 }
498
499 ret = clk_prepare_enable(ctrlpriv->caam_mem);
500 if (ret < 0) {
501 dev_err(&pdev->dev, "can't enable CAAM secure mem clock: %d\n",
502 ret);
Fabio Estevam31f44d12015-08-21 13:51:58 -0300503 goto disable_caam_ipg;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700504 }
505
506 ret = clk_prepare_enable(ctrlpriv->caam_aclk);
507 if (ret < 0) {
508 dev_err(&pdev->dev, "can't enable CAAM aclk clock: %d\n", ret);
Fabio Estevam31f44d12015-08-21 13:51:58 -0300509 goto disable_caam_mem;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700510 }
511
512 ret = clk_prepare_enable(ctrlpriv->caam_emi_slow);
513 if (ret < 0) {
514 dev_err(&pdev->dev, "can't enable CAAM emi slow clock: %d\n",
515 ret);
Fabio Estevam31f44d12015-08-21 13:51:58 -0300516 goto disable_caam_aclk;
Victoria Milhoan24821c42015-08-05 11:28:37 -0700517 }
518
Kim Phillips8e8ec592011-03-13 16:54:26 +0800519 /* Get configuration properties from device tree */
520 /* First, get register page */
521 ctrl = of_iomap(nprop, 0);
522 if (ctrl == NULL) {
523 dev_err(dev, "caam: of_iomap() failed\n");
Fabio Estevam31f44d12015-08-21 13:51:58 -0300524 ret = -ENOMEM;
525 goto disable_caam_emi_slow;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800526 }
Horia Geantă261ea052016-05-19 18:11:26 +0300527
528 caam_little_end = !(bool)(rd_reg32(&ctrl->perfmon.status) &
529 (CSTA_PLEND | CSTA_ALT_PLEND));
530
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530531 /* Finding the page size for using the CTPR_MS register */
532 comp_params = rd_reg32(&ctrl->perfmon.comp_parms_ms);
533 pg_size = (comp_params & CTPR_MS_PG_SZ_MASK) >> CTPR_MS_PG_SZ_SHIFT;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800534
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530535 /* Allocating the BLOCK_OFFSET based on the supported page size on
536 * the platform
537 */
538 if (pg_size == 0)
539 BLOCK_OFFSET = PG_SIZE_4K;
540 else
541 BLOCK_OFFSET = PG_SIZE_64K;
542
543 ctrlpriv->ctrl = (struct caam_ctrl __force *)ctrl;
544 ctrlpriv->assure = (struct caam_assurance __force *)
545 ((uint8_t *)ctrl +
546 BLOCK_OFFSET * ASSURE_BLOCK_NUMBER
547 );
548 ctrlpriv->deco = (struct caam_deco __force *)
549 ((uint8_t *)ctrl +
550 BLOCK_OFFSET * DECO_BLOCK_NUMBER
551 );
Kim Phillips8e8ec592011-03-13 16:54:26 +0800552
553 /* Get the IRQ of the controller (for security violations only) */
Thierry Redingf7578492013-09-18 15:24:44 +0200554 ctrlpriv->secvio_irq = irq_of_parse_and_map(nprop, 0);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800555
556 /*
557 * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel,
Kim Phillipse13af182012-06-22 19:48:51 -0500558 * long pointers in master configuration register
Kim Phillips8e8ec592011-03-13 16:54:26 +0800559 */
Victoria Milhoan509da8f2015-08-05 11:28:36 -0700560 clrsetbits_32(&ctrl->mcr, MCFGR_AWCACHE_MASK, MCFGR_AWCACHE_CACH |
Horia Geant?624144a2016-01-12 17:14:10 +0200561 MCFGR_AWCACHE_BUFF | MCFGR_WDENABLE | MCFGR_LARGE_BURST |
Horia Geant?e7a71042016-01-12 17:59:29 +0200562 (sizeof(dma_addr_t) == sizeof(u64) ? MCFGR_LONG_PTR : 0));
Kim Phillips8e8ec592011-03-13 16:54:26 +0800563
Ruchika Gupta17157c92014-06-23 17:42:33 +0530564 /*
565 * Read the Compile Time paramters and SCFGR to determine
566 * if Virtualization is enabled for this platform
567 */
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530568 scfgr = rd_reg32(&ctrl->scfgr);
Ruchika Gupta17157c92014-06-23 17:42:33 +0530569
570 ctrlpriv->virt_en = 0;
571 if (comp_params & CTPR_MS_VIRT_EN_INCL) {
572 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or
573 * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SCFGR_VIRT_EN = 1
574 */
575 if ((comp_params & CTPR_MS_VIRT_EN_POR) ||
576 (!(comp_params & CTPR_MS_VIRT_EN_POR) &&
577 (scfgr & SCFGR_VIRT_EN)))
578 ctrlpriv->virt_en = 1;
579 } else {
580 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */
581 if (comp_params & CTPR_MS_VIRT_EN_POR)
582 ctrlpriv->virt_en = 1;
583 }
584
585 if (ctrlpriv->virt_en == 1)
Horia Geantă261ea052016-05-19 18:11:26 +0300586 clrsetbits_32(&ctrl->jrstart, 0, JRSTART_JR0_START |
587 JRSTART_JR1_START | JRSTART_JR2_START |
588 JRSTART_JR3_START);
Ruchika Gupta17157c92014-06-23 17:42:33 +0530589
Kim Phillips8e8ec592011-03-13 16:54:26 +0800590 if (sizeof(dma_addr_t) == sizeof(u64))
Kim Phillipse13af182012-06-22 19:48:51 -0500591 if (of_device_is_compatible(nprop, "fsl,sec-v5.0"))
Horia Geantaa2ac2872014-07-11 15:34:47 +0300592 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(40));
Kim Phillipse13af182012-06-22 19:48:51 -0500593 else
Horia Geantaa2ac2872014-07-11 15:34:47 +0300594 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(36));
Kim Phillipse13af182012-06-22 19:48:51 -0500595 else
Horia Geantaa2ac2872014-07-11 15:34:47 +0300596 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
Kim Phillips8e8ec592011-03-13 16:54:26 +0800597
Kim Phillips8e8ec592011-03-13 16:54:26 +0800598 /*
599 * Detect and enable JobRs
600 * First, find out how many ring spec'ed, allocate references
601 * for all, then go probe each one.
602 */
603 rspec = 0;
Nitesh Lal0a63b092014-02-09 09:59:13 +0800604 for_each_available_child_of_node(nprop, np)
605 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
606 of_device_is_compatible(np, "fsl,sec4.0-job-ring"))
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800607 rspec++;
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800608
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300609 ctrlpriv->jrpdev = devm_kcalloc(&pdev->dev, rspec,
610 sizeof(*ctrlpriv->jrpdev), GFP_KERNEL);
Ruchika Gupta313ea292013-10-25 12:01:01 +0530611 if (ctrlpriv->jrpdev == NULL) {
Fabio Estevam31f44d12015-08-21 13:51:58 -0300612 ret = -ENOMEM;
613 goto iounmap_ctrl;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800614 }
615
616 ring = 0;
617 ctrlpriv->total_jobrs = 0;
Nitesh Lal0a63b092014-02-09 09:59:13 +0800618 for_each_available_child_of_node(nprop, np)
619 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") ||
620 of_device_is_compatible(np, "fsl,sec4.0-job-ring")) {
Ruchika Gupta313ea292013-10-25 12:01:01 +0530621 ctrlpriv->jrpdev[ring] =
622 of_platform_device_create(np, NULL, dev);
623 if (!ctrlpriv->jrpdev[ring]) {
624 pr_warn("JR%d Platform device creation error\n",
625 ring);
626 continue;
627 }
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530628 ctrlpriv->jr[ring] = (struct caam_job_ring __force *)
629 ((uint8_t *)ctrl +
630 (ring + JR_BLOCK_NUMBER) *
631 BLOCK_OFFSET
632 );
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800633 ctrlpriv->total_jobrs++;
634 ring++;
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530635 }
Kim Phillips8e8ec592011-03-13 16:54:26 +0800636
637 /* Check to see if QI present. If so, enable */
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530638 ctrlpriv->qi_present =
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530639 !!(rd_reg32(&ctrl->perfmon.comp_parms_ms) &
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530640 CTPR_MS_QI_MASK);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800641 if (ctrlpriv->qi_present) {
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530642 ctrlpriv->qi = (struct caam_queue_if __force *)
643 ((uint8_t *)ctrl +
644 BLOCK_OFFSET * QI_BLOCK_NUMBER
645 );
Kim Phillips8e8ec592011-03-13 16:54:26 +0800646 /* This is all that's required to physically enable QI */
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530647 wr_reg32(&ctrlpriv->qi->qi_control_lo, QICTL_DQEN);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800648 }
649
650 /* If no QI and no rings specified, quit and go home */
651 if ((!ctrlpriv->qi_present) && (!ctrlpriv->total_jobrs)) {
652 dev_err(dev, "no queues configured, terminating\n");
Fabio Estevam31f44d12015-08-21 13:51:58 -0300653 ret = -ENOMEM;
654 goto caam_remove;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800655 }
656
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530657 cha_vid_ls = rd_reg32(&ctrl->perfmon.cha_id_ls);
Ruchika Gupta986dfbc2013-04-26 15:44:54 +0530658
Kim Phillips281922a2012-06-22 19:48:52 -0500659 /*
Ruchika Gupta986dfbc2013-04-26 15:44:54 +0530660 * If SEC has RNG version >= 4 and RNG state handle has not been
Alex Porosanu84cf4822013-09-09 18:56:30 +0300661 * already instantiated, do RNG instantiation
Kim Phillips281922a2012-06-22 19:48:52 -0500662 */
Ruchika Guptaeb1139c2014-06-23 15:08:28 +0530663 if ((cha_vid_ls & CHA_ID_LS_RNG_MASK) >> CHA_ID_LS_RNG_SHIFT >= 4) {
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300664 ctrlpriv->rng4_sh_init =
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530665 rd_reg32(&ctrl->r4tst[0].rdsta);
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300666 /*
667 * If the secure keys (TDKEK, JDKEK, TDSK), were already
668 * generated, signal this to the function that is instantiating
669 * the state handles. An error would occur if RNG4 attempts
670 * to regenerate these keys before the next POR.
671 */
672 gen_sk = ctrlpriv->rng4_sh_init & RDSTA_SKVN ? 0 : 1;
673 ctrlpriv->rng4_sh_init &= RDSTA_IFMASK;
Alex Porosanu84cf4822013-09-09 18:56:30 +0300674 do {
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300675 int inst_handles =
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530676 rd_reg32(&ctrl->r4tst[0].rdsta) &
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300677 RDSTA_IFMASK;
678 /*
679 * If either SH were instantiated by somebody else
680 * (e.g. u-boot) then it is assumed that the entropy
681 * parameters are properly set and thus the function
682 * setting these (kick_trng(...)) is skipped.
683 * Also, if a handle was instantiated, do not change
684 * the TRNG parameters.
685 */
686 if (!(ctrlpriv->rng4_sh_init || inst_handles)) {
Alex Porosanueeaa1722014-08-11 11:40:16 +0300687 dev_info(dev,
688 "Entropy delay = %u\n",
689 ent_delay);
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300690 kick_trng(pdev, ent_delay);
691 ent_delay += 400;
692 }
693 /*
694 * if instantiate_rng(...) fails, the loop will rerun
695 * and the kick_trng(...) function will modfiy the
696 * upper and lower limits of the entropy sampling
697 * interval, leading to a sucessful initialization of
698 * the RNG.
699 */
700 ret = instantiate_rng(dev, inst_handles,
701 gen_sk);
Alex Porosanueeaa1722014-08-11 11:40:16 +0300702 if (ret == -EAGAIN)
703 /*
704 * if here, the loop will rerun,
705 * so don't hog the CPU
706 */
707 cpu_relax();
Alex Porosanu04cddbf2013-09-09 18:56:31 +0300708 } while ((ret == -EAGAIN) && (ent_delay < RTSDCTL_ENT_DLY_MAX));
Kim Phillips281922a2012-06-22 19:48:52 -0500709 if (ret) {
Alex Porosanu84cf4822013-09-09 18:56:30 +0300710 dev_err(dev, "failed to instantiate RNG");
Fabio Estevam31f44d12015-08-21 13:51:58 -0300711 goto caam_remove;
Kim Phillips281922a2012-06-22 19:48:52 -0500712 }
Alex Porosanu1005bcc2013-09-09 18:56:34 +0300713 /*
714 * Set handles init'ed by this module as the complement of the
715 * already initialized ones
716 */
717 ctrlpriv->rng4_sh_init = ~ctrlpriv->rng4_sh_init & RDSTA_IFMASK;
Vakul Garg575c1bd2013-03-12 13:55:21 +0530718
719 /* Enable RDB bit so that RNG works faster */
Horia Geantă261ea052016-05-19 18:11:26 +0300720 clrsetbits_32(&ctrl->scfgr, 0, SCFGR_RDBENABLE);
Kim Phillips281922a2012-06-22 19:48:52 -0500721 }
722
Kim Phillips8e8ec592011-03-13 16:54:26 +0800723 /* NOTE: RTIC detection ought to go here, around Si time */
724
Nitesh Narayan Lalfb4562b2014-09-01 15:00:44 +0530725 caam_id = (u64)rd_reg32(&ctrl->perfmon.caam_id_ms) << 32 |
726 (u64)rd_reg32(&ctrl->perfmon.caam_id_ls);
Alex Porosanu82c2f962012-07-11 11:06:11 +0800727
Kim Phillips8e8ec592011-03-13 16:54:26 +0800728 /* Report "alive" for developer to see */
Alex Porosanu82c2f962012-07-11 11:06:11 +0800729 dev_info(dev, "device ID = 0x%016llx (Era %d)\n", caam_id,
Alex Porosanu883619a2014-02-06 10:27:19 +0200730 caam_get_era());
Kim Phillips8e8ec592011-03-13 16:54:26 +0800731 dev_info(dev, "job rings = %d, qi = %d\n",
732 ctrlpriv->total_jobrs, ctrlpriv->qi_present);
733
734#ifdef CONFIG_DEBUG_FS
735 /*
736 * FIXME: needs better naming distinction, as some amalgamation of
737 * "caam" and nprop->full_name. The OF name isn't distinctive,
738 * but does separate instances
739 */
740 perfmon = (struct caam_perfmon __force *)&ctrl->perfmon;
741
Nitesh Narayan Lal178f8272014-07-01 19:54:54 +0530742 ctrlpriv->dfs_root = debugfs_create_dir(dev_name(dev), NULL);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800743 ctrlpriv->ctl = debugfs_create_dir("ctl", ctrlpriv->dfs_root);
744
745 /* Controller-level - performance monitor counters */
Horia Geantă261ea052016-05-19 18:11:26 +0300746
Kim Phillips8e8ec592011-03-13 16:54:26 +0800747 ctrlpriv->ctl_rq_dequeued =
Horia Geantă261ea052016-05-19 18:11:26 +0300748 debugfs_create_file("rq_dequeued",
749 S_IRUSR | S_IRGRP | S_IROTH,
750 ctrlpriv->ctl, &perfmon->req_dequeued,
751 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800752 ctrlpriv->ctl_ob_enc_req =
Horia Geantă261ea052016-05-19 18:11:26 +0300753 debugfs_create_file("ob_rq_encrypted",
754 S_IRUSR | S_IRGRP | S_IROTH,
755 ctrlpriv->ctl, &perfmon->ob_enc_req,
756 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800757 ctrlpriv->ctl_ib_dec_req =
Horia Geantă261ea052016-05-19 18:11:26 +0300758 debugfs_create_file("ib_rq_decrypted",
759 S_IRUSR | S_IRGRP | S_IROTH,
760 ctrlpriv->ctl, &perfmon->ib_dec_req,
761 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800762 ctrlpriv->ctl_ob_enc_bytes =
Horia Geantă261ea052016-05-19 18:11:26 +0300763 debugfs_create_file("ob_bytes_encrypted",
764 S_IRUSR | S_IRGRP | S_IROTH,
765 ctrlpriv->ctl, &perfmon->ob_enc_bytes,
766 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800767 ctrlpriv->ctl_ob_prot_bytes =
Horia Geantă261ea052016-05-19 18:11:26 +0300768 debugfs_create_file("ob_bytes_protected",
769 S_IRUSR | S_IRGRP | S_IROTH,
770 ctrlpriv->ctl, &perfmon->ob_prot_bytes,
771 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800772 ctrlpriv->ctl_ib_dec_bytes =
Horia Geantă261ea052016-05-19 18:11:26 +0300773 debugfs_create_file("ib_bytes_decrypted",
774 S_IRUSR | S_IRGRP | S_IROTH,
775 ctrlpriv->ctl, &perfmon->ib_dec_bytes,
776 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800777 ctrlpriv->ctl_ib_valid_bytes =
Horia Geantă261ea052016-05-19 18:11:26 +0300778 debugfs_create_file("ib_bytes_validated",
779 S_IRUSR | S_IRGRP | S_IROTH,
780 ctrlpriv->ctl, &perfmon->ib_valid_bytes,
781 &caam_fops_u64_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800782
783 /* Controller level - global status values */
784 ctrlpriv->ctl_faultaddr =
Horia Geantă261ea052016-05-19 18:11:26 +0300785 debugfs_create_file("fault_addr",
786 S_IRUSR | S_IRGRP | S_IROTH,
787 ctrlpriv->ctl, &perfmon->faultaddr,
788 &caam_fops_u32_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800789 ctrlpriv->ctl_faultdetail =
Horia Geantă261ea052016-05-19 18:11:26 +0300790 debugfs_create_file("fault_detail",
791 S_IRUSR | S_IRGRP | S_IROTH,
792 ctrlpriv->ctl, &perfmon->faultdetail,
793 &caam_fops_u32_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800794 ctrlpriv->ctl_faultstatus =
Horia Geantă261ea052016-05-19 18:11:26 +0300795 debugfs_create_file("fault_status",
796 S_IRUSR | S_IRGRP | S_IROTH,
797 ctrlpriv->ctl, &perfmon->status,
798 &caam_fops_u32_ro);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800799
800 /* Internal covering keys (useful in non-secure mode only) */
801 ctrlpriv->ctl_kek_wrap.data = &ctrlpriv->ctrl->kek[0];
802 ctrlpriv->ctl_kek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
803 ctrlpriv->ctl_kek = debugfs_create_blob("kek",
Al Viroeda65cc2011-07-24 04:32:53 -0400804 S_IRUSR |
Kim Phillips8e8ec592011-03-13 16:54:26 +0800805 S_IRGRP | S_IROTH,
806 ctrlpriv->ctl,
807 &ctrlpriv->ctl_kek_wrap);
808
809 ctrlpriv->ctl_tkek_wrap.data = &ctrlpriv->ctrl->tkek[0];
810 ctrlpriv->ctl_tkek_wrap.size = KEK_KEY_SIZE * sizeof(u32);
811 ctrlpriv->ctl_tkek = debugfs_create_blob("tkek",
Al Viroeda65cc2011-07-24 04:32:53 -0400812 S_IRUSR |
Kim Phillips8e8ec592011-03-13 16:54:26 +0800813 S_IRGRP | S_IROTH,
814 ctrlpriv->ctl,
815 &ctrlpriv->ctl_tkek_wrap);
816
817 ctrlpriv->ctl_tdsk_wrap.data = &ctrlpriv->ctrl->tdsk[0];
818 ctrlpriv->ctl_tdsk_wrap.size = KEK_KEY_SIZE * sizeof(u32);
819 ctrlpriv->ctl_tdsk = debugfs_create_blob("tdsk",
Al Viroeda65cc2011-07-24 04:32:53 -0400820 S_IRUSR |
Kim Phillips8e8ec592011-03-13 16:54:26 +0800821 S_IRGRP | S_IROTH,
822 ctrlpriv->ctl,
823 &ctrlpriv->ctl_tdsk_wrap);
824#endif
825 return 0;
Fabio Estevam31f44d12015-08-21 13:51:58 -0300826
827caam_remove:
828 caam_remove(pdev);
829iounmap_ctrl:
830 iounmap(ctrl);
831disable_caam_emi_slow:
832 clk_disable_unprepare(ctrlpriv->caam_emi_slow);
833disable_caam_aclk:
834 clk_disable_unprepare(ctrlpriv->caam_aclk);
835disable_caam_mem:
836 clk_disable_unprepare(ctrlpriv->caam_mem);
837disable_caam_ipg:
838 clk_disable_unprepare(ctrlpriv->caam_ipg);
839 return ret;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800840}
841
842static struct of_device_id caam_match[] = {
843 {
Kim Phillips54e198d2011-03-23 21:15:44 +0800844 .compatible = "fsl,sec-v4.0",
Kim Phillips8e8ec592011-03-13 16:54:26 +0800845 },
Shengzhou Liua0ea0f62012-03-21 14:09:10 +0800846 {
847 .compatible = "fsl,sec4.0",
848 },
Kim Phillips8e8ec592011-03-13 16:54:26 +0800849 {},
850};
851MODULE_DEVICE_TABLE(of, caam_match);
852
Kim Phillips2930d492011-05-14 22:07:55 -0500853static struct platform_driver caam_driver = {
Kim Phillips8e8ec592011-03-13 16:54:26 +0800854 .driver = {
855 .name = "caam",
Kim Phillips8e8ec592011-03-13 16:54:26 +0800856 .of_match_table = caam_match,
857 },
858 .probe = caam_probe,
Greg Kroah-Hartman49cfe4d2012-12-21 13:14:09 -0800859 .remove = caam_remove,
Kim Phillips8e8ec592011-03-13 16:54:26 +0800860};
861
Axel Lin741e8c22011-11-26 21:26:19 +0800862module_platform_driver(caam_driver);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800863
864MODULE_LICENSE("GPL");
865MODULE_DESCRIPTION("FSL CAAM request backend");
866MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");