diff options
author | John Crispin <john@openwrt.org> | 2015-08-17 05:58:57 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-08-17 05:58:57 +0000 |
commit | 102073ca17b91c079cd150be0feb30796721f6da (patch) | |
tree | 2bbf8869f15e4ac2151ab877750a9de21a75df11 /target/linux/ramips/dts/ATP-52B.dts | |
parent | f38d42b8e4340c654378c2a3dd505ec3c385849d (diff) | |
download | upstream-102073ca17b91c079cd150be0feb30796721f6da.tar.gz upstream-102073ca17b91c079cd150be0feb30796721f6da.tar.bz2 upstream-102073ca17b91c079cd150be0feb30796721f6da.zip |
ramips: fix Argus ATP-52B board and image names
The following patch:
* changes board name from "argus-atp52b" to "atp-52b"
* changes dts filename
* fixes LED names in dts file and base-files scripts
* removes manufacturer name from image filename
for Argus ATP-52B device.
Signed-off-by: Piotr Dymacz <pepe2k@gmail.com>
SVN-Revision: 46621
Diffstat (limited to 'target/linux/ramips/dts/ATP-52B.dts')
-rw-r--r-- | target/linux/ramips/dts/ATP-52B.dts | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/target/linux/ramips/dts/ATP-52B.dts b/target/linux/ramips/dts/ATP-52B.dts new file mode 100644 index 0000000000..c3f42bfea5 --- /dev/null +++ b/target/linux/ramips/dts/ATP-52B.dts @@ -0,0 +1,96 @@ +/dts-v1/; + +/include/ "rt3050.dtsi" + +/ { + compatible = "ATP-52B", "ralink,rt3052-soc"; + model = "Argus ATP-52B"; + + pinctrl { + state_default: pinctrl0 { + gpio { + ralink,group = "i2c", "jtag", "rgmii", "mdio", "uartf"; + ralink,function = "gpio"; + }; + }; + }; + + cfi@1f000000 { + compatible = "cfi-flash"; + reg = <0x1f000000 0x800000>; + bank-width = <2>; + device-width = <2>; + #address-cells = <1>; + #size-cells = <1>; + + partition@0 { + label = "bootloader"; + reg = <0x0 0x30000>; + read-only; + }; + + partition@30000 { + label = "config"; + reg = <0x30000 0x10000>; + }; + + factory: partition@40000 { + label = "factory"; + reg = <0x40000 0x10000>; + }; + + partition@50000 { + label = "firmware"; + reg = <0x50000 0x7a0000>; + }; + }; + + gpio-leds { + compatible = "gpio-leds"; + + run { + label = "atp-52b:green:run"; + gpios = <&gpio0 9 1>; + }; + + net { + label = "atp-52b:amber:net"; + gpios = <&gpio0 13 1>; + }; + }; + + gpio-keys-polled { + compatible = "gpio-keys-polled"; + #address-cells = <1>; + #size-cells = <0>; + poll-interval = <20>; + + wps { + label = "wps"; + gpios = <&gpio0 0 1>; + linux,code = <0x211>; + }; + + reset { + label = "reset"; + gpios = <&gpio0 10 1>; + linux,code = <0x198>; + }; + }; + + ethernet@10100000 { + mtd-mac-address = <&factory 0x4>; + }; + + esw@10110000 { + ralink,portmap = <0x3e>; + }; + + wmac@10180000 { + ralink,mtd-eeprom = <&factory 0>; + }; + + otg@101c0000 { + status = "okay"; + }; +}; |