1 // SPDX-License-Identifier: GPL-2.0+ 2 /* * CAAM control-plane driver backend 3 * Controller-level driver, kernel property detection, initialization 4 * 5 * Copyright 2008-2012 Freescale Semiconductor, Inc. 6 * Copyright 2018-2019, 2023 NXP 7 */ 8 9 #include <linux/device.h> 10 #include <linux/of_address.h> 11 #include <linux/of_irq.h> 12 #include <linux/sys_soc.h> 13 #include <linux/fsl/mc.h> 14 15 #include "compat.h" 16 #include "debugfs.h" 17 #include "regs.h" 18 #include "intern.h" 19 #include "jr.h" 20 #include "desc_constr.h" 21 #include "ctrl.h" 22 23 bool caam_dpaa2; 24 EXPORT_SYMBOL(caam_dpaa2); 25 26 #ifdef CONFIG_CAAM_QI 27 #include "qi.h" 28 #endif 29 30 /* 31 * Descriptor to instantiate RNG State Handle 0 in normal mode and 32 * load the JDKEK, TDKEK and TDSK registers 33 */ 34 static void build_instantiation_desc(u32 *desc, int handle, int do_sk) 35 { 36 u32 *jump_cmd, op_flags; 37 38 init_job_desc(desc, 0); 39 40 op_flags = OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG | 41 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INIT | 42 OP_ALG_PR_ON; 43 44 /* INIT RNG in non-test mode */ 45 append_operation(desc, op_flags); 46 47 if (!handle && do_sk) { 48 /* 49 * For SH0, Secure Keys must be generated as well 50 */ 51 52 /* wait for done */ 53 jump_cmd = append_jump(desc, JUMP_CLASS_CLASS1); 54 set_jump_tgt_here(desc, jump_cmd); 55 56 /* 57 * load 1 to clear written reg: 58 * resets the done interrupt and returns the RNG to idle. 59 */ 60 append_load_imm_u32(desc, 1, LDST_SRCDST_WORD_CLRW); 61 62 /* Initialize State Handle */ 63 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG | 64 OP_ALG_AAI_RNG4_SK); 65 } 66 67 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT); 68 } 69 70 /* Descriptor for deinstantiation of State Handle 0 of the RNG block. */ 71 static void build_deinstantiation_desc(u32 *desc, int handle) 72 { 73 init_job_desc(desc, 0); 74 75 /* Uninstantiate State Handle 0 */ 76 append_operation(desc, OP_TYPE_CLASS1_ALG | OP_ALG_ALGSEL_RNG | 77 (handle << OP_ALG_AAI_SHIFT) | OP_ALG_AS_INITFINAL); 78 79 append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TYPE_HALT); 80 } 81 82 static const struct of_device_id imx8m_machine_match[] = { 83 { .compatible = "fsl,imx8mm", }, 84 { .compatible = "fsl,imx8mn", }, 85 { .compatible = "fsl,imx8mp", }, 86 { .compatible = "fsl,imx8mq", }, 87 { .compatible = "fsl,imx8ulp", }, 88 { } 89 }; 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 95 * @status - descriptor status, after being run 96 * 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 */ 101 static inline int run_descriptor_deco0(struct device *ctrldev, u32 *desc, 102 u32 *status) 103 { 104 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev); 105 struct caam_ctrl __iomem *ctrl = ctrlpriv->ctrl; 106 struct caam_deco __iomem *deco = ctrlpriv->deco; 107 unsigned int timeout = 100000; 108 u32 deco_dbg_reg, deco_state, flags; 109 int i; 110 111 112 if (ctrlpriv->virt_en == 1 || 113 /* 114 * Apparently on i.MX8M{Q,M,N,P} it doesn't matter if virt_en == 1 115 * and the following steps should be performed regardless 116 */ 117 of_match_node(imx8m_machine_match, of_root)) { 118 clrsetbits_32(&ctrl->deco_rsr, 0, DECORSR_JR0); 119 120 while (!(rd_reg32(&ctrl->deco_rsr) & DECORSR_VALID) && 121 --timeout) 122 cpu_relax(); 123 124 timeout = 100000; 125 } 126 127 clrsetbits_32(&ctrl->deco_rq, 0, DECORR_RQD0ENABLE); 128 129 while (!(rd_reg32(&ctrl->deco_rq) & DECORR_DEN0) && 130 --timeout) 131 cpu_relax(); 132 133 if (!timeout) { 134 dev_err(ctrldev, "failed to acquire DECO 0\n"); 135 clrsetbits_32(&ctrl->deco_rq, DECORR_RQD0ENABLE, 0); 136 return -ENODEV; 137 } 138 139 for (i = 0; i < desc_len(desc); i++) 140 wr_reg32(&deco->descbuf[i], caam32_to_cpu(*(desc + i))); 141 142 flags = DECO_JQCR_WHL; 143 /* 144 * If the descriptor length is longer than 4 words, then the 145 * FOUR bit in JRCTRL register must be set. 146 */ 147 if (desc_len(desc) >= 4) 148 flags |= DECO_JQCR_FOUR; 149 150 /* Instruct the DECO to execute it */ 151 clrsetbits_32(&deco->jr_ctl_hi, 0, flags); 152 153 timeout = 10000000; 154 do { 155 deco_dbg_reg = rd_reg32(&deco->desc_dbg); 156 157 if (ctrlpriv->era < 10) 158 deco_state = (deco_dbg_reg & DESC_DBG_DECO_STAT_MASK) >> 159 DESC_DBG_DECO_STAT_SHIFT; 160 else 161 deco_state = (rd_reg32(&deco->dbg_exec) & 162 DESC_DER_DECO_STAT_MASK) >> 163 DESC_DER_DECO_STAT_SHIFT; 164 165 /* 166 * If an error occurred in the descriptor, then 167 * the DECO status field will be set to 0x0D 168 */ 169 if (deco_state == DECO_STAT_HOST_ERR) 170 break; 171 172 cpu_relax(); 173 } while ((deco_dbg_reg & DESC_DBG_DECO_STAT_VALID) && --timeout); 174 175 *status = rd_reg32(&deco->op_status_hi) & 176 DECO_OP_STATUS_HI_ERR_MASK; 177 178 if (ctrlpriv->virt_en == 1) 179 clrsetbits_32(&ctrl->deco_rsr, DECORSR_JR0, 0); 180 181 /* Mark the DECO as free */ 182 clrsetbits_32(&ctrl->deco_rq, DECORR_RQD0ENABLE, 0); 183 184 if (!timeout) 185 return -EAGAIN; 186 187 return 0; 188 } 189 190 /* 191 * deinstantiate_rng - builds and executes a descriptor on DECO0, 192 * which deinitializes the RNG block. 193 * @ctrldev - pointer to device 194 * @state_handle_mask - bitmask containing the instantiation status 195 * for the RNG4 state handles which exist in 196 * the RNG4 block: 1 if it's been instantiated 197 * 198 * Return: - 0 if no error occurred 199 * - -ENOMEM if there isn't enough memory to allocate the descriptor 200 * - -ENODEV if DECO0 couldn't be acquired 201 * - -EAGAIN if an error occurred when executing the descriptor 202 */ 203 static int deinstantiate_rng(struct device *ctrldev, int state_handle_mask) 204 { 205 u32 *desc, status; 206 int sh_idx, ret = 0; 207 208 desc = kmalloc(CAAM_CMD_SZ * 3, GFP_KERNEL); 209 if (!desc) 210 return -ENOMEM; 211 212 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) { 213 /* 214 * If the corresponding bit is set, then it means the state 215 * handle was initialized by us, and thus it needs to be 216 * deinitialized as well 217 */ 218 if ((1 << sh_idx) & state_handle_mask) { 219 /* 220 * Create the descriptor for deinstantating this state 221 * handle 222 */ 223 build_deinstantiation_desc(desc, sh_idx); 224 225 /* Try to run it through DECO0 */ 226 ret = run_descriptor_deco0(ctrldev, desc, &status); 227 228 if (ret || 229 (status && status != JRSTA_SSRC_JUMP_HALT_CC)) { 230 dev_err(ctrldev, 231 "Failed to deinstantiate RNG4 SH%d\n", 232 sh_idx); 233 break; 234 } 235 dev_info(ctrldev, "Deinstantiated RNG4 SH%d\n", sh_idx); 236 } 237 } 238 239 kfree(desc); 240 241 return ret; 242 } 243 244 static void devm_deinstantiate_rng(void *data) 245 { 246 struct device *ctrldev = data; 247 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev); 248 249 /* 250 * De-initialize RNG state handles initialized by this driver. 251 * In case of SoCs with Management Complex, RNG is managed by MC f/w. 252 */ 253 if (ctrlpriv->rng4_sh_init) 254 deinstantiate_rng(ctrldev, ctrlpriv->rng4_sh_init); 255 } 256 257 /* 258 * instantiate_rng - builds and executes a descriptor on DECO0, 259 * which initializes the RNG block. 260 * @ctrldev - pointer to device 261 * @state_handle_mask - bitmask containing the instantiation status 262 * for the RNG4 state handles which exist in 263 * the RNG4 block: 1 if it's been instantiated 264 * by an external entry, 0 otherwise. 265 * @gen_sk - generate data to be loaded into the JDKEK, TDKEK and TDSK; 266 * Caution: this can be done only once; if the keys need to be 267 * regenerated, a POR is required 268 * 269 * Return: - 0 if no error occurred 270 * - -ENOMEM if there isn't enough memory to allocate the descriptor 271 * - -ENODEV if DECO0 couldn't be acquired 272 * - -EAGAIN if an error occurred when executing the descriptor 273 * f.i. there was a RNG hardware error due to not "good enough" 274 * entropy being acquired. 275 */ 276 static int instantiate_rng(struct device *ctrldev, int state_handle_mask, 277 int gen_sk) 278 { 279 struct caam_drv_private *ctrlpriv = dev_get_drvdata(ctrldev); 280 struct caam_ctrl __iomem *ctrl; 281 u32 *desc, status = 0, rdsta_val; 282 int ret = 0, sh_idx; 283 284 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl; 285 desc = kmalloc(CAAM_CMD_SZ * 7, GFP_KERNEL); 286 if (!desc) 287 return -ENOMEM; 288 289 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) { 290 const u32 rdsta_if = RDSTA_IF0 << sh_idx; 291 const u32 rdsta_pr = RDSTA_PR0 << sh_idx; 292 const u32 rdsta_mask = rdsta_if | rdsta_pr; 293 294 /* Clear the contents before using the descriptor */ 295 memset(desc, 0x00, CAAM_CMD_SZ * 7); 296 297 /* 298 * If the corresponding bit is set, this state handle 299 * was initialized by somebody else, so it's left alone. 300 */ 301 if (rdsta_if & state_handle_mask) { 302 if (rdsta_pr & state_handle_mask) 303 continue; 304 305 dev_info(ctrldev, 306 "RNG4 SH%d was previously instantiated without prediction resistance. Tearing it down\n", 307 sh_idx); 308 309 ret = deinstantiate_rng(ctrldev, rdsta_if); 310 if (ret) 311 break; 312 } 313 314 /* Create the descriptor for instantiating RNG State Handle */ 315 build_instantiation_desc(desc, sh_idx, gen_sk); 316 317 /* Try to run it through DECO0 */ 318 ret = run_descriptor_deco0(ctrldev, desc, &status); 319 320 /* 321 * If ret is not 0, or descriptor status is not 0, then 322 * something went wrong. No need to try the next state 323 * handle (if available), bail out here. 324 * Also, if for some reason, the State Handle didn't get 325 * instantiated although the descriptor has finished 326 * without any error (HW optimizations for later 327 * CAAM eras), then try again. 328 */ 329 if (ret) 330 break; 331 332 rdsta_val = rd_reg32(&ctrl->r4tst[0].rdsta) & RDSTA_MASK; 333 if ((status && status != JRSTA_SSRC_JUMP_HALT_CC) || 334 (rdsta_val & rdsta_mask) != rdsta_mask) { 335 ret = -EAGAIN; 336 break; 337 } 338 339 dev_info(ctrldev, "Instantiated RNG4 SH%d\n", sh_idx); 340 } 341 342 kfree(desc); 343 344 if (ret) 345 return ret; 346 347 return devm_add_action_or_reset(ctrldev, devm_deinstantiate_rng, ctrldev); 348 } 349 350 /* 351 * kick_trng - sets the various parameters for enabling the initialization 352 * of the RNG4 block in CAAM 353 * @dev - pointer to the controller device 354 * @ent_delay - Defines the length (in system clocks) of each entropy sample. 355 */ 356 static void kick_trng(struct device *dev, int ent_delay) 357 { 358 struct caam_drv_private *ctrlpriv = dev_get_drvdata(dev); 359 struct caam_ctrl __iomem *ctrl; 360 struct rng4tst __iomem *r4tst; 361 u32 val; 362 363 ctrl = (struct caam_ctrl __iomem *)ctrlpriv->ctrl; 364 r4tst = &ctrl->r4tst[0]; 365 366 /* 367 * Setting both RTMCTL:PRGM and RTMCTL:TRNG_ACC causes TRNG to 368 * properly invalidate the entropy in the entropy register and 369 * force re-generation. 370 */ 371 clrsetbits_32(&r4tst->rtmctl, 0, RTMCTL_PRGM | RTMCTL_ACC); 372 373 /* 374 * Performance-wise, it does not make sense to 375 * set the delay to a value that is lower 376 * than the last one that worked (i.e. the state handles 377 * were instantiated properly. Thus, instead of wasting 378 * time trying to set the values controlling the sample 379 * frequency, the function simply returns. 380 */ 381 val = (rd_reg32(&r4tst->rtsdctl) & RTSDCTL_ENT_DLY_MASK) 382 >> RTSDCTL_ENT_DLY_SHIFT; 383 if (ent_delay <= val) 384 goto start_rng; 385 386 val = rd_reg32(&r4tst->rtsdctl); 387 val = (val & ~RTSDCTL_ENT_DLY_MASK) | 388 (ent_delay << RTSDCTL_ENT_DLY_SHIFT); 389 wr_reg32(&r4tst->rtsdctl, val); 390 /* min. freq. count, equal to 1/4 of the entropy sample length */ 391 wr_reg32(&r4tst->rtfrqmin, ent_delay >> 2); 392 /* disable maximum frequency count */ 393 wr_reg32(&r4tst->rtfrqmax, RTFRQMAX_DISABLE); 394 /* read the control register */ 395 val = rd_reg32(&r4tst->rtmctl); 396 start_rng: 397 /* 398 * select raw sampling in both entropy shifter 399 * and statistical checker; ; put RNG4 into run mode 400 */ 401 clrsetbits_32(&r4tst->rtmctl, RTMCTL_PRGM | RTMCTL_ACC, 402 RTMCTL_SAMP_MODE_RAW_ES_SC); 403 } 404 405 static int caam_get_era_from_hw(struct caam_perfmon __iomem *perfmon) 406 { 407 static const struct { 408 u16 ip_id; 409 u8 maj_rev; 410 u8 era; 411 } id[] = { 412 {0x0A10, 1, 1}, 413 {0x0A10, 2, 2}, 414 {0x0A12, 1, 3}, 415 {0x0A14, 1, 3}, 416 {0x0A14, 2, 4}, 417 {0x0A16, 1, 4}, 418 {0x0A10, 3, 4}, 419 {0x0A11, 1, 4}, 420 {0x0A18, 1, 4}, 421 {0x0A11, 2, 5}, 422 {0x0A12, 2, 5}, 423 {0x0A13, 1, 5}, 424 {0x0A1C, 1, 5} 425 }; 426 u32 ccbvid, id_ms; 427 u8 maj_rev, era; 428 u16 ip_id; 429 int i; 430 431 ccbvid = rd_reg32(&perfmon->ccb_id); 432 era = (ccbvid & CCBVID_ERA_MASK) >> CCBVID_ERA_SHIFT; 433 if (era) /* This is '0' prior to CAAM ERA-6 */ 434 return era; 435 436 id_ms = rd_reg32(&perfmon->caam_id_ms); 437 ip_id = (id_ms & SECVID_MS_IPID_MASK) >> SECVID_MS_IPID_SHIFT; 438 maj_rev = (id_ms & SECVID_MS_MAJ_REV_MASK) >> SECVID_MS_MAJ_REV_SHIFT; 439 440 for (i = 0; i < ARRAY_SIZE(id); i++) 441 if (id[i].ip_id == ip_id && id[i].maj_rev == maj_rev) 442 return id[i].era; 443 444 return -ENOTSUPP; 445 } 446 447 /** 448 * caam_get_era() - Return the ERA of the SEC on SoC, based 449 * on "sec-era" optional property in the DTS. This property is updated 450 * by u-boot. 451 * In case this property is not passed an attempt to retrieve the CAAM 452 * era via register reads will be made. 453 * 454 * @perfmon: Performance Monitor Registers 455 */ 456 static int caam_get_era(struct caam_perfmon __iomem *perfmon) 457 { 458 struct device_node *caam_node; 459 int ret; 460 u32 prop; 461 462 caam_node = of_find_compatible_node(NULL, NULL, "fsl,sec-v4.0"); 463 ret = of_property_read_u32(caam_node, "fsl,sec-era", &prop); 464 of_node_put(caam_node); 465 466 if (!ret) 467 return prop; 468 else 469 return caam_get_era_from_hw(perfmon); 470 } 471 472 /* 473 * ERRATA: imx6 devices (imx6D, imx6Q, imx6DL, imx6S, imx6DP and imx6QP) 474 * have an issue wherein AXI bus transactions may not occur in the correct 475 * order. This isn't a problem running single descriptors, but can be if 476 * running multiple concurrent descriptors. Reworking the driver to throttle 477 * to single requests is impractical, thus the workaround is to limit the AXI 478 * pipeline to a depth of 1 (from it's default of 4) to preclude this situation 479 * from occurring. 480 */ 481 static void handle_imx6_err005766(u32 __iomem *mcr) 482 { 483 if (of_machine_is_compatible("fsl,imx6q") || 484 of_machine_is_compatible("fsl,imx6dl") || 485 of_machine_is_compatible("fsl,imx6qp")) 486 clrsetbits_32(mcr, MCFGR_AXIPIPE_MASK, 487 1 << MCFGR_AXIPIPE_SHIFT); 488 } 489 490 static const struct of_device_id caam_match[] = { 491 { 492 .compatible = "fsl,sec-v4.0", 493 }, 494 { 495 .compatible = "fsl,sec4.0", 496 }, 497 {}, 498 }; 499 MODULE_DEVICE_TABLE(of, caam_match); 500 501 struct caam_imx_data { 502 const struct clk_bulk_data *clks; 503 int num_clks; 504 }; 505 506 static const struct clk_bulk_data caam_imx6_clks[] = { 507 { .id = "ipg" }, 508 { .id = "mem" }, 509 { .id = "aclk" }, 510 { .id = "emi_slow" }, 511 }; 512 513 static const struct caam_imx_data caam_imx6_data = { 514 .clks = caam_imx6_clks, 515 .num_clks = ARRAY_SIZE(caam_imx6_clks), 516 }; 517 518 static const struct clk_bulk_data caam_imx7_clks[] = { 519 { .id = "ipg" }, 520 { .id = "aclk" }, 521 }; 522 523 static const struct caam_imx_data caam_imx7_data = { 524 .clks = caam_imx7_clks, 525 .num_clks = ARRAY_SIZE(caam_imx7_clks), 526 }; 527 528 static const struct clk_bulk_data caam_imx6ul_clks[] = { 529 { .id = "ipg" }, 530 { .id = "mem" }, 531 { .id = "aclk" }, 532 }; 533 534 static const struct caam_imx_data caam_imx6ul_data = { 535 .clks = caam_imx6ul_clks, 536 .num_clks = ARRAY_SIZE(caam_imx6ul_clks), 537 }; 538 539 static const struct clk_bulk_data caam_vf610_clks[] = { 540 { .id = "ipg" }, 541 }; 542 543 static const struct caam_imx_data caam_vf610_data = { 544 .clks = caam_vf610_clks, 545 .num_clks = ARRAY_SIZE(caam_vf610_clks), 546 }; 547 548 static const struct soc_device_attribute caam_imx_soc_table[] = { 549 { .soc_id = "i.MX6UL", .data = &caam_imx6ul_data }, 550 { .soc_id = "i.MX6*", .data = &caam_imx6_data }, 551 { .soc_id = "i.MX7*", .data = &caam_imx7_data }, 552 { .soc_id = "i.MX8M*", .data = &caam_imx7_data }, 553 { .soc_id = "VF*", .data = &caam_vf610_data }, 554 { .family = "Freescale i.MX" }, 555 { /* sentinel */ } 556 }; 557 558 static void disable_clocks(void *data) 559 { 560 struct caam_drv_private *ctrlpriv = data; 561 562 clk_bulk_disable_unprepare(ctrlpriv->num_clks, ctrlpriv->clks); 563 } 564 565 static int init_clocks(struct device *dev, const struct caam_imx_data *data) 566 { 567 struct caam_drv_private *ctrlpriv = dev_get_drvdata(dev); 568 int ret; 569 570 ctrlpriv->num_clks = data->num_clks; 571 ctrlpriv->clks = devm_kmemdup(dev, data->clks, 572 data->num_clks * sizeof(data->clks[0]), 573 GFP_KERNEL); 574 if (!ctrlpriv->clks) 575 return -ENOMEM; 576 577 ret = devm_clk_bulk_get(dev, ctrlpriv->num_clks, ctrlpriv->clks); 578 if (ret) { 579 dev_err(dev, 580 "Failed to request all necessary clocks\n"); 581 return ret; 582 } 583 584 ret = clk_bulk_prepare_enable(ctrlpriv->num_clks, ctrlpriv->clks); 585 if (ret) { 586 dev_err(dev, 587 "Failed to prepare/enable all necessary clocks\n"); 588 return ret; 589 } 590 591 return devm_add_action_or_reset(dev, disable_clocks, ctrlpriv); 592 } 593 594 static void caam_remove_debugfs(void *root) 595 { 596 debugfs_remove_recursive(root); 597 } 598 599 #ifdef CONFIG_FSL_MC_BUS 600 static bool check_version(struct fsl_mc_version *mc_version, u32 major, 601 u32 minor, u32 revision) 602 { 603 if (mc_version->major > major) 604 return true; 605 606 if (mc_version->major == major) { 607 if (mc_version->minor > minor) 608 return true; 609 610 if (mc_version->minor == minor && 611 mc_version->revision > revision) 612 return true; 613 } 614 615 return false; 616 } 617 #endif 618 619 static bool needs_entropy_delay_adjustment(void) 620 { 621 if (of_machine_is_compatible("fsl,imx6sx")) 622 return true; 623 return false; 624 } 625 626 static int caam_ctrl_rng_init(struct device *dev) 627 { 628 struct caam_drv_private *ctrlpriv = dev_get_drvdata(dev); 629 struct caam_ctrl __iomem *ctrl = ctrlpriv->ctrl; 630 int ret, gen_sk, ent_delay = RTSDCTL_ENT_DLY_MIN; 631 u8 rng_vid; 632 633 if (ctrlpriv->era < 10) { 634 struct caam_perfmon __iomem *perfmon; 635 636 perfmon = ctrlpriv->total_jobrs ? 637 (struct caam_perfmon __iomem *)&ctrlpriv->jr[0]->perfmon : 638 (struct caam_perfmon __iomem *)&ctrl->perfmon; 639 640 rng_vid = (rd_reg32(&perfmon->cha_id_ls) & 641 CHA_ID_LS_RNG_MASK) >> CHA_ID_LS_RNG_SHIFT; 642 } else { 643 struct version_regs __iomem *vreg; 644 645 vreg = ctrlpriv->total_jobrs ? 646 (struct version_regs __iomem *)&ctrlpriv->jr[0]->vreg : 647 (struct version_regs __iomem *)&ctrl->vreg; 648 649 rng_vid = (rd_reg32(&vreg->rng) & CHA_VER_VID_MASK) >> 650 CHA_VER_VID_SHIFT; 651 } 652 653 /* 654 * If SEC has RNG version >= 4 and RNG state handle has not been 655 * already instantiated, do RNG instantiation 656 * In case of SoCs with Management Complex, RNG is managed by MC f/w. 657 */ 658 if (!(ctrlpriv->mc_en && ctrlpriv->pr_support) && rng_vid >= 4) { 659 ctrlpriv->rng4_sh_init = 660 rd_reg32(&ctrl->r4tst[0].rdsta); 661 /* 662 * If the secure keys (TDKEK, JDKEK, TDSK), were already 663 * generated, signal this to the function that is instantiating 664 * the state handles. An error would occur if RNG4 attempts 665 * to regenerate these keys before the next POR. 666 */ 667 gen_sk = ctrlpriv->rng4_sh_init & RDSTA_SKVN ? 0 : 1; 668 ctrlpriv->rng4_sh_init &= RDSTA_MASK; 669 do { 670 int inst_handles = 671 rd_reg32(&ctrl->r4tst[0].rdsta) & RDSTA_MASK; 672 /* 673 * If either SH were instantiated by somebody else 674 * (e.g. u-boot) then it is assumed that the entropy 675 * parameters are properly set and thus the function 676 * setting these (kick_trng(...)) is skipped. 677 * Also, if a handle was instantiated, do not change 678 * the TRNG parameters. 679 */ 680 if (needs_entropy_delay_adjustment()) 681 ent_delay = 12000; 682 if (!(ctrlpriv->rng4_sh_init || inst_handles)) { 683 dev_info(dev, 684 "Entropy delay = %u\n", 685 ent_delay); 686 kick_trng(dev, ent_delay); 687 ent_delay += 400; 688 } 689 /* 690 * if instantiate_rng(...) fails, the loop will rerun 691 * and the kick_trng(...) function will modify the 692 * upper and lower limits of the entropy sampling 693 * interval, leading to a successful initialization of 694 * the RNG. 695 */ 696 ret = instantiate_rng(dev, inst_handles, 697 gen_sk); 698 /* 699 * Entropy delay is determined via TRNG characterization. 700 * TRNG characterization is run across different voltages 701 * and temperatures. 702 * If worst case value for ent_dly is identified, 703 * the loop can be skipped for that platform. 704 */ 705 if (needs_entropy_delay_adjustment()) 706 break; 707 if (ret == -EAGAIN) 708 /* 709 * if here, the loop will rerun, 710 * so don't hog the CPU 711 */ 712 cpu_relax(); 713 } while ((ret == -EAGAIN) && (ent_delay < RTSDCTL_ENT_DLY_MAX)); 714 if (ret) { 715 dev_err(dev, "failed to instantiate RNG"); 716 return ret; 717 } 718 /* 719 * Set handles initialized by this module as the complement of 720 * the already initialized ones 721 */ 722 ctrlpriv->rng4_sh_init = ~ctrlpriv->rng4_sh_init & RDSTA_MASK; 723 724 /* Enable RDB bit so that RNG works faster */ 725 clrsetbits_32(&ctrl->scfgr, 0, SCFGR_RDBENABLE); 726 } 727 728 return 0; 729 } 730 731 /* Probe routine for CAAM top (controller) level */ 732 static int caam_probe(struct platform_device *pdev) 733 { 734 int ret, ring; 735 u64 caam_id; 736 const struct soc_device_attribute *imx_soc_match; 737 struct device *dev; 738 struct device_node *nprop, *np; 739 struct caam_ctrl __iomem *ctrl; 740 struct caam_drv_private *ctrlpriv; 741 struct caam_perfmon __iomem *perfmon; 742 struct dentry *dfs_root; 743 u32 scfgr, comp_params; 744 int pg_size; 745 int BLOCK_OFFSET = 0; 746 bool reg_access = true; 747 748 ctrlpriv = devm_kzalloc(&pdev->dev, sizeof(*ctrlpriv), GFP_KERNEL); 749 if (!ctrlpriv) 750 return -ENOMEM; 751 752 dev = &pdev->dev; 753 dev_set_drvdata(dev, ctrlpriv); 754 nprop = pdev->dev.of_node; 755 756 imx_soc_match = soc_device_match(caam_imx_soc_table); 757 if (!imx_soc_match && of_match_node(imx8m_machine_match, of_root)) 758 return -EPROBE_DEFER; 759 760 caam_imx = (bool)imx_soc_match; 761 762 if (imx_soc_match) { 763 /* 764 * Until Layerscape and i.MX OP-TEE get in sync, 765 * only i.MX OP-TEE use cases disallow access to 766 * caam page 0 (controller) registers. 767 */ 768 np = of_find_compatible_node(NULL, NULL, "linaro,optee-tz"); 769 ctrlpriv->optee_en = !!np; 770 of_node_put(np); 771 772 reg_access = !ctrlpriv->optee_en; 773 774 if (!imx_soc_match->data) { 775 dev_err(dev, "No clock data provided for i.MX SoC"); 776 return -EINVAL; 777 } 778 779 ret = init_clocks(dev, imx_soc_match->data); 780 if (ret) 781 return ret; 782 } 783 784 785 /* Get configuration properties from device tree */ 786 /* First, get register page */ 787 ctrl = devm_of_iomap(dev, nprop, 0, NULL); 788 ret = PTR_ERR_OR_ZERO(ctrl); 789 if (ret) { 790 dev_err(dev, "caam: of_iomap() failed\n"); 791 return ret; 792 } 793 794 ring = 0; 795 for_each_available_child_of_node(nprop, np) 796 if (of_device_is_compatible(np, "fsl,sec-v4.0-job-ring") || 797 of_device_is_compatible(np, "fsl,sec4.0-job-ring")) { 798 u32 reg; 799 800 if (of_property_read_u32_index(np, "reg", 0, ®)) { 801 dev_err(dev, "%s read reg property error\n", 802 np->full_name); 803 continue; 804 } 805 806 ctrlpriv->jr[ring] = (struct caam_job_ring __iomem __force *) 807 ((__force uint8_t *)ctrl + reg); 808 809 ctrlpriv->total_jobrs++; 810 ring++; 811 } 812 813 /* 814 * Wherever possible, instead of accessing registers from the global page, 815 * use the alias registers in the first (cf. DT nodes order) 816 * job ring's page. 817 */ 818 perfmon = ring ? (struct caam_perfmon __iomem *)&ctrlpriv->jr[0]->perfmon : 819 (struct caam_perfmon __iomem *)&ctrl->perfmon; 820 821 caam_little_end = !(bool)(rd_reg32(&perfmon->status) & 822 (CSTA_PLEND | CSTA_ALT_PLEND)); 823 comp_params = rd_reg32(&perfmon->comp_parms_ms); 824 if (reg_access && comp_params & CTPR_MS_PS && 825 rd_reg32(&ctrl->mcr) & MCFGR_LONG_PTR) 826 caam_ptr_sz = sizeof(u64); 827 else 828 caam_ptr_sz = sizeof(u32); 829 caam_dpaa2 = !!(comp_params & CTPR_MS_DPAA2); 830 ctrlpriv->qi_present = !!(comp_params & CTPR_MS_QI_MASK); 831 832 #ifdef CONFIG_CAAM_QI 833 /* If (DPAA 1.x) QI present, check whether dependencies are available */ 834 if (ctrlpriv->qi_present && !caam_dpaa2) { 835 ret = qman_is_probed(); 836 if (!ret) { 837 return -EPROBE_DEFER; 838 } else if (ret < 0) { 839 dev_err(dev, "failing probe due to qman probe error\n"); 840 return -ENODEV; 841 } 842 843 ret = qman_portals_probed(); 844 if (!ret) { 845 return -EPROBE_DEFER; 846 } else if (ret < 0) { 847 dev_err(dev, "failing probe due to qman portals probe error\n"); 848 return -ENODEV; 849 } 850 } 851 #endif 852 853 /* Allocating the BLOCK_OFFSET based on the supported page size on 854 * the platform 855 */ 856 pg_size = (comp_params & CTPR_MS_PG_SZ_MASK) >> CTPR_MS_PG_SZ_SHIFT; 857 if (pg_size == 0) 858 BLOCK_OFFSET = PG_SIZE_4K; 859 else 860 BLOCK_OFFSET = PG_SIZE_64K; 861 862 ctrlpriv->ctrl = (struct caam_ctrl __iomem __force *)ctrl; 863 ctrlpriv->assure = (struct caam_assurance __iomem __force *) 864 ((__force uint8_t *)ctrl + 865 BLOCK_OFFSET * ASSURE_BLOCK_NUMBER 866 ); 867 ctrlpriv->deco = (struct caam_deco __iomem __force *) 868 ((__force uint8_t *)ctrl + 869 BLOCK_OFFSET * DECO_BLOCK_NUMBER 870 ); 871 872 /* Get the IRQ of the controller (for security violations only) */ 873 ctrlpriv->secvio_irq = irq_of_parse_and_map(nprop, 0); 874 np = of_find_compatible_node(NULL, NULL, "fsl,qoriq-mc"); 875 ctrlpriv->mc_en = !!np; 876 of_node_put(np); 877 878 #ifdef CONFIG_FSL_MC_BUS 879 if (ctrlpriv->mc_en) { 880 struct fsl_mc_version *mc_version; 881 882 mc_version = fsl_mc_get_version(); 883 if (mc_version) 884 ctrlpriv->pr_support = check_version(mc_version, 10, 20, 885 0); 886 else 887 return -EPROBE_DEFER; 888 } 889 #endif 890 891 if (!reg_access) 892 goto set_dma_mask; 893 894 /* 895 * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel, 896 * long pointers in master configuration register. 897 * In case of SoCs with Management Complex, MC f/w performs 898 * the configuration. 899 */ 900 if (!ctrlpriv->mc_en) 901 clrsetbits_32(&ctrl->mcr, MCFGR_AWCACHE_MASK, 902 MCFGR_AWCACHE_CACH | MCFGR_AWCACHE_BUFF | 903 MCFGR_WDENABLE | MCFGR_LARGE_BURST); 904 905 handle_imx6_err005766(&ctrl->mcr); 906 907 /* 908 * Read the Compile Time parameters and SCFGR to determine 909 * if virtualization is enabled for this platform 910 */ 911 scfgr = rd_reg32(&ctrl->scfgr); 912 913 ctrlpriv->virt_en = 0; 914 if (comp_params & CTPR_MS_VIRT_EN_INCL) { 915 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or 916 * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SCFGR_VIRT_EN = 1 917 */ 918 if ((comp_params & CTPR_MS_VIRT_EN_POR) || 919 (!(comp_params & CTPR_MS_VIRT_EN_POR) && 920 (scfgr & SCFGR_VIRT_EN))) 921 ctrlpriv->virt_en = 1; 922 } else { 923 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */ 924 if (comp_params & CTPR_MS_VIRT_EN_POR) 925 ctrlpriv->virt_en = 1; 926 } 927 928 if (ctrlpriv->virt_en == 1) 929 clrsetbits_32(&ctrl->jrstart, 0, JRSTART_JR0_START | 930 JRSTART_JR1_START | JRSTART_JR2_START | 931 JRSTART_JR3_START); 932 933 set_dma_mask: 934 ret = dma_set_mask_and_coherent(dev, caam_get_dma_mask(dev)); 935 if (ret) { 936 dev_err(dev, "dma_set_mask_and_coherent failed (%d)\n", ret); 937 return ret; 938 } 939 940 ctrlpriv->era = caam_get_era(perfmon); 941 ctrlpriv->domain = iommu_get_domain_for_dev(dev); 942 943 dfs_root = debugfs_create_dir(dev_name(dev), NULL); 944 if (IS_ENABLED(CONFIG_DEBUG_FS)) { 945 ret = devm_add_action_or_reset(dev, caam_remove_debugfs, 946 dfs_root); 947 if (ret) 948 return ret; 949 } 950 951 caam_debugfs_init(ctrlpriv, perfmon, dfs_root); 952 953 /* Check to see if (DPAA 1.x) QI present. If so, enable */ 954 if (ctrlpriv->qi_present && !caam_dpaa2) { 955 ctrlpriv->qi = (struct caam_queue_if __iomem __force *) 956 ((__force uint8_t *)ctrl + 957 BLOCK_OFFSET * QI_BLOCK_NUMBER 958 ); 959 /* This is all that's required to physically enable QI */ 960 wr_reg32(&ctrlpriv->qi->qi_control_lo, QICTL_DQEN); 961 962 /* If QMAN driver is present, init CAAM-QI backend */ 963 #ifdef CONFIG_CAAM_QI 964 ret = caam_qi_init(pdev); 965 if (ret) 966 dev_err(dev, "caam qi i/f init failed: %d\n", ret); 967 #endif 968 } 969 970 /* If no QI and no rings specified, quit and go home */ 971 if ((!ctrlpriv->qi_present) && (!ctrlpriv->total_jobrs)) { 972 dev_err(dev, "no queues configured, terminating\n"); 973 return -ENOMEM; 974 } 975 976 comp_params = rd_reg32(&perfmon->comp_parms_ls); 977 ctrlpriv->blob_present = !!(comp_params & CTPR_LS_BLOB); 978 979 /* 980 * Some SoCs like the LS1028A (non-E) indicate CTPR_LS_BLOB support, 981 * but fail when actually using it due to missing AES support, so 982 * check both here. 983 */ 984 if (ctrlpriv->era < 10) { 985 ctrlpriv->blob_present = ctrlpriv->blob_present && 986 (rd_reg32(&perfmon->cha_num_ls) & CHA_ID_LS_AES_MASK); 987 } else { 988 struct version_regs __iomem *vreg; 989 990 vreg = ctrlpriv->total_jobrs ? 991 (struct version_regs __iomem *)&ctrlpriv->jr[0]->vreg : 992 (struct version_regs __iomem *)&ctrl->vreg; 993 994 ctrlpriv->blob_present = ctrlpriv->blob_present && 995 (rd_reg32(&vreg->aesa) & CHA_VER_MISC_AES_NUM_MASK); 996 } 997 998 if (reg_access) { 999 ret = caam_ctrl_rng_init(dev); 1000 if (ret) 1001 return ret; 1002 } 1003 1004 caam_id = (u64)rd_reg32(&perfmon->caam_id_ms) << 32 | 1005 (u64)rd_reg32(&perfmon->caam_id_ls); 1006 1007 /* Report "alive" for developer to see */ 1008 dev_info(dev, "device ID = 0x%016llx (Era %d)\n", caam_id, 1009 ctrlpriv->era); 1010 dev_info(dev, "job rings = %d, qi = %d\n", 1011 ctrlpriv->total_jobrs, ctrlpriv->qi_present); 1012 1013 ret = devm_of_platform_populate(dev); 1014 if (ret) 1015 dev_err(dev, "JR platform devices creation error\n"); 1016 1017 return ret; 1018 } 1019 1020 static struct platform_driver caam_driver = { 1021 .driver = { 1022 .name = "caam", 1023 .of_match_table = caam_match, 1024 }, 1025 .probe = caam_probe, 1026 }; 1027 1028 module_platform_driver(caam_driver); 1029 1030 MODULE_LICENSE("GPL"); 1031 MODULE_DESCRIPTION("FSL CAAM request backend"); 1032 MODULE_AUTHOR("Freescale Semiconductor - NMG/STC"); 1033