Hi, This series attempts to add vfio live migration support for HiSilicon ACC VF devices. HiSilicon ACC VF device MMIO space includes both the functional register space and migration control register space. As discussed in RFCv1[0], this may create security issues as these regions get shared between the Guest driver and the migration driver. Based on the feedback, we tried to address those concerns in this version. This is now based on the new vfio-pci-core framework proposal[1]. Understand that the framework proposal is still under discussion, but really appreciate any feedback on the approach taken here to mitigate the security risks. The major changes from v1 are, -Adds a new vendor-specific vfio_pci driver(hisi-acc-vfio-pci) for HiSilicon ACC VF devices based on the new vfio-pci-core framework proposal. -Since HiSilicon ACC VF device MMIO space contains both the functional register space and migration control register space, override the vfio_device_ops ioctl method to report only the functional space to VMs. -For a successful migration, we still need access to VF dev functional register space mainly to read the status registers. But accessing these while the Guest vCPUs are running may leave a security hole. To avoid any potential security issues, we map/unmap the MMIO regions on a need basis and is safe to do so. (Please see hisi_acc_vf_ioremap/unmap() fns in patch #4). -Dropped debugfs support for now. -Uses common QM functions for mailbox access(patch #3). This is now sanity tested on HiSilicon platforms that support these ACC devices. >From v1: -In order to ensure the compatibility of the devices before and after the migration, the device compatibility information check will be performed in the Pre-copy stage. If the check fails, an error will be returned and the source VM will exit the migration. -After the compatibility check is passed, it will enter the Stop-and-copy stage. At this time, all the live migration data will be copied and saved to the VF device of the destination. Finally, the VF device of the destination will be started. Thanks, Shameer [0] https://lore.kernel.org/lkml/20210415220137.GA1672608@xxxxxxxxxx/ [1] https://lore.kernel.org/lkml/20210603160809.15845-1-mgurtovoy@xxxxxxxxxx/ Longfang Liu (2): crypto: hisilicon/qm - Export mailbox functions for common use hisi_acc_vfio_pci: Add support for vfio live migration Shameer Kolothum (2): hisi-acc-vfio-pci: add new vfio_pci driver for HiSilicon ACC devices hisi_acc_vfio_pci: Override ioctl method to limit BAR2 region size drivers/crypto/hisilicon/qm.c | 8 +- drivers/crypto/hisilicon/qm.h | 4 + drivers/vfio/pci/Kconfig | 13 + drivers/vfio/pci/Makefile | 2 + drivers/vfio/pci/hisi_acc_vfio_pci.c | 1155 ++++++++++++++++++++++++++ drivers/vfio/pci/hisi_acc_vfio_pci.h | 144 ++++ 6 files changed, 1323 insertions(+), 3 deletions(-) create mode 100644 drivers/vfio/pci/hisi_acc_vfio_pci.c create mode 100644 drivers/vfio/pci/hisi_acc_vfio_pci.h -- 2.17.1