blob: 2e2ba756a0bd5ae514fbc17844174ce0f6379d3c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Kumar Galac916d7c2011-04-13 08:37:44 -05002/*
Roy Zang111fd192012-10-08 07:44:21 +00003 * Copyright 2009-2012 Freescale Semiconductor, Inc.
Kumar Galac916d7c2011-04-13 08:37:44 -05004 */
5
6#ifndef __FM_ETH_H__
7#define __FM_ETH_H__
8
9#include <common.h>
Claudiu Manoil93f26f12014-09-05 13:52:36 +080010#include <phy.h>
Kumar Galac916d7c2011-04-13 08:37:44 -050011#include <asm/types.h>
Kumar Galac916d7c2011-04-13 08:37:44 -050012
13enum fm_port {
14 FM1_DTSEC1,
15 FM1_DTSEC2,
16 FM1_DTSEC3,
17 FM1_DTSEC4,
18 FM1_DTSEC5,
York Sun9e758752012-10-08 07:44:19 +000019 FM1_DTSEC6,
20 FM1_DTSEC9,
21 FM1_DTSEC10,
Kumar Galac916d7c2011-04-13 08:37:44 -050022 FM1_10GEC1,
York Sun9e758752012-10-08 07:44:19 +000023 FM1_10GEC2,
Shengzhou Liu82a55c12013-11-22 17:39:09 +080024 FM1_10GEC3,
25 FM1_10GEC4,
Kumar Galac916d7c2011-04-13 08:37:44 -050026 FM2_DTSEC1,
27 FM2_DTSEC2,
28 FM2_DTSEC3,
29 FM2_DTSEC4,
Timur Tabi99abf7d2012-08-14 06:47:21 +000030 FM2_DTSEC5,
York Sun9e758752012-10-08 07:44:19 +000031 FM2_DTSEC6,
32 FM2_DTSEC9,
33 FM2_DTSEC10,
Kumar Galac916d7c2011-04-13 08:37:44 -050034 FM2_10GEC1,
York Sun9e758752012-10-08 07:44:19 +000035 FM2_10GEC2,
Kumar Galac916d7c2011-04-13 08:37:44 -050036 NUM_FM_PORTS,
37};
38
39enum fm_eth_type {
40 FM_ETH_1G_E,
41 FM_ETH_10G_E,
42};
43
Roy Zang111fd192012-10-08 07:44:21 +000044#ifdef CONFIG_SYS_FMAN_V3
45#define CONFIG_SYS_FM1_DTSEC_MDIO_ADDR (CONFIG_SYS_FSL_FM1_ADDR + 0xfc000)
46#define CONFIG_SYS_FM1_TGEC_MDIO_ADDR (CONFIG_SYS_FSL_FM1_ADDR + 0xfd000)
Shaohui Xie23e1aca2015-10-26 19:47:49 +080047#if (CONFIG_SYS_NUM_FMAN == 2)
Roy Zang111fd192012-10-08 07:44:21 +000048#define CONFIG_SYS_FM2_DTSEC_MDIO_ADDR (CONFIG_SYS_FSL_FM2_ADDR + 0xfc000)
49#define CONFIG_SYS_FM2_TGEC_MDIO_ADDR (CONFIG_SYS_FSL_FM2_ADDR + 0xfd000)
Shaohui Xie23e1aca2015-10-26 19:47:49 +080050#endif
Roy Zang111fd192012-10-08 07:44:21 +000051#else
Kumar Galac916d7c2011-04-13 08:37:44 -050052#define CONFIG_SYS_FM1_DTSEC1_MDIO_ADDR (CONFIG_SYS_FSL_FM1_ADDR + 0xe1120)
53#define CONFIG_SYS_FM1_TGEC_MDIO_ADDR (CONFIG_SYS_FSL_FM1_ADDR + 0xf1000)
Roy Zang111fd192012-10-08 07:44:21 +000054#endif
Kumar Galac916d7c2011-04-13 08:37:44 -050055
56#define DEFAULT_FM_MDIO_NAME "FSL_MDIO0"
57#define DEFAULT_FM_TGEC_MDIO_NAME "FM_TGEC_MDIO"
58
59/* Fman ethernet info struct */
60#define FM_ETH_INFO_INITIALIZER(idx, pregs) \
61 .fm = idx, \
62 .phy_regs = (void *)pregs, \
63 .enet_if = PHY_INTERFACE_MODE_NONE, \
64
Roy Zang111fd192012-10-08 07:44:21 +000065#ifdef CONFIG_SYS_FMAN_V3
66#define FM_DTSEC_INFO_INITIALIZER(idx, n) \
67{ \
68 FM_ETH_INFO_INITIALIZER(idx, CONFIG_SYS_FM1_DTSEC_MDIO_ADDR) \
69 .index = idx, \
70 .num = n - 1, \
71 .type = FM_ETH_1G_E, \
72 .port = FM##idx##_DTSEC##n, \
73 .rx_port_id = RX_PORT_1G_BASE + n - 1, \
74 .tx_port_id = TX_PORT_1G_BASE + n - 1, \
75 .compat_offset = CONFIG_SYS_FSL_FM##idx##_OFFSET + \
76 offsetof(struct ccsr_fman, memac[n-1]),\
77}
78
Shengzhou Liucc19c252014-11-24 17:11:57 +080079#ifdef CONFIG_FSL_FM_10GEC_REGULAR_NOTATION
80#define FM_TGEC_INFO_INITIALIZER(idx, n) \
81{ \
82 FM_ETH_INFO_INITIALIZER(idx, CONFIG_SYS_FM1_TGEC_MDIO_ADDR) \
83 .index = idx, \
84 .num = n - 1, \
85 .type = FM_ETH_10G_E, \
86 .port = FM##idx##_10GEC##n, \
87 .rx_port_id = RX_PORT_10G_BASE2 + n - 1, \
88 .tx_port_id = TX_PORT_10G_BASE2 + n - 1, \
89 .compat_offset = CONFIG_SYS_FSL_FM##idx##_OFFSET + \
90 offsetof(struct ccsr_fman, memac[n-1]),\
91}
92#else
Shaohui Xie23e1aca2015-10-26 19:47:49 +080093#if (CONFIG_SYS_NUM_FMAN == 2)
Roy Zang111fd192012-10-08 07:44:21 +000094#define FM_TGEC_INFO_INITIALIZER(idx, n) \
95{ \
Shaohui Xie944b6cc2013-03-25 07:33:17 +000096 FM_ETH_INFO_INITIALIZER(idx, CONFIG_SYS_FM2_TGEC_MDIO_ADDR) \
Roy Zang111fd192012-10-08 07:44:21 +000097 .index = idx, \
98 .num = n - 1, \
99 .type = FM_ETH_10G_E, \
100 .port = FM##idx##_10GEC##n, \
101 .rx_port_id = RX_PORT_10G_BASE + n - 1, \
102 .tx_port_id = TX_PORT_10G_BASE + n - 1, \
103 .compat_offset = CONFIG_SYS_FSL_FM##idx##_OFFSET + \
Shaohui Xie944b6cc2013-03-25 07:33:17 +0000104 offsetof(struct ccsr_fman, memac[n-1+8]),\
Roy Zang111fd192012-10-08 07:44:21 +0000105}
Shaohui Xie23e1aca2015-10-26 19:47:49 +0800106#else
107#define FM_TGEC_INFO_INITIALIZER(idx, n) \
108{ \
109 FM_ETH_INFO_INITIALIZER(idx, CONFIG_SYS_FM1_TGEC_MDIO_ADDR) \
110 .index = idx, \
111 .num = n - 1, \
112 .type = FM_ETH_10G_E, \
113 .port = FM##idx##_10GEC##n, \
114 .rx_port_id = RX_PORT_10G_BASE + n - 1, \
115 .tx_port_id = TX_PORT_10G_BASE + n - 1, \
116 .compat_offset = CONFIG_SYS_FSL_FM##idx##_OFFSET + \
117 offsetof(struct ccsr_fman, memac[n-1+8]),\
118}
119#endif
Shengzhou Liucc19c252014-11-24 17:11:57 +0800120#endif
Shengzhou Liu82a55c12013-11-22 17:39:09 +0800121
122#if (CONFIG_SYS_NUM_FM1_10GEC >= 3)
123#define FM_TGEC_INFO_INITIALIZER2(idx, n) \
124{ \
125 FM_ETH_INFO_INITIALIZER(idx, CONFIG_SYS_FM1_TGEC_MDIO_ADDR) \
126 .index = idx, \
127 .num = n - 1, \
128 .type = FM_ETH_10G_E, \
129 .port = FM##idx##_10GEC##n, \
130 .rx_port_id = RX_PORT_10G_BASE2 + n - 3, \
131 .tx_port_id = TX_PORT_10G_BASE2 + n - 3, \
132 .compat_offset = CONFIG_SYS_FSL_FM##idx##_OFFSET + \
133 offsetof(struct ccsr_fman, memac[n-1-2]),\
134}
135#endif
136
Roy Zang111fd192012-10-08 07:44:21 +0000137#else
Kumar Galac916d7c2011-04-13 08:37:44 -0500138#define FM_DTSEC_INFO_INITIALIZER(idx, n) \
139{ \
140 FM_ETH_INFO_INITIALIZER(idx, CONFIG_SYS_FM1_DTSEC1_MDIO_ADDR) \
141 .index = idx, \
142 .num = n - 1, \
143 .type = FM_ETH_1G_E, \
144 .port = FM##idx##_DTSEC##n, \
145 .rx_port_id = RX_PORT_1G_BASE + n - 1, \
146 .tx_port_id = TX_PORT_1G_BASE + n - 1, \
147 .compat_offset = CONFIG_SYS_FSL_FM##idx##_OFFSET + \
148 offsetof(struct ccsr_fman, mac_1g[n-1]),\
149}
150
151#define FM_TGEC_INFO_INITIALIZER(idx, n) \
152{ \
153 FM_ETH_INFO_INITIALIZER(idx, CONFIG_SYS_FM1_TGEC_MDIO_ADDR) \
154 .index = idx, \
155 .num = n - 1, \
156 .type = FM_ETH_10G_E, \
157 .port = FM##idx##_10GEC##n, \
158 .rx_port_id = RX_PORT_10G_BASE + n - 1, \
159 .tx_port_id = TX_PORT_10G_BASE + n - 1, \
160 .compat_offset = CONFIG_SYS_FSL_FM##idx##_OFFSET + \
161 offsetof(struct ccsr_fman, mac_10g[n-1]),\
162}
Roy Zang111fd192012-10-08 07:44:21 +0000163#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500164struct fm_eth_info {
165 u8 enabled;
166 u8 fm;
167 u8 num;
168 u8 phy_addr;
169 int index;
170 u16 rx_port_id;
171 u16 tx_port_id;
172 enum fm_port port;
173 enum fm_eth_type type;
174 void *phy_regs;
175 phy_interface_t enet_if;
176 u32 compat_offset;
177 struct mii_dev *bus;
178};
179
180struct tgec_mdio_info {
181 struct tgec_mdio_controller *regs;
182 char *name;
183};
184
Roy Zang111fd192012-10-08 07:44:21 +0000185struct memac_mdio_info {
186 struct memac_mdio_controller *regs;
187 char *name;
188};
189
Kumar Galac916d7c2011-04-13 08:37:44 -0500190int fm_tgec_mdio_init(bd_t *bis, struct tgec_mdio_info *info);
Roy Zang111fd192012-10-08 07:44:21 +0000191int fm_memac_mdio_init(bd_t *bis, struct memac_mdio_info *info);
192
Kumar Galac916d7c2011-04-13 08:37:44 -0500193int fm_standard_init(bd_t *bis);
194void fman_enet_init(void);
195void fdt_fixup_fman_ethernet(void *fdt);
196phy_interface_t fm_info_get_enet_if(enum fm_port port);
197void fm_info_set_phy_address(enum fm_port port, int address);
Timur Tabiae2291f2012-08-14 06:47:22 +0000198int fm_info_get_phy_address(enum fm_port port);
Kumar Galac916d7c2011-04-13 08:37:44 -0500199void fm_info_set_mdio(enum fm_port port, struct mii_dev *bus);
Kumar Gala69a85242011-09-14 12:01:35 -0500200void fm_disable_port(enum fm_port port);
Valentin Longchampf51d3b72013-10-18 11:47:21 +0200201void fm_enable_port(enum fm_port port);
Zhao Qiangffee1dd2013-09-04 10:11:27 +0800202void set_sgmii_phy(struct mii_dev *bus, enum fm_port base_port,
203 unsigned int port_num, int phy_base_addr);
204int is_qsgmii_riser_card(struct mii_dev *bus, int phy_base_addr,
205 unsigned int port_num, unsigned regnum);
Kumar Galac916d7c2011-04-13 08:37:44 -0500206
207#endif