From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: David Airlie <airlied@linux.ie>
Cc: dri-devel@lists.freedesktop.org
Subject: [GIT PULL FOR v4.20] Renesas display drivers changes
Date: Sat, 15 Sep 2018 17:26:42 +0300 [thread overview]
Message-ID: <3273568.LdoAI77IYW@avalon> (raw)
Hi Dave,
The following changes since commit 2dc7bad71cd310dc94d1c9907909324dd2b0618f:
Merge tag 'drm-misc-next-2018-09-13' of git://anongit.freedesktop.org/drm/
drm-misc into drm-next (2018-09-14 09:43:16 +1000)
are available in the Git repository at:
git://linuxtv.org/pinchartl/media.git tags/du-next-20180914
for you to fetch changes up to da4d616182b12436e2b250c918e7ec4ab67c6b68:
drm: rcar-du: Remove packed VYUY support (2018-09-14 17:01:27 +0300)
----------------------------------------------------------------
The pull request mostly contains updates to the R-Car DU driver, notably
support for interlaced modes on Gen3 hardware, support for the LVDS output on
R8A77980, and a set of miscellaneous bug fixes. There are also two SPDX
conversion patches for the drm shmobile and panel-lvds drivers, as well as an
update to MAINTAINERS to add Kieran Bingham as a co-maintainer for the DU
driver.
Unlike all previous pull requests, I've used a signed tag to generate this
one. Please let me know if this causes any issue.
----------------------------------------------------------------
Jacopo Mondi (3):
drm: rcar-du: Improve non-DPLL clock selection
drm: rcar-du: Rename and document dpll_ch field
drm: rcar-du: Write ESCR and OTAR as CRTC registers
Kieran Bingham (6):
MAINTAINERS: rcar-du: Add co-maintainer
drm: rcar-du: Support interlaced video output through vsp1
drm: rcar-du: Refactor Feature and Quirk definitions
drm: rcar-du: Add interlaced feature flag
drm: rcar-du: Update Gen3 output limitations
drm: rcar-du: Remove packed VYUY support
Koji Matsuoka (1):
drm: rcar-du: Add support for missing pixel formats
Kuninori Morimoto (3):
drm: shmobile: convert to SPDX identifiers
drm: panel-lvds: convert to SPDX identifiers
drm: rcar-du: Convert to SPDX identifiers
Laurent Pinchart (3):
MAINTAINERS: Update tree location for the Renesas DRM drivers
drm: rcar-du: Rework clock configuration based on hardware limits
drm: rcar-du: Update framebuffer pitch and alignment limits for Gen3
Sergei Shtylyov (3):
dt-bindings: display: renesas: du: document R8A77980 bindings
dt-bindings: display: renesas: lvds: document R8A77980 bindings
drm: rcar-du: lvds: add R8A77980 support
.../devicetree/bindings/display/bridge/renesas,lvds.txt | 1 +
.../devicetree/bindings/display/renesas,du.txt | 2 +
MAINTAINERS | 3 +-
drivers/gpu/drm/panel/panel-lvds.c | 6 +-
drivers/gpu/drm/rcar-du/Kconfig | 1 +
drivers/gpu/drm/rcar-du/rcar_du_crtc.c | 181 ++++++++++-----
drivers/gpu/drm/rcar-du/rcar_du_crtc.h | 6 +-
drivers/gpu/drm/rcar-du/rcar_du_drv.c | 44 +++---
drivers/gpu/drm/rcar-du/rcar_du_drv.h | 18 ++-
drivers/gpu/drm/rcar-du/rcar_du_encoder.c | 6 +-
drivers/gpu/drm/rcar-du/rcar_du_encoder.h | 6 +-
drivers/gpu/drm/rcar-du/rcar_du_group.c | 6 +-
drivers/gpu/drm/rcar-du/rcar_du_group.h | 6 +-
drivers/gpu/drm/rcar-du/rcar_du_kms.c | 87 +++++++++---
drivers/gpu/drm/rcar-du/rcar_du_kms.h | 6 +-
drivers/gpu/drm/rcar-du/rcar_du_plane.c | 6 +-
drivers/gpu/drm/rcar-du/rcar_du_plane.h | 6 +-
drivers/gpu/drm/rcar-du/rcar_du_regs.h | 13 +-
drivers/gpu/drm/rcar-du/rcar_du_vsp.c | 9 +-
drivers/gpu/drm/rcar-du/rcar_du_vsp.h | 6 +-
drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c | 6 +-
drivers/gpu/drm/rcar-du/rcar_lvds.c | 1 +
drivers/gpu/drm/rcar-du/rcar_lvds_regs.h | 5 +-
drivers/gpu/drm/shmobile/Kconfig | 1 +
drivers/gpu/drm/shmobile/shmob_drm_backlight.c | 6 +-
drivers/gpu/drm/shmobile/shmob_drm_backlight.h | 6 +-
drivers/gpu/drm/shmobile/shmob_drm_crtc.c | 6 +-
drivers/gpu/drm/shmobile/shmob_drm_crtc.h | 6 +-
drivers/gpu/drm/shmobile/shmob_drm_drv.c | 6 +-
drivers/gpu/drm/shmobile/shmob_drm_drv.h | 6 +-
drivers/gpu/drm/shmobile/shmob_drm_kms.c | 6 +-
drivers/gpu/drm/shmobile/shmob_drm_kms.h | 6 +-
drivers/gpu/drm/shmobile/shmob_drm_plane.c | 6 +-
drivers/gpu/drm/shmobile/shmob_drm_plane.h | 6 +-
drivers/gpu/drm/shmobile/shmob_drm_regs.h | 6 +-
include/linux/platform_data/shmob_drm.h | 6 +-
36 files changed, 253 insertions(+), 251 deletions(-)
--
Regards,
Laurent Pinchart
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next reply other threads:[~2018-09-15 14:26 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-15 14:26 Laurent Pinchart [this message]
2018-09-15 14:31 ` [GIT PULL FOR v4.20] Renesas display drivers changes Laurent Pinchart
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3273568.LdoAI77IYW@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=airlied@linux.ie \
--cc=dri-devel@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.