diff options
author | Vignesh R <vigneshr@ti.com> | 2016-07-06 09:58:59 +0530 |
---|---|---|
committer | Jagan Teki <jteki@openedev.com> | 2016-07-09 20:16:31 +0530 |
commit | 96368e6e389e6be64b9f4dfa654d5fdcf2d32653 (patch) | |
tree | d5705e255630f688c730a9bab2ce6b1de17eb2d8 | |
parent | e5fcf0372b4b59cc2b83da683177c5904edc4e93 (diff) | |
download | u-boot-imx-96368e6e389e6be64b9f4dfa654d5fdcf2d32653.zip u-boot-imx-96368e6e389e6be64b9f4dfa654d5fdcf2d32653.tar.gz u-boot-imx-96368e6e389e6be64b9f4dfa654d5fdcf2d32653.tar.bz2 |
ARM: dts: k2hk: Enable Davinci SPI controller
Now that davinci_spi driver has been converted to DM framework, enable
the same in DT. Also add "spi-flash" as compatible property to
n25q128a11 node as it is required for flash device to be probed in
U-Boot.
Signed-off-by: Vignesh R <vigneshr@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Jagan Teki <jteki@openedev.com>
-rw-r--r-- | arch/arm/dts/k2hk-evm.dts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/dts/k2hk-evm.dts b/arch/arm/dts/k2hk-evm.dts index 660ebf5..c5cad2c 100644 --- a/arch/arm/dts/k2hk-evm.dts +++ b/arch/arm/dts/k2hk-evm.dts @@ -147,10 +147,11 @@ }; &spi0 { + status = "okay"; nor_flash: n25q128a11@0 { #address-cells = <1>; #size-cells = <1>; - compatible = "Micron,n25q128a11"; + compatible = "Micron,n25q128a11", "spi-flash"; spi-max-frequency = <54000000>; m25p,fast-read; reg = <0>; |