diff options
author | Vignesh R <vigneshr@ti.com> | 2016-07-06 09:59:01 +0530 |
---|---|---|
committer | Jagan Teki <jteki@openedev.com> | 2016-07-09 20:16:31 +0530 |
commit | 2655f1625a97742e1de7db947811115e112d8fb5 (patch) | |
tree | 5b7bb9fb4421bdb78ccae78e7ee23a7194a6ad83 | |
parent | 376c533b8997a929f6c52313ad5f480c620b0d09 (diff) |
ARM: dts: k2e: 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/k2e-evm.dts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/dts/k2e-evm.dts b/arch/arm/dts/k2e-evm.dts index 50c83c21d9..e2c3fb4910 100644 --- a/arch/arm/dts/k2e-evm.dts +++ b/arch/arm/dts/k2e-evm.dts @@ -119,10 +119,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>; |