diff options
author | Chuanhong Guo <gch981213@gmail.com> | 2018-07-17 17:09:14 +0800 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-07-30 10:43:34 +0200 |
commit | b7a10772d1eec04e86f07c7d9718ab35f04fc6e2 (patch) | |
tree | d796e8e48f1484c1cccf8b09fd29c1d0048abf2d | |
parent | fc1f55ebf4ed5ae79414fd87d36e5f964a11fbf8 (diff) | |
download | upstream-b7a10772d1eec04e86f07c7d9718ab35f04fc6e2.tar.gz upstream-b7a10772d1eec04e86f07c7d9718ab35f04fc6e2.tar.bz2 upstream-b7a10772d1eec04e86f07c7d9718ab35f04fc6e2.zip |
ath79: qca956x: Update dts for current ag71xx driver
enable mdio1 by default because mdio1 node is a subnode of eth1
and eth1 node is a "simple-mfd", which makes mdio1 disabled when
eth1 isn't enabled.
Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
-rw-r--r-- | target/linux/ath79/dts/qca9563_tl-wr1043n.dtsi | 1 | ||||
-rw-r--r-- | target/linux/ath79/dts/qca956x.dtsi | 34 |
2 files changed, 31 insertions, 4 deletions
diff --git a/target/linux/ath79/dts/qca9563_tl-wr1043n.dtsi b/target/linux/ath79/dts/qca9563_tl-wr1043n.dtsi index 3134eb9483..6c56306ad5 100644 --- a/target/linux/ath79/dts/qca9563_tl-wr1043n.dtsi +++ b/target/linux/ath79/dts/qca9563_tl-wr1043n.dtsi @@ -193,6 +193,7 @@ status = "okay"; mtd-mac-address = <&info 0x8>; + phy-mode = "sgmii"; phy-handle = <&phy0>; }; diff --git a/target/linux/ath79/dts/qca956x.dtsi b/target/linux/ath79/dts/qca956x.dtsi index 1b8733a585..3c4c04b169 100644 --- a/target/linux/ath79/dts/qca956x.dtsi +++ b/target/linux/ath79/dts/qca956x.dtsi @@ -253,26 +253,47 @@ }; ð0 { - compatible = "qca,qca9560-eth", "syscon"; + compatible = "qca,qca9560-eth", "syscon", "simple-mfd"; pll-data = <0x03000000 0x00000101 0x00001919>; pll-reg = <0 0x48 0>; pll-handle = <&pll>; - phy-mode = "sgmii"; - resets = <&rst 9>; reset-names = "mac"; }; &mdio1 { + status = "okay"; resets = <&rst 23>; reset-names = "mdio"; builtin-switch; + + builtin_switch: switch0@1f { + compatible = "qca,ar8229-builtin"; + #address-cells = <1>; + #size-cells = <0>; + + reg = <0x1f>; + phy-mode = "gmii"; + phy4-mii-enable; + + mdio-bus { + swphy0: ethernet-phy@0 { + reg = <0>; + phy-mode = "mii"; + }; + + swphy4: ethernet-phy@4 { + reg = <4>; + phy-mode = "mii"; + }; + }; + }; }; ð1 { - compatible = "qca,qca9560-eth", "syscon"; + compatible = "qca,qca9560-eth", "syscon", "simple-mfd"; phy-mode = "gmii"; @@ -280,4 +301,9 @@ reset-names = "mac"; status = "disabled"; + + fixed-link { + speed = <1000>; + full-duplex; + }; }; |