diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-13 23:42:11 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-10-22 10:36:52 -0600 |
commit | 0ae0cb7b50ab7836fb2a625a389d7a83698c2150 (patch) | |
tree | 59a26153bfd003ecc93c53883fcf5627e29c84d7 /test/dm/test.dts | |
parent | ebcab48a031fc96d5d6292564a35cf772d4e539c (diff) |
dm: sf: Add tests for SPI flash
Add a simple test for SPI that uses SPI flash. It operates by creating a
SPI flash file and using the 'sf test' command to test that all
operations work correctly.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com>
Diffstat (limited to 'test/dm/test.dts')
-rw-r--r-- | test/dm/test.dts | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/test/dm/test.dts b/test/dm/test.dts index 84895951550..1fba7925642 100644 --- a/test/dm/test.dts +++ b/test/dm/test.dts @@ -81,7 +81,7 @@ compatible = "google,another-fdt-test"; }; - base-gpios { + gpio_a: base-gpios { compatible = "sandbox,gpio"; gpio-bank-name = "a"; num-gpios = <20>; @@ -92,4 +92,19 @@ gpio-bank-name = "b"; num-gpios = <10>; }; + + spi@0 { + #address-cells = <1>; + #size-cells = <0>; + reg = <0>; + compatible = "sandbox,spi"; + cs-gpios = <0>, <&gpio_a 0>; + spi.bin@0 { + reg = <0>; + compatible = "spansion,m25p16", "spi-flash"; + spi-max-frequency = <40000000>; + sandbox,filename = "spi.bin"; + }; + }; + }; |