From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: dri-devel@lists.freedesktop.org
Cc: magnus.damm@gmail.com, Simon Horman <horms@verge.net.au>
Subject: [GIT PULL FOR v3.19] R-Car DU changes
Date: Fri, 07 Nov 2014 08:25:32 +0200 [thread overview]
Message-ID: <7694250.F2VLWp0a8H@avalon> (raw)
Hi Dave,
Here's a pull request that adds HDMI support to the R-Car DU driver, including
a new slave encoder driver for the adv7511.
The branch is based on a merge of drm-next and Simon's tags/renesas-dt-du-for-
v3.19 available at
git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git, for which a
pull request has been submitted for v3.19 to the ARM SoC maintainers.
I'm leaving now for two weeks of holidays and would like to avoid missing the
merge window. Simon, could you please confirm that tags/renesas-dt-du-for-
v3.19 is stable and ack this pull request (and possibly ping Dave on my behalf
;-)) ?
The following changes since commit 19de43d4dea8712b3574d72d3d8aa16cd17e7fed:
Merge tag 'tags/renesas-dt-du-for-v3.19' into drm/next/adv7511-base
(2014-11-07 08:06:16 +0200)
are available in the git repository at:
git://linuxtv.org/pinchartl/fbdev.git
for you to fetch changes up to cc47927ca851110d2c387a7d9fd7086112abb92e:
drm: Add adv7511 encoder driver (2014-11-07 08:19:06 +0200)
----------------------------------------------------------------
Lars-Peter Clausen (2):
drm: Decouple EDID parsing from I2C adapter
drm: Add adv7511 encoder driver
Laurent Pinchart (6):
drm: rcar-du: Remove platform data support
drm: rcar-du: Pass the encoder DT node to rcar_du_encoder_init()
drm: rcar-du: Replace direct DRM encoder access with cast macro
drm: rcar-du: Replace drm_encoder with drm_slave_encoder
drm: rcar-du: Add HDMI encoder and connector support
video: Add ADV751[13] DT bindings documentation
Documentation/devicetree/bindings/video/adi,adv7511.txt | 88 ++
drivers/gpu/drm/drm_edid.c | 27 +-
drivers/gpu/drm/i2c/Kconfig | 6 +
drivers/gpu/drm/i2c/Makefile | 2 +
drivers/gpu/drm/i2c/adv7511.c | 1010 ++++++++++++++
drivers/gpu/drm/i2c/adv7511.h | 289 +++++++
drivers/gpu/drm/rcar-du/Kconfig | 11 +-
drivers/gpu/drm/rcar-du/Makefile | 2 +
drivers/gpu/drm/rcar-du/rcar_du_crtc.h | 10 +-
drivers/gpu/drm/rcar-du/rcar_du_drv.c | 4 +-
drivers/gpu/drm/rcar-du/rcar_du_drv.h | 2 -
drivers/gpu/drm/rcar-du/rcar_du_encoder.c | 45 +-
drivers/gpu/drm/rcar-du/rcar_du_encoder.h | 23 +-
drivers/gpu/drm/rcar-du/rcar_du_hdmicon.c | 118 +++
drivers/gpu/drm/rcar-du/rcar_du_hdmicon.h | 31 +
drivers/gpu/drm/rcar-du/rcar_du_hdmienc.c | 151 ++++
drivers/gpu/drm/rcar-du/rcar_du_hdmienc.h | 35 +
drivers/gpu/drm/rcar-du/rcar_du_kms.c | 53 +-
drivers/gpu/drm/rcar-du/rcar_du_lvdscon.c | 31 +-
drivers/gpu/drm/rcar-du/rcar_du_lvdscon.h | 2 -
drivers/gpu/drm/rcar-du/rcar_du_lvdsenc.h | 1 -
drivers/gpu/drm/rcar-du/rcar_du_vgacon.c | 5 +-
include/drm/drm_edid.h | 5 +
include/linux/platform_data/rcar-du.h | 74 --
24 files changed, 1845 insertions(+), 180 deletions(-)
create mode 100644 Documentation/devicetree/bindings/video/adi,adv7511.txt
create mode 100644 drivers/gpu/drm/i2c/adv7511.c
create mode 100644 drivers/gpu/drm/i2c/adv7511.h
create mode 100644 drivers/gpu/drm/rcar-du/rcar_du_hdmicon.c
create mode 100644 drivers/gpu/drm/rcar-du/rcar_du_hdmicon.h
create mode 100644 drivers/gpu/drm/rcar-du/rcar_du_hdmienc.c
create mode 100644 drivers/gpu/drm/rcar-du/rcar_du_hdmienc.h
delete mode 100644 include/linux/platform_data/rcar-du.h
--
Regards,
Laurent Pinchart
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
next reply other threads:[~2014-11-07 6:25 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-07 6:25 Laurent Pinchart [this message]
2014-11-07 9:19 ` [GIT PULL FOR v3.19] R-Car DU changes Daniel Vetter
2014-11-24 9:46 ` Laurent Pinchart
2014-11-24 13:09 ` Daniel Vetter
2014-11-24 14:00 ` Laurent Pinchart
2014-11-24 14:18 ` Lars-Peter Clausen
2014-11-24 20:01 ` Dave Airlie
2014-11-24 20:29 ` Lars-Peter Clausen
2014-11-24 21:35 ` Rob Clark
2014-11-24 15:18 ` Daniel Vetter
2014-11-25 0:11 ` Simon Horman
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=7694250.F2VLWp0a8H@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=horms@verge.net.au \
--cc=magnus.damm@gmail.com \
/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.