diff options
author | Jonas Gorski <jonas.gorski@gmail.com> | 2017-02-07 14:24:31 +0100 |
---|---|---|
committer | Jonas Gorski <jonas.gorski@gmail.com> | 2017-06-04 11:33:44 +0200 |
commit | 474cde61234c1191e1caeff01a41c324eda4d28d (patch) | |
tree | 732c8c6b6f10dbe1d4ac45ee40a9013e6d548a1d /target/linux/brcm63xx/dts/bcm96328avng.dts | |
parent | 97b36aca09da7a1b214f4616a8549e99ff2d92aa (diff) | |
download | upstream-474cde61234c1191e1caeff01a41c324eda4d28d.tar.gz upstream-474cde61234c1191e1caeff01a41c324eda4d28d.tar.bz2 upstream-474cde61234c1191e1caeff01a41c324eda4d28d.zip |
brcm63xx: probe SPI flash through DT
Now that we support problem the SPI controllers through DT, we can also
probe flash through DT.
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
Diffstat (limited to 'target/linux/brcm63xx/dts/bcm96328avng.dts')
-rw-r--r-- | target/linux/brcm63xx/dts/bcm96328avng.dts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/dts/bcm96328avng.dts b/target/linux/brcm63xx/dts/bcm96328avng.dts index 4c8e319811..37f289b31e 100644 --- a/target/linux/brcm63xx/dts/bcm96328avng.dts +++ b/target/linux/brcm63xx/dts/bcm96328avng.dts @@ -42,3 +42,20 @@ }; }; }; + +&hsspi { + status = "ok"; + + flash@0 { + compatible = "jedec,spi-nor"; + spi-max-frequency = <16666667>; + spi-tx-bus-width = <2>; + spi-rx-bus-width = <2>; + reg = <0>; + + #address-cells = <1>; + #size-cells = <1>; + + linux,part-probe = "bcm63xxpart"; + }; +}; |