]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
ARM: dts: vf610-zii-dev: Add QSPI node
authorAndrey Smirnov <andrew.smirnov@gmail.com>
Wed, 22 May 2019 07:20:52 +0000 (00:20 -0700)
committerShawn Guo <shawnguo@kernel.org>
Thu, 23 May 2019 12:56:34 +0000 (20:56 +0800)
Both rev C and rev B of the board come with two QSPI-NOR chips
attached to the SoC. Add DT code describing all of this.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Cc: Shawn Guo <shawnguo@kernel.org>
Cc: Chris Healy <cphealy@gmail.com>
Cc: Andrew Lunn <andrew@lunn.ch>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
arch/arm/boot/dts/vf610-zii-dev.dtsi

index 1f2e65ae2bd6cf88097718fdeac524a9e5e094c4..a1b4ccee2a10fbf5923cf86d1e52f9e7daf516d0 100644 (file)
        status = "okay";
 };
 
+&qspi0 {
+       pinctrl-names = "default";
+       pinctrl-0 = <&pinctrl_qspi0>;
+       status = "okay";
+
+       /*
+        * Attached MT25QL02 can go up to 90Mhz in DTR and 166 in STR
+        * modes, so, spi-max-frequency is limited to 90MHz
+        */
+       flash@0 {
+               compatible = "jedec,spi-nor";
+               #address-cells = <1>;
+               #size-cells = <1>;
+               spi-max-frequency = <90000000>;
+               spi-rx-bus-width = <4>;
+               reg = <0>;
+               m25p,fast-read;
+       };
+
+       flash@2 {
+               compatible = "jedec,spi-nor";
+               #address-cells = <1>;
+               #size-cells = <1>;
+               spi-max-frequency = <90000000>;
+               spi-rx-bus-width = <4>;
+               reg = <2>;
+               m25p,fast-read;
+       };
+};
+
 &uart0 {
        pinctrl-names = "default";
        pinctrl-0 = <&pinctrl_uart0>;
 
        pinctrl_qspi0: qspi0grp {
                fsl,pins = <
-                       VF610_PAD_PTD7__QSPI0_B_QSCK    0x31c3
-                       VF610_PAD_PTD8__QSPI0_B_CS0     0x31ff
-                       VF610_PAD_PTD9__QSPI0_B_DATA3   0x31c3
-                       VF610_PAD_PTD10__QSPI0_B_DATA2  0x31c3
-                       VF610_PAD_PTD11__QSPI0_B_DATA1  0x31c3
-                       VF610_PAD_PTD12__QSPI0_B_DATA0  0x31c3
+                       VF610_PAD_PTD0__QSPI0_A_QSCK    0x38c2
+                       VF610_PAD_PTD1__QSPI0_A_CS0     0x38c2
+                       VF610_PAD_PTD2__QSPI0_A_DATA3   0x38c3
+                       VF610_PAD_PTD3__QSPI0_A_DATA2   0x38c3
+                       VF610_PAD_PTD4__QSPI0_A_DATA1   0x38c3
+                       VF610_PAD_PTD5__QSPI0_A_DATA0   0x38c3
+                       VF610_PAD_PTD7__QSPI0_B_QSCK    0x38c2
+                       VF610_PAD_PTD8__QSPI0_B_CS0     0x38c2
+                       VF610_PAD_PTD9__QSPI0_B_DATA3   0x38c3
+                       VF610_PAD_PTD10__QSPI0_B_DATA2  0x38c3
+                       VF610_PAD_PTD11__QSPI0_B_DATA1  0x38c3
+                       VF610_PAD_PTD12__QSPI0_B_DATA0  0x38c3
                >;
        };