]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/net/davinci_emac.c
net: davince: add missing include
[people/ms/u-boot.git] / drivers / net / davinci_emac.c
CommitLineData
c74b2108
SK
1/*
2 * Ethernet driver for TI TMS320DM644x (DaVinci) chips.
3 *
4 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
5 *
6 * Parts shamelessly stolen from TI's dm644x_emac.c. Original copyright
7 * follows:
8 *
9 * ----------------------------------------------------------------------------
10 *
11 * dm644x_emac.c
12 *
13 * TI DaVinci (DM644X) EMAC peripheral driver source for DV-EVM
14 *
15 * Copyright (C) 2005 Texas Instruments.
16 *
17 * ----------------------------------------------------------------------------
18 *
1a459660 19 * SPDX-License-Identifier: GPL-2.0+
c74b2108 20 *
c74b2108
SK
21 * Modifications:
22 * ver. 1.0: Sep 2005, Anant Gole - Created EMAC version for uBoot.
23 * ver 1.1: Nov 2005, Anant Gole - Extended the RX logic for multiple descriptors
c74b2108
SK
24 */
25#include <common.h>
26#include <command.h>
27#include <net.h>
28#include <miiphy.h>
8453587e 29#include <malloc.h>
ee3fad87 30#include <netdev.h>
2aa87202 31#include <linux/compiler.h>
c74b2108 32#include <asm/arch/emac_defs.h>
d7e35437 33#include <asm/io.h>
7c587d32 34#include "davinci_emac.h"
c74b2108 35
c74b2108
SK
36unsigned int emac_dbg = 0;
37#define debug_emac(fmt,args...) if (emac_dbg) printf(fmt,##args)
38
82b77217
IY
39#ifdef EMAC_HW_RAM_ADDR
40static inline unsigned long BD_TO_HW(unsigned long x)
41{
42 if (x == 0)
43 return 0;
44
45 return x - EMAC_WRAPPER_RAM_ADDR + EMAC_HW_RAM_ADDR;
46}
47
48static inline unsigned long HW_TO_BD(unsigned long x)
49{
50 if (x == 0)
51 return 0;
52
53 return x - EMAC_HW_RAM_ADDR + EMAC_WRAPPER_RAM_ADDR;
54}
55#else
56#define BD_TO_HW(x) (x)
57#define HW_TO_BD(x) (x)
58#endif
59
d7e35437 60#ifdef DAVINCI_EMAC_GIG_ENABLE
fb1d6332 61#define emac_gigabit_enable(phy_addr) davinci_eth_gigabit_enable(phy_addr)
d7e35437 62#else
fb1d6332 63#define emac_gigabit_enable(phy_addr) /* no gigabit to enable */
d7e35437
NT
64#endif
65
882ecfa3
HS
66#if !defined(CONFIG_SYS_EMAC_TI_CLKDIV)
67#define CONFIG_SYS_EMAC_TI_CLKDIV ((EMAC_MDIO_BUS_FREQ / \
68 EMAC_MDIO_CLOCK_FREQ) - 1)
69#endif
70
fcaac589 71static void davinci_eth_mdio_enable(void);
c74b2108
SK
72
73static int gen_init_phy(int phy_addr);
74static int gen_is_phy_connected(int phy_addr);
75static int gen_get_link_speed(int phy_addr);
76static int gen_auto_negotiate(int phy_addr);
77
c74b2108
SK
78void eth_mdio_enable(void)
79{
fcaac589 80 davinci_eth_mdio_enable();
c74b2108 81}
c74b2108 82
c74b2108
SK
83/* EMAC Addresses */
84static volatile emac_regs *adap_emac = (emac_regs *)EMAC_BASE_ADDR;
85static volatile ewrap_regs *adap_ewrap = (ewrap_regs *)EMAC_WRAPPER_BASE_ADDR;
86static volatile mdio_regs *adap_mdio = (mdio_regs *)EMAC_MDIO_BASE_ADDR;
87
88/* EMAC descriptors */
89static volatile emac_desc *emac_rx_desc = (emac_desc *)(EMAC_WRAPPER_RAM_ADDR + EMAC_RX_DESC_BASE);
90static volatile emac_desc *emac_tx_desc = (emac_desc *)(EMAC_WRAPPER_RAM_ADDR + EMAC_TX_DESC_BASE);
91static volatile emac_desc *emac_rx_active_head = 0;
92static volatile emac_desc *emac_rx_active_tail = 0;
93static int emac_rx_queue_active = 0;
94
95/* Receive packet buffers */
2aa87202
IY
96static unsigned char emac_rx_buffers[EMAC_MAX_RX_BUFFERS * EMAC_RXBUF_SIZE]
97 __aligned(ARCH_DMA_MINALIGN);
c74b2108 98
dc02bada
HS
99#ifndef CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT
100#define CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT 3
101#endif
062fe7d3 102
c74b2108 103/* PHY address for a discovered PHY (0xff - not found) */
dc02bada 104static u_int8_t active_phy_addr[CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT];
062fe7d3
MH
105
106/* number of PHY found active */
107static u_int8_t num_phy;
c74b2108 108
dc02bada 109phy_t phy[CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT];
c74b2108 110
2aa87202
IY
111static inline void davinci_flush_rx_descs(void)
112{
113 /* flush the whole RX descs area */
114 flush_dcache_range(EMAC_WRAPPER_RAM_ADDR + EMAC_RX_DESC_BASE,
115 EMAC_WRAPPER_RAM_ADDR + EMAC_TX_DESC_BASE);
116}
117
118static inline void davinci_invalidate_rx_descs(void)
119{
120 /* invalidate the whole RX descs area */
121 invalidate_dcache_range(EMAC_WRAPPER_RAM_ADDR + EMAC_RX_DESC_BASE,
122 EMAC_WRAPPER_RAM_ADDR + EMAC_TX_DESC_BASE);
123}
124
125static inline void davinci_flush_desc(emac_desc *desc)
126{
127 flush_dcache_range((unsigned long)desc,
128 (unsigned long)desc + sizeof(*desc));
129}
130
7b37a27e
BG
131static int davinci_eth_set_mac_addr(struct eth_device *dev)
132{
133 unsigned long mac_hi;
134 unsigned long mac_lo;
135
136 /*
137 * Set MAC Addresses & Init multicast Hash to 0 (disable any multicast
138 * receive)
139 * Using channel 0 only - other channels are disabled
140 * */
141 writel(0, &adap_emac->MACINDEX);
142 mac_hi = (dev->enetaddr[3] << 24) |
143 (dev->enetaddr[2] << 16) |
144 (dev->enetaddr[1] << 8) |
145 (dev->enetaddr[0]);
146 mac_lo = (dev->enetaddr[5] << 8) |
147 (dev->enetaddr[4]);
148
149 writel(mac_hi, &adap_emac->MACADDRHI);
150#if defined(DAVINCI_EMAC_VERSION2)
151 writel(mac_lo | EMAC_MAC_ADDR_IS_VALID | EMAC_MAC_ADDR_MATCH,
152 &adap_emac->MACADDRLO);
153#else
154 writel(mac_lo, &adap_emac->MACADDRLO);
155#endif
156
157 writel(0, &adap_emac->MACHASH1);
158 writel(0, &adap_emac->MACHASH2);
159
160 /* Set source MAC address - REQUIRED */
161 writel(mac_hi, &adap_emac->MACSRCADDRHI);
162 writel(mac_lo, &adap_emac->MACSRCADDRLO);
163
164
165 return 0;
166}
167
fcaac589 168static void davinci_eth_mdio_enable(void)
c74b2108
SK
169{
170 u_int32_t clkdiv;
171
882ecfa3 172 clkdiv = CONFIG_SYS_EMAC_TI_CLKDIV;
c74b2108 173
d7e35437
NT
174 writel((clkdiv & 0xff) |
175 MDIO_CONTROL_ENABLE |
176 MDIO_CONTROL_FAULT |
177 MDIO_CONTROL_FAULT_ENABLE,
178 &adap_mdio->CONTROL);
c74b2108 179
d7e35437
NT
180 while (readl(&adap_mdio->CONTROL) & MDIO_CONTROL_IDLE)
181 ;
c74b2108
SK
182}
183
184/*
185 * Tries to find an active connected PHY. Returns 1 if address if found.
186 * If no active PHY (or more than one PHY) found returns 0.
187 * Sets active_phy_addr variable.
188 */
fcaac589 189static int davinci_eth_phy_detect(void)
c74b2108
SK
190{
191 u_int32_t phy_act_state;
192 int i;
062fe7d3
MH
193 int j;
194 unsigned int count = 0;
195
dc02bada
HS
196 for (i = 0; i < CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT; i++)
197 active_phy_addr[i] = 0xff;
c74b2108 198
062fe7d3
MH
199 udelay(1000);
200 phy_act_state = readl(&adap_mdio->ALIVE);
c74b2108 201
d7e35437 202 if (phy_act_state == 0)
062fe7d3 203 return 0; /* No active PHYs */
c74b2108 204
fcaac589 205 debug_emac("davinci_eth_phy_detect(), ALIVE = 0x%08x\n", phy_act_state);
c74b2108 206
062fe7d3 207 for (i = 0, j = 0; i < 32; i++)
c74b2108 208 if (phy_act_state & (1 << i)) {
062fe7d3 209 count++;
b6090098 210 if (count <= CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT) {
dc02bada
HS
211 active_phy_addr[j++] = i;
212 } else {
213 printf("%s: to many PHYs detected.\n",
214 __func__);
215 count = 0;
216 break;
217 }
c74b2108 218 }
c74b2108 219
062fe7d3
MH
220 num_phy = count;
221
222 return count;
c74b2108
SK
223}
224
225
226/* Read a PHY register via MDIO inteface. Returns 1 on success, 0 otherwise */
fcaac589 227int davinci_eth_phy_read(u_int8_t phy_addr, u_int8_t reg_num, u_int16_t *data)
c74b2108
SK
228{
229 int tmp;
230
d7e35437
NT
231 while (readl(&adap_mdio->USERACCESS0) & MDIO_USERACCESS0_GO)
232 ;
c74b2108 233
d7e35437
NT
234 writel(MDIO_USERACCESS0_GO |
235 MDIO_USERACCESS0_WRITE_READ |
236 ((reg_num & 0x1f) << 21) |
237 ((phy_addr & 0x1f) << 16),
238 &adap_mdio->USERACCESS0);
c74b2108
SK
239
240 /* Wait for command to complete */
d7e35437
NT
241 while ((tmp = readl(&adap_mdio->USERACCESS0)) & MDIO_USERACCESS0_GO)
242 ;
c74b2108
SK
243
244 if (tmp & MDIO_USERACCESS0_ACK) {
245 *data = tmp & 0xffff;
246 return(1);
247 }
248
249 *data = -1;
250 return(0);
251}
252
253/* Write to a PHY register via MDIO inteface. Blocks until operation is complete. */
fcaac589 254int davinci_eth_phy_write(u_int8_t phy_addr, u_int8_t reg_num, u_int16_t data)
c74b2108
SK
255{
256
d7e35437
NT
257 while (readl(&adap_mdio->USERACCESS0) & MDIO_USERACCESS0_GO)
258 ;
c74b2108 259
d7e35437
NT
260 writel(MDIO_USERACCESS0_GO |
261 MDIO_USERACCESS0_WRITE_WRITE |
262 ((reg_num & 0x1f) << 21) |
263 ((phy_addr & 0x1f) << 16) |
264 (data & 0xffff),
265 &adap_mdio->USERACCESS0);
c74b2108
SK
266
267 /* Wait for command to complete */
d7e35437
NT
268 while (readl(&adap_mdio->USERACCESS0) & MDIO_USERACCESS0_GO)
269 ;
c74b2108
SK
270
271 return(1);
272}
273
274/* PHY functions for a generic PHY */
275static int gen_init_phy(int phy_addr)
276{
277 int ret = 1;
278
279 if (gen_get_link_speed(phy_addr)) {
280 /* Try another time */
281 ret = gen_get_link_speed(phy_addr);
282 }
283
284 return(ret);
285}
286
287static int gen_is_phy_connected(int phy_addr)
288{
289 u_int16_t dummy;
290
062fe7d3
MH
291 return davinci_eth_phy_read(phy_addr, MII_PHYSID1, &dummy);
292}
293
294static int get_active_phy(void)
295{
296 int i;
297
298 for (i = 0; i < num_phy; i++)
299 if (phy[i].get_link_speed(active_phy_addr[i]))
300 return i;
301
302 return -1; /* Return error if no link */
c74b2108
SK
303}
304
305static int gen_get_link_speed(int phy_addr)
306{
307 u_int16_t tmp;
308
d2607401
SR
309 if (davinci_eth_phy_read(phy_addr, MII_STATUS_REG, &tmp) &&
310 (tmp & 0x04)) {
311#if defined(CONFIG_DRIVER_TI_EMAC_USE_RMII) && \
312 defined(CONFIG_MACH_DAVINCI_DA850_EVM)
7d2fade7 313 davinci_eth_phy_read(phy_addr, MII_LPA, &tmp);
d2607401
SR
314
315 /* Speed doesn't matter, there is no setting for it in EMAC. */
7d2fade7 316 if (tmp & (LPA_100FULL | LPA_10FULL)) {
d2607401
SR
317 /* set EMAC for Full Duplex */
318 writel(EMAC_MACCONTROL_MIIEN_ENABLE |
319 EMAC_MACCONTROL_FULLDUPLEX_ENABLE,
320 &adap_emac->MACCONTROL);
321 } else {
322 /*set EMAC for Half Duplex */
323 writel(EMAC_MACCONTROL_MIIEN_ENABLE,
324 &adap_emac->MACCONTROL);
325 }
326
7d2fade7 327 if (tmp & (LPA_100FULL | LPA_100HALF))
d2607401
SR
328 writel(readl(&adap_emac->MACCONTROL) |
329 EMAC_MACCONTROL_RMIISPEED_100,
330 &adap_emac->MACCONTROL);
331 else
332 writel(readl(&adap_emac->MACCONTROL) &
333 ~EMAC_MACCONTROL_RMIISPEED_100,
334 &adap_emac->MACCONTROL);
335#endif
c74b2108 336 return(1);
d2607401 337 }
c74b2108
SK
338
339 return(0);
340}
341
342static int gen_auto_negotiate(int phy_addr)
343{
344 u_int16_t tmp;
cc4bd47f
MH
345 u_int16_t val;
346 unsigned long cntr = 0;
347
348 if (!davinci_eth_phy_read(phy_addr, MII_BMCR, &tmp))
349 return 0;
350
351 val = tmp | BMCR_FULLDPLX | BMCR_ANENABLE |
352 BMCR_SPEED100;
353 davinci_eth_phy_write(phy_addr, MII_BMCR, val);
354
355 if (!davinci_eth_phy_read(phy_addr, MII_ADVERTISE, &val))
356 return 0;
357
358 val |= (ADVERTISE_100FULL | ADVERTISE_100HALF | ADVERTISE_10FULL |
359 ADVERTISE_10HALF);
360 davinci_eth_phy_write(phy_addr, MII_ADVERTISE, val);
c74b2108 361
8ef583a0 362 if (!davinci_eth_phy_read(phy_addr, MII_BMCR, &tmp))
c74b2108
SK
363 return(0);
364
365 /* Restart Auto_negotiation */
cc4bd47f 366 tmp |= BMCR_ANRESTART;
8ef583a0 367 davinci_eth_phy_write(phy_addr, MII_BMCR, tmp);
c74b2108
SK
368
369 /*check AutoNegotiate complete */
cc4bd47f
MH
370 do {
371 udelay(40000);
372 if (!davinci_eth_phy_read(phy_addr, MII_BMSR, &tmp))
373 return 0;
374
375 if (tmp & BMSR_ANEGCOMPLETE)
376 break;
377
378 cntr++;
379 } while (cntr < 200);
380
8ef583a0 381 if (!davinci_eth_phy_read(phy_addr, MII_BMSR, &tmp))
c74b2108
SK
382 return(0);
383
8ef583a0 384 if (!(tmp & BMSR_ANEGCOMPLETE))
c74b2108
SK
385 return(0);
386
387 return(gen_get_link_speed(phy_addr));
388}
389/* End of generic PHY functions */
390
391
afaac86f 392#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
5700bb63 393static int davinci_mii_phy_read(const char *devname, unsigned char addr, unsigned char reg, unsigned short *value)
c74b2108 394{
fcaac589 395 return(davinci_eth_phy_read(addr, reg, value) ? 0 : 1);
c74b2108
SK
396}
397
5700bb63 398static int davinci_mii_phy_write(const char *devname, unsigned char addr, unsigned char reg, unsigned short value)
c74b2108 399{
fcaac589 400 return(davinci_eth_phy_write(addr, reg, value) ? 0 : 1);
c74b2108 401}
c74b2108
SK
402#endif
403
fb1d6332 404static void __attribute__((unused)) davinci_eth_gigabit_enable(int phy_addr)
d7e35437
NT
405{
406 u_int16_t data;
407
fb1d6332 408 if (davinci_eth_phy_read(phy_addr, 0, &data)) {
d7e35437
NT
409 if (data & (1 << 6)) { /* speed selection MSB */
410 /*
411 * Check if link detected is giga-bit
412 * If Gigabit mode detected, enable gigbit in MAC
413 */
4b9b9e7c
SP
414 writel(readl(&adap_emac->MACCONTROL) |
415 EMAC_MACCONTROL_GIGFORCE |
416 EMAC_MACCONTROL_GIGABIT_ENABLE,
417 &adap_emac->MACCONTROL);
d7e35437
NT
418 }
419 }
420}
c74b2108
SK
421
422/* Eth device open */
8453587e 423static int davinci_eth_open(struct eth_device *dev, bd_t *bis)
c74b2108
SK
424{
425 dv_reg_p addr;
426 u_int32_t clkdiv, cnt;
427 volatile emac_desc *rx_desc;
062fe7d3 428 int index;
c74b2108
SK
429
430 debug_emac("+ emac_open\n");
431
432 /* Reset EMAC module and disable interrupts in wrapper */
d7e35437
NT
433 writel(1, &adap_emac->SOFTRESET);
434 while (readl(&adap_emac->SOFTRESET) != 0)
435 ;
436#if defined(DAVINCI_EMAC_VERSION2)
437 writel(1, &adap_ewrap->softrst);
438 while (readl(&adap_ewrap->softrst) != 0)
439 ;
440#else
441 writel(0, &adap_ewrap->EWCTL);
c74b2108 442 for (cnt = 0; cnt < 5; cnt++) {
d7e35437 443 clkdiv = readl(&adap_ewrap->EWCTL);
c74b2108 444 }
d7e35437 445#endif
c74b2108 446
d2607401
SR
447#if defined(CONFIG_DRIVER_TI_EMAC_USE_RMII) && \
448 defined(CONFIG_MACH_DAVINCI_DA850_EVM)
449 adap_ewrap->c0rxen = adap_ewrap->c1rxen = adap_ewrap->c2rxen = 0;
450 adap_ewrap->c0txen = adap_ewrap->c1txen = adap_ewrap->c2txen = 0;
451 adap_ewrap->c0miscen = adap_ewrap->c1miscen = adap_ewrap->c2miscen = 0;
452#endif
c74b2108
SK
453 rx_desc = emac_rx_desc;
454
d7e35437
NT
455 writel(1, &adap_emac->TXCONTROL);
456 writel(1, &adap_emac->RXCONTROL);
c74b2108 457
7b37a27e 458 davinci_eth_set_mac_addr(dev);
c74b2108
SK
459
460 /* Set DMA 8 TX / 8 RX Head pointers to 0 */
461 addr = &adap_emac->TX0HDP;
462 for(cnt = 0; cnt < 16; cnt++)
d7e35437 463 writel(0, addr++);
c74b2108
SK
464
465 addr = &adap_emac->RX0HDP;
466 for(cnt = 0; cnt < 16; cnt++)
d7e35437 467 writel(0, addr++);
c74b2108
SK
468
469 /* Clear Statistics (do this before setting MacControl register) */
470 addr = &adap_emac->RXGOODFRAMES;
471 for(cnt = 0; cnt < EMAC_NUM_STATS; cnt++)
d7e35437 472 writel(0, addr++);
c74b2108
SK
473
474 /* No multicast addressing */
d7e35437
NT
475 writel(0, &adap_emac->MACHASH1);
476 writel(0, &adap_emac->MACHASH2);
c74b2108
SK
477
478 /* Create RX queue and set receive process in place */
479 emac_rx_active_head = emac_rx_desc;
480 for (cnt = 0; cnt < EMAC_MAX_RX_BUFFERS; cnt++) {
82b77217 481 rx_desc->next = BD_TO_HW((u_int32_t)(rx_desc + 1));
2aa87202 482 rx_desc->buffer = &emac_rx_buffers[cnt * EMAC_RXBUF_SIZE];
c74b2108
SK
483 rx_desc->buff_off_len = EMAC_MAX_ETHERNET_PKT_SIZE;
484 rx_desc->pkt_flag_len = EMAC_CPPI_OWNERSHIP_BIT;
485 rx_desc++;
486 }
487
d7e35437 488 /* Finalize the rx desc list */
c74b2108
SK
489 rx_desc--;
490 rx_desc->next = 0;
491 emac_rx_active_tail = rx_desc;
492 emac_rx_queue_active = 1;
493
2aa87202
IY
494 davinci_flush_rx_descs();
495
c74b2108 496 /* Enable TX/RX */
d7e35437
NT
497 writel(EMAC_MAX_ETHERNET_PKT_SIZE, &adap_emac->RXMAXLEN);
498 writel(0, &adap_emac->RXBUFFEROFFSET);
c74b2108 499
d7e35437
NT
500 /*
501 * No fancy configs - Use this for promiscous debug
502 * - EMAC_RXMBPENABLE_RXCAFEN_ENABLE
503 */
504 writel(EMAC_RXMBPENABLE_RXBROADEN, &adap_emac->RXMBPENABLE);
c74b2108
SK
505
506 /* Enable ch 0 only */
d7e35437 507 writel(1, &adap_emac->RXUNICASTSET);
c74b2108
SK
508
509 /* Enable MII interface and Full duplex mode */
80deda5d
IY
510#if defined(CONFIG_SOC_DA8XX) || \
511 (defined(CONFIG_OMAP34XX) && defined(CONFIG_DRIVER_TI_EMAC_USE_RMII))
d7e35437
NT
512 writel((EMAC_MACCONTROL_MIIEN_ENABLE |
513 EMAC_MACCONTROL_FULLDUPLEX_ENABLE |
514 EMAC_MACCONTROL_RMIISPEED_100),
515 &adap_emac->MACCONTROL);
516#else
517 writel((EMAC_MACCONTROL_MIIEN_ENABLE |
518 EMAC_MACCONTROL_FULLDUPLEX_ENABLE),
519 &adap_emac->MACCONTROL);
520#endif
c74b2108
SK
521
522 /* Init MDIO & get link state */
882ecfa3 523 clkdiv = CONFIG_SYS_EMAC_TI_CLKDIV;
d7e35437
NT
524 writel((clkdiv & 0xff) | MDIO_CONTROL_ENABLE | MDIO_CONTROL_FAULT,
525 &adap_mdio->CONTROL);
526
527 /* We need to wait for MDIO to start */
528 udelay(1000);
c74b2108 529
062fe7d3
MH
530 index = get_active_phy();
531 if (index == -1)
c74b2108
SK
532 return(0);
533
fb1d6332 534 emac_gigabit_enable(active_phy_addr[index]);
d7e35437 535
c74b2108 536 /* Start receive process */
82b77217 537 writel(BD_TO_HW((u_int32_t)emac_rx_desc), &adap_emac->RX0HDP);
c74b2108
SK
538
539 debug_emac("- emac_open\n");
540
541 return(1);
542}
543
544/* EMAC Channel Teardown */
fcaac589 545static void davinci_eth_ch_teardown(int ch)
c74b2108
SK
546{
547 dv_reg dly = 0xff;
548 dv_reg cnt;
549
550 debug_emac("+ emac_ch_teardown\n");
551
552 if (ch == EMAC_CH_TX) {
553 /* Init TX channel teardown */
ba511f77 554 writel(0, &adap_emac->TXTEARDOWN);
d7e35437
NT
555 do {
556 /*
557 * Wait here for Tx teardown completion interrupt to
558 * occur. Note: A task delay can be called here to pend
559 * rather than occupying CPU cycles - anyway it has
560 * been found that teardown takes very few cpu cycles
561 * and does not affect functionality
562 */
563 dly--;
564 udelay(1);
565 if (dly == 0)
53677ef1 566 break;
d7e35437
NT
567 cnt = readl(&adap_emac->TX0CP);
568 } while (cnt != 0xfffffffc);
569 writel(cnt, &adap_emac->TX0CP);
570 writel(0, &adap_emac->TX0HDP);
c74b2108
SK
571 } else {
572 /* Init RX channel teardown */
ba511f77 573 writel(0, &adap_emac->RXTEARDOWN);
d7e35437
NT
574 do {
575 /*
576 * Wait here for Rx teardown completion interrupt to
577 * occur. Note: A task delay can be called here to pend
578 * rather than occupying CPU cycles - anyway it has
579 * been found that teardown takes very few cpu cycles
580 * and does not affect functionality
581 */
582 dly--;
583 udelay(1);
584 if (dly == 0)
53677ef1 585 break;
d7e35437
NT
586 cnt = readl(&adap_emac->RX0CP);
587 } while (cnt != 0xfffffffc);
588 writel(cnt, &adap_emac->RX0CP);
589 writel(0, &adap_emac->RX0HDP);
c74b2108
SK
590 }
591
592 debug_emac("- emac_ch_teardown\n");
593}
594
595/* Eth device close */
8453587e 596static void davinci_eth_close(struct eth_device *dev)
c74b2108
SK
597{
598 debug_emac("+ emac_close\n");
599
fcaac589
SP
600 davinci_eth_ch_teardown(EMAC_CH_TX); /* TX Channel teardown */
601 davinci_eth_ch_teardown(EMAC_CH_RX); /* RX Channel teardown */
c74b2108
SK
602
603 /* Reset EMAC module and disable interrupts in wrapper */
d7e35437
NT
604 writel(1, &adap_emac->SOFTRESET);
605#if defined(DAVINCI_EMAC_VERSION2)
606 writel(1, &adap_ewrap->softrst);
607#else
608 writel(0, &adap_ewrap->EWCTL);
609#endif
c74b2108 610
d2607401
SR
611#if defined(CONFIG_DRIVER_TI_EMAC_USE_RMII) && \
612 defined(CONFIG_MACH_DAVINCI_DA850_EVM)
613 adap_ewrap->c0rxen = adap_ewrap->c1rxen = adap_ewrap->c2rxen = 0;
614 adap_ewrap->c0txen = adap_ewrap->c1txen = adap_ewrap->c2txen = 0;
615 adap_ewrap->c0miscen = adap_ewrap->c1miscen = adap_ewrap->c2miscen = 0;
616#endif
c74b2108 617 debug_emac("- emac_close\n");
c74b2108
SK
618}
619
620static int tx_send_loop = 0;
621
622/*
623 * This function sends a single packet on the network and returns
624 * positive number (number of bytes transmitted) or negative for error
625 */
8453587e 626static int davinci_eth_send_packet (struct eth_device *dev,
bbcdefb3 627 void *packet, int length)
c74b2108
SK
628{
629 int ret_status = -1;
062fe7d3 630 int index;
c74b2108
SK
631 tx_send_loop = 0;
632
062fe7d3
MH
633 index = get_active_phy();
634 if (index == -1) {
635 printf(" WARN: emac_send_packet: No link\n");
c74b2108
SK
636 return (ret_status);
637 }
638
fb1d6332 639 emac_gigabit_enable(active_phy_addr[index]);
d7e35437 640
c74b2108 641 /* Check packet size and if < EMAC_MIN_ETHERNET_PKT_SIZE, pad it up */
53677ef1 642 if (length < EMAC_MIN_ETHERNET_PKT_SIZE) {
c74b2108
SK
643 length = EMAC_MIN_ETHERNET_PKT_SIZE;
644 }
645
646 /* Populate the TX descriptor */
53677ef1
WD
647 emac_tx_desc->next = 0;
648 emac_tx_desc->buffer = (u_int8_t *) packet;
c74b2108
SK
649 emac_tx_desc->buff_off_len = (length & 0xffff);
650 emac_tx_desc->pkt_flag_len = ((length & 0xffff) |
53677ef1
WD
651 EMAC_CPPI_SOP_BIT |
652 EMAC_CPPI_OWNERSHIP_BIT |
653 EMAC_CPPI_EOP_BIT);
2aa87202
IY
654
655 flush_dcache_range((unsigned long)packet,
656 (unsigned long)packet + length);
657 davinci_flush_desc(emac_tx_desc);
658
c74b2108 659 /* Send the packet */
82b77217 660 writel(BD_TO_HW((unsigned long)emac_tx_desc), &adap_emac->TX0HDP);
c74b2108
SK
661
662 /* Wait for packet to complete or link down */
663 while (1) {
062fe7d3 664 if (!phy[index].get_link_speed(active_phy_addr[index])) {
fcaac589 665 davinci_eth_ch_teardown (EMAC_CH_TX);
53677ef1
WD
666 return (ret_status);
667 }
d7e35437 668
fb1d6332 669 emac_gigabit_enable(active_phy_addr[index]);
d7e35437
NT
670
671 if (readl(&adap_emac->TXINTSTATRAW) & 0x01) {
53677ef1
WD
672 ret_status = length;
673 break;
c74b2108 674 }
53677ef1 675 tx_send_loop++;
c74b2108
SK
676 }
677
53677ef1 678 return (ret_status);
c74b2108
SK
679}
680
681/*
682 * This function handles receipt of a packet from the network
683 */
8453587e 684static int davinci_eth_rcv_packet (struct eth_device *dev)
c74b2108 685{
53677ef1
WD
686 volatile emac_desc *rx_curr_desc;
687 volatile emac_desc *curr_desc;
688 volatile emac_desc *tail_desc;
689 int status, ret = -1;
c74b2108 690
2aa87202
IY
691 davinci_invalidate_rx_descs();
692
c74b2108
SK
693 rx_curr_desc = emac_rx_active_head;
694 status = rx_curr_desc->pkt_flag_len;
695 if ((rx_curr_desc) && ((status & EMAC_CPPI_OWNERSHIP_BIT) == 0)) {
53677ef1
WD
696 if (status & EMAC_CPPI_RX_ERROR_FRAME) {
697 /* Error in packet - discard it and requeue desc */
698 printf ("WARN: emac_rcv_pkt: Error in packet\n");
c74b2108 699 } else {
2aa87202
IY
700 unsigned long tmp = (unsigned long)rx_curr_desc->buffer;
701
702 invalidate_dcache_range(tmp, tmp + EMAC_RXBUF_SIZE);
53677ef1
WD
703 NetReceive (rx_curr_desc->buffer,
704 (rx_curr_desc->buff_off_len & 0xffff));
c74b2108 705 ret = rx_curr_desc->buff_off_len & 0xffff;
53677ef1 706 }
c74b2108 707
53677ef1 708 /* Ack received packet descriptor */
82b77217 709 writel(BD_TO_HW((ulong)rx_curr_desc), &adap_emac->RX0CP);
53677ef1
WD
710 curr_desc = rx_curr_desc;
711 emac_rx_active_head =
82b77217 712 (volatile emac_desc *) (HW_TO_BD(rx_curr_desc->next));
c74b2108 713
53677ef1
WD
714 if (status & EMAC_CPPI_EOQ_BIT) {
715 if (emac_rx_active_head) {
82b77217 716 writel(BD_TO_HW((ulong)emac_rx_active_head),
d7e35437 717 &adap_emac->RX0HDP);
c74b2108
SK
718 } else {
719 emac_rx_queue_active = 0;
53677ef1 720 printf ("INFO:emac_rcv_packet: RX Queue not active\n");
c74b2108
SK
721 }
722 }
723
724 /* Recycle RX descriptor */
725 rx_curr_desc->buff_off_len = EMAC_MAX_ETHERNET_PKT_SIZE;
726 rx_curr_desc->pkt_flag_len = EMAC_CPPI_OWNERSHIP_BIT;
727 rx_curr_desc->next = 0;
2aa87202 728 davinci_flush_desc(rx_curr_desc);
c74b2108
SK
729
730 if (emac_rx_active_head == 0) {
53677ef1 731 printf ("INFO: emac_rcv_pkt: active queue head = 0\n");
c74b2108
SK
732 emac_rx_active_head = curr_desc;
733 emac_rx_active_tail = curr_desc;
734 if (emac_rx_queue_active != 0) {
82b77217 735 writel(BD_TO_HW((ulong)emac_rx_active_head),
d7e35437 736 &adap_emac->RX0HDP);
53677ef1 737 printf ("INFO: emac_rcv_pkt: active queue head = 0, HDP fired\n");
c74b2108
SK
738 emac_rx_queue_active = 1;
739 }
740 } else {
741 tail_desc = emac_rx_active_tail;
742 emac_rx_active_tail = curr_desc;
82b77217 743 tail_desc->next = BD_TO_HW((ulong) curr_desc);
c74b2108
SK
744 status = tail_desc->pkt_flag_len;
745 if (status & EMAC_CPPI_EOQ_BIT) {
2aa87202 746 davinci_flush_desc(tail_desc);
82b77217 747 writel(BD_TO_HW((ulong)curr_desc),
d7e35437 748 &adap_emac->RX0HDP);
c74b2108
SK
749 status &= ~EMAC_CPPI_EOQ_BIT;
750 tail_desc->pkt_flag_len = status;
751 }
2aa87202 752 davinci_flush_desc(tail_desc);
c74b2108 753 }
53677ef1 754 return (ret);
c74b2108 755 }
53677ef1 756 return (0);
c74b2108
SK
757}
758
8cc13c13
BW
759/*
760 * This function initializes the emac hardware. It does NOT initialize
761 * EMAC modules power or pin multiplexors, that is done by board_init()
762 * much earlier in bootup process. Returns 1 on success, 0 otherwise.
763 */
8453587e 764int davinci_emac_initialize(void)
8cc13c13
BW
765{
766 u_int32_t phy_id;
767 u_int16_t tmp;
768 int i;
062fe7d3 769 int ret;
8453587e
BW
770 struct eth_device *dev;
771
772 dev = malloc(sizeof *dev);
773
774 if (dev == NULL)
775 return -1;
776
777 memset(dev, 0, sizeof *dev);
2a7d603f 778 sprintf(dev->name, "DaVinci-EMAC");
8453587e
BW
779
780 dev->iobase = 0;
781 dev->init = davinci_eth_open;
782 dev->halt = davinci_eth_close;
783 dev->send = davinci_eth_send_packet;
784 dev->recv = davinci_eth_rcv_packet;
7b37a27e 785 dev->write_hwaddr = davinci_eth_set_mac_addr;
8453587e
BW
786
787 eth_register(dev);
8cc13c13
BW
788
789 davinci_eth_mdio_enable();
790
19fdf9a1
HS
791 /* let the EMAC detect the PHYs */
792 udelay(5000);
793
8cc13c13 794 for (i = 0; i < 256; i++) {
d7e35437 795 if (readl(&adap_mdio->ALIVE))
8cc13c13 796 break;
062fe7d3 797 udelay(1000);
8cc13c13
BW
798 }
799
800 if (i >= 256) {
801 printf("No ETH PHY detected!!!\n");
802 return(0);
803 }
804
062fe7d3
MH
805 /* Find if PHY(s) is/are connected */
806 ret = davinci_eth_phy_detect();
807 if (!ret)
8cc13c13 808 return(0);
062fe7d3 809 else
dc02bada 810 debug_emac(" %d ETH PHY detected\n", ret);
8cc13c13
BW
811
812 /* Get PHY ID and initialize phy_ops for a detected PHY */
062fe7d3
MH
813 for (i = 0; i < num_phy; i++) {
814 if (!davinci_eth_phy_read(active_phy_addr[i], MII_PHYSID1,
815 &tmp)) {
816 active_phy_addr[i] = 0xff;
817 continue;
818 }
c74b2108 819
062fe7d3 820 phy_id = (tmp << 16) & 0xffff0000;
8cc13c13 821
062fe7d3
MH
822 if (!davinci_eth_phy_read(active_phy_addr[i], MII_PHYSID2,
823 &tmp)) {
824 active_phy_addr[i] = 0xff;
825 continue;
826 }
8cc13c13 827
062fe7d3 828 phy_id |= tmp & 0x0000ffff;
8cc13c13 829
062fe7d3 830 switch (phy_id) {
918588cf 831#ifdef PHY_KSZ8873
062fe7d3
MH
832 case PHY_KSZ8873:
833 sprintf(phy[i].name, "KSZ8873 @ 0x%02x",
834 active_phy_addr[i]);
835 phy[i].init = ksz8873_init_phy;
836 phy[i].is_phy_connected = ksz8873_is_phy_connected;
837 phy[i].get_link_speed = ksz8873_get_link_speed;
838 phy[i].auto_negotiate = ksz8873_auto_negotiate;
839 break;
918588cf
IY
840#endif
841#ifdef PHY_LXT972
8cc13c13 842 case PHY_LXT972:
062fe7d3
MH
843 sprintf(phy[i].name, "LXT972 @ 0x%02x",
844 active_phy_addr[i]);
845 phy[i].init = lxt972_init_phy;
846 phy[i].is_phy_connected = lxt972_is_phy_connected;
847 phy[i].get_link_speed = lxt972_get_link_speed;
848 phy[i].auto_negotiate = lxt972_auto_negotiate;
8cc13c13 849 break;
918588cf
IY
850#endif
851#ifdef PHY_DP83848
8cc13c13 852 case PHY_DP83848:
062fe7d3
MH
853 sprintf(phy[i].name, "DP83848 @ 0x%02x",
854 active_phy_addr[i]);
855 phy[i].init = dp83848_init_phy;
856 phy[i].is_phy_connected = dp83848_is_phy_connected;
857 phy[i].get_link_speed = dp83848_get_link_speed;
858 phy[i].auto_negotiate = dp83848_auto_negotiate;
8cc13c13 859 break;
918588cf
IY
860#endif
861#ifdef PHY_ET1011C
840f8923 862 case PHY_ET1011C:
062fe7d3
MH
863 sprintf(phy[i].name, "ET1011C @ 0x%02x",
864 active_phy_addr[i]);
865 phy[i].init = gen_init_phy;
866 phy[i].is_phy_connected = gen_is_phy_connected;
867 phy[i].get_link_speed = et1011c_get_link_speed;
868 phy[i].auto_negotiate = gen_auto_negotiate;
840f8923 869 break;
918588cf 870#endif
8cc13c13 871 default:
062fe7d3
MH
872 sprintf(phy[i].name, "GENERIC @ 0x%02x",
873 active_phy_addr[i]);
874 phy[i].init = gen_init_phy;
875 phy[i].is_phy_connected = gen_is_phy_connected;
876 phy[i].get_link_speed = gen_get_link_speed;
877 phy[i].auto_negotiate = gen_auto_negotiate;
878 }
8cc13c13 879
e0297a55 880 debug("Ethernet PHY: %s\n", phy[i].name);
8cc13c13 881
062fe7d3
MH
882 miiphy_register(phy[i].name, davinci_mii_phy_read,
883 davinci_mii_phy_write);
884 }
b78375a8
RS
885
886#if defined(CONFIG_DRIVER_TI_EMAC_USE_RMII) && \
de575502
BR
887 defined(CONFIG_MACH_DAVINCI_DA850_EVM) && \
888 !defined(CONFIG_DRIVER_TI_EMAC_RMII_NO_NEGOTIATE)
b78375a8
RS
889 for (i = 0; i < num_phy; i++) {
890 if (phy[i].is_phy_connected(i))
891 phy[i].auto_negotiate(i);
892 }
893#endif
8cc13c13
BW
894 return(1);
895}