1// SPDX-License-Identifier: GPL-2.0+ OR X11
2/*
3 * P2020 RDB-PC Device Tree Source stub (no addresses or top-level ranges)
4 *
5 * Copyright 2011 Freescale Semiconductor Inc.
6 * Copyright 2020 NXP
7 */
8
9&soc {
10	mdio@24520 {
11		phy0: ethernet-phy@0 {
12			interrupts = <3 1 0 0>;
13			reg = <0x0>;
14			};
15		phy1: ethernet-phy@1 {
16			interrupts = <2 1 0 0>;
17			reg = <0x1>;
18			};
19	};
20
21	mdio@25520 {
22		tbi0: tbi-phy@11 {
23			reg = <0x11>;
24			device_type = "tbi-phy";
25		};
26	};
27
28	mdio@26520 {
29		status = "disabled";
30	};
31
32	enet0: ethernet@24000 {
33		phy-connection-type = "rgmii-id";
34		fixed-link {
35			speed = <1000>;
36			full-duplex;
37		};
38	};
39
40	enet1: ethernet@25000 {
41		tbi-handle = <&tbi0>;
42		phy-handle = <&phy0>;
43		phy-connection-type = "sgmii";
44	};
45
46	enet2: ethernet@26000 {
47		phy-handle = <&phy1>;
48		phy-connection-type = "rgmii-id";
49	};
50};
51