1
0
Fork 0

LF-18-2 arm64: dts: ls1046ardb: Update qspi node dts properties

Use compatibles as "jedec,spi-nor" to probe flash without displaying
warning: found s25fs512s, expected m25p80.
Remove "fsl,qspi-has-second-chip" as new driver doesn't use it anymore.
Update rx and tx width to 1.

Signed-off-by: Kuldeep Singh <kuldeep.singh@nxp.com>
(cherry picked from commit 538bebe00be17f49d6f4c5b5b75be67ba4bf6ed4)
5.4-rM2-2.2.x-imx-squashed
Kuldeep Singh 2020-01-03 14:49:07 +05:30 committed by Jason Liu
parent 61f6db3cb3
commit d72fc501f7
1 changed files with 8 additions and 9 deletions

View File

@ -105,25 +105,24 @@
&qspi {
status = "okay";
fsl,qspi-has-second-chip;
qflash0: flash@0 {
compatible = "spansion,m25p80";
s25fs512s0: flash@0 {
compatible = "jedec,spi-nor";
#address-cells = <1>;
#size-cells = <1>;
spi-max-frequency = <50000000>;
spi-rx-bus-width = <4>;
spi-tx-bus-width = <4>;
spi-rx-bus-width = <1>;
spi-tx-bus-width = <1>;
reg = <0>;
};
qflash1: flash@1 {
compatible = "spansion,m25p80";
s25fs512s: flash@1 {
compatible = "jedec,spi-nor";
#address-cells = <1>;
#size-cells = <1>;
spi-max-frequency = <50000000>;
spi-rx-bus-width = <4>;
spi-tx-bus-width = <4>;
spi-rx-bus-width = <1>;
spi-tx-bus-width = <1>;
reg = <1>;
};
};