blob: ec0a3cb371e523c81092c87dd1319f2509994e87 [file] [log] [blame]
Kumar Galac916d7c2011-04-13 08:37:44 -05001/*
Roy Zang111fd192012-10-08 07:44:21 +00002 * Copyright 2009-2012 Freescale Semiconductor, Inc.
Kumar Galac916d7c2011-04-13 08:37:44 -05003 * Dave Liu <daveliu@freescale.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Kumar Galac916d7c2011-04-13 08:37:44 -05006 */
7#include <common.h>
8#include <asm/io.h>
9#include <malloc.h>
10#include <net.h>
11#include <hwconfig.h>
12#include <fm_eth.h>
13#include <fsl_mdio.h>
14#include <miiphy.h>
15#include <phy.h>
Shaohui Xie8225b2f2015-10-26 19:47:47 +080016#include <fsl_dtsec.h>
17#include <fsl_tgec.h>
Shaohui Xiecd348ef2015-03-20 19:28:19 -070018#include <fsl_memac.h>
Kumar Galac916d7c2011-04-13 08:37:44 -050019
20#include "fm.h"
21
22static struct eth_device *devlist[NUM_FM_PORTS];
23static int num_controllers;
24
25#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) && !defined(BITBANGMII)
26
27#define TBIANA_SETTINGS (TBIANA_ASYMMETRIC_PAUSE | TBIANA_SYMMETRIC_PAUSE | \
28 TBIANA_FULL_DUPLEX)
29
30#define TBIANA_SGMII_ACK 0x4001
31
32#define TBICR_SETTINGS (TBICR_ANEG_ENABLE | TBICR_RESTART_ANEG | \
33 TBICR_FULL_DUPLEX | TBICR_SPEED1_SET)
34
35/* Configure the TBI for SGMII operation */
Kim Phillips960d70c2012-10-29 13:34:34 +000036static void dtsec_configure_serdes(struct fm_eth *priv)
Kumar Galac916d7c2011-04-13 08:37:44 -050037{
Roy Zang111fd192012-10-08 07:44:21 +000038#ifdef CONFIG_SYS_FMAN_V3
39 u32 value;
40 struct mii_dev bus;
41 bus.priv = priv->mac->phyregs;
Shengzhou Liuc35f8692014-10-23 17:20:57 +080042 bool sgmii_2500 = (priv->enet_if ==
43 PHY_INTERFACE_MODE_SGMII_2500) ? true : false;
Roy Zang111fd192012-10-08 07:44:21 +000044
Shengzhou Liuc35f8692014-10-23 17:20:57 +080045 /* SGMII IF mode + AN enable only for 1G SGMII, not for 2.5G */
46 value = PHY_SGMII_IF_MODE_SGMII;
47 if (!sgmii_2500)
48 value |= PHY_SGMII_IF_MODE_AN;
49
Roy Zang111fd192012-10-08 07:44:21 +000050 memac_mdio_write(&bus, 0, MDIO_DEVAD_NONE, 0x14, value);
51
52 /* Dev ability according to SGMII specification */
53 value = PHY_SGMII_DEV_ABILITY_SGMII;
54 memac_mdio_write(&bus, 0, MDIO_DEVAD_NONE, 0x4, value);
55
56 /* Adjust link timer for SGMII -
57 1.6 ms in units of 8 ns = 2 * 10^5 = 0x30d40 */
58 memac_mdio_write(&bus, 0, MDIO_DEVAD_NONE, 0x13, 0x3);
59 memac_mdio_write(&bus, 0, MDIO_DEVAD_NONE, 0x12, 0xd40);
60
61 /* Restart AN */
Shengzhou Liuc35f8692014-10-23 17:20:57 +080062 value = PHY_SGMII_CR_DEF_VAL;
63 if (!sgmii_2500)
64 value |= PHY_SGMII_CR_RESET_AN;
Roy Zang111fd192012-10-08 07:44:21 +000065 memac_mdio_write(&bus, 0, MDIO_DEVAD_NONE, 0, value);
66#else
Kumar Galac916d7c2011-04-13 08:37:44 -050067 struct dtsec *regs = priv->mac->base;
68 struct tsec_mii_mng *phyregs = priv->mac->phyregs;
69
70 /*
71 * Access TBI PHY registers at given TSEC register offset as
72 * opposed to the register offset used for external PHY accesses
73 */
74 tsec_local_mdio_write(phyregs, in_be32(&regs->tbipa), 0, TBI_TBICON,
75 TBICON_CLK_SELECT);
76 tsec_local_mdio_write(phyregs, in_be32(&regs->tbipa), 0, TBI_ANA,
77 TBIANA_SGMII_ACK);
78 tsec_local_mdio_write(phyregs, in_be32(&regs->tbipa), 0,
79 TBI_CR, TBICR_SETTINGS);
Roy Zang111fd192012-10-08 07:44:21 +000080#endif
Kumar Galac916d7c2011-04-13 08:37:44 -050081}
82
83static void dtsec_init_phy(struct eth_device *dev)
84{
85 struct fm_eth *fm_eth = dev->priv;
Roy Zang111fd192012-10-08 07:44:21 +000086#ifndef CONFIG_SYS_FMAN_V3
shaohui xie1f3bd3e2012-10-11 20:25:36 +000087 struct dtsec *regs = (struct dtsec *)CONFIG_SYS_FSL_FM1_DTSEC1_ADDR;
88
Kumar Galac916d7c2011-04-13 08:37:44 -050089 /* Assign a Physical address to the TBI */
90 out_be32(&regs->tbipa, CONFIG_SYS_TBIPA_VALUE);
Roy Zang111fd192012-10-08 07:44:21 +000091#endif
Kumar Galac916d7c2011-04-13 08:37:44 -050092
Shengzhou Liuc35f8692014-10-23 17:20:57 +080093 if (fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII ||
94 fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII_2500)
Kumar Galac916d7c2011-04-13 08:37:44 -050095 dtsec_configure_serdes(fm_eth);
96}
97
Shaohui Xie29d8c812015-10-26 19:47:46 +080098#ifdef CONFIG_PHYLIB
Kumar Galac916d7c2011-04-13 08:37:44 -050099static int tgec_is_fibre(struct eth_device *dev)
100{
101 struct fm_eth *fm = dev->priv;
102 char phyopt[20];
103
104 sprintf(phyopt, "fsl_fm%d_xaui_phy", fm->fm_index + 1);
105
106 return hwconfig_arg_cmp(phyopt, "xfi");
107}
108#endif
Shaohui Xie29d8c812015-10-26 19:47:46 +0800109#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500110
111static u16 muram_readw(u16 *addr)
112{
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800113 ulong base = (ulong)addr & ~0x3UL;
114 u32 val32 = in_be32((void *)base);
Kumar Galac916d7c2011-04-13 08:37:44 -0500115 int byte_pos;
116 u16 ret;
117
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800118 byte_pos = (ulong)addr & 0x3UL;
Kumar Galac916d7c2011-04-13 08:37:44 -0500119 if (byte_pos)
120 ret = (u16)(val32 & 0x0000ffff);
121 else
122 ret = (u16)((val32 & 0xffff0000) >> 16);
123
124 return ret;
125}
126
127static void muram_writew(u16 *addr, u16 val)
128{
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800129 ulong base = (ulong)addr & ~0x3UL;
130 u32 org32 = in_be32((void *)base);
Kumar Galac916d7c2011-04-13 08:37:44 -0500131 u32 val32;
132 int byte_pos;
133
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800134 byte_pos = (ulong)addr & 0x3UL;
Kumar Galac916d7c2011-04-13 08:37:44 -0500135 if (byte_pos)
136 val32 = (org32 & 0xffff0000) | val;
137 else
138 val32 = (org32 & 0x0000ffff) | ((u32)val << 16);
139
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800140 out_be32((void *)base, val32);
Kumar Galac916d7c2011-04-13 08:37:44 -0500141}
142
143static void bmi_rx_port_disable(struct fm_bmi_rx_port *rx_port)
144{
145 int timeout = 1000000;
146
147 clrbits_be32(&rx_port->fmbm_rcfg, FMBM_RCFG_EN);
148
149 /* wait until the rx port is not busy */
150 while ((in_be32(&rx_port->fmbm_rst) & FMBM_RST_BSY) && timeout--)
151 ;
152}
153
154static void bmi_rx_port_init(struct fm_bmi_rx_port *rx_port)
155{
156 /* set BMI to independent mode, Rx port disable */
157 out_be32(&rx_port->fmbm_rcfg, FMBM_RCFG_IM);
158 /* clear FOF in IM case */
159 out_be32(&rx_port->fmbm_rim, 0);
160 /* Rx frame next engine -RISC */
161 out_be32(&rx_port->fmbm_rfne, NIA_ENG_RISC | NIA_RISC_AC_IM_RX);
162 /* Rx command attribute - no order, MR[3] = 1 */
163 clrbits_be32(&rx_port->fmbm_rfca, FMBM_RFCA_ORDER | FMBM_RFCA_MR_MASK);
164 setbits_be32(&rx_port->fmbm_rfca, FMBM_RFCA_MR(4));
165 /* enable Rx statistic counters */
166 out_be32(&rx_port->fmbm_rstc, FMBM_RSTC_EN);
167 /* disable Rx performance counters */
168 out_be32(&rx_port->fmbm_rpc, 0);
169}
170
171static void bmi_tx_port_disable(struct fm_bmi_tx_port *tx_port)
172{
173 int timeout = 1000000;
174
175 clrbits_be32(&tx_port->fmbm_tcfg, FMBM_TCFG_EN);
176
177 /* wait until the tx port is not busy */
178 while ((in_be32(&tx_port->fmbm_tst) & FMBM_TST_BSY) && timeout--)
179 ;
180}
181
182static void bmi_tx_port_init(struct fm_bmi_tx_port *tx_port)
183{
184 /* set BMI to independent mode, Tx port disable */
185 out_be32(&tx_port->fmbm_tcfg, FMBM_TCFG_IM);
186 /* Tx frame next engine -RISC */
187 out_be32(&tx_port->fmbm_tfne, NIA_ENG_RISC | NIA_RISC_AC_IM_TX);
188 out_be32(&tx_port->fmbm_tfene, NIA_ENG_RISC | NIA_RISC_AC_IM_TX);
189 /* Tx command attribute - no order, MR[3] = 1 */
190 clrbits_be32(&tx_port->fmbm_tfca, FMBM_TFCA_ORDER | FMBM_TFCA_MR_MASK);
191 setbits_be32(&tx_port->fmbm_tfca, FMBM_TFCA_MR(4));
192 /* enable Tx statistic counters */
193 out_be32(&tx_port->fmbm_tstc, FMBM_TSTC_EN);
194 /* disable Tx performance counters */
195 out_be32(&tx_port->fmbm_tpc, 0);
196}
197
198static int fm_eth_rx_port_parameter_init(struct fm_eth *fm_eth)
199{
200 struct fm_port_global_pram *pram;
201 u32 pram_page_offset;
202 void *rx_bd_ring_base;
203 void *rx_buf_pool;
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800204 u32 bd_ring_base_lo, bd_ring_base_hi;
205 u32 buf_lo, buf_hi;
Kumar Galac916d7c2011-04-13 08:37:44 -0500206 struct fm_port_bd *rxbd;
207 struct fm_port_qd *rxqd;
208 struct fm_bmi_rx_port *bmi_rx_port = fm_eth->rx_port;
209 int i;
210
211 /* alloc global parameter ram at MURAM */
212 pram = (struct fm_port_global_pram *)fm_muram_alloc(fm_eth->fm_index,
213 FM_PRAM_SIZE, FM_PRAM_ALIGN);
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800214 if (!pram) {
215 printf("%s: No muram for Rx global parameter\n", __func__);
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800216 return -ENOMEM;
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800217 }
218
Kumar Galac916d7c2011-04-13 08:37:44 -0500219 fm_eth->rx_pram = pram;
220
221 /* parameter page offset to MURAM */
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800222 pram_page_offset = (void *)pram - fm_muram_base(fm_eth->fm_index);
Kumar Galac916d7c2011-04-13 08:37:44 -0500223
224 /* enable global mode- snooping data buffers and BDs */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800225 out_be32(&pram->mode, PRAM_MODE_GLOBAL);
Kumar Galac916d7c2011-04-13 08:37:44 -0500226
227 /* init the Rx queue descriptor pionter */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800228 out_be32(&pram->rxqd_ptr, pram_page_offset + 0x20);
Kumar Galac916d7c2011-04-13 08:37:44 -0500229
230 /* set the max receive buffer length, power of 2 */
231 muram_writew(&pram->mrblr, MAX_RXBUF_LOG2);
232
233 /* alloc Rx buffer descriptors from main memory */
234 rx_bd_ring_base = malloc(sizeof(struct fm_port_bd)
235 * RX_BD_RING_SIZE);
236 if (!rx_bd_ring_base)
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800237 return -ENOMEM;
238
Kumar Galac916d7c2011-04-13 08:37:44 -0500239 memset(rx_bd_ring_base, 0, sizeof(struct fm_port_bd)
240 * RX_BD_RING_SIZE);
241
242 /* alloc Rx buffer from main memory */
243 rx_buf_pool = malloc(MAX_RXBUF_LEN * RX_BD_RING_SIZE);
244 if (!rx_buf_pool)
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800245 return -ENOMEM;
246
Kumar Galac916d7c2011-04-13 08:37:44 -0500247 memset(rx_buf_pool, 0, MAX_RXBUF_LEN * RX_BD_RING_SIZE);
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800248 debug("%s: rx_buf_pool = %p\n", __func__, rx_buf_pool);
Kumar Galac916d7c2011-04-13 08:37:44 -0500249
250 /* save them to fm_eth */
251 fm_eth->rx_bd_ring = rx_bd_ring_base;
252 fm_eth->cur_rxbd = rx_bd_ring_base;
253 fm_eth->rx_buf = rx_buf_pool;
254
255 /* init Rx BDs ring */
256 rxbd = (struct fm_port_bd *)rx_bd_ring_base;
257 for (i = 0; i < RX_BD_RING_SIZE; i++) {
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800258 muram_writew(&rxbd->status, RxBD_EMPTY);
259 muram_writew(&rxbd->len, 0);
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800260 buf_hi = upper_32_bits(virt_to_phys(rx_buf_pool +
261 i * MAX_RXBUF_LEN));
262 buf_lo = lower_32_bits(virt_to_phys(rx_buf_pool +
263 i * MAX_RXBUF_LEN));
264 muram_writew(&rxbd->buf_ptr_hi, (u16)buf_hi);
265 out_be32(&rxbd->buf_ptr_lo, buf_lo);
Kumar Galac916d7c2011-04-13 08:37:44 -0500266 rxbd++;
267 }
268
269 /* set the Rx queue descriptor */
270 rxqd = &pram->rxqd;
271 muram_writew(&rxqd->gen, 0);
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800272 bd_ring_base_hi = upper_32_bits(virt_to_phys(rx_bd_ring_base));
273 bd_ring_base_lo = lower_32_bits(virt_to_phys(rx_bd_ring_base));
274 muram_writew(&rxqd->bd_ring_base_hi, (u16)bd_ring_base_hi);
275 out_be32(&rxqd->bd_ring_base_lo, bd_ring_base_lo);
Kumar Galac916d7c2011-04-13 08:37:44 -0500276 muram_writew(&rxqd->bd_ring_size, sizeof(struct fm_port_bd)
277 * RX_BD_RING_SIZE);
278 muram_writew(&rxqd->offset_in, 0);
279 muram_writew(&rxqd->offset_out, 0);
280
281 /* set IM parameter ram pointer to Rx Frame Queue ID */
282 out_be32(&bmi_rx_port->fmbm_rfqid, pram_page_offset);
283
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800284 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500285}
286
287static int fm_eth_tx_port_parameter_init(struct fm_eth *fm_eth)
288{
289 struct fm_port_global_pram *pram;
290 u32 pram_page_offset;
291 void *tx_bd_ring_base;
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800292 u32 bd_ring_base_lo, bd_ring_base_hi;
Kumar Galac916d7c2011-04-13 08:37:44 -0500293 struct fm_port_bd *txbd;
294 struct fm_port_qd *txqd;
295 struct fm_bmi_tx_port *bmi_tx_port = fm_eth->tx_port;
296 int i;
297
298 /* alloc global parameter ram at MURAM */
299 pram = (struct fm_port_global_pram *)fm_muram_alloc(fm_eth->fm_index,
300 FM_PRAM_SIZE, FM_PRAM_ALIGN);
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800301 if (!pram) {
302 printf("%s: No muram for Tx global parameter\n", __func__);
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800303 return -ENOMEM;
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800304 }
Kumar Galac916d7c2011-04-13 08:37:44 -0500305 fm_eth->tx_pram = pram;
306
307 /* parameter page offset to MURAM */
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800308 pram_page_offset = (void *)pram - fm_muram_base(fm_eth->fm_index);
Kumar Galac916d7c2011-04-13 08:37:44 -0500309
310 /* enable global mode- snooping data buffers and BDs */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800311 out_be32(&pram->mode, PRAM_MODE_GLOBAL);
Kumar Galac916d7c2011-04-13 08:37:44 -0500312
313 /* init the Tx queue descriptor pionter */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800314 out_be32(&pram->txqd_ptr, pram_page_offset + 0x40);
Kumar Galac916d7c2011-04-13 08:37:44 -0500315
316 /* alloc Tx buffer descriptors from main memory */
317 tx_bd_ring_base = malloc(sizeof(struct fm_port_bd)
318 * TX_BD_RING_SIZE);
319 if (!tx_bd_ring_base)
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800320 return -ENOMEM;
321
Kumar Galac916d7c2011-04-13 08:37:44 -0500322 memset(tx_bd_ring_base, 0, sizeof(struct fm_port_bd)
323 * TX_BD_RING_SIZE);
324 /* save it to fm_eth */
325 fm_eth->tx_bd_ring = tx_bd_ring_base;
326 fm_eth->cur_txbd = tx_bd_ring_base;
327
328 /* init Tx BDs ring */
329 txbd = (struct fm_port_bd *)tx_bd_ring_base;
330 for (i = 0; i < TX_BD_RING_SIZE; i++) {
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800331 muram_writew(&txbd->status, TxBD_LAST);
332 muram_writew(&txbd->len, 0);
333 muram_writew(&txbd->buf_ptr_hi, 0);
334 out_be32(&txbd->buf_ptr_lo, 0);
335 txbd++;
Kumar Galac916d7c2011-04-13 08:37:44 -0500336 }
337
338 /* set the Tx queue decriptor */
339 txqd = &pram->txqd;
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800340 bd_ring_base_hi = upper_32_bits(virt_to_phys(tx_bd_ring_base));
341 bd_ring_base_lo = lower_32_bits(virt_to_phys(tx_bd_ring_base));
342 muram_writew(&txqd->bd_ring_base_hi, (u16)bd_ring_base_hi);
343 out_be32(&txqd->bd_ring_base_lo, bd_ring_base_lo);
Kumar Galac916d7c2011-04-13 08:37:44 -0500344 muram_writew(&txqd->bd_ring_size, sizeof(struct fm_port_bd)
345 * TX_BD_RING_SIZE);
346 muram_writew(&txqd->offset_in, 0);
347 muram_writew(&txqd->offset_out, 0);
348
349 /* set IM parameter ram pointer to Tx Confirmation Frame Queue ID */
350 out_be32(&bmi_tx_port->fmbm_tcfqid, pram_page_offset);
351
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800352 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500353}
354
355static int fm_eth_init(struct fm_eth *fm_eth)
356{
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800357 int ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500358
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800359 ret = fm_eth_rx_port_parameter_init(fm_eth);
360 if (ret)
361 return ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500362
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800363 ret = fm_eth_tx_port_parameter_init(fm_eth);
364 if (ret)
365 return ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500366
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800367 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500368}
369
370static int fm_eth_startup(struct fm_eth *fm_eth)
371{
372 struct fsl_enet_mac *mac;
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800373 int ret;
374
Kumar Galac916d7c2011-04-13 08:37:44 -0500375 mac = fm_eth->mac;
376
377 /* Rx/TxBDs, Rx/TxQDs, Rx buff and parameter ram init */
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800378 ret = fm_eth_init(fm_eth);
379 if (ret)
380 return ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500381 /* setup the MAC controller */
382 mac->init_mac(mac);
383
384 /* For some reason we need to set SPEED_100 */
Shaohui Xie1c68d012013-08-19 18:58:52 +0800385 if (((fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII) ||
386 (fm_eth->enet_if == PHY_INTERFACE_MODE_QSGMII)) &&
387 mac->set_if_mode)
Kumar Galac916d7c2011-04-13 08:37:44 -0500388 mac->set_if_mode(mac, fm_eth->enet_if, SPEED_100);
389
390 /* init bmi rx port, IM mode and disable */
391 bmi_rx_port_init(fm_eth->rx_port);
392 /* init bmi tx port, IM mode and disable */
393 bmi_tx_port_init(fm_eth->tx_port);
394
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800395 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500396}
397
398static void fmc_tx_port_graceful_stop_enable(struct fm_eth *fm_eth)
399{
400 struct fm_port_global_pram *pram;
401
402 pram = fm_eth->tx_pram;
403 /* graceful stop transmission of frames */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800404 setbits_be32(&pram->mode, PRAM_MODE_GRACEFUL_STOP);
Kumar Galac916d7c2011-04-13 08:37:44 -0500405 sync();
406}
407
408static void fmc_tx_port_graceful_stop_disable(struct fm_eth *fm_eth)
409{
410 struct fm_port_global_pram *pram;
411
412 pram = fm_eth->tx_pram;
413 /* re-enable transmission of frames */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800414 clrbits_be32(&pram->mode, PRAM_MODE_GRACEFUL_STOP);
Kumar Galac916d7c2011-04-13 08:37:44 -0500415 sync();
416}
417
418static int fm_eth_open(struct eth_device *dev, bd_t *bd)
419{
420 struct fm_eth *fm_eth;
421 struct fsl_enet_mac *mac;
Timur Tabi11af8d62012-07-09 08:52:43 +0000422#ifdef CONFIG_PHYLIB
423 int ret;
424#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500425
426 fm_eth = (struct fm_eth *)dev->priv;
427 mac = fm_eth->mac;
428
429 /* setup the MAC address */
430 if (dev->enetaddr[0] & 0x01) {
431 printf("%s: MacAddress is multcast address\n", __func__);
432 return 1;
433 }
434 mac->set_mac_addr(mac, dev->enetaddr);
435
436 /* enable bmi Rx port */
437 setbits_be32(&fm_eth->rx_port->fmbm_rcfg, FMBM_RCFG_EN);
438 /* enable MAC rx/tx port */
439 mac->enable_mac(mac);
440 /* enable bmi Tx port */
441 setbits_be32(&fm_eth->tx_port->fmbm_tcfg, FMBM_TCFG_EN);
442 /* re-enable transmission of frame */
443 fmc_tx_port_graceful_stop_disable(fm_eth);
444
445#ifdef CONFIG_PHYLIB
Codrin Ciubotariu6798c322015-01-12 14:08:29 +0200446 if (fm_eth->phydev) {
447 ret = phy_startup(fm_eth->phydev);
448 if (ret) {
449 printf("%s: Could not initialize\n",
450 fm_eth->phydev->dev->name);
451 return ret;
452 }
453 } else {
454 return 0;
Timur Tabi11af8d62012-07-09 08:52:43 +0000455 }
Kumar Galac916d7c2011-04-13 08:37:44 -0500456#else
457 fm_eth->phydev->speed = SPEED_1000;
458 fm_eth->phydev->link = 1;
459 fm_eth->phydev->duplex = DUPLEX_FULL;
460#endif
461
462 /* set the MAC-PHY mode */
463 mac->set_if_mode(mac, fm_eth->enet_if, fm_eth->phydev->speed);
464
465 if (!fm_eth->phydev->link)
466 printf("%s: No link.\n", fm_eth->phydev->dev->name);
467
468 return fm_eth->phydev->link ? 0 : -1;
469}
470
471static void fm_eth_halt(struct eth_device *dev)
472{
473 struct fm_eth *fm_eth;
474 struct fsl_enet_mac *mac;
475
476 fm_eth = (struct fm_eth *)dev->priv;
477 mac = fm_eth->mac;
478
479 /* graceful stop the transmission of frames */
480 fmc_tx_port_graceful_stop_enable(fm_eth);
481 /* disable bmi Tx port */
482 bmi_tx_port_disable(fm_eth->tx_port);
483 /* disable MAC rx/tx port */
484 mac->disable_mac(mac);
485 /* disable bmi Rx port */
486 bmi_rx_port_disable(fm_eth->rx_port);
487
Shaohui Xie29d8c812015-10-26 19:47:46 +0800488#ifdef CONFIG_PHYLIB
Codrin Ciubotariu6798c322015-01-12 14:08:29 +0200489 if (fm_eth->phydev)
490 phy_shutdown(fm_eth->phydev);
Shaohui Xie29d8c812015-10-26 19:47:46 +0800491#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500492}
493
Joe Hershbergere9df2012012-05-22 07:56:15 +0000494static int fm_eth_send(struct eth_device *dev, void *buf, int len)
Kumar Galac916d7c2011-04-13 08:37:44 -0500495{
496 struct fm_eth *fm_eth;
497 struct fm_port_global_pram *pram;
498 struct fm_port_bd *txbd, *txbd_base;
499 u16 offset_in;
500 int i;
501
502 fm_eth = (struct fm_eth *)dev->priv;
503 pram = fm_eth->tx_pram;
504 txbd = fm_eth->cur_txbd;
505
506 /* find one empty TxBD */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800507 for (i = 0; muram_readw(&txbd->status) & TxBD_READY; i++) {
Kumar Galac916d7c2011-04-13 08:37:44 -0500508 udelay(100);
509 if (i > 0x1000) {
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800510 printf("%s: Tx buffer not ready, txbd->status = 0x%x\n",
511 dev->name, muram_readw(&txbd->status));
Kumar Galac916d7c2011-04-13 08:37:44 -0500512 return 0;
513 }
514 }
515 /* setup TxBD */
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800516 muram_writew(&txbd->buf_ptr_hi, (u16)upper_32_bits(virt_to_phys(buf)));
517 out_be32(&txbd->buf_ptr_lo, lower_32_bits(virt_to_phys(buf)));
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800518 muram_writew(&txbd->len, len);
Kumar Galac916d7c2011-04-13 08:37:44 -0500519 sync();
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800520 muram_writew(&txbd->status, TxBD_READY | TxBD_LAST);
Kumar Galac916d7c2011-04-13 08:37:44 -0500521 sync();
522
523 /* update TxQD, let RISC to send the packet */
524 offset_in = muram_readw(&pram->txqd.offset_in);
525 offset_in += sizeof(struct fm_port_bd);
526 if (offset_in >= muram_readw(&pram->txqd.bd_ring_size))
527 offset_in = 0;
528 muram_writew(&pram->txqd.offset_in, offset_in);
529 sync();
530
531 /* wait for buffer to be transmitted */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800532 for (i = 0; muram_readw(&txbd->status) & TxBD_READY; i++) {
Kumar Galac916d7c2011-04-13 08:37:44 -0500533 udelay(100);
534 if (i > 0x10000) {
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800535 printf("%s: Tx error, txbd->status = 0x%x\n",
536 dev->name, muram_readw(&txbd->status));
Kumar Galac916d7c2011-04-13 08:37:44 -0500537 return 0;
538 }
539 }
540
541 /* advance the TxBD */
542 txbd++;
543 txbd_base = (struct fm_port_bd *)fm_eth->tx_bd_ring;
544 if (txbd >= (txbd_base + TX_BD_RING_SIZE))
545 txbd = txbd_base;
546 /* update current txbd */
547 fm_eth->cur_txbd = (void *)txbd;
548
549 return 1;
550}
551
552static int fm_eth_recv(struct eth_device *dev)
553{
554 struct fm_eth *fm_eth;
555 struct fm_port_global_pram *pram;
556 struct fm_port_bd *rxbd, *rxbd_base;
557 u16 status, len;
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800558 u32 buf_lo, buf_hi;
Kumar Galac916d7c2011-04-13 08:37:44 -0500559 u8 *data;
560 u16 offset_out;
Daniel Inderbitzin466f7752015-07-10 14:06:02 +0200561 int ret = 1;
Kumar Galac916d7c2011-04-13 08:37:44 -0500562
563 fm_eth = (struct fm_eth *)dev->priv;
564 pram = fm_eth->rx_pram;
565 rxbd = fm_eth->cur_rxbd;
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800566 status = muram_readw(&rxbd->status);
Kumar Galac916d7c2011-04-13 08:37:44 -0500567
568 while (!(status & RxBD_EMPTY)) {
569 if (!(status & RxBD_ERROR)) {
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800570 buf_hi = muram_readw(&rxbd->buf_ptr_hi);
571 buf_lo = in_be32(&rxbd->buf_ptr_lo);
572 data = (u8 *)((ulong)(buf_hi << 16) << 16 | buf_lo);
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800573 len = muram_readw(&rxbd->len);
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500574 net_process_received_packet(data, len);
Kumar Galac916d7c2011-04-13 08:37:44 -0500575 } else {
576 printf("%s: Rx error\n", dev->name);
Daniel Inderbitzin466f7752015-07-10 14:06:02 +0200577 ret = 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500578 }
579
580 /* clear the RxBDs */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800581 muram_writew(&rxbd->status, RxBD_EMPTY);
582 muram_writew(&rxbd->len, 0);
Kumar Galac916d7c2011-04-13 08:37:44 -0500583 sync();
584
585 /* advance RxBD */
586 rxbd++;
587 rxbd_base = (struct fm_port_bd *)fm_eth->rx_bd_ring;
588 if (rxbd >= (rxbd_base + RX_BD_RING_SIZE))
589 rxbd = rxbd_base;
590 /* read next status */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800591 status = muram_readw(&rxbd->status);
Kumar Galac916d7c2011-04-13 08:37:44 -0500592
593 /* update RxQD */
594 offset_out = muram_readw(&pram->rxqd.offset_out);
595 offset_out += sizeof(struct fm_port_bd);
596 if (offset_out >= muram_readw(&pram->rxqd.bd_ring_size))
597 offset_out = 0;
598 muram_writew(&pram->rxqd.offset_out, offset_out);
599 sync();
600 }
601 fm_eth->cur_rxbd = (void *)rxbd;
602
Daniel Inderbitzin466f7752015-07-10 14:06:02 +0200603 return ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500604}
605
606static int fm_eth_init_mac(struct fm_eth *fm_eth, struct ccsr_fman *reg)
607{
608 struct fsl_enet_mac *mac;
609 int num;
610 void *base, *phyregs = NULL;
611
612 num = fm_eth->num;
613
Roy Zang111fd192012-10-08 07:44:21 +0000614#ifdef CONFIG_SYS_FMAN_V3
Shengzhou Liucc19c252014-11-24 17:11:57 +0800615#ifndef CONFIG_FSL_FM_10GEC_REGULAR_NOTATION
Shengzhou Liu82a55c12013-11-22 17:39:09 +0800616 if (fm_eth->type == FM_ETH_10G_E) {
Shengzhou Liucc19c252014-11-24 17:11:57 +0800617 /* 10GEC1/10GEC2 use mEMAC9/mEMAC10 on T2080/T4240.
618 * 10GEC3/10GEC4 use mEMAC1/mEMAC2 on T2080.
619 * 10GEC1 uses mEMAC1 on T1024.
Shengzhou Liu82a55c12013-11-22 17:39:09 +0800620 * so it needs to change the num.
621 */
622 if (fm_eth->num >= 2)
623 num -= 2;
624 else
625 num += 8;
626 }
Shengzhou Liucc19c252014-11-24 17:11:57 +0800627#endif
Roy Zang111fd192012-10-08 07:44:21 +0000628 base = &reg->memac[num].fm_memac;
629 phyregs = &reg->memac[num].fm_memac_mdio;
630#else
Kumar Galac916d7c2011-04-13 08:37:44 -0500631 /* Get the mac registers base address */
632 if (fm_eth->type == FM_ETH_1G_E) {
633 base = &reg->mac_1g[num].fm_dtesc;
Timur Tabi30381712011-10-04 16:44:43 -0500634 phyregs = &reg->mac_1g[num].fm_mdio.miimcfg;
Kumar Galac916d7c2011-04-13 08:37:44 -0500635 } else {
636 base = &reg->mac_10g[num].fm_10gec;
637 phyregs = &reg->mac_10g[num].fm_10gec_mdio;
638 }
Roy Zang111fd192012-10-08 07:44:21 +0000639#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500640
641 /* alloc mac controller */
642 mac = malloc(sizeof(struct fsl_enet_mac));
643 if (!mac)
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800644 return -ENOMEM;
Kumar Galac916d7c2011-04-13 08:37:44 -0500645 memset(mac, 0, sizeof(struct fsl_enet_mac));
646
647 /* save the mac to fm_eth struct */
648 fm_eth->mac = mac;
649
Roy Zang111fd192012-10-08 07:44:21 +0000650#ifdef CONFIG_SYS_FMAN_V3
651 init_memac(mac, base, phyregs, MAX_RXBUF_LEN);
652#else
Kumar Galac916d7c2011-04-13 08:37:44 -0500653 if (fm_eth->type == FM_ETH_1G_E)
Timur Tabi30381712011-10-04 16:44:43 -0500654 init_dtsec(mac, base, phyregs, MAX_RXBUF_LEN);
Kumar Galac916d7c2011-04-13 08:37:44 -0500655 else
656 init_tgec(mac, base, phyregs, MAX_RXBUF_LEN);
Roy Zang111fd192012-10-08 07:44:21 +0000657#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500658
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800659 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500660}
661
662static int init_phy(struct eth_device *dev)
663{
664 struct fm_eth *fm_eth = dev->priv;
Shaohui Xie29d8c812015-10-26 19:47:46 +0800665#ifdef CONFIG_PHYLIB
Kumar Galac916d7c2011-04-13 08:37:44 -0500666 struct phy_device *phydev = NULL;
667 u32 supported;
Shaohui Xie29d8c812015-10-26 19:47:46 +0800668#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500669
Kumar Galac916d7c2011-04-13 08:37:44 -0500670 if (fm_eth->type == FM_ETH_1G_E)
671 dtsec_init_phy(dev);
672
Shaohui Xie29d8c812015-10-26 19:47:46 +0800673#ifdef CONFIG_PHYLIB
Kumar Galac916d7c2011-04-13 08:37:44 -0500674 if (fm_eth->bus) {
675 phydev = phy_connect(fm_eth->bus, fm_eth->phyaddr, dev,
676 fm_eth->enet_if);
Codrin Ciubotariu6798c322015-01-12 14:08:29 +0200677 if (!phydev) {
678 printf("Failed to connect\n");
679 return -1;
680 }
681 } else {
682 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500683 }
684
685 if (fm_eth->type == FM_ETH_1G_E) {
686 supported = (SUPPORTED_10baseT_Half |
687 SUPPORTED_10baseT_Full |
688 SUPPORTED_100baseT_Half |
689 SUPPORTED_100baseT_Full |
690 SUPPORTED_1000baseT_Full);
691 } else {
692 supported = SUPPORTED_10000baseT_Full;
693
694 if (tgec_is_fibre(dev))
695 phydev->port = PORT_FIBRE;
696 }
697
698 phydev->supported &= supported;
699 phydev->advertising = phydev->supported;
700
701 fm_eth->phydev = phydev;
702
703 phy_config(phydev);
704#endif
705
706 return 0;
707}
708
709int fm_eth_initialize(struct ccsr_fman *reg, struct fm_eth_info *info)
710{
711 struct eth_device *dev;
712 struct fm_eth *fm_eth;
713 int i, num = info->num;
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800714 int ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500715
716 /* alloc eth device */
717 dev = (struct eth_device *)malloc(sizeof(struct eth_device));
718 if (!dev)
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800719 return -ENOMEM;
Kumar Galac916d7c2011-04-13 08:37:44 -0500720 memset(dev, 0, sizeof(struct eth_device));
721
722 /* alloc the FMan ethernet private struct */
723 fm_eth = (struct fm_eth *)malloc(sizeof(struct fm_eth));
724 if (!fm_eth)
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800725 return -ENOMEM;
Kumar Galac916d7c2011-04-13 08:37:44 -0500726 memset(fm_eth, 0, sizeof(struct fm_eth));
727
728 /* save off some things we need from the info struct */
729 fm_eth->fm_index = info->index - 1; /* keep as 0 based for muram */
730 fm_eth->num = num;
731 fm_eth->type = info->type;
732
733 fm_eth->rx_port = (void *)&reg->port[info->rx_port_id - 1].fm_bmi;
734 fm_eth->tx_port = (void *)&reg->port[info->tx_port_id - 1].fm_bmi;
735
736 /* set the ethernet max receive length */
737 fm_eth->max_rx_len = MAX_RXBUF_LEN;
738
739 /* init global mac structure */
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800740 ret = fm_eth_init_mac(fm_eth, reg);
741 if (ret)
742 return ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500743
744 /* keep same as the manual, we call FMAN1, FMAN2, DTSEC1, DTSEC2, etc */
745 if (fm_eth->type == FM_ETH_1G_E)
746 sprintf(dev->name, "FM%d@DTSEC%d", info->index, num + 1);
747 else
748 sprintf(dev->name, "FM%d@TGEC%d", info->index, num + 1);
749
750 devlist[num_controllers++] = dev;
751 dev->iobase = 0;
752 dev->priv = (void *)fm_eth;
753 dev->init = fm_eth_open;
754 dev->halt = fm_eth_halt;
755 dev->send = fm_eth_send;
756 dev->recv = fm_eth_recv;
757 fm_eth->dev = dev;
758 fm_eth->bus = info->bus;
759 fm_eth->phyaddr = info->phy_addr;
760 fm_eth->enet_if = info->enet_if;
761
762 /* startup the FM im */
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800763 ret = fm_eth_startup(fm_eth);
764 if (ret)
765 return ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500766
Codrin Ciubotariu6798c322015-01-12 14:08:29 +0200767 init_phy(dev);
Kumar Galac916d7c2011-04-13 08:37:44 -0500768
769 /* clear the ethernet address */
770 for (i = 0; i < 6; i++)
771 dev->enetaddr[i] = 0;
772 eth_register(dev);
773
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800774 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500775}