* [PULL] GVT-g device model
@ 2016-10-27 7:03 Zhenyu Wang
2016-10-27 8:37 ` Daniel Vetter
0 siblings, 1 reply; 2+ messages in thread
From: Zhenyu Wang @ 2016-10-27 7:03 UTC (permalink / raw)
To: Daniel Vetter, Jani Nikula, Joonas Lahtinen, Zhi Wang
Cc: intel-gfx, igvt-g-dev, Lv, Zhiyuan
[-- Attachment #1.1: Type: text/plain, Size: 2718 bytes --]
Hi,
Here's new pull request to address recent build issues reported
and with more cleanup and fixes. Passed VM regression tests.
Thanks.
--
The following changes since commit 19e6393fb5366a89705a62b3276ce42e990d12ce:
drm/i915/gvt: do not ignore return value of create_scratch_page (2016-10-20 17:31:36 +0800)
are available in the git repository at:
https://github.com/01org/gvt-linux tags/gvt-next-2016-10-27
for you to fetch changes up to e45d7b7f47a4849a5d3d55a2cf5802a72924d37b:
drm/i915/gvt: fix nested sleeping issue (2016-10-27 11:20:42 +0800)
----------------------------------------------------------------
gvt-next-2016-10-27
- Resolve current left build issue with ACPI=n and 32bit kernel
- TLB workaround from Arkadiusz
- vGPU reset fix from Ping
- workload scheduler nesting sleep fix from Changbin
- more misc fixes for sparse warnings and cleanups
----------------------------------------------------------------
Arkadiusz Hiler (1):
drm/i915/gvt: Implement WaForceWakeRenderDuringMmioTLBInvalidate
Bing Niu (1):
drm/i915/gvt: throw error basing on execlist submit result
Du, Changbin (3):
drm/i915/gvt: use well wrapped set_mask_bits() instead of defining new one
drm/i915/gvt: get msi cap offset from pdev directly
drm/i915/gvt: fix nested sleeping issue
Jérémy Lefaure (2):
drm/i915/gvt: fix bad 32 bit shift in gtt
drm/i915/gvt: fix an error string format
Min He (1):
drm/i915/gvt: fix an typo in skl_decode_mi_display_flip
Ping Gao (3):
drm/i915/gvt: add vreg write for GDRST handler
drm/i915/gvt: correct the reset logic
drm/i915/gvt: add full vGPU reset support
Xiaoguang Chen (1):
drm/i915/gvt: fix detect_host calling logic
Zhenyu Wang (3):
drm/i915/gvt: Fix failure when ACPI is not enabled
drm/i915: GVT-g driver depends on 64BIT kernel
drm/i915/gvt: Fix broken mocs offset
drivers/gpu/drm/i915/Kconfig | 1 +
drivers/gpu/drm/i915/gvt/cmd_parser.c | 29 ++++++++++++++---------------
drivers/gpu/drm/i915/gvt/gtt.c | 4 ++--
drivers/gpu/drm/i915/gvt/gvt.c | 8 ++++++--
drivers/gpu/drm/i915/gvt/gvt.h | 2 ++
drivers/gpu/drm/i915/gvt/handlers.c | 26 ++++++++++++++++++++++----
drivers/gpu/drm/i915/gvt/opregion.c | 6 +++---
drivers/gpu/drm/i915/gvt/render.c | 21 +++++++++++++++++++--
drivers/gpu/drm/i915/gvt/scheduler.c | 19 ++++++++++++-------
drivers/gpu/drm/i915/gvt/vgpu.c | 4 ++--
10 files changed, 83 insertions(+), 37 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: 163 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] 2+ messages in thread
* Re: [PULL] GVT-g device model
2016-10-27 7:03 [PULL] GVT-g device model Zhenyu Wang
@ 2016-10-27 8:37 ` Daniel Vetter
0 siblings, 0 replies; 2+ messages in thread
From: Daniel Vetter @ 2016-10-27 8:37 UTC (permalink / raw)
To: Zhenyu Wang; +Cc: Jani Nikula, intel-gfx, igvt-g-dev, Lv, Zhiyuan
On Thu, Oct 27, 2016 at 03:03:27PM +0800, Zhenyu Wang wrote:
>
> Hi,
>
> Here's new pull request to address recent build issues reported
> and with more cleanup and fixes. Passed VM regression tests.
>
> Thanks.
> --
>
> The following changes since commit 19e6393fb5366a89705a62b3276ce42e990d12ce:
>
> drm/i915/gvt: do not ignore return value of create_scratch_page (2016-10-20 17:31:36 +0800)
>
> are available in the git repository at:
>
> https://github.com/01org/gvt-linux tags/gvt-next-2016-10-27
>
> for you to fetch changes up to e45d7b7f47a4849a5d3d55a2cf5802a72924d37b:
>
> drm/i915/gvt: fix nested sleeping issue (2016-10-27 11:20:42 +0800)
>
> ----------------------------------------------------------------
> gvt-next-2016-10-27
>
> - Resolve current left build issue with ACPI=n and 32bit kernel
> - TLB workaround from Arkadiusz
> - vGPU reset fix from Ping
> - workload scheduler nesting sleep fix from Changbin
> - more misc fixes for sparse warnings and cleanups
Thanks, pulled.
-Daniel
>
> ----------------------------------------------------------------
> Arkadiusz Hiler (1):
> drm/i915/gvt: Implement WaForceWakeRenderDuringMmioTLBInvalidate
>
> Bing Niu (1):
> drm/i915/gvt: throw error basing on execlist submit result
>
> Du, Changbin (3):
> drm/i915/gvt: use well wrapped set_mask_bits() instead of defining new one
> drm/i915/gvt: get msi cap offset from pdev directly
> drm/i915/gvt: fix nested sleeping issue
>
> Jérémy Lefaure (2):
> drm/i915/gvt: fix bad 32 bit shift in gtt
> drm/i915/gvt: fix an error string format
>
> Min He (1):
> drm/i915/gvt: fix an typo in skl_decode_mi_display_flip
>
> Ping Gao (3):
> drm/i915/gvt: add vreg write for GDRST handler
> drm/i915/gvt: correct the reset logic
> drm/i915/gvt: add full vGPU reset support
>
> Xiaoguang Chen (1):
> drm/i915/gvt: fix detect_host calling logic
>
> Zhenyu Wang (3):
> drm/i915/gvt: Fix failure when ACPI is not enabled
> drm/i915: GVT-g driver depends on 64BIT kernel
> drm/i915/gvt: Fix broken mocs offset
>
> drivers/gpu/drm/i915/Kconfig | 1 +
> drivers/gpu/drm/i915/gvt/cmd_parser.c | 29 ++++++++++++++---------------
> drivers/gpu/drm/i915/gvt/gtt.c | 4 ++--
> drivers/gpu/drm/i915/gvt/gvt.c | 8 ++++++--
> drivers/gpu/drm/i915/gvt/gvt.h | 2 ++
> drivers/gpu/drm/i915/gvt/handlers.c | 26 ++++++++++++++++++++++----
> drivers/gpu/drm/i915/gvt/opregion.c | 6 +++---
> drivers/gpu/drm/i915/gvt/render.c | 21 +++++++++++++++++++--
> drivers/gpu/drm/i915/gvt/scheduler.c | 19 ++++++++++++-------
> drivers/gpu/drm/i915/gvt/vgpu.c | 4 ++--
> 10 files changed, 83 insertions(+), 37 deletions(-)
>
> --
> Open Source Technology Center, Intel ltd.
>
> $gpg --keyserver wwwkeys.pgp.net --recv-keys 4D781827
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-10-27 8:37 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-27 7:03 [PULL] GVT-g device model Zhenyu Wang
2016-10-27 8:37 ` Daniel Vetter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox