Skip to content
Commit a76a3777 authored by Zhou Wang's avatar Zhou Wang Committed by Will Deacon
Browse files

iommu/arm-smmu-v3: Ensure queue is read after updating prod pointer



Reading the 'prod' MMIO register in order to determine whether or not
there is valid data beyond 'cons' for a given queue does not provide
sufficient dependency ordering, as the resulting access is address
dependent only on 'cons' and can therefore be speculated ahead of time,
potentially allowing stale data to be read by the CPU.

Use readl() instead of readl_relaxed() when updating the shadow copy of
the 'prod' pointer, so that all speculated memory reads from the
corresponding queue can occur only from valid slots.

Signed-off-by: default avatarZhou Wang <wangzhou1@hisilicon.com>
Link: https://lore.kernel.org/r/1601281922-117296-1-git-send-email-wangzhou1@hisilicon.com


[will: Use readl() instead of explicit barrier. Update 'cons' side to match.]
Signed-off-by: default avatarWill Deacon <will@kernel.org>
parent 1226fa0e
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment