dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] ZTE DRM driver updates for 4.11
@ 2017-01-29  5:41 Shawn Guo
  2017-01-31 22:29 ` Dave Airlie
  0 siblings, 1 reply; 3+ messages in thread
From: Shawn Guo @ 2017-01-29  5:41 UTC (permalink / raw)
  To: Dave Airlie; +Cc: Daniel Vetter, dri-devel

Hi Dave,

Please consider to pull the following ZTE DRM driver updates for 4.11.
Thanks.

Shawn

The following changes since commit a121103c922847ba5010819a3f250f1f7fc84ab8:

  Linux 4.10-rc3 (2017-01-08 14:18:17 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/zxdrm-4.11

for you to fetch changes up to 098988cbe5849e3e125b0bc02a6545a1dc414ab1:

  drm: zte: add tvenc driver support (2017-01-28 11:51:23 +0800)

----------------------------------------------------------------
ZTE DRM driver updates for 4.11:
 - Add missing selection of VIDEOMODE_HELPERS in Kconfig, since ZTE DRM
   driver uses drm_display_mode_to_videomode().
 - Enable HDMI audio support through SPDIF interface based on generic
   hdmi-audio-codec driver.
 - Enable VOU VL (Video Layer) to support overlay plane with scaling
   function.
 - Refine zx_vou driver a bit and then add TV Encoder output device
   support.

----------------------------------------------------------------
Shawn Guo (10):
      drm: zte: select VIDEOMODE_HELPERS in Kconfig
      drm: zte: support hdmi audio through spdif
      drm: zte: make zx_plane accessible from zx_vou driver
      drm: zte: add .atomic_disable hook to disable graphic layer
      drm: zte: add overlay plane support
      drm: zte: add interlace mode support
      drm: zte: move struct vou_inf into zx_vou driver
      drm: zte: add function to configure vou_ctrl dividers
      dt: add bindings for ZTE tvenc device
      drm: zte: add tvenc driver support

 .../devicetree/bindings/display/zte,vou.txt        |  15 +
 drivers/gpu/drm/zte/Kconfig                        |   2 +
 drivers/gpu/drm/zte/Makefile                       |   1 +
 drivers/gpu/drm/zte/zx_drm_drv.c                   |   1 +
 drivers/gpu/drm/zte/zx_drm_drv.h                   |   1 +
 drivers/gpu/drm/zte/zx_hdmi.c                      | 160 +++++++-
 drivers/gpu/drm/zte/zx_hdmi_regs.h                 |  14 +
 drivers/gpu/drm/zte/zx_plane.c                     | 328 +++++++++++++++--
 drivers/gpu/drm/zte/zx_plane.h                     |  12 +-
 drivers/gpu/drm/zte/zx_plane_regs.h                |  51 +++
 drivers/gpu/drm/zte/zx_tvenc.c                     | 407 +++++++++++++++++++++
 drivers/gpu/drm/zte/zx_tvenc_regs.h                |  31 ++
 drivers/gpu/drm/zte/zx_vou.c                       | 356 +++++++++++++++---
 drivers/gpu/drm/zte/zx_vou.h                       |  48 ++-
 drivers/gpu/drm/zte/zx_vou_regs.h                  |  51 +++
 15 files changed, 1365 insertions(+), 113 deletions(-)
 create mode 100644 drivers/gpu/drm/zte/zx_tvenc.c
 create mode 100644 drivers/gpu/drm/zte/zx_tvenc_regs.h
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] ZTE DRM driver updates for 4.11
  2017-01-29  5:41 [GIT PULL] ZTE DRM driver updates for 4.11 Shawn Guo
@ 2017-01-31 22:29 ` Dave Airlie
  2017-02-03 12:57   ` Shawn Guo
  0 siblings, 1 reply; 3+ messages in thread
From: Dave Airlie @ 2017-01-31 22:29 UTC (permalink / raw)
  To: Shawn Guo; +Cc: Daniel Vetter, dri-devel

On 29 January 2017 at 15:41, Shawn Guo <shawnguo@kernel.org> wrote:
> Hi Dave,
>
> Please consider to pull the following ZTE DRM driver updates for 4.11.
> Thanks.

Sorry for delay, I've pulled this and fixed up the plane format mismatch,

please confirm it works with drm-next.

Dave.
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] ZTE DRM driver updates for 4.11
  2017-01-31 22:29 ` Dave Airlie
@ 2017-02-03 12:57   ` Shawn Guo
  0 siblings, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2017-02-03 12:57 UTC (permalink / raw)
  To: Dave Airlie; +Cc: Daniel Vetter, dri-devel

On Wed, Feb 01, 2017 at 08:29:51AM +1000, Dave Airlie wrote:
> On 29 January 2017 at 15:41, Shawn Guo <shawnguo@kernel.org> wrote:
> > Hi Dave,
> >
> > Please consider to pull the following ZTE DRM driver updates for 4.11.
> > Thanks.
> 
> Sorry for delay, I've pulled this and fixed up the plane format mismatch,
> 
> please confirm it works with drm-next.

Confirmed.  Thanks, Dave.

Shawn
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-02-03 12:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-29  5:41 [GIT PULL] ZTE DRM driver updates for 4.11 Shawn Guo
2017-01-31 22:29 ` Dave Airlie
2017-02-03 12:57   ` Shawn Guo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).