diff options
author | Vignesh R <vigneshr@ti.com> | 2016-10-13 15:53:17 +0530 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2016-12-15 16:38:30 +0100 |
commit | f06e1588fbd18a03ad0ed0c1b3f82ab4e9d9a6c9 (patch) | |
tree | dfdfcd576971dbb2621a05f41ef5212e068c18f5 /arch/arm | |
parent | 53e8ca22538c2cec691fe74098684a359302688c (diff) | |
download | u-boot-f06e1588fbd18a03ad0ed0c1b3f82ab4e9d9a6c9.tar.gz u-boot-f06e1588fbd18a03ad0ed0c1b3f82ab4e9d9a6c9.tar.xz u-boot-f06e1588fbd18a03ad0ed0c1b3f82ab4e9d9a6c9.zip |
ARM: dts: am437x-idk: Fix QSPI compatible string
Unlike Linux kernel, U-Boot depends on "spi-flash" compatible to probe
m25p80 spi-nor devices. Hence, add "spi-flash" compatible string to
m25p80 node. Without this patch, flash device DT data is not parsed and
QSPI operates in unsupported mode leading to data corruption.
Signed-off-by: Vignesh R <vigneshr@ti.com>
Reviewed-by: Jagan Teki <jagan@openedev.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/dts/am437x-idk-evm.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/dts/am437x-idk-evm.dts b/arch/arm/dts/am437x-idk-evm.dts index 478f0a62cb..e454647165 100644 --- a/arch/arm/dts/am437x-idk-evm.dts +++ b/arch/arm/dts/am437x-idk-evm.dts @@ -341,7 +341,7 @@ spi-max-frequency = <48000000>; m25p80@0 { - compatible = "mx66l51235l"; + compatible = "mx66l51235l", "spi-flash"; spi-max-frequency = <48000000>; reg = <0>; spi-cpol; |