Commit 33af51a6 authored by Sumit Gupta's avatar Sumit Gupta Committed by Thierry Reding
Browse files

soc/tegra: cbb: Use correct master_id mask for CBB NOC in Tegra194



In Tegra194 SoC, master_id bit range is different between cluster NOC
and CBB NOC. Currently same bit range is used which results in wrong
master_id value. Due to this, illegal accesses from the CCPLEX master
do not result in a crash as expected. Fix this by using the correct
range for the CBB NOC.

Finally, it is only necessary to extract the master_id when the
erd_mask_inband_err flag is set because when this is not set, a crash
is always triggered.

Fixes: b7134422 ("soc/tegra: cbb: Add CBB 1.0 driver for Tegra194")
Fixes: fc2f151d ("soc/tegra: cbb: Add driver for Tegra234 CBB 2.0")
Signed-off-by: default avatarSumit Gupta <sumitg@nvidia.com>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent bebf683b
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -102,8 +102,6 @@
#define CLUSTER_NOC_VQC GENMASK(17, 16)
#define CLUSTER_NOC_MSTR_ID GENMASK(21, 18)

#define USRBITS_MSTR_ID GENMASK(21, 18)

#define CBB_ERR_OPC GENMASK(4, 1)
#define CBB_ERR_ERRCODE GENMASK(10, 8)
#define CBB_ERR_LEN1 GENMASK(27, 16)
@@ -2038,17 +2036,19 @@ static irqreturn_t tegra194_cbb_err_isr(int irq, void *data)
					    smp_processor_id(), priv->noc->name, priv->res->start,
					    irq);

			mstr_id =  FIELD_GET(USRBITS_MSTR_ID, priv->errlog5) - 1;
			is_fatal = print_errlog(NULL, priv, status);

			/*
			 * If illegal request is from CCPLEX(0x1)
			 * initiator then call BUG() to crash system.
			 * If illegal request is from CCPLEX(0x1) initiator
			 * and error is fatal then call BUG() to crash system.
			 */
			if ((mstr_id == 0x1) && priv->noc->erd_mask_inband_err)
			if (priv->noc->erd_mask_inband_err) {
				mstr_id =  FIELD_GET(CBB_NOC_MSTR_ID, priv->errlog5);
				if (mstr_id == 0x1)
					is_inband_err = 1;
			}
		}
	}

	spin_unlock_irqrestore(&cbb_lock, flags);

+6 −7
Original line number Diff line number Diff line
@@ -92,7 +92,6 @@ struct tegra234_slave_lookup {
struct tegra234_cbb_fabric {
	const char *name;
	phys_addr_t off_mask_erd;
	bool erd_mask_inband_err;
	const char * const *master_id;
	unsigned int notifier_offset;
	const struct tegra_cbb_error *errors;
@@ -525,16 +524,16 @@ static irqreturn_t tegra234_cbb_isr(int irq, void *data)
			if (err)
				goto unlock;

			mstr_id =  FIELD_GET(USRBITS_MSTR_ID, priv->mn_user_bits);

			/*
			 * If illegal request is from CCPLEX(id:0x1) master then call BUG() to
			 * crash system.
			 * If illegal request is from CCPLEX(id:0x1) master then call WARN()
			 */
			if ((mstr_id == 0x1) && priv->fabric->off_mask_erd)
			if (priv->fabric->off_mask_erd) {
				mstr_id =  FIELD_GET(USRBITS_MSTR_ID, priv->mn_user_bits);
				if (mstr_id == 0x1)
					is_inband_err = 1;
			}
		}
	}

unlock:
	spin_unlock_irqrestore(&cbb_lock, flags);