From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932843AbcHIQmJ (ORCPT ); Tue, 9 Aug 2016 12:42:09 -0400 Received: from bhuna.collabora.co.uk ([46.235.227.227]:41275 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932295AbcHIQmE (ORCPT ); Tue, 9 Aug 2016 12:42:04 -0400 From: Peter Senna Tschudin To: airlied@linux.ie, akpm@linux-foundation.org, daniel.vetter@ffwll.ch, davem@davemloft.net, devicetree@vger.kernel.org, dri-devel@lists.freedesktop.org, enric.balletbo@collabora.com, eballetbo@gmail.com, galak@codeaurora.org, gregkh@linuxfoundation.org, heiko@sntech.de, ijc+devicetree@hellion.org.uk, javier@dowhile0.org, jslaby@suse.cz, kernel@pengutronix.de, linux-arm-kernel@lists.infradead.org, linux@armlinux.org.uk, linux-kernel@vger.kernel.org, linux@roeck-us.net, mark.rutland@arm.com, martin.donnelly@ge.com, martyn.welch@collabora.co.uk, mchehab@osg.samsung.com, pawel.moll@arm.com, peter.senna@collabora.com, peter.senna@gmail.com, p.zabel@pengutronix.de, thierry.reding@gmail.com, rmk+kernel@armlinux.org.uk, robh+dt@kernel.org, shawnguo@kernel.org, tiwai@suse.com, treding@nvidia.com, ykk@rock-chips.com Subject: [PATCH V5 0/4] Add driver for GE B850v3 LVDS/DP++ Bridge Date: Tue, 9 Aug 2016 18:41:38 +0200 Message-Id: X-Mailer: git-send-email 2.5.5 In-Reply-To: <1464626385-19253-1-git-send-email-peter.senna@collabora.com> References: <1464626385-19253-1-git-send-email-peter.senna@collabora.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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/4] Change the imx-ldb driver to allow attaching a bridge and not only a LVDS panel. [2/4] Devicetree documentation for the GE B850v3 LVDS/DP++ Bridge [3/4] Add the driver, make changes to MAINTAINERS, Kconfig and Makefile [4/4] Make the changes to the B850v3 dts file to enable the GE B850v3 LVDS/DP++ Bridge. Changes from V3: - Removed the patch that was configuring the mapping between IPUs and external displays on the dts file Peter Senna Tschudin (4): drm/imx-ldb: Add support to drm-bridge 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 | 37 ++ MAINTAINERS | 8 + arch/arm/boot/dts/imx6q-b850v3.dts | 30 ++ drivers/gpu/drm/bridge/Kconfig | 11 + drivers/gpu/drm/bridge/Makefile | 1 + drivers/gpu/drm/bridge/ge_b850v3_lvds_dp.c | 405 +++++++++++++++++++++ drivers/gpu/drm/imx/imx-ldb.c | 118 ++++-- 7 files changed, 570 insertions(+), 40 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