};
 
 static struct hisi_acc_vf_migration_file *
-hisi_acc_vf_stop_copy(struct hisi_acc_vf_core_device *hisi_acc_vdev)
+hisi_acc_open_saving_migf(struct hisi_acc_vf_core_device *hisi_acc_vdev)
 {
        struct hisi_acc_vf_migration_file *migf;
        int ret;
        mutex_init(&migf->lock);
        migf->hisi_acc_vdev = hisi_acc_vdev;
 
-       ret = vf_qm_state_save(hisi_acc_vdev, migf);
+       ret = vf_qm_get_match_data(hisi_acc_vdev, &migf->vf_data);
        if (ret) {
                fput(migf->filp);
                return ERR_PTR(ret);
        return migf;
 }
 
+static struct hisi_acc_vf_migration_file *
+hisi_acc_vf_pre_copy(struct hisi_acc_vf_core_device *hisi_acc_vdev)
+{
+       struct hisi_acc_vf_migration_file *migf;
+
+       migf = hisi_acc_open_saving_migf(hisi_acc_vdev);
+       if (IS_ERR(migf))
+               return migf;
+
+       migf->total_length = QM_MATCH_SIZE;
+       return migf;
+}
+
+static struct hisi_acc_vf_migration_file *
+hisi_acc_vf_stop_copy(struct hisi_acc_vf_core_device *hisi_acc_vdev, bool open)
+{
+       int ret;
+       struct hisi_acc_vf_migration_file *migf = NULL;
+
+       if (open) {
+               /*
+                * Userspace didn't use PRECOPY support. Hence saving_migf
+                * is not opened yet.
+                */
+               migf = hisi_acc_open_saving_migf(hisi_acc_vdev);
+               if (IS_ERR(migf))
+                       return migf;
+       } else {
+               migf = hisi_acc_vdev->saving_migf;
+       }
+
+       ret = vf_qm_state_save(hisi_acc_vdev, migf);
+       if (ret)
+               return ERR_PTR(ret);
+
+       return open ? migf : NULL;
+}
+
 static int hisi_acc_vf_stop_device(struct hisi_acc_vf_core_device *hisi_acc_vdev)
 {
        struct device *dev = &hisi_acc_vdev->vf_dev->dev;
        u32 cur = hisi_acc_vdev->mig_state;
        int ret;
 
+       if (cur == VFIO_DEVICE_STATE_RUNNING && new == VFIO_DEVICE_STATE_PRE_COPY) {
+               struct hisi_acc_vf_migration_file *migf;
+
+               migf = hisi_acc_vf_pre_copy(hisi_acc_vdev);
+               if (IS_ERR(migf))
+                       return ERR_CAST(migf);
+               get_file(migf->filp);
+               hisi_acc_vdev->saving_migf = migf;
+               return migf->filp;
+       }
+
+       if (cur == VFIO_DEVICE_STATE_PRE_COPY && new == VFIO_DEVICE_STATE_STOP_COPY) {
+               struct hisi_acc_vf_migration_file *migf;
+
+               ret = hisi_acc_vf_stop_device(hisi_acc_vdev);
+               if (ret)
+                       return ERR_PTR(ret);
+
+               migf = hisi_acc_vf_stop_copy(hisi_acc_vdev, false);
+               if (IS_ERR(migf))
+                       return ERR_CAST(migf);
+
+               return NULL;
+       }
+
        if (cur == VFIO_DEVICE_STATE_RUNNING && new == VFIO_DEVICE_STATE_STOP) {
                ret = hisi_acc_vf_stop_device(hisi_acc_vdev);
                if (ret)
        if (cur == VFIO_DEVICE_STATE_STOP && new == VFIO_DEVICE_STATE_STOP_COPY) {
                struct hisi_acc_vf_migration_file *migf;
 
-               migf = hisi_acc_vf_stop_copy(hisi_acc_vdev);
+               migf = hisi_acc_vf_stop_copy(hisi_acc_vdev, true);
                if (IS_ERR(migf))
                        return ERR_CAST(migf);
                get_file(migf->filp);
                return NULL;
        }
 
+       if (cur == VFIO_DEVICE_STATE_PRE_COPY && new == VFIO_DEVICE_STATE_RUNNING) {
+               hisi_acc_vf_disable_fds(hisi_acc_vdev);
+               return NULL;
+       }
+
        if (cur == VFIO_DEVICE_STATE_STOP && new == VFIO_DEVICE_STATE_RUNNING) {
                hisi_acc_vf_start_device(hisi_acc_vdev);
                return NULL;