mbox series

[v4,0/2] drm: Introduce writeback connectors

Message ID 20170505174258.8376-1-Liviu.Dudau@arm.com
Headers show
Series drm: Introduce writeback connectors | expand

Message

Liviu Dudau May 5, 2017, 5:42 p.m. UTC
Hi,

This is an update of Brian Starkey's RFC v3 series introducing
support for memory writeback engines as special connector. My
contribution has been minor compared to previous version, mostly
rebasing, addressing some of the comments and cleaning up the
behaviour of set_out_fence_for_connector() function to match what
the set_out_fence_for_crtc() callers do.

I've split out the Mali DP patches that use this series into a
separate patchset to be sent shortly after this.

I'm taking over from Brian on this, so please send the comments
to me but don't be afraid to Cc him on them.

Best regards,
Liviu

Brian Starkey (2):
  drm: Add writeback connector type
  drm: writeback: Add out-fences for writeback connectors

 Documentation/gpu/drm-kms.rst       |   9 +
 drivers/gpu/drm/Makefile            |   2 +-
 drivers/gpu/drm/drm_atomic.c        | 229 +++++++++++++++++++++++-
 drivers/gpu/drm/drm_atomic_helper.c |   6 +
 drivers/gpu/drm/drm_connector.c     |   4 +-
 drivers/gpu/drm/drm_writeback.c     | 335 ++++++++++++++++++++++++++++++++++++
 include/drm/drm_atomic.h            |  11 ++
 include/drm/drm_connector.h         |  13 ++
 include/drm/drm_mode_config.h       |  22 +++
 include/drm/drm_writeback.h         | 115 +++++++++++++
 include/uapi/drm/drm_mode.h         |   1 +
 11 files changed, 736 insertions(+), 11 deletions(-)
 create mode 100644 drivers/gpu/drm/drm_writeback.c
 create mode 100644 include/drm/drm_writeback.h