]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
5.10-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 22 Jan 2024 20:02:50 +0000 (12:02 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 22 Jan 2024 20:02:50 +0000 (12:02 -0800)
added patches:
iommu-arm-smmu-qcom-add-missing-gmu-entry-to-match-table.patch

queue-5.10/iommu-arm-smmu-qcom-add-missing-gmu-entry-to-match-table.patch [new file with mode: 0644]
queue-5.10/series

diff --git a/queue-5.10/iommu-arm-smmu-qcom-add-missing-gmu-entry-to-match-table.patch b/queue-5.10/iommu-arm-smmu-qcom-add-missing-gmu-entry-to-match-table.patch
new file mode 100644 (file)
index 0000000..0d0fde5
--- /dev/null
@@ -0,0 +1,40 @@
+From afc95681c3068956fed1241a1ff1612c066c75ac Mon Sep 17 00:00:00 2001
+From: Rob Clark <robdclark@chromium.org>
+Date: Sun, 10 Dec 2023 10:06:53 -0800
+Subject: iommu/arm-smmu-qcom: Add missing GMU entry to match table
+
+From: Rob Clark <robdclark@chromium.org>
+
+commit afc95681c3068956fed1241a1ff1612c066c75ac upstream.
+
+In some cases the firmware expects cbndx 1 to be assigned to the GMU,
+so we also want the default domain for the GMU to be an identy domain.
+This way it does not get a context bank assigned.  Without this, both
+of_dma_configure() and drm/msm's iommu_domain_attach() will trigger
+allocating and configuring a context bank.  So GMU ends up attached to
+both cbndx 1 and later cbndx 2.  This arrangement seemingly confounds
+and surprises the firmware if the GPU later triggers a translation
+fault, resulting (on sc8280xp / lenovo x13s, at least) in the SMMU
+getting wedged and the GPU stuck without memory access.
+
+Cc: stable@vger.kernel.org
+Signed-off-by: Rob Clark <robdclark@chromium.org>
+Tested-by: Johan Hovold <johan+linaro@kernel.org>
+Reviewed-by: Robin Murphy <robin.murphy@arm.com>
+Link: https://lore.kernel.org/r/20231210180655.75542-1-robdclark@gmail.com
+Signed-off-by: Will Deacon <will@kernel.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c |    1 +
+ 1 file changed, 1 insertion(+)
+
+--- a/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c
++++ b/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c
+@@ -21,6 +21,7 @@ static struct qcom_smmu *to_qcom_smmu(st
+ static const struct of_device_id qcom_smmu_client_of_match[] __maybe_unused = {
+       { .compatible = "qcom,adreno" },
++      { .compatible = "qcom,adreno-gmu" },
+       { .compatible = "qcom,mdp4" },
+       { .compatible = "qcom,mdss" },
+       { .compatible = "qcom,sc7180-mdss" },
index 3ff7bab5dd2b64e5204b3a7d5ff4b5337e0f17ed..e0e26372eb72685d438a19cdfa6eb21b6555715c 100644 (file)
@@ -224,3 +224,4 @@ pwm-jz4740-don-t-use-dev_err_probe-in-.request.patch
 io_uring-rw-ensure-io-bytes_done-is-always-initialized.patch
 rootfs-fix-support-for-rootfstype-when-root-is-given.patch
 bluetooth-fix-atomicity-violation-in-min-max-_key_size_set.patch
+iommu-arm-smmu-qcom-add-missing-gmu-entry-to-match-table.patch