[git pull] vmwgfx-next

Thomas Hellstrom thellstrom at vmware.com
Wed Dec 5 10:35:54 UTC 2018


Hi Dave,

The vmwgfx -next changes for 4.21:
Page flip with damage by Deepak and others,
Various vmwgfx minor fixes anc cleanups.

The following changes since commit 818182dd1097fdc492aaef9b08755ea13274352d:

  Merge tag 'imx-drm-next-2018-12-03' of git://git.pengutronix.de/git/pza/linux into drm-next (2018-12-05 15:00:14 +1000)

are available in the Git repository at:

  git://people.freedesktop.org/~thomash/linux tags/vmwgfx-next-2018-12-05

for you to fetch changes up to 9a01135b98b9d5a7033c544245da7aad0d886758:

  drm/vmwgfx: Use the standard atomic helpers for page-flip (2018-12-05 10:09:55 +0100)

----------------------------------------------------------------
Pull request of 2018-12-05

----------------------------------------------------------------
Colin Ian King (1):
      drm/vmwgfx: remove redundant return ret statement

Deepak Rawat (16):
      drm: Add a new helper to validate damage during atomic_check
      drm: Add helper iterator functions for plane fb_damage_clips blob
      drm/selftest: Add drm damage helper selftest
      drm/vmwgfx: Add a new interface for plane update on a display unit
      drm/vmwgfx: Implement STDU plane update for surface backed fb
      drm/vmwgfx: Implement STDU plane update for BO backed fb
      drm/vmwgfx: Use the new interface for STDU plane update
      drm/vmwgfx: Update comments for stdu plane update
      drm/vmwgfx: Enable FB_DAMAGE_CLIPS property for STDU primary plane
      drm/vmwgfx: Implement SOU plane update for surface backed fb
      drm/vmwgfx: Implement SOU plane update for BO backed fb
      drm/vmwgfx: Use the new interface for SOU plane update
      drm/vmwgfx: Update comments for sou plane update function
      drm/vmwgfx: Enable FB_DAMAGE_CLIPS property for SOU primary plane
      drm/vmwgfx: Use atomic helper function for dirty fb IOCTL
      drm/vmwgfx: Don't clear mode::type anymore

Lukasz Spintzyk (1):
      drm: Add a new plane property to send damage during plane update

Rob Clark (1):
      drm: Add helper to implement legacy dirtyfb

Sinclair Yeh (1):
      MAINTAINERS: Update vmwgfx maintainers

Thomas Hellstrom (3):
      drm/vmwgfx: Fix up the implicit display unit handling
      drm/vmwgfx: Fix a layout race condition
      drm/vmwgfx: Use the standard atomic helpers for page-flip

YueHaibing (1):
      drm/vmwgfx: Remove set but not used variable 'file_priv'

 Documentation/gpu/drm-kms.rst                      |  12 +
 MAINTAINERS                                        |   2 -
 drivers/gpu/drm/Makefile                           |   2 +-
 drivers/gpu/drm/drm_atomic.c                       |  22 +
 drivers/gpu/drm/drm_atomic_helper.c                |   3 +
 drivers/gpu/drm/drm_atomic_uapi.c                  |  13 +
 drivers/gpu/drm/drm_damage_helper.c                | 334 +++++++++
 drivers/gpu/drm/drm_mode_config.c                  |   6 +
 drivers/gpu/drm/selftests/Makefile                 |   3 +-
 drivers/gpu/drm/selftests/drm_modeset_selftests.h  |  21 +
 drivers/gpu/drm/selftests/test-drm_damage_helper.c | 811 +++++++++++++++++++++
 .../gpu/drm/selftests/test-drm_modeset_common.h    |  21 +
 drivers/gpu/drm/vmwgfx/vmwgfx_drv.c                |   1 -
 drivers/gpu/drm/vmwgfx/vmwgfx_drv.h                |  11 -
 drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c            |   2 -
 drivers/gpu/drm/vmwgfx/vmwgfx_fence.c              |   3 -
 drivers/gpu/drm/vmwgfx/vmwgfx_kms.c                | 569 +++++++--------
 drivers/gpu/drm/vmwgfx/vmwgfx_kms.h                | 150 +++-
 drivers/gpu/drm/vmwgfx/vmwgfx_ldu.c                |  11 +-
 drivers/gpu/drm/vmwgfx/vmwgfx_scrn.c               | 359 +++++++--
 drivers/gpu/drm/vmwgfx/vmwgfx_stdu.c               | 561 ++++++++++----
 include/drm/drm_damage_helper.h                    |  99 +++
 include/drm/drm_mode_config.h                      |   9 +
 include/drm/drm_plane.h                            |  42 ++
 include/uapi/drm/drm_mode.h                        |  19 +
 25 files changed, 2521 insertions(+), 565 deletions(-)
 create mode 100644 drivers/gpu/drm/drm_damage_helper.c
 create mode 100644 drivers/gpu/drm/selftests/test-drm_damage_helper.c
 create mode 100644 include/drm/drm_damage_helper.h


More information about the dri-devel mailing list