Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1418468
| From | Peter Senna Tschudin <peter.senna@collabora.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH V2 0/5] Add driver for GE B850v3 LVDS/DP++ Bridge |
| Date | 2016-06-09 18:30 +0200 |
| Message-ID | <rIb0e-lr-9@gated-at.bofh.it> (permalink) |
| References | <rEyy5-6IE-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
The series adds a driver that creates a drm_bridge and a drm_connector for the
LVDS to DP++ display bridge of the GE B850v3.
There are two physical bridges on the video signal pipeline: a STDP4028(LVDS to
DP) and a STDP2690(DP to DP++). The hardware and firmware made it complicated
for this binding to comprise two device tree nodes, as the design goal is to
configure both bridges based on the LVDS signal, which leave the driver
powerless to control the video processing pipeline. The two bridges behaves as
a single bridge, and the driver is only needed for telling the host about EDID /
HPD, and for giving the host powers to ack interrupts. The video signal
pipeline is as follows:
Host -> LVDS|--(STDP4028)--|DP -> DP|--(STDP2690)--|DP++ -> Video output
The patches from the series:
[1/5] Change the imx-ldb driver to allow attaching a bridge and not only a LVDS
panel.
[2/5] Configure the mapping between IPUs and external displays on the dts file
of the B850v3. Needed if connect two Full-HD monitors.
[3/5] Devicetree documentation for the GE B850v3 LVDS/DP++ Bridge
[4/5] Add the driver, make changes to MAINTAINERS, Kconfig and Makefile
[5/5] Make the changes to the B850v3 dts file to enable the GE B850v3
LVDS/DP++ Bridge.
Peter Senna Tschudin (5):
drm/imx-ldb: Add support to drm-bridge
dts/imx6q-b850v3: Configure IPU assignment order
Documentation/devicetree/bindings: b850v3_lvds_dp
drm/bridge: Add driver for GE B850v3 LVDS/DP++ Bridge
dts/imx6q-b850v3: Use GE B850v3 LVDS/DP++ Bridge
.../devicetree/bindings/ge/b850v3_lvds_dp.txt | 38 ++
MAINTAINERS | 8 +
arch/arm/boot/dts/imx6q-b850v3.dts | 36 ++
drivers/gpu/drm/bridge/Kconfig | 11 +
drivers/gpu/drm/bridge/Makefile | 1 +
drivers/gpu/drm/bridge/ge_b850v3_lvds_dp.c | 392 +++++++++++++++++++++
drivers/gpu/drm/imx/imx-ldb.c | 121 ++++---
7 files changed, 565 insertions(+), 42 deletions(-)
create mode 100644 Documentation/devicetree/bindings/ge/b850v3_lvds_dp.txt
create mode 100644 drivers/gpu/drm/bridge/ge_b850v3_lvds_dp.c
--
2.5.5
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH V2 0/5] Add driver for GE B850v3 LVDS/DP++ Bridge Peter Senna Tschudin <peter.senna@collabora.com> - 2016-06-09 18:30 +0200
[PATCH V2 2/5] dts/imx6q-b850v3: Configure IPU assignment order Peter Senna Tschudin <peter.senna@collabora.com> - 2016-06-09 18:30 +0200
[PATCH V2 3/5] Documentation/devicetree/bindings: b850v3_lvds_dp Peter Senna Tschudin <peter.senna@collabora.com> - 2016-06-09 18:30 +0200
Re: [PATCH V2 3/5] Documentation/devicetree/bindings: b850v3_lvds_dp Rob Herring <robh@kernel.org> - 2016-06-10 19:50 +0200
Re: [PATCH V2 3/5] Documentation/devicetree/bindings: b850v3_lvds_dp Javier Martinez Canillas <javier@dowhile0.org> - 2016-06-10 21:00 +0200
[PATCH V2 4/5] drm/bridge: Add driver for GE B850v3 LVDS/DP++ Bridge Peter Senna Tschudin <peter.senna@collabora.com> - 2016-06-09 18:30 +0200
Re: [PATCH V2 4/5] drm/bridge: Add driver for GE B850v3 LVDS/DP++ Bridge Enric Balletbo Serra <eballetbo@gmail.com> - 2016-06-10 09:40 +0200
Re: [PATCH V2 4/5] drm/bridge: Add driver for GE B850v3 LVDS/DP++ Bridge "Peter Senna Tschudin" <peter.senna@collabora.co.uk> - 2016-06-10 11:50 +0200
Re: [PATCH V2 4/5] drm/bridge: Add driver for GE B850v3 LVDS/DP++ Bridge Daniel Vetter <daniel@ffwll.ch> - 2016-06-10 16:20 +0200
[PATCH V2 5/5] dts/imx6q-b850v3: Use GE B850v3 LVDS/DP++ Bridge Peter Senna Tschudin <peter.senna@collabora.com> - 2016-06-09 18:30 +0200
[PATCH V2 1/5] drm/imx-ldb: Add support to drm-bridge Peter Senna Tschudin <peter.senna@collabora.com> - 2016-06-09 18:30 +0200
csiph-web