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

board: fvp_base_revc_2xaemv8a: Add ethernet, phy and mdio nodes



Add the SMSC_91C111 driver for the fvp_base_revc_2xaemv8a.

Signed-off-by: default avatarHuifeng Zhang <Huifeng.Zhang@arm.com>
parent 1ae558f5
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -33,6 +33,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
@@ -132,6 +132,25 @@
			clocks = <&uartclk>;
		};

		eth: ethernet@1a000000 {
			compatible = "smsc,lan91c111";
			reg = <0x1a000000 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";
			};
		};

		flash0: flash@0 {
			compatible = "soc-nv-flash";
			reg = <0x0 DT_SIZE_K(64)>;