]> asedeno.scripts.mit.edu Git - linux.git/commit
iommu/vt-d: Handle domain agaw being less than iommu agaw
authorSohil Mehta <sohil.mehta@intel.com>
Wed, 21 Nov 2018 23:29:33 +0000 (15:29 -0800)
committerJoerg Roedel <jroedel@suse.de>
Thu, 22 Nov 2018 16:07:14 +0000 (17:07 +0100)
commit3569dd07aaad71920c5ea4da2d5cc9a167c1ffd4
treee4f47a987d299bd177977b56793078b480bb0c5c
parentdaedaa33d9c578220b311fbad3748d3ecd5a8f66
iommu/vt-d: Handle domain agaw being less than iommu agaw

The Intel IOMMU driver opportunistically skips a few top level page
tables from the domain paging directory while programming the IOMMU
context entry. However there is an implicit assumption in the code that
domain's adjusted guest address width (agaw) would always be greater
than IOMMU's agaw.

The IOMMU capabilities in an upcoming platform cause the domain's agaw
to be lower than IOMMU's agaw. The issue is seen when the IOMMU supports
both 4-level and 5-level paging. The domain builds a 4-level page table
based on agaw of 2. However the IOMMU's agaw is set as 3 (5-level). In
this case the code incorrectly tries to skip page page table levels.
This causes the IOMMU driver to avoid programming the context entry. The
fix handles this case and programs the context entry accordingly.

Fixes: de24e55395698 ("iommu/vt-d: Simplify domain_context_mapping_one")
Cc: <stable@vger.kernel.org>
Cc: Ashok Raj <ashok.raj@intel.com>
Cc: Jacob Pan <jacob.jun.pan@linux.intel.com>
Cc: Lu Baolu <baolu.lu@linux.intel.com>
Reviewed-by: Lu Baolu <baolu.lu@linux.intel.com>
Reported-by: Ramos Falcon, Ernesto R <ernesto.r.ramos.falcon@intel.com>
Tested-by: Ricardo Neri <ricardo.neri-calderon@linux.intel.com>
Signed-off-by: Sohil Mehta <sohil.mehta@intel.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/intel-iommu.c