...and add per-domain IOMMU control This is a combination of my previously separate series [1] and [2].
[1] https://lists.xenproject.org/archives/html/xen-devel/2019-07/msg02253.html [2] https://lists.xenproject.org/archives/html/xen-devel/2019-07/msg02267.html Paul Durrant (10): make passthrough/pci.c:deassign_device() static x86/hvm/domain: remove the 'hap_enabled' flag x86/domain: remove the 'oos_off' flag domain: remove the 'is_xenstore' flag x86/domain: remove the 's3_integrity' flag domain: introduce XEN_DOMCTL_CDF_iommu flag use is_iommu_enabled() where appropriate... remove late (on-demand) construction of IOMMU page tables iommu: tidy up iommu_use_hap_pt() and need_iommu_pt_sync() macros introduce a 'passthrough' configuration option to xl.cfg... docs/man/xl.cfg.5.pod.in | 52 +++++++ tools/libxl/libxl.h | 5 + tools/libxl/libxl_create.c | 9 ++ tools/libxl/libxl_types.idl | 7 + tools/xl/xl_parse.c | 38 +++++ xen/arch/arm/domain.c | 10 +- xen/arch/arm/p2m.c | 4 +- xen/arch/arm/setup.c | 3 + xen/arch/x86/dom0_build.c | 4 +- xen/arch/x86/domain.c | 24 +-- xen/arch/x86/domctl.c | 4 +- xen/arch/x86/hvm/hvm.c | 6 +- xen/arch/x86/hvm/mtrr.c | 5 +- xen/arch/x86/hvm/vioapic.c | 2 +- xen/arch/x86/hvm/vmx/vmcs.c | 2 +- xen/arch/x86/hvm/vmx/vmx.c | 2 +- xen/arch/x86/mm/mem_sharing.c | 2 +- xen/arch/x86/mm/p2m-ept.c | 4 +- xen/arch/x86/mm/paging.c | 6 +- xen/arch/x86/mm/shadow/common.c | 7 +- xen/arch/x86/mm/shadow/none.c | 2 +- xen/arch/x86/setup.c | 5 +- xen/arch/x86/tboot.c | 2 +- xen/arch/x86/x86_64/mm.c | 2 +- xen/common/domain.c | 40 ++++- xen/common/domctl.c | 10 +- xen/common/memory.c | 4 +- xen/common/vm_event.c | 2 +- xen/drivers/passthrough/amd/iommu_guest.c | 2 +- xen/drivers/passthrough/device_tree.c | 18 +-- xen/drivers/passthrough/io.c | 8 +- xen/drivers/passthrough/iommu.c | 182 +++++++--------------- xen/drivers/passthrough/pci.c | 119 +++++++------- xen/drivers/passthrough/vtd/iommu.c | 12 +- xen/drivers/passthrough/vtd/x86/hvm.c | 2 +- xen/drivers/passthrough/x86/iommu.c | 97 +----------- xen/include/asm-arm/iommu.h | 3 - xen/include/asm-x86/domain.h | 3 - xen/include/asm-x86/hvm/domain.h | 7 - xen/include/asm-x86/iommu.h | 4 - xen/include/asm-x86/paging.h | 2 +- xen/include/asm-x86/shadow.h | 2 +- xen/include/public/domctl.h | 10 +- xen/include/xen/iommu.h | 41 ++--- xen/include/xen/sched.h | 26 ++-- xen/include/xsm/dummy.h | 2 +- xen/xsm/flask/hooks.c | 18 +-- 47 files changed, 399 insertions(+), 422 deletions(-) --- Cc: Andrew Cooper <[email protected]> Cc: Anthony PERARD <[email protected]> Cc: Brian Woods <[email protected]> Cc: Daniel De Graaf <[email protected]> Cc: George Dunlap <[email protected]> Cc: Ian Jackson <[email protected]> Cc: Jan Beulich <[email protected]> Cc: Julien Grall <[email protected]> Cc: Jun Nakajima <[email protected]> Cc: Kevin Tian <[email protected]> Cc: Konrad Rzeszutek Wilk <[email protected]> Cc: Petre Pircalabu <[email protected]> Cc: Razvan Cojocaru <[email protected]> Cc: "Roger Pau Monné" <[email protected]> Cc: Stefano Stabellini <[email protected]> Cc: Suravee Suthikulpanit <[email protected]> Cc: Tamas K Lengyel <[email protected]> Cc: Tim Deegan <[email protected]> Cc: Volodymyr Babchuk <[email protected]> Cc: Wei Liu <[email protected]> -- 2.20.1.2.gb21ebb671 _______________________________________________ Xen-devel mailing list [email protected] https://lists.xenproject.org/mailman/listinfo/xen-devel
