Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] gvt-next for 4.16
@ 2017-11-16  9:20 Zhenyu Wang
  2017-11-16 20:20 ` Rodrigo Vivi
  0 siblings, 1 reply; 4+ messages in thread
From: Zhenyu Wang @ 2017-11-16  9:20 UTC (permalink / raw)
  To: Jani Nikula, Vivi, Rodrigo, Joonas Lahtinen
  Cc: intel-gfx, intel-gvt-dev, Lv, Zhiyuan, Yuan, Hang


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


Hi,

As we missed 4.15 cycle, here's the bigger initial 4.16 gvt-next pull,
which includes many improvements as noted below.

thanks

--
The following changes since commit 34cc9efc27e2623c76a69d2ad1fa2b972e27a2c1:

  drm/i915: Remove pre-production pooled-EU w/a for Broxton (2017-11-15 18:04:18 +0000)

are available in the Git repository at:

  https://github.com/intel/gvt-linux.git tags/gvt-next-2017-11-16

for you to fetch changes up to f2880e04f3a5419366926182fc97a3c2e4fd8f2a:

  drm/i915/gvt: Move request alloc to dispatch_workload path only (2017-11-16 11:51:55 +0800)

----------------------------------------------------------------
gvt-next-2017-11-16

- CSB HWSP update support (Weinan)
- GVT debug helpers, dyndbg and debugfs (Chuanxiao, Shuo)
- full virtualized opregion (Xiaolin)
- VM health check for sane fallback (Fred)
- workload submission code refactor for future enabling (Zhi)
- Updated repo URL in MAINTAINERS (Zhenyu)
- other many misc fixes

----------------------------------------------------------------
Changbin Du (7):
      drm/i915/gvt: Add basic debugfs infrastructure
      drm/i915/gvt: Add mmio iterator intel_gvt_for_each_tracked_mmio()
      drm/i915/gvt: Add new debugfs tool mmio_diff
      drm/i915/gvt: Reduce rcs mocs switch latency
      drm/i915/gvt: Don't dump partial state in cmd parser
      drm/i915/gvt: Make gvt_vgpu_err use pr_err
      drm/i915/gvt: Emulate PCI expansion ROM base address register

Colin Ian King (1):
      drm/i915/gvt: ensure -ve return value is handled correctly

Shuo Liu (1):
      drm/i915/gvt: Use dyndbg for gvt debug info

Weinan Li (1):
      drm/i915/gvt: update CSB and CSB write pointer in virtual HWSP

Xiaolin Zhang (2):
      drm/i915/gvt: Add support for opregion virtualization
      drm/i915/gvt: opregion virtualization for win guest

Xiong Zhang (2):
      drm/i915/gvt: Limit read hw reg to active vgpu
      drm/i915/gvt: Let each vgpu has separate opregion memory

Zhenyu Wang (2):
      MAINTAINERS: Update gvt-linux.git new repo place
      Revert "drm/i915/gvt: Refine broken PPGTT scratch"

Zhi Wang (28):
      drm/i915/gvt: Make elsp_dwords in the right order
      drm/i915/gvt: Rename intel_vgpu_{init, clean}_gvt_context()
      drm/i915/gvt: Move workload cache init/clean into intel_vgpu_{setup, clean}_submission()
      drm/i915/gvt: Introduce intel_vgpu_submission
      drm/i915/gvt: Move tlb_handle_pending into intel_vgpu_submission
      drm/i915/gvt: Fix a memory leak in cmd_parser.c
      drm/i915/gvt: Rename reserved ring buffer
      drm/i915/gvt: Move ring scan buffers into intel_vgpu_submission
      drm/i915/gvt: Do not allocate initial ring scan buffer
      drm/i915/gvt: Factor out vGPU workload creation/destroy
      drm/i915/gvt: Factor out prepare_workload()
      drm/i915/gvt: Move common workload preparation into prepare_workload()
      drm/i915/gvt: Move common vGPU workload creation into scheduler.c
      drm/i915/gvt: Remove one extra declaration in scheduler.h
      drm/i915/gvt: Introduce vGPU submission ops
      drm/i915/gvt: Introduce intel_vgpu_reset_submission
      drm/i915/gvt: Move clean_workloads() into scheduler.c
      drm/i915/gvt: Use BIT() to make klockwork happy
      drm/i915/gvt: Refine find_bb_size()
      drm/i915/gvt: Refine shadow batch buffer
      drm/i915/gvt: Factor intel_vgpu_page_track
      drm/i915/gvt: Export intel_gvt_render_mmio_to_ring_id()
      drm/i915/gvt: Use I915_GTT_PAGE_SIZE
      drm/i915/gvt: Let the caller choose if a shadow page should be put into hash table
      drm/i915/gvt: Fix a bug of unexpectedly clear scratch page table
      drm/i915/gvt: Introduce page table type of current level in GTT type enumerations
      drm/i915/gvt: Introduce ops->set_present()
      drm/i915/gvt: Refine broken PPGTT scratch

fred gao (6):
      drm/i915/gvt: Change the return type during command scan
      drm/i915/gvt: Add VM healthy check for workload_thread
      drm/i915/gvt: Add VM healthy check for submit_context
      drm/i915/gvt: Move vGPU type related code into gvt file
      drm/i915/gvt: Refactor vGPU type code in kvmgt part
      drm/i915/gvt: Move request alloc to dispatch_workload path only

 MAINTAINERS                           |   2 +-
 drivers/gpu/drm/i915/gvt/Makefile     |   2 +-
 drivers/gpu/drm/i915/gvt/cfg_space.c  |  21 ++
 drivers/gpu/drm/i915/gvt/cmd_parser.c | 225 ++++++-----
 drivers/gpu/drm/i915/gvt/debug.h      |  24 +-
 drivers/gpu/drm/i915/gvt/debugfs.c    | 212 +++++++++++
 drivers/gpu/drm/i915/gvt/execlist.c   | 490 ++++--------------------
 drivers/gpu/drm/i915/gvt/execlist.h   |   8 +-
 drivers/gpu/drm/i915/gvt/firmware.c   |  26 +-
 drivers/gpu/drm/i915/gvt/gtt.c        | 261 +++++++------
 drivers/gpu/drm/i915/gvt/gtt.h        |  42 +--
 drivers/gpu/drm/i915/gvt/gvt.c        | 148 +++++++-
 drivers/gpu/drm/i915/gvt/gvt.h        |  71 ++--
 drivers/gpu/drm/i915/gvt/handlers.c   | 139 ++++++-
 drivers/gpu/drm/i915/gvt/kvmgt.c      | 130 +------
 drivers/gpu/drm/i915/gvt/mmio.c       |  32 +-
 drivers/gpu/drm/i915/gvt/mmio.h       |   6 +
 drivers/gpu/drm/i915/gvt/mpt.h        |  34 +-
 drivers/gpu/drm/i915/gvt/opregion.c   | 275 +++++++++++---
 drivers/gpu/drm/i915/gvt/reg.h        |   6 +-
 drivers/gpu/drm/i915/gvt/render.c     |  14 +-
 drivers/gpu/drm/i915/gvt/scheduler.c  | 687 +++++++++++++++++++++++++++++++---
 drivers/gpu/drm/i915/gvt/scheduler.h  |  29 +-
 drivers/gpu/drm/i915/gvt/vgpu.c       |  34 +-
 24 files changed, 1907 insertions(+), 1011 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/gvt/debugfs.c


-- 
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] 4+ messages in thread

* Re: [GIT PULL] gvt-next for 4.16
  2017-11-16  9:20 [GIT PULL] gvt-next for 4.16 Zhenyu Wang
@ 2017-11-16 20:20 ` Rodrigo Vivi
  2017-11-17  2:02   ` Zhenyu Wang
  0 siblings, 1 reply; 4+ messages in thread
From: Rodrigo Vivi @ 2017-11-16 20:20 UTC (permalink / raw)
  To: Zhenyu Wang
  Cc: Jani Nikula, intel-gfx, Yuan, Hang, Lv, Zhiyuan, intel-gvt-dev

Hi Zhenyu,

On Thu, Nov 16, 2017 at 09:20:07AM +0000, Zhenyu Wang wrote:
> 
> Hi,
> 
> As we missed 4.15 cycle, here's the bigger initial 4.16 gvt-next pull,
> which includes many improvements as noted below.
> 
> thanks
> 
> --
> The following changes since commit 34cc9efc27e2623c76a69d2ad1fa2b972e27a2c1:
> 
>   drm/i915: Remove pre-production pooled-EU w/a for Broxton (2017-11-15 18:04:18 +0000)
> 
> are available in the Git repository at:

this capital "G" broke dim here... It took me a while to figure out what
was going wrong.

How did you generate this pull request? Why this "g" is in capital?

Anyway I workarounded it here and pulled your changes into dinq.

But for next time please make it in a way that dim runs smoothly or
consider submitting a change to dim to accept git or Git.

Thanks,
Rodrigo.

> 
>   https://github.com/intel/gvt-linux.git tags/gvt-next-2017-11-16
> 
> for you to fetch changes up to f2880e04f3a5419366926182fc97a3c2e4fd8f2a:
> 
>   drm/i915/gvt: Move request alloc to dispatch_workload path only (2017-11-16 11:51:55 +0800)
> 
> ----------------------------------------------------------------
> gvt-next-2017-11-16
> 
> - CSB HWSP update support (Weinan)
> - GVT debug helpers, dyndbg and debugfs (Chuanxiao, Shuo)
> - full virtualized opregion (Xiaolin)
> - VM health check for sane fallback (Fred)
> - workload submission code refactor for future enabling (Zhi)
> - Updated repo URL in MAINTAINERS (Zhenyu)
> - other many misc fixes
> 
> ----------------------------------------------------------------
> Changbin Du (7):
>       drm/i915/gvt: Add basic debugfs infrastructure
>       drm/i915/gvt: Add mmio iterator intel_gvt_for_each_tracked_mmio()
>       drm/i915/gvt: Add new debugfs tool mmio_diff
>       drm/i915/gvt: Reduce rcs mocs switch latency
>       drm/i915/gvt: Don't dump partial state in cmd parser
>       drm/i915/gvt: Make gvt_vgpu_err use pr_err
>       drm/i915/gvt: Emulate PCI expansion ROM base address register
> 
> Colin Ian King (1):
>       drm/i915/gvt: ensure -ve return value is handled correctly
> 
> Shuo Liu (1):
>       drm/i915/gvt: Use dyndbg for gvt debug info
> 
> Weinan Li (1):
>       drm/i915/gvt: update CSB and CSB write pointer in virtual HWSP
> 
> Xiaolin Zhang (2):
>       drm/i915/gvt: Add support for opregion virtualization
>       drm/i915/gvt: opregion virtualization for win guest
> 
> Xiong Zhang (2):
>       drm/i915/gvt: Limit read hw reg to active vgpu
>       drm/i915/gvt: Let each vgpu has separate opregion memory
> 
> Zhenyu Wang (2):
>       MAINTAINERS: Update gvt-linux.git new repo place
>       Revert "drm/i915/gvt: Refine broken PPGTT scratch"
> 
> Zhi Wang (28):
>       drm/i915/gvt: Make elsp_dwords in the right order
>       drm/i915/gvt: Rename intel_vgpu_{init, clean}_gvt_context()
>       drm/i915/gvt: Move workload cache init/clean into intel_vgpu_{setup, clean}_submission()
>       drm/i915/gvt: Introduce intel_vgpu_submission
>       drm/i915/gvt: Move tlb_handle_pending into intel_vgpu_submission
>       drm/i915/gvt: Fix a memory leak in cmd_parser.c
>       drm/i915/gvt: Rename reserved ring buffer
>       drm/i915/gvt: Move ring scan buffers into intel_vgpu_submission
>       drm/i915/gvt: Do not allocate initial ring scan buffer
>       drm/i915/gvt: Factor out vGPU workload creation/destroy
>       drm/i915/gvt: Factor out prepare_workload()
>       drm/i915/gvt: Move common workload preparation into prepare_workload()
>       drm/i915/gvt: Move common vGPU workload creation into scheduler.c
>       drm/i915/gvt: Remove one extra declaration in scheduler.h
>       drm/i915/gvt: Introduce vGPU submission ops
>       drm/i915/gvt: Introduce intel_vgpu_reset_submission
>       drm/i915/gvt: Move clean_workloads() into scheduler.c
>       drm/i915/gvt: Use BIT() to make klockwork happy
>       drm/i915/gvt: Refine find_bb_size()
>       drm/i915/gvt: Refine shadow batch buffer
>       drm/i915/gvt: Factor intel_vgpu_page_track
>       drm/i915/gvt: Export intel_gvt_render_mmio_to_ring_id()
>       drm/i915/gvt: Use I915_GTT_PAGE_SIZE
>       drm/i915/gvt: Let the caller choose if a shadow page should be put into hash table
>       drm/i915/gvt: Fix a bug of unexpectedly clear scratch page table
>       drm/i915/gvt: Introduce page table type of current level in GTT type enumerations
>       drm/i915/gvt: Introduce ops->set_present()
>       drm/i915/gvt: Refine broken PPGTT scratch
> 
> fred gao (6):
>       drm/i915/gvt: Change the return type during command scan
>       drm/i915/gvt: Add VM healthy check for workload_thread
>       drm/i915/gvt: Add VM healthy check for submit_context
>       drm/i915/gvt: Move vGPU type related code into gvt file
>       drm/i915/gvt: Refactor vGPU type code in kvmgt part
>       drm/i915/gvt: Move request alloc to dispatch_workload path only
> 
>  MAINTAINERS                           |   2 +-
>  drivers/gpu/drm/i915/gvt/Makefile     |   2 +-
>  drivers/gpu/drm/i915/gvt/cfg_space.c  |  21 ++
>  drivers/gpu/drm/i915/gvt/cmd_parser.c | 225 ++++++-----
>  drivers/gpu/drm/i915/gvt/debug.h      |  24 +-
>  drivers/gpu/drm/i915/gvt/debugfs.c    | 212 +++++++++++
>  drivers/gpu/drm/i915/gvt/execlist.c   | 490 ++++--------------------
>  drivers/gpu/drm/i915/gvt/execlist.h   |   8 +-
>  drivers/gpu/drm/i915/gvt/firmware.c   |  26 +-
>  drivers/gpu/drm/i915/gvt/gtt.c        | 261 +++++++------
>  drivers/gpu/drm/i915/gvt/gtt.h        |  42 +--
>  drivers/gpu/drm/i915/gvt/gvt.c        | 148 +++++++-
>  drivers/gpu/drm/i915/gvt/gvt.h        |  71 ++--
>  drivers/gpu/drm/i915/gvt/handlers.c   | 139 ++++++-
>  drivers/gpu/drm/i915/gvt/kvmgt.c      | 130 +------
>  drivers/gpu/drm/i915/gvt/mmio.c       |  32 +-
>  drivers/gpu/drm/i915/gvt/mmio.h       |   6 +
>  drivers/gpu/drm/i915/gvt/mpt.h        |  34 +-
>  drivers/gpu/drm/i915/gvt/opregion.c   | 275 +++++++++++---
>  drivers/gpu/drm/i915/gvt/reg.h        |   6 +-
>  drivers/gpu/drm/i915/gvt/render.c     |  14 +-
>  drivers/gpu/drm/i915/gvt/scheduler.c  | 687 +++++++++++++++++++++++++++++++---
>  drivers/gpu/drm/i915/gvt/scheduler.h  |  29 +-
>  drivers/gpu/drm/i915/gvt/vgpu.c       |  34 +-
>  24 files changed, 1907 insertions(+), 1011 deletions(-)
>  create mode 100644 drivers/gpu/drm/i915/gvt/debugfs.c
> 
> 
> -- 
> 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] 4+ messages in thread

* Re: [GIT PULL] gvt-next for 4.16
  2017-11-16 20:20 ` Rodrigo Vivi
