Hello,
Please pull the generic drm_writeback patches into drm-misc-next. They have been reviewed on the mailing lists for a while, and we have the userspace and individual kernel driver's implementations using it.
The following changes since commit 33ce21d6a2491ef9adb8dc395e3f5bbbfcdc95b5:
Merge tag 'drm-intel-next-fixes-2018-06-08-2' of git://anongit.freedesktop.org/drm/drm-intel into drm-next (2018-06-09 06:34:51 +1000)
are available in the Git repository at:
git://linux-arm.org/linux-ld.git f989333aea5729639e522830af8d74dd6a4bd3cf
for you to fetch changes up to f989333aea5729639e522830af8d74dd6a4bd3cf:
drm: writeback: Add client capability for exposing writeback connectors (2018-06-14 13:42:26 +0100)
---------------------------------------------------------------- Brian Starkey (2): drm: Add writeback connector type drm: writeback: Add out-fences for writeback connectors
Liviu Dudau (1): drm: writeback: Add client capability for exposing writeback connectors
Documentation/gpu/drm-kms.rst | 9 + drivers/gpu/drm/Makefile | 2 +- drivers/gpu/drm/drm_atomic.c | 223 +++++++++++++++++++- drivers/gpu/drm/drm_atomic_helper.c | 25 +++ drivers/gpu/drm/drm_connector.c | 4 +- drivers/gpu/drm/drm_ioctl.c | 7 + drivers/gpu/drm/drm_mode_config.c | 5 + drivers/gpu/drm/drm_writeback.c | 350 +++++++++++++++++++++++++++++++ include/drm/drm_atomic.h | 11 + include/drm/drm_connector.h | 13 ++ include/drm/drm_file.h | 7 + include/drm/drm_mode_config.h | 23 ++ include/drm/drm_modeset_helper_vtables.h | 11 + include/drm/drm_writeback.h | 130 ++++++++++++ include/uapi/drm/drm.h | 9 + include/uapi/drm/drm_mode.h | 1 + 16 files changed, 819 insertions(+), 11 deletions(-) create mode 100644 drivers/gpu/drm/drm_writeback.c create mode 100644 include/drm/drm_writeback.h
dri-devel@lists.freedesktop.org