blob: 23ec32b7f975ae7ad234cd420e28e38f8c381746 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Mingkai Hu0787ecc2011-07-19 16:20:13 +08002/*
3 * Copyright 2011 Freescale Semiconductor, Inc.
4 * Author: Mingkai Hu <Mingkai.hu@freescale.com>
Mingkai Hu0787ecc2011-07-19 16:20:13 +08005 */
6
7/*
8 * The RGMII PHYs are provided by the two on-board PHY. The SGMII PHYs
9 * are provided by the three on-board PHY or by the standard Freescale
10 * four-port SGMII riser card. We need to change the phy-handle in the
11 * kernel dts file to point to the correct PHY according to serdes mux
12 * and serdes protocol selection.
13 */
14
15#include <common.h>
Simon Glass90526e92020-05-10 11:39:56 -060016#include <net.h>
Mingkai Hu0787ecc2011-07-19 16:20:13 +080017#include <netdev.h>
18#include <asm/fsl_serdes.h>
19#include <fm_eth.h>
20#include <fsl_mdio.h>
21#include <malloc.h>
Shaohui Xie8225b2f2015-10-26 19:47:47 +080022#include <fsl_dtsec.h>
Mingkai Hu0787ecc2011-07-19 16:20:13 +080023
24#include "cpld.h"
25#include "../common/fman.h"
26
27#ifdef CONFIG_FMAN_ENET
28/*
29 * Mapping of all 18 SERDES lanes to board slots. A value of '0' here means
30 * that the mapping must be determined dynamically, or that the lane maps to
31 * something other than a board slot
32 */
33static u8 lane_to_slot[] = {
34 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0
35};
36
37static int riser_phy_addr[] = {
38 CONFIG_SYS_FM1_DTSEC1_RISER_PHY_ADDR,
39 CONFIG_SYS_FM1_DTSEC2_RISER_PHY_ADDR,
40 CONFIG_SYS_FM1_DTSEC3_RISER_PHY_ADDR,
41 CONFIG_SYS_FM1_DTSEC4_RISER_PHY_ADDR,
42};
43
44/*
45 * Initialize the lane_to_slot[] array.
46 *
47 * On the P2040RDB board the mapping is controlled by CPLD register.
48 */
49static void initialize_lane_to_slot(void)
50{
51 u8 mux = CPLD_READ(serdes_mux);
52
53 lane_to_slot[6] = (mux & SERDES_MUX_LANE_6_MASK) ? 0 : 1;
54 lane_to_slot[10] = (mux & SERDES_MUX_LANE_A_MASK) ? 0 : 2;
55 lane_to_slot[12] = (mux & SERDES_MUX_LANE_C_MASK) ? 0 : 2;
56 lane_to_slot[13] = (mux & SERDES_MUX_LANE_D_MASK) ? 0 : 2;
57}
58
59/*
60 * Given the following ...
61 *
62 * 1) A pointer to an Fman Ethernet node (as identified by the 'compat'
63 * compatible string and 'addr' physical address)
64 *
65 * 2) An Fman port
66 *
67 * ... update the phy-handle property of the Ethernet node to point to the
68 * right PHY. This assumes that we already know the PHY for each port.
69 *
70 * The offset of the Fman Ethernet node is also passed in for convenience, but
71 * it is not used, and we recalculate the offset anyway.
72 *
73 * Note that what we call "Fman ports" (enum fm_port) is really an Fman MAC.
74 * Inside the Fman, "ports" are things that connect to MACs. We only call them
75 * ports in U-Boot because on previous Ethernet devices (e.g. Gianfar), MACs
76 * and ports are the same thing.
77 *
78 */
79void board_ft_fman_fixup_port(void *fdt, char *compat, phys_addr_t addr,
80 enum fm_port port, int offset)
81{
82 phy_interface_t intf = fm_info_get_enet_if(port);
83 char phy[16];
Madalin Bucur848a2ef2020-11-04 15:09:17 +020084 int lane;
85 u8 slot;
Mingkai Hu0787ecc2011-07-19 16:20:13 +080086
Madalin Bucur848a2ef2020-11-04 15:09:17 +020087 switch (intf) {
Mingkai Hu0787ecc2011-07-19 16:20:13 +080088 /* The RGMII PHY is identified by the MAC connected to it */
Madalin Bucur848a2ef2020-11-04 15:09:17 +020089 case PHY_INTERFACE_MODE_RGMII:
90 case PHY_INTERFACE_MODE_RGMII_TXID:
91 case PHY_INTERFACE_MODE_RGMII_RXID:
92 case PHY_INTERFACE_MODE_RGMII_ID:
Mingkai Hu0787ecc2011-07-19 16:20:13 +080093 sprintf(phy, "phy_rgmii_%u", port == FM1_DTSEC5 ? 0 : 1);
94 fdt_set_phy_handle(fdt, compat, addr, phy);
Madalin Bucur848a2ef2020-11-04 15:09:17 +020095 break;
Mingkai Hu0787ecc2011-07-19 16:20:13 +080096 /* The SGMII PHY is identified by the MAC connected to it */
Madalin Bucur848a2ef2020-11-04 15:09:17 +020097 case PHY_INTERFACE_MODE_SGMII:
98 lane = serdes_get_first_lane(SGMII_FM1_DTSEC1 + port);
Mingkai Hu0787ecc2011-07-19 16:20:13 +080099 if (lane < 0)
100 return;
101 slot = lane_to_slot[lane];
102 if (slot) {
103 sprintf(phy, "phy_sgmii_%x",
104 CONFIG_SYS_FM1_DTSEC1_RISER_PHY_ADDR
105 + (port - FM1_DTSEC1));
106 fdt_set_phy_handle(fdt, compat, addr, phy);
107 } else {
108 sprintf(phy, "phy_sgmii_%x",
109 CONFIG_SYS_FM1_DTSEC1_PHY_ADDR
110 + (port - FM1_DTSEC1));
111 fdt_set_phy_handle(fdt, compat, addr, phy);
112 }
Madalin Bucur848a2ef2020-11-04 15:09:17 +0200113 break;
114 case PHY_INTERFACE_MODE_XGMII:
Mingkai Hu0787ecc2011-07-19 16:20:13 +0800115 /* XAUI */
Madalin Bucur848a2ef2020-11-04 15:09:17 +0200116 lane = serdes_get_first_lane(XAUI_FM1);
Mingkai Hu0787ecc2011-07-19 16:20:13 +0800117 if (lane >= 0) {
118 /* The XAUI PHY is identified by the slot */
119 sprintf(phy, "phy_xgmii_%u", lane_to_slot[lane]);
120 fdt_set_phy_handle(fdt, compat, addr, phy);
121 }
Madalin Bucur848a2ef2020-11-04 15:09:17 +0200122 break;
123 default:
124 break;
Mingkai Hu0787ecc2011-07-19 16:20:13 +0800125 }
126}
127#endif /* #ifdef CONFIG_FMAN_ENET */
128
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900129int board_eth_init(struct bd_info *bis)
Mingkai Hu0787ecc2011-07-19 16:20:13 +0800130{
131#ifdef CONFIG_FMAN_ENET
Mingkai Hu0787ecc2011-07-19 16:20:13 +0800132 struct fsl_pq_mdio_info dtsec_mdio_info;
133 struct tgec_mdio_info tgec_mdio_info;
134 unsigned int i, slot;
135 int lane;
136
137 printf("Initializing Fman\n");
138
139 initialize_lane_to_slot();
140
Mingkai Hu0787ecc2011-07-19 16:20:13 +0800141 dtsec_mdio_info.regs =
142 (struct tsec_mii_mng *)CONFIG_SYS_FM1_DTSEC1_MDIO_ADDR;
143 dtsec_mdio_info.name = DEFAULT_FM_MDIO_NAME;
144
145 /* Register the real 1G MDIO bus */
146 fsl_pq_mdio_init(bis, &dtsec_mdio_info);
147
148 tgec_mdio_info.regs =
149 (struct tgec_mdio_controller *)CONFIG_SYS_FM1_TGEC_MDIO_ADDR;
150 tgec_mdio_info.name = DEFAULT_FM_TGEC_MDIO_NAME;
151
152 /* Register the real 10G MDIO bus */
153 fm_tgec_mdio_init(bis, &tgec_mdio_info);
154
155 /*
156 * Program the three on-board SGMII PHY addresses. If the SGMII Riser
157 * card used, we'll override the PHY address later. For any DTSEC that
158 * is RGMII, we'll also override its PHY address later. We assume that
159 * DTSEC4 and DTSEC5 are used for RGMII.
160 */
161 fm_info_set_phy_address(FM1_DTSEC1, CONFIG_SYS_FM1_DTSEC1_PHY_ADDR);
162 fm_info_set_phy_address(FM1_DTSEC2, CONFIG_SYS_FM1_DTSEC2_PHY_ADDR);
163 fm_info_set_phy_address(FM1_DTSEC3, CONFIG_SYS_FM1_DTSEC3_PHY_ADDR);
164
Tom Rinicdc5ed82022-11-16 13:10:29 -0500165 for (i = FM1_DTSEC1; i < FM1_DTSEC1 + CFG_SYS_NUM_FM1_DTSEC; i++) {
Mingkai Hu0787ecc2011-07-19 16:20:13 +0800166 int idx = i - FM1_DTSEC1;
167
168 switch (fm_info_get_enet_if(i)) {
169 case PHY_INTERFACE_MODE_SGMII:
170 lane = serdes_get_first_lane(SGMII_FM1_DTSEC1 + idx);
171 if (lane < 0)
172 break;
173 slot = lane_to_slot[lane];
174 if (slot)
175 fm_info_set_phy_address(i, riser_phy_addr[i]);
176 break;
177 case PHY_INTERFACE_MODE_RGMII:
Madalin Bucur848a2ef2020-11-04 15:09:17 +0200178 case PHY_INTERFACE_MODE_RGMII_TXID:
179 case PHY_INTERFACE_MODE_RGMII_RXID:
180 case PHY_INTERFACE_MODE_RGMII_ID:
Mingkai Hu0787ecc2011-07-19 16:20:13 +0800181 /* Only DTSEC4 and DTSEC5 can be routed to RGMII */
182 fm_info_set_phy_address(i, i == FM1_DTSEC5 ?
183 CONFIG_SYS_FM1_DTSEC5_PHY_ADDR :
184 CONFIG_SYS_FM1_DTSEC4_PHY_ADDR);
185 break;
186 default:
187 printf("Fman1: DTSEC%u set to unknown interface %i\n",
188 idx + 1, fm_info_get_enet_if(i));
189 break;
190 }
191
192 fm_info_set_mdio(i,
193 miiphy_get_dev_by_name(DEFAULT_FM_MDIO_NAME));
194 }
195
196 lane = serdes_get_first_lane(XAUI_FM1);
197 if (lane >= 0) {
198 slot = lane_to_slot[lane];
199 if (slot)
200 fm_info_set_phy_address(FM1_10GEC1,
201 CONFIG_SYS_FM1_10GEC1_PHY_ADDR);
202 }
203
204 fm_info_set_mdio(FM1_10GEC1,
205 miiphy_get_dev_by_name(DEFAULT_FM_TGEC_MDIO_NAME));
206 cpu_eth_init(bis);
207#endif
208
209 return pci_eth_init(bis);
210}