From: Bing Niu <bing.niu@xxxxxxxxx> This patch introduces host graphics memory partition when GVT-g is enabled. Under GVT-g, i915 host driver only owned limited graphics resources, others are managed by GVT-g resource allocator and kept for other vGPUs. v3: - Remove fence partition, will use i915 fence stealing in future.(Kevin) - Santinize GVT host gm kernel parameters. (Joonas) v2: - Address all coding-style comments from Joonas previously. - Fix errors and warnning reported by checkpatch.pl. (Joonas) - Move the graphs into the header files. (Daniel) Signed-off-by: Bing Niu <bing.niu@xxxxxxxxx> Signed-off-by: Zhi Wang <zhi.a.wang@xxxxxxxxx> --- drivers/gpu/drm/i915/i915_drv.h | 22 +++++++++++++++++++++ drivers/gpu/drm/i915/i915_vgpu.c | 21 +++++++++++++++----- drivers/gpu/drm/i915/intel_gvt.c | 42 ++++++++++++++++++++++++++++++++++++++++ drivers/gpu/drm/i915/intel_gvt.h | 2 ++ 4 files changed, 82 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index b256ba7..c4c72ee 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -1703,8 +1703,30 @@ struct i915_workarounds { u32 hw_whitelist_count[I915_NUM_ENGINES]; }; +/* + * Under GVT-g, i915 host driver only owned limited graphics resources, + * others are managed by GVT-g resource allocator and kept for other vGPUs. + * + * For graphics memory space partition, a typical layout looks like: + * + * +-------+-----------------------+------+-----------------------+ + * |* Host | *GVT-g Resource |* Host| *GVT-g Resource | + * | Owned | Allocator Managed | Owned| Allocator Managed | + * | | | | | + * +---------------+-------+----------------------+-------+-------+ + * | | | | | | | | | + * | i915 | vm 1 | vm 2 | vm 3 | i915 | vm 1 | vm 2 | vm 3 | + * | | | | | | | | | + * +-------+-------+-------+--------------+-------+-------+-------+ + * | Aperture | Hidden | + * +-------------------------------+------------------------------+ + * | GGTT memory space | + * +--------------------------------------------------------------+ + */ struct i915_gvt { void *gvt_device; + u64 low_gm_size; + u64 high_gm_size; }; struct i915_virtual_gpu { diff --git a/drivers/gpu/drm/i915/i915_vgpu.c b/drivers/gpu/drm/i915/i915_vgpu.c index 0b76c70..95e2a7a 100644 --- a/drivers/gpu/drm/i915/i915_vgpu.c +++ b/drivers/gpu/drm/i915/i915_vgpu.c @@ -190,13 +190,24 @@ int intel_vgt_balloon(struct drm_device *dev) unsigned long unmappable_base, unmappable_size, unmappable_end; int ret; - if (!intel_vgpu_active(to_i915(dev))) + if (!intel_vgpu_active(dev_priv) && !intel_gvt_active(dev_priv)) return 0; - mappable_base = I915_READ(vgtif_reg(avail_rs.mappable_gmadr.base)); - mappable_size = I915_READ(vgtif_reg(avail_rs.mappable_gmadr.size)); - unmappable_base = I915_READ(vgtif_reg(avail_rs.nonmappable_gmadr.base)); - unmappable_size = I915_READ(vgtif_reg(avail_rs.nonmappable_gmadr.size)); + if (intel_gvt_active(dev_priv)) { + mappable_base = 0; + mappable_size = dev_priv->gvt.low_gm_size; + unmappable_base = dev_priv->ggtt.mappable_end; + unmappable_size = dev_priv->gvt.high_gm_size; + } else if (intel_vgpu_active(dev_priv)) { + mappable_base = I915_READ( + vgtif_reg(avail_rs.mappable_gmadr.base)); + mappable_size = I915_READ( + vgtif_reg(avail_rs.mappable_gmadr.size)); + unmappable_base = I915_READ( + vgtif_reg(avail_rs.nonmappable_gmadr.base)); + unmappable_size = I915_READ( + vgtif_reg(avail_rs.nonmappable_gmadr.size)); + } mappable_end = mappable_base + mappable_size; unmappable_end = unmappable_base + unmappable_size; diff --git a/drivers/gpu/drm/i915/intel_gvt.c b/drivers/gpu/drm/i915/intel_gvt.c index 57b4910..ab0d9ed 100644 --- a/drivers/gpu/drm/i915/intel_gvt.c +++ b/drivers/gpu/drm/i915/intel_gvt.c @@ -43,6 +43,46 @@ struct gvt_kernel_params gvt_kparams = { module_param_named(gvt_enable, gvt_kparams.enable, bool, 0600); MODULE_PARM_DESC(gvt_enable, "Enable Intel GVT-g host support"); +/* i915.gvt_low_gm_size */ +module_param_named(gvt_low_gm_size, gvt_kparams.low_gm_size, charp, 0600); +MODULE_PARM_DESC(gvt_low_gm_size, "GVT low graphics memory size"); + +/* i915.gvt_high_gm_size */ +module_param_named(gvt_high_gm_size, gvt_kparams.high_gm_size, charp, 0600); +MODULE_PARM_DESC(gvt_high_gm_size, "GVT high graphics memory size"); + +#define KB(x) ((x) * 1024) +#define MB(x) (KB(x) * 1024) + +#define MAX_GVT_LOW_GM_SIZE MB(96) +#define MAX_GVT_HIGH_GM_SIZE MB(384) + +static void sanitize_gm_size(struct drm_i915_private *dev_priv) +{ + u64 low_gm_size, high_gm_size; + + low_gm_size = high_gm_size = 0; + + /* Try to parse kernel parameter first */ + if (gvt_kparams.low_gm_size) + low_gm_size = memparse(gvt_kparams.low_gm_size, NULL); + + if (gvt_kparams.high_gm_size) + high_gm_size = memparse(gvt_kparams.high_gm_size, NULL); + + if (!low_gm_size || low_gm_size > MAX_GVT_LOW_GM_SIZE) + low_gm_size = MAX_GVT_LOW_GM_SIZE; + + if (!high_gm_size || high_gm_size > MAX_GVT_HIGH_GM_SIZE) + high_gm_size = MAX_GVT_HIGH_GM_SIZE; + + dev_priv->gvt.low_gm_size = low_gm_size; + dev_priv->gvt.high_gm_size = high_gm_size; + + DRM_DEBUG_DRIVER("GVT low graphics memory size: %llx\n", low_gm_size); + DRM_DEBUG_DRIVER("GVT high graphics memory size: %llx\n", high_gm_size); +} + static bool is_supported_device(struct drm_device *dev) { struct drm_i915_private *dev_priv = to_i915(dev); @@ -75,6 +115,8 @@ int intel_gvt_init(struct drm_device *dev) return 0; } + sanitize_gm_size(dev_priv); + device = intel_gvt_create_device(dev); if (IS_ERR(device)) { DRM_DEBUG_DRIVER("GVT-g is disabled\n"); diff --git a/drivers/gpu/drm/i915/intel_gvt.h b/drivers/gpu/drm/i915/intel_gvt.h index d9b55ac50..7644959 100644 --- a/drivers/gpu/drm/i915/intel_gvt.h +++ b/drivers/gpu/drm/i915/intel_gvt.h @@ -30,6 +30,8 @@ struct gvt_kernel_params { bool enable; + char *low_gm_size; + char *high_gm_size; }; extern struct gvt_kernel_params gvt_kparams; -- 1.9.1 _______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/intel-gfx