All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL] more gvt-next for 4.16
@ 2017-12-22  2:43 Zhenyu Wang
  2017-12-22  3:07 ` Rodrigo Vivi
  2018-02-06  8:36 ` [PULL] gvt-next-fixes " Zhi Wang
  0 siblings, 2 replies; 12+ messages in thread
From: Zhenyu Wang @ 2017-12-22  2:43 UTC (permalink / raw)
  To: Vivi, Rodrigo, Jani Nikula, Joonas Lahtinen
  Cc: intel-gfx, intel-gvt-dev, Lv, Zhiyuan, Yuan, Hang


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


Hi,

Here's last gvt-next pull for 4.16 merge window. I need to backmerge
once for one i915 param change to resolve patch dependence. This includes
mmio switch optimization, cleanups for write protect handler and our
i915_reg_t vs. offset usage.

thanks
--
The following changes since commit ee5b5bf351ec8cd8f11c631cb76b30f602e866ee:

  drm/i915: Update DRIVER_DATE to 20171214 (2017-12-14 12:10:02 -0800)

are available in the Git repository at:

  https://github.com/intel/gvt-linux.git tags/gvt-next-2017-12-22

for you to fetch changes up to 6660c07ab5d3a1388b07af55b2503dd7b2cc61f7:

  drm/i915/gvt: move write protect handler out of mmio emulation function (2017-12-21 11:03:27 +0800)

----------------------------------------------------------------
gvt-next-2017-12-22:

- more mmio switch optimization (Weinan)
- cleanup i915_reg_t vs. offset usage (Zhenyu)
- move write protect handler out of mmio handler (Zhenyu)

----------------------------------------------------------------
Weinan Li (4):
      drm/i915/gvt: refine trace_render_mmio
      drm/i915/gvt: optimize for vGPU mmio switch
      drm/i915/gvt: refine mocs save restore policy
      drm/i915/gvt: load host render mocs once in mocs switch

Xiaolin Zhang (1):
      drm/i915/gvt: Fix pipe A enable as default for vgpu

Zhenyu Wang (4):
      Merge tag 'drm-intel-next-2017-12-14' into gvt-next
      drm/i915/gvt: always use i915_reg_t for MMIO handler definition
      drm/i915/gvt: cleanup usage for typed mmio reg vs. offset
      drm/i915/gvt: move write protect handler out of mmio emulation function

 drivers/gpu/drm/i915/gvt/cmd_parser.c   |  39 +-
 drivers/gpu/drm/i915/gvt/display.c      |  81 ++--
 drivers/gpu/drm/i915/gvt/edid.c         |  22 +-
 drivers/gpu/drm/i915/gvt/fb_decoder.c   |  30 +-
 drivers/gpu/drm/i915/gvt/gtt.c          |  37 +-
 drivers/gpu/drm/i915/gvt/gtt.h          |   3 +
 drivers/gpu/drm/i915/gvt/gvt.c          |   1 +
 drivers/gpu/drm/i915/gvt/gvt.h          |  33 +-
 drivers/gpu/drm/i915/gvt/handlers.c     | 750 ++++++++++++++++----------------
 drivers/gpu/drm/i915/gvt/kvmgt.c        |   4 +-
 drivers/gpu/drm/i915/gvt/mmio.c         |  57 +--
 drivers/gpu/drm/i915/gvt/mmio.h         |   7 -
 drivers/gpu/drm/i915/gvt/mmio_context.c | 238 +++++-----
 drivers/gpu/drm/i915/gvt/trace.h        |  15 +-
 drivers/gpu/drm/i915/gvt/vgpu.c         |  24 +-
 15 files changed, 675 insertions(+), 666 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] 12+ messages in thread
