dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL FOR v6.1] R-Car DU changes
@ 2022-09-07 21:24 Laurent Pinchart
  2022-09-16 11:16 ` Laurent Pinchart
  0 siblings, 1 reply; 2+ messages in thread
From: Laurent Pinchart @ 2022-09-07 21:24 UTC (permalink / raw)
  To: Daniel Vetter, Dave Airlie; +Cc: dri-devel

Hi Dave, Daniel,

The following changes since commit 8284bae723f025cb6a8431566757a3854a3c53eb:

  Merge tag 'drm-misc-next-2022-08-20-1' of git://anongit.freedesktop.org/drm/drm-misc into drm-next (2022-09-06 10:56:04 +0200)

are available in the Git repository at:

  git://linuxtv.org/pinchartl/media.git tags/du-next-20220907

for you to fetch changes up to cee3e5839cedcc71be755580dc9c0b87fd129116:

  dt-bindings: display: bridge: renesas,dw-hdmi: Add resets property (2022-09-07 23:50:03 +0300)

----------------------------------------------------------------
- Misc fixes and improvements to the R-Car DU driver
- Synopsys DW HDMI bridge DT bindings update

----------------------------------------------------------------
Biju Das (2):
      drm: rcar-du: Drop unused encoder header files
      drm: rcar-du: Use %p4cc to print 4CC format

Lad Prabhakar (1):
      dt-bindings: display: bridge: renesas,dw-hdmi: Add resets property

Laurent Pinchart (1):
      drm: rcar-du: Drop leftovers variables from Makefile

Takanari Hayama (3):
      media: vsp1: Add premultiplied alpha support
      drm: rcar-du: Add DRM_MODE_BLEND_PREMULTI support
      drm: rcar-du: Add DRM_MODE_BLEND_PIXEL_NONE support

Tomi Valkeinen (7):
      drm: rcar-du: Remove unnecessary include
      drm: rcar-du: Fix r8a779a0 color issue
      drm: rcar-du: lvds: Rename pclk enable/disable functions
      drm: rcar-du: dsi: Properly stop video mode TX
      drm: rcar-du: dsi: Improve DSI shutdown
      drm: rcar-du: Fix DSI enable & disable sequence
      drm: rcar-du: dsi: Fix VCLKSET write

 .../bindings/display/bridge/renesas,dw-hdmi.yaml   |  5 ++
 drivers/gpu/drm/rcar-du/Makefile                   |  7 ---
 drivers/gpu/drm/rcar-du/rcar_du_crtc.c             | 30 +++++++++-
 drivers/gpu/drm/rcar-du/rcar_du_drv.c              |  4 +-
 drivers/gpu/drm/rcar-du/rcar_du_drv.h              |  3 +
 drivers/gpu/drm/rcar-du/rcar_du_encoder.c          |  9 ++-
 drivers/gpu/drm/rcar-du/rcar_du_kms.c              |  4 +-
 drivers/gpu/drm/rcar-du/rcar_du_plane.c            | 16 +++--
 drivers/gpu/drm/rcar-du/rcar_du_vsp.c              | 26 +++++++-
 drivers/gpu/drm/rcar-du/rcar_du_writeback.c        |  4 +-
 drivers/gpu/drm/rcar-du/rcar_lvds.c                |  8 +--
 drivers/gpu/drm/rcar-du/rcar_lvds.h                | 10 ++--
 drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c            | 69 +++++++++++++++++++---
 drivers/gpu/drm/rcar-du/rcar_mipi_dsi.h            | 31 ++++++++++
 drivers/media/platform/renesas/vsp1/vsp1_drm.c     |  2 +
 include/media/vsp1.h                               |  2 +
 16 files changed, 188 insertions(+), 42 deletions(-)
 create mode 100644 drivers/gpu/drm/rcar-du/rcar_mipi_dsi.h

-- 
Regards,

Laurent Pinchart

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

* Re: [GIT PULL FOR v6.1] R-Car DU changes
  2022-09-07 21:24 [GIT PULL FOR v6.1] R-Car DU changes Laurent Pinchart
@ 2022-09-16 11:16 ` Laurent Pinchart
  0 siblings, 0 replies; 2+ messages in thread
From: Laurent Pinchart @ 2022-09-16 11:16 UTC (permalink / raw)
  To: Daniel Vetter, Dave Airlie; +Cc: dri-devel

