Commit 49ca47e5 authored by Huifeng Zhang's avatar Huifeng Zhang Committed by Carles Cufi
Browse files

board: arm64: fvp_baser_aemv8r: Add ethernet, phy and mdio nodes



Enable the smsc91c111 driver for fvp_baser_aemv8r

Signed-off-by: default avatarHuifeng Zhang <Huifeng.Zhang@arm.com>
parent 90122238
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -46,6 +46,8 @@ The following hardware features are supported:
+-----------------------+------------+----------------------+
| Arm GENERIC TIMER     | on-chip    | system clock         |
+-----------------------+------------+----------------------+
| SMSC_91C111           | on-chip    | ethernet device      |
+-----------------------+------------+----------------------+

The kernel currently does not support other hardware features on this platform.

+19 −0
Original line number Diff line number Diff line
@@ -103,5 +103,24 @@
			interrupt-names = "irq_8";
			clocks = <&uartclk>;
		};

		eth: ethernet@9a000000 {
			compatible = "smsc,lan91c111";
			reg = <0x9a000000 0x1000>;
			interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL IRQ_DEFAULT_PRIORITY>;
			status = "disabled";

			phy: phy {
				compatible = "ethernet-phy";
				status = "disabled";
				address = <0>;
				mdio = <&mdio>;
			};

			mdio: mdio {
				compatible = "smsc,lan91c111-mdio";
				status = "disabled";
			};
		};
	};
};