summaryrefslogtreecommitdiff
path: root/arch/arm64/boot/dts/freescale/fsl-ls2080a-rdb.dts
blob: 2ed99e98f59dc547d668eb91a9a711aea41d6f28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
 * Device Tree file for Freescale LS2080a RDB Board.
 *
 * Copyright 2016 Freescale Semiconductor, Inc.
 * Copyright 2017 NXP
 *
 * Abhimanyu Saini <abhimanyu.saini@nxp.com>
 * Bhupesh Sharma <bhupesh.sharma@freescale.com>
 *
 */

/dts-v1/;

#include "fsl-ls2080a.dtsi"
#include "fsl-ls208xa-rdb.dtsi"

/ {
	model = "Freescale Layerscape 2080a RDB Board";
	compatible = "fsl,ls2080a-rdb", "fsl,ls2080a";

	chosen {
		stdout-path = "serial1:115200n8";
	};
};

&emdio1 {
	status = "disabled";
	/* CS4340 PHYs */
	mdio1_phy1: emdio1_phy@1 {
		reg = <0x10>;
		phy-connection-type = "xfi";
	};
	mdio1_phy2: emdio1_phy@2 {
		reg = <0x11>;
		phy-connection-type = "xfi";
	};
	mdio1_phy3: emdio1_phy@3 {
		reg = <0x12>;
		phy-connection-type = "xfi";
	};
	mdio1_phy4: emdio1_phy@4 {
		reg = <0x13>;
		phy-connection-type = "xfi";
	};
};

&emdio2 {
	/* AQR405 PHYs */
	mdio2_phy1: emdio2_phy@1 {
		compatible = "ethernet-phy-ieee802.3-c45";
		interrupts = <0 1 0x4>; /* Level high type */
		reg = <0x0>;
		phy-connection-type = "xfi";
	};
	mdio2_phy2: emdio2_phy@2 {
		compatible = "ethernet-phy-ieee802.3-c45";
		interrupts = <0 2 0x4>; /* Level high type */
		reg = <0x1>;
		phy-connection-type = "xfi";
	};
	mdio2_phy3: emdio2_phy@3 {
		compatible = "ethernet-phy-ieee802.3-c45";
		interrupts = <0 4 0x4>; /* Level high type */
		reg = <0x2>;
		phy-connection-type = "xfi";
	};
	mdio2_phy4: emdio2_phy@4 {
		compatible = "ethernet-phy-ieee802.3-c45";
		interrupts = <0 5 0x4>; /* Level high type */
		reg = <0x3>;
		phy-connection-type = "xfi";
	};
};

/* Update DPMAC connections to external PHYs, under the assumption of
 * SerDes 0x2a_0x41. This is currently the only SerDes supported on the board.
 */
/* Leave Cortina nodes commented out until driver is integrated
 *&dpmac1 {
 *	phy-handle = <&mdio1_phy1>;
 *};
 *&dpmac2 {
 *	phy-handle = <&mdio1_phy2>;
 *};
 *&dpmac3 {
 *	phy-handle = <&mdio1_phy3>;
 *};
 *&dpmac4 {
 *	phy-handle = <&mdio1_phy4>;
 *};
 */

&dpmac5 {
	phy-handle = <&mdio2_phy1>;
};
&dpmac6 {
	phy-handle = <&mdio2_phy2>;
};
&dpmac7 {
	phy-handle = <&mdio2_phy3>;
};
&dpmac8 {
	phy-handle = <&mdio2_phy4>;
};