All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefan Wahren <stefan.wahren@i2se.com>
To: Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Shawn Guo <shawnguo@kernel.org>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Fabio Estevam <festevam@gmail.com>
Cc: linux-imx@nxp.com, Marek Vasut <marex@denx.de>,
	Alexander Stein <alexander.stein@ew.tq-group.com>,
	linux-crypto@vger.kernel.org, linux-pm@vger.kernel.org,
	devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	Stefan Wahren <stefan.wahren@i2se.com>
Subject: [PATCH 4/6] ARM: dts: imx6ul: Fix second GPT compatible
Date: Sun,  5 Mar 2023 23:58:58 +0100	[thread overview]
Message-ID: <20230305225901.7119-5-stefan.wahren@i2se.com> (raw)
In-Reply-To: <20230305225901.7119-1-stefan.wahren@i2se.com>

According to the imxgpt DT schema all i.MX6 GPT IP is
derived from imx6dl. So fix the imx6ul DTS accordingly
and avoid dtbs_check warnings.

Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
---
 arch/arm/boot/dts/imx6ul.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/imx6ul.dtsi b/arch/arm/boot/dts/imx6ul.dtsi
index f0a9139748b8..65b2c6c131b3 100644
--- a/arch/arm/boot/dts/imx6ul.dtsi
+++ b/arch/arm/boot/dts/imx6ul.dtsi
@@ -448,7 +448,7 @@ can2: can@2094000 {
 			};
 
 			gpt1: timer@2098000 {
-				compatible = "fsl,imx6ul-gpt", "fsl,imx6sx-gpt";
+				compatible = "fsl,imx6ul-gpt", "fsl,imx6dl-gpt";
 				reg = <0x02098000 0x4000>;
 				interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
 				clocks = <&clks IMX6UL_CLK_GPT1_BUS>,
@@ -734,7 +734,7 @@ gpr: iomuxc-gpr@20e4000 {
 			};
 
 			gpt2: timer@20e8000 {
-				compatible = "fsl,imx6ul-gpt", "fsl,imx6sx-gpt";
+				compatible = "fsl,imx6ul-gpt", "fsl,imx6dl-gpt";
 				reg = <0x020e8000 0x4000>;
 				interrupts = <GIC_SPI 109 IRQ_TYPE_LEVEL_HIGH>;
 				clocks = <&clks IMX6UL_CLK_GPT2_BUS>,
-- 
2.34.1


WARNING: multiple messages have this Message-ID (diff)
From: Stefan Wahren <stefan.wahren@i2se.com>
To: Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Shawn Guo <shawnguo@kernel.org>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Fabio Estevam <festevam@gmail.com>
Cc: linux-imx@nxp.com, Marek Vasut <marex@denx.de>,
	Alexander Stein <alexander.stein@ew.tq-group.com>,
	linux-crypto@vger.kernel.org, linux-pm@vger.kernel.org,
	devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	Stefan Wahren <stefan.wahren@i2se.com>
Subject: [PATCH 4/6] ARM: dts: imx6ul: Fix second GPT compatible
Date: Sun,  5 Mar 2023 23:58:58 +0100	[thread overview]
Message-ID: <20230305225901.7119-5-stefan.wahren@i2se.com> (raw)
In-Reply-To: <20230305225901.7119-1-stefan.wahren@i2se.com>

According to the imxgpt DT schema all i.MX6 GPT IP is
derived from imx6dl. So fix the imx6ul DTS accordingly
and avoid dtbs_check warnings.

Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
---
 arch/arm/boot/dts/imx6ul.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/imx6ul.dtsi b/arch/arm/boot/dts/imx6ul.dtsi
index f0a9139748b8..65b2c6c131b3 100644
--- a/arch/arm/boot/dts/imx6ul.dtsi
+++ b/arch/arm/boot/dts/imx6ul.dtsi
@@ -448,7 +448,7 @@ can2: can@2094000 {
 			};
 
 			gpt1: timer@2098000 {
-				compatible = "fsl,imx6ul-gpt", "fsl,imx6sx-gpt";
+				compatible = "fsl,imx6ul-gpt", "fsl,imx6dl-gpt";
 				reg = <0x02098000 0x4000>;
 				interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
 				clocks = <&clks IMX6UL_CLK_GPT1_BUS>,
@@ -734,7 +734,7 @@ gpr: iomuxc-gpr@20e4000 {
 			};
 
 			gpt2: timer@20e8000 {
-				compatible = "fsl,imx6ul-gpt", "fsl,imx6sx-gpt";
+				compatible = "fsl,imx6ul-gpt", "fsl,imx6dl-gpt";
 				reg = <0x020e8000 0x4000>;
 				interrupts = <GIC_SPI 109 IRQ_TYPE_LEVEL_HIGH>;
 				clocks = <&clks IMX6UL_CLK_GPT2_BUS>,
-- 
2.34.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2023-03-05 23:00 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-05 22:58 [PATCH 0/6] ARM: dts: imx6ull: Fix dtbs_check warnings Stefan Wahren
2023-03-05 22:58 ` Stefan Wahren
2023-03-05 22:58 ` [PATCH 1/6] dt-bindings: crypto: fsl-dcp: add imx6sl and imx6ull compatible Stefan Wahren
2023-03-05 22:58   ` Stefan Wahren
2023-03-06  6:36   ` Krzysztof Kozlowski
2023-03-06  6:36     ` Krzysztof Kozlowski
2023-03-05 22:58 ` [PATCH 2/6] dt-bindings: imx-thermal: add imx6sll and imx6ul compatible Stefan Wahren
2023-03-05 22:58   ` Stefan Wahren
2023-03-06  6:37   ` Krzysztof Kozlowski
2023-03-06  6:37     ` Krzysztof Kozlowski
2023-03-05 22:58 ` [PATCH 3/6] dt-bindings: imxgpt: add " Stefan Wahren
2023-03-05 22:58   ` Stefan Wahren
2023-03-06  6:39   ` Krzysztof Kozlowski
2023-03-06  6:39     ` Krzysztof Kozlowski
2023-03-05 22:58 ` Stefan Wahren [this message]
2023-03-05 22:58   ` [PATCH 4/6] ARM: dts: imx6ul: Fix second GPT compatible Stefan Wahren
2023-03-06  6:40   ` Krzysztof Kozlowski
2023-03-06  6:40     ` Krzysztof Kozlowski
2023-03-05 22:58 ` [PATCH 5/6] ARM: dts: imx: Adjust dma-apbh node name Stefan Wahren
2023-03-05 22:58   ` Stefan Wahren
2023-03-05 22:59 ` [PATCH 6/6] ARM: dts: imx6ul: Add clock and PGC node to GDC Stefan Wahren
2023-03-05 22:59   ` Stefan Wahren
2023-03-06  1:56   ` Fabio Estevam
2023-03-06  1:56     ` Fabio Estevam

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=20230305225901.7119-5-stefan.wahren@i2se.com \
    --to=stefan.wahren@i2se.com \
    --cc=alexander.stein@ew.tq-group.com \
    --cc=devicetree@vger.kernel.org \
    --cc=festevam@gmail.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-pm@vger.kernel.org \
    --cc=marex@denx.de \
    --cc=robh+dt@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.