Skip to content
Snippets Groups Projects
Commit 4ff08170 authored by Zhen Lei's avatar Zhen Lei Committed by Greg Kroah-Hartman
Browse files

iommu/arm-smmu-v3: add bit field SFM into GERROR_ERR_MASK


[ Upstream commit 655c447c ]

In arm_smmu_gerror_handler(), the value of the SMMU_GERROR register is
filtered by GERROR_ERR_MASK. However, the GERROR_ERR_MASK does not contain
the SFM bit. As a result, the subsequent error processing is not performed
when only the SFM error occurs.

Fixes: 48ec83bc ("iommu/arm-smmu: Add initial driver support for ARM SMMUv3 devices")
Reported-by: default avatarRui Zhu <zhurui3@huawei.com>
Signed-off-by: default avatarZhen Lei <thunder.leizhen@huawei.com>
Link: https://lore.kernel.org/r/20210324081603.1074-1-thunder.leizhen@huawei.com


Signed-off-by: default avatarWill Deacon <will@kernel.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 9681d50a
No related branches found
No related tags found
No related merge requests found
...@@ -115,7 +115,7 @@ ...@@ -115,7 +115,7 @@
#define GERROR_PRIQ_ABT_ERR (1 << 3) #define GERROR_PRIQ_ABT_ERR (1 << 3)
#define GERROR_EVTQ_ABT_ERR (1 << 2) #define GERROR_EVTQ_ABT_ERR (1 << 2)
#define GERROR_CMDQ_ERR (1 << 0) #define GERROR_CMDQ_ERR (1 << 0)
#define GERROR_ERR_MASK 0xfd #define GERROR_ERR_MASK 0x1fd
#define ARM_SMMU_GERRORN 0x64 #define ARM_SMMU_GERRORN 0x64
......
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