Linux Audio

Check our new training course

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