diff options
author | John Crispin <blogic@openwrt.org> | 2013-04-12 06:27:37 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-05-08 01:19:10 +0200 |
commit | d99e19c799a6b48a5c6d733f5885862df5c77c70 (patch) | |
tree | 54a1a95ef0e0e18897d51ec8a182406073673de9 /arch/mips/ralink/dts/rt2880_eval.dts | |
parent | da5b4cfa541b5597ea9b6e8273289e4bf89141f4 (diff) | |
download | blackbird-op-linux-d99e19c799a6b48a5c6d733f5885862df5c77c70.tar.gz blackbird-op-linux-d99e19c799a6b48a5c6d733f5885862df5c77c70.zip |
DT: MIPS: ralink: add RT2880 dts files
Add a dtsi file for RT2880 SoC and a sample dts file.
Signed-off-by: John Crispin <blogic@openwrt.org>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Patchwork: http://patchwork.linux-mips.org/patch/5188/
Diffstat (limited to 'arch/mips/ralink/dts/rt2880_eval.dts')
-rw-r--r-- | arch/mips/ralink/dts/rt2880_eval.dts | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/arch/mips/ralink/dts/rt2880_eval.dts b/arch/mips/ralink/dts/rt2880_eval.dts new file mode 100644 index 000000000000..322d7002595b --- /dev/null +++ b/arch/mips/ralink/dts/rt2880_eval.dts @@ -0,0 +1,46 @@ +/dts-v1/; + +/include/ "rt2880.dtsi" + +/ { + compatible = "ralink,rt2880-eval-board", "ralink,rt2880-soc"; + model = "Ralink RT2880 evaluation board"; + + memory@0 { + reg = <0x8000000 0x2000000>; + }; + + chosen { + bootargs = "console=ttyS0,57600"; + }; + + cfi@1f000000 { + compatible = "cfi-flash"; + reg = <0x1f000000 0x400000>; + + bank-width = <2>; + device-width = <2>; + #address-cells = <1>; + #size-cells = <1>; + + partition@0 { + label = "uboot"; + reg = <0x0 0x30000>; + read-only; + }; + partition@30000 { + label = "uboot-env"; + reg = <0x30000 0x10000>; + read-only; + }; + partition@40000 { + label = "calibration"; + reg = <0x40000 0x10000>; + read-only; + }; + partition@50000 { + label = "linux"; + reg = <0x50000 0x3b0000>; + }; + }; +}; |