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