Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

MIPS: ath79: ar9331: add Ethernet nodes

Add ethernet nodes supported by ag71xx driver.

Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Oleksij Rempel and committed by
David S. Miller
7ff836f0 46240936

+34
+26
arch/mips/boot/dts/qca/ar9331.dtsi
··· 116 116 }; 117 117 }; 118 118 119 + eth0: ethernet@19000000 { 120 + compatible = "qca,ar9330-eth"; 121 + reg = <0x19000000 0x200>; 122 + interrupts = <4>; 123 + 124 + resets = <&rst 9>, <&rst 22>; 125 + reset-names = "mac", "mdio"; 126 + clocks = <&pll ATH79_CLK_AHB>, <&pll ATH79_CLK_AHB>; 127 + clock-names = "eth", "mdio"; 128 + 129 + status = "disabled"; 130 + }; 131 + 132 + eth1: ethernet@1a000000 { 133 + compatible = "qca,ar9330-eth"; 134 + reg = <0x1a000000 0x200>; 135 + interrupts = <5>; 136 + 137 + resets = <&rst 13>, <&rst 23>; 138 + reset-names = "mac", "mdio"; 139 + clocks = <&pll ATH79_CLK_AHB>, <&pll ATH79_CLK_AHB>; 140 + clock-names = "eth", "mdio"; 141 + 142 + status = "disabled"; 143 + }; 144 + 119 145 usb: usb@1b000100 { 120 146 compatible = "chipidea,usb2"; 121 147 reg = <0x1b000000 0x200>;
+8
arch/mips/boot/dts/qca/ar9331_dpt_module.dts
··· 76 76 reg = <0>; 77 77 }; 78 78 }; 79 + 80 + &eth0 { 81 + status = "okay"; 82 + }; 83 + 84 + &eth1 { 85 + status = "okay"; 86 + };