Impact: add a new AMD IOMMU kernel command line parameter
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
isolate - enable device isolation (each device, as far
as possible, will get its own protection
domain)
+ share - put every device behind one IOMMU into the
+ same protection domain
fullflush - enable flushing of IO/TLB entries when
they are unmapped. Otherwise they are
flushed before they will be reused, which
for (; *str; ++str) {
if (strncmp(str, "isolate", 7) == 0)
amd_iommu_isolate = 1;
+ if (strncmp(str, "share", 5) == 0)
+ amd_iommu_isolate = 0;
if (strncmp(str, "fullflush", 11) == 0)
amd_iommu_unmap_flush = true;
}