forked from Minki/linux
cf4ee73fd9
The implementation of current kvmgt implicitly setup dma mapping at MPT API gfn_to_mfn. First this design against the API's original purpose. Second, there is no unmap hit in this design. The result is that the dma mapping keep growing larger and larger. For mutl-vm case, they will consume IOMMU IOVA low 4GB address space quickly and so tons of rbtree entries crated in the IOMMU IOVA allocator. Finally, single IOVA allocation can take as long as ~70ms. Such latency is intolerable. To address both above issues, this patch introduced two new MPT API: o dma_map_guest_page - setup dma map for guest page o dma_unmap_guest_page - cancel dma map for guest page The kvmgt implements these 2 API. And to reduce dma setup overhead for duplicated pages (eg. scratch pages), two caches are used: one is for mapping gfn to struct gvt_dma, another is for mapping dma addr to struct gvt_dma. With these 2 new API, the gtt now is able to cancel dma mapping when page table is invalidated. The dma mapping is not in a gradual increase now. v2: follow the old logic for VFIO_IOMMU_NOTIFY_DMA_UNMAP at this point. Cc: Hang Yuan <hang.yuan@intel.com> Cc: Xiong Zhang <xiong.y.zhang@intel.com> Signed-off-by: Changbin Du <changbin.du@intel.com> Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
73 lines
2.9 KiB
C
73 lines
2.9 KiB
C
/*
|
|
* Copyright(c) 2011-2016 Intel Corporation. All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the next
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
* Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*
|
|
* Authors:
|
|
* Eddie Dong <eddie.dong@intel.com>
|
|
* Dexuan Cui
|
|
* Jike Song <jike.song@intel.com>
|
|
*
|
|
* Contributors:
|
|
* Zhi Wang <zhi.a.wang@intel.com>
|
|
*
|
|
*/
|
|
|
|
#ifndef _GVT_HYPERCALL_H_
|
|
#define _GVT_HYPERCALL_H_
|
|
|
|
/*
|
|
* Specific GVT-g MPT modules function collections. Currently GVT-g supports
|
|
* both Xen and KVM by providing dedicated hypervisor-related MPT modules.
|
|
*/
|
|
struct intel_gvt_mpt {
|
|
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);
|
|
unsigned long (*from_virt_to_mfn)(void *p);
|
|
int (*enable_page_track)(unsigned long handle, u64 gfn);
|
|
int (*disable_page_track)(unsigned long handle, u64 gfn);
|
|
int (*read_gpa)(unsigned long handle, unsigned long gpa, void *buf,
|
|
unsigned long len);
|
|
int (*write_gpa)(unsigned long handle, unsigned long gpa, void *buf,
|
|
unsigned long len);
|
|
unsigned long (*gfn_to_mfn)(unsigned long handle, unsigned long gfn);
|
|
|
|
int (*dma_map_guest_page)(unsigned long handle, unsigned long gfn,
|
|
dma_addr_t *dma_addr);
|
|
void (*dma_unmap_guest_page)(unsigned long handle, dma_addr_t dma_addr);
|
|
|
|
int (*map_gfn_to_mfn)(unsigned long handle, unsigned long gfn,
|
|
unsigned long mfn, unsigned int nr, bool map);
|
|
int (*set_trap_area)(unsigned long handle, u64 start, u64 end,
|
|
bool map);
|
|
int (*set_opregion)(void *vgpu);
|
|
int (*get_vfio_device)(void *vgpu);
|
|
void (*put_vfio_device)(void *vgpu);
|
|
bool (*is_valid_gfn)(unsigned long handle, unsigned long gfn);
|
|
};
|
|
|
|
extern struct intel_gvt_mpt xengt_mpt;
|
|
extern struct intel_gvt_mpt kvmgt_mpt;
|
|
|
|
#endif /* _GVT_HYPERCALL_H_ */
|