ath79: ar934x: Update dts for current ag71xx driver
Enable mdio1 by default because mdio1 is needed when eth1 is enabled. PS: If a ar9341 device has only one port and you only want to use gmac0, change compatible of gmac1 to "syscon", "simple-mfd" in dts. Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
This commit is contained in:
parent
7ae9e63719
commit
f6c99241ba
3 changed files with 42 additions and 4 deletions
|
@ -16,3 +16,11 @@
|
|||
interrupt-parent = <&cpuintc>;
|
||||
interrupts = <2>;
|
||||
};
|
||||
|
||||
ð0 {
|
||||
phy-mode = "mii";
|
||||
};
|
||||
|
||||
ð1 {
|
||||
status = "okay";
|
||||
};
|
||||
|
|
|
@ -191,12 +191,13 @@
|
|||
};
|
||||
|
||||
&mdio0 {
|
||||
compatible = "qca,ar9340-mdio";
|
||||
resets = <&rst 22>;
|
||||
reset-names = "mdio";
|
||||
};
|
||||
|
||||
ð0 {
|
||||
compatible = "qca,ar9340-eth", "syscon";
|
||||
compatible = "qca,ar9340-eth", "syscon", "simple-mfd";
|
||||
|
||||
pll-data = <0x16000000 0x00000101 0x00001616>;
|
||||
pll-reg = <0x4 0x2c 17>;
|
||||
|
@ -207,13 +208,38 @@
|
|||
};
|
||||
|
||||
&mdio1 {
|
||||
status = "okay";
|
||||
|
||||
compatible = "qca,ar9340-mdio";
|
||||
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,ar9340-eth", "syscon";
|
||||
compatible = "qca,ar9340-eth", "syscon", "simple-mfd";
|
||||
|
||||
resets = <&rst 13>;
|
||||
reset-names = "mac";
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
eth0: eth@19000000 {
|
||||
status = "disabled";
|
||||
|
||||
compatible = "qca,ath79-eth", "syscon";
|
||||
compatible = "qca,ath79-eth", "syscon", "simple-mfd";
|
||||
reg = <0x19000000 0x200>;
|
||||
|
||||
interrupts = <4>;
|
||||
|
@ -51,6 +51,8 @@
|
|||
|
||||
mdio0: mdio-bus {
|
||||
status = "disabled";
|
||||
|
||||
compatible = "qca,ath79-mdio";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
|
||||
|
@ -64,7 +66,7 @@
|
|||
eth1: eth@1a000000 {
|
||||
status = "disabled";
|
||||
|
||||
compatible = "qca,ath79-eth", "syscon";
|
||||
compatible = "qca,ath79-eth", "syscon", "simple-mfd";
|
||||
reg = <0x1a000000 0x200>;
|
||||
|
||||
interrupts = <5>;
|
||||
|
@ -72,6 +74,8 @@
|
|||
|
||||
mdio1: mdio-bus {
|
||||
status = "disabled";
|
||||
|
||||
compatible = "qca,ath79-mdio";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
|
||||
|
|
Loading…
Reference in a new issue