All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL FOR v5.6] R-Car DU new features
@ 2019-12-18 15:17 Laurent Pinchart
  2019-12-18 15:23 ` Daniel Vetter
  0 siblings, 1 reply; 2+ messages in thread
From: Laurent Pinchart @ 2019-12-18 15:17 UTC (permalink / raw)
  To: Dave Airlie, Daniel Vetter, dri-devel

Hi Dave and Daniel,

The following changes since commit d1eef1c619749b2a57e514a3fa67d9a516ffa919:

  Linux 5.5-rc2 (2019-12-15 15:16:08 -0800)

are available in the Git repository at:

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

for you to fetch changes up to c267782c5f0efbd20c560101738e68bb30d4fad5:

  drm: rcar-du: Add r8a77980 support (2019-12-18 02:40:29 +0200)

----------------------------------------------------------------
R-Car Display Unit changes:

- Color Management Module support
- LVDS encoder dual-link support enhancements
- R8A77980 support

----------------------------------------------------------------
Fabrizio Castro (4):
      drm: of: Add drm_of_lvds_get_dual_link_pixel_order
      drm: rcar-du: lvds: Improve identification of panels
      drm: rcar-du: lvds: Get dual link configuration from DT
      drm: rcar-du: lvds: Allow for even and odd pixels swap

Geert Uytterhoeven (2):
      dt-bindings: display: renesas: du: Add vendor prefix to vsps property
      drm: rcar-du: Recognize "renesas,vsps" in addition to "vsps"

Jacopo Mondi (6):
      dt-bindings: display: renesas,cmm: Add R-Car CMM documentation
      dt-bindings: display: renesas,du: Document cmms property
      drm: rcar-du: Add support for CMM
      drm: rcar-du: kms: Initialize CMM instances
      drm: rcar-du: crtc: Control CMM operations
      drm: rcar-du: crtc: Register GAMMA_LUT properties

Kieran Bingham (1):
      drm: rcar-du: Add r8a77980 support

Laurent Pinchart (1):
      drm: rcar-du: lvds: Get mode from state

(with all patches properly signed this time)

 .../devicetree/bindings/display/renesas,cmm.yaml   |  67 +++++
 .../devicetree/bindings/display/renesas,du.txt     |  15 +-
 drivers/gpu/drm/drm_of.c                           | 116 ++++++++
 drivers/gpu/drm/rcar-du/Kconfig                    |   8 +
 drivers/gpu/drm/rcar-du/Makefile                   |   1 +
 drivers/gpu/drm/rcar-du/rcar_cmm.c                 | 217 ++++++++++++++
 drivers/gpu/drm/rcar-du/rcar_cmm.h                 |  58 ++++
 drivers/gpu/drm/rcar-du/rcar_du_crtc.c             |  71 +++++
 drivers/gpu/drm/rcar-du/rcar_du_crtc.h             |   2 +
 drivers/gpu/drm/rcar-du/rcar_du_drv.c              |   6 +-
 drivers/gpu/drm/rcar-du/rcar_du_drv.h              |   2 +
 drivers/gpu/drm/rcar-du/rcar_du_group.c            |  10 +
 drivers/gpu/drm/rcar-du/rcar_du_group.h            |   2 +
 drivers/gpu/drm/rcar-du/rcar_du_kms.c              |  93 +++++-
 drivers/gpu/drm/rcar-du/rcar_du_regs.h             |   5 +
 drivers/gpu/drm/rcar-du/rcar_lvds.c                | 318 +++++++++++----------
 include/drm/drm_of.h                               |  20 ++
 17 files changed, 856 insertions(+), 155 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/display/renesas,cmm.yaml
 create mode 100644 drivers/gpu/drm/rcar-du/rcar_cmm.c
 create mode 100644 drivers/gpu/drm/rcar-du/rcar_cmm.h

-- 
Regards,

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

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

* Re: [GIT PULL FOR v5.6] R-Car DU new features
  2019-12-18 15:17 [GIT PULL FOR v5.6] R-Car DU new features Laurent Pinchart
@ 2019-12-18 15:23 ` Daniel Vetter
  0 siblings, 0 replies; 2+ messages in thread
From: Daniel Vetter @ 2019-12-18 15:23 UTC (permalink / raw)
  To: Laurent Pinchart; +Cc: dri-devel

