blob: a5120e01ad36e064d1ef77534819e2943c662cff [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
Mugunthan V N6599f362016-02-02 15:51:33 +053013#include <dm.h>
Mugunthan V Na61f6a52016-08-02 12:01:12 +053014#include <dm/lists.h>
Mugunthan V N6599f362016-02-02 15:51:33 +053015
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040016#include <net.h>
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +030017#include <phy.h>
Khoronzhuk, Ivanc05d05e2014-10-17 21:01:15 +030018#include <errno.h>
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040019#include <miiphy.h>
20#include <malloc.h>
Khoronzhuk, Ivanef454712014-09-05 19:02:47 +030021#include <asm/ti-common/keystone_nav.h>
Khoronzhuk, Ivan0935cac2014-09-29 22:17:22 +030022#include <asm/ti-common/keystone_net.h>
Khoronzhuk, Ivana43febd2014-10-22 17:18:21 +030023#include <asm/ti-common/keystone_serdes.h>
Mugunthan V N6599f362016-02-02 15:51:33 +053024#include <asm/arch/psc_defs.h>
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040025
Mugunthan V N6599f362016-02-02 15:51:33 +053026DECLARE_GLOBAL_DATA_PTR;
27
28#ifndef CONFIG_DM_ETH
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040029unsigned int emac_open;
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +030030static struct mii_dev *mdio_bus;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040031static unsigned int sys_has_mdio = 1;
Mugunthan V N6599f362016-02-02 15:51:33 +053032#endif
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040033
34#ifdef KEYSTONE2_EMAC_GIG_ENABLE
35#define emac_gigabit_enable(x) keystone2_eth_gigabit_enable(x)
36#else
37#define emac_gigabit_enable(x) /* no gigabit to enable */
38#endif
39
40#define RX_BUFF_NUMS 24
41#define RX_BUFF_LEN 1520
42#define MAX_SIZE_STREAM_BUFFER RX_BUFF_LEN
Khoronzhuk, Ivanc05d05e2014-10-17 21:01:15 +030043#define SGMII_ANEG_TIMEOUT 4000
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040044
45static u8 rx_buffs[RX_BUFF_NUMS * RX_BUFF_LEN] __aligned(16);
46
Mugunthan V N6599f362016-02-02 15:51:33 +053047#ifndef CONFIG_DM_ETH
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040048struct rx_buff_desc net_rx_buffs = {
49 .buff_ptr = rx_buffs,
50 .num_buffs = RX_BUFF_NUMS,
51 .buff_len = RX_BUFF_LEN,
52 .rx_flow = 22,
53};
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +053054#endif
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040055
Mugunthan V N6599f362016-02-02 15:51:33 +053056#ifdef CONFIG_DM_ETH
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040057
Mugunthan V N6599f362016-02-02 15:51:33 +053058enum link_type {
Mugunthan V N1de40662016-08-11 20:04:03 +053059 LINK_TYPE_SGMII_MAC_TO_MAC_AUTO = 0,
60 LINK_TYPE_SGMII_MAC_TO_PHY_MODE = 1,
61 LINK_TYPE_SGMII_MAC_TO_MAC_FORCED_MODE = 2,
62 LINK_TYPE_SGMII_MAC_TO_FIBRE_MODE = 3,
63 LINK_TYPE_SGMII_MAC_TO_PHY_NO_MDIO_MODE = 4,
64 LINK_TYPE_RGMII_LINK_MAC_PHY = 5,
65 LINK_TYPE_RGMII_LINK_MAC_MAC_FORCED = 6,
66 LINK_TYPE_RGMII_LINK_MAC_PHY_NO_MDIO = 7,
67 LINK_TYPE_10G_MAC_TO_PHY_MODE = 10,
68 LINK_TYPE_10G_MAC_TO_MAC_FORCED_MODE = 11,
Mugunthan V N6599f362016-02-02 15:51:33 +053069};
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040070
Mugunthan V N6599f362016-02-02 15:51:33 +053071#define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \
72 ((mac)[2] << 16) | ((mac)[3] << 24))
73#define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8))
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040074
Mugunthan V N6599f362016-02-02 15:51:33 +053075#ifdef CONFIG_KSNET_NETCP_V1_0
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -040076
Mugunthan V N6599f362016-02-02 15:51:33 +053077#define EMAC_EMACSW_BASE_OFS 0x90800
78#define EMAC_EMACSW_PORT_BASE_OFS (EMAC_EMACSW_BASE_OFS + 0x60)
79
80/* CPSW Switch slave registers */
81#define CPGMACSL_REG_SA_LO 0x10
82#define CPGMACSL_REG_SA_HI 0x14
83
84#define DEVICE_EMACSW_BASE(base, x) ((base) + EMAC_EMACSW_PORT_BASE_OFS + \
85 (x) * 0x30)
86
87#elif defined CONFIG_KSNET_NETCP_V1_5
88
89#define EMAC_EMACSW_PORT_BASE_OFS 0x222000
90
91/* CPSW Switch slave registers */
92#define CPGMACSL_REG_SA_LO 0x308
93#define CPGMACSL_REG_SA_HI 0x30c
94
95#define DEVICE_EMACSW_BASE(base, x) ((base) + EMAC_EMACSW_PORT_BASE_OFS + \
96 (x) * 0x1000)
97
98#endif
99
100
101struct ks2_eth_priv {
102 struct udevice *dev;
103 struct phy_device *phydev;
104 struct mii_dev *mdio_bus;
105 int phy_addr;
106 phy_interface_t phy_if;
107 int sgmii_link_type;
108 void *mdio_base;
109 struct rx_buff_desc net_rx_buffs;
110 struct pktdma_cfg *netcp_pktdma;
111 void *hd;
112 int slave_port;
113 enum link_type link_type;
114 bool emac_open;
115 bool has_mdio;
116};
117#endif
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400118
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300119/* MDIO */
120
121static int keystone2_mdio_reset(struct mii_dev *bus)
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400122{
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300123 u_int32_t clkdiv;
124 struct mdio_regs *adap_mdio = bus->priv;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400125
126 clkdiv = (EMAC_MDIO_BUS_FREQ / EMAC_MDIO_CLOCK_FREQ) - 1;
127
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300128 writel((clkdiv & 0xffff) | MDIO_CONTROL_ENABLE |
129 MDIO_CONTROL_FAULT | MDIO_CONTROL_FAULT_ENABLE,
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400130 &adap_mdio->control);
131
132 while (readl(&adap_mdio->control) & MDIO_CONTROL_IDLE)
133 ;
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300134
135 return 0;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400136}
137
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300138/**
139 * keystone2_mdio_read - read a PHY register via MDIO interface.
140 * Blocks until operation is complete.
141 */
142static int keystone2_mdio_read(struct mii_dev *bus,
143 int addr, int devad, int reg)
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400144{
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300145 int tmp;
146 struct mdio_regs *adap_mdio = bus->priv;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400147
148 while (readl(&adap_mdio->useraccess0) & MDIO_USERACCESS0_GO)
149 ;
150
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300151 writel(MDIO_USERACCESS0_GO | MDIO_USERACCESS0_WRITE_READ |
152 ((reg & 0x1f) << 21) | ((addr & 0x1f) << 16),
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400153 &adap_mdio->useraccess0);
154
155 /* Wait for command to complete */
156 while ((tmp = readl(&adap_mdio->useraccess0)) & MDIO_USERACCESS0_GO)
157 ;
158
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300159 if (tmp & MDIO_USERACCESS0_ACK)
160 return tmp & 0xffff;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400161
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400162 return -1;
163}
164
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300165/**
166 * keystone2_mdio_write - write to a PHY register via MDIO interface.
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400167 * Blocks until operation is complete.
168 */
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300169static int keystone2_mdio_write(struct mii_dev *bus,
170 int addr, int devad, int reg, u16 val)
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400171{
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300172 struct mdio_regs *adap_mdio = bus->priv;
173
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400174 while (readl(&adap_mdio->useraccess0) & MDIO_USERACCESS0_GO)
175 ;
176
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300177 writel(MDIO_USERACCESS0_GO | MDIO_USERACCESS0_WRITE_WRITE |
178 ((reg & 0x1f) << 21) | ((addr & 0x1f) << 16) |
179 (val & 0xffff), &adap_mdio->useraccess0);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400180
181 /* Wait for command to complete */
182 while (readl(&adap_mdio->useraccess0) & MDIO_USERACCESS0_GO)
183 ;
184
185 return 0;
186}
187
Mugunthan V N6599f362016-02-02 15:51:33 +0530188#ifndef CONFIG_DM_ETH
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400189static void __attribute__((unused))
190 keystone2_eth_gigabit_enable(struct eth_device *dev)
191{
192 u_int16_t data;
193 struct eth_priv_t *eth_priv = (struct eth_priv_t *)dev->priv;
194
195 if (sys_has_mdio) {
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300196 data = keystone2_mdio_read(mdio_bus, eth_priv->phy_addr,
197 MDIO_DEVAD_NONE, 0);
198 /* speed selection MSB */
199 if (!(data & (1 << 6)))
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400200 return;
201 }
202
203 /*
204 * Check if link detected is giga-bit
205 * If Gigabit mode detected, enable gigbit in MAC
206 */
Hao Zhangb2cfe322014-09-29 22:17:20 +0300207 writel(readl(DEVICE_EMACSL_BASE(eth_priv->slave_port - 1) +
208 CPGMACSL_REG_CTL) |
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400209 EMAC_MACCONTROL_GIGFORCE | EMAC_MACCONTROL_GIGABIT_ENABLE,
Hao Zhangb2cfe322014-09-29 22:17:20 +0300210 DEVICE_EMACSL_BASE(eth_priv->slave_port - 1) + CPGMACSL_REG_CTL);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400211}
Mugunthan V N6599f362016-02-02 15:51:33 +0530212#else
213static void __attribute__((unused))
214 keystone2_eth_gigabit_enable(struct udevice *dev)
215{
216 struct ks2_eth_priv *priv = dev_get_priv(dev);
217 u_int16_t data;
218
219 if (priv->has_mdio) {
220 data = keystone2_mdio_read(priv->mdio_bus, priv->phy_addr,
221 MDIO_DEVAD_NONE, 0);
222 /* speed selection MSB */
223 if (!(data & (1 << 6)))
224 return;
225 }
226
227 /*
228 * Check if link detected is giga-bit
229 * If Gigabit mode detected, enable gigbit in MAC
230 */
231 writel(readl(DEVICE_EMACSL_BASE(priv->slave_port - 1) +
232 CPGMACSL_REG_CTL) |
233 EMAC_MACCONTROL_GIGFORCE | EMAC_MACCONTROL_GIGABIT_ENABLE,
234 DEVICE_EMACSL_BASE(priv->slave_port - 1) + CPGMACSL_REG_CTL);
235}
236#endif
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400237
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530238#ifdef CONFIG_SOC_K2G
239int keystone_rgmii_config(struct phy_device *phy_dev)
240{
241 unsigned int i, status;
242
243 i = 0;
244 do {
245 if (i > SGMII_ANEG_TIMEOUT) {
246 puts(" TIMEOUT !\n");
247 phy_dev->link = 0;
248 return 0;
249 }
250
251 if (ctrlc()) {
252 puts("user interrupt!\n");
253 phy_dev->link = 0;
254 return -EINTR;
255 }
256
257 if ((i++ % 500) == 0)
258 printf(".");
259
260 udelay(1000); /* 1 ms */
261 status = readl(RGMII_STATUS_REG);
262 } while (!(status & RGMII_REG_STATUS_LINK));
263
264 puts(" done\n");
265
266 return 0;
267}
268#else
Khoronzhuk, Ivanc05d05e2014-10-17 21:01:15 +0300269int keystone_sgmii_config(struct phy_device *phy_dev, int port, int interface)
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400270{
271 unsigned int i, status, mask;
272 unsigned int mr_adv_ability, control;
273
274 switch (interface) {
275 case SGMII_LINK_MAC_MAC_AUTONEG:
276 mr_adv_ability = (SGMII_REG_MR_ADV_ENABLE |
277 SGMII_REG_MR_ADV_LINK |
278 SGMII_REG_MR_ADV_FULL_DUPLEX |
279 SGMII_REG_MR_ADV_GIG_MODE);
280 control = (SGMII_REG_CONTROL_MASTER |
281 SGMII_REG_CONTROL_AUTONEG);
282
283 break;
284 case SGMII_LINK_MAC_PHY:
285 case SGMII_LINK_MAC_PHY_FORCED:
286 mr_adv_ability = SGMII_REG_MR_ADV_ENABLE;
287 control = SGMII_REG_CONTROL_AUTONEG;
288
289 break;
290 case SGMII_LINK_MAC_MAC_FORCED:
291 mr_adv_ability = (SGMII_REG_MR_ADV_ENABLE |
292 SGMII_REG_MR_ADV_LINK |
293 SGMII_REG_MR_ADV_FULL_DUPLEX |
294 SGMII_REG_MR_ADV_GIG_MODE);
295 control = SGMII_REG_CONTROL_MASTER;
296
297 break;
298 case SGMII_LINK_MAC_FIBER:
299 mr_adv_ability = 0x20;
300 control = SGMII_REG_CONTROL_AUTONEG;
301
302 break;
303 default:
304 mr_adv_ability = SGMII_REG_MR_ADV_ENABLE;
305 control = SGMII_REG_CONTROL_AUTONEG;
306 }
307
308 __raw_writel(0, SGMII_CTL_REG(port));
309
310 /*
311 * Wait for the SerDes pll to lock,
312 * but don't trap if lock is never read
313 */
314 for (i = 0; i < 1000; i++) {
315 udelay(2000);
316 status = __raw_readl(SGMII_STATUS_REG(port));
317 if ((status & SGMII_REG_STATUS_LOCK) != 0)
318 break;
319 }
320
321 __raw_writel(mr_adv_ability, SGMII_MRADV_REG(port));
322 __raw_writel(control, SGMII_CTL_REG(port));
323
324
325 mask = SGMII_REG_STATUS_LINK;
326
327 if (control & SGMII_REG_CONTROL_AUTONEG)
328 mask |= SGMII_REG_STATUS_AUTONEG;
329
Khoronzhuk, Ivanc05d05e2014-10-17 21:01:15 +0300330 status = __raw_readl(SGMII_STATUS_REG(port));
331 if ((status & mask) == mask)
332 return 0;
333
334 printf("\n%s Waiting for SGMII auto negotiation to complete",
335 phy_dev->dev->name);
336 while ((status & mask) != mask) {
337 /*
338 * Timeout reached ?
339 */
340 if (i > SGMII_ANEG_TIMEOUT) {
341 puts(" TIMEOUT !\n");
342 phy_dev->link = 0;
343 return 0;
344 }
345
346 if (ctrlc()) {
347 puts("user interrupt!\n");
348 phy_dev->link = 0;
349 return -EINTR;
350 }
351
352 if ((i++ % 500) == 0)
353 printf(".");
354
355 udelay(1000); /* 1 ms */
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400356 status = __raw_readl(SGMII_STATUS_REG(port));
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400357 }
Khoronzhuk, Ivanc05d05e2014-10-17 21:01:15 +0300358 puts(" done\n");
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400359
360 return 0;
361}
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530362#endif
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400363
364int mac_sl_reset(u32 port)
365{
366 u32 i, v;
367
368 if (port >= DEVICE_N_GMACSL_PORTS)
369 return GMACSL_RET_INVALID_PORT;
370
371 /* Set the soft reset bit */
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300372 writel(CPGMAC_REG_RESET_VAL_RESET,
373 DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_RESET);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400374
375 /* Wait for the bit to clear */
376 for (i = 0; i < DEVICE_EMACSL_RESET_POLL_COUNT; i++) {
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300377 v = readl(DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_RESET);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400378 if ((v & CPGMAC_REG_RESET_VAL_RESET_MASK) !=
379 CPGMAC_REG_RESET_VAL_RESET)
380 return GMACSL_RET_OK;
381 }
382
383 /* Timeout on the reset */
384 return GMACSL_RET_WARN_RESET_INCOMPLETE;
385}
386
387int mac_sl_config(u_int16_t port, struct mac_sl_cfg *cfg)
388{
389 u32 v, i;
390 int ret = GMACSL_RET_OK;
391
392 if (port >= DEVICE_N_GMACSL_PORTS)
393 return GMACSL_RET_INVALID_PORT;
394
395 if (cfg->max_rx_len > CPGMAC_REG_MAXLEN_LEN) {
396 cfg->max_rx_len = CPGMAC_REG_MAXLEN_LEN;
397 ret = GMACSL_RET_WARN_MAXLEN_TOO_BIG;
398 }
399
400 /* Must wait if the device is undergoing reset */
401 for (i = 0; i < DEVICE_EMACSL_RESET_POLL_COUNT; i++) {
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300402 v = readl(DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_RESET);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400403 if ((v & CPGMAC_REG_RESET_VAL_RESET_MASK) !=
404 CPGMAC_REG_RESET_VAL_RESET)
405 break;
406 }
407
408 if (i == DEVICE_EMACSL_RESET_POLL_COUNT)
409 return GMACSL_RET_CONFIG_FAIL_RESET_ACTIVE;
410
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300411 writel(cfg->max_rx_len, DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_MAXLEN);
412 writel(cfg->ctl, DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_CTL);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400413
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530414#ifndef CONFIG_SOC_K2HK
Khoronzhuk, Ivanff11c762014-10-17 21:01:14 +0300415 /* Map RX packet flow priority to 0 */
416 writel(0, DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_RX_PRI_MAP);
417#endif
418
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400419 return ret;
420}
421
422int ethss_config(u32 ctl, u32 max_pkt_size)
423{
424 u32 i;
425
426 /* Max length register */
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300427 writel(max_pkt_size, DEVICE_CPSW_BASE + CPSW_REG_MAXLEN);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400428
429 /* Control register */
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300430 writel(ctl, DEVICE_CPSW_BASE + CPSW_REG_CTL);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400431
432 /* All statistics enabled by default */
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300433 writel(CPSW_REG_VAL_STAT_ENABLE_ALL,
434 DEVICE_CPSW_BASE + CPSW_REG_STAT_PORT_EN);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400435
436 /* Reset and enable the ALE */
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300437 writel(CPSW_REG_VAL_ALE_CTL_RESET_AND_ENABLE |
438 CPSW_REG_VAL_ALE_CTL_BYPASS,
439 DEVICE_CPSW_BASE + CPSW_REG_ALE_CONTROL);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400440
441 /* All ports put into forward mode */
442 for (i = 0; i < DEVICE_CPSW_NUM_PORTS; i++)
Khoronzhuk, Ivane6c94282014-08-28 16:07:45 +0300443 writel(CPSW_REG_VAL_PORTCTL_FORWARD_MODE,
444 DEVICE_CPSW_BASE + CPSW_REG_ALE_PORTCTL(i));
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400445
446 return 0;
447}
448
449int ethss_start(void)
450{
451 int i;
452 struct mac_sl_cfg cfg;
453
454 cfg.max_rx_len = MAX_SIZE_STREAM_BUFFER;
455 cfg.ctl = GMACSL_ENABLE | GMACSL_RX_ENABLE_EXT_CTL;
456
457 for (i = 0; i < DEVICE_N_GMACSL_PORTS; i++) {
458 mac_sl_reset(i);
459 mac_sl_config(i, &cfg);
460 }
461
462 return 0;
463}
464
465int ethss_stop(void)
466{
467 int i;
468
469 for (i = 0; i < DEVICE_N_GMACSL_PORTS; i++)
470 mac_sl_reset(i);
471
472 return 0;
473}
474
Mugunthan V N6599f362016-02-02 15:51:33 +0530475struct ks2_serdes ks2_serdes_sgmii_156p25mhz = {
476 .clk = SERDES_CLOCK_156P25M,
477 .rate = SERDES_RATE_5G,
478 .rate_mode = SERDES_QUARTER_RATE,
479 .intf = SERDES_PHY_SGMII,
480 .loopback = 0,
481};
482
483#ifndef CONFIG_SOC_K2G
484static void keystone2_net_serdes_setup(void)
485{
486 ks2_serdes_init(CONFIG_KSNET_SERDES_SGMII_BASE,
487 &ks2_serdes_sgmii_156p25mhz,
488 CONFIG_KSNET_SERDES_LANES_PER_SGMII);
489
490#if defined(CONFIG_SOC_K2E) || defined(CONFIG_SOC_K2L)
491 ks2_serdes_init(CONFIG_KSNET_SERDES_SGMII2_BASE,
492 &ks2_serdes_sgmii_156p25mhz,
493 CONFIG_KSNET_SERDES_LANES_PER_SGMII);
494#endif
495
496 /* wait till setup */
497 udelay(5000);
498}
499#endif
500
501#ifndef CONFIG_DM_ETH
502
503int keystone2_eth_read_mac_addr(struct eth_device *dev)
504{
505 struct eth_priv_t *eth_priv;
506 u32 maca = 0;
507 u32 macb = 0;
508
509 eth_priv = (struct eth_priv_t *)dev->priv;
510
511 /* Read the e-fuse mac address */
512 if (eth_priv->slave_port == 1) {
513 maca = __raw_readl(MAC_ID_BASE_ADDR);
514 macb = __raw_readl(MAC_ID_BASE_ADDR + 4);
515 }
516
517 dev->enetaddr[0] = (macb >> 8) & 0xff;
518 dev->enetaddr[1] = (macb >> 0) & 0xff;
519 dev->enetaddr[2] = (maca >> 24) & 0xff;
520 dev->enetaddr[3] = (maca >> 16) & 0xff;
521 dev->enetaddr[4] = (maca >> 8) & 0xff;
522 dev->enetaddr[5] = (maca >> 0) & 0xff;
523
524 return 0;
525}
526
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400527int32_t cpmac_drv_send(u32 *buffer, int num_bytes, int slave_port_num)
528{
529 if (num_bytes < EMAC_MIN_ETHERNET_PKT_SIZE)
530 num_bytes = EMAC_MIN_ETHERNET_PKT_SIZE;
531
Khoronzhuk, Ivan9ea90212014-09-05 19:02:48 +0300532 return ksnav_send(&netcp_pktdma, buffer,
533 num_bytes, (slave_port_num) << 16);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400534}
535
536/* Eth device open */
537static int keystone2_eth_open(struct eth_device *dev, bd_t *bis)
538{
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400539 struct eth_priv_t *eth_priv = (struct eth_priv_t *)dev->priv;
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300540 struct phy_device *phy_dev = eth_priv->phy_dev;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400541
542 debug("+ emac_open\n");
543
544 net_rx_buffs.rx_flow = eth_priv->rx_flow;
545
546 sys_has_mdio =
547 (eth_priv->sgmii_link_type == SGMII_LINK_MAC_PHY) ? 1 : 0;
548
Khoronzhuk, Ivan6c0fb412014-10-29 13:09:33 +0200549 if (sys_has_mdio)
550 keystone2_mdio_reset(mdio_bus);
551
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530552#ifdef CONFIG_SOC_K2G
553 keystone_rgmii_config(phy_dev);
554#else
Khoronzhuk, Ivanc05d05e2014-10-17 21:01:15 +0300555 keystone_sgmii_config(phy_dev, eth_priv->slave_port - 1,
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400556 eth_priv->sgmii_link_type);
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530557#endif
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400558
559 udelay(10000);
560
561 /* On chip switch configuration */
562 ethss_config(target_get_switch_ctl(), SWITCH_MAX_PKT_SIZE);
563
564 /* TODO: add error handling code */
565 if (qm_init()) {
566 printf("ERROR: qm_init()\n");
567 return -1;
568 }
Khoronzhuk, Ivan9ea90212014-09-05 19:02:48 +0300569 if (ksnav_init(&netcp_pktdma, &net_rx_buffs)) {
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400570 qm_close();
571 printf("ERROR: netcp_init()\n");
572 return -1;
573 }
574
575 /*
576 * Streaming switch configuration. If not present this
577 * statement is defined to void in target.h.
578 * If present this is usually defined to a series of register writes
579 */
580 hw_config_streaming_switch();
581
582 if (sys_has_mdio) {
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300583 keystone2_mdio_reset(mdio_bus);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400584
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300585 phy_startup(phy_dev);
586 if (phy_dev->link == 0) {
Khoronzhuk, Ivan9ea90212014-09-05 19:02:48 +0300587 ksnav_close(&netcp_pktdma);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400588 qm_close();
589 return -1;
590 }
591 }
592
593 emac_gigabit_enable(dev);
594
595 ethss_start();
596
597 debug("- emac_open\n");
598
599 emac_open = 1;
600
601 return 0;
602}
603
604/* Eth device close */
605void keystone2_eth_close(struct eth_device *dev)
606{
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300607 struct eth_priv_t *eth_priv = (struct eth_priv_t *)dev->priv;
608 struct phy_device *phy_dev = eth_priv->phy_dev;
609
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400610 debug("+ emac_close\n");
611
612 if (!emac_open)
613 return;
614
615 ethss_stop();
616
Khoronzhuk, Ivan9ea90212014-09-05 19:02:48 +0300617 ksnav_close(&netcp_pktdma);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400618 qm_close();
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300619 phy_shutdown(phy_dev);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400620
621 emac_open = 0;
622
623 debug("- emac_close\n");
624}
625
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400626/*
627 * This function sends a single packet on the network and returns
628 * positive number (number of bytes transmitted) or negative for error
629 */
630static int keystone2_eth_send_packet(struct eth_device *dev,
631 void *packet, int length)
632{
633 int ret_status = -1;
634 struct eth_priv_t *eth_priv = (struct eth_priv_t *)dev->priv;
Khoronzhuk, Ivana4d2ade2014-10-17 20:44:36 +0300635 struct phy_device *phy_dev = eth_priv->phy_dev;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400636
Khoronzhuk, Ivana4d2ade2014-10-17 20:44:36 +0300637 genphy_update_link(phy_dev);
638 if (phy_dev->link == 0)
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400639 return -1;
640
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400641 if (cpmac_drv_send((u32 *)packet, length, eth_priv->slave_port) != 0)
642 return ret_status;
643
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400644 return length;
645}
646
647/*
648 * This function handles receipt of a packet from the network
649 */
650static int keystone2_eth_rcv_packet(struct eth_device *dev)
651{
652 void *hd;
653 int pkt_size;
654 u32 *pkt;
655
Khoronzhuk, Ivan9ea90212014-09-05 19:02:48 +0300656 hd = ksnav_recv(&netcp_pktdma, &pkt, &pkt_size);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400657 if (hd == NULL)
658 return 0;
659
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500660 net_process_received_packet((uchar *)pkt, pkt_size);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400661
Khoronzhuk, Ivan9ea90212014-09-05 19:02:48 +0300662 ksnav_release_rxhd(&netcp_pktdma, hd);
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400663
664 return pkt_size;
665}
666
Vitaly Andrianov5031ca52015-07-08 11:56:01 -0400667#ifdef CONFIG_MCAST_TFTP
668static int keystone2_eth_bcast_addr(struct eth_device *dev, u32 ip, u8 set)
669{
670 return 0;
671}
672#endif
673
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400674/*
675 * This function initializes the EMAC hardware.
676 */
677int keystone2_emac_initialize(struct eth_priv_t *eth_priv)
678{
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300679 int res;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400680 struct eth_device *dev;
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300681 struct phy_device *phy_dev;
Mugunthan V N6599f362016-02-02 15:51:33 +0530682 struct mdio_regs *adap_mdio = (struct mdio_regs *)EMAC_MDIO_BASE_ADDR;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400683
684 dev = malloc(sizeof(struct eth_device));
685 if (dev == NULL)
686 return -1;
687
688 memset(dev, 0, sizeof(struct eth_device));
689
690 strcpy(dev->name, eth_priv->int_name);
691 dev->priv = eth_priv;
692
693 keystone2_eth_read_mac_addr(dev);
694
695 dev->iobase = 0;
696 dev->init = keystone2_eth_open;
697 dev->halt = keystone2_eth_close;
698 dev->send = keystone2_eth_send_packet;
699 dev->recv = keystone2_eth_rcv_packet;
Vitaly Andrianov5031ca52015-07-08 11:56:01 -0400700#ifdef CONFIG_MCAST_TFTP
701 dev->mcast = keystone2_eth_bcast_addr;
702#endif
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400703
704 eth_register(dev);
705
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300706 /* Register MDIO bus if it's not registered yet */
707 if (!mdio_bus) {
708 mdio_bus = mdio_alloc();
709 mdio_bus->read = keystone2_mdio_read;
710 mdio_bus->write = keystone2_mdio_write;
711 mdio_bus->reset = keystone2_mdio_reset;
712 mdio_bus->priv = (void *)EMAC_MDIO_BASE_ADDR;
Ben Whitten192bc692015-12-30 13:05:58 +0000713 strcpy(mdio_bus->name, "ethernet-mdio");
Khoronzhuk, Ivan550c5ce2014-10-17 20:44:34 +0300714
715 res = mdio_register(mdio_bus);
716 if (res)
717 return res;
718 }
719
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530720#ifndef CONFIG_SOC_K2G
Vitaly Andrianov312aca42015-02-11 14:05:41 -0500721 keystone2_net_serdes_setup();
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +0530722#endif
Vitaly Andrianov312aca42015-02-11 14:05:41 -0500723
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300724 /* Create phy device and bind it with driver */
725#ifdef CONFIG_KSNET_MDIO_PHY_CONFIG_ENABLE
726 phy_dev = phy_connect(mdio_bus, eth_priv->phy_addr,
Mugunthan V Nbf7bd4e2015-09-19 16:26:48 +0530727 dev, eth_priv->phy_if);
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300728 phy_config(phy_dev);
729#else
730 phy_dev = phy_find_by_mask(mdio_bus, 1 << eth_priv->phy_addr,
Mugunthan V Nbf7bd4e2015-09-19 16:26:48 +0530731 eth_priv->phy_if);
Khoronzhuk, Ivan3fe93622014-10-17 20:44:35 +0300732 phy_dev->dev = dev;
733#endif
734 eth_priv->phy_dev = phy_dev;
735
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400736 return 0;
737}
738
Mugunthan V N6599f362016-02-02 15:51:33 +0530739#else
Hao Zhang92a16c82014-10-22 17:18:23 +0300740
Mugunthan V N6599f362016-02-02 15:51:33 +0530741static int ks2_eth_start(struct udevice *dev)
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400742{
Mugunthan V N6599f362016-02-02 15:51:33 +0530743 struct ks2_eth_priv *priv = dev_get_priv(dev);
Hao Zhang92a16c82014-10-22 17:18:23 +0300744
Mugunthan V N6599f362016-02-02 15:51:33 +0530745#ifdef CONFIG_SOC_K2G
746 keystone_rgmii_config(priv->phydev);
747#else
748 keystone_sgmii_config(priv->phydev, priv->slave_port - 1,
749 priv->sgmii_link_type);
Khoronzhuk, Ivan3c615022014-10-17 21:01:13 +0300750#endif
751
Mugunthan V N6599f362016-02-02 15:51:33 +0530752 udelay(10000);
753
754 /* On chip switch configuration */
755 ethss_config(target_get_switch_ctl(), SWITCH_MAX_PKT_SIZE);
756
757 qm_init();
758
759 if (ksnav_init(priv->netcp_pktdma, &priv->net_rx_buffs)) {
760 error("ksnav_init failed\n");
761 goto err_knav_init;
762 }
763
764 /*
765 * Streaming switch configuration. If not present this
766 * statement is defined to void in target.h.
767 * If present this is usually defined to a series of register writes
768 */
769 hw_config_streaming_switch();
770
771 if (priv->has_mdio) {
Mugunthan V Na61f6a52016-08-02 12:01:12 +0530772 keystone2_mdio_reset(priv->mdio_bus);
773
Mugunthan V N6599f362016-02-02 15:51:33 +0530774 phy_startup(priv->phydev);
775 if (priv->phydev->link == 0) {
776 error("phy startup failed\n");
777 goto err_phy_start;
778 }
779 }
780
781 emac_gigabit_enable(dev);
782
783 ethss_start();
784
785 priv->emac_open = true;
786
787 return 0;
788
789err_phy_start:
790 ksnav_close(priv->netcp_pktdma);
791err_knav_init:
792 qm_close();
793
794 return -EFAULT;
Karicheri, Muralidharanfc9a8e82014-04-01 15:01:13 -0400795}
Mugunthan V N6599f362016-02-02 15:51:33 +0530796
797static int ks2_eth_send(struct udevice *dev, void *packet, int length)
798{
799 struct ks2_eth_priv *priv = dev_get_priv(dev);
800
801 genphy_update_link(priv->phydev);
802 if (priv->phydev->link == 0)
803 return -1;
804
805 if (length < EMAC_MIN_ETHERNET_PKT_SIZE)
806 length = EMAC_MIN_ETHERNET_PKT_SIZE;
807
808 return ksnav_send(priv->netcp_pktdma, (u32 *)packet,
809 length, (priv->slave_port) << 16);
810}
811
812static int ks2_eth_recv(struct udevice *dev, int flags, uchar **packetp)
813{
814 struct ks2_eth_priv *priv = dev_get_priv(dev);
815 int pkt_size;
816 u32 *pkt = NULL;
817
818 priv->hd = ksnav_recv(priv->netcp_pktdma, &pkt, &pkt_size);
819 if (priv->hd == NULL)
820 return -EAGAIN;
821
822 *packetp = (uchar *)pkt;
823
824 return pkt_size;
825}
826
827static int ks2_eth_free_pkt(struct udevice *dev, uchar *packet,
828 int length)
829{
830 struct ks2_eth_priv *priv = dev_get_priv(dev);
831
832 ksnav_release_rxhd(priv->netcp_pktdma, priv->hd);
833
834 return 0;
835}
836
837static void ks2_eth_stop(struct udevice *dev)
838{
839 struct ks2_eth_priv *priv = dev_get_priv(dev);
840
841 if (!priv->emac_open)
842 return;
843 ethss_stop();
844
845 ksnav_close(priv->netcp_pktdma);
846 qm_close();
847 phy_shutdown(priv->phydev);
848 priv->emac_open = false;
849}
850
851int ks2_eth_read_rom_hwaddr(struct udevice *dev)
852{
853 struct ks2_eth_priv *priv = dev_get_priv(dev);
854 struct eth_pdata *pdata = dev_get_platdata(dev);
855 u32 maca = 0;
856 u32 macb = 0;
857
858 /* Read the e-fuse mac address */
859 if (priv->slave_port == 1) {
860 maca = __raw_readl(MAC_ID_BASE_ADDR);
861 macb = __raw_readl(MAC_ID_BASE_ADDR + 4);
862 }
863
864 pdata->enetaddr[0] = (macb >> 8) & 0xff;
865 pdata->enetaddr[1] = (macb >> 0) & 0xff;
866 pdata->enetaddr[2] = (maca >> 24) & 0xff;
867 pdata->enetaddr[3] = (maca >> 16) & 0xff;
868 pdata->enetaddr[4] = (maca >> 8) & 0xff;
869 pdata->enetaddr[5] = (maca >> 0) & 0xff;
870
871 return 0;
872}
873
874int ks2_eth_write_hwaddr(struct udevice *dev)
875{
876 struct ks2_eth_priv *priv = dev_get_priv(dev);
877 struct eth_pdata *pdata = dev_get_platdata(dev);
878
879 writel(mac_hi(pdata->enetaddr),
880 DEVICE_EMACSW_BASE(pdata->iobase, priv->slave_port - 1) +
881 CPGMACSL_REG_SA_HI);
882 writel(mac_lo(pdata->enetaddr),
883 DEVICE_EMACSW_BASE(pdata->iobase, priv->slave_port - 1) +
884 CPGMACSL_REG_SA_LO);
885
886 return 0;
887}
888
889static int ks2_eth_probe(struct udevice *dev)
890{
891 struct ks2_eth_priv *priv = dev_get_priv(dev);
892 struct mii_dev *mdio_bus;
893 int ret;
894
895 priv->dev = dev;
896
897 /* These clock enables has to be moved to common location */
898 if (cpu_is_k2g())
899 writel(KS2_ETHERNET_RGMII, KS2_ETHERNET_CFG);
900
901 /* By default, select PA PLL clock as PA clock source */
902#ifndef CONFIG_SOC_K2G
903 if (psc_enable_module(KS2_LPSC_PA))
904 return -EACCES;
905#endif
906 if (psc_enable_module(KS2_LPSC_CPGMAC))
907 return -EACCES;
908 if (psc_enable_module(KS2_LPSC_CRYPTO))
909 return -EACCES;
910
911 if (cpu_is_k2e() || cpu_is_k2l())
912 pll_pa_clk_sel();
913
914
Mugunthan V N1610a922016-08-02 12:01:11 +0530915 priv->net_rx_buffs.buff_ptr = rx_buffs;
916 priv->net_rx_buffs.num_buffs = RX_BUFF_NUMS;
917 priv->net_rx_buffs.buff_len = RX_BUFF_LEN;
Mugunthan V N6599f362016-02-02 15:51:33 +0530918
Mugunthan V Na61f6a52016-08-02 12:01:12 +0530919 if (priv->slave_port == 1) {
920 /*
921 * Register MDIO bus for slave 0 only, other slave have
922 * to re-use the same
923 */
924 mdio_bus = mdio_alloc();
925 if (!mdio_bus) {
926 error("MDIO alloc failed\n");
927 return -ENOMEM;
928 }
929 priv->mdio_bus = mdio_bus;
930 mdio_bus->read = keystone2_mdio_read;
931 mdio_bus->write = keystone2_mdio_write;
932 mdio_bus->reset = keystone2_mdio_reset;
933 mdio_bus->priv = priv->mdio_base;
934 sprintf(mdio_bus->name, "ethernet-mdio");
Mugunthan V N6599f362016-02-02 15:51:33 +0530935
Mugunthan V Na61f6a52016-08-02 12:01:12 +0530936 ret = mdio_register(mdio_bus);
937 if (ret) {
938 error("MDIO bus register failed\n");
939 return ret;
940 }
941 } else {
942 /* Get the MDIO bus from slave 0 device */
943 struct ks2_eth_priv *parent_priv;
944
945 parent_priv = dev_get_priv(dev->parent);
946 priv->mdio_bus = parent_priv->mdio_bus;
Mugunthan V N6599f362016-02-02 15:51:33 +0530947 }
948
949#ifndef CONFIG_SOC_K2G
950 keystone2_net_serdes_setup();
951#endif
952
953 priv->netcp_pktdma = &netcp_pktdma;
954
Mugunthan V Na61f6a52016-08-02 12:01:12 +0530955 if (priv->has_mdio) {
956 priv->phydev = phy_connect(priv->mdio_bus, priv->phy_addr,
957 dev, priv->phy_if);
958 phy_config(priv->phydev);
959 }
Mugunthan V N6599f362016-02-02 15:51:33 +0530960
961 return 0;
962}
963
964int ks2_eth_remove(struct udevice *dev)
965{
966 struct ks2_eth_priv *priv = dev_get_priv(dev);
967
968 free(priv->phydev);
969 mdio_unregister(priv->mdio_bus);
970 mdio_free(priv->mdio_bus);
971
972 return 0;
973}
974
975static const struct eth_ops ks2_eth_ops = {
976 .start = ks2_eth_start,
977 .send = ks2_eth_send,
978 .recv = ks2_eth_recv,
979 .free_pkt = ks2_eth_free_pkt,
980 .stop = ks2_eth_stop,
981 .read_rom_hwaddr = ks2_eth_read_rom_hwaddr,
982 .write_hwaddr = ks2_eth_write_hwaddr,
983};
984
Mugunthan V Na61f6a52016-08-02 12:01:12 +0530985static int ks2_eth_bind_slaves(struct udevice *dev, int gbe, int *gbe_0)
Mugunthan V N6599f362016-02-02 15:51:33 +0530986{
Mugunthan V N6599f362016-02-02 15:51:33 +0530987 const void *fdt = gd->fdt_blob;
Mugunthan V Na61f6a52016-08-02 12:01:12 +0530988 struct udevice *sl_dev;
Mugunthan V N6599f362016-02-02 15:51:33 +0530989 int interfaces;
Mugunthan V Na61f6a52016-08-02 12:01:12 +0530990 int sec_slave;
991 int slave;
992 int ret;
993 char *slave_name;
994
995 interfaces = fdt_subnode_offset(fdt, gbe, "interfaces");
Simon Glassdf87e6b2016-10-02 17:59:29 -0600996 fdt_for_each_subnode(slave, fdt, interfaces) {
Mugunthan V Na61f6a52016-08-02 12:01:12 +0530997 int slave_no;
998
999 slave_no = fdtdec_get_int(fdt, slave, "slave-port", -ENOENT);
1000 if (slave_no == -ENOENT)
1001 continue;
1002
1003 if (slave_no == 0) {
1004 /* This is the current eth device */
1005 *gbe_0 = slave;
1006 } else {
1007 /* Slave devices to be registered */
1008 slave_name = malloc(20);
1009 snprintf(slave_name, 20, "netcp@slave-%d", slave_no);
1010 ret = device_bind_driver_to_node(dev, "eth_ks2_sl",
1011 slave_name, slave,
1012 &sl_dev);
1013 if (ret) {
1014 error("ks2_net - not able to bind slave interfaces\n");
1015 return ret;
1016 }
1017 }
1018 }
1019
1020 sec_slave = fdt_subnode_offset(fdt, gbe, "secondary-slave-ports");
Simon Glassdf87e6b2016-10-02 17:59:29 -06001021 fdt_for_each_subnode(slave, fdt, sec_slave) {
Mugunthan V Na61f6a52016-08-02 12:01:12 +05301022 int slave_no;
1023
1024 slave_no = fdtdec_get_int(fdt, slave, "slave-port", -ENOENT);
1025 if (slave_no == -ENOENT)
1026 continue;
1027
1028 /* Slave devices to be registered */
1029 slave_name = malloc(20);
1030 snprintf(slave_name, 20, "netcp@slave-%d", slave_no);
1031 ret = device_bind_driver_to_node(dev, "eth_ks2_sl", slave_name,
1032 slave, &sl_dev);
1033 if (ret) {
1034 error("ks2_net - not able to bind slave interfaces\n");
1035 return ret;
1036 }
1037 }
1038
1039 return 0;
1040}
1041
1042static int ks2_eth_parse_slave_interface(int netcp, int slave,
1043 struct ks2_eth_priv *priv,
1044 struct eth_pdata *pdata)
1045{
1046 const void *fdt = gd->fdt_blob;
Mugunthan V N6599f362016-02-02 15:51:33 +05301047 int mdio;
Mugunthan V Na61f6a52016-08-02 12:01:12 +05301048 int phy;
1049 int dma_count;
1050 u32 dma_channel[8];
Mugunthan V N6599f362016-02-02 15:51:33 +05301051
Mugunthan V Na61f6a52016-08-02 12:01:12 +05301052 priv->slave_port = fdtdec_get_int(fdt, slave, "slave-port", -1);
1053 priv->net_rx_buffs.rx_flow = priv->slave_port * 8;
Mugunthan V N6599f362016-02-02 15:51:33 +05301054
Mugunthan V N6599f362016-02-02 15:51:33 +05301055 /* U-Boot slave port number starts with 1 instead of 0 */
1056 priv->slave_port += 1;
1057
Mugunthan V Na61f6a52016-08-02 12:01:12 +05301058 dma_count = fdtdec_get_int_array_count(fdt, netcp,
1059 "ti,navigator-dmas",
1060 dma_channel, 8);
Mugunthan V N6599f362016-02-02 15:51:33 +05301061
Mugunthan V Na61f6a52016-08-02 12:01:12 +05301062 if (dma_count > (2 * priv->slave_port)) {
1063 int dma_idx;
1064
1065 dma_idx = priv->slave_port * 2 - 1;
1066 priv->net_rx_buffs.rx_flow = dma_channel[dma_idx];
Mugunthan V N6599f362016-02-02 15:51:33 +05301067 }
Mugunthan V Na61f6a52016-08-02 12:01:12 +05301068
1069 priv->link_type = fdtdec_get_int(fdt, slave, "link-interface", -1);
1070
1071 phy = fdtdec_lookup_phandle(fdt, slave, "phy-handle");
1072 if (phy >= 0) {
1073 priv->phy_addr = fdtdec_get_int(fdt, phy, "reg", -1);
1074
1075 mdio = fdt_parent_offset(fdt, phy);
1076 if (mdio < 0) {
1077 error("mdio dt not found\n");
1078 return -ENODEV;
1079 }
1080 priv->mdio_base = (void *)fdtdec_get_addr(fdt, mdio, "reg");
1081 }
Mugunthan V N6599f362016-02-02 15:51:33 +05301082
Mugunthan V N1de40662016-08-11 20:04:03 +05301083 if (priv->link_type == LINK_TYPE_SGMII_MAC_TO_PHY_MODE) {
Mugunthan V N6599f362016-02-02 15:51:33 +05301084 priv->phy_if = PHY_INTERFACE_MODE_SGMII;
1085 pdata->phy_interface = priv->phy_if;
1086 priv->sgmii_link_type = SGMII_LINK_MAC_PHY;
1087 priv->has_mdio = true;
Mugunthan V N1de40662016-08-11 20:04:03 +05301088 } else if (priv->link_type == LINK_TYPE_RGMII_LINK_MAC_PHY) {
1089 priv->phy_if = PHY_INTERFACE_MODE_RGMII;
1090 pdata->phy_interface = priv->phy_if;
1091 priv->has_mdio = true;
Mugunthan V N6599f362016-02-02 15:51:33 +05301092 }
Mugunthan V N6599f362016-02-02 15:51:33 +05301093
Mugunthan V Na61f6a52016-08-02 12:01:12 +05301094 return 0;
1095}
1096
1097static int ks2_sl_eth_ofdata_to_platdata(struct udevice *dev)
1098{
1099 struct ks2_eth_priv *priv = dev_get_priv(dev);
1100 struct eth_pdata *pdata = dev_get_platdata(dev);
1101 const void *fdt = gd->fdt_blob;
1102 int slave = dev->of_offset;
1103 int interfaces;
1104 int gbe;
1105 int netcp_devices;
1106 int netcp;
1107
1108 interfaces = fdt_parent_offset(fdt, slave);
1109 gbe = fdt_parent_offset(fdt, interfaces);
1110 netcp_devices = fdt_parent_offset(fdt, gbe);
1111 netcp = fdt_parent_offset(fdt, netcp_devices);
1112
1113 ks2_eth_parse_slave_interface(netcp, slave, priv, pdata);
1114
1115 pdata->iobase = fdtdec_get_addr(fdt, netcp, "reg");
1116
1117 return 0;
1118}
1119
1120static int ks2_eth_ofdata_to_platdata(struct udevice *dev)
1121{
1122 struct ks2_eth_priv *priv = dev_get_priv(dev);
1123 struct eth_pdata *pdata = dev_get_platdata(dev);
1124 const void *fdt = gd->fdt_blob;
1125 int gbe_0 = -ENODEV;
1126 int netcp_devices;
1127 int gbe;
1128
1129 netcp_devices = fdt_subnode_offset(fdt, dev->of_offset,
1130 "netcp-devices");
1131 gbe = fdt_subnode_offset(fdt, netcp_devices, "gbe");
1132
1133 ks2_eth_bind_slaves(dev, gbe, &gbe_0);
1134
1135 ks2_eth_parse_slave_interface(dev->of_offset, gbe_0, priv, pdata);
1136
1137 pdata->iobase = dev_get_addr(dev);
Mugunthan V N6599f362016-02-02 15:51:33 +05301138
1139 return 0;
1140}
1141
1142static const struct udevice_id ks2_eth_ids[] = {
1143 { .compatible = "ti,netcp-1.0" },
1144 { }
1145};
1146
Mugunthan V Na61f6a52016-08-02 12:01:12 +05301147U_BOOT_DRIVER(eth_ks2_slave) = {
1148 .name = "eth_ks2_sl",
1149 .id = UCLASS_ETH,
1150 .ofdata_to_platdata = ks2_sl_eth_ofdata_to_platdata,
1151 .probe = ks2_eth_probe,
1152 .remove = ks2_eth_remove,
1153 .ops = &ks2_eth_ops,
1154 .priv_auto_alloc_size = sizeof(struct ks2_eth_priv),
1155 .platdata_auto_alloc_size = sizeof(struct eth_pdata),
1156 .flags = DM_FLAG_ALLOC_PRIV_DMA,
1157};
Mugunthan V N6599f362016-02-02 15:51:33 +05301158
1159U_BOOT_DRIVER(eth_ks2) = {
1160 .name = "eth_ks2",
1161 .id = UCLASS_ETH,
1162 .of_match = ks2_eth_ids,
1163 .ofdata_to_platdata = ks2_eth_ofdata_to_platdata,
1164 .probe = ks2_eth_probe,
1165 .remove = ks2_eth_remove,
1166 .ops = &ks2_eth_ops,
1167 .priv_auto_alloc_size = sizeof(struct ks2_eth_priv),
1168 .platdata_auto_alloc_size = sizeof(struct eth_pdata),
1169 .flags = DM_FLAG_ALLOC_PRIV_DMA,
1170};
Vitaly Andrianov4657a2d2015-09-19 16:26:50 +05301171#endif