diff options
author | Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | 2012-08-15 21:07:34 +0400 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2012-09-21 21:07:24 +0400 |
commit | 80a8b54b9a0ba418f25d2014b1375f9f4876eb15 (patch) | |
tree | b146eafb037fbd407149e12ae60aa21eafd39e3b /arch/arm/boot/dts/dove-cm-a510.dts | |
parent | 81d2ef7c40eceb7189872ecea5964f2041118d4a (diff) | |
download | linux-80a8b54b9a0ba418f25d2014b1375f9f4876eb15.tar.xz |
ARM: dove: add device tree descriptors
This patch adds device tree decriptors for dove SoC and currently
supported boards.
Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/boot/dts/dove-cm-a510.dts')
-rw-r--r-- | arch/arm/boot/dts/dove-cm-a510.dts | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/dove-cm-a510.dts b/arch/arm/boot/dts/dove-cm-a510.dts new file mode 100644 index 000000000000..61a8062e56de --- /dev/null +++ b/arch/arm/boot/dts/dove-cm-a510.dts @@ -0,0 +1,38 @@ +/dts-v1/; + +/include/ "dove.dtsi" + +/ { + model = "Compulab CM-A510"; + compatible = "compulab,cm-a510", "marvell,dove"; + + memory { + device_type = "memory"; + reg = <0x00000000 0x40000000>; + }; + + chosen { + bootargs = "console=ttyS0,115200n8 earlyprintk"; + }; +}; + +&uart0 { status = "okay"; }; +&uart1 { status = "okay"; }; +&sdio0 { status = "okay"; }; +&sdio1 { status = "okay"; }; +&sata0 { status = "okay"; }; + +&spi0 { + status = "okay"; + + /* spi0.0: 4M Flash Winbond W25Q32BV */ + spi-flash@0 { + compatible = "st,w25q32"; + spi-max-frequency = <20000000>; + reg = <0>; + }; +}; + +&i2c0 { + status = "okay"; +}; |