diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-04-08 11:12:03 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-04-08 11:12:03 +0000 |
commit | 82705b30b3e0a59a6481082bead460ce8b992226 (patch) | |
tree | 8544a2f9bcf293a38e2fc9420ba7ddfd28b5870b /target | |
parent | 909fabe574ae1995acf7bba1fdd6b9157e4a9e5b (diff) | |
download | upstream-82705b30b3e0a59a6481082bead460ce8b992226.tar.gz upstream-82705b30b3e0a59a6481082bead460ce8b992226.tar.bz2 upstream-82705b30b3e0a59a6481082bead460ce8b992226.zip |
ramips: OMNI-EMB-HPM.dts fixes
* add mdio-bus and phy nodes
* set phy-handle for the ethernet node
* define flash partiions
* cleanup flash node properties
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 36273
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ramips/dts/OMNI-EMB-HPM.dts | 42 |
1 files changed, 37 insertions, 5 deletions
diff --git a/target/linux/ramips/dts/OMNI-EMB-HPM.dts b/target/linux/ramips/dts/OMNI-EMB-HPM.dts index f00c3820b4..11cf0634e2 100644 --- a/target/linux/ramips/dts/OMNI-EMB-HPM.dts +++ b/target/linux/ramips/dts/OMNI-EMB-HPM.dts @@ -34,20 +34,52 @@ status = "okay"; m25p80@0 { + compatible = "macronix,mx25l12805d"; + spi-max-frequency = <25000000>; + reg = <0>; + #address-cells = <1>; #size-cells = <1>; - compatible = "mx25l6405d"; - reg = <0 0>; - linux,modalias = "m25p80"; - spi-max-frequency = <25000000>; + + partition@0 { + reg = <0x0 0x0030000>; + label = "u-boot"; + read-only; + }; + + partition@30000 { + reg = <0x00030000 0x00010000>; + label = "config"; + read-only; + }; + + partition@40000 { + reg = <0x00040000 0x00010000>; + label = "factory"; + read-only; + }; + + partition@50000 { + reg = <0x00050000 0x00fb0000>; + label = "firmware"; + }; }; }; }; ethernet@10100000 { status = "okay"; - ralink,phy-mask = <0x10>; + + phy-handle = <&phy0>; phy-mode = "rgmii"; + + mdio-bus { + status = "okay"; + + phy0: ethernet-phy@4 { + reg = <4>; + }; + }; }; wmac@10180000 { |