blob: bb879d8d4fef1a398a806e7b5486ecebab81dd79 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Sergey Kubushync74b2102007-08-10 20:26:18 +02002/*
3 * Ethernet driver for TI TMS320DM644x (DaVinci) chips.
4 *
5 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
6 *
7 * Parts shamelessly stolen from TI's dm644x_emac.c. Original copyright
8 * follows:
9 *
10 * ----------------------------------------------------------------------------
11 *
12 * dm644x_emac.c
13 *
14 * TI DaVinci (DM644X) EMAC peripheral driver source for DV-EVM
15 *
16 * Copyright (C) 2005 Texas Instruments.
17 *
18 * ----------------------------------------------------------------------------
19 *
Sergey Kubushync74b2102007-08-10 20:26:18 +020020 * Modifications:
21 * ver. 1.0: Sep 2005, Anant Gole - Created EMAC version for uBoot.
22 * ver 1.1: Nov 2005, Anant Gole - Extended the RX logic for multiple descriptors
Sergey Kubushync74b2102007-08-10 20:26:18 +020023 */
24#include <common.h>
25#include <command.h>
26#include <net.h>
27#include <miiphy.h>
Ben Warren84535872009-05-26 00:34:07 -070028#include <malloc.h>
Jeroen Hofsteeee3fad82014-10-08 22:57:56 +020029#include <netdev.h>
Ilya Yanok2aa87202011-11-28 06:37:33 +000030#include <linux/compiler.h>
Sergey Kubushync74b2102007-08-10 20:26:18 +020031#include <asm/arch/emac_defs.h>
Nick Thompsond7e35432009-12-18 13:33:07 +000032#include <asm/io.h>
Ilya Yanok7c587d32011-11-28 06:37:29 +000033#include "davinci_emac.h"
Sergey Kubushync74b2102007-08-10 20:26:18 +020034
Sergey Kubushync74b2102007-08-10 20:26:18 +020035unsigned int emac_dbg = 0;
36#define debug_emac(fmt,args...) if (emac_dbg) printf(fmt,##args)
37
Ilya Yanok82b77212011-11-28 06:37:30 +000038#ifdef EMAC_HW_RAM_ADDR
39static inline unsigned long BD_TO_HW(unsigned long x)
40{
41 if (x == 0)
42 return 0;
43
44 return x - EMAC_WRAPPER_RAM_ADDR + EMAC_HW_RAM_ADDR;
45}
46
47static inline unsigned long HW_TO_BD(unsigned long x)
48{
49 if (x == 0)
50 return 0;
51
52 return x - EMAC_HW_RAM_ADDR + EMAC_WRAPPER_RAM_ADDR;
53}
54#else
55#define BD_TO_HW(x) (x)
56#define HW_TO_BD(x) (x)
57#endif
58
Nick Thompsond7e35432009-12-18 13:33:07 +000059#ifdef DAVINCI_EMAC_GIG_ENABLE
Manjunath Hadlifb1d6332011-10-13 03:40:55 +000060#define emac_gigabit_enable(phy_addr) davinci_eth_gigabit_enable(phy_addr)
Nick Thompsond7e35432009-12-18 13:33:07 +000061#else
Manjunath Hadlifb1d6332011-10-13 03:40:55 +000062#define emac_gigabit_enable(phy_addr) /* no gigabit to enable */
Nick Thompsond7e35432009-12-18 13:33:07 +000063#endif
64
Heiko Schocher882ecfa2011-11-01 20:00:27 +000065#if !defined(CONFIG_SYS_EMAC_TI_CLKDIV)
66#define CONFIG_SYS_EMAC_TI_CLKDIV ((EMAC_MDIO_BUS_FREQ / \
67 EMAC_MDIO_CLOCK_FREQ) - 1)
68#endif
69
Sandeep Paulrajfcaac582008-08-31 00:39:46 +020070static void davinci_eth_mdio_enable(void);
Sergey Kubushync74b2102007-08-10 20:26:18 +020071
72static int gen_init_phy(int phy_addr);
73static int gen_is_phy_connected(int phy_addr);
74static int gen_get_link_speed(int phy_addr);
75static int gen_auto_negotiate(int phy_addr);
76
Sergey Kubushync74b2102007-08-10 20:26:18 +020077void eth_mdio_enable(void)
78{
Sandeep Paulrajfcaac582008-08-31 00:39:46 +020079 davinci_eth_mdio_enable();
Sergey Kubushync74b2102007-08-10 20:26:18 +020080}
Sergey Kubushync74b2102007-08-10 20:26:18 +020081
Sergey Kubushync74b2102007-08-10 20:26:18 +020082/* EMAC Addresses */
83static volatile emac_regs *adap_emac = (emac_regs *)EMAC_BASE_ADDR;
84static volatile ewrap_regs *adap_ewrap = (ewrap_regs *)EMAC_WRAPPER_BASE_ADDR;
85static volatile mdio_regs *adap_mdio = (mdio_regs *)EMAC_MDIO_BASE_ADDR;
86
87/* EMAC descriptors */
88static volatile emac_desc *emac_rx_desc = (emac_desc *)(EMAC_WRAPPER_RAM_ADDR + EMAC_RX_DESC_BASE);
89static volatile emac_desc *emac_tx_desc = (emac_desc *)(EMAC_WRAPPER_RAM_ADDR + EMAC_TX_DESC_BASE);
90static volatile emac_desc *emac_rx_active_head = 0;
91static volatile emac_desc *emac_rx_active_tail = 0;
92static int emac_rx_queue_active = 0;
93
94/* Receive packet buffers */
Ilya Yanok2aa87202011-11-28 06:37:33 +000095static unsigned char emac_rx_buffers[EMAC_MAX_RX_BUFFERS * EMAC_RXBUF_SIZE]
96 __aligned(ARCH_DMA_MINALIGN);
Sergey Kubushync74b2102007-08-10 20:26:18 +020097
Heiko Schocherdc02bad2011-11-15 10:00:04 -050098#ifndef CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT
99#define CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT 3
100#endif
Sergey Kubushync74b2102007-08-10 20:26:18 +0200101
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000102/* PHY address for a discovered PHY (0xff - not found) */
Heiko Schocherdc02bad2011-11-15 10:00:04 -0500103static u_int8_t active_phy_addr[CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT];
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000104
105/* number of PHY found active */
106static u_int8_t num_phy;
107
Heiko Schocherdc02bad2011-11-15 10:00:04 -0500108phy_t phy[CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT];
Sergey Kubushync74b2102007-08-10 20:26:18 +0200109
Ben Gardiner7b37a272010-09-23 09:58:43 -0400110static int davinci_eth_set_mac_addr(struct eth_device *dev)
111{
112 unsigned long mac_hi;
113 unsigned long mac_lo;
114
115 /*
116 * Set MAC Addresses & Init multicast Hash to 0 (disable any multicast
117 * receive)
118 * Using channel 0 only - other channels are disabled
119 * */
120 writel(0, &adap_emac->MACINDEX);
121 mac_hi = (dev->enetaddr[3] << 24) |
122 (dev->enetaddr[2] << 16) |
123 (dev->enetaddr[1] << 8) |
124 (dev->enetaddr[0]);
125 mac_lo = (dev->enetaddr[5] << 8) |
126 (dev->enetaddr[4]);
127
128 writel(mac_hi, &adap_emac->MACADDRHI);
129#if defined(DAVINCI_EMAC_VERSION2)
130 writel(mac_lo | EMAC_MAC_ADDR_IS_VALID | EMAC_MAC_ADDR_MATCH,
131 &adap_emac->MACADDRLO);
132#else
133 writel(mac_lo, &adap_emac->MACADDRLO);
134#endif
135
136 writel(0, &adap_emac->MACHASH1);
137 writel(0, &adap_emac->MACHASH2);
138
139 /* Set source MAC address - REQUIRED */
140 writel(mac_hi, &adap_emac->MACSRCADDRHI);
141 writel(mac_lo, &adap_emac->MACSRCADDRLO);
142
143
144 return 0;
145}
146
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200147static void davinci_eth_mdio_enable(void)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200148{
149 u_int32_t clkdiv;
150
Heiko Schocher882ecfa2011-11-01 20:00:27 +0000151 clkdiv = CONFIG_SYS_EMAC_TI_CLKDIV;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200152
Nick Thompsond7e35432009-12-18 13:33:07 +0000153 writel((clkdiv & 0xff) |
154 MDIO_CONTROL_ENABLE |
155 MDIO_CONTROL_FAULT |
156 MDIO_CONTROL_FAULT_ENABLE,
157 &adap_mdio->CONTROL);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200158
Nick Thompsond7e35432009-12-18 13:33:07 +0000159 while (readl(&adap_mdio->CONTROL) & MDIO_CONTROL_IDLE)
160 ;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200161}
162
163/*
164 * Tries to find an active connected PHY. Returns 1 if address if found.
165 * If no active PHY (or more than one PHY) found returns 0.
166 * Sets active_phy_addr variable.
167 */
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200168static int davinci_eth_phy_detect(void)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200169{
170 u_int32_t phy_act_state;
171 int i;
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000172 int j;
173 unsigned int count = 0;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200174
Heiko Schocherdc02bad2011-11-15 10:00:04 -0500175 for (i = 0; i < CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT; i++)
176 active_phy_addr[i] = 0xff;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200177
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000178 udelay(1000);
179 phy_act_state = readl(&adap_mdio->ALIVE);
180
Nick Thompsond7e35432009-12-18 13:33:07 +0000181 if (phy_act_state == 0)
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000182 return 0; /* No active PHYs */
Sergey Kubushync74b2102007-08-10 20:26:18 +0200183
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200184 debug_emac("davinci_eth_phy_detect(), ALIVE = 0x%08x\n", phy_act_state);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200185
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000186 for (i = 0, j = 0; i < 32; i++)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200187 if (phy_act_state & (1 << i)) {
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000188 count++;
Prabhakar Ladb6090092011-11-17 02:53:23 +0000189 if (count <= CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT) {
Heiko Schocherdc02bad2011-11-15 10:00:04 -0500190 active_phy_addr[j++] = i;
191 } else {
192 printf("%s: to many PHYs detected.\n",
193 __func__);
194 count = 0;
195 break;
196 }
Sergey Kubushync74b2102007-08-10 20:26:18 +0200197 }
Sergey Kubushync74b2102007-08-10 20:26:18 +0200198
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000199 num_phy = count;
200
201 return count;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200202}
203
204
205/* Read a PHY register via MDIO inteface. Returns 1 on success, 0 otherwise */
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200206int davinci_eth_phy_read(u_int8_t phy_addr, u_int8_t reg_num, u_int16_t *data)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200207{
208 int tmp;
209
Nick Thompsond7e35432009-12-18 13:33:07 +0000210 while (readl(&adap_mdio->USERACCESS0) & MDIO_USERACCESS0_GO)
211 ;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200212
Nick Thompsond7e35432009-12-18 13:33:07 +0000213 writel(MDIO_USERACCESS0_GO |
214 MDIO_USERACCESS0_WRITE_READ |
215 ((reg_num & 0x1f) << 21) |
216 ((phy_addr & 0x1f) << 16),
217 &adap_mdio->USERACCESS0);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200218
219 /* Wait for command to complete */
Nick Thompsond7e35432009-12-18 13:33:07 +0000220 while ((tmp = readl(&adap_mdio->USERACCESS0)) & MDIO_USERACCESS0_GO)
221 ;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200222
223 if (tmp & MDIO_USERACCESS0_ACK) {
224 *data = tmp & 0xffff;
karl beldan05237f72016-08-20 08:56:53 +0000225 return 1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200226 }
227
karl beldan05237f72016-08-20 08:56:53 +0000228 return 0;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200229}
230
231/* Write to a PHY register via MDIO inteface. Blocks until operation is complete. */
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200232int davinci_eth_phy_write(u_int8_t phy_addr, u_int8_t reg_num, u_int16_t data)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200233{
234
Nick Thompsond7e35432009-12-18 13:33:07 +0000235 while (readl(&adap_mdio->USERACCESS0) & MDIO_USERACCESS0_GO)
236 ;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200237
Nick Thompsond7e35432009-12-18 13:33:07 +0000238 writel(MDIO_USERACCESS0_GO |
239 MDIO_USERACCESS0_WRITE_WRITE |
240 ((reg_num & 0x1f) << 21) |
241 ((phy_addr & 0x1f) << 16) |
242 (data & 0xffff),
243 &adap_mdio->USERACCESS0);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200244
245 /* Wait for command to complete */
Nick Thompsond7e35432009-12-18 13:33:07 +0000246 while (readl(&adap_mdio->USERACCESS0) & MDIO_USERACCESS0_GO)
247 ;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200248
karl beldan05237f72016-08-20 08:56:53 +0000249 return 1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200250}
251
252/* PHY functions for a generic PHY */
253static int gen_init_phy(int phy_addr)
254{
255 int ret = 1;
256
257 if (gen_get_link_speed(phy_addr)) {
258 /* Try another time */
259 ret = gen_get_link_speed(phy_addr);
260 }
261
262 return(ret);
263}
264
265static int gen_is_phy_connected(int phy_addr)
266{
267 u_int16_t dummy;
268
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000269 return davinci_eth_phy_read(phy_addr, MII_PHYSID1, &dummy);
270}
271
272static int get_active_phy(void)
273{
274 int i;
275
276 for (i = 0; i < num_phy; i++)
277 if (phy[i].get_link_speed(active_phy_addr[i]))
278 return i;
279
280 return -1; /* Return error if no link */
Sergey Kubushync74b2102007-08-10 20:26:18 +0200281}
282
283static int gen_get_link_speed(int phy_addr)
284{
285 u_int16_t tmp;
286
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500287 if (davinci_eth_phy_read(phy_addr, MII_STATUS_REG, &tmp) &&
288 (tmp & 0x04)) {
289#if defined(CONFIG_DRIVER_TI_EMAC_USE_RMII) && \
290 defined(CONFIG_MACH_DAVINCI_DA850_EVM)
Ben Gardiner7d2fade2011-01-11 14:48:17 -0500291 davinci_eth_phy_read(phy_addr, MII_LPA, &tmp);
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500292
293 /* Speed doesn't matter, there is no setting for it in EMAC. */
Ben Gardiner7d2fade2011-01-11 14:48:17 -0500294 if (tmp & (LPA_100FULL | LPA_10FULL)) {
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500295 /* set EMAC for Full Duplex */
296 writel(EMAC_MACCONTROL_MIIEN_ENABLE |
297 EMAC_MACCONTROL_FULLDUPLEX_ENABLE,
298 &adap_emac->MACCONTROL);
299 } else {
300 /*set EMAC for Half Duplex */
301 writel(EMAC_MACCONTROL_MIIEN_ENABLE,
302 &adap_emac->MACCONTROL);
303 }
304
Ben Gardiner7d2fade2011-01-11 14:48:17 -0500305 if (tmp & (LPA_100FULL | LPA_100HALF))
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500306 writel(readl(&adap_emac->MACCONTROL) |
307 EMAC_MACCONTROL_RMIISPEED_100,
308 &adap_emac->MACCONTROL);
309 else
310 writel(readl(&adap_emac->MACCONTROL) &
311 ~EMAC_MACCONTROL_RMIISPEED_100,
312 &adap_emac->MACCONTROL);
313#endif
Sergey Kubushync74b2102007-08-10 20:26:18 +0200314 return(1);
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500315 }
Sergey Kubushync74b2102007-08-10 20:26:18 +0200316
317 return(0);
318}
319
320static int gen_auto_negotiate(int phy_addr)
321{
322 u_int16_t tmp;
Manjunath Hadlicc4bd472011-10-13 03:40:53 +0000323 u_int16_t val;
324 unsigned long cntr = 0;
325
326 if (!davinci_eth_phy_read(phy_addr, MII_BMCR, &tmp))
327 return 0;
328
329 val = tmp | BMCR_FULLDPLX | BMCR_ANENABLE |
330 BMCR_SPEED100;
331 davinci_eth_phy_write(phy_addr, MII_BMCR, val);
332
333 if (!davinci_eth_phy_read(phy_addr, MII_ADVERTISE, &val))
334 return 0;
335
336 val |= (ADVERTISE_100FULL | ADVERTISE_100HALF | ADVERTISE_10FULL |
337 ADVERTISE_10HALF);
338 davinci_eth_phy_write(phy_addr, MII_ADVERTISE, val);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200339
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500340 if (!davinci_eth_phy_read(phy_addr, MII_BMCR, &tmp))
Sergey Kubushync74b2102007-08-10 20:26:18 +0200341 return(0);
342
Tom Rinide820362017-05-10 12:01:02 -0400343#ifdef DAVINCI_EMAC_GIG_ENABLE
344 davinci_eth_phy_read(phy_addr, MII_CTRL1000, &val);
345 val |= PHY_1000BTCR_1000FD;
346 val &= ~PHY_1000BTCR_1000HD;
347 davinci_eth_phy_write(phy_addr, MII_CTRL1000, val);
348 davinci_eth_phy_read(phy_addr, MII_CTRL1000, &val);
349#endif
350
Sergey Kubushync74b2102007-08-10 20:26:18 +0200351 /* Restart Auto_negotiation */
Manjunath Hadlicc4bd472011-10-13 03:40:53 +0000352 tmp |= BMCR_ANRESTART;
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500353 davinci_eth_phy_write(phy_addr, MII_BMCR, tmp);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200354
355 /*check AutoNegotiate complete */
Manjunath Hadlicc4bd472011-10-13 03:40:53 +0000356 do {
357 udelay(40000);
358 if (!davinci_eth_phy_read(phy_addr, MII_BMSR, &tmp))
359 return 0;
360
361 if (tmp & BMSR_ANEGCOMPLETE)
362 break;
363
364 cntr++;
365 } while (cntr < 200);
366
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500367 if (!davinci_eth_phy_read(phy_addr, MII_BMSR, &tmp))
Sergey Kubushync74b2102007-08-10 20:26:18 +0200368 return(0);
369
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500370 if (!(tmp & BMSR_ANEGCOMPLETE))
Sergey Kubushync74b2102007-08-10 20:26:18 +0200371 return(0);
372
373 return(gen_get_link_speed(phy_addr));
374}
375/* End of generic PHY functions */
376
377
Wolfgang Denkafaac862007-08-12 14:27:39 +0200378#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Joe Hershberger5a49f172016-08-08 11:28:38 -0500379static int davinci_mii_phy_read(struct mii_dev *bus, int addr, int devad,
380 int reg)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200381{
Joe Hershberger5a49f172016-08-08 11:28:38 -0500382 unsigned short value = 0;
Joe Hershberger875e0bc2016-08-08 11:28:40 -0500383 int retval = davinci_eth_phy_read(addr, reg, &value);
karl beldan05237f72016-08-20 08:56:53 +0000384
385 return retval ? value : -EIO;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200386}
387
Joe Hershberger5a49f172016-08-08 11:28:38 -0500388static int davinci_mii_phy_write(struct mii_dev *bus, int addr, int devad,
389 int reg, u16 value)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200390{
karl beldan05237f72016-08-20 08:56:53 +0000391 return davinci_eth_phy_write(addr, reg, value) ? 0 : 1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200392}
Sergey Kubushync74b2102007-08-10 20:26:18 +0200393#endif
394
Manjunath Hadlifb1d6332011-10-13 03:40:55 +0000395static void __attribute__((unused)) davinci_eth_gigabit_enable(int phy_addr)
Nick Thompsond7e35432009-12-18 13:33:07 +0000396{
397 u_int16_t data;
398
Manjunath Hadlifb1d6332011-10-13 03:40:55 +0000399 if (davinci_eth_phy_read(phy_addr, 0, &data)) {
Nick Thompsond7e35432009-12-18 13:33:07 +0000400 if (data & (1 << 6)) { /* speed selection MSB */
401 /*
402 * Check if link detected is giga-bit
403 * If Gigabit mode detected, enable gigbit in MAC
404 */
Sandeep Paulraj4b9b9e72010-12-28 14:37:33 -0500405 writel(readl(&adap_emac->MACCONTROL) |
406 EMAC_MACCONTROL_GIGFORCE |
407 EMAC_MACCONTROL_GIGABIT_ENABLE,
408 &adap_emac->MACCONTROL);
Nick Thompsond7e35432009-12-18 13:33:07 +0000409 }
410 }
411}
Sergey Kubushync74b2102007-08-10 20:26:18 +0200412
413/* Eth device open */
Ben Warren84535872009-05-26 00:34:07 -0700414static int davinci_eth_open(struct eth_device *dev, bd_t *bis)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200415{
416 dv_reg_p addr;
Tom Rinide820362017-05-10 12:01:02 -0400417 u_int32_t clkdiv, cnt, mac_control;
418 uint16_t __maybe_unused lpa_val;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200419 volatile emac_desc *rx_desc;
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000420 int index;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200421
422 debug_emac("+ emac_open\n");
423
424 /* Reset EMAC module and disable interrupts in wrapper */
Nick Thompsond7e35432009-12-18 13:33:07 +0000425 writel(1, &adap_emac->SOFTRESET);
426 while (readl(&adap_emac->SOFTRESET) != 0)
427 ;
428#if defined(DAVINCI_EMAC_VERSION2)
429 writel(1, &adap_ewrap->softrst);
430 while (readl(&adap_ewrap->softrst) != 0)
431 ;
432#else
433 writel(0, &adap_ewrap->EWCTL);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200434 for (cnt = 0; cnt < 5; cnt++) {
Nick Thompsond7e35432009-12-18 13:33:07 +0000435 clkdiv = readl(&adap_ewrap->EWCTL);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200436 }
Nick Thompsond7e35432009-12-18 13:33:07 +0000437#endif
Sergey Kubushync74b2102007-08-10 20:26:18 +0200438
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500439#if defined(CONFIG_DRIVER_TI_EMAC_USE_RMII) && \
440 defined(CONFIG_MACH_DAVINCI_DA850_EVM)
441 adap_ewrap->c0rxen = adap_ewrap->c1rxen = adap_ewrap->c2rxen = 0;
442 adap_ewrap->c0txen = adap_ewrap->c1txen = adap_ewrap->c2txen = 0;
443 adap_ewrap->c0miscen = adap_ewrap->c1miscen = adap_ewrap->c2miscen = 0;
444#endif
Sergey Kubushync74b2102007-08-10 20:26:18 +0200445 rx_desc = emac_rx_desc;
446
Nick Thompsond7e35432009-12-18 13:33:07 +0000447 writel(1, &adap_emac->TXCONTROL);
448 writel(1, &adap_emac->RXCONTROL);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200449
Ben Gardiner7b37a272010-09-23 09:58:43 -0400450 davinci_eth_set_mac_addr(dev);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200451
452 /* Set DMA 8 TX / 8 RX Head pointers to 0 */
453 addr = &adap_emac->TX0HDP;
Vishwas Srivastavaabbf2d92016-01-25 21:28:17 +0530454 for (cnt = 0; cnt < 8; cnt++)
Nick Thompsond7e35432009-12-18 13:33:07 +0000455 writel(0, addr++);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200456
457 addr = &adap_emac->RX0HDP;
Vishwas Srivastavaabbf2d92016-01-25 21:28:17 +0530458 for (cnt = 0; cnt < 8; cnt++)
Nick Thompsond7e35432009-12-18 13:33:07 +0000459 writel(0, addr++);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200460
461 /* Clear Statistics (do this before setting MacControl register) */
462 addr = &adap_emac->RXGOODFRAMES;
463 for(cnt = 0; cnt < EMAC_NUM_STATS; cnt++)
Nick Thompsond7e35432009-12-18 13:33:07 +0000464 writel(0, addr++);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200465
466 /* No multicast addressing */
Nick Thompsond7e35432009-12-18 13:33:07 +0000467 writel(0, &adap_emac->MACHASH1);
468 writel(0, &adap_emac->MACHASH2);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200469
470 /* Create RX queue and set receive process in place */
471 emac_rx_active_head = emac_rx_desc;
472 for (cnt = 0; cnt < EMAC_MAX_RX_BUFFERS; cnt++) {
Ilya Yanok82b77212011-11-28 06:37:30 +0000473 rx_desc->next = BD_TO_HW((u_int32_t)(rx_desc + 1));
Ilya Yanok2aa87202011-11-28 06:37:33 +0000474 rx_desc->buffer = &emac_rx_buffers[cnt * EMAC_RXBUF_SIZE];
Sergey Kubushync74b2102007-08-10 20:26:18 +0200475 rx_desc->buff_off_len = EMAC_MAX_ETHERNET_PKT_SIZE;
476 rx_desc->pkt_flag_len = EMAC_CPPI_OWNERSHIP_BIT;
477 rx_desc++;
478 }
479
Nick Thompsond7e35432009-12-18 13:33:07 +0000480 /* Finalize the rx desc list */
Sergey Kubushync74b2102007-08-10 20:26:18 +0200481 rx_desc--;
482 rx_desc->next = 0;
483 emac_rx_active_tail = rx_desc;
484 emac_rx_queue_active = 1;
485
486 /* Enable TX/RX */
Nick Thompsond7e35432009-12-18 13:33:07 +0000487 writel(EMAC_MAX_ETHERNET_PKT_SIZE, &adap_emac->RXMAXLEN);
488 writel(0, &adap_emac->RXBUFFEROFFSET);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200489
Nick Thompsond7e35432009-12-18 13:33:07 +0000490 /*
491 * No fancy configs - Use this for promiscous debug
492 * - EMAC_RXMBPENABLE_RXCAFEN_ENABLE
493 */
494 writel(EMAC_RXMBPENABLE_RXBROADEN, &adap_emac->RXMBPENABLE);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200495
496 /* Enable ch 0 only */
Nick Thompsond7e35432009-12-18 13:33:07 +0000497 writel(1, &adap_emac->RXUNICASTSET);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200498
Sergey Kubushync74b2102007-08-10 20:26:18 +0200499 /* Init MDIO & get link state */
Heiko Schocher882ecfa2011-11-01 20:00:27 +0000500 clkdiv = CONFIG_SYS_EMAC_TI_CLKDIV;
Nick Thompsond7e35432009-12-18 13:33:07 +0000501 writel((clkdiv & 0xff) | MDIO_CONTROL_ENABLE | MDIO_CONTROL_FAULT,
502 &adap_mdio->CONTROL);
503
504 /* We need to wait for MDIO to start */
505 udelay(1000);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200506
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000507 index = get_active_phy();
508 if (index == -1)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200509 return(0);
510
Tom Rinide820362017-05-10 12:01:02 -0400511 /* Enable MII interface */
512 mac_control = EMAC_MACCONTROL_MIIEN_ENABLE;
513#ifdef DAVINCI_EMAC_GIG_ENABLE
514 davinci_eth_phy_read(active_phy_addr[index], MII_STAT1000, &lpa_val);
515 if (lpa_val & PHY_1000BTSR_1000FD) {
516 debug_emac("eth_open : gigabit negotiated\n");
517 mac_control |= EMAC_MACCONTROL_FULLDUPLEX_ENABLE;
518 mac_control |= EMAC_MACCONTROL_GIGABIT_ENABLE;
519 }
520#endif
Nick Thompsond7e35432009-12-18 13:33:07 +0000521
Tom Rinide820362017-05-10 12:01:02 -0400522 davinci_eth_phy_read(active_phy_addr[index], MII_LPA, &lpa_val);
523 if (lpa_val & (LPA_100FULL | LPA_10FULL))
524 /* set EMAC for Full Duplex */
525 mac_control |= EMAC_MACCONTROL_FULLDUPLEX_ENABLE;
526#if defined(CONFIG_SOC_DA8XX) || \
527 (defined(CONFIG_OMAP34XX) && defined(CONFIG_DRIVER_TI_EMAC_USE_RMII))
528 mac_control |= EMAC_MACCONTROL_RMIISPEED_100;
529#endif
530 writel(mac_control, &adap_emac->MACCONTROL);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200531 /* Start receive process */
Ilya Yanok82b77212011-11-28 06:37:30 +0000532 writel(BD_TO_HW((u_int32_t)emac_rx_desc), &adap_emac->RX0HDP);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200533
534 debug_emac("- emac_open\n");
535
536 return(1);
537}
538
539/* EMAC Channel Teardown */
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200540static void davinci_eth_ch_teardown(int ch)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200541{
542 dv_reg dly = 0xff;
543 dv_reg cnt;
544
545 debug_emac("+ emac_ch_teardown\n");
546
547 if (ch == EMAC_CH_TX) {
548 /* Init TX channel teardown */
Nagabhushana Netagunteba511f72011-09-03 22:20:33 -0400549 writel(0, &adap_emac->TXTEARDOWN);
Nick Thompsond7e35432009-12-18 13:33:07 +0000550 do {
551 /*
552 * Wait here for Tx teardown completion interrupt to
553 * occur. Note: A task delay can be called here to pend
554 * rather than occupying CPU cycles - anyway it has
555 * been found that teardown takes very few cpu cycles
556 * and does not affect functionality
557 */
558 dly--;
559 udelay(1);
560 if (dly == 0)
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200561 break;
Nick Thompsond7e35432009-12-18 13:33:07 +0000562 cnt = readl(&adap_emac->TX0CP);
563 } while (cnt != 0xfffffffc);
564 writel(cnt, &adap_emac->TX0CP);
565 writel(0, &adap_emac->TX0HDP);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200566 } else {
567 /* Init RX channel teardown */
Nagabhushana Netagunteba511f72011-09-03 22:20:33 -0400568 writel(0, &adap_emac->RXTEARDOWN);
Nick Thompsond7e35432009-12-18 13:33:07 +0000569 do {
570 /*
571 * Wait here for Rx teardown completion interrupt to
572 * occur. Note: A task delay can be called here to pend
573 * rather than occupying CPU cycles - anyway it has
574 * been found that teardown takes very few cpu cycles
575 * and does not affect functionality
576 */
577 dly--;
578 udelay(1);
579 if (dly == 0)
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200580 break;
Nick Thompsond7e35432009-12-18 13:33:07 +0000581 cnt = readl(&adap_emac->RX0CP);
582 } while (cnt != 0xfffffffc);
583 writel(cnt, &adap_emac->RX0CP);
584 writel(0, &adap_emac->RX0HDP);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200585 }
586
587 debug_emac("- emac_ch_teardown\n");
588}
589
590/* Eth device close */
Ben Warren84535872009-05-26 00:34:07 -0700591static void davinci_eth_close(struct eth_device *dev)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200592{
593 debug_emac("+ emac_close\n");
594
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200595 davinci_eth_ch_teardown(EMAC_CH_TX); /* TX Channel teardown */
Jeroen Hofstee0b830192015-06-07 17:30:38 +0200596 if (readl(&adap_emac->RXCONTROL) & 1)
597 davinci_eth_ch_teardown(EMAC_CH_RX); /* RX Channel teardown */
Sergey Kubushync74b2102007-08-10 20:26:18 +0200598
599 /* Reset EMAC module and disable interrupts in wrapper */
Nick Thompsond7e35432009-12-18 13:33:07 +0000600 writel(1, &adap_emac->SOFTRESET);
601#if defined(DAVINCI_EMAC_VERSION2)
602 writel(1, &adap_ewrap->softrst);
603#else
604 writel(0, &adap_ewrap->EWCTL);
605#endif
Sergey Kubushync74b2102007-08-10 20:26:18 +0200606
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500607#if defined(CONFIG_DRIVER_TI_EMAC_USE_RMII) && \
608 defined(CONFIG_MACH_DAVINCI_DA850_EVM)
609 adap_ewrap->c0rxen = adap_ewrap->c1rxen = adap_ewrap->c2rxen = 0;
610 adap_ewrap->c0txen = adap_ewrap->c1txen = adap_ewrap->c2txen = 0;
611 adap_ewrap->c0miscen = adap_ewrap->c1miscen = adap_ewrap->c2miscen = 0;
612#endif
Sergey Kubushync74b2102007-08-10 20:26:18 +0200613 debug_emac("- emac_close\n");
Sergey Kubushync74b2102007-08-10 20:26:18 +0200614}
615
616static int tx_send_loop = 0;
617
618/*
619 * This function sends a single packet on the network and returns
620 * positive number (number of bytes transmitted) or negative for error
621 */
Ben Warren84535872009-05-26 00:34:07 -0700622static int davinci_eth_send_packet (struct eth_device *dev,
Joe Hershbergerbbcdefb2012-05-21 05:54:01 +0000623 void *packet, int length)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200624{
625 int ret_status = -1;
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000626 int index;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200627 tx_send_loop = 0;
628
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000629 index = get_active_phy();
630 if (index == -1) {
631 printf(" WARN: emac_send_packet: No link\n");
Sergey Kubushync74b2102007-08-10 20:26:18 +0200632 return (ret_status);
633 }
634
635 /* Check packet size and if < EMAC_MIN_ETHERNET_PKT_SIZE, pad it up */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200636 if (length < EMAC_MIN_ETHERNET_PKT_SIZE) {
Sergey Kubushync74b2102007-08-10 20:26:18 +0200637 length = EMAC_MIN_ETHERNET_PKT_SIZE;
638 }
639
640 /* Populate the TX descriptor */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200641 emac_tx_desc->next = 0;
642 emac_tx_desc->buffer = (u_int8_t *) packet;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200643 emac_tx_desc->buff_off_len = (length & 0xffff);
644 emac_tx_desc->pkt_flag_len = ((length & 0xffff) |
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200645 EMAC_CPPI_SOP_BIT |
646 EMAC_CPPI_OWNERSHIP_BIT |
647 EMAC_CPPI_EOP_BIT);
Ilya Yanok2aa87202011-11-28 06:37:33 +0000648
649 flush_dcache_range((unsigned long)packet,
karl beldan6202b8f2016-08-15 17:23:00 +0000650 (unsigned long)packet + ALIGN(length, PKTALIGN));
Ilya Yanok2aa87202011-11-28 06:37:33 +0000651
Sergey Kubushync74b2102007-08-10 20:26:18 +0200652 /* Send the packet */
Ilya Yanok82b77212011-11-28 06:37:30 +0000653 writel(BD_TO_HW((unsigned long)emac_tx_desc), &adap_emac->TX0HDP);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200654
655 /* Wait for packet to complete or link down */
656 while (1) {
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000657 if (!phy[index].get_link_speed(active_phy_addr[index])) {
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200658 davinci_eth_ch_teardown (EMAC_CH_TX);
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200659 return (ret_status);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200660 }
Nick Thompsond7e35432009-12-18 13:33:07 +0000661
Nick Thompsond7e35432009-12-18 13:33:07 +0000662 if (readl(&adap_emac->TXINTSTATRAW) & 0x01) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200663 ret_status = length;
664 break;
665 }
666 tx_send_loop++;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200667 }
668
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200669 return (ret_status);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200670}
671
672/*
673 * This function handles receipt of a packet from the network
674 */
Ben Warren84535872009-05-26 00:34:07 -0700675static int davinci_eth_rcv_packet (struct eth_device *dev)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200676{
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200677 volatile emac_desc *rx_curr_desc;
678 volatile emac_desc *curr_desc;
679 volatile emac_desc *tail_desc;
680 int status, ret = -1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200681
682 rx_curr_desc = emac_rx_active_head;
Vishwas Srivastava23001842016-01-26 12:46:42 +0530683 if (!rx_curr_desc)
684 return 0;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200685 status = rx_curr_desc->pkt_flag_len;
Vishwas Srivastava23001842016-01-26 12:46:42 +0530686 if ((status & EMAC_CPPI_OWNERSHIP_BIT) == 0) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200687 if (status & EMAC_CPPI_RX_ERROR_FRAME) {
688 /* Error in packet - discard it and requeue desc */
689 printf ("WARN: emac_rcv_pkt: Error in packet\n");
Sergey Kubushync74b2102007-08-10 20:26:18 +0200690 } else {
Ilya Yanok2aa87202011-11-28 06:37:33 +0000691 unsigned long tmp = (unsigned long)rx_curr_desc->buffer;
karl beldana51897b2016-08-15 17:23:01 +0000692 unsigned short len =
693 rx_curr_desc->buff_off_len & 0xffff;
Ilya Yanok2aa87202011-11-28 06:37:33 +0000694
karl beldana51897b2016-08-15 17:23:01 +0000695 invalidate_dcache_range(tmp, tmp + ALIGN(len, PKTALIGN));
696 net_process_received_packet(rx_curr_desc->buffer, len);
697 ret = len;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200698 }
Sergey Kubushync74b2102007-08-10 20:26:18 +0200699
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200700 /* Ack received packet descriptor */
Ilya Yanok82b77212011-11-28 06:37:30 +0000701 writel(BD_TO_HW((ulong)rx_curr_desc), &adap_emac->RX0CP);
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200702 curr_desc = rx_curr_desc;
703 emac_rx_active_head =
Ilya Yanok82b77212011-11-28 06:37:30 +0000704 (volatile emac_desc *) (HW_TO_BD(rx_curr_desc->next));
Sergey Kubushync74b2102007-08-10 20:26:18 +0200705
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200706 if (status & EMAC_CPPI_EOQ_BIT) {
707 if (emac_rx_active_head) {
Ilya Yanok82b77212011-11-28 06:37:30 +0000708 writel(BD_TO_HW((ulong)emac_rx_active_head),
Nick Thompsond7e35432009-12-18 13:33:07 +0000709 &adap_emac->RX0HDP);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200710 } else {
711 emac_rx_queue_active = 0;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200712 printf ("INFO:emac_rcv_packet: RX Queue not active\n");
Sergey Kubushync74b2102007-08-10 20:26:18 +0200713 }
714 }
715
716 /* Recycle RX descriptor */
717 rx_curr_desc->buff_off_len = EMAC_MAX_ETHERNET_PKT_SIZE;
718 rx_curr_desc->pkt_flag_len = EMAC_CPPI_OWNERSHIP_BIT;
719 rx_curr_desc->next = 0;
720
721 if (emac_rx_active_head == 0) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200722 printf ("INFO: emac_rcv_pkt: active queue head = 0\n");
Sergey Kubushync74b2102007-08-10 20:26:18 +0200723 emac_rx_active_head = curr_desc;
724 emac_rx_active_tail = curr_desc;
725 if (emac_rx_queue_active != 0) {
Ilya Yanok82b77212011-11-28 06:37:30 +0000726 writel(BD_TO_HW((ulong)emac_rx_active_head),
Nick Thompsond7e35432009-12-18 13:33:07 +0000727 &adap_emac->RX0HDP);
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200728 printf ("INFO: emac_rcv_pkt: active queue head = 0, HDP fired\n");
Sergey Kubushync74b2102007-08-10 20:26:18 +0200729 emac_rx_queue_active = 1;
730 }
731 } else {
732 tail_desc = emac_rx_active_tail;
733 emac_rx_active_tail = curr_desc;
Ilya Yanok82b77212011-11-28 06:37:30 +0000734 tail_desc->next = BD_TO_HW((ulong) curr_desc);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200735 status = tail_desc->pkt_flag_len;
736 if (status & EMAC_CPPI_EOQ_BIT) {
Ilya Yanok82b77212011-11-28 06:37:30 +0000737 writel(BD_TO_HW((ulong)curr_desc),
Nick Thompsond7e35432009-12-18 13:33:07 +0000738 &adap_emac->RX0HDP);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200739 status &= ~EMAC_CPPI_EOQ_BIT;
740 tail_desc->pkt_flag_len = status;
741 }
742 }
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200743 return (ret);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200744 }
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200745 return (0);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200746}
747
Ben Warren8cc13c12009-04-27 23:19:10 -0700748/*
749 * This function initializes the emac hardware. It does NOT initialize
750 * EMAC modules power or pin multiplexors, that is done by board_init()
751 * much earlier in bootup process. Returns 1 on success, 0 otherwise.
752 */
Ben Warren84535872009-05-26 00:34:07 -0700753int davinci_emac_initialize(void)
Ben Warren8cc13c12009-04-27 23:19:10 -0700754{
755 u_int32_t phy_id;
756 u_int16_t tmp;
757 int i;
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000758 int ret;
Ben Warren84535872009-05-26 00:34:07 -0700759 struct eth_device *dev;
760
761 dev = malloc(sizeof *dev);
762
763 if (dev == NULL)
764 return -1;
765
766 memset(dev, 0, sizeof *dev);
Ben Whitten192bc692015-12-30 13:05:58 +0000767 strcpy(dev->name, "DaVinci-EMAC");
Ben Warren84535872009-05-26 00:34:07 -0700768
769 dev->iobase = 0;
770 dev->init = davinci_eth_open;
771 dev->halt = davinci_eth_close;
772 dev->send = davinci_eth_send_packet;
773 dev->recv = davinci_eth_rcv_packet;
Ben Gardiner7b37a272010-09-23 09:58:43 -0400774 dev->write_hwaddr = davinci_eth_set_mac_addr;
Ben Warren84535872009-05-26 00:34:07 -0700775
776 eth_register(dev);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200777
Ben Warren8cc13c12009-04-27 23:19:10 -0700778 davinci_eth_mdio_enable();
779
Heiko Schocher19fdf9a2011-09-14 19:37:42 +0000780 /* let the EMAC detect the PHYs */
781 udelay(5000);
782
Ben Warren8cc13c12009-04-27 23:19:10 -0700783 for (i = 0; i < 256; i++) {
Nick Thompsond7e35432009-12-18 13:33:07 +0000784 if (readl(&adap_mdio->ALIVE))
Ben Warren8cc13c12009-04-27 23:19:10 -0700785 break;
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000786 udelay(1000);
Ben Warren8cc13c12009-04-27 23:19:10 -0700787 }
788
789 if (i >= 256) {
790 printf("No ETH PHY detected!!!\n");
791 return(0);
792 }
793
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000794 /* Find if PHY(s) is/are connected */
795 ret = davinci_eth_phy_detect();
796 if (!ret)
Ben Warren8cc13c12009-04-27 23:19:10 -0700797 return(0);
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000798 else
Heiko Schocherdc02bad2011-11-15 10:00:04 -0500799 debug_emac(" %d ETH PHY detected\n", ret);
Ben Warren8cc13c12009-04-27 23:19:10 -0700800
801 /* Get PHY ID and initialize phy_ops for a detected PHY */
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000802 for (i = 0; i < num_phy; i++) {
803 if (!davinci_eth_phy_read(active_phy_addr[i], MII_PHYSID1,
804 &tmp)) {
805 active_phy_addr[i] = 0xff;
806 continue;
807 }
Ben Warren8cc13c12009-04-27 23:19:10 -0700808
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000809 phy_id = (tmp << 16) & 0xffff0000;
Ben Warren8cc13c12009-04-27 23:19:10 -0700810
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000811 if (!davinci_eth_phy_read(active_phy_addr[i], MII_PHYSID2,
812 &tmp)) {
813 active_phy_addr[i] = 0xff;
814 continue;
815 }
Ben Warren8cc13c12009-04-27 23:19:10 -0700816
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000817 phy_id |= tmp & 0x0000ffff;
Ben Warren8cc13c12009-04-27 23:19:10 -0700818
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000819 switch (phy_id) {
Ilya Yanok918588c2011-11-28 06:37:31 +0000820#ifdef PHY_KSZ8873
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000821 case PHY_KSZ8873:
822 sprintf(phy[i].name, "KSZ8873 @ 0x%02x",
823 active_phy_addr[i]);
824 phy[i].init = ksz8873_init_phy;
825 phy[i].is_phy_connected = ksz8873_is_phy_connected;
826 phy[i].get_link_speed = ksz8873_get_link_speed;
827 phy[i].auto_negotiate = ksz8873_auto_negotiate;
828 break;
Ilya Yanok918588c2011-11-28 06:37:31 +0000829#endif
830#ifdef PHY_LXT972
Ben Warren8cc13c12009-04-27 23:19:10 -0700831 case PHY_LXT972:
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000832 sprintf(phy[i].name, "LXT972 @ 0x%02x",
833 active_phy_addr[i]);
834 phy[i].init = lxt972_init_phy;
835 phy[i].is_phy_connected = lxt972_is_phy_connected;
836 phy[i].get_link_speed = lxt972_get_link_speed;
837 phy[i].auto_negotiate = lxt972_auto_negotiate;
Ben Warren8cc13c12009-04-27 23:19:10 -0700838 break;
Ilya Yanok918588c2011-11-28 06:37:31 +0000839#endif
840#ifdef PHY_DP83848
Ben Warren8cc13c12009-04-27 23:19:10 -0700841 case PHY_DP83848:
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000842 sprintf(phy[i].name, "DP83848 @ 0x%02x",
843 active_phy_addr[i]);
844 phy[i].init = dp83848_init_phy;
845 phy[i].is_phy_connected = dp83848_is_phy_connected;
846 phy[i].get_link_speed = dp83848_get_link_speed;
847 phy[i].auto_negotiate = dp83848_auto_negotiate;
Ben Warren8cc13c12009-04-27 23:19:10 -0700848 break;
Ilya Yanok918588c2011-11-28 06:37:31 +0000849#endif
850#ifdef PHY_ET1011C
Sandeep Paulraj840f8922010-12-28 15:43:16 -0500851 case PHY_ET1011C:
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000852 sprintf(phy[i].name, "ET1011C @ 0x%02x",
853 active_phy_addr[i]);
854 phy[i].init = gen_init_phy;
855 phy[i].is_phy_connected = gen_is_phy_connected;
856 phy[i].get_link_speed = et1011c_get_link_speed;
857 phy[i].auto_negotiate = gen_auto_negotiate;
Sandeep Paulraj840f8922010-12-28 15:43:16 -0500858 break;
Ilya Yanok918588c2011-11-28 06:37:31 +0000859#endif
Ben Warren8cc13c12009-04-27 23:19:10 -0700860 default:
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000861 sprintf(phy[i].name, "GENERIC @ 0x%02x",
862 active_phy_addr[i]);
863 phy[i].init = gen_init_phy;
864 phy[i].is_phy_connected = gen_is_phy_connected;
865 phy[i].get_link_speed = gen_get_link_speed;
866 phy[i].auto_negotiate = gen_auto_negotiate;
867 }
868
Ilya Yanoke0297a52011-11-01 13:15:55 +0000869 debug("Ethernet PHY: %s\n", phy[i].name);
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000870
Joe Hershberger5a49f172016-08-08 11:28:38 -0500871 int retval;
872 struct mii_dev *mdiodev = mdio_alloc();
873 if (!mdiodev)
874 return -ENOMEM;
875 strncpy(mdiodev->name, phy[i].name, MDIO_NAME_LEN);
876 mdiodev->read = davinci_mii_phy_read;
877 mdiodev->write = davinci_mii_phy_write;
878
879 retval = mdio_register(mdiodev);
880 if (retval < 0)
881 return retval;
Tom Rinide820362017-05-10 12:01:02 -0400882#ifdef DAVINCI_EMAC_GIG_ENABLE
883#define PHY_CONF_REG 22
884 /* Enable PHY to clock out TX_CLK */
885 davinci_eth_phy_read(active_phy_addr[i], PHY_CONF_REG, &tmp);
886 tmp |= PHY_CONF_TXCLKEN;
887 davinci_eth_phy_write(active_phy_addr[i], PHY_CONF_REG, tmp);
888 davinci_eth_phy_read(active_phy_addr[i], PHY_CONF_REG, &tmp);
889#endif
Ben Warren8cc13c12009-04-27 23:19:10 -0700890 }
Rajashekhara, Sudhakarb78375a2012-06-07 00:27:44 +0000891
Tom Rinide820362017-05-10 12:01:02 -0400892#if defined(CONFIG_TI816X) || (defined(CONFIG_DRIVER_TI_EMAC_USE_RMII) && \
Bastian Ruppertde575502012-09-13 22:29:03 +0000893 defined(CONFIG_MACH_DAVINCI_DA850_EVM) && \
Tom Rinide820362017-05-10 12:01:02 -0400894 !defined(CONFIG_DRIVER_TI_EMAC_RMII_NO_NEGOTIATE))
Rajashekhara, Sudhakarb78375a2012-06-07 00:27:44 +0000895 for (i = 0; i < num_phy; i++) {
896 if (phy[i].is_phy_connected(i))
897 phy[i].auto_negotiate(i);
898 }
899#endif
Ben Warren8cc13c12009-04-27 23:19:10 -0700900 return(1);
901}