Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 1 | /* * CAAM control-plane driver backend |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 2 | * Controller-level driver, kernel property detection, initialization |
| 3 | * |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 4 | * Copyright 2008-2012 Freescale Semiconductor, Inc. |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
Himangi Saraogi | 4776d38 | 2014-05-27 23:55:48 +0530 | [diff] [blame] | 7 | #include <linux/device.h> |
Rob Herring | 5af5073 | 2013-09-17 14:28:33 -0500 | [diff] [blame] | 8 | #include <linux/of_address.h> |
| 9 | #include <linux/of_irq.h> |
Horia Geantă | c056d91 | 2017-09-01 17:12:59 +0300 | [diff] [blame] | 10 | #include <linux/sys_soc.h> |
Rob Herring | 5af5073 | 2013-09-17 14:28:33 -0500 | [diff] [blame] | 11 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 12 | #include "compat.h" |
| 13 | #include "regs.h" |
| 14 | #include "intern.h" |
| 15 | #include "jr.h" |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 16 | #include "desc_constr.h" |
Baoyou Xie | 1ac6b73 | 2016-08-26 17:56:24 +0800 | [diff] [blame] | 17 | #include "ctrl.h" |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 18 | |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 19 | bool caam_little_end; |
| 20 | EXPORT_SYMBOL(caam_little_end); |
Horia Geantă | 297b9ce | 2017-07-18 18:30:47 +0300 | [diff] [blame] | 21 | bool caam_dpaa2; |
| 22 | EXPORT_SYMBOL(caam_dpaa2); |
Horia Geantă | c056d91 | 2017-09-01 17:12:59 +0300 | [diff] [blame] | 23 | bool caam_imx; |
| 24 | EXPORT_SYMBOL(caam_imx); |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 25 | |
Horia Geantă | 67c2315d | 2017-03-17 12:06:01 +0200 | [diff] [blame] | 26 | #ifdef CONFIG_CAAM_QI |
| 27 | #include "qi.h" |
| 28 | #endif |
| 29 | |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 30 | /* |
Horia Geant? | 6c3af95 | 2015-08-17 15:24:10 +0300 | [diff] [blame] | 31 | * i.MX targets tend to have clock control subsystems that can |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 32 | * enable/disable clocking to our device. |
| 33 | */ |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 34 | static inline struct clk *caam_drv_identify_clk(struct device *dev, |
| 35 | char *clk_name) |
| 36 | { |
Horia Geantă | c056d91 | 2017-09-01 17:12:59 +0300 | [diff] [blame] | 37 | return caam_imx ? devm_clk_get(dev, clk_name) : NULL; |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 38 | } |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 39 | |
| 40 | /* |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 41 | * Descriptor to instantiate RNG State Handle 0 in normal mode and |
| 42 | * load the JDKEK, TDKEK and TDSK registers |
| 43 | */ |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 44 | static void build_instantiation_desc(u32 *desc, int handle, int do_sk) |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 45 | { |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 46 | u32 *jump_cmd, op_flags; |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 47 | |
| 48 | init_job_desc(desc, 0); |
| 49 | |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 50 | op_flags = OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG | |
| 51 | (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INIT; |
| 52 | |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 53 | /* INIT RNG in non-test mode */ |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 54 | append_operation(desc, op_flags); |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 55 | |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 56 | if (!handle && do_sk) { |
| 57 | /* |
| 58 | * For SH0, Secure Keys must be generated as well |
| 59 | */ |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 60 | |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 61 | /* wait for done */ |
| 62 | jump_cmd = append_jump(desc, JUMP_CLASS_CLASS1); |
| 63 | set_jump_tgt_here(desc, jump_cmd); |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 64 | |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 65 | /* |
| 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 Porosanu | d5e4e99 | 2013-09-09 18:56:28 +0300 | [diff] [blame] | 75 | |
| 76 | append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT); |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 77 | } |
| 78 | |
Alex Porosanu | b1f996e0 | 2013-09-09 18:56:32 +0300 | [diff] [blame] | 79 | /* Descriptor for deinstantiation of State Handle 0 of the RNG block. */ |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 80 | static void build_deinstantiation_desc(u32 *desc, int handle) |
Alex Porosanu | b1f996e0 | 2013-09-09 18:56:32 +0300 | [diff] [blame] | 81 | { |
| 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 Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 86 | (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INITFINAL); |
Alex Porosanu | b1f996e0 | 2013-09-09 18:56:32 +0300 | [diff] [blame] | 87 | |
| 88 | append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT); |
| 89 | } |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 90 | |
| 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 Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 95 | * @status - descriptor status, after being run |
| 96 | * |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 97 | * 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 Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 101 | static inline int run_descriptor_deco0(struct device *ctrldev, u32 *desc, |
| 102 | u32 *status) |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 103 | { |
Ruchika Gupta | 997ad29 | 2013-07-04 11:26:03 +0530 | [diff] [blame] | 104 | struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev); |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 105 | struct caam_ctrl __iomem *ctrl = ctrlpriv->ctrl; |
| 106 | struct caam_deco __iomem *deco = ctrlpriv->deco; |
Ruchika Gupta | 997ad29 | 2013-07-04 11:26:03 +0530 | [diff] [blame] | 107 | unsigned int timeout = 100000; |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 108 | u32 deco_dbg_reg, flags; |
Alex Porosanu | b1f996e0 | 2013-09-09 18:56:32 +0300 | [diff] [blame] | 109 | int i; |
Ruchika Gupta | 997ad29 | 2013-07-04 11:26:03 +0530 | [diff] [blame] | 110 | |
Ruchika Gupta | 17157c9 | 2014-06-23 17:42:33 +0530 | [diff] [blame] | 111 | |
Horia Geanta | 8f1da7b | 2014-07-21 16:03:21 +0300 | [diff] [blame] | 112 | if (ctrlpriv->virt_en == 1) { |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 113 | clrsetbits_32(&ctrl->deco_rsr, 0, DECORSR_JR0); |
Ruchika Gupta | 17157c9 | 2014-06-23 17:42:33 +0530 | [diff] [blame] | 114 | |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 115 | while (!(rd_reg32(&ctrl->deco_rsr) & DECORSR_VALID) && |
Horia Geanta | 8f1da7b | 2014-07-21 16:03:21 +0300 | [diff] [blame] | 116 | --timeout) |
| 117 | cpu_relax(); |
| 118 | |
| 119 | timeout = 100000; |
| 120 | } |
Ruchika Gupta | 17157c9 | 2014-06-23 17:42:33 +0530 | [diff] [blame] | 121 | |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 122 | clrsetbits_32(&ctrl->deco_rq, 0, DECORR_RQD0ENABLE); |
Ruchika Gupta | 997ad29 | 2013-07-04 11:26:03 +0530 | [diff] [blame] | 123 | |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 124 | while (!(rd_reg32(&ctrl->deco_rq) & DECORR_DEN0) && |
Ruchika Gupta | 997ad29 | 2013-07-04 11:26:03 +0530 | [diff] [blame] | 125 | --timeout) |
| 126 | cpu_relax(); |
| 127 | |
| 128 | if (!timeout) { |
| 129 | dev_err(ctrldev, "failed to acquire DECO 0\n"); |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 130 | clrsetbits_32(&ctrl->deco_rq, DECORR_RQD0ENABLE, 0); |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 131 | return -ENODEV; |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 132 | } |
| 133 | |
Ruchika Gupta | 997ad29 | 2013-07-04 11:26:03 +0530 | [diff] [blame] | 134 | for (i = 0; i < desc_len(desc); i++) |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 135 | wr_reg32(&deco->descbuf[i], caam32_to_cpu(*(desc + i))); |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 136 | |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 137 | 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ă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 146 | clrsetbits_32(&deco->jr_ctl_hi, 0, flags); |
Ruchika Gupta | 997ad29 | 2013-07-04 11:26:03 +0530 | [diff] [blame] | 147 | |
| 148 | timeout = 10000000; |
Alex Porosanu | 84cf482 | 2013-09-09 18:56:30 +0300 | [diff] [blame] | 149 | do { |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 150 | deco_dbg_reg = rd_reg32(&deco->desc_dbg); |
Alex Porosanu | 84cf482 | 2013-09-09 18:56:30 +0300 | [diff] [blame] | 151 | /* |
| 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 Gupta | 997ad29 | 2013-07-04 11:26:03 +0530 | [diff] [blame] | 158 | cpu_relax(); |
Alex Porosanu | 84cf482 | 2013-09-09 18:56:30 +0300 | [diff] [blame] | 159 | } while ((deco_dbg_reg & DESC_DBG_DECO_STAT_VALID) && --timeout); |
Ruchika Gupta | 997ad29 | 2013-07-04 11:26:03 +0530 | [diff] [blame] | 160 | |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 161 | *status = rd_reg32(&deco->op_status_hi) & |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 162 | DECO_OP_STATUS_HI_ERR_MASK; |
| 163 | |
Ruchika Gupta | 17157c9 | 2014-06-23 17:42:33 +0530 | [diff] [blame] | 164 | if (ctrlpriv->virt_en == 1) |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 165 | clrsetbits_32(&ctrl->deco_rsr, DECORSR_JR0, 0); |
Ruchika Gupta | 17157c9 | 2014-06-23 17:42:33 +0530 | [diff] [blame] | 166 | |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 167 | /* Mark the DECO as free */ |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 168 | clrsetbits_32(&ctrl->deco_rq, DECORR_RQD0ENABLE, 0); |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 169 | |
| 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 Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 180 | * @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 Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 188 | * 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 Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 195 | static int instantiate_rng(struct device *ctrldev, int state_handle_mask, |
| 196 | int gen_sk) |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 197 | { |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 198 | struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev); |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 199 | struct caam_ctrl __iomem *ctrl; |
Horia Geant? | 62743a4 | 2015-07-17 16:54:53 +0300 | [diff] [blame] | 200 | u32 *desc, status = 0, rdsta_val; |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 201 | int ret = 0, sh_idx; |
| 202 | |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 203 | ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl; |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 204 | desc = kmalloc(CAAM_CMD_SZ * 7, GFP_KERNEL); |
| 205 | if (!desc) |
| 206 | return -ENOMEM; |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 207 | |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 208 | 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 Stoica | 467707b | 2015-01-21 11:53:31 +0200 | [diff] [blame] | 231 | rdsta_val = rd_reg32(&ctrl->r4tst[0].rdsta) & RDSTA_IFMASK; |
Horia Geant? | 62743a4 | 2015-07-17 16:54:53 +0300 | [diff] [blame] | 232 | if ((status && status != JRSTA_SSRC_JUMP_HALT_CC) || |
| 233 | !(rdsta_val & (1 << sh_idx))) |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 234 | ret = -EAGAIN; |
| 235 | if (ret) |
| 236 | break; |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 237 | 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 Gupta | 997ad29 | 2013-07-04 11:26:03 +0530 | [diff] [blame] | 240 | } |
| 241 | |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 242 | kfree(desc); |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 243 | |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 244 | return ret; |
| 245 | } |
| 246 | |
| 247 | /* |
Alex Porosanu | b1f996e0 | 2013-09-09 18:56:32 +0300 | [diff] [blame] | 248 | * deinstantiate_rng - builds and executes a descriptor on DECO0, |
| 249 | * which deinitializes the RNG block. |
| 250 | * @ctrldev - pointer to device |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 251 | * @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 Porosanu | b1f996e0 | 2013-09-09 18:56:32 +0300 | [diff] [blame] | 254 | * |
| 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 Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 259 | */ |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 260 | static int deinstantiate_rng(struct device *ctrldev, int state_handle_mask) |
Alex Porosanu | b1f996e0 | 2013-09-09 18:56:32 +0300 | [diff] [blame] | 261 | { |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 262 | u32 *desc, status; |
| 263 | int sh_idx, ret = 0; |
Alex Porosanu | b1f996e0 | 2013-09-09 18:56:32 +0300 | [diff] [blame] | 264 | |
| 265 | desc = kmalloc(CAAM_CMD_SZ * 3, GFP_KERNEL); |
| 266 | if (!desc) |
| 267 | return -ENOMEM; |
| 268 | |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 269 | 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 |
Masahiro Yamada | 1cce200 | 2017-02-27 14:29:45 -0800 | [diff] [blame] | 273 | * deinitialized as well |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 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 Porosanu | b1f996e0 | 2013-09-09 18:56:32 +0300 | [diff] [blame] | 281 | |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 282 | /* Try to run it through DECO0 */ |
| 283 | ret = run_descriptor_deco0(ctrldev, desc, &status); |
Alex Porosanu | b1f996e0 | 2013-09-09 18:56:32 +0300 | [diff] [blame] | 284 | |
Horia Geantă | 40c98cb | 2017-04-05 11:41:03 +0300 | [diff] [blame] | 285 | if (ret || |
| 286 | (status && status != JRSTA_SSRC_JUMP_HALT_CC)) { |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 287 | dev_err(ctrldev, |
| 288 | "Failed to deinstantiate RNG4 SH%d\n", |
| 289 | sh_idx); |
| 290 | break; |
| 291 | } |
| 292 | dev_info(ctrldev, "Deinstantiated RNG4 SH%d\n", sh_idx); |
| 293 | } |
| 294 | } |
Alex Porosanu | b1f996e0 | 2013-09-09 18:56:32 +0300 | [diff] [blame] | 295 | |
| 296 | kfree(desc); |
| 297 | |
| 298 | return ret; |
| 299 | } |
| 300 | |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 301 | static int caam_remove(struct platform_device *pdev) |
| 302 | { |
| 303 | struct device *ctrldev; |
| 304 | struct caam_drv_private *ctrlpriv; |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 305 | struct caam_ctrl __iomem *ctrl; |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 306 | |
| 307 | ctrldev = &pdev->dev; |
| 308 | ctrlpriv = dev_get_drvdata(ctrldev); |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 309 | ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl; |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 310 | |
Horia Geantă | ec36060 | 2017-04-03 18:12:04 +0300 | [diff] [blame] | 311 | /* Remove platform devices under the crypto node */ |
| 312 | of_platform_depopulate(ctrldev); |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 313 | |
Horia Geantă | 67c2315d | 2017-03-17 12:06:01 +0200 | [diff] [blame] | 314 | #ifdef CONFIG_CAAM_QI |
| 315 | if (ctrlpriv->qidev) |
| 316 | caam_qi_shutdown(ctrlpriv->qidev); |
| 317 | #endif |
| 318 | |
Horia Geantă | 297b9ce | 2017-07-18 18:30:47 +0300 | [diff] [blame] | 319 | /* |
| 320 | * De-initialize RNG state handles initialized by this driver. |
| 321 | * In case of DPAA 2.x, RNG is managed by MC firmware. |
| 322 | */ |
| 323 | if (!caam_dpaa2 && ctrlpriv->rng4_sh_init) |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 324 | deinstantiate_rng(ctrldev, ctrlpriv->rng4_sh_init); |
Alex Porosanu | b1f996e0 | 2013-09-09 18:56:32 +0300 | [diff] [blame] | 325 | |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 326 | /* Shut down debug views */ |
| 327 | #ifdef CONFIG_DEBUG_FS |
| 328 | debugfs_remove_recursive(ctrlpriv->dfs_root); |
| 329 | #endif |
| 330 | |
| 331 | /* Unmap controller region */ |
Victoria Milhoan | f4ec6aa | 2015-06-15 16:52:58 -0700 | [diff] [blame] | 332 | iounmap(ctrl); |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 333 | |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 334 | /* shut clocks off before finalizing shutdown */ |
| 335 | clk_disable_unprepare(ctrlpriv->caam_ipg); |
| 336 | clk_disable_unprepare(ctrlpriv->caam_mem); |
| 337 | clk_disable_unprepare(ctrlpriv->caam_aclk); |
Marcus Folkesson | b80609a | 2016-11-28 12:53:28 -0500 | [diff] [blame] | 338 | if (ctrlpriv->caam_emi_slow) |
Marcus Folkesson | 4e51881 | 2016-10-17 13:28:00 +0200 | [diff] [blame] | 339 | clk_disable_unprepare(ctrlpriv->caam_emi_slow); |
Fabio Estevam | e558017 | 2015-08-12 14:39:38 -0300 | [diff] [blame] | 340 | return 0; |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | /* |
Alex Porosanu | 84cf482 | 2013-09-09 18:56:30 +0300 | [diff] [blame] | 344 | * kick_trng - sets the various parameters for enabling the initialization |
| 345 | * of the RNG4 block in CAAM |
| 346 | * @pdev - pointer to the platform device |
| 347 | * @ent_delay - Defines the length (in system clocks) of each entropy sample. |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 348 | */ |
Alex Porosanu | 84cf482 | 2013-09-09 18:56:30 +0300 | [diff] [blame] | 349 | static void kick_trng(struct platform_device *pdev, int ent_delay) |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 350 | { |
| 351 | struct device *ctrldev = &pdev->dev; |
| 352 | struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev); |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 353 | struct caam_ctrl __iomem *ctrl; |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 354 | struct rng4tst __iomem *r4tst; |
| 355 | u32 val; |
| 356 | |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 357 | ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl; |
| 358 | r4tst = &ctrl->r4tst[0]; |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 359 | |
| 360 | /* put RNG4 into program mode */ |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 361 | clrsetbits_32(&r4tst->rtmctl, 0, RTMCTL_PRGM); |
Alex Porosanu | 84cf482 | 2013-09-09 18:56:30 +0300 | [diff] [blame] | 362 | |
| 363 | /* |
| 364 | * Performance-wise, it does not make sense to |
| 365 | * set the delay to a value that is lower |
| 366 | * than the last one that worked (i.e. the state handles |
| 367 | * were instantiated properly. Thus, instead of wasting |
| 368 | * time trying to set the values controlling the sample |
| 369 | * frequency, the function simply returns. |
| 370 | */ |
| 371 | val = (rd_reg32(&r4tst->rtsdctl) & RTSDCTL_ENT_DLY_MASK) |
| 372 | >> RTSDCTL_ENT_DLY_SHIFT; |
Horia Geantă | 8439e94 | 2016-11-09 10:46:14 +0200 | [diff] [blame] | 373 | if (ent_delay <= val) |
| 374 | goto start_rng; |
Alex Porosanu | 84cf482 | 2013-09-09 18:56:30 +0300 | [diff] [blame] | 375 | |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 376 | val = rd_reg32(&r4tst->rtsdctl); |
Alex Porosanu | 84cf482 | 2013-09-09 18:56:30 +0300 | [diff] [blame] | 377 | val = (val & ~RTSDCTL_ENT_DLY_MASK) | |
| 378 | (ent_delay << RTSDCTL_ENT_DLY_SHIFT); |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 379 | wr_reg32(&r4tst->rtsdctl, val); |
Alex Porosanu | 84cf482 | 2013-09-09 18:56:30 +0300 | [diff] [blame] | 380 | /* min. freq. count, equal to 1/4 of the entropy sample length */ |
| 381 | wr_reg32(&r4tst->rtfrqmin, ent_delay >> 2); |
Alex Porosanu | b061f3f | 2014-08-11 11:40:15 +0300 | [diff] [blame] | 382 | /* disable maximum frequency count */ |
| 383 | wr_reg32(&r4tst->rtfrqmax, RTFRQMAX_DISABLE); |
Alex Porosanu | e5ffbfc | 2014-08-11 11:40:17 +0300 | [diff] [blame] | 384 | /* read the control register */ |
| 385 | val = rd_reg32(&r4tst->rtmctl); |
Horia Geantă | 8439e94 | 2016-11-09 10:46:14 +0200 | [diff] [blame] | 386 | start_rng: |
Alex Porosanu | e5ffbfc | 2014-08-11 11:40:17 +0300 | [diff] [blame] | 387 | /* |
| 388 | * select raw sampling in both entropy shifter |
Horia Geantă | 8439e94 | 2016-11-09 10:46:14 +0200 | [diff] [blame] | 389 | * and statistical checker; ; put RNG4 into run mode |
Alex Porosanu | e5ffbfc | 2014-08-11 11:40:17 +0300 | [diff] [blame] | 390 | */ |
Horia Geantă | 8439e94 | 2016-11-09 10:46:14 +0200 | [diff] [blame] | 391 | clrsetbits_32(&r4tst->rtmctl, RTMCTL_PRGM, RTMCTL_SAMP_MODE_RAW_ES_SC); |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 392 | } |
| 393 | |
Alex Porosanu | 82c2f96 | 2012-07-11 11:06:11 +0800 | [diff] [blame] | 394 | /** |
| 395 | * caam_get_era() - Return the ERA of the SEC on SoC, based |
Alex Porosanu | 883619a | 2014-02-06 10:27:19 +0200 | [diff] [blame] | 396 | * on "sec-era" propery in the DTS. This property is updated by u-boot. |
Alex Porosanu | 82c2f96 | 2012-07-11 11:06:11 +0800 | [diff] [blame] | 397 | **/ |
Alex Porosanu | 883619a | 2014-02-06 10:27:19 +0200 | [diff] [blame] | 398 | int caam_get_era(void) |
Alex Porosanu | 82c2f96 | 2012-07-11 11:06:11 +0800 | [diff] [blame] | 399 | { |
Alex Porosanu | 883619a | 2014-02-06 10:27:19 +0200 | [diff] [blame] | 400 | struct device_node *caam_node; |
Alex Porosanu | e27513e | 2015-07-17 16:54:51 +0300 | [diff] [blame] | 401 | int ret; |
| 402 | u32 prop; |
Alex Porosanu | 82c2f96 | 2012-07-11 11:06:11 +0800 | [diff] [blame] | 403 | |
Alex Porosanu | e27513e | 2015-07-17 16:54:51 +0300 | [diff] [blame] | 404 | 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 Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 408 | return ret ? -ENOTSUPP : prop; |
Alex Porosanu | 82c2f96 | 2012-07-11 11:06:11 +0800 | [diff] [blame] | 409 | } |
| 410 | EXPORT_SYMBOL(caam_get_era); |
| 411 | |
Horia Geantă | ec36060 | 2017-04-03 18:12:04 +0300 | [diff] [blame] | 412 | static const struct of_device_id caam_match[] = { |
| 413 | { |
| 414 | .compatible = "fsl,sec-v4.0", |
| 415 | }, |
| 416 | { |
| 417 | .compatible = "fsl,sec4.0", |
| 418 | }, |
| 419 | {}, |
| 420 | }; |
| 421 | MODULE_DEVICE_TABLE(of, caam_match); |
| 422 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 423 | /* Probe routine for CAAM top (controller) level */ |
Kim Phillips | 2930d49 | 2011-05-14 22:07:55 -0500 | [diff] [blame] | 424 | static int caam_probe(struct platform_device *pdev) |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 425 | { |
Horia Geantă | ec36060 | 2017-04-03 18:12:04 +0300 | [diff] [blame] | 426 | int ret, ring, gen_sk, ent_delay = RTSDCTL_ENT_DLY_MIN; |
Alex Porosanu | 82c2f96 | 2012-07-11 11:06:11 +0800 | [diff] [blame] | 427 | u64 caam_id; |
Horia Geantă | c056d91 | 2017-09-01 17:12:59 +0300 | [diff] [blame] | 428 | static const struct soc_device_attribute imx_soc[] = { |
| 429 | {.family = "Freescale i.MX"}, |
| 430 | {}, |
| 431 | }; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 432 | struct device *dev; |
| 433 | struct device_node *nprop, *np; |
| 434 | struct caam_ctrl __iomem *ctrl; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 435 | struct caam_drv_private *ctrlpriv; |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 436 | struct clk *clk; |
Kim Phillips | 23457bc | 2011-06-05 16:42:54 -0500 | [diff] [blame] | 437 | #ifdef CONFIG_DEBUG_FS |
| 438 | struct caam_perfmon *perfmon; |
| 439 | #endif |
Ruchika Gupta | 17157c9 | 2014-06-23 17:42:33 +0530 | [diff] [blame] | 440 | u32 scfgr, comp_params; |
Ruchika Gupta | eb1139c | 2014-06-23 15:08:28 +0530 | [diff] [blame] | 441 | u32 cha_vid_ls; |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 442 | int pg_size; |
| 443 | int BLOCK_OFFSET = 0; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 444 | |
Fabio Estevam | 9c4f973 | 2015-08-21 13:52:00 -0300 | [diff] [blame] | 445 | ctrlpriv = devm_kzalloc(&pdev->dev, sizeof(*ctrlpriv), GFP_KERNEL); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 446 | if (!ctrlpriv) |
| 447 | return -ENOMEM; |
| 448 | |
| 449 | dev = &pdev->dev; |
| 450 | dev_set_drvdata(dev, ctrlpriv); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 451 | nprop = pdev->dev.of_node; |
| 452 | |
Horia Geantă | c056d91 | 2017-09-01 17:12:59 +0300 | [diff] [blame] | 453 | caam_imx = (bool)soc_device_match(imx_soc); |
| 454 | |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 455 | /* Enable clocking */ |
| 456 | clk = caam_drv_identify_clk(&pdev->dev, "ipg"); |
| 457 | if (IS_ERR(clk)) { |
| 458 | ret = PTR_ERR(clk); |
| 459 | dev_err(&pdev->dev, |
| 460 | "can't identify CAAM ipg clk: %d\n", ret); |
Fabio Estevam | a3c0955 | 2015-08-21 13:51:59 -0300 | [diff] [blame] | 461 | return ret; |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 462 | } |
| 463 | ctrlpriv->caam_ipg = clk; |
| 464 | |
| 465 | clk = caam_drv_identify_clk(&pdev->dev, "mem"); |
| 466 | if (IS_ERR(clk)) { |
| 467 | ret = PTR_ERR(clk); |
| 468 | dev_err(&pdev->dev, |
| 469 | "can't identify CAAM mem clk: %d\n", ret); |
Fabio Estevam | a3c0955 | 2015-08-21 13:51:59 -0300 | [diff] [blame] | 470 | return ret; |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 471 | } |
| 472 | ctrlpriv->caam_mem = clk; |
| 473 | |
| 474 | clk = caam_drv_identify_clk(&pdev->dev, "aclk"); |
| 475 | if (IS_ERR(clk)) { |
| 476 | ret = PTR_ERR(clk); |
| 477 | dev_err(&pdev->dev, |
| 478 | "can't identify CAAM aclk clk: %d\n", ret); |
Fabio Estevam | a3c0955 | 2015-08-21 13:51:59 -0300 | [diff] [blame] | 479 | return ret; |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 480 | } |
| 481 | ctrlpriv->caam_aclk = clk; |
| 482 | |
Marcus Folkesson | 4e51881 | 2016-10-17 13:28:00 +0200 | [diff] [blame] | 483 | if (!of_machine_is_compatible("fsl,imx6ul")) { |
| 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); |
| 489 | return ret; |
| 490 | } |
| 491 | ctrlpriv->caam_emi_slow = clk; |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 492 | } |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 493 | |
| 494 | ret = clk_prepare_enable(ctrlpriv->caam_ipg); |
| 495 | if (ret < 0) { |
| 496 | dev_err(&pdev->dev, "can't enable CAAM ipg clock: %d\n", ret); |
Fabio Estevam | 31f44d1 | 2015-08-21 13:51:58 -0300 | [diff] [blame] | 497 | return ret; |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | ret = clk_prepare_enable(ctrlpriv->caam_mem); |
| 501 | if (ret < 0) { |
| 502 | dev_err(&pdev->dev, "can't enable CAAM secure mem clock: %d\n", |
| 503 | ret); |
Fabio Estevam | 31f44d1 | 2015-08-21 13:51:58 -0300 | [diff] [blame] | 504 | goto disable_caam_ipg; |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 505 | } |
| 506 | |
| 507 | ret = clk_prepare_enable(ctrlpriv->caam_aclk); |
| 508 | if (ret < 0) { |
| 509 | dev_err(&pdev->dev, "can't enable CAAM aclk clock: %d\n", ret); |
Fabio Estevam | 31f44d1 | 2015-08-21 13:51:58 -0300 | [diff] [blame] | 510 | goto disable_caam_mem; |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 511 | } |
| 512 | |
Marcus Folkesson | b80609a | 2016-11-28 12:53:28 -0500 | [diff] [blame] | 513 | if (ctrlpriv->caam_emi_slow) { |
Marcus Folkesson | 4e51881 | 2016-10-17 13:28:00 +0200 | [diff] [blame] | 514 | ret = clk_prepare_enable(ctrlpriv->caam_emi_slow); |
| 515 | if (ret < 0) { |
| 516 | dev_err(&pdev->dev, "can't enable CAAM emi slow clock: %d\n", |
| 517 | ret); |
| 518 | goto disable_caam_aclk; |
| 519 | } |
Victoria Milhoan | 24821c4 | 2015-08-05 11:28:37 -0700 | [diff] [blame] | 520 | } |
| 521 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 522 | /* Get configuration properties from device tree */ |
| 523 | /* First, get register page */ |
| 524 | ctrl = of_iomap(nprop, 0); |
| 525 | if (ctrl == NULL) { |
| 526 | dev_err(dev, "caam: of_iomap() failed\n"); |
Fabio Estevam | 31f44d1 | 2015-08-21 13:51:58 -0300 | [diff] [blame] | 527 | ret = -ENOMEM; |
| 528 | goto disable_caam_emi_slow; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 529 | } |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 530 | |
| 531 | caam_little_end = !(bool)(rd_reg32(&ctrl->perfmon.status) & |
| 532 | (CSTA_PLEND | CSTA_ALT_PLEND)); |
| 533 | |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 534 | /* Finding the page size for using the CTPR_MS register */ |
| 535 | comp_params = rd_reg32(&ctrl->perfmon.comp_parms_ms); |
| 536 | pg_size = (comp_params & CTPR_MS_PG_SZ_MASK) >> CTPR_MS_PG_SZ_SHIFT; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 537 | |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 538 | /* Allocating the BLOCK_OFFSET based on the supported page size on |
| 539 | * the platform |
| 540 | */ |
| 541 | if (pg_size == 0) |
| 542 | BLOCK_OFFSET = PG_SIZE_4K; |
| 543 | else |
| 544 | BLOCK_OFFSET = PG_SIZE_64K; |
| 545 | |
Horia Geantă | 8439e94 | 2016-11-09 10:46:14 +0200 | [diff] [blame] | 546 | ctrlpriv->ctrl = (struct caam_ctrl __iomem __force *)ctrl; |
| 547 | ctrlpriv->assure = (struct caam_assurance __iomem __force *) |
| 548 | ((__force uint8_t *)ctrl + |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 549 | BLOCK_OFFSET * ASSURE_BLOCK_NUMBER |
| 550 | ); |
Horia Geantă | 8439e94 | 2016-11-09 10:46:14 +0200 | [diff] [blame] | 551 | ctrlpriv->deco = (struct caam_deco __iomem __force *) |
| 552 | ((__force uint8_t *)ctrl + |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 553 | BLOCK_OFFSET * DECO_BLOCK_NUMBER |
| 554 | ); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 555 | |
| 556 | /* Get the IRQ of the controller (for security violations only) */ |
Thierry Reding | f757849 | 2013-09-18 15:24:44 +0200 | [diff] [blame] | 557 | ctrlpriv->secvio_irq = irq_of_parse_and_map(nprop, 0); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 558 | |
| 559 | /* |
| 560 | * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel, |
Horia Geantă | 297b9ce | 2017-07-18 18:30:47 +0300 | [diff] [blame] | 561 | * long pointers in master configuration register. |
| 562 | * In case of DPAA 2.x, Management Complex firmware performs |
| 563 | * the configuration. |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 564 | */ |
Horia Geantă | 297b9ce | 2017-07-18 18:30:47 +0300 | [diff] [blame] | 565 | caam_dpaa2 = !!(comp_params & CTPR_MS_DPAA2); |
| 566 | if (!caam_dpaa2) |
| 567 | clrsetbits_32(&ctrl->mcr, MCFGR_AWCACHE_MASK | MCFGR_LONG_PTR, |
| 568 | MCFGR_AWCACHE_CACH | MCFGR_AWCACHE_BUFF | |
| 569 | MCFGR_WDENABLE | MCFGR_LARGE_BURST | |
| 570 | (sizeof(dma_addr_t) == sizeof(u64) ? |
| 571 | MCFGR_LONG_PTR : 0)); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 572 | |
Ruchika Gupta | 17157c9 | 2014-06-23 17:42:33 +0530 | [diff] [blame] | 573 | /* |
| 574 | * Read the Compile Time paramters and SCFGR to determine |
| 575 | * if Virtualization is enabled for this platform |
| 576 | */ |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 577 | scfgr = rd_reg32(&ctrl->scfgr); |
Ruchika Gupta | 17157c9 | 2014-06-23 17:42:33 +0530 | [diff] [blame] | 578 | |
| 579 | ctrlpriv->virt_en = 0; |
| 580 | if (comp_params & CTPR_MS_VIRT_EN_INCL) { |
| 581 | /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or |
| 582 | * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SCFGR_VIRT_EN = 1 |
| 583 | */ |
| 584 | if ((comp_params & CTPR_MS_VIRT_EN_POR) || |
| 585 | (!(comp_params & CTPR_MS_VIRT_EN_POR) && |
| 586 | (scfgr & SCFGR_VIRT_EN))) |
| 587 | ctrlpriv->virt_en = 1; |
| 588 | } else { |
| 589 | /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */ |
| 590 | if (comp_params & CTPR_MS_VIRT_EN_POR) |
| 591 | ctrlpriv->virt_en = 1; |
| 592 | } |
| 593 | |
| 594 | if (ctrlpriv->virt_en == 1) |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 595 | clrsetbits_32(&ctrl->jrstart, 0, JRSTART_JR0_START | |
| 596 | JRSTART_JR1_START | JRSTART_JR2_START | |
| 597 | JRSTART_JR3_START); |
Ruchika Gupta | 17157c9 | 2014-06-23 17:42:33 +0530 | [diff] [blame] | 598 | |
Horia Geantă | b3b5fce | 2017-02-10 14:07:15 +0200 | [diff] [blame] | 599 | if (sizeof(dma_addr_t) == sizeof(u64)) { |
Horia Geantă | 297b9ce | 2017-07-18 18:30:47 +0300 | [diff] [blame] | 600 | if (caam_dpaa2) |
| 601 | ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(49)); |
| 602 | else if (of_device_is_compatible(nprop, "fsl,sec-v5.0")) |
Horia Geantă | b3b5fce | 2017-02-10 14:07:15 +0200 | [diff] [blame] | 603 | ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(40)); |
Kim Phillips | e13af18 | 2012-06-22 19:48:51 -0500 | [diff] [blame] | 604 | else |
Horia Geantă | b3b5fce | 2017-02-10 14:07:15 +0200 | [diff] [blame] | 605 | ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(36)); |
| 606 | } else { |
| 607 | ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32)); |
| 608 | } |
| 609 | if (ret) { |
| 610 | dev_err(dev, "dma_set_mask_and_coherent failed (%d)\n", ret); |
| 611 | goto iounmap_ctrl; |
| 612 | } |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 613 | |
Horia Geantă | ec36060 | 2017-04-03 18:12:04 +0300 | [diff] [blame] | 614 | ret = of_platform_populate(nprop, caam_match, NULL, dev); |
| 615 | if (ret) { |
| 616 | dev_err(dev, "JR platform devices creation error\n"); |
Fabio Estevam | 31f44d1 | 2015-08-21 13:51:58 -0300 | [diff] [blame] | 617 | goto iounmap_ctrl; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 618 | } |
| 619 | |
Horia Geantă | 67c2315d | 2017-03-17 12:06:01 +0200 | [diff] [blame] | 620 | #ifdef CONFIG_DEBUG_FS |
| 621 | /* |
| 622 | * FIXME: needs better naming distinction, as some amalgamation of |
| 623 | * "caam" and nprop->full_name. The OF name isn't distinctive, |
| 624 | * but does separate instances |
| 625 | */ |
| 626 | perfmon = (struct caam_perfmon __force *)&ctrl->perfmon; |
| 627 | |
| 628 | ctrlpriv->dfs_root = debugfs_create_dir(dev_name(dev), NULL); |
| 629 | ctrlpriv->ctl = debugfs_create_dir("ctl", ctrlpriv->dfs_root); |
| 630 | #endif |
Herbert Xu | c6dc060 | 2017-04-05 21:57:07 +0800 | [diff] [blame] | 631 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 632 | ring = 0; |
Nitesh Lal | 0a63b09 | 2014-02-09 09:59:13 +0800 | [diff] [blame] | 633 | for_each_available_child_of_node(nprop, np) |
| 634 | if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") || |
| 635 | of_device_is_compatible(np, "fsl,sec4.0-job-ring")) { |
Horia Geantă | 8439e94 | 2016-11-09 10:46:14 +0200 | [diff] [blame] | 636 | ctrlpriv->jr[ring] = (struct caam_job_ring __iomem __force *) |
| 637 | ((__force uint8_t *)ctrl + |
Horia Geantă | ec36060 | 2017-04-03 18:12:04 +0300 | [diff] [blame] | 638 | (ring + JR_BLOCK_NUMBER) * |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 639 | BLOCK_OFFSET |
| 640 | ); |
Shengzhou Liu | a0ea0f6 | 2012-03-21 14:09:10 +0800 | [diff] [blame] | 641 | ctrlpriv->total_jobrs++; |
| 642 | ring++; |
Horia Geantă | ec36060 | 2017-04-03 18:12:04 +0300 | [diff] [blame] | 643 | } |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 644 | |
Horia Geantă | 297b9ce | 2017-07-18 18:30:47 +0300 | [diff] [blame] | 645 | /* Check to see if (DPAA 1.x) QI present. If so, enable */ |
| 646 | ctrlpriv->qi_present = !!(comp_params & CTPR_MS_QI_MASK); |
| 647 | if (ctrlpriv->qi_present && !caam_dpaa2) { |
Horia Geantă | 8439e94 | 2016-11-09 10:46:14 +0200 | [diff] [blame] | 648 | ctrlpriv->qi = (struct caam_queue_if __iomem __force *) |
| 649 | ((__force uint8_t *)ctrl + |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 650 | BLOCK_OFFSET * QI_BLOCK_NUMBER |
| 651 | ); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 652 | /* This is all that's required to physically enable QI */ |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 653 | wr_reg32(&ctrlpriv->qi->qi_control_lo, QICTL_DQEN); |
Horia Geantă | 67c2315d | 2017-03-17 12:06:01 +0200 | [diff] [blame] | 654 | |
| 655 | /* If QMAN driver is present, init CAAM-QI backend */ |
| 656 | #ifdef CONFIG_CAAM_QI |
| 657 | ret = caam_qi_init(pdev); |
| 658 | if (ret) |
| 659 | dev_err(dev, "caam qi i/f init failed: %d\n", ret); |
| 660 | #endif |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 661 | } |
| 662 | |
| 663 | /* If no QI and no rings specified, quit and go home */ |
| 664 | if ((!ctrlpriv->qi_present) && (!ctrlpriv->total_jobrs)) { |
| 665 | dev_err(dev, "no queues configured, terminating\n"); |
Fabio Estevam | 31f44d1 | 2015-08-21 13:51:58 -0300 | [diff] [blame] | 666 | ret = -ENOMEM; |
| 667 | goto caam_remove; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 668 | } |
| 669 | |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 670 | cha_vid_ls = rd_reg32(&ctrl->perfmon.cha_id_ls); |
Ruchika Gupta | 986dfbc | 2013-04-26 15:44:54 +0530 | [diff] [blame] | 671 | |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 672 | /* |
Ruchika Gupta | 986dfbc | 2013-04-26 15:44:54 +0530 | [diff] [blame] | 673 | * If SEC has RNG version >= 4 and RNG state handle has not been |
Alex Porosanu | 84cf482 | 2013-09-09 18:56:30 +0300 | [diff] [blame] | 674 | * already instantiated, do RNG instantiation |
Horia Geantă | 297b9ce | 2017-07-18 18:30:47 +0300 | [diff] [blame] | 675 | * In case of DPAA 2.x, RNG is managed by MC firmware. |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 676 | */ |
Horia Geantă | 297b9ce | 2017-07-18 18:30:47 +0300 | [diff] [blame] | 677 | if (!caam_dpaa2 && |
| 678 | (cha_vid_ls & CHA_ID_LS_RNG_MASK) >> CHA_ID_LS_RNG_SHIFT >= 4) { |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 679 | ctrlpriv->rng4_sh_init = |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 680 | rd_reg32(&ctrl->r4tst[0].rdsta); |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 681 | /* |
| 682 | * If the secure keys (TDKEK, JDKEK, TDSK), were already |
| 683 | * generated, signal this to the function that is instantiating |
| 684 | * the state handles. An error would occur if RNG4 attempts |
| 685 | * to regenerate these keys before the next POR. |
| 686 | */ |
| 687 | gen_sk = ctrlpriv->rng4_sh_init & RDSTA_SKVN ? 0 : 1; |
| 688 | ctrlpriv->rng4_sh_init &= RDSTA_IFMASK; |
Alex Porosanu | 84cf482 | 2013-09-09 18:56:30 +0300 | [diff] [blame] | 689 | do { |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 690 | int inst_handles = |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 691 | rd_reg32(&ctrl->r4tst[0].rdsta) & |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 692 | RDSTA_IFMASK; |
| 693 | /* |
| 694 | * If either SH were instantiated by somebody else |
| 695 | * (e.g. u-boot) then it is assumed that the entropy |
| 696 | * parameters are properly set and thus the function |
| 697 | * setting these (kick_trng(...)) is skipped. |
| 698 | * Also, if a handle was instantiated, do not change |
| 699 | * the TRNG parameters. |
| 700 | */ |
| 701 | if (!(ctrlpriv->rng4_sh_init || inst_handles)) { |
Alex Porosanu | eeaa172 | 2014-08-11 11:40:16 +0300 | [diff] [blame] | 702 | dev_info(dev, |
| 703 | "Entropy delay = %u\n", |
| 704 | ent_delay); |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 705 | kick_trng(pdev, ent_delay); |
| 706 | ent_delay += 400; |
| 707 | } |
| 708 | /* |
| 709 | * if instantiate_rng(...) fails, the loop will rerun |
| 710 | * and the kick_trng(...) function will modfiy the |
| 711 | * upper and lower limits of the entropy sampling |
| 712 | * interval, leading to a sucessful initialization of |
| 713 | * the RNG. |
| 714 | */ |
| 715 | ret = instantiate_rng(dev, inst_handles, |
| 716 | gen_sk); |
Alex Porosanu | eeaa172 | 2014-08-11 11:40:16 +0300 | [diff] [blame] | 717 | if (ret == -EAGAIN) |
| 718 | /* |
| 719 | * if here, the loop will rerun, |
| 720 | * so don't hog the CPU |
| 721 | */ |
| 722 | cpu_relax(); |
Alex Porosanu | 04cddbf | 2013-09-09 18:56:31 +0300 | [diff] [blame] | 723 | } while ((ret == -EAGAIN) && (ent_delay < RTSDCTL_ENT_DLY_MAX)); |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 724 | if (ret) { |
Alex Porosanu | 84cf482 | 2013-09-09 18:56:30 +0300 | [diff] [blame] | 725 | dev_err(dev, "failed to instantiate RNG"); |
Fabio Estevam | 31f44d1 | 2015-08-21 13:51:58 -0300 | [diff] [blame] | 726 | goto caam_remove; |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 727 | } |
Alex Porosanu | 1005bcc | 2013-09-09 18:56:34 +0300 | [diff] [blame] | 728 | /* |
| 729 | * Set handles init'ed by this module as the complement of the |
| 730 | * already initialized ones |
| 731 | */ |
| 732 | ctrlpriv->rng4_sh_init = ~ctrlpriv->rng4_sh_init & RDSTA_IFMASK; |
Vakul Garg | 575c1bd | 2013-03-12 13:55:21 +0530 | [diff] [blame] | 733 | |
| 734 | /* Enable RDB bit so that RNG works faster */ |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 735 | clrsetbits_32(&ctrl->scfgr, 0, SCFGR_RDBENABLE); |
Kim Phillips | 281922a | 2012-06-22 19:48:52 -0500 | [diff] [blame] | 736 | } |
| 737 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 738 | /* NOTE: RTIC detection ought to go here, around Si time */ |
| 739 | |
Nitesh Narayan Lal | fb4562b | 2014-09-01 15:00:44 +0530 | [diff] [blame] | 740 | caam_id = (u64)rd_reg32(&ctrl->perfmon.caam_id_ms) << 32 | |
| 741 | (u64)rd_reg32(&ctrl->perfmon.caam_id_ls); |
Alex Porosanu | 82c2f96 | 2012-07-11 11:06:11 +0800 | [diff] [blame] | 742 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 743 | /* Report "alive" for developer to see */ |
Alex Porosanu | 82c2f96 | 2012-07-11 11:06:11 +0800 | [diff] [blame] | 744 | dev_info(dev, "device ID = 0x%016llx (Era %d)\n", caam_id, |
Alex Porosanu | 883619a | 2014-02-06 10:27:19 +0200 | [diff] [blame] | 745 | caam_get_era()); |
Horia Geantă | 297b9ce | 2017-07-18 18:30:47 +0300 | [diff] [blame] | 746 | dev_info(dev, "job rings = %d, qi = %d, dpaa2 = %s\n", |
| 747 | ctrlpriv->total_jobrs, ctrlpriv->qi_present, |
| 748 | caam_dpaa2 ? "yes" : "no"); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 749 | |
| 750 | #ifdef CONFIG_DEBUG_FS |
Fabio Estevam | a92f7af | 2017-08-01 10:45:01 -0300 | [diff] [blame] | 751 | debugfs_create_file("rq_dequeued", S_IRUSR | S_IRGRP | S_IROTH, |
| 752 | ctrlpriv->ctl, &perfmon->req_dequeued, |
| 753 | &caam_fops_u64_ro); |
| 754 | debugfs_create_file("ob_rq_encrypted", S_IRUSR | S_IRGRP | S_IROTH, |
| 755 | ctrlpriv->ctl, &perfmon->ob_enc_req, |
| 756 | &caam_fops_u64_ro); |
| 757 | debugfs_create_file("ib_rq_decrypted", S_IRUSR | S_IRGRP | S_IROTH, |
| 758 | ctrlpriv->ctl, &perfmon->ib_dec_req, |
| 759 | &caam_fops_u64_ro); |
| 760 | debugfs_create_file("ob_bytes_encrypted", S_IRUSR | S_IRGRP | S_IROTH, |
| 761 | ctrlpriv->ctl, &perfmon->ob_enc_bytes, |
| 762 | &caam_fops_u64_ro); |
| 763 | debugfs_create_file("ob_bytes_protected", S_IRUSR | S_IRGRP | S_IROTH, |
| 764 | ctrlpriv->ctl, &perfmon->ob_prot_bytes, |
| 765 | &caam_fops_u64_ro); |
| 766 | debugfs_create_file("ib_bytes_decrypted", S_IRUSR | S_IRGRP | S_IROTH, |
| 767 | ctrlpriv->ctl, &perfmon->ib_dec_bytes, |
| 768 | &caam_fops_u64_ro); |
| 769 | debugfs_create_file("ib_bytes_validated", S_IRUSR | S_IRGRP | S_IROTH, |
| 770 | ctrlpriv->ctl, &perfmon->ib_valid_bytes, |
| 771 | &caam_fops_u64_ro); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 772 | |
| 773 | /* Controller level - global status values */ |
Fabio Estevam | a92f7af | 2017-08-01 10:45:01 -0300 | [diff] [blame] | 774 | debugfs_create_file("fault_addr", S_IRUSR | S_IRGRP | S_IROTH, |
| 775 | ctrlpriv->ctl, &perfmon->faultaddr, |
| 776 | &caam_fops_u32_ro); |
| 777 | debugfs_create_file("fault_detail", S_IRUSR | S_IRGRP | S_IROTH, |
| 778 | ctrlpriv->ctl, &perfmon->faultdetail, |
| 779 | &caam_fops_u32_ro); |
| 780 | debugfs_create_file("fault_status", S_IRUSR | S_IRGRP | S_IROTH, |
| 781 | ctrlpriv->ctl, &perfmon->status, |
| 782 | &caam_fops_u32_ro); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 783 | |
| 784 | /* Internal covering keys (useful in non-secure mode only) */ |
Horia Geantă | 8439e94 | 2016-11-09 10:46:14 +0200 | [diff] [blame] | 785 | ctrlpriv->ctl_kek_wrap.data = (__force void *)&ctrlpriv->ctrl->kek[0]; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 786 | ctrlpriv->ctl_kek_wrap.size = KEK_KEY_SIZE * sizeof(u32); |
| 787 | ctrlpriv->ctl_kek = debugfs_create_blob("kek", |
Al Viro | eda65cc | 2011-07-24 04:32:53 -0400 | [diff] [blame] | 788 | S_IRUSR | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 789 | S_IRGRP | S_IROTH, |
| 790 | ctrlpriv->ctl, |
| 791 | &ctrlpriv->ctl_kek_wrap); |
| 792 | |
Horia Geantă | 8439e94 | 2016-11-09 10:46:14 +0200 | [diff] [blame] | 793 | ctrlpriv->ctl_tkek_wrap.data = (__force void *)&ctrlpriv->ctrl->tkek[0]; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 794 | ctrlpriv->ctl_tkek_wrap.size = KEK_KEY_SIZE * sizeof(u32); |
| 795 | ctrlpriv->ctl_tkek = debugfs_create_blob("tkek", |
Al Viro | eda65cc | 2011-07-24 04:32:53 -0400 | [diff] [blame] | 796 | S_IRUSR | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 797 | S_IRGRP | S_IROTH, |
| 798 | ctrlpriv->ctl, |
| 799 | &ctrlpriv->ctl_tkek_wrap); |
| 800 | |
Horia Geantă | 8439e94 | 2016-11-09 10:46:14 +0200 | [diff] [blame] | 801 | ctrlpriv->ctl_tdsk_wrap.data = (__force void *)&ctrlpriv->ctrl->tdsk[0]; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 802 | ctrlpriv->ctl_tdsk_wrap.size = KEK_KEY_SIZE * sizeof(u32); |
| 803 | ctrlpriv->ctl_tdsk = debugfs_create_blob("tdsk", |
Al Viro | eda65cc | 2011-07-24 04:32:53 -0400 | [diff] [blame] | 804 | S_IRUSR | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 805 | S_IRGRP | S_IROTH, |
| 806 | ctrlpriv->ctl, |
| 807 | &ctrlpriv->ctl_tdsk_wrap); |
| 808 | #endif |
| 809 | return 0; |
Fabio Estevam | 31f44d1 | 2015-08-21 13:51:58 -0300 | [diff] [blame] | 810 | |
| 811 | caam_remove: |
Horia Geantă | 67c2315d | 2017-03-17 12:06:01 +0200 | [diff] [blame] | 812 | #ifdef CONFIG_DEBUG_FS |
| 813 | debugfs_remove_recursive(ctrlpriv->dfs_root); |
| 814 | #endif |
Fabio Estevam | 31f44d1 | 2015-08-21 13:51:58 -0300 | [diff] [blame] | 815 | caam_remove(pdev); |
Russell King | bdc67da | 2016-08-09 08:30:10 +0100 | [diff] [blame] | 816 | return ret; |
| 817 | |
Fabio Estevam | 31f44d1 | 2015-08-21 13:51:58 -0300 | [diff] [blame] | 818 | iounmap_ctrl: |
| 819 | iounmap(ctrl); |
| 820 | disable_caam_emi_slow: |
Marcus Folkesson | b80609a | 2016-11-28 12:53:28 -0500 | [diff] [blame] | 821 | if (ctrlpriv->caam_emi_slow) |
Marcus Folkesson | 4e51881 | 2016-10-17 13:28:00 +0200 | [diff] [blame] | 822 | clk_disable_unprepare(ctrlpriv->caam_emi_slow); |
Fabio Estevam | 31f44d1 | 2015-08-21 13:51:58 -0300 | [diff] [blame] | 823 | disable_caam_aclk: |
| 824 | clk_disable_unprepare(ctrlpriv->caam_aclk); |
| 825 | disable_caam_mem: |
| 826 | clk_disable_unprepare(ctrlpriv->caam_mem); |
| 827 | disable_caam_ipg: |
| 828 | clk_disable_unprepare(ctrlpriv->caam_ipg); |
| 829 | return ret; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 830 | } |
| 831 | |
Kim Phillips | 2930d49 | 2011-05-14 22:07:55 -0500 | [diff] [blame] | 832 | static struct platform_driver caam_driver = { |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 833 | .driver = { |
| 834 | .name = "caam", |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 835 | .of_match_table = caam_match, |
| 836 | }, |
| 837 | .probe = caam_probe, |
Greg Kroah-Hartman | 49cfe4d | 2012-12-21 13:14:09 -0800 | [diff] [blame] | 838 | .remove = caam_remove, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 839 | }; |
| 840 | |
Axel Lin | 741e8c2 | 2011-11-26 21:26:19 +0800 | [diff] [blame] | 841 | module_platform_driver(caam_driver); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 842 | |
| 843 | MODULE_LICENSE("GPL"); |
| 844 | MODULE_DESCRIPTION("FSL CAAM request backend"); |
| 845 | MODULE_AUTHOR("Freescale Semiconductor - NMG/STC"); |