From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Alexander Stein <alexander.stein@ew.tq-group.com>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>,
Shawn Guo <shawnguo@kernel.org>,
Sascha Hauer <s.hauer@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>
Cc: Pengutronix Kernel Team <kernel@pengutronix.de>,
NXP Linux Team <linux-imx@nxp.com>,
devicetree@vger.kernel.org, linux@ew.tq-group.com,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/3] arm64: dts: imx8mm-tqma8mqml-mba8mx: Add DSI-LVDS bridge node
Date: Tue, 22 Aug 2023 08:16:02 +0200 [thread overview]
Message-ID: <33481b01-6c22-5045-d2e3-a85dd47241bd@linaro.org> (raw)
In-Reply-To: <20230821134026.385752-2-alexander.stein@ew.tq-group.com>
On 21/08/2023 15:40, Alexander Stein wrote:
> This adds the DSI-LVDS bridge including the regulator, backlight and
> an unspecified panel. It is expected to set the compatible when the
> display chain is enabled.
>
> Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> ---
> .../dts/freescale/imx8mm-tqma8mqml-mba8mx.dts | 29 ++++++++
> .../boot/dts/freescale/imx8mm-tqma8mqml.dtsi | 5 ++
> arch/arm64/boot/dts/freescale/mba8mx.dtsi | 68 +++++++++++++++++++
> 3 files changed, 102 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/freescale/imx8mm-tqma8mqml-mba8mx.dts b/arch/arm64/boot/dts/freescale/imx8mm-tqma8mqml-mba8mx.dts
> index 156d793a0c972..b2b825d990a62 100644
> --- a/arch/arm64/boot/dts/freescale/imx8mm-tqma8mqml-mba8mx.dts
> +++ b/arch/arm64/boot/dts/freescale/imx8mm-tqma8mqml-mba8mx.dts
> @@ -56,6 +56,19 @@ usb_dr_connector: endpoint {
> };
> };
>
> +&dsi_lvds_bridge {
> + ports {
> + port@0 {
> + reg = <0>;
> +
> + lvds_bridge_in: endpoint {
> + data-lanes = <1 2 3 4>;
> + remote-endpoint = <&mipi_dsi_out>;
> + };
> + };
> + };
> +};
> +
> &i2c1 {
> expander2: gpio@27 {
> compatible = "nxp,pca9555";
> @@ -72,6 +85,22 @@ expander2: gpio@27 {
> };
> };
>
> +&mipi_dsi {
> + samsung,burst-clock-frequency = <891000000>;
> + samsung,esc-clock-frequency = <20000000>;
> +
> + ports {
> + port@1 {
> + reg = <1>;
> +
> + mipi_dsi_out: endpoint {
> + data-lanes = <1 2 3 4>;
> + remote-endpoint = <&lvds_bridge_in>;
> + };
> + };
> + };
> +};
> +
> &pcie_phy {
> clocks = <&pcie0_refclk>;
> status = "okay";
> diff --git a/arch/arm64/boot/dts/freescale/imx8mm-tqma8mqml.dtsi b/arch/arm64/boot/dts/freescale/imx8mm-tqma8mqml.dtsi
> index b4466a26d838a..8c0c6e7159247 100644
> --- a/arch/arm64/boot/dts/freescale/imx8mm-tqma8mqml.dtsi
> +++ b/arch/arm64/boot/dts/freescale/imx8mm-tqma8mqml.dtsi
> @@ -230,6 +230,11 @@ eeprom0: eeprom@57 {
> };
> };
>
> +&mipi_dsi {
> + vddcore-supply = <&ldo4_reg>;
> + vddio-supply = <&ldo3_reg>;
> +};
> +
> &pcie_phy {
> fsl,refclk-pad-mode = <IMX8_PCIE_REFCLK_PAD_INPUT>;
> fsl,clkreq-unsupported;
> diff --git a/arch/arm64/boot/dts/freescale/mba8mx.dtsi b/arch/arm64/boot/dts/freescale/mba8mx.dtsi
> index 8a9fe5cdcc98a..269e604cb1574 100644
> --- a/arch/arm64/boot/dts/freescale/mba8mx.dtsi
> +++ b/arch/arm64/boot/dts/freescale/mba8mx.dtsi
> @@ -8,6 +8,16 @@
> /* TQ-Systems GmbH MBa8Mx baseboard */
>
> / {
> + backlight_lvds0: backlight0 {
Why 0?
> + compatible = "pwm-backlight";
> + pwms = <&pwm3 0 5000000 0>;
> + brightness-levels = <0 4 8 16 32 64 128 255>;
> + default-brightness-level = <7>;
> + power-supply = <®_12v>;
> + enable-gpios = <&expander2 2 GPIO_ACTIVE_HIGH>;
> + status = "disabled";
> + };
> +
> beeper {
> compatible = "pwm-beeper";
> pwms = <&pwm4 0 250000 0>;
> @@ -65,12 +75,45 @@ led2: led2 {
> };
> };
>
> + gpio_delays: gpio-delays {
> + compatible = "gpio-delay";
> + #gpio-cells = <3>;
> + gpio-controller;
> + gpios = <&expander0 6 GPIO_ACTIVE_HIGH>;
> + gpio-line-names = "LVDS_BRIDGE_EN_1V8";
> + };
> +
> + panel0: panel_lvds0 {
No underscores in node names. Why 0?
Best regards,
Krzysztof
next prev parent reply other threads:[~2023-08-22 6:16 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-21 13:40 [PATCH 0/3] TQMa8MxML LVDS support Alexander Stein
2023-08-21 13:40 ` [PATCH 1/3] arm64: dts: imx8mm-tqma8mqml-mba8mx: Add DSI-LVDS bridge node Alexander Stein
2023-08-22 6:16 ` Krzysztof Kozlowski [this message]
2023-08-21 13:40 ` [PATCH 2/3] arm64: dts: imx8mm-tqma8mqml-mba8mx: Add LVDS overlay Alexander Stein
2023-08-21 13:40 ` [PATCH 3/3] arm64: defconfig: Enable Samsung DSIM driver Alexander Stein
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=33481b01-6c22-5045-d2e3-a85dd47241bd@linaro.org \
--to=krzysztof.kozlowski@linaro.org \
--cc=alexander.stein@ew.tq-group.com \
--cc=catalin.marinas@arm.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=kernel@pengutronix.de \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-imx@nxp.com \
--cc=linux@ew.tq-group.com \
--cc=robh+dt@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
--cc=will@kernel.org \
/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).