Linux IOMMU Development
 help / color / mirror / Atom feed
* [PATCH] iommu/arm-smmu-v3: Skip prefetch cmd for MMU-600, MMU-700
@ 2024-05-13 21:54 Daniel Mentz
  2024-05-15 15:29 ` Robin Murphy
  0 siblings, 1 reply; 3+ messages in thread
From: Daniel Mentz @ 2024-05-13 21:54 UTC (permalink / raw)
  To: iommu; +Cc: Nicolin Chen, Robin Murphy, Daniel Mentz

Arm CoreLink MMU-600 and MMU-700 both silently ignore the
CMD_PREFETCH_CONFIG command. Let's not waste cycles adding this command to
the command queue if it is ignored anyway.

Signed-off-by: Daniel Mentz <danielmentz@google.com>
---
 drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
index aa62f0ecd053..98f1c4b44ef3 100644
--- a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
+++ b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
@@ -3684,6 +3684,8 @@ static void arm_smmu_device_iidr_probe(struct arm_smmu_device *smmu)
 	case IIDR_IMPLEMENTER_ARM:
 		switch (productid) {
 		case IIDR_PRODUCTID_ARM_MMU_600:
+			/* MMU-600 silently ignores CMD_PREFETCH_CONFIG */
+			smmu->options |= ARM_SMMU_OPT_SKIP_PREFETCH;
 			/* Arm erratum 1076982 */
 			if (variant == 0 && revision <= 2)
 				smmu->features &= ~ARM_SMMU_FEAT_SEV;
@@ -3692,6 +3694,8 @@ static void arm_smmu_device_iidr_probe(struct arm_smmu_device *smmu)
 				smmu->features &= ~ARM_SMMU_FEAT_NESTING;
 			break;
 		case IIDR_PRODUCTID_ARM_MMU_700:
+			/* MMU-700 silently ignores CMD_PREFETCH_CONFIG */
+			smmu->options |= ARM_SMMU_OPT_SKIP_PREFETCH;
 			/* Arm erratum 2812531 */
 			smmu->features &= ~ARM_SMMU_FEAT_BTM;
 			smmu->options |= ARM_SMMU_OPT_CMDQ_FORCE_SYNC;
-- 
2.45.0.118.g7fe29c98d7-goog


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-05-21 17:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-13 21:54 [PATCH] iommu/arm-smmu-v3: Skip prefetch cmd for MMU-600, MMU-700 Daniel Mentz
2024-05-15 15:29 ` Robin Murphy
2024-05-21 17:49   ` Daniel Mentz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox