dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Archit Taneja <architt@codeaurora.org>
To: airlied@linux.ie
Cc: daniel.vetter@ffwll.ch, dri-devel@lists.freedesktop.org,
	laurent.pinchart@ideasonboard.com
Subject: [GIT PULL] drm bridge drivers for 4.8 (updated)
Date: Tue, 19 Jul 2016 12:06:41 +0530	[thread overview]
Message-ID: <1468910201-15419-1-git-send-email-architt@codeaurora.org> (raw)
In-Reply-To: <1468744761-26889-1-git-send-email-architt@codeaurora.org>

Hi Dave,

This is an update to the previous drm bridge pull request. The ADV7511
driver's conversion from slave encoder to bridge meant that its users
(the rcar-du kms driver) should use the bridge interface too. This pull
request now also contains a commit that updates the rcar-du's hdmi encoder
interface from slave encoder to bridge.

The other updates are as before:

- Converts the ADV7511 i2c slave encoder driver to a bridge driver.
  Adds support for the ADV7533 bridge chip.
- Add bridge driver for TC358767 (DSI/DPI to eDP) encoder chips.

Thanks,
Archit

The following changes since commit 2ae995887830b335f9bdab3040018071da54bcdb:

  drm: Fix a typo in drm_ioctl.c (2016-06-30 12:04:44 +0300)

are available in the git repository at:

  https://github.com/boddob/linux.git drm_bridge_for_4.8

for you to fetch changes up to 1d926114d8f4e9f138617b95c6cd377667c36369:

  drm: rcar-du: Remove i2c slave encoder interface for hdmi encoder (2016-07-18 08:58:45 +0530)

----------------------------------------------------------------
Andrey Gusakov (1):
      drm/bridge: tc358767: Add DPI to eDP bridge driver

Archit Taneja (9):
      drm/i2c: adv7511: Convert to drm_bridge
      drm/i2c: adv7511: Move to bridge folder
      drm/bridge: adv7511: Fix mutex deadlock when interrupts are disabled
      drm/bridge: adv7533: Initial support for ADV7533
      drm/bridge: adv7533: Create a MIPI DSI device
      drm/bridge: adv7533: Use internal timing generator
      drm/bridge: adv7533: Change number of DSI lanes dynamically
      dt-bindings: drm/bridge: Update bindings for ADV7533
      drm: rcar-du: Remove i2c slave encoder interface for hdmi encoder

Philipp Zabel (1):
      dt-bindings: tc358767: add DT documentation

 .../bindings/display/bridge/adi,adv7511.txt        |   26 +-
 .../bindings/display/bridge/toshiba,tc358767.txt   |   53 +
 drivers/gpu/drm/bridge/Kconfig                     |   11 +
 drivers/gpu/drm/bridge/Makefile                    |    2 +
 drivers/gpu/drm/bridge/adv7511/Kconfig             |   15 +
 drivers/gpu/drm/bridge/adv7511/Makefile            |    3 +
 drivers/gpu/drm/{i2c => bridge/adv7511}/adv7511.h  |  103 ++
 .../adv7511.c => bridge/adv7511/adv7511_drv.c}     |  324 +++--
 drivers/gpu/drm/bridge/adv7511/adv7533.c           |  265 ++++
 drivers/gpu/drm/bridge/tc358767.c                  | 1413 ++++++++++++++++++++
 drivers/gpu/drm/i2c/Kconfig                        |    6 -
 drivers/gpu/drm/i2c/Makefile                       |    2 -
 drivers/gpu/drm/rcar-du/Makefile                   |    4 +-
 drivers/gpu/drm/rcar-du/rcar_du_encoder.c          |    3 +-
 drivers/gpu/drm/rcar-du/rcar_du_encoder.h          |    7 +-
 drivers/gpu/drm/rcar-du/rcar_du_hdmicon.c          |  116 --
 drivers/gpu/drm/rcar-du/rcar_du_hdmicon.h          |   31 -
 drivers/gpu/drm/rcar-du/rcar_du_hdmienc.c          |   68 +-
 18 files changed, 2120 insertions(+), 332 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/display/bridge/toshiba,tc358767.txt
 create mode 100644 drivers/gpu/drm/bridge/adv7511/Kconfig
 create mode 100644 drivers/gpu/drm/bridge/adv7511/Makefile
 rename drivers/gpu/drm/{i2c => bridge/adv7511}/adv7511.h (82%)
 rename drivers/gpu/drm/{i2c/adv7511.c => bridge/adv7511/adv7511_drv.c} (80%)
 create mode 100644 drivers/gpu/drm/bridge/adv7511/adv7533.c
 create mode 100644 drivers/gpu/drm/bridge/tc358767.c
 delete mode 100644 drivers/gpu/drm/rcar-du/rcar_du_hdmicon.c
 delete mode 100644 drivers/gpu/drm/rcar-du/rcar_du_hdmicon.h
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  parent reply	other threads:[~2016-07-19  6:36 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-17  8:39 [GIT PULL] drm bridge drivers for 4.8 Archit Taneja
2016-07-17  8:53 ` Laurent Pinchart
2016-07-18  3:36   ` Archit Taneja
2016-07-19  6:36 ` Archit Taneja [this message]
2016-08-03 20:06   ` [GIT PULL] drm bridge drivers for 4.8 (updated) Laurent Pinchart
2016-08-08 18:30     ` Archit Taneja

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=1468910201-15419-1-git-send-email-architt@codeaurora.org \
    --to=architt@codeaurora.org \
    --cc=airlied@linux.ie \
    --cc=daniel.vetter@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=laurent.pinchart@ideasonboard.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 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).