blob: e471d2ce3340166284125f977a4945dfd75af513 [file] [log] [blame]
Sergey Kubushync74b2102007-08-10 20:26:18 +02001/*
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>
Ben Warren84535872009-05-26 00:34:07 -070043#include <malloc.h>
Ilya Yanok2aa87202011-11-28 06:37:33 +000044#include <linux/compiler.h>
Sergey Kubushync74b2102007-08-10 20:26:18 +020045#include <asm/arch/emac_defs.h>
Nick Thompsond7e35432009-12-18 13:33:07 +000046#include <asm/io.h>
Ilya Yanok7c587d32011-11-28 06:37:29 +000047#include "davinci_emac.h"
Sergey Kubushync74b2102007-08-10 20:26:18 +020048
Sergey Kubushync74b2102007-08-10 20:26:18 +020049unsigned int emac_dbg = 0;
50#define debug_emac(fmt,args...) if (emac_dbg) printf(fmt,##args)
51
Ilya Yanok82b77212011-11-28 06:37:30 +000052#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
Nick Thompsond7e35432009-12-18 13:33:07 +000073#ifdef DAVINCI_EMAC_GIG_ENABLE
Manjunath Hadlifb1d6332011-10-13 03:40:55 +000074#define emac_gigabit_enable(phy_addr) davinci_eth_gigabit_enable(phy_addr)
Nick Thompsond7e35432009-12-18 13:33:07 +000075#else
Manjunath Hadlifb1d6332011-10-13 03:40:55 +000076#define emac_gigabit_enable(phy_addr) /* no gigabit to enable */
Nick Thompsond7e35432009-12-18 13:33:07 +000077#endif
78
Heiko Schocher882ecfa2011-11-01 20:00:27 +000079#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
Sandeep Paulrajfcaac582008-08-31 00:39:46 +020084static void davinci_eth_mdio_enable(void);
Sergey Kubushync74b2102007-08-10 20:26:18 +020085
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
Sergey Kubushync74b2102007-08-10 20:26:18 +020091void eth_mdio_enable(void)
92{
Sandeep Paulrajfcaac582008-08-31 00:39:46 +020093 davinci_eth_mdio_enable();
Sergey Kubushync74b2102007-08-10 20:26:18 +020094}
Sergey Kubushync74b2102007-08-10 20:26:18 +020095
Sergey Kubushync74b2102007-08-10 20:26:18 +020096/* 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 */
Ilya Yanok2aa87202011-11-28 06:37:33 +0000109static unsigned char emac_rx_buffers[EMAC_MAX_RX_BUFFERS * EMAC_RXBUF_SIZE]
110 __aligned(ARCH_DMA_MINALIGN);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200111
Heiko Schocherdc02bad2011-11-15 10:00:04 -0500112#ifndef CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT
113#define CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT 3
114#endif
Sergey Kubushync74b2102007-08-10 20:26:18 +0200115
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000116/* PHY address for a discovered PHY (0xff - not found) */
Heiko Schocherdc02bad2011-11-15 10:00:04 -0500117static u_int8_t active_phy_addr[CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT];
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000118
119/* number of PHY found active */
120static u_int8_t num_phy;
121
Heiko Schocherdc02bad2011-11-15 10:00:04 -0500122phy_t phy[CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT];
Sergey Kubushync74b2102007-08-10 20:26:18 +0200123
Ilya Yanok2aa87202011-11-28 06:37:33 +0000124static 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
Ben Gardiner7b37a272010-09-23 09:58:43 -0400144static 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
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200181static void davinci_eth_mdio_enable(void)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200182{
183 u_int32_t clkdiv;
184
Heiko Schocher882ecfa2011-11-01 20:00:27 +0000185 clkdiv = CONFIG_SYS_EMAC_TI_CLKDIV;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200186
Nick Thompsond7e35432009-12-18 13:33:07 +0000187 writel((clkdiv & 0xff) |
188 MDIO_CONTROL_ENABLE |
189 MDIO_CONTROL_FAULT |
190 MDIO_CONTROL_FAULT_ENABLE,
191 &adap_mdio->CONTROL);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200192
Nick Thompsond7e35432009-12-18 13:33:07 +0000193 while (readl(&adap_mdio->CONTROL) & MDIO_CONTROL_IDLE)
194 ;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200195}
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 */
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200202static int davinci_eth_phy_detect(void)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200203{
204 u_int32_t phy_act_state;
205 int i;
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000206 int j;
207 unsigned int count = 0;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200208
Heiko Schocherdc02bad2011-11-15 10:00:04 -0500209 for (i = 0; i < CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT; i++)
210 active_phy_addr[i] = 0xff;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200211
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000212 udelay(1000);
213 phy_act_state = readl(&adap_mdio->ALIVE);
214
Nick Thompsond7e35432009-12-18 13:33:07 +0000215 if (phy_act_state == 0)
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000216 return 0; /* No active PHYs */
Sergey Kubushync74b2102007-08-10 20:26:18 +0200217
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200218 debug_emac("davinci_eth_phy_detect(), ALIVE = 0x%08x\n", phy_act_state);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200219
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000220 for (i = 0, j = 0; i < 32; i++)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200221 if (phy_act_state & (1 << i)) {
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000222 count++;
Prabhakar Ladb6090092011-11-17 02:53:23 +0000223 if (count <= CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT) {
Heiko Schocherdc02bad2011-11-15 10:00:04 -0500224 active_phy_addr[j++] = i;
225 } else {
226 printf("%s: to many PHYs detected.\n",
227 __func__);
228 count = 0;
229 break;
230 }
Sergey Kubushync74b2102007-08-10 20:26:18 +0200231 }
Sergey Kubushync74b2102007-08-10 20:26:18 +0200232
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000233 num_phy = count;
234
235 return count;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200236}
237
238
239/* Read a PHY register via MDIO inteface. Returns 1 on success, 0 otherwise */
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200240int 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 +0200241{
242 int tmp;
243
Nick Thompsond7e35432009-12-18 13:33:07 +0000244 while (readl(&adap_mdio->USERACCESS0) & MDIO_USERACCESS0_GO)
245 ;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200246
Nick Thompsond7e35432009-12-18 13:33:07 +0000247 writel(MDIO_USERACCESS0_GO |
248 MDIO_USERACCESS0_WRITE_READ |
249 ((reg_num & 0x1f) << 21) |
250 ((phy_addr & 0x1f) << 16),
251 &adap_mdio->USERACCESS0);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200252
253 /* Wait for command to complete */
Nick Thompsond7e35432009-12-18 13:33:07 +0000254 while ((tmp = readl(&adap_mdio->USERACCESS0)) & MDIO_USERACCESS0_GO)
255 ;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200256
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. */
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200267int 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 +0200268{
269
Nick Thompsond7e35432009-12-18 13:33:07 +0000270 while (readl(&adap_mdio->USERACCESS0) & MDIO_USERACCESS0_GO)
271 ;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200272
Nick Thompsond7e35432009-12-18 13:33:07 +0000273 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);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200279
280 /* Wait for command to complete */
Nick Thompsond7e35432009-12-18 13:33:07 +0000281 while (readl(&adap_mdio->USERACCESS0) & MDIO_USERACCESS0_GO)
282 ;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200283
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
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000304 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 */
Sergey Kubushync74b2102007-08-10 20:26:18 +0200316}
317
318static int gen_get_link_speed(int phy_addr)
319{
320 u_int16_t tmp;
321
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500322 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)
Ben Gardiner7d2fade2011-01-11 14:48:17 -0500326 davinci_eth_phy_read(phy_addr, MII_LPA, &tmp);
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500327
328 /* Speed doesn't matter, there is no setting for it in EMAC. */
Ben Gardiner7d2fade2011-01-11 14:48:17 -0500329 if (tmp & (LPA_100FULL | LPA_10FULL)) {
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500330 /* 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
Ben Gardiner7d2fade2011-01-11 14:48:17 -0500340 if (tmp & (LPA_100FULL | LPA_100HALF))
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500341 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
Sergey Kubushync74b2102007-08-10 20:26:18 +0200349 return(1);
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500350 }
Sergey Kubushync74b2102007-08-10 20:26:18 +0200351
352 return(0);
353}
354
355static int gen_auto_negotiate(int phy_addr)
356{
357 u_int16_t tmp;
Manjunath Hadlicc4bd472011-10-13 03:40:53 +0000358 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);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200374
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500375 if (!davinci_eth_phy_read(phy_addr, MII_BMCR, &tmp))
Sergey Kubushync74b2102007-08-10 20:26:18 +0200376 return(0);
377
378 /* Restart Auto_negotiation */
Manjunath Hadlicc4bd472011-10-13 03:40:53 +0000379 tmp |= BMCR_ANRESTART;
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500380 davinci_eth_phy_write(phy_addr, MII_BMCR, tmp);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200381
382 /*check AutoNegotiate complete */
Manjunath Hadlicc4bd472011-10-13 03:40:53 +0000383 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
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500394 if (!davinci_eth_phy_read(phy_addr, MII_BMSR, &tmp))
Sergey Kubushync74b2102007-08-10 20:26:18 +0200395 return(0);
396
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500397 if (!(tmp & BMSR_ANEGCOMPLETE))
Sergey Kubushync74b2102007-08-10 20:26:18 +0200398 return(0);
399
400 return(gen_get_link_speed(phy_addr));
401}
402/* End of generic PHY functions */
403
404
Wolfgang Denkafaac862007-08-12 14:27:39 +0200405#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Mike Frysinger5700bb62010-07-27 18:35:08 -0400406static int davinci_mii_phy_read(const char *devname, unsigned char addr, unsigned char reg, unsigned short *value)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200407{
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200408 return(davinci_eth_phy_read(addr, reg, value) ? 0 : 1);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200409}
410
Mike Frysinger5700bb62010-07-27 18:35:08 -0400411static int davinci_mii_phy_write(const char *devname, unsigned char addr, unsigned char reg, unsigned short value)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200412{
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200413 return(davinci_eth_phy_write(addr, reg, value) ? 0 : 1);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200414}
Sergey Kubushync74b2102007-08-10 20:26:18 +0200415#endif
416
Manjunath Hadlifb1d6332011-10-13 03:40:55 +0000417static void __attribute__((unused)) davinci_eth_gigabit_enable(int phy_addr)
Nick Thompsond7e35432009-12-18 13:33:07 +0000418{
419 u_int16_t data;
420
Manjunath Hadlifb1d6332011-10-13 03:40:55 +0000421 if (davinci_eth_phy_read(phy_addr, 0, &data)) {
Nick Thompsond7e35432009-12-18 13:33:07 +0000422 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 */
Sandeep Paulraj4b9b9e72010-12-28 14:37:33 -0500427 writel(readl(&adap_emac->MACCONTROL) |
428 EMAC_MACCONTROL_GIGFORCE |
429 EMAC_MACCONTROL_GIGABIT_ENABLE,
430 &adap_emac->MACCONTROL);
Nick Thompsond7e35432009-12-18 13:33:07 +0000431 }
432 }
433}
Sergey Kubushync74b2102007-08-10 20:26:18 +0200434
435/* Eth device open */
Ben Warren84535872009-05-26 00:34:07 -0700436static int davinci_eth_open(struct eth_device *dev, bd_t *bis)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200437{
438 dv_reg_p addr;
439 u_int32_t clkdiv, cnt;
440 volatile emac_desc *rx_desc;
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000441 int index;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200442
443 debug_emac("+ emac_open\n");
444
445 /* Reset EMAC module and disable interrupts in wrapper */
Nick Thompsond7e35432009-12-18 13:33:07 +0000446 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);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200455 for (cnt = 0; cnt < 5; cnt++) {
Nick Thompsond7e35432009-12-18 13:33:07 +0000456 clkdiv = readl(&adap_ewrap->EWCTL);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200457 }
Nick Thompsond7e35432009-12-18 13:33:07 +0000458#endif
Sergey Kubushync74b2102007-08-10 20:26:18 +0200459
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500460#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
Sergey Kubushync74b2102007-08-10 20:26:18 +0200466 rx_desc = emac_rx_desc;
467
Nick Thompsond7e35432009-12-18 13:33:07 +0000468 writel(1, &adap_emac->TXCONTROL);
469 writel(1, &adap_emac->RXCONTROL);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200470
Ben Gardiner7b37a272010-09-23 09:58:43 -0400471 davinci_eth_set_mac_addr(dev);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200472
473 /* Set DMA 8 TX / 8 RX Head pointers to 0 */
474 addr = &adap_emac->TX0HDP;
475 for(cnt = 0; cnt < 16; cnt++)
Nick Thompsond7e35432009-12-18 13:33:07 +0000476 writel(0, addr++);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200477
478 addr = &adap_emac->RX0HDP;
479 for(cnt = 0; cnt < 16; cnt++)
Nick Thompsond7e35432009-12-18 13:33:07 +0000480 writel(0, addr++);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200481
482 /* Clear Statistics (do this before setting MacControl register) */
483 addr = &adap_emac->RXGOODFRAMES;
484 for(cnt = 0; cnt < EMAC_NUM_STATS; cnt++)
Nick Thompsond7e35432009-12-18 13:33:07 +0000485 writel(0, addr++);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200486
487 /* No multicast addressing */
Nick Thompsond7e35432009-12-18 13:33:07 +0000488 writel(0, &adap_emac->MACHASH1);
489 writel(0, &adap_emac->MACHASH2);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200490
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++) {
Ilya Yanok82b77212011-11-28 06:37:30 +0000494 rx_desc->next = BD_TO_HW((u_int32_t)(rx_desc + 1));
Ilya Yanok2aa87202011-11-28 06:37:33 +0000495 rx_desc->buffer = &emac_rx_buffers[cnt * EMAC_RXBUF_SIZE];
Sergey Kubushync74b2102007-08-10 20:26:18 +0200496 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
Nick Thompsond7e35432009-12-18 13:33:07 +0000501 /* Finalize the rx desc list */
Sergey Kubushync74b2102007-08-10 20:26:18 +0200502 rx_desc--;
503 rx_desc->next = 0;
504 emac_rx_active_tail = rx_desc;
505 emac_rx_queue_active = 1;
506
Ilya Yanok2aa87202011-11-28 06:37:33 +0000507 davinci_flush_rx_descs();
508
Sergey Kubushync74b2102007-08-10 20:26:18 +0200509 /* Enable TX/RX */
Nick Thompsond7e35432009-12-18 13:33:07 +0000510 writel(EMAC_MAX_ETHERNET_PKT_SIZE, &adap_emac->RXMAXLEN);
511 writel(0, &adap_emac->RXBUFFEROFFSET);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200512
Nick Thompsond7e35432009-12-18 13:33:07 +0000513 /*
514 * No fancy configs - Use this for promiscous debug
515 * - EMAC_RXMBPENABLE_RXCAFEN_ENABLE
516 */
517 writel(EMAC_RXMBPENABLE_RXBROADEN, &adap_emac->RXMBPENABLE);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200518
519 /* Enable ch 0 only */
Nick Thompsond7e35432009-12-18 13:33:07 +0000520 writel(1, &adap_emac->RXUNICASTSET);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200521
522 /* Enable MII interface and Full duplex mode */
Ilya Yanok80deda52011-11-28 06:37:34 +0000523#if defined(CONFIG_SOC_DA8XX) || \
524 (defined(CONFIG_OMAP34XX) && defined(CONFIG_DRIVER_TI_EMAC_USE_RMII))
Nick Thompsond7e35432009-12-18 13:33:07 +0000525 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
Sergey Kubushync74b2102007-08-10 20:26:18 +0200534
535 /* Init MDIO & get link state */
Heiko Schocher882ecfa2011-11-01 20:00:27 +0000536 clkdiv = CONFIG_SYS_EMAC_TI_CLKDIV;
Nick Thompsond7e35432009-12-18 13:33:07 +0000537 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);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200542
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000543 index = get_active_phy();
544 if (index == -1)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200545 return(0);
546
Manjunath Hadlifb1d6332011-10-13 03:40:55 +0000547 emac_gigabit_enable(active_phy_addr[index]);
Nick Thompsond7e35432009-12-18 13:33:07 +0000548
Sergey Kubushync74b2102007-08-10 20:26:18 +0200549 /* Start receive process */
Ilya Yanok82b77212011-11-28 06:37:30 +0000550 writel(BD_TO_HW((u_int32_t)emac_rx_desc), &adap_emac->RX0HDP);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200551
552 debug_emac("- emac_open\n");
553
554 return(1);
555}
556
557/* EMAC Channel Teardown */
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200558static void davinci_eth_ch_teardown(int ch)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200559{
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 */
Nagabhushana Netagunteba511f72011-09-03 22:20:33 -0400567 writel(0, &adap_emac->TXTEARDOWN);
Nick Thompsond7e35432009-12-18 13:33:07 +0000568 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)
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200579 break;
Nick Thompsond7e35432009-12-18 13:33:07 +0000580 cnt = readl(&adap_emac->TX0CP);
581 } while (cnt != 0xfffffffc);
582 writel(cnt, &adap_emac->TX0CP);
583 writel(0, &adap_emac->TX0HDP);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200584 } else {
585 /* Init RX channel teardown */
Nagabhushana Netagunteba511f72011-09-03 22:20:33 -0400586 writel(0, &adap_emac->RXTEARDOWN);
Nick Thompsond7e35432009-12-18 13:33:07 +0000587 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)
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200598 break;
Nick Thompsond7e35432009-12-18 13:33:07 +0000599 cnt = readl(&adap_emac->RX0CP);
600 } while (cnt != 0xfffffffc);
601 writel(cnt, &adap_emac->RX0CP);
602 writel(0, &adap_emac->RX0HDP);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200603 }
604
605 debug_emac("- emac_ch_teardown\n");
606}
607
608/* Eth device close */
Ben Warren84535872009-05-26 00:34:07 -0700609static void davinci_eth_close(struct eth_device *dev)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200610{
611 debug_emac("+ emac_close\n");
612
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200613 davinci_eth_ch_teardown(EMAC_CH_TX); /* TX Channel teardown */
614 davinci_eth_ch_teardown(EMAC_CH_RX); /* RX Channel teardown */
Sergey Kubushync74b2102007-08-10 20:26:18 +0200615
616 /* Reset EMAC module and disable interrupts in wrapper */
Nick Thompsond7e35432009-12-18 13:33:07 +0000617 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
Sergey Kubushync74b2102007-08-10 20:26:18 +0200623
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500624#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
Sergey Kubushync74b2102007-08-10 20:26:18 +0200630 debug_emac("- emac_close\n");
Sergey Kubushync74b2102007-08-10 20:26:18 +0200631}
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 */
Ben Warren84535872009-05-26 00:34:07 -0700639static int davinci_eth_send_packet (struct eth_device *dev,
Joe Hershbergerbbcdefb2012-05-21 05:54:01 +0000640 void *packet, int length)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200641{
642 int ret_status = -1;
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000643 int index;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200644 tx_send_loop = 0;
645
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000646 index = get_active_phy();
647 if (index == -1) {
648 printf(" WARN: emac_send_packet: No link\n");
Sergey Kubushync74b2102007-08-10 20:26:18 +0200649 return (ret_status);
650 }
651
Manjunath Hadlifb1d6332011-10-13 03:40:55 +0000652 emac_gigabit_enable(active_phy_addr[index]);
Nick Thompsond7e35432009-12-18 13:33:07 +0000653
Sergey Kubushync74b2102007-08-10 20:26:18 +0200654 /* Check packet size and if < EMAC_MIN_ETHERNET_PKT_SIZE, pad it up */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200655 if (length < EMAC_MIN_ETHERNET_PKT_SIZE) {
Sergey Kubushync74b2102007-08-10 20:26:18 +0200656 length = EMAC_MIN_ETHERNET_PKT_SIZE;
657 }
658
659 /* Populate the TX descriptor */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200660 emac_tx_desc->next = 0;
661 emac_tx_desc->buffer = (u_int8_t *) packet;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200662 emac_tx_desc->buff_off_len = (length & 0xffff);
663 emac_tx_desc->pkt_flag_len = ((length & 0xffff) |
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200664 EMAC_CPPI_SOP_BIT |
665 EMAC_CPPI_OWNERSHIP_BIT |
666 EMAC_CPPI_EOP_BIT);
Ilya Yanok2aa87202011-11-28 06:37:33 +0000667
668 flush_dcache_range((unsigned long)packet,
669 (unsigned long)packet + length);
670 davinci_flush_desc(emac_tx_desc);
671
Sergey Kubushync74b2102007-08-10 20:26:18 +0200672 /* Send the packet */
Ilya Yanok82b77212011-11-28 06:37:30 +0000673 writel(BD_TO_HW((unsigned long)emac_tx_desc), &adap_emac->TX0HDP);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200674
675 /* Wait for packet to complete or link down */
676 while (1) {
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000677 if (!phy[index].get_link_speed(active_phy_addr[index])) {
Sandeep Paulrajfcaac582008-08-31 00:39:46 +0200678 davinci_eth_ch_teardown (EMAC_CH_TX);
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200679 return (ret_status);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200680 }
Nick Thompsond7e35432009-12-18 13:33:07 +0000681
Manjunath Hadlifb1d6332011-10-13 03:40:55 +0000682 emac_gigabit_enable(active_phy_addr[index]);
Nick Thompsond7e35432009-12-18 13:33:07 +0000683
684 if (readl(&adap_emac->TXINTSTATRAW) & 0x01) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200685 ret_status = length;
686 break;
687 }
688 tx_send_loop++;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200689 }
690
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200691 return (ret_status);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200692}
693
694/*
695 * This function handles receipt of a packet from the network
696 */
Ben Warren84535872009-05-26 00:34:07 -0700697static int davinci_eth_rcv_packet (struct eth_device *dev)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200698{
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200699 volatile emac_desc *rx_curr_desc;
700 volatile emac_desc *curr_desc;
701 volatile emac_desc *tail_desc;
702 int status, ret = -1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200703
Ilya Yanok2aa87202011-11-28 06:37:33 +0000704 davinci_invalidate_rx_descs();
705
Sergey Kubushync74b2102007-08-10 20:26:18 +0200706 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)) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200709 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");
Sergey Kubushync74b2102007-08-10 20:26:18 +0200712 } else {
Ilya Yanok2aa87202011-11-28 06:37:33 +0000713 unsigned long tmp = (unsigned long)rx_curr_desc->buffer;
714
715 invalidate_dcache_range(tmp, tmp + EMAC_RXBUF_SIZE);
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200716 NetReceive (rx_curr_desc->buffer,
717 (rx_curr_desc->buff_off_len & 0xffff));
Sergey Kubushync74b2102007-08-10 20:26:18 +0200718 ret = rx_curr_desc->buff_off_len & 0xffff;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200719 }
Sergey Kubushync74b2102007-08-10 20:26:18 +0200720
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200721 /* Ack received packet descriptor */
Ilya Yanok82b77212011-11-28 06:37:30 +0000722 writel(BD_TO_HW((ulong)rx_curr_desc), &adap_emac->RX0CP);
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200723 curr_desc = rx_curr_desc;
724 emac_rx_active_head =
Ilya Yanok82b77212011-11-28 06:37:30 +0000725 (volatile emac_desc *) (HW_TO_BD(rx_curr_desc->next));
Sergey Kubushync74b2102007-08-10 20:26:18 +0200726
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200727 if (status & EMAC_CPPI_EOQ_BIT) {
728 if (emac_rx_active_head) {
Ilya Yanok82b77212011-11-28 06:37:30 +0000729 writel(BD_TO_HW((ulong)emac_rx_active_head),
Nick Thompsond7e35432009-12-18 13:33:07 +0000730 &adap_emac->RX0HDP);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200731 } else {
732 emac_rx_queue_active = 0;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200733 printf ("INFO:emac_rcv_packet: RX Queue not active\n");
Sergey Kubushync74b2102007-08-10 20:26:18 +0200734 }
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;
Ilya Yanok2aa87202011-11-28 06:37:33 +0000741 davinci_flush_desc(rx_curr_desc);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200742
743 if (emac_rx_active_head == 0) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200744 printf ("INFO: emac_rcv_pkt: active queue head = 0\n");
Sergey Kubushync74b2102007-08-10 20:26:18 +0200745 emac_rx_active_head = curr_desc;
746 emac_rx_active_tail = curr_desc;
747 if (emac_rx_queue_active != 0) {
Ilya Yanok82b77212011-11-28 06:37:30 +0000748 writel(BD_TO_HW((ulong)emac_rx_active_head),
Nick Thompsond7e35432009-12-18 13:33:07 +0000749 &adap_emac->RX0HDP);
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200750 printf ("INFO: emac_rcv_pkt: active queue head = 0, HDP fired\n");
Sergey Kubushync74b2102007-08-10 20:26:18 +0200751 emac_rx_queue_active = 1;
752 }
753 } else {
754 tail_desc = emac_rx_active_tail;
755 emac_rx_active_tail = curr_desc;
Ilya Yanok82b77212011-11-28 06:37:30 +0000756 tail_desc->next = BD_TO_HW((ulong) curr_desc);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200757 status = tail_desc->pkt_flag_len;
758 if (status & EMAC_CPPI_EOQ_BIT) {
Ilya Yanok2aa87202011-11-28 06:37:33 +0000759 davinci_flush_desc(tail_desc);
Ilya Yanok82b77212011-11-28 06:37:30 +0000760 writel(BD_TO_HW((ulong)curr_desc),
Nick Thompsond7e35432009-12-18 13:33:07 +0000761 &adap_emac->RX0HDP);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200762 status &= ~EMAC_CPPI_EOQ_BIT;
763 tail_desc->pkt_flag_len = status;
764 }
Ilya Yanok2aa87202011-11-28 06:37:33 +0000765 davinci_flush_desc(tail_desc);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200766 }
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200767 return (ret);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200768 }
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200769 return (0);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200770}
771
Ben Warren8cc13c12009-04-27 23:19:10 -0700772/*
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 */
Ben Warren84535872009-05-26 00:34:07 -0700777int davinci_emac_initialize(void)
Ben Warren8cc13c12009-04-27 23:19:10 -0700778{
779 u_int32_t phy_id;
780 u_int16_t tmp;
781 int i;
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000782 int ret;
Ben Warren84535872009-05-26 00:34:07 -0700783 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);
Sandeep Paulraj2a7d6032010-12-28 14:42:27 -0500791 sprintf(dev->name, "DaVinci-EMAC");
Ben Warren84535872009-05-26 00:34:07 -0700792
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;
Ben Gardiner7b37a272010-09-23 09:58:43 -0400798 dev->write_hwaddr = davinci_eth_set_mac_addr;
Ben Warren84535872009-05-26 00:34:07 -0700799
800 eth_register(dev);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200801
Ben Warren8cc13c12009-04-27 23:19:10 -0700802 davinci_eth_mdio_enable();
803
Heiko Schocher19fdf9a2011-09-14 19:37:42 +0000804 /* let the EMAC detect the PHYs */
805 udelay(5000);
806
Ben Warren8cc13c12009-04-27 23:19:10 -0700807 for (i = 0; i < 256; i++) {
Nick Thompsond7e35432009-12-18 13:33:07 +0000808 if (readl(&adap_mdio->ALIVE))
Ben Warren8cc13c12009-04-27 23:19:10 -0700809 break;
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000810 udelay(1000);
Ben Warren8cc13c12009-04-27 23:19:10 -0700811 }
812
813 if (i >= 256) {
814 printf("No ETH PHY detected!!!\n");
815 return(0);
816 }
817
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000818 /* Find if PHY(s) is/are connected */
819 ret = davinci_eth_phy_detect();
820 if (!ret)
Ben Warren8cc13c12009-04-27 23:19:10 -0700821 return(0);
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000822 else
Heiko Schocherdc02bad2011-11-15 10:00:04 -0500823 debug_emac(" %d ETH PHY detected\n", ret);
Ben Warren8cc13c12009-04-27 23:19:10 -0700824
825 /* Get PHY ID and initialize phy_ops for a detected PHY */
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000826 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 }
Ben Warren8cc13c12009-04-27 23:19:10 -0700832
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000833 phy_id = (tmp << 16) & 0xffff0000;
Ben Warren8cc13c12009-04-27 23:19:10 -0700834
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000835 if (!davinci_eth_phy_read(active_phy_addr[i], MII_PHYSID2,
836 &tmp)) {
837 active_phy_addr[i] = 0xff;
838 continue;
839 }
Ben Warren8cc13c12009-04-27 23:19:10 -0700840
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000841 phy_id |= tmp & 0x0000ffff;
Ben Warren8cc13c12009-04-27 23:19:10 -0700842
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000843 switch (phy_id) {
Ilya Yanok918588c2011-11-28 06:37:31 +0000844#ifdef PHY_KSZ8873
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000845 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;
Ilya Yanok918588c2011-11-28 06:37:31 +0000853#endif
854#ifdef PHY_LXT972
Ben Warren8cc13c12009-04-27 23:19:10 -0700855 case PHY_LXT972:
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000856 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;
Ben Warren8cc13c12009-04-27 23:19:10 -0700862 break;
Ilya Yanok918588c2011-11-28 06:37:31 +0000863#endif
864#ifdef PHY_DP83848
Ben Warren8cc13c12009-04-27 23:19:10 -0700865 case PHY_DP83848:
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000866 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;
Ben Warren8cc13c12009-04-27 23:19:10 -0700872 break;
Ilya Yanok918588c2011-11-28 06:37:31 +0000873#endif
874#ifdef PHY_ET1011C
Sandeep Paulraj840f8922010-12-28 15:43:16 -0500875 case PHY_ET1011C:
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000876 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;
Sandeep Paulraj840f8922010-12-28 15:43:16 -0500882 break;
Ilya Yanok918588c2011-11-28 06:37:31 +0000883#endif
Ben Warren8cc13c12009-04-27 23:19:10 -0700884 default:
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000885 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 }
892
Ilya Yanoke0297a52011-11-01 13:15:55 +0000893 debug("Ethernet PHY: %s\n", phy[i].name);
Manjunath Hadli062fe7d2011-10-13 03:40:54 +0000894
895 miiphy_register(phy[i].name, davinci_mii_phy_read,
896 davinci_mii_phy_write);
Ben Warren8cc13c12009-04-27 23:19:10 -0700897 }
Ben Warren8cc13c12009-04-27 23:19:10 -0700898 return(1);
899}