@ 2017-11-17  2:02   ` Zhenyu Wang
  2017-11-17 17:42     ` Rodrigo Vivi
  0 siblings, 1 reply; 4+ messages in thread
From: Zhenyu Wang @ 2017-11-17  2:02 UTC (permalink / raw)
  To: Rodrigo Vivi
  Cc: Jani Nikula, intel-gfx, Yuan, Hang, Lv, Zhiyuan, intel-gvt-dev


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

On 2017.11.16 12:20:14 -0800, Rodrigo Vivi wrote:
> Hi Zhenyu,
> 
> On Thu, Nov 16, 2017 at 09:20:07AM +0000, Zhenyu Wang wrote:
> > 
> > Hi,
> > 
> > As we missed 4.15 cycle, here's the bigger initial 4.16 gvt-next pull,
> > which includes many improvements as noted below.
> > 
> > thanks
> > 
> > --
> > The following changes since commit 34cc9efc27e2623c76a69d2ad1fa2b972e27a2c1:
> > 
> >   drm/i915: Remove pre-production pooled-EU w/a for Broxton (2017-11-15 18:04:18 +0000)
> > 
> > are available in the Git repository at:
> 
> this capital "G" broke dim here... It took me a while to figure out what
> was going wrong.
> 
> How did you generate this pull request? Why this "g" is in capital?
>

