Hi Dave, I would like to add the Mali DP driver to the drm-next tree. It has got several reviews and now the Acks from the relevant people.
The tree is based on drm-intel/topic/drm-misc tree with tag topic/drm-misc-2016-06-14 and also needs two patches from Daniel to function correctly [1][2]. Hope this helps in staging the commits correctly. Many thanks, Liviu [1] https://lists.freedesktop.org/archives/dri-devel/2016-June/110855.html [2] https://lists.freedesktop.org/archives/dri-devel/2016-June/110922.html The following changes since commit 0d841ac0ec213f70ab59d65129e80f229846fadf: drm/virtio: Don't reinvent a flipping wheel (2016-06-14 16:32:47 +0200) are available in the git repository at: git://linux-arm.org/linux-ld.git for-upstream/mali-dp for you to fetch changes up to 59ba2422b4308b02438506d35d5042df5d42c249: MAINTAINERS: Add entry for Mali-DP driver (2016-06-15 17:30:23 +0100) ---------------------------------------------------------------- Liviu Dudau (3): dt/bindings: display: Add DT bindings for Mali Display Processors. drm/arm: Add support for Mali Display Processors MAINTAINERS: Add entry for Mali-DP driver .../devicetree/bindings/display/arm,malidp.txt | 65 ++ MAINTAINERS | 10 +- drivers/gpu/drm/arm/Kconfig | 16 + drivers/gpu/drm/arm/Makefile | 2 + drivers/gpu/drm/arm/malidp_crtc.c | 216 +++++++ drivers/gpu/drm/arm/malidp_drv.c | 512 +++++++++++++++ drivers/gpu/drm/arm/malidp_drv.h | 54 ++ drivers/gpu/drm/arm/malidp_hw.c | 691 +++++++++++++++++++++ drivers/gpu/drm/arm/malidp_hw.h | 241 +++++++ drivers/gpu/drm/arm/malidp_planes.c | 298 +++++++++ drivers/gpu/drm/arm/malidp_regs.h | 172 +++++ 11 files changed, 2276 insertions(+), 1 deletion(-) create mode 100644 Documentation/devicetree/bindings/display/arm,malidp.txt create mode 100644 drivers/gpu/drm/arm/malidp_crtc.c create mode 100644 drivers/gpu/drm/arm/malidp_drv.c create mode 100644 drivers/gpu/drm/arm/malidp_drv.h create mode 100644 drivers/gpu/drm/arm/malidp_hw.c create mode 100644 drivers/gpu/drm/arm/malidp_hw.h create mode 100644 drivers/gpu/drm/arm/malidp_planes.c create mode 100644 drivers/gpu/drm/arm/malidp_regs.h