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