]> Git Repo - linux.git/commitdiff
iommu/amd: Check EFR[EPHSup] bit before enabling PPR
authorVasant Hegde <[email protected]>
Thu, 30 May 2024 07:11:18 +0000 (07:11 +0000)
committerJoerg Roedel <[email protected]>
Tue, 4 Jun 2024 11:59:52 +0000 (13:59 +0200)
Check for EFR[EPHSup] bit before enabling PPR. This bit must be set
to enable PPR.

Reported-by: Borislav Petkov <[email protected]>
Fixes: c4cb23111103 ("iommu/amd: Add support for enable/disable IOPF")
Closes: https://bugzilla.kernel.org/show_bug.cgi?id=218900
Tested-by: Borislav Petkov <[email protected]>
Tested-by: Jean-Christophe Guillain <[email protected]>
Signed-off-by: Vasant Hegde <[email protected]>
Reviewed-by: Suravee Suthikulpanit <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Joerg Roedel <[email protected]>
drivers/iommu/amd/amd_iommu.h

index 2fde1302a5843ce5610731855998c9bc60039940..2d5945c982bde5077674eb5ec8a35f6493e37761 100644 (file)
@@ -129,7 +129,8 @@ static inline int check_feature_gpt_level(void)
 static inline bool amd_iommu_gt_ppr_supported(void)
 {
        return (check_feature(FEATURE_GT) &&
-               check_feature(FEATURE_PPR));
+               check_feature(FEATURE_PPR) &&
+               check_feature(FEATURE_EPHSUP));
 }
 
 static inline u64 iommu_virt_to_phys(void *vaddr)
This page took 0.057157 seconds and 4 git commands to generate.