* [PULL] more gvt-next for 4.16
@ 2017-12-14  3:34 Zhenyu Wang
  2017-12-14 19:17 ` Rodrigo Vivi
  0 siblings, 1 reply; 12+ messages in thread
From: Zhenyu Wang @ 2017-12-14  3:34 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: 2564 bytes --]


Hi,

Please pull more gvt-next updates for 4.16. Mostly on code and
regression fixes for last two gvt-next pulls and more refinement.
Details below.

thanks
--
The following changes since commit 1603660b3342269c95fcafee1945790342a8c28e:

  drm/i915/gvt: set max priority for gvt context (2017-12-04 11:24:35 +0800)

are available in the Git repository at:

  https://github.com/intel/gvt-linux.git tags/gvt-next-2017-12-14

for you to fetch changes up to 461bd6227ede277138bf33c2156b6ebd1fba04c2:

  drm/i915/gvt/fb_decoder: Fix out-of-bounds read (2017-12-11 17:18:39 +0800)

----------------------------------------------------------------
gvt-next-2017-12-14:

- fixes for two coverity scan errors (Colin)
- mmio switch code refine (Changbin)
- more virtual display dmabuf fixes (Tina/Gustavo)
- misc cleanups (Pei)

----------------------------------------------------------------
Changbin Du (4):
      drm/i915/gvt: Refine the ring mmio list definition
      drm/i915/gvt: Select appropriate mmio list at initialization time
      drm/i915/gvt: Remove MMIO barrier in MMIO switch
      drm/i915/gvt: Rename file render.{c, h} to mmio_context.{c, h}

Colin Ian King (2):
      drm/i915/gvt: Add missing breaks in switch statement
      drm/i915/gvt: fix off-by-one comparison of ring_id

Gustavo A. R. Silva (1):
      drm/i915/gvt/fb_decoder: Fix out-of-bounds read

Pei Zhang (2):
      drm/i915/gvt/kvmgt: fill info for ROM/VGA region
      drm/i915/gvt: refine function emulate_mmio_read/write

Tina Zhang (1):
      drm/i915/gvt: Refine dmabuf_obj cleanup process

 drivers/gpu/drm/i915/gvt/Makefile                  |   2 +-
 drivers/gpu/drm/i915/gvt/dmabuf.c                  |  15 +-
 drivers/gpu/drm/i915/gvt/fb_decoder.c              |   6 +
 drivers/gpu/drm/i915/gvt/gvt.c                     |   2 +
 drivers/gpu/drm/i915/gvt/gvt.h                     |   4 +-
 drivers/gpu/drm/i915/gvt/handlers.c                |   6 +-
 drivers/gpu/drm/i915/gvt/kvmgt.c                   |   6 +-
 drivers/gpu/drm/i915/gvt/mmio.c                    |  36 ++-
 .../gpu/drm/i915/gvt/{render.c => mmio_context.c}  | 262 ++++++++++-----------
 .../gpu/drm/i915/gvt/{render.h => mmio_context.h}  |   9 +
 10 files changed, 181 insertions(+), 167 deletions(-)
 rename drivers/gpu/drm/i915/gvt/{render.c => mmio_context.c} (53%)
 rename drivers/gpu/drm/i915/gvt/{render.h => mmio_context.h} (91%)

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

end of thread, other threads:[~2018-02-07  5:11 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-22  2:43 [PULL] more gvt-next for 4.16 Zhenyu Wang
2017-12-22  3:07 ` Rodrigo Vivi
2017-12-22  3:18   ` Zhenyu Wang
2017-12-22  7:49     ` Jani Nikula
2017-12-22  8:51       ` Zhenyu Wang
2017-12-22 18:18         ` Rodrigo Vivi
2018-02-06  8:36 ` [PULL] gvt-next-fixes " Zhi Wang
2018-02-06 19:45   ` Rodrigo Vivi
2018-02-07  2:41     ` Zhenyu Wang
2018-02-07  5:11       ` Rodrigo Vivi
  -- strict thread matches above, loose matches on Subject: below --
2017-12-14  3:34 [PULL] more gvt-next " Zhenyu Wang
2017-12-14 19:17 ` Rodrigo Vivi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.