On Wed, Dec 18, 2019 at 05:17:10PM +0200, Laurent Pinchart wrote:
> Hi Dave and Daniel,
> 
> The following changes since commit d1eef1c619749b2a57e514a3fa67d9a516ffa919:
> 
>   Linux 5.5-rc2 (2019-12-15 15:16:08 -0800)
> 
> are available in the Git repository at:
> 
>   git://linuxtv.org/pinchartl/media.git tags/du-next-20191218
> 
> for you to fetch changes up to c267782c5f0efbd20c560101738e68bb30d4fad5:
> 
>   drm: rcar-du: Add r8a77980 support (2019-12-18 02:40:29 +0200)
> 
> ----------------------------------------------------------------
> R-Car Display Unit changes:
> 
> - Color Management Module support
> - LVDS encoder dual-link support enhancements
> - R8A77980 support

Thanks for respinning, applied to drm-next.
-Daniel

> 
> ----------------------------------------------------------------
> Fabrizio Castro (4):
>       drm: of: Add drm_of_lvds_get_dual_link_pixel_order
>       drm: rcar-du: lvds: Improve identification of panels
>       drm: rcar-du: lvds: Get dual link configuration from DT
>       drm: rcar-du: lvds: Allow for even and odd pixels swap
> 
> Geert Uytterhoeven (2):
>       dt-bindings: display: renesas: du: Add vendor prefix to vsps property
>       drm: rcar-du: Recognize "renesas,vsps" in addition to "vsps"
> 
> Jacopo Mondi (6):
>       dt-bindings: display: renesas,cmm: Add R-Car CMM documentation
>       dt-bindings: display: renesas,du: Document cmms property
>       drm: rcar-du: Add support for CMM
>       drm: rcar-du: kms: Initialize CMM instances
>       drm: rcar-du: crtc: Control CMM operations
>       drm: rcar-du: crtc: Register GAMMA_LUT properties
> 
> Kieran Bingham (1):
>       drm: rcar-du: Add r8a77980 support
> 
> Laurent Pinchart (1):
>       drm: rcar-du: lvds: Get mode from state
> 
> (with all patches properly signed this time)
> 
>  .../devicetree/bindings/display/renesas,cmm.yaml   |  67 +++++
>  .../devicetree/bindings/display/renesas,du.txt     |  15 +-
>  drivers/gpu/drm/drm_of.c                           | 116 ++++++++
>  drivers/gpu/drm/rcar-du/Kconfig                    |   8 +
>  drivers/gpu/drm/rcar-du/Makefile                   |   1 +
>  drivers/gpu/drm/rcar-du/rcar_cmm.c                 | 217 ++++++++++++++
>  drivers/gpu/drm/rcar-du/rcar_cmm.h                 |  58 ++++
>  drivers/gpu/drm/rcar-du/rcar_du_crtc.c             |  71 +++++
>  drivers/gpu/drm/rcar-du/rcar_du_crtc.h             |   2 +
>  drivers/gpu/drm/rcar-du/rcar_du_drv.c              |   6 +-
>  drivers/gpu/drm/rcar-du/rcar_du_drv.h              |   2 +
>  drivers/gpu/drm/rcar-du/rcar_du_group.c            |  10 +
>  drivers/gpu/drm/rcar-du/rcar_du_group.h            |   2 +
>  drivers/gpu/drm/rcar-du/rcar_du_kms.c              |  93 +++++-
>  drivers/gpu/drm/rcar-du/rcar_du_regs.h             |   5 +
>  drivers/gpu/drm/rcar-du/rcar_lvds.c                | 318 +++++++++++----------
>  include/drm/drm_of.h                               |  20 ++
>  17 files changed, 856 insertions(+), 155 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/display/renesas,cmm.yaml
>  create mode 100644 drivers/gpu/drm/rcar-du/rcar_cmm.c
>  create mode 100644 drivers/gpu/drm/rcar-du/rcar_cmm.h
> 
> -- 
> Regards,
> 
> Laurent Pinchart

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2019-12-18 15:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-18 15:17 [GIT PULL FOR v5.6] R-Car DU new features Laurent Pinchart
2019-12-18 15:23 ` Daniel Vetter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.