intel_gvt_clean_mmio_info(gvt);
        intel_gvt_free_firmware(gvt);
 
+       intel_gvt_hypervisor_host_exit(&dev_priv->drm.pdev->dev, gvt);
        intel_gvt_clean_vgpu_types(gvt);
 
        kfree(dev_priv->gvt);
        if (ret)
                goto out_clean_thread;
 
+       ret = intel_gvt_hypervisor_host_init(&dev_priv->drm.pdev->dev, gvt,
+                               &intel_gvt_io_emulation_ops);
+       if (ret) {
+               gvt_err("failed to register gvt-g host device: %d\n", ret);
+               goto out_clean_types;
+       }
 
        gvt_dbg_core("gvt device initialization is done\n");
        dev_priv->gvt = gvt;
        return 0;
 
+out_clean_types:
+       intel_gvt_clean_vgpu_types(gvt);
 out_clean_thread:
        clean_service_thread(gvt);
 out_clean_cmd_parser:
 
  */
 struct intel_gvt_mpt {
        int (*detect_host)(void);
+       int (*host_init)(struct device *dev, void *gvt, const void *ops);
+       void (*host_exit)(struct device *dev, void *gvt);
        int (*attach_vgpu)(void *vgpu, unsigned long *handle);
        void (*detach_vgpu)(unsigned long handle);
        int (*inject_msi)(unsigned long handle, u32 addr, u16 data);
 
        return intel_gvt_host.mpt->detect_host();
 }
 
+/**
+ * intel_gvt_hypervisor_host_init - init GVT-g host side
+ *
+ * Returns:
+ * Zero on success, negative error code if failed
+ */
+static inline int intel_gvt_hypervisor_host_init(struct device *dev,
+                       void *gvt, const void *ops)
+{
+       return intel_gvt_host.mpt->host_init(dev, gvt, ops);
+}
+
+/**
+ * intel_gvt_hypervisor_host_exit - exit GVT-g host side
+ */
+static inline void intel_gvt_hypervisor_host_exit(struct device *dev,
+                       void *gvt)
+{
+       intel_gvt_host.mpt->host_exit(dev, gvt);
+}
+
 /**
  * intel_gvt_hypervisor_attach_vgpu - call hypervisor to initialize vGPU
  * related stuffs inside hypervisor.