]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
ARM: dts: imx6qdl-kontron-samx6i: fix SPI0 chip selects
authorMichael Walle <mwalle@kernel.org>
Mon, 17 Jun 2024 09:13:33 +0000 (11:13 +0200)
committerShawn Guo <shawnguo@kernel.org>
Thu, 27 Jun 2024 07:24:48 +0000 (15:24 +0800)
There is a comment in the imx6q variant dtsi claiming that these
modules will have one more chip select than the imx6dl variant.
This is wrong. Ordinary GPIOs are used for chip selects and both
variants of the module share the very same PCB and both have this
GPIO routed to the SPI0_CS1# pin of the SMARC connector.

Fix it by moving the third chip select description to the common dtsi.

Fixes: 2125212785c9 ("ARM: dts: imx6qdl-kontron-samx6i: add Kontron SMARC SoM Support")
Signed-off-by: Michael Walle <mwalle@kernel.org>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
arch/arm/boot/dts/nxp/imx/imx6q-kontron-samx6i.dtsi
arch/arm/boot/dts/nxp/imx/imx6qdl-kontron-samx6i.dtsi

index 4d6a0c3e8455f96ac62312e05da144458f39277e..ff062f4fd726eb6877ead38f752d119b2a4228e3 100644 (file)
@@ -5,31 +5,8 @@
 
 #include "imx6q.dtsi"
 #include "imx6qdl-kontron-samx6i.dtsi"
-#include <dt-bindings/gpio/gpio.h>
 
 / {
        model = "Kontron SMARC sAMX6i Quad/Dual";
        compatible = "kontron,imx6q-samx6i", "fsl,imx6q";
 };
-
-/* Quad/Dual SoMs have 3 chip-select signals */
-&ecspi4 {
-       cs-gpios = <&gpio3 24 GPIO_ACTIVE_LOW>,
-                  <&gpio3 29 GPIO_ACTIVE_LOW>,
-                  <&gpio3 25 GPIO_ACTIVE_LOW>;
-};
-
-&pinctrl_ecspi4 {
-       fsl,pins = <
-               MX6QDL_PAD_EIM_D21__ECSPI4_SCLK 0x100b1
-               MX6QDL_PAD_EIM_D28__ECSPI4_MOSI 0x100b1
-               MX6QDL_PAD_EIM_D22__ECSPI4_MISO 0x100b1
-
-               /* SPI4_IMX_CS2# - connected to internal flash */
-               MX6QDL_PAD_EIM_D24__GPIO3_IO24 0x1b0b0
-               /* SPI4_IMX_CS0# - connected to SMARC SPI0_CS0# */
-               MX6QDL_PAD_EIM_D29__GPIO3_IO29 0x1b0b0
-               /* SPI4_CS3# - connected to  SMARC SPI0_CS1# */
-               MX6QDL_PAD_EIM_D25__GPIO3_IO25 0x1b0b0
-       >;
-};
index 8c7f21f986e1ee680277e4c5e0ba320f2981c3f7..4a6ab7e7908aefe16808b905a6cdb57f20044161 100644 (file)
        pinctrl-names = "default";
        pinctrl-0 = <&pinctrl_ecspi4>;
        cs-gpios = <&gpio3 24 GPIO_ACTIVE_LOW>,
-                  <&gpio3 29 GPIO_ACTIVE_LOW>;
+                  <&gpio3 29 GPIO_ACTIVE_LOW>,
+                  <&gpio3 25 GPIO_ACTIVE_LOW>;
        status = "okay";
 
        /* default boot source: workaround #1 for errata ERR006282 */
                        MX6QDL_PAD_EIM_D24__GPIO3_IO24 0x1b0b0
                        /* SPI_IMX_CS0# - connected to SMARC SPI0_CS0# */
                        MX6QDL_PAD_EIM_D29__GPIO3_IO29 0x1b0b0
+                       /* SPI4_CS3# - connected to SMARC SPI0_CS1# */
+                       MX6QDL_PAD_EIM_D25__GPIO3_IO25 0x1b0b0
                >;
        };