mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 08:03:01 +09:00
Add live migration support via the VFIO subsystem. The migration implementation aligns with the definition from uapi/vfio.h and uses the pds_core PF's adminq for device configuration. The ability to suspend, resume, and transfer VF device state data is included along with the required admin queue command structures and implementations. PDS_LM_CMD_SUSPEND and PDS_LM_CMD_SUSPEND_STATUS are added to support the VF device suspend operation. PDS_LM_CMD_RESUME is added to support the VF device resume operation. PDS_LM_CMD_STATE_SIZE is added to determine the exact size of the VF device state data. PDS_LM_CMD_SAVE is added to get the VF device state data. PDS_LM_CMD_RESTORE is added to restore the VF device with the previously saved data from PDS_LM_CMD_SAVE. PDS_LM_CMD_HOST_VF_STATUS is added to notify the DSC/firmware when a migration is in/not-in progress from the host's perspective. The DSC/firmware can use this to clear/setup any necessary state related to a migration. Signed-off-by: Brett Creeley <brett.creeley@amd.com> Signed-off-by: Shannon Nelson <shannon.nelson@amd.com> Reviewed-by: Simon Horman <horms@kernel.org> Reviewed-by: Kevin Tian <kevin.tian@intel.com> Reviewed-by: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com> Reviewed-by: Jason Gunthorpe <jgg@nvidia.com> Link: https://lore.kernel.org/r/20230807205755.29579-6-brett.creeley@amd.com Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
42 lines
1.2 KiB
C
42 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright(c) 2023 Advanced Micro Devices, Inc. */
|
|
|
|
#ifndef _LM_H_
|
|
#define _LM_H_
|
|
|
|
#include <linux/fs.h>
|
|
#include <linux/mutex.h>
|
|
#include <linux/scatterlist.h>
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/pds/pds_common.h>
|
|
#include <linux/pds/pds_adminq.h>
|
|
|
|
struct pds_vfio_lm_file {
|
|
struct file *filep;
|
|
struct mutex lock; /* protect live migration data file */
|
|
u64 size; /* Size with valid data */
|
|
u64 alloc_size; /* Total allocated size. Always >= len */
|
|
void *page_mem; /* memory allocated for pages */
|
|
struct page **pages; /* Backing pages for file */
|
|
unsigned long long npages;
|
|
struct sg_table sg_table; /* SG table for backing pages */
|
|
struct pds_lm_sg_elem *sgl; /* DMA mapping */
|
|
dma_addr_t sgl_addr;
|
|
u16 num_sge;
|
|
struct scatterlist *last_offset_sg; /* Iterator */
|
|
unsigned int sg_last_entry;
|
|
unsigned long last_offset;
|
|
};
|
|
|
|
struct pds_vfio_pci_device;
|
|
|
|
struct file *
|
|
pds_vfio_step_device_state_locked(struct pds_vfio_pci_device *pds_vfio,
|
|
enum vfio_device_mig_state next);
|
|
|
|
void pds_vfio_put_save_file(struct pds_vfio_pci_device *pds_vfio);
|
|
void pds_vfio_put_restore_file(struct pds_vfio_pci_device *pds_vfio);
|
|
|
|
#endif /* _LM_H_ */
|