Hi Dave,
The following changes since commit 95306975e9dd38ba2775dd96cb29987ecc7d9360:
Merge tag 'drm/tegra/for-4.7-rc1' of git://anongit.freedesktop.org/tegra/linux into drm-next (2016-05-12 11:15:18 +1000)
are available in the git repository at:
git://anongit.freedesktop.org/tegra/linux tags/drm/panel/for-4.7-rc1
for you to fetch changes up to 227e4f4079e198695b9b5df344aa0e29676a5a29:
drm/panel: simple: Add support for TPK U.S.A. LLC Fusion 7" and 10.1" panels (2016-05-12 11:32:14 +0200)
This is the same pull request as I sent yesterday but rebased on your drm-next branch, and hence the two bus_flags patches are no longer included.
Thanks, Thierry
---------------------------------------------------------------- drm/panel: Changes for v4.7-rc1
This contains support for a bunch of new panels in the simple panel driver along with some cleanup and support for a new Analogix HDMI to DP bridge.
---------------------------------------------------------------- Bhuvanchandra DV (1): drm/panel: simple: Add support for TPK U.S.A. LLC Fusion 7" and 10.1" panels
Boris Brezillon (2): drm/panel: simple: Set appropriate mode type drm/panel: simple: Remove useless drm_mode_set_name()
Enric Balletbo i Serra (4): drm/dp: Add define to set 0.5% down-spread in MAX_DOWNSPREAD register of: Add vendor prefix for Analogix Semiconductor devicetree: Add ANX7814 SlimPort transmitter binding drm/bridge: Add Analogix anx78xx support
Eric Anholt (2): of: Add vendor prefix for On Tat Industrial Company. drm/panel: simple: Add the 7" DPI panel from Adafruit
Maxime Ripard (1): drm/panel: simple: Add timings for the Olimex LCD-OLinuXino-4.3TS
Riccardo Bortolato (1): drm/panel: simple: Add support for Innolux AT070TN92
.../bindings/display/panel/innolux,at070tn92.txt | 7 + .../display/panel/olimex,lcd-olinuxino-43-ts.txt | 7 + .../bindings/display/panel/ontat,yx700wv03.txt | 7 + .../bindings/display/panel/tpk,f07a-0102.txt | 8 + .../bindings/display/panel/tpk,f10a-0102.txt | 8 + .../devicetree/bindings/vendor-prefixes.txt | 3 + .../devicetree/bindings/video/bridge/anx7814.txt | 40 + drivers/gpu/drm/bridge/Kconfig | 10 + drivers/gpu/drm/bridge/Makefile | 1 + drivers/gpu/drm/bridge/analogix-anx78xx.c | 1514 ++++++++++++++++++++ drivers/gpu/drm/bridge/analogix-anx78xx.h | 719 ++++++++++ drivers/gpu/drm/panel/panel-simple.c | 151 +- include/drm/drm_dp_helper.h | 1 + 13 files changed, 2475 insertions(+), 1 deletion(-) create mode 100644 Documentation/devicetree/bindings/display/panel/innolux,at070tn92.txt create mode 100644 Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino-43-ts.txt create mode 100644 Documentation/devicetree/bindings/display/panel/ontat,yx700wv03.txt create mode 100644 Documentation/devicetree/bindings/display/panel/tpk,f07a-0102.txt create mode 100644 Documentation/devicetree/bindings/display/panel/tpk,f10a-0102.txt create mode 100644 Documentation/devicetree/bindings/video/bridge/anx7814.txt create mode 100644 drivers/gpu/drm/bridge/analogix-anx78xx.c create mode 100644 drivers/gpu/drm/bridge/analogix-anx78xx.h