[PATCH] drm/i915/gvt: not to touch undefined registers

Zhenyu Wang zhenyuw at linux.intel.com
Tue Oct 30 02:59:18 UTC 2018


On 2018.10.29 13:49:44 +0800, Xinyun Liu wrote:
> Some engines are not available for all Gens, so need to add check before
> access them.
> 
> Tracked-On: projectacrn/acrn-hypervisor#1581

As acrn track number is meaningless for upstream, should replace by a Fixes tag.

Good catch, looks fine to me.

> Signed-off-by: Xinyun Liu <xinyun.liu at intel.com>
> Signed-off-by: Yakui Zhao <Yakui.Zhao at intel.com>
> ---
>  drivers/gpu/drm/i915/gvt/mmio_context.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/gvt/mmio_context.c b/drivers/gpu/drm/i915/gvt/mmio_context.c
> index e872f4847fbe..2693de36c557 100644
> --- a/drivers/gpu/drm/i915/gvt/mmio_context.c
> +++ b/drivers/gpu/drm/i915/gvt/mmio_context.c
> @@ -171,6 +171,8 @@ static void load_render_mocs(struct drm_i915_private *dev_priv)
>  	int ring_id, i;
>  
>  	for (ring_id = 0; ring_id < ARRAY_SIZE(regs); ring_id++) {
> +		if (!HAS_ENGINE(dev_priv, ring_id))
> +			continue;
>  		offset.reg = regs[ring_id];
>  		for (i = 0; i < GEN9_MOCS_SIZE; i++) {
>  			gen9_render_mocs.control_table[ring_id][i] =
> -- 
> 2.19.1
> 
> _______________________________________________
> intel-gvt-dev mailing list
> intel-gvt-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gvt-dev

-- 
Open Source Technology Center, Intel ltd.

$gpg --keyserver wwwkeys.pgp.net --recv-keys 4D781827
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/intel-gvt-dev/attachments/20181030/38eef324/attachment.sig>


More information about the intel-gvt-dev mailing list