blob: 24ca52e2dfb950c5e6562b8313d8fbb6a12870a0 [file] [log] [blame]
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -04001/*
2 * Ethernet driver for TI K2HK EVM.
3 *
4 * (C) Copyright 2012-2014
5 * Texas Instruments Incorporated, <www.ti.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9#include <common.h>
10#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -070011#include <console.h>
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040012
13#include <net.h>
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +030014#include <phy.h>
Khoronzhuk, Ivanc05d05e2014-10-17 21:01:15 +030015#include <errno.h>
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040016#include <miiphy.h>
17#include <malloc.h>
Khoronzhuk, Ivanef454712014-09-05 19:02:47 +030018#include <asm/ti-common/keystone_nav.h>
Khoronzhuk, Ivan0935cac2014-09-29 22:17:22 +030019#include <asm/ti-common/keystone_net.h>
Khoronzhuk, Ivana43febd2014-10-22 17:18:21 +030020#include <asm/ti-common/keystone_serdes.h>
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040021
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040022unsigned int emac_open;
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +030023static struct mii_dev *mdio_bus;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040024static unsigned int sys_has_mdio = 1;
25
26#ifdef KEYSTONE2_EMAC_GIG_ENABLE
27#define emac_gigabit_enable(x) keystone2_eth_gigabit_enable(x)
28#else
29#define emac_gigabit_enable(x) /* no gigabit to enable */
30#endif
31
32#define RX_BUFF_NUMS 24
33#define RX_BUFF_LEN 1520
34#define MAX_SIZE_STREAM_BUFFER RX_BUFF_LEN
Khoronzhuk, Ivanc05d05e2014-10-17 21:01:15 +030035#define SGMII_ANEG_TIMEOUT 4000
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040036
37static u8 rx_buffs[RX_BUFF_NUMS * RX_BUFF_LEN] __aligned(16);
38
39struct rx_buff_desc net_rx_buffs = {
40 .buff_ptr = rx_buffs,
41 .num_buffs = RX_BUFF_NUMS,
42 .buff_len = RX_BUFF_LEN,
43 .rx_flow = 22,
44};
45
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +053046#ifndef CONFIG_SOC_K2G
Khoronzhuk, Ivana43febd2014-10-22 17:18:21 +030047static void keystone2_net_serdes_setup(void);
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +053048#endif
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040049
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040050int keystone2_eth_read_mac_addr(struct eth_device *dev)
51{
52 struct eth_priv_t *eth_priv;
53 u32 maca = 0;
54 u32 macb = 0;
55
56 eth_priv = (struct eth_priv_t *)dev->priv;
57
58 /* Read the e-fuse mac address */
59 if (eth_priv->slave_port == 1) {
60 maca = __raw_readl(MAC_ID_BASE_ADDR);
61 macb = __raw_readl(MAC_ID_BASE_ADDR + 4);
62 }
63
64 dev->enetaddr[0] = (macb >> 8) & 0xff;
65 dev->enetaddr[1] = (macb >> 0) & 0xff;
66 dev->enetaddr[2] = (maca >> 24) & 0xff;
67 dev->enetaddr[3] = (maca >> 16) & 0xff;
68 dev->enetaddr[4] = (maca >> 8) & 0xff;
69 dev->enetaddr[5] = (maca >> 0) & 0xff;
70
71 return 0;
72}
73
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +030074/* MDIO */
75
76static int keystone2_mdio_reset(struct mii_dev *bus)
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040077{
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +030078 u_int32_t clkdiv;
79 struct mdio_regs *adap_mdio = bus->priv;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040080
81 clkdiv = (EMAC_MDIO_BUS_FREQ / EMAC_MDIO_CLOCK_FREQ) - 1;
82
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +030083 writel((clkdiv & 0xffff) | MDIO_CONTROL_ENABLE |
84 MDIO_CONTROL_FAULT | MDIO_CONTROL_FAULT_ENABLE,
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040085 &adap_mdio->control);
86
87 while (readl(&adap_mdio->control) & MDIO_CONTROL_IDLE)
88 ;
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +030089
90 return 0;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040091}
92
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +030093/**
94 * keystone2_mdio_read - read a PHY register via MDIO interface.
95 * Blocks until operation is complete.
96 */
97static int keystone2_mdio_read(struct mii_dev *bus,
98 int addr, int devad, int reg)
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040099{
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300100 int tmp;
101 struct mdio_regs *adap_mdio = bus->priv;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400102
103 while (readl(&adap_mdio->useraccess0) & MDIO_USERACCESS0_GO)
104 ;
105
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300106 writel(MDIO_USERACCESS0_GO | MDIO_USERACCESS0_WRITE_READ |
107 ((reg & 0x1f) << 21) | ((addr & 0x1f) << 16),
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400108 &adap_mdio->useraccess0);
109
110 /* Wait for command to complete */
111 while ((tmp = readl(&adap_mdio->useraccess0)) & MDIO_USERACCESS0_GO)
112 ;
113
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300114 if (tmp & MDIO_USERACCESS0_ACK)
115 return tmp & 0xffff;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400116
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400117 return -1;
118}
119
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300120/**
121 * keystone2_mdio_write - write to a PHY register via MDIO interface.
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400122 * Blocks until operation is complete.
123 */
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300124static int keystone2_mdio_write(struct mii_dev *bus,
125 int addr, int devad, int reg, u16 val)
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400126{
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300127 struct mdio_regs *adap_mdio = bus->priv;
128
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400129 while (readl(&adap_mdio->useraccess0) & MDIO_USERACCESS0_GO)
130 ;
131
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300132 writel(MDIO_USERACCESS0_GO | MDIO_USERACCESS0_WRITE_WRITE |
133 ((reg & 0x1f) << 21) | ((addr & 0x1f) << 16) |
134 (val & 0xffff), &adap_mdio->useraccess0);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400135
136 /* Wait for command to complete */
137 while (readl(&adap_mdio->useraccess0) & MDIO_USERACCESS0_GO)
138 ;
139
140 return 0;
141}
142
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400143static void __attribute__((unused))
144 keystone2_eth_gigabit_enable(struct eth_device *dev)
145{
146 u_int16_t data;
147 struct eth_priv_t *eth_priv = (struct eth_priv_t *)dev->priv;
148
149 if (sys_has_mdio) {
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300150 data = keystone2_mdio_read(mdio_bus, eth_priv->phy_addr,
151 MDIO_DEVAD_NONE, 0);
152 /* speed selection MSB */
153 if (!(data & (1 << 6)))
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400154 return;
155 }
156
157 /*
158 * Check if link detected is giga-bit
159 * If Gigabit mode detected, enable gigbit in MAC
160 */
Hao Zhangb2cfe322014-09-29 22:17:20 +0300161 writel(readl(DEVICE_EMACSL_BASE(eth_priv->slave_port - 1) +
162 CPGMACSL_REG_CTL) |
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400163 EMAC_MACCONTROL_GIGFORCE | EMAC_MACCONTROL_GIGABIT_ENABLE,
Hao Zhangb2cfe322014-09-29 22:17:20 +0300164 DEVICE_EMACSL_BASE(eth_priv->slave_port - 1) + CPGMACSL_REG_CTL);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400165}
166
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530167#ifdef CONFIG_SOC_K2G
168int keystone_rgmii_config(struct phy_device *phy_dev)
169{
170 unsigned int i, status;
171
172 i = 0;
173 do {
174 if (i > SGMII_ANEG_TIMEOUT) {
175 puts(" TIMEOUT !\n");
176 phy_dev->link = 0;
177 return 0;
178 }
179
180 if (ctrlc()) {
181 puts("user interrupt!\n");
182 phy_dev->link = 0;
183 return -EINTR;
184 }
185
186 if ((i++ % 500) == 0)
187 printf(".");
188
189 udelay(1000); /* 1 ms */
190 status = readl(RGMII_STATUS_REG);
191 } while (!(status & RGMII_REG_STATUS_LINK));
192
193 puts(" done\n");
194
195 return 0;
196}
197#else
Khoronzhuk, Ivanc05d05e2014-10-17 21:01:15 +0300198int keystone_sgmii_config(struct phy_device *phy_dev, int port, int interface)
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400199{
200 unsigned int i, status, mask;
201 unsigned int mr_adv_ability, control;
202
203 switch (interface) {
204 case SGMII_LINK_MAC_MAC_AUTONEG:
205 mr_adv_ability = (SGMII_REG_MR_ADV_ENABLE |
206 SGMII_REG_MR_ADV_LINK |
207 SGMII_REG_MR_ADV_FULL_DUPLEX |
208 SGMII_REG_MR_ADV_GIG_MODE);
209 control = (SGMII_REG_CONTROL_MASTER |
210 SGMII_REG_CONTROL_AUTONEG);
211
212 break;
213 case SGMII_LINK_MAC_PHY:
214 case SGMII_LINK_MAC_PHY_FORCED:
215 mr_adv_ability = SGMII_REG_MR_ADV_ENABLE;
216 control = SGMII_REG_CONTROL_AUTONEG;
217
218 break;
219 case SGMII_LINK_MAC_MAC_FORCED:
220 mr_adv_ability = (SGMII_REG_MR_ADV_ENABLE |
221 SGMII_REG_MR_ADV_LINK |
222 SGMII_REG_MR_ADV_FULL_DUPLEX |
223 SGMII_REG_MR_ADV_GIG_MODE);
224 control = SGMII_REG_CONTROL_MASTER;
225
226 break;
227 case SGMII_LINK_MAC_FIBER:
228 mr_adv_ability = 0x20;
229 control = SGMII_REG_CONTROL_AUTONEG;
230
231 break;
232 default:
233 mr_adv_ability = SGMII_REG_MR_ADV_ENABLE;
234 control = SGMII_REG_CONTROL_AUTONEG;
235 }
236
237 __raw_writel(0, SGMII_CTL_REG(port));
238
239 /*
240 * Wait for the SerDes pll to lock,
241 * but don't trap if lock is never read
242 */
243 for (i = 0; i < 1000; i++) {
244 udelay(2000);
245 status = __raw_readl(SGMII_STATUS_REG(port));
246 if ((status & SGMII_REG_STATUS_LOCK) != 0)
247 break;
248 }
249
250 __raw_writel(mr_adv_ability, SGMII_MRADV_REG(port));
251 __raw_writel(control, SGMII_CTL_REG(port));
252
253
254 mask = SGMII_REG_STATUS_LINK;
255
256 if (control & SGMII_REG_CONTROL_AUTONEG)
257 mask |= SGMII_REG_STATUS_AUTONEG;
258
Khoronzhuk, Ivanc05d05e2014-10-17 21:01:15 +0300259 status = __raw_readl(SGMII_STATUS_REG(port));
260 if ((status & mask) == mask)
261 return 0;
262
263 printf("\n%s Waiting for SGMII auto negotiation to complete",
264 phy_dev->dev->name);
265 while ((status & mask) != mask) {
266 /*
267 * Timeout reached ?
268 */
269 if (i > SGMII_ANEG_TIMEOUT) {
270 puts(" TIMEOUT !\n");
271 phy_dev->link = 0;
272 return 0;
273 }
274
275 if (ctrlc()) {
276 puts("user interrupt!\n");
277 phy_dev->link = 0;
278 return -EINTR;
279 }
280
281 if ((i++ % 500) == 0)
282 printf(".");
283
284 udelay(1000); /* 1 ms */
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400285 status = __raw_readl(SGMII_STATUS_REG(port));
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400286 }
Khoronzhuk, Ivanc05d05e2014-10-17 21:01:15 +0300287 puts(" done\n");
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400288
289 return 0;
290}
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530291#endif
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400292
293int mac_sl_reset(u32 port)
294{
295 u32 i, v;
296
297 if (port >= DEVICE_N_GMACSL_PORTS)
298 return GMACSL_RET_INVALID_PORT;
299
300 /* Set the soft reset bit */
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300301 writel(CPGMAC_REG_RESET_VAL_RESET,
302 DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_RESET);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400303
304 /* Wait for the bit to clear */
305 for (i = 0; i < DEVICE_EMACSL_RESET_POLL_COUNT; i++) {
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300306 v = readl(DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_RESET);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400307 if ((v & CPGMAC_REG_RESET_VAL_RESET_MASK) !=
308 CPGMAC_REG_RESET_VAL_RESET)
309 return GMACSL_RET_OK;
310 }
311
312 /* Timeout on the reset */
313 return GMACSL_RET_WARN_RESET_INCOMPLETE;
314}
315
316int mac_sl_config(u_int16_t port, struct mac_sl_cfg *cfg)
317{
318 u32 v, i;
319 int ret = GMACSL_RET_OK;
320
321 if (port >= DEVICE_N_GMACSL_PORTS)
322 return GMACSL_RET_INVALID_PORT;
323
324 if (cfg->max_rx_len > CPGMAC_REG_MAXLEN_LEN) {
325 cfg->max_rx_len = CPGMAC_REG_MAXLEN_LEN;
326 ret = GMACSL_RET_WARN_MAXLEN_TOO_BIG;
327 }
328
329 /* Must wait if the device is undergoing reset */
330 for (i = 0; i < DEVICE_EMACSL_RESET_POLL_COUNT; i++) {
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300331 v = readl(DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_RESET);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400332 if ((v & CPGMAC_REG_RESET_VAL_RESET_MASK) !=
333 CPGMAC_REG_RESET_VAL_RESET)
334 break;
335 }
336
337 if (i == DEVICE_EMACSL_RESET_POLL_COUNT)
338 return GMACSL_RET_CONFIG_FAIL_RESET_ACTIVE;
339
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300340 writel(cfg->max_rx_len, DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_MAXLEN);
341 writel(cfg->ctl, DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_CTL);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400342
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530343#ifndef CONFIG_SOC_K2HK
Khoronzhuk, Ivanff11c762014-10-17 21:01:14 +0300344 /* Map RX packet flow priority to 0 */
345 writel(0, DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_RX_PRI_MAP);
346#endif
347
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400348 return ret;
349}
350
351int ethss_config(u32 ctl, u32 max_pkt_size)
352{
353 u32 i;
354
355 /* Max length register */
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300356 writel(max_pkt_size, DEVICE_CPSW_BASE + CPSW_REG_MAXLEN);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400357
358 /* Control register */
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300359 writel(ctl, DEVICE_CPSW_BASE + CPSW_REG_CTL);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400360
361 /* All statistics enabled by default */
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300362 writel(CPSW_REG_VAL_STAT_ENABLE_ALL,
363 DEVICE_CPSW_BASE + CPSW_REG_STAT_PORT_EN);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400364
365 /* Reset and enable the ALE */
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300366 writel(CPSW_REG_VAL_ALE_CTL_RESET_AND_ENABLE |
367 CPSW_REG_VAL_ALE_CTL_BYPASS,
368 DEVICE_CPSW_BASE + CPSW_REG_ALE_CONTROL);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400369
370 /* All ports put into forward mode */
371 for (i = 0; i < DEVICE_CPSW_NUM_PORTS; i++)
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300372 writel(CPSW_REG_VAL_PORTCTL_FORWARD_MODE,
373 DEVICE_CPSW_BASE + CPSW_REG_ALE_PORTCTL(i));
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400374
375 return 0;
376}
377
378int ethss_start(void)
379{
380 int i;
381 struct mac_sl_cfg cfg;
382
383 cfg.max_rx_len = MAX_SIZE_STREAM_BUFFER;
384 cfg.ctl = GMACSL_ENABLE | GMACSL_RX_ENABLE_EXT_CTL;
385
386 for (i = 0; i < DEVICE_N_GMACSL_PORTS; i++) {
387 mac_sl_reset(i);
388 mac_sl_config(i, &cfg);
389 }
390
391 return 0;
392}
393
394int ethss_stop(void)
395{
396 int i;
397
398 for (i = 0; i < DEVICE_N_GMACSL_PORTS; i++)
399 mac_sl_reset(i);
400
401 return 0;
402}
403
404int32_t cpmac_drv_send(u32 *buffer, int num_bytes, int slave_port_num)
405{
406 if (num_bytes < EMAC_MIN_ETHERNET_PKT_SIZE)
407 num_bytes = EMAC_MIN_ETHERNET_PKT_SIZE;
408
Khoronzhuk, Ivan9ea90212014-09-05 19:02:48 +0300409 return ksnav_send(&netcp_pktdma, buffer,
410 num_bytes, (slave_port_num) << 16);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400411}
412
413/* Eth device open */
414static int keystone2_eth_open(struct eth_device *dev, bd_t *bis)
415{
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400416 struct eth_priv_t *eth_priv = (struct eth_priv_t *)dev->priv;
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300417 struct phy_device *phy_dev = eth_priv->phy_dev;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400418
419 debug("+ emac_open\n");
420
421 net_rx_buffs.rx_flow = eth_priv->rx_flow;
422
423 sys_has_mdio =
424 (eth_priv->sgmii_link_type == SGMII_LINK_MAC_PHY) ? 1 : 0;
425
Khoronzhuk, Ivan6c0fb412014-10-29 13:09:33 +0200426 if (sys_has_mdio)
427 keystone2_mdio_reset(mdio_bus);
428
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530429#ifdef CONFIG_SOC_K2G
430 keystone_rgmii_config(phy_dev);
431#else
Khoronzhuk, Ivanc05d05e2014-10-17 21:01:15 +0300432 keystone_sgmii_config(phy_dev, eth_priv->slave_port - 1,
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400433 eth_priv->sgmii_link_type);
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530434#endif
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400435
436 udelay(10000);
437
438 /* On chip switch configuration */
439 ethss_config(target_get_switch_ctl(), SWITCH_MAX_PKT_SIZE);
440
441 /* TODO: add error handling code */
442 if (qm_init()) {
443 printf("ERROR: qm_init()\n");
444 return -1;
445 }
Khoronzhuk, Ivan9ea90212014-09-05 19:02:48 +0300446 if (ksnav_init(&netcp_pktdma, &net_rx_buffs)) {
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400447 qm_close();
448 printf("ERROR: netcp_init()\n");
449 return -1;
450 }
451
452 /*
453 * Streaming switch configuration. If not present this
454 * statement is defined to void in target.h.
455 * If present this is usually defined to a series of register writes
456 */
457 hw_config_streaming_switch();
458
459 if (sys_has_mdio) {
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300460 keystone2_mdio_reset(mdio_bus);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400461
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300462 phy_startup(phy_dev);
463 if (phy_dev->link == 0) {
Khoronzhuk, Ivan9ea90212014-09-05 19:02:48 +0300464 ksnav_close(&netcp_pktdma);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400465 qm_close();
466 return -1;
467 }
468 }
469
470 emac_gigabit_enable(dev);
471
472 ethss_start();
473
474 debug("- emac_open\n");
475
476 emac_open = 1;
477
478 return 0;
479}
480
481/* Eth device close */
482void keystone2_eth_close(struct eth_device *dev)
483{
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300484 struct eth_priv_t *eth_priv = (struct eth_priv_t *)dev->priv;
485 struct phy_device *phy_dev = eth_priv->phy_dev;
486
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400487 debug("+ emac_close\n");
488
489 if (!emac_open)
490 return;
491
492 ethss_stop();
493
Khoronzhuk, Ivan9ea90212014-09-05 19:02:48 +0300494 ksnav_close(&netcp_pktdma);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400495 qm_close();
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300496 phy_shutdown(phy_dev);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400497
498 emac_open = 0;
499
500 debug("- emac_close\n");
501}
502
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400503/*
504 * This function sends a single packet on the network and returns
505 * positive number (number of bytes transmitted) or negative for error
506 */
507static int keystone2_eth_send_packet(struct eth_device *dev,
508 void *packet, int length)
509{
510 int ret_status = -1;
511 struct eth_priv_t *eth_priv = (struct eth_priv_t *)dev->priv;
Khoronzhuk, Ivana4d2ade2014-10-17 20:44:36 +0300512 struct phy_device *phy_dev = eth_priv->phy_dev;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400513
Khoronzhuk, Ivana4d2ade2014-10-17 20:44:36 +0300514 genphy_update_link(phy_dev);
515 if (phy_dev->link == 0)
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400516 return -1;
517
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400518 if (cpmac_drv_send((u32 *)packet, length, eth_priv->slave_port) != 0)
519 return ret_status;
520
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400521 return length;
522}
523
524/*
525 * This function handles receipt of a packet from the network
526 */
527static int keystone2_eth_rcv_packet(struct eth_device *dev)
528{
529 void *hd;
530 int pkt_size;
531 u32 *pkt;
532
Khoronzhuk, Ivan9ea90212014-09-05 19:02:48 +0300533 hd = ksnav_recv(&netcp_pktdma, &pkt, &pkt_size);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400534 if (hd == NULL)
535 return 0;
536
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500537 net_process_received_packet((uchar *)pkt, pkt_size);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400538
Khoronzhuk, Ivan9ea90212014-09-05 19:02:48 +0300539 ksnav_release_rxhd(&netcp_pktdma, hd);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400540
541 return pkt_size;
542}
543
Vitaly Andrianov5031ca52015-07-08 11:56:01 -0400544#ifdef CONFIG_MCAST_TFTP
545static int keystone2_eth_bcast_addr(struct eth_device *dev, u32 ip, u8 set)
546{
547 return 0;
548}
549#endif
550
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400551/*
552 * This function initializes the EMAC hardware.
553 */
554int keystone2_emac_initialize(struct eth_priv_t *eth_priv)
555{
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300556 int res;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400557 struct eth_device *dev;
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300558 struct phy_device *phy_dev;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400559
560 dev = malloc(sizeof(struct eth_device));
561 if (dev == NULL)
562 return -1;
563
564 memset(dev, 0, sizeof(struct eth_device));
565
566 strcpy(dev->name, eth_priv->int_name);
567 dev->priv = eth_priv;
568
569 keystone2_eth_read_mac_addr(dev);
570
571 dev->iobase = 0;
572 dev->init = keystone2_eth_open;
573 dev->halt = keystone2_eth_close;
574 dev->send = keystone2_eth_send_packet;
575 dev->recv = keystone2_eth_rcv_packet;
Vitaly Andrianov5031ca52015-07-08 11:56:01 -0400576#ifdef CONFIG_MCAST_TFTP
577 dev->mcast = keystone2_eth_bcast_addr;
578#endif
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400579
580 eth_register(dev);
581
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300582 /* Register MDIO bus if it's not registered yet */
583 if (!mdio_bus) {
584 mdio_bus = mdio_alloc();
585 mdio_bus->read = keystone2_mdio_read;
586 mdio_bus->write = keystone2_mdio_write;
587 mdio_bus->reset = keystone2_mdio_reset;
588 mdio_bus->priv = (void *)EMAC_MDIO_BASE_ADDR;
589 sprintf(mdio_bus->name, "ethernet-mdio");
590
591 res = mdio_register(mdio_bus);
592 if (res)
593 return res;
594 }
595
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530596#ifndef CONFIG_SOC_K2G
Vitaly Andrianov312aca42015-02-11 14:05:41 -0500597 keystone2_net_serdes_setup();
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530598#endif
Vitaly Andrianov312aca42015-02-11 14:05:41 -0500599
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300600 /* Create phy device and bind it with driver */
601#ifdef CONFIG_KSNET_MDIO_PHY_CONFIG_ENABLE
602 phy_dev = phy_connect(mdio_bus, eth_priv->phy_addr,
Mugunthan V Nbf7bd4e2015-09-19 16:26:48 +0530603 dev, eth_priv->phy_if);
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300604 phy_config(phy_dev);
605#else
606 phy_dev = phy_find_by_mask(mdio_bus, 1 << eth_priv->phy_addr,
Mugunthan V Nbf7bd4e2015-09-19 16:26:48 +0530607 eth_priv->phy_if);
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300608 phy_dev->dev = dev;
609#endif
610 eth_priv->phy_dev = phy_dev;
611
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400612 return 0;
613}
614
Hao Zhang92a16c82014-10-22 17:18:23 +0300615struct ks2_serdes ks2_serdes_sgmii_156p25mhz = {
616 .clk = SERDES_CLOCK_156P25M,
617 .rate = SERDES_RATE_5G,
618 .rate_mode = SERDES_QUARTER_RATE,
619 .intf = SERDES_PHY_SGMII,
620 .loopback = 0,
621};
622
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530623#ifndef CONFIG_SOC_K2G
Khoronzhuk, Ivana43febd2014-10-22 17:18:21 +0300624static void keystone2_net_serdes_setup(void)
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400625{
Hao Zhang92a16c82014-10-22 17:18:23 +0300626 ks2_serdes_init(CONFIG_KSNET_SERDES_SGMII_BASE,
627 &ks2_serdes_sgmii_156p25mhz,
628 CONFIG_KSNET_SERDES_LANES_PER_SGMII);
629
Khoronzhuk, Ivan87ac27b2014-10-29 13:09:32 +0200630#if defined(CONFIG_SOC_K2E) || defined(CONFIG_SOC_K2L)
Khoronzhuk, Ivan3c615022014-10-17 21:01:13 +0300631 ks2_serdes_init(CONFIG_KSNET_SERDES_SGMII2_BASE,
632 &ks2_serdes_sgmii_156p25mhz,
633 CONFIG_KSNET_SERDES_LANES_PER_SGMII);
634#endif
635
Hao Zhang92a16c82014-10-22 17:18:23 +0300636 /* wait till setup */
637 udelay(5000);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400638}
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530639#endif