Gentle ping. I know it's conference time, but I'd appreciate if this
could be merged in time for v6.1.

I also forgot to mention explicitly in the pull request that patch
"media: vsp1: Add premultiplied alpha support" has Mauro's approval for
merge through the DRM tree (the patch has his ack, but being explicit is
better). It's a small change that we didn't consider worth a shared
stable branch as there's no conflict with V4L2.

On Thu, Sep 08, 2022 at 12:24:10AM +0300, Laurent Pinchart wrote:
> Hi Dave, Daniel,
> 
> The following changes since commit 8284bae723f025cb6a8431566757a3854a3c53eb:
> 
>   Merge tag 'drm-misc-next-2022-08-20-1' of git://anongit.freedesktop.org/drm/drm-misc into drm-next (2022-09-06 10:56:04 +0200)
> 
> are available in the Git repository at:
> 
>   git://linuxtv.org/pinchartl/media.git tags/du-next-20220907
> 
> for you to fetch changes up to cee3e5839cedcc71be755580dc9c0b87fd129116:
> 
>   dt-bindings: display: bridge: renesas,dw-hdmi: Add resets property (2022-09-07 23:50:03 +0300)
> 
> ----------------------------------------------------------------
> - Misc fixes and improvements to the R-Car DU driver
> - Synopsys DW HDMI bridge DT bindings update
> 
> ----------------------------------------------------------------
> Biju Das (2):
>       drm: rcar-du: Drop unused encoder header files
>       drm: rcar-du: Use %p4cc to print 4CC format
> 
> Lad Prabhakar (1):
>       dt-bindings: display: bridge: renesas,dw-hdmi: Add resets property
> 
> Laurent Pinchart (1):
>       drm: rcar-du: Drop leftovers variables from Makefile
> 
> Takanari Hayama (3):
>       media: vsp1: Add premultiplied alpha support
>       drm: rcar-du: Add DRM_MODE_BLEND_PREMULTI support
>       drm: rcar-du: Add DRM_MODE_BLEND_PIXEL_NONE support
> 
> Tomi Valkeinen (7):
>       drm: rcar-du: Remove unnecessary include
>       drm: rcar-du: Fix r8a779a0 color issue
>       drm: rcar-du: lvds: Rename pclk enable/disable functions
>       drm: rcar-du: dsi: Properly stop video mode TX
>       drm: rcar-du: dsi: Improve DSI shutdown
>       drm: rcar-du: Fix DSI enable & disable sequence
>       drm: rcar-du: dsi: Fix VCLKSET write
> 
>  .../bindings/display/bridge/renesas,dw-hdmi.yaml   |  5 ++
>  drivers/gpu/drm/rcar-du/Makefile                   |  7 ---
>  drivers/gpu/drm/rcar-du/rcar_du_crtc.c             | 30 +++++++++-
>  drivers/gpu/drm/rcar-du/rcar_du_drv.c              |  4 +-
>  drivers/gpu/drm/rcar-du/rcar_du_drv.h              |  3 +
>  drivers/gpu/drm/rcar-du/rcar_du_encoder.c          |  9 ++-
>  drivers/gpu/drm/rcar-du/rcar_du_kms.c              |  4 +-
>  drivers/gpu/drm/rcar-du/rcar_du_plane.c            | 16 +++--
>  drivers/gpu/drm/rcar-du/rcar_du_vsp.c              | 26 +++++++-
>  drivers/gpu/drm/rcar-du/rcar_du_writeback.c        |  4 +-
>  drivers/gpu/drm/rcar-du/rcar_lvds.c                |  8 +--
>  drivers/gpu/drm/rcar-du/rcar_lvds.h                | 10 ++--
>  drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c            | 69 +++++++++++++++++++---
>  drivers/gpu/drm/rcar-du/rcar_mipi_dsi.h            | 31 ++++++++++
>  drivers/media/platform/renesas/vsp1/vsp1_drm.c     |  2 +
>  include/media/vsp1.h                               |  2 +
>  16 files changed, 188 insertions(+), 42 deletions(-)
>  create mode 100644 drivers/gpu/drm/rcar-du/rcar_mipi_dsi.h

-- 
Regards,

Laurent Pinchart

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

end of thread, other threads:[~2022-09-16 11:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-07 21:24 [GIT PULL FOR v6.1] R-Car DU changes Laurent Pinchart
2022-09-16 11:16 ` Laurent Pinchart

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).