From: Archit Taneja <architt@codeaurora.org>
To: Peter Senna Tschudin <peter.senna@collabora.com>
Cc: mark.rutland@arm.com, heiko@sntech.de, airlied@linux.ie,
daniel.vetter@ffwll.ch, peter.senna@gmail.com,
dri-devel@lists.freedesktop.org, tiwai@suse.com,
thierry.reding@gmail.com, laurent.pinchart@ideasonboard.com,
jslaby@suse.cz, martyn.welch@collabora.co.uk,
mchehab@osg.samsung.com, linux@armlinux.org.uk,
javier@dowhile0.org, treding@nvidia.com, linux@roeck-us.net,
martin.donnelly@ge.com, devicetree@vger.kernel.org,
p.zabel@pengutronix.de, pawel.moll@arm.com,
ijc+devicetree@hellion.org.uk, eballetbo@gmail.com,
rmk+kernel@armlinux.org.uk, robh+dt@kernel.org,
linux-arm-kernel@lists.infradead.org, gregkh@linuxfoundation.org,
linux-kernel@vger.kernel.org, kernel@pengutronix.de,
galak@codeaurora.org, enric.balletbo@collabora.com,
akpm@linux-foundation.org, shawnguo@kernel.org,
davem@davemloft.net
Subject: Re: [PATCH V3 0/4] megachips-stdpxxxx-ge-b850v3-fw
Date: Mon, 6 Mar 2017 15:27:16 +0530 [thread overview]
Message-ID: <3583de63-eda5-5d9c-741e-040db1ccee69@codeaurora.org> (raw)
In-Reply-To: <cover.1488555615.git.peter.senna@collabora.com>
Hi,
On 3/3/2017 9:27 PM, Peter Senna Tschudin wrote:
> The video processing pipeline on the second output on the GE B850v3:
>
> Host -> LVDS|--(STDP4028)--|DP -> DP|--(STDP2690)--|DP++ -> Video output
>
> Each bridge has a dedicated flash containing firmware for supporting the
> custom design. The result is that in this design neither the STDP4028
> nor the STDP2690 behave as the stock bridges would. The compatible
> strings include the suffix "-ge-b850v3-fw" to make it clear that the
> driver is for the bridges with the firmware which is specific for the GE
> B850v3.
>
> The driver is powerless to control the video processing pipeline, as the
> two bridges behaves as a single one. The driver is only needed for
> telling the host about EDID / HPD, and for giving the host powers to ack
> interrupts.
queued Patches 1,2 and 3 to drm-misc-next. Made stdp2690_get_edid static
in Patch #3 to fix a sparse warning.
Thanks,
Archit
>
> Changes from V2:
> - Added Acked-by: Rob Herring <robh@kernel.org> on patch 1/4
> - Fixed the driver to allow it to be compiled as a module
>
> Changes from V1:
> - Fix bindings documentation
> - Fix white space issues on the driver
> - Improved ge_b850v3_lvds_remove() to not rely on ge_b850v3_lvds_ptr->edid
>
> Changes from V7(was GE B850v3 LVDS/DP++ Bridge):
> - New devicetree binding with one node per bridge, and two ports per bridge
> - Two i2c_devices, one per bridge
> - Removed uneeded mutexes
> - Moved documentation to bindings/display/bridge
> - Included test for EDID extension blocks
> - Renamed bridge pointer to ge_b850v3_lvds_ptr
> - Removed the call to drm_helper_hpd_irq_event()
> - Removed assignments to bridge.driver_private
>
> Changes from V6:
> - Removed check for pixel clock as the bridge supports up to 330Mhz while the
> host is limited to 264 MHz in very specific conditions.
> - Added a second mutex to avoid concurrency issues while acking interrupts
> from threaded interrupt handlers.
> - Renamed the edid mutex to be more descriptive.
> - Added a .detach() function that disables the interrupts.
> - Adopted i2c_new_secondary_device() and updated the dts and documentation to
> match the new method.
> - Removed useless test to drm_bridge_add()
> - Did some refactoring around devm_request_threaded_irq()
> - Added a missing call to i2c_unregister_device() on the i2c_driver.remove()
> function.
>
> Changes from V5:
> - Change to MAINTAINERS in a separate patch
> - Reworked interrupt handler initialization
> - Removed useless calls to: drm_connector_register(),
> drm_helper_hpd_irq_event(), and drm_bridge_enable()
>
> Changes from V4:
> - Renamed the i2c_driver.name from "ge,b850v3-lvds-dp" to "b850v3-lvds-dp" to
> remove the comma from the driver name
>
> Changes from V3:
> - Removed the patch that was configuring the mapping between IPUs and external
> displays on the dts file
>
> Peter Senna Tschudin (4):
> dt-bindings: display: megachips-stdpxxxx-ge-b850v3-fw
> MAINTAINERS: Add entry for megachips-stdpxxxx-ge-b850v3-fw
> drm/bridge: Drivers for megachips-stdpxxxx-ge-b850v3-fw (LVDS-DP++)
> dts/imx6q-b850v3: Use megachips-stdpxxxx-ge-b850v3-fw bridges
> (LVDS-DP++)
>
> .../bridge/megachips-stdpxxxx-ge-b850v3-fw.txt | 94 +++++
> .../devicetree/bindings/vendor-prefixes.txt | 1 +
> MAINTAINERS | 8 +
> arch/arm/boot/dts/imx6q-b850v3.dts | 68 ++++
> drivers/gpu/drm/bridge/Kconfig | 11 +
> drivers/gpu/drm/bridge/Makefile | 1 +
> .../drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c | 428 +++++++++++++++++++++
> 7 files changed, 611 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
> create mode 100644 drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
>
--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation
next prev parent reply other threads:[~2017-03-06 9:57 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-03 15:57 [PATCH V3 0/4] megachips-stdpxxxx-ge-b850v3-fw Peter Senna Tschudin
2017-03-03 15:57 ` [PATCH V3 1/4] dt-bindings: display: megachips-stdpxxxx-ge-b850v3-fw Peter Senna Tschudin
2017-03-03 15:57 ` [PATCH V3 2/4] MAINTAINERS: Add entry for megachips-stdpxxxx-ge-b850v3-fw Peter Senna Tschudin
2017-03-03 15:57 ` [PATCH V3 3/4] drm/bridge: Drivers for megachips-stdpxxxx-ge-b850v3-fw (LVDS-DP++) Peter Senna Tschudin
2017-03-03 15:57 ` [PATCH V3 4/4] dts/imx6q-b850v3: Use megachips-stdpxxxx-ge-b850v3-fw bridges (LVDS-DP++) Peter Senna Tschudin
2017-03-08 10:10 ` Peter Senna Tschudin
2017-03-13 12:41 ` Shawn Guo
2017-03-06 9:57 ` Archit Taneja [this message]
2017-03-08 9:42 ` [PATCH V3 0/4] megachips-stdpxxxx-ge-b850v3-fw Peter Senna Tschudin
2017-03-08 9:47 ` Lucas Stach
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=3583de63-eda5-5d9c-741e-040db1ccee69@codeaurora.org \
--to=architt@codeaurora.org \
--cc=airlied@linux.ie \
--cc=akpm@linux-foundation.org \
--cc=daniel.vetter@ffwll.ch \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=eballetbo@gmail.com \
--cc=enric.balletbo@collabora.com \
--cc=galak@codeaurora.org \
--cc=gregkh@linuxfoundation.org \
--cc=heiko@sntech.de \
--cc=ijc+devicetree@hellion.org.uk \
--cc=javier@dowhile0.org \
--cc=jslaby@suse.cz \
--cc=kernel@pengutronix.de \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=linux@roeck-us.net \
--cc=mark.rutland@arm.com \
--cc=martin.donnelly@ge.com \
--cc=martyn.welch@collabora.co.uk \
--cc=mchehab@osg.samsung.com \
--cc=p.zabel@pengutronix.de \
--cc=pawel.moll@arm.com \
--cc=peter.senna@collabora.com \
--cc=peter.senna@gmail.com \
--cc=rmk+kernel@armlinux.org.uk \
--cc=robh+dt@kernel.org \
--cc=shawnguo@kernel.org \
--cc=thierry.reding@gmail.com \
--cc=tiwai@suse.com \
--cc=treding@nvidia.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).