As now gvt init after knowing hw resource info, we can determine vGPU
type from machine size instead of pre-defined value.

Signed-off-by: Zhenyu Wang <zhen...@linux.intel.com>
---
 drivers/gpu/drm/i915/gvt/vgpu.c | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/i915/gvt/vgpu.c b/drivers/gpu/drm/i915/gvt/vgpu.c
index f0e86123e45b..cfeba443f7e2 100644
--- a/drivers/gpu/drm/i915/gvt/vgpu.c
+++ b/drivers/gpu/drm/i915/gvt/vgpu.c
@@ -147,7 +147,7 @@ void populate_pvinfo_page(struct intel_vgpu *vgpu)
 int intel_gvt_init_vgpu_types(struct intel_gvt *gvt)
 {
        unsigned int num_types;
-       unsigned int i, low_avail;
+       unsigned int i, low_avail, high_avail;
        unsigned int min_low;
 
        /* vGPU type name is defined as GVTg_Vx_y which contains
@@ -162,9 +162,9 @@ int intel_gvt_init_vgpu_types(struct intel_gvt *gvt)
         * to indicate how many vGPU instance can be created for this
         * type.
         *
-        * Currently use static size here as we init type earlier..
         */
-       low_avail = MB_TO_BYTES(256) - HOST_LOW_GM_SIZE;
+       low_avail = gvt_aperture_sz(gvt) - HOST_LOW_GM_SIZE;
+       high_avail = gvt_hidden_sz(gvt) - HOST_HIGH_GM_SIZE;
        num_types = 4;
 
        gvt->types = kzalloc(num_types * sizeof(struct intel_vgpu_type),
@@ -179,7 +179,8 @@ int intel_gvt_init_vgpu_types(struct intel_gvt *gvt)
                gvt->types[i].low_gm_size = min_low;
                gvt->types[i].high_gm_size = max((min_low<<3), 
MB_TO_BYTES(384U));
                gvt->types[i].fence = 4;
-               gvt->types[i].max_instance = low_avail / min_low;
+               gvt->types[i].max_instance = min(low_avail / min_low,
+                                                high_avail / 
gvt->types[i].high_gm_size);
                gvt->types[i].avail_instance = gvt->types[i].max_instance;
 
                if (IS_GEN8(gvt->dev_priv))
@@ -215,9 +216,9 @@ static void intel_gvt_update_vgpu_types(struct intel_gvt 
*gvt)
        /* Need to depend on maxium hw resource size but keep on
         * static config for now.
         */
-       low_gm_avail = MB_TO_BYTES(256) - HOST_LOW_GM_SIZE -
+       low_gm_avail = gvt_aperture_sz(gvt) - HOST_LOW_GM_SIZE -
                gvt->gm.vgpu_allocated_low_gm_size;
-       high_gm_avail = MB_TO_BYTES(256) * 8UL - HOST_HIGH_GM_SIZE -
+       high_gm_avail = gvt_hidden_sz(gvt) - HOST_HIGH_GM_SIZE -
                gvt->gm.vgpu_allocated_high_gm_size;
        fence_avail = gvt_fence_sz(gvt) - HOST_FENCE -
                gvt->fence.vgpu_allocated_fence_num;
-- 
2.11.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to