I'm using git 2.15-rc2, so found below one.

commit e66d7c37a5f123f1dcede06ac0e11f9254c3ef46
Author: Ann T Ropea <bedhanger@gmx.de>
Date:   Tue Oct 3 00:08:38 2017 +0000

    request-pull: capitalise "Git" to make it a proper noun

    Of the many ways to spell the three-letter word, the variant "Git"
        should be used when referring to a repository in a description; or, in
	    general, when it is used as a proper noun.

    We thus change the pull-request template message so that it reads

       "...in the Git repository at:"

    Besides, this brings us in line with the documentation, see
        Documentation/howto/using-signed-tag-in-pull-request.txt

    Signed-off-by: Ann T Ropea <bedhanger@gmx.de>
    Acked-by: Jonathan Nieder <jrnieder@gmail.com>
    Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
    Signed-off-by: Junio C Hamano <gitster@pobox.com>

diff --git a/git-request-pull.sh b/git-request-pull.sh
index eebd33276da9..13c172bd94fc 100755
--- a/git-request-pull.sh
+++ b/git-request-pull.sh
@@ -128,7 +128,7 @@ git show -s --format='The following changes since commit %H:

   %s (%ci)

-are available in the git repository at:
+are available in the Git repository at:
 ' $merge_base &&
  echo "  $url $pretty_remote" &&
   git show -s --format='


