[PATCH] drm/i915/gvt: optimize the inhibit context mmio load
Zhenyu Wang
zhenyuw at linux.intel.com
Tue Feb 14 09:27:46 UTC 2017
On 2017.02.14 09:26:25 +0000, Dong, Chuanxiao wrote:
> > On 2017.02.14 15:14:05 +0800, Chuanxiao Dong wrote:
> > > For the inhibit ctx, load all mmio in render mmio list into HW by MMIO
> > > write for ctx initialization.
> > >
> > > For the none-inhibit ctx, only load the render mmio which is not
> > > in_context into HW by MMIO write. Skip the MMIO write for in_context
> > > mmio as context image will load it.
> > >
> > > Signed-off-by: Chuanxiao Dong <chuanxiao.dong at intel.com>
> > > ---
> > > drivers/gpu/drm/i915/gvt/render.c | 17 +++++++++++++++++
> > > 1 file changed, 17 insertions(+)
> > >
> > > diff --git a/drivers/gpu/drm/i915/gvt/render.c
> > > b/drivers/gpu/drm/i915/gvt/render.c
> > > index 44136b1..2b3a642 100644
> > > --- a/drivers/gpu/drm/i915/gvt/render.c
> > > +++ b/drivers/gpu/drm/i915/gvt/render.c
> > > @@ -236,12 +236,18 @@ static void restore_mocs(struct intel_vgpu *vgpu,
> > int ring_id)
> > > }
> > > }
> > >
> > > +#define CTX_CONTEXT_CONTROL_VAL 0x03
> >
> > This offset seems wrong, don't re-invent, but use i915 definition for
> > CTX_CONTEXT_CONTROL.
> This offset is for the value of CONTEXT_CONTROL reg, not for CONTEXT_CONTROL reg itself. The offset for this reg in context image is 0x2, thus its value offset is 0x3 which is next to it. The corresponding i915 definition is "#define CTX_CONTEXT_CONTROL 0x02" which is in intel_lrc.c but not in any header file. And, it is not the offset for the value so I re-invent this.
>
oh, right, sorry for overlooking this, then looks good to me.
Will apply this. Thanks!
> >
> > > +
> > > void intel_gvt_load_render_mmio(struct intel_vgpu *vgpu, int ring_id)
> > > {
> > > struct drm_i915_private *dev_priv = vgpu->gvt->dev_priv;
> > > struct render_mmio *mmio;
> > > u32 v;
> > > int i, array_size;
> > > + u32 *reg_state = vgpu->shadow_ctx->engine[ring_id].lrc_reg_state;
> > > + u32 ctx_ctrl = reg_state[CTX_CONTEXT_CONTROL_VAL];
> > > + u32 inhibit_mask =
> > > +
> > _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT);
> > >
> > > if (IS_SKYLAKE(vgpu->gvt->dev_priv)) {
> > > mmio = gen9_render_mmio_list;
> > > @@ -257,6 +263,17 @@ void intel_gvt_load_render_mmio(struct
> > intel_vgpu *vgpu, int ring_id)
> > > continue;
> > >
> > > mmio->value = I915_READ(mmio->reg);
> > > +
> > > + /*
> > > + * if it is an inhibit context, load in_context mmio
> > > + * into HW by mmio write. If it is not, skip this mmio
> > > + * write.
> > > + */
> > > + if (mmio->in_context &&
> > > + ((ctx_ctrl & inhibit_mask) != inhibit_mask) &&
> > > + i915.enable_execlists)
> > > + continue;
> > > +
> > > if (mmio->mask)
> > > v = vgpu_vreg(vgpu, mmio->reg) | (mmio->mask <<
> > 16);
> > > else
> > > --
> > > 2.7.4
> > >
> > > _______________________________________________
> > > 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
--
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: 163 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/intel-gvt-dev/attachments/20170214/1239adf5/attachment.sig>
More information about the intel-gvt-dev
mailing list