blob: a3e3432cfe612a3889daba6e28b3d3fe7a56a3fc [file] [log] [blame]
From 6aa7dd08ffd6e1ab8171a34ee55ebd5c6a100e51 Mon Sep 17 00:00:00 2001
From: Douglas Anderson <dianders@chromium.org>
Date: Wed, 20 Jan 2021 14:34:10 -0800
Subject: [PATCH] CHROMIUM: Undo arm-smmu-qcom.c parts in Merge 'v5.10.4' into
chromeos-5.10 and Merge 'v5.10.8' into chromeos-5.10
This reverts 'drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c' to how it
was before those merges to simplify reverting old FROMLIST patches and
picking UPSTREAM ones.
BUG=b:170301044
TEST=Use GPU
Cq-Depend: chromium:2640648
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Change-Id: I4b75c2d3f17993b2700ef77e16f7510610474980
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/kernel/+/2611425
Reviewed-by: Rob Clark <robdclark@chromium.org>
---
drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c | 89 ----------------------
1 file changed, 89 deletions(-)
diff --git a/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c b/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c
--- a/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c
+++ b/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c
@@ -12,8 +12,6 @@
struct qcom_smmu {
struct arm_smmu_device smmu;
- bool bypass_quirk;
- u8 bypass_cbndx;
u32 stall_enabled;
};
@@ -245,91 +243,6 @@ static int qcom_smmu_init_context(struct arm_smmu_domain *smmu_domain,
return 0;
}
-static int qcom_smmu_cfg_probe(struct arm_smmu_device *smmu)
-{
- unsigned int last_s2cr = ARM_SMMU_GR0_S2CR(smmu->num_mapping_groups - 1);
- struct qcom_smmu *qsmmu = to_qcom_smmu(smmu);
- u32 reg;
- u32 smr;
- int i;
-
- /*
- * With some firmware versions writes to S2CR of type FAULT are
- * ignored, and writing BYPASS will end up written as FAULT in the
- * register. Perform a write to S2CR to detect if this is the case and
- * if so reserve a context bank to emulate bypass streams.
- */
- reg = FIELD_PREP(ARM_SMMU_S2CR_TYPE, S2CR_TYPE_BYPASS) |
- FIELD_PREP(ARM_SMMU_S2CR_CBNDX, 0xff) |
- FIELD_PREP(ARM_SMMU_S2CR_PRIVCFG, S2CR_PRIVCFG_DEFAULT);
- arm_smmu_gr0_write(smmu, last_s2cr, reg);
- reg = arm_smmu_gr0_read(smmu, last_s2cr);
- if (FIELD_GET(ARM_SMMU_S2CR_TYPE, reg) != S2CR_TYPE_BYPASS) {
- qsmmu->bypass_quirk = true;
- qsmmu->bypass_cbndx = smmu->num_context_banks - 1;
-
- set_bit(qsmmu->bypass_cbndx, smmu->context_map);
-
- arm_smmu_cb_write(smmu, qsmmu->bypass_cbndx, ARM_SMMU_CB_SCTLR, 0);
-
- reg = FIELD_PREP(ARM_SMMU_CBAR_TYPE, CBAR_TYPE_S1_TRANS_S2_BYPASS);
- arm_smmu_gr1_write(smmu, ARM_SMMU_GR1_CBAR(qsmmu->bypass_cbndx), reg);
- }
-
- for (i = 0; i < smmu->num_mapping_groups; i++) {
- smr = arm_smmu_gr0_read(smmu, ARM_SMMU_GR0_SMR(i));
-
- if (FIELD_GET(ARM_SMMU_SMR_VALID, smr)) {
- /* Ignore valid bit for SMR mask extraction. */
- smr &= ~ARM_SMMU_SMR_VALID;
- smmu->smrs[i].id = FIELD_GET(ARM_SMMU_SMR_ID, smr);
- smmu->smrs[i].mask = FIELD_GET(ARM_SMMU_SMR_MASK, smr);
- smmu->smrs[i].valid = true;
-
- smmu->s2crs[i].type = S2CR_TYPE_BYPASS;
- smmu->s2crs[i].privcfg = S2CR_PRIVCFG_DEFAULT;
- smmu->s2crs[i].cbndx = 0xff;
- }
- }
-
- return 0;
-}
-
-static void qcom_smmu_write_s2cr(struct arm_smmu_device *smmu, int idx)
-{
- struct arm_smmu_s2cr *s2cr = smmu->s2crs + idx;
- struct qcom_smmu *qsmmu = to_qcom_smmu(smmu);
- u32 cbndx = s2cr->cbndx;
- u32 type = s2cr->type;
- u32 reg;
-
- if (qsmmu->bypass_quirk) {
- if (type == S2CR_TYPE_BYPASS) {
- /*
- * Firmware with quirky S2CR handling will substitute
- * BYPASS writes with FAULT, so point the stream to the
- * reserved context bank and ask for translation on the
- * stream
- */
- type = S2CR_TYPE_TRANS;
- cbndx = qsmmu->bypass_cbndx;
- } else if (type == S2CR_TYPE_FAULT) {
- /*
- * Firmware with quirky S2CR handling will ignore FAULT
- * writes, so trick it to write FAULT by asking for a
- * BYPASS.
- */
- type = S2CR_TYPE_BYPASS;
- cbndx = 0xff;
- }
- }
-
- reg = FIELD_PREP(ARM_SMMU_S2CR_TYPE, type) |
- FIELD_PREP(ARM_SMMU_S2CR_CBNDX, cbndx) |
- FIELD_PREP(ARM_SMMU_S2CR_PRIVCFG, s2cr->privcfg);
- arm_smmu_gr0_write(smmu, ARM_SMMU_GR0_S2CR(idx), reg);
-}
-
static int qcom_smmu_def_domain_type(struct device *dev)
{
const struct of_device_id *match =
@@ -369,10 +282,8 @@ static int qcom_smmu500_reset(struct arm_smmu_device *smmu)
static const struct arm_smmu_impl qcom_smmu_impl = {
.init_context = qcom_smmu_init_context,
- .cfg_probe = qcom_smmu_cfg_probe,
.def_domain_type = qcom_smmu_def_domain_type,
.reset = qcom_smmu500_reset,
- .write_s2cr = qcom_smmu_write_s2cr,
};
static const struct arm_smmu_impl qcom_adreno_smmu_impl = {
--
2.33.0.464.g1972c5931b-goog