> Anyway I workarounded it here and pulled your changes into dinq.
>

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 related	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] gvt-next for 4.16
  2017-11-17  2:02   ` Zhenyu Wang
@ 2017-11-17 17:42     ` Rodrigo Vivi
  0 siblings, 0 replies; 4+ messages in thread
From: Rodrigo Vivi @ 2017-11-17 17:42 UTC (permalink / raw)
  To: Zhenyu Wang
  Cc: Jani Nikula, intel-gfx, Yuan, Hang, Lv, Zhiyuan, intel-gvt-dev

On Fri, Nov 17, 2017 at 02:02:51AM +0000, Zhenyu Wang wrote:
> On 2017.11.16 12:20:14 -0800, Rodrigo Vivi wrote:
> > Hi Zhenyu,
> > 
> > On Thu, Nov 16, 2017 at 09:20:07AM +0000, Zhenyu Wang wrote:
> > > 
> > > Hi,
> > > 
> > > As we missed 4.15 cycle, here's the bigger initial 4.16 gvt-next pull,
> > > which includes many improvements as noted below.
> > > 
> > > thanks
> > > 
> > > --
> > > The following changes since commit 34cc9efc27e2623c76a69d2ad1fa2b972e27a2c1:
> > > 
> > >   drm/i915: Remove pre-production pooled-EU w/a for Broxton (2017-11-15 18:04:18 +0000)
> > > 
> > > are available in the Git repository at:
> > 
> > this capital "G" broke dim here... It took me a while to figure out what
> > was going wrong.
> > 
> > How did you generate this pull request? Why this "g" is in capital?
> >
> 
> I'm using git 2.15-rc2, so found below one.
> 
> commit e66d7c37a5f123f1dcede06ac0e11f9254c3ef46
> Author: Ann T Ropea <bedhanger@gmx.de>
> Date:   Tue Oct 3 00:08:38 2017 +0000
> 
>     request-pull: capitalise "Git" to make it a proper noun
> 
>     Of the many ways to spell the three-letter word, the variant "Git"
>         should be used when referring to a repository in a description; or, in
> 	    general, when it is used as a proper noun.
> 
>     We thus change the pull-request template message so that it reads
> 
>        "...in the Git repository at:"
> 
>     Besides, this brings us in line with the documentation, see
>         Documentation/howto/using-signed-tag-in-pull-request.txt
> 
>     Signed-off-by: Ann T Ropea <bedhanger@gmx.de>
>     Acked-by: Jonathan Nieder <jrnieder@gmail.com>
>     Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
>     Signed-off-by: Junio C Hamano <gitster@pobox.com>
> 
> diff --git a/git-request-pull.sh b/git-request-pull.sh
> index eebd33276da9..13c172bd94fc 100755
> --- a/git-request-pull.sh
> +++ b/git-request-pull.sh
> @@ -128,7 +128,7 @@ git show -s --format='The following changes since commit %H:
> 
>    %s (%ci)
> 
> -are available in the git repository at:
> +are available in the Git repository at:

Thanks for the explanation and for finding this source.
Jani already to care of dinq so we should be fine now on ;)

Thanks,
Rodrigo.

>  ' $merge_base &&
>   echo "  $url $pretty_remote" &&
>    git show -s --format='
> 
> 
> > Anyway I workarounded it here and pulled your changes into dinq.
> >
> 
> thanks!
> 
> -- 
> 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] 4+ messages in thread

end of thread, other threads:[~2017-11-17 17:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-16  9:20 [GIT PULL] gvt-next for 4.16 Zhenyu Wang
2017-11-16 20:20 ` Rodrigo Vivi
2017-11-17  2:02   ` Zhenyu Wang
2017-11-17 17:42     ` Rodrigo Vivi

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