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

ARM: dts: meson: enable Ethernet controller

Add a node for the Ethernet controller to Meson DTS file and
enable it on the Geniatech ATV1200 board.

Signed-off-by: Beniamino Galvani <b.galvani@gmail.com>
Signed-off-by: Carlo Caione <carlo@endlessm.com>

authored by

Beniamino Galvani and committed by
Carlo Caione
2345d505 03bb9512

+15
+11
arch/arm/boot/dts/meson.dtsi
··· 159 159 clocks = <&clk81>; 160 160 status = "disabled"; 161 161 }; 162 + 163 + ethmac: ethernet@c9410000 { 164 + compatible = "amlogic,meson6-dwmac", "snps,dwmac"; 165 + reg = <0xc9410000 0x10000 166 + 0xc1108108 0x4>; 167 + interrupts = <0 8 1>; 168 + interrupt-names = "macirq"; 169 + clocks = <&clk81>; 170 + clock-names = "stmmaceth"; 171 + status = "disabled"; 172 + }; 162 173 }; 163 174 }; /* end of / */
+4
arch/arm/boot/dts/meson6-atv1200.dts
··· 64 64 &uart_AO { 65 65 status = "okay"; 66 66 }; 67 + 68 + &ethmac { 69 + status = "okay"; 70 + };