public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PULL] gvt-next for 4.20
@ 2018-09-04  3:01 Zhenyu Wang
  2018-09-06 13:11 ` Joonas Lahtinen
  0 siblings, 1 reply; 3+ messages in thread
From: Zhenyu Wang @ 2018-09-04  3:01 UTC (permalink / raw)
  To: Vivi, Rodrigo, Joonas Lahtinen, Jani Nikula
  Cc: intel-gfx, intel-gvt-dev, Lv, Zhiyuan, Yuan, Hang


[-- Attachment #1.1: Type: text/plain, Size: 2192 bytes --]


Hi,

Here's initial gvt-next for 4.20 with two optimization for
guest context shadowing and command parser, and with W=1 build fixes.

Thanks
--
The following changes since commit 279ce5d117078ee8ea40c40199399889981fd808:

  drm/i915/gvt: declare gvt as i915's soft dependency (2018-07-10 11:13:11 +0800)

are available in the Git repository at:

  https://github.com/intel/gvt-linux.git tags/gvt-next-2018-09-04

for you to fetch changes up to 69ca5af4ff9a3ff96e4595c2b7522c01a2641779:

  drm/i915/gvt: Move some MMIO definitions to reg.h (2018-08-07 10:40:11 +0800)

----------------------------------------------------------------
gvt-next-2018-09-04

- guest context shadow optimization for restore inhibit one (Yan)
- cmd parser optimization (Yan)
- W=1 warning fixes (Zhenyu)

----------------------------------------------------------------
Zhao Yan (2):
      drm/i915/gvt: add a fastpath for cmd parsing on MI_NOOP
      drm/i915/gvt: only copy the first page for restore inhibit context

Zhenyu Wang (3):
      drm/i915/gvt: make dma map/unmap kvmgt functions as static
      drm/i915/gvt: Fix function comment doc errors
      drm/i915/gvt: Move some MMIO definitions to reg.h

 drivers/gpu/drm/i915/gvt/cfg_space.c    | 12 +++++++
 drivers/gpu/drm/i915/gvt/cmd_parser.c   | 11 +++++-
 drivers/gpu/drm/i915/gvt/display.c      |  1 +
 drivers/gpu/drm/i915/gvt/edid.c         |  9 +++++
 drivers/gpu/drm/i915/gvt/gtt.c          |  9 +++--
 drivers/gpu/drm/i915/gvt/gvt.c          |  3 +-
 drivers/gpu/drm/i915/gvt/handlers.c     |  1 +
 drivers/gpu/drm/i915/gvt/kvmgt.c        |  4 +--
 drivers/gpu/drm/i915/gvt/mmio.c         |  3 +-
 drivers/gpu/drm/i915/gvt/mmio_context.c | 13 -------
 drivers/gpu/drm/i915/gvt/mmio_context.h |  3 ++
 drivers/gpu/drm/i915/gvt/opregion.c     |  1 -
 drivers/gpu/drm/i915/gvt/page_track.c   |  2 ++
 drivers/gpu/drm/i915/gvt/reg.h          |  9 +++++
 drivers/gpu/drm/i915/gvt/scheduler.c    | 64 +++++++++++++++++----------------
 15 files changed, 92 insertions(+), 53 deletions(-)


-- 
Open Source Technology Center, Intel ltd.

$gpg --keyserver wwwkeys.pgp.net --recv-keys 4D781827

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PULL] gvt-next for 4.20
  2018-09-04  3:01 [PULL] gvt-next for 4.20 Zhenyu Wang
@ 2018-09-06 13:11 ` Joonas Lahtinen
  2018-09-07  2:47   ` Zhenyu Wang
  0 siblings, 1 reply; 3+ messages in thread
From: Joonas Lahtinen @ 2018-09-06 13:11 UTC (permalink / raw)
  To: Vivi, Rodrigo, Jani Nikula, Zhenyu Wang
  Cc: intel-gfx, intel-gvt-dev, Lv, Zhiyuan, Yuan, Hang

Quoting Zhenyu Wang (2018-09-04 06:01:54)
> 
> Hi,
> 
> Here's initial gvt-next for 4.20 with two optimization for
> guest context shadowing and command parser, and with W=1 build fixes.

Thanks, pulled this, but it had one merge conflict (in gvt/reg.h).
Please make sure the resolution I put in into drm-intel-next is correct.

Regards, Joonas

> 
> Thanks
> --
> The following changes since commit 279ce5d117078ee8ea40c40199399889981fd808:
> 
>   drm/i915/gvt: declare gvt as i915's soft dependency (2018-07-10 11:13:11 +0800)
> 
> are available in the Git repository at:
> 
>   https://github.com/intel/gvt-linux.git tags/gvt-next-2018-09-04
> 
> for you to fetch changes up to 69ca5af4ff9a3ff96e4595c2b7522c01a2641779:
> 
>   drm/i915/gvt: Move some MMIO definitions to reg.h (2018-08-07 10:40:11 +0800)
> 
> ----------------------------------------------------------------
> gvt-next-2018-09-04
> 
> - guest context shadow optimization for restore inhibit one (Yan)
> - cmd parser optimization (Yan)
> - W=1 warning fixes (Zhenyu)
> 
> ----------------------------------------------------------------
> Zhao Yan (2):
>       drm/i915/gvt: add a fastpath for cmd parsing on MI_NOOP
>       drm/i915/gvt: only copy the first page for restore inhibit context
> 
> Zhenyu Wang (3):
>       drm/i915/gvt: make dma map/unmap kvmgt functions as static
>       drm/i915/gvt: Fix function comment doc errors
>       drm/i915/gvt: Move some MMIO definitions to reg.h
> 
>  drivers/gpu/drm/i915/gvt/cfg_space.c    | 12 +++++++
>  drivers/gpu/drm/i915/gvt/cmd_parser.c   | 11 +++++-
>  drivers/gpu/drm/i915/gvt/display.c      |  1 +
>  drivers/gpu/drm/i915/gvt/edid.c         |  9 +++++
>  drivers/gpu/drm/i915/gvt/gtt.c          |  9 +++--
>  drivers/gpu/drm/i915/gvt/gvt.c          |  3 +-
>  drivers/gpu/drm/i915/gvt/handlers.c     |  1 +
>  drivers/gpu/drm/i915/gvt/kvmgt.c        |  4 +--
>  drivers/gpu/drm/i915/gvt/mmio.c         |  3 +-
>  drivers/gpu/drm/i915/gvt/mmio_context.c | 13 -------
>  drivers/gpu/drm/i915/gvt/mmio_context.h |  3 ++
>  drivers/gpu/drm/i915/gvt/opregion.c     |  1 -
>  drivers/gpu/drm/i915/gvt/page_track.c   |  2 ++
>  drivers/gpu/drm/i915/gvt/reg.h          |  9 +++++
>  drivers/gpu/drm/i915/gvt/scheduler.c    | 64 +++++++++++++++++----------------
>  15 files changed, 92 insertions(+), 53 deletions(-)
> 
> 
> -- 
> Open Source Technology Center, Intel ltd.
> 
> $gpg --keyserver wwwkeys.pgp.net --recv-keys 4D781827
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PULL] gvt-next for 4.20
  2018-09-06 13:11 ` Joonas Lahtinen
@ 2018-09-07  2:47   ` Zhenyu Wang
  0 siblings, 0 replies; 3+ messages in thread
From: Zhenyu Wang @ 2018-09-07  2:47 UTC (permalink / raw)
  To: Joonas Lahtinen
  Cc: Jani Nikula, intel-gfx, Yuan, Hang, Lv, Zhiyuan, Vivi, Rodrigo,
	intel-gvt-dev


[-- Attachment #1.1: Type: text/plain, Size: 628 bytes --]

On 2018.09.06 16:11:20 +0300, Joonas Lahtinen wrote:
> Quoting Zhenyu Wang (2018-09-04 06:01:54)
> > 
> > Hi,
> > 
> > Here's initial gvt-next for 4.20 with two optimization for
> > guest context shadowing and command parser, and with W=1 build fixes.
> 
> Thanks, pulled this, but it had one merge conflict (in gvt/reg.h).
> Please make sure the resolution I put in into drm-intel-next is correct.
> 

yeah, forgot to mention conflict with recent PCH reg define
change. Merge change is correct.

Thanks!

-- 
Open Source Technology Center, Intel ltd.

$gpg --keyserver wwwkeys.pgp.net --recv-keys 4D781827

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-09-07  2:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-04  3:01 [PULL] gvt-next for 4.20 Zhenyu Wang
2018-09-06 13:11 ` Joonas Lahtinen
2018-09-07  2:47   ` Zhenyu Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox