public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Alexander Stein <alexander.stein@ew.tq-group.com>
To: Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Shawn Guo <shawnguo@kernel.org>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Pengutronix Kernel Team <kernel@pengutronix.de>,
	Fabio Estevam <festevam@gmail.com>,
	Dong Aisheng <aisheng.dong@nxp.com>,
	linux-arm-kernel@lists.infradead.org
Cc: devicetree@vger.kernel.org, imx@lists.linux.dev,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, Frank Li <Frank.Li@nxp.com>,
	Frank Li <Frank.Li@nxp.com>
Subject: Re: [PATCH v2 1/9] arm64: dts: imx8: add basic lvds and lvds2 subsystem
Date: Tue, 11 Jun 2024 12:05:35 +0200	[thread overview]
Message-ID: <5792284.DvuYhMxLoT@steina-w> (raw)
In-Reply-To: <20240610-imx8qm-dts-usb-v2-1-788417116fb1@nxp.com>

Hi Frank,

Am Montag, 10. Juni 2024, 22:46:18 CEST schrieb Frank Li:
> Add basic lvds and lvds2 subsystem for imx8qm an imx8qxp.
> 
> Signed-off-by: Frank Li <Frank.Li@nxp.com>
> ---
>  arch/arm64/boot/dts/freescale/imx8-ss-lvds0.dtsi |  63 +++++++++++++
>  arch/arm64/boot/dts/freescale/imx8-ss-lvds1.dtsi | 114 +++++++++++++++++++++++
>  2 files changed, 177 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/freescale/imx8-ss-lvds0.dtsi b/arch/arm64/boot/dts/freescale/imx8-ss-lvds0.dtsi
> new file mode 100644
> index 0000000000000..55fd60446ad21
> --- /dev/null
> +++ b/arch/arm64/boot/dts/freescale/imx8-ss-lvds0.dtsi
> @@ -0,0 +1,63 @@
> +// SPDX-License-Identifier: GPL-2.0-only and MIT
> +
> +/*
> + * Copyright 2024 NXP
> + */
> +
> +lvds0_subsys: bus@56240000 {
> +	compatible = "simple-bus";
> +	#address-cells = <1>;
> +	#size-cells = <1>;
> +	ranges = <0x56240000 0x0 0x56240000 0x10000>;
> +
> +	qm_lvds0_lis_lpcg: qxp_mipi1_lis_lpcg: clock-controller@56243000 {
> +		compatible = "fsl,imx8qxp-lpcg";
> +		reg = <0x56243000 0x4>;
> +		#clock-cells = <1>;
> +		clock-output-names = "mipi1_lis_lpcg_ipg_clk";
> +		power-domains = <&pd IMX_SC_R_MIPI_1>;
> +	};
> +
> +	qm_lvds0_pwm_lpcg: qxp_mipi1_pwm_lpcg: clock-controller@5624300c {
> +		compatible = "fsl,imx8qxp-lpcg";
> +		reg = <0x5624300c 0x4>;
> +		#clock-cells = <1>;
> +		clock-output-names = "mipi1_pwm_lpcg_clk",
> +				     "mipi1_pwm_lpcg_ipg_clk",
> +				     "mipi1_pwm_lpcg_32k_clk";
> +		power-domains = <&pd IMX_SC_R_MIPI_1_PWM_0>;
> +	};
> +
> +	qm_lvds0_i2c0_lpcg: qxp_mipi1_i2c0_lpcg: clock-controller@56243010 {
> +		compatible = "fsl,imx8qxp-lpcg";
> +		reg = <0x56243010 0x4>;
> +		#clock-cells = <1>;
> +		clock-output-names = "mipi1_i2c0_lpcg_clk",
> +				     "mipi1_i2c0_lpcg_ipg_clk";
> +		power-domains = <&pd IMX_SC_R_MIPI_1_I2C_0>;
> +	};
> +
> +	qm_pwm_lvds0: qxp_pwm_mipi_lvds1: pwm@56244000 {
> +		compatible = "fsl,imx8qxp-pwm", "fsl,imx27-pwm";
> +		reg = <0x56244000 0x1000>;
> +		clock-names = "ipg", "per";
> +		assigned-clocks = <&clk IMX_SC_R_MIPI_1_I2C_0 IMX_SC_PM_CLK_PER>;

Is IMX_SC_R_MIPI_1_I2C_0 actually correct? I would have assumed
it's IMX_SC_R_MIPI_1_PWM_0.

> +		assigned-clock-rates = <24000000>;
> +		#pwm-cells = <3>;
> +		power-domains = <&pd IMX_SC_R_MIPI_1_PWM_0>;
> +		status = "disabled";
> +	};
> +
> +	qm_i2c0_lvds0: qxp_i2c0_mipi_lvds1: i2c@56246000 {
> +		compatible = "fsl,imx8qxp-lpi2c", "fsl,imx7ulp-lpi2c";
> +		reg = <0x56246000 0x1000>;
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +		interrupts = <8>;
> +		clock-names = "per", "ipg";
> +		assigned-clocks = <&clk IMX_SC_R_MIPI_1_I2C_0 IMX_SC_PM_CLK_PER>;
> +		assigned-clock-rates = <24000000>;
> +		power-domains = <&pd IMX_SC_R_MIPI_1_I2C_0>;
> +		status = "disabled";
> +	};
> +};
> diff --git a/arch/arm64/boot/dts/freescale/imx8-ss-lvds1.dtsi b/arch/arm64/boot/dts/freescale/imx8-ss-lvds1.dtsi
> new file mode 100644
> index 0000000000000..12ae4f48e1e1c
> --- /dev/null
> +++ b/arch/arm64/boot/dts/freescale/imx8-ss-lvds1.dtsi

This is only for imx8qm, no?

It maybe makes sense to rename this file to imx8qm-ss-lvds1.dtsi

Best regards,
Alexander

> @@ -0,0 +1,114 @@
> +// SPDX-License-Identifier: GPL-2.0-only and MIT
> +
> +/*
> + * Copyright 2024 NXP
> + */
> +
> +lvds1_subsys: bus@57240000 {
> +	compatible = "simple-bus";
> +	interrupt-parent = <&irqsteer_lvds1>;
> +	#address-cells = <1>;
> +	#size-cells = <1>;
> +	ranges = <0x57240000 0x0 0x57240000 0x10000>;
> +
> +	irqsteer_lvds1: interrupt-controller@57240000 {
> +		compatible = "fsl,imx8qm-irqsteer", "fsl,imx-irqsteer";
> +		reg = <0x57240000 0x1000>;
> +		interrupts = <GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH>;
> +		interrupt-controller;
> +		interrupt-parent = <&gic>;
> +		#interrupt-cells = <1>;
> +		clocks = <&lvds1_lis_lpcg IMX_LPCG_CLK_4>;
> +		clock-names = "ipg";
> +		power-domains = <&pd IMX_SC_R_LVDS_1>;
> +		fsl,channel = <0>;
> +		fsl,num-irqs = <32>;
> +	};
> +
> +	lvds1_lis_lpcg: clock-controller@57243000 {
> +		compatible = "fsl,imx8qxp-lpcg";
> +		reg = <0x57243000 0x4>;
> +		#clock-cells = <1>;
> +		clocks = <&lvds_ipg_clk>;
> +		clock-indices = <IMX_LPCG_CLK_4>;
> +		clock-output-names = "lvds1_lis_lpcg_ipg_clk";
> +		power-domains = <&pd IMX_SC_R_LVDS_1>;
> +	};
> +
> +	lvds1_pwm_lpcg: clock-controller@5724300c {
> +		compatible = "fsl,imx8qxp-lpcg";
> +		reg = <0x5724300c 0x4>;
> +		#clock-cells = <1>;
> +		clocks = <&clk IMX_SC_R_LVDS_1_PWM_0 IMX_SC_PM_CLK_PER>,
> +			 <&lvds_ipg_clk>;
> +		clock-indices = <IMX_LPCG_CLK_0>, <IMX_LPCG_CLK_4>;
> +		clock-output-names = "lvds1_pwm_lpcg_clk",
> +				     "lvds1_pwm_lpcg_ipg_clk";
> +		power-domains = <&pd IMX_SC_R_LVDS_1_PWM_0>;
> +	};
> +
> +	lvds1_i2c0_lpcg: clock-controller@57243010 {
> +		compatible = "fsl,imx8qxp-lpcg";
> +		reg = <0x57243010 0x4>;
> +		#clock-cells = <1>;
> +		clocks = <&clk IMX_SC_R_LVDS_1_I2C_0 IMX_SC_PM_CLK_PER>,
> +			 <&lvds_ipg_clk>;
> +		clock-indices = <IMX_LPCG_CLK_0>, <IMX_LPCG_CLK_4>;
> +		clock-output-names = "lvds1_i2c0_lpcg_clk",
> +				     "lvds1_i2c0_lpcg_ipg_clk";
> +		power-domains = <&pd IMX_SC_R_LVDS_1_I2C_0>;
> +	};
> +
> +	lvds1_i2c1_lpcg: clock-controller@57243014 {
> +		compatible = "fsl,imx8qxp-lpcg";
> +		reg = <0x57243014 0x4>;
> +		#clock-cells = <1>;
> +		clocks = <&clk IMX_SC_R_LVDS_1_I2C_0 IMX_SC_PM_CLK_PER>,
> +			 <&lvds_ipg_clk>;
> +		clock-indices = <IMX_LPCG_CLK_0>, <IMX_LPCG_CLK_4>;
> +		clock-output-names = "lvds1_i2c1_lpcg_clk",
> +				     "lvds1_i2c1_lpcg_ipg_clk";
> +		power-domains = <&pd IMX_SC_R_LVDS_1_I2C_0>;
> +	};
> +
> +	pwm_lvds1: pwm@57244000 {
> +		compatible = "fsl,imx8qxp-pwm", "fsl,imx27-pwm";
> +		reg = <0x57244000 0x1000>;
> +		clocks = <&lvds1_pwm_lpcg IMX_LPCG_CLK_4>,
> +			 <&lvds1_pwm_lpcg IMX_LPCG_CLK_0>;
> +		clock-names = "ipg", "per";
> +		assigned-clocks = <&clk IMX_SC_R_LVDS_1_PWM_0 IMX_SC_PM_CLK_PER>;
> +		assigned-clock-rates = <24000000>;
> +		#pwm-cells = <3>;
> +		power-domains = <&pd IMX_SC_R_LVDS_1_PWM_0>;
> +		status = "disabled";
> +	};
> +
> +	i2c0_lvds1: i2c@57246000 {
> +		compatible = "fsl,imx8qm-lpi2c", "fsl,imx7ulp-lpi2c";
> +		reg = <0x57246000 0x1000>;
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +		interrupts = <8>;
> +		clocks = <&lvds1_i2c0_lpcg IMX_LPCG_CLK_0>,
> +			 <&lvds1_i2c0_lpcg IMX_LPCG_CLK_4>;
> +		clock-names = "per", "ipg";
> +		assigned-clocks = <&clk IMX_SC_R_LVDS_1_I2C_0 IMX_SC_PM_CLK_PER>;
> +		assigned-clock-rates = <24000000>;
> +		power-domains = <&pd IMX_SC_R_LVDS_1_I2C_0>;
> +		status = "disabled";
> +	};
> +
> +	i2c1_lvds1: i2c@57247000 {
> +		compatible = "fsl,imx8qm-lpi2c", "fsl,imx7ulp-lpi2c";
> +		reg = <0x57247000 0x1000>;
> +		interrupts = <9>;
> +		clocks = <&lvds1_i2c1_lpcg IMX_LPCG_CLK_0>,
> +			 <&lvds1_i2c1_lpcg IMX_LPCG_CLK_4>;
> +		clock-names = "per", "ipg";
> +		assigned-clocks = <&clk IMX_SC_R_LVDS_1_I2C_0 IMX_SC_PM_CLK_PER>;
> +		assigned-clock-rates = <24000000>;
> +		power-domains = <&pd IMX_SC_R_LVDS_1_I2C_0>;
> +		status = "disabled";
> +	};
> +};
> 
> 


-- 
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/



  reply	other threads:[~2024-06-11 10:05 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-10 20:46 [PATCH v2 0/9] arm64: dts: imx8qm: add subsystem lvds and mipi Frank Li
2024-06-10 20:46 ` [PATCH v2 1/9] arm64: dts: imx8: add basic lvds and lvds2 subsystem Frank Li
2024-06-11 10:05   ` Alexander Stein [this message]
2024-06-12 15:13     ` Frank Li
2024-06-10 20:46 ` [PATCH v2 2/9] arm64: dts: imx8qm: add lvds subsystem Frank Li
2024-06-10 20:46 ` [PATCH v2 3/9] arm64: dts: imx8: add basic mipi subsystem Frank Li
2024-06-11 11:14   ` Alexander Stein
2024-06-11 15:03     ` Frank Li
2024-06-10 20:46 ` [PATCH v2 4/9] arm64: dts: imx8qm: add " Frank Li
2024-06-10 20:46 ` [PATCH v2 5/9] arm64: dts: imx8qm-mek: add cm4 remote-proc and related memory region Frank Li
2024-06-10 20:46 ` [PATCH v2 6/9] arm64: dts: imx8qm-mek: add pwm and i2c in lvds subsystem Frank Li
2024-06-10 20:46 ` [PATCH v2 7/9] arm64: dts: imx8qm-mek: add i2c in mipi[0,1] subsystem Frank Li
2024-06-10 20:46 ` [PATCH v2 8/9] arm64: dts: imx8qm-mek: fix gpio number for reg_usdhc2_vmmc Frank Li
2024-06-10 20:46 ` [PATCH v2 9/9] arm64: dts: imx8qm-mek: add usb 3.0 and related type C nodes Frank Li
2024-06-10 21:08 ` [PATCH v2 0/9] arm64: dts: imx8qm: add subsystem lvds and mipi Frank Li

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=5792284.DvuYhMxLoT@steina-w \
    --to=alexander.stein@ew.tq-group.com \
    --cc=Frank.Li@nxp.com \
    --cc=aisheng.dong@nxp.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=festevam@gmail.com \
    --cc=imx@lists.linux.dev \
    --cc=kernel@pengutronix.de \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robh@kernel.org \
    --cc=s.hauer@pengutronix.de \
    --cc=shawnguo@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