]> git.baikalelectronics.ru Git - kernel.git/commit
iommu/arm-smmu: Avoid constant zero in TLBI writes
authorRobin Murphy <robin.murphy@arm.com>
Mon, 3 Jun 2019 12:15:37 +0000 (14:15 +0200)
committerJoerg Roedel <jroedel@suse.de>
Wed, 12 Jun 2019 08:08:56 +0000 (10:08 +0200)
commit863c916194c60242b4ddc25dc9a86cc21b62075b
treeabeaad5c2a5d95d0b511899282593c9f51b6a806
parentf994dbf7e082d3160175866a292fd23266cc014c
iommu/arm-smmu: Avoid constant zero in TLBI writes

Apparently, some Qualcomm arm64 platforms which appear to expose their
SMMU global register space are still, in fact, using a hypervisor to
mediate it by trapping and emulating register accesses. Sadly, some
deployed versions of said trapping code have bugs wherein they go
horribly wrong for stores using r31 (i.e. XZR/WZR) as the source
register.

While this can be mitigated for GCC today by tweaking the constraints
for the implementation of writel_relaxed(), to avoid any potential
arms race with future compilers more aggressively optimising register
allocation, the simple way is to just remove all the problematic
constant zeros. For the write-only TLB operations, the actual value is
irrelevant anyway and any old nearby variable will provide a suitable
GPR to encode. The one point at which we really do need a zero to clear
a context bank happens before any of the TLB maintenance where crashes
have been reported, so is apparently not a problem... :/

Reported-by: AngeloGioacchino Del Regno <kholk11@gmail.com>
Tested-by: Marc Gonzalez <marc.w.gonzalez@free.fr>
Signed-off-by: Robin Murphy <robin.murphy@arm.com>
Signed-off-by: Marc Gonzalez <marc.w.gonzalez@free.fr>
Acked-by: Will Deacon <will.deacon@arm.com>
Cc: stable@vger.kernel.org
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/arm-smmu.c