Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 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> |
Ben Warren | 8453587 | 2009-05-26 00:34:07 -0700 | [diff] [blame] | 43 | #include <malloc.h> |
Ilya Yanok | 2aa8720 | 2011-11-28 06:37:33 +0000 | [diff] [blame] | 44 | #include <linux/compiler.h> |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 45 | #include <asm/arch/emac_defs.h> |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 46 | #include <asm/io.h> |
Ilya Yanok | 7c587d3 | 2011-11-28 06:37:29 +0000 | [diff] [blame] | 47 | #include "davinci_emac.h" |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 48 | |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 49 | unsigned int emac_dbg = 0; |
| 50 | #define debug_emac(fmt,args...) if (emac_dbg) printf(fmt,##args) |
| 51 | |
Ilya Yanok | 82b7721 | 2011-11-28 06:37:30 +0000 | [diff] [blame] | 52 | #ifdef EMAC_HW_RAM_ADDR |
| 53 | static 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 | |
| 61 | static 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 Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 73 | #ifdef DAVINCI_EMAC_GIG_ENABLE |
Manjunath Hadli | fb1d633 | 2011-10-13 03:40:55 +0000 | [diff] [blame] | 74 | #define emac_gigabit_enable(phy_addr) davinci_eth_gigabit_enable(phy_addr) |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 75 | #else |
Manjunath Hadli | fb1d633 | 2011-10-13 03:40:55 +0000 | [diff] [blame] | 76 | #define emac_gigabit_enable(phy_addr) /* no gigabit to enable */ |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 77 | #endif |
| 78 | |
Heiko Schocher | 882ecfa | 2011-11-01 20:00:27 +0000 | [diff] [blame] | 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 | |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 84 | static void davinci_eth_mdio_enable(void); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 85 | |
| 86 | static int gen_init_phy(int phy_addr); |
| 87 | static int gen_is_phy_connected(int phy_addr); |
| 88 | static int gen_get_link_speed(int phy_addr); |
| 89 | static int gen_auto_negotiate(int phy_addr); |
| 90 | |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 91 | void eth_mdio_enable(void) |
| 92 | { |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 93 | davinci_eth_mdio_enable(); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 94 | } |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 95 | |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 96 | /* EMAC Addresses */ |
| 97 | static volatile emac_regs *adap_emac = (emac_regs *)EMAC_BASE_ADDR; |
| 98 | static volatile ewrap_regs *adap_ewrap = (ewrap_regs *)EMAC_WRAPPER_BASE_ADDR; |
| 99 | static volatile mdio_regs *adap_mdio = (mdio_regs *)EMAC_MDIO_BASE_ADDR; |
| 100 | |
| 101 | /* EMAC descriptors */ |
| 102 | static volatile emac_desc *emac_rx_desc = (emac_desc *)(EMAC_WRAPPER_RAM_ADDR + EMAC_RX_DESC_BASE); |
| 103 | static volatile emac_desc *emac_tx_desc = (emac_desc *)(EMAC_WRAPPER_RAM_ADDR + EMAC_TX_DESC_BASE); |
| 104 | static volatile emac_desc *emac_rx_active_head = 0; |
| 105 | static volatile emac_desc *emac_rx_active_tail = 0; |
| 106 | static int emac_rx_queue_active = 0; |
| 107 | |
| 108 | /* Receive packet buffers */ |
Ilya Yanok | 2aa8720 | 2011-11-28 06:37:33 +0000 | [diff] [blame] | 109 | static unsigned char emac_rx_buffers[EMAC_MAX_RX_BUFFERS * EMAC_RXBUF_SIZE] |
| 110 | __aligned(ARCH_DMA_MINALIGN); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 111 | |
Heiko Schocher | dc02bad | 2011-11-15 10:00:04 -0500 | [diff] [blame] | 112 | #ifndef CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT |
| 113 | #define CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT 3 |
| 114 | #endif |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 115 | |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 116 | /* PHY address for a discovered PHY (0xff - not found) */ |
Heiko Schocher | dc02bad | 2011-11-15 10:00:04 -0500 | [diff] [blame] | 117 | static u_int8_t active_phy_addr[CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT]; |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 118 | |
| 119 | /* number of PHY found active */ |
| 120 | static u_int8_t num_phy; |
| 121 | |
Heiko Schocher | dc02bad | 2011-11-15 10:00:04 -0500 | [diff] [blame] | 122 | phy_t phy[CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT]; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 123 | |
Ilya Yanok | 2aa8720 | 2011-11-28 06:37:33 +0000 | [diff] [blame] | 124 | static 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 | |
| 131 | static 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 | |
| 138 | static 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 Gardiner | 7b37a27 | 2010-09-23 09:58:43 -0400 | [diff] [blame] | 144 | static 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 Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 181 | static void davinci_eth_mdio_enable(void) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 182 | { |
| 183 | u_int32_t clkdiv; |
| 184 | |
Heiko Schocher | 882ecfa | 2011-11-01 20:00:27 +0000 | [diff] [blame] | 185 | clkdiv = CONFIG_SYS_EMAC_TI_CLKDIV; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 186 | |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 187 | writel((clkdiv & 0xff) | |
| 188 | MDIO_CONTROL_ENABLE | |
| 189 | MDIO_CONTROL_FAULT | |
| 190 | MDIO_CONTROL_FAULT_ENABLE, |
| 191 | &adap_mdio->CONTROL); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 192 | |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 193 | while (readl(&adap_mdio->CONTROL) & MDIO_CONTROL_IDLE) |
| 194 | ; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 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 | */ |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 202 | static int davinci_eth_phy_detect(void) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 203 | { |
| 204 | u_int32_t phy_act_state; |
| 205 | int i; |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 206 | int j; |
| 207 | unsigned int count = 0; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 208 | |
Heiko Schocher | dc02bad | 2011-11-15 10:00:04 -0500 | [diff] [blame] | 209 | for (i = 0; i < CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT; i++) |
| 210 | active_phy_addr[i] = 0xff; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 211 | |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 212 | udelay(1000); |
| 213 | phy_act_state = readl(&adap_mdio->ALIVE); |
| 214 | |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 215 | if (phy_act_state == 0) |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 216 | return 0; /* No active PHYs */ |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 217 | |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 218 | debug_emac("davinci_eth_phy_detect(), ALIVE = 0x%08x\n", phy_act_state); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 219 | |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 220 | for (i = 0, j = 0; i < 32; i++) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 221 | if (phy_act_state & (1 << i)) { |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 222 | count++; |
Prabhakar Lad | b609009 | 2011-11-17 02:53:23 +0000 | [diff] [blame] | 223 | if (count <= CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT) { |
Heiko Schocher | dc02bad | 2011-11-15 10:00:04 -0500 | [diff] [blame] | 224 | active_phy_addr[j++] = i; |
| 225 | } else { |
| 226 | printf("%s: to many PHYs detected.\n", |
| 227 | __func__); |
| 228 | count = 0; |
| 229 | break; |
| 230 | } |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 231 | } |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 232 | |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 233 | num_phy = count; |
| 234 | |
| 235 | return count; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | |
| 239 | /* Read a PHY register via MDIO inteface. Returns 1 on success, 0 otherwise */ |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 240 | int davinci_eth_phy_read(u_int8_t phy_addr, u_int8_t reg_num, u_int16_t *data) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 241 | { |
| 242 | int tmp; |
| 243 | |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 244 | while (readl(&adap_mdio->USERACCESS0) & MDIO_USERACCESS0_GO) |
| 245 | ; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 246 | |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 247 | writel(MDIO_USERACCESS0_GO | |
| 248 | MDIO_USERACCESS0_WRITE_READ | |
| 249 | ((reg_num & 0x1f) << 21) | |
| 250 | ((phy_addr & 0x1f) << 16), |
| 251 | &adap_mdio->USERACCESS0); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 252 | |
| 253 | /* Wait for command to complete */ |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 254 | while ((tmp = readl(&adap_mdio->USERACCESS0)) & MDIO_USERACCESS0_GO) |
| 255 | ; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 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. */ |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 267 | int davinci_eth_phy_write(u_int8_t phy_addr, u_int8_t reg_num, u_int16_t data) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 268 | { |
| 269 | |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 270 | while (readl(&adap_mdio->USERACCESS0) & MDIO_USERACCESS0_GO) |
| 271 | ; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 272 | |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 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); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 279 | |
| 280 | /* Wait for command to complete */ |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 281 | while (readl(&adap_mdio->USERACCESS0) & MDIO_USERACCESS0_GO) |
| 282 | ; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 283 | |
| 284 | return(1); |
| 285 | } |
| 286 | |
| 287 | /* PHY functions for a generic PHY */ |
| 288 | static 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 | |
| 300 | static int gen_is_phy_connected(int phy_addr) |
| 301 | { |
| 302 | u_int16_t dummy; |
| 303 | |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 304 | return davinci_eth_phy_read(phy_addr, MII_PHYSID1, &dummy); |
| 305 | } |
| 306 | |
| 307 | static 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 Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | static int gen_get_link_speed(int phy_addr) |
| 319 | { |
| 320 | u_int16_t tmp; |
| 321 | |
Sudhakar Rajashekhara | d260740 | 2010-11-18 09:59:37 -0500 | [diff] [blame] | 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) |
Ben Gardiner | 7d2fade | 2011-01-11 14:48:17 -0500 | [diff] [blame] | 326 | davinci_eth_phy_read(phy_addr, MII_LPA, &tmp); |
Sudhakar Rajashekhara | d260740 | 2010-11-18 09:59:37 -0500 | [diff] [blame] | 327 | |
| 328 | /* Speed doesn't matter, there is no setting for it in EMAC. */ |
Ben Gardiner | 7d2fade | 2011-01-11 14:48:17 -0500 | [diff] [blame] | 329 | if (tmp & (LPA_100FULL | LPA_10FULL)) { |
Sudhakar Rajashekhara | d260740 | 2010-11-18 09:59:37 -0500 | [diff] [blame] | 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 | |
Ben Gardiner | 7d2fade | 2011-01-11 14:48:17 -0500 | [diff] [blame] | 340 | if (tmp & (LPA_100FULL | LPA_100HALF)) |
Sudhakar Rajashekhara | d260740 | 2010-11-18 09:59:37 -0500 | [diff] [blame] | 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 |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 349 | return(1); |
Sudhakar Rajashekhara | d260740 | 2010-11-18 09:59:37 -0500 | [diff] [blame] | 350 | } |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 351 | |
| 352 | return(0); |
| 353 | } |
| 354 | |
| 355 | static int gen_auto_negotiate(int phy_addr) |
| 356 | { |
| 357 | u_int16_t tmp; |
Manjunath Hadli | cc4bd47 | 2011-10-13 03:40:53 +0000 | [diff] [blame] | 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); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 374 | |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 375 | if (!davinci_eth_phy_read(phy_addr, MII_BMCR, &tmp)) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 376 | return(0); |
| 377 | |
| 378 | /* Restart Auto_negotiation */ |
Manjunath Hadli | cc4bd47 | 2011-10-13 03:40:53 +0000 | [diff] [blame] | 379 | tmp |= BMCR_ANRESTART; |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 380 | davinci_eth_phy_write(phy_addr, MII_BMCR, tmp); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 381 | |
| 382 | /*check AutoNegotiate complete */ |
Manjunath Hadli | cc4bd47 | 2011-10-13 03:40:53 +0000 | [diff] [blame] | 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 | |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 394 | if (!davinci_eth_phy_read(phy_addr, MII_BMSR, &tmp)) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 395 | return(0); |
| 396 | |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 397 | if (!(tmp & BMSR_ANEGCOMPLETE)) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 398 | return(0); |
| 399 | |
| 400 | return(gen_get_link_speed(phy_addr)); |
| 401 | } |
| 402 | /* End of generic PHY functions */ |
| 403 | |
| 404 | |
Wolfgang Denk | afaac86 | 2007-08-12 14:27:39 +0200 | [diff] [blame] | 405 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) |
Mike Frysinger | 5700bb6 | 2010-07-27 18:35:08 -0400 | [diff] [blame] | 406 | static int davinci_mii_phy_read(const char *devname, unsigned char addr, unsigned char reg, unsigned short *value) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 407 | { |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 408 | return(davinci_eth_phy_read(addr, reg, value) ? 0 : 1); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 409 | } |
| 410 | |
Mike Frysinger | 5700bb6 | 2010-07-27 18:35:08 -0400 | [diff] [blame] | 411 | static int davinci_mii_phy_write(const char *devname, unsigned char addr, unsigned char reg, unsigned short value) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 412 | { |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 413 | return(davinci_eth_phy_write(addr, reg, value) ? 0 : 1); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 414 | } |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 415 | #endif |
| 416 | |
Manjunath Hadli | fb1d633 | 2011-10-13 03:40:55 +0000 | [diff] [blame] | 417 | static void __attribute__((unused)) davinci_eth_gigabit_enable(int phy_addr) |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 418 | { |
| 419 | u_int16_t data; |
| 420 | |
Manjunath Hadli | fb1d633 | 2011-10-13 03:40:55 +0000 | [diff] [blame] | 421 | if (davinci_eth_phy_read(phy_addr, 0, &data)) { |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 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 | */ |
Sandeep Paulraj | 4b9b9e7 | 2010-12-28 14:37:33 -0500 | [diff] [blame] | 427 | writel(readl(&adap_emac->MACCONTROL) | |
| 428 | EMAC_MACCONTROL_GIGFORCE | |
| 429 | EMAC_MACCONTROL_GIGABIT_ENABLE, |
| 430 | &adap_emac->MACCONTROL); |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 431 | } |
| 432 | } |
| 433 | } |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 434 | |
| 435 | /* Eth device open */ |
Ben Warren | 8453587 | 2009-05-26 00:34:07 -0700 | [diff] [blame] | 436 | static int davinci_eth_open(struct eth_device *dev, bd_t *bis) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 437 | { |
| 438 | dv_reg_p addr; |
| 439 | u_int32_t clkdiv, cnt; |
| 440 | volatile emac_desc *rx_desc; |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 441 | int index; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 442 | |
| 443 | debug_emac("+ emac_open\n"); |
| 444 | |
| 445 | /* Reset EMAC module and disable interrupts in wrapper */ |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 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); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 455 | for (cnt = 0; cnt < 5; cnt++) { |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 456 | clkdiv = readl(&adap_ewrap->EWCTL); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 457 | } |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 458 | #endif |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 459 | |
Sudhakar Rajashekhara | d260740 | 2010-11-18 09:59:37 -0500 | [diff] [blame] | 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 |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 466 | rx_desc = emac_rx_desc; |
| 467 | |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 468 | writel(1, &adap_emac->TXCONTROL); |
| 469 | writel(1, &adap_emac->RXCONTROL); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 470 | |
Ben Gardiner | 7b37a27 | 2010-09-23 09:58:43 -0400 | [diff] [blame] | 471 | davinci_eth_set_mac_addr(dev); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 472 | |
| 473 | /* Set DMA 8 TX / 8 RX Head pointers to 0 */ |
| 474 | addr = &adap_emac->TX0HDP; |
| 475 | for(cnt = 0; cnt < 16; cnt++) |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 476 | writel(0, addr++); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 477 | |
| 478 | addr = &adap_emac->RX0HDP; |
| 479 | for(cnt = 0; cnt < 16; cnt++) |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 480 | writel(0, addr++); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 481 | |
| 482 | /* Clear Statistics (do this before setting MacControl register) */ |
| 483 | addr = &adap_emac->RXGOODFRAMES; |
| 484 | for(cnt = 0; cnt < EMAC_NUM_STATS; cnt++) |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 485 | writel(0, addr++); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 486 | |
| 487 | /* No multicast addressing */ |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 488 | writel(0, &adap_emac->MACHASH1); |
| 489 | writel(0, &adap_emac->MACHASH2); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 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++) { |
Ilya Yanok | 82b7721 | 2011-11-28 06:37:30 +0000 | [diff] [blame] | 494 | rx_desc->next = BD_TO_HW((u_int32_t)(rx_desc + 1)); |
Ilya Yanok | 2aa8720 | 2011-11-28 06:37:33 +0000 | [diff] [blame] | 495 | rx_desc->buffer = &emac_rx_buffers[cnt * EMAC_RXBUF_SIZE]; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 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 | |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 501 | /* Finalize the rx desc list */ |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 502 | rx_desc--; |
| 503 | rx_desc->next = 0; |
| 504 | emac_rx_active_tail = rx_desc; |
| 505 | emac_rx_queue_active = 1; |
| 506 | |
Ilya Yanok | 2aa8720 | 2011-11-28 06:37:33 +0000 | [diff] [blame] | 507 | davinci_flush_rx_descs(); |
| 508 | |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 509 | /* Enable TX/RX */ |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 510 | writel(EMAC_MAX_ETHERNET_PKT_SIZE, &adap_emac->RXMAXLEN); |
| 511 | writel(0, &adap_emac->RXBUFFEROFFSET); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 512 | |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 513 | /* |
| 514 | * No fancy configs - Use this for promiscous debug |
| 515 | * - EMAC_RXMBPENABLE_RXCAFEN_ENABLE |
| 516 | */ |
| 517 | writel(EMAC_RXMBPENABLE_RXBROADEN, &adap_emac->RXMBPENABLE); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 518 | |
| 519 | /* Enable ch 0 only */ |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 520 | writel(1, &adap_emac->RXUNICASTSET); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 521 | |
| 522 | /* Enable MII interface and Full duplex mode */ |
Ilya Yanok | 80deda5 | 2011-11-28 06:37:34 +0000 | [diff] [blame] | 523 | #if defined(CONFIG_SOC_DA8XX) || \ |
| 524 | (defined(CONFIG_OMAP34XX) && defined(CONFIG_DRIVER_TI_EMAC_USE_RMII)) |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 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 |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 534 | |
| 535 | /* Init MDIO & get link state */ |
Heiko Schocher | 882ecfa | 2011-11-01 20:00:27 +0000 | [diff] [blame] | 536 | clkdiv = CONFIG_SYS_EMAC_TI_CLKDIV; |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 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); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 542 | |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 543 | index = get_active_phy(); |
| 544 | if (index == -1) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 545 | return(0); |
| 546 | |
Manjunath Hadli | fb1d633 | 2011-10-13 03:40:55 +0000 | [diff] [blame] | 547 | emac_gigabit_enable(active_phy_addr[index]); |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 548 | |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 549 | /* Start receive process */ |
Ilya Yanok | 82b7721 | 2011-11-28 06:37:30 +0000 | [diff] [blame] | 550 | writel(BD_TO_HW((u_int32_t)emac_rx_desc), &adap_emac->RX0HDP); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 551 | |
| 552 | debug_emac("- emac_open\n"); |
| 553 | |
| 554 | return(1); |
| 555 | } |
| 556 | |
| 557 | /* EMAC Channel Teardown */ |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 558 | static void davinci_eth_ch_teardown(int ch) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 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 */ |
Nagabhushana Netagunte | ba511f7 | 2011-09-03 22:20:33 -0400 | [diff] [blame] | 567 | writel(0, &adap_emac->TXTEARDOWN); |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 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) |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 579 | break; |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 580 | cnt = readl(&adap_emac->TX0CP); |
| 581 | } while (cnt != 0xfffffffc); |
| 582 | writel(cnt, &adap_emac->TX0CP); |
| 583 | writel(0, &adap_emac->TX0HDP); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 584 | } else { |
| 585 | /* Init RX channel teardown */ |
Nagabhushana Netagunte | ba511f7 | 2011-09-03 22:20:33 -0400 | [diff] [blame] | 586 | writel(0, &adap_emac->RXTEARDOWN); |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 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) |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 598 | break; |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 599 | cnt = readl(&adap_emac->RX0CP); |
| 600 | } while (cnt != 0xfffffffc); |
| 601 | writel(cnt, &adap_emac->RX0CP); |
| 602 | writel(0, &adap_emac->RX0HDP); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 603 | } |
| 604 | |
| 605 | debug_emac("- emac_ch_teardown\n"); |
| 606 | } |
| 607 | |
| 608 | /* Eth device close */ |
Ben Warren | 8453587 | 2009-05-26 00:34:07 -0700 | [diff] [blame] | 609 | static void davinci_eth_close(struct eth_device *dev) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 610 | { |
| 611 | debug_emac("+ emac_close\n"); |
| 612 | |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 613 | davinci_eth_ch_teardown(EMAC_CH_TX); /* TX Channel teardown */ |
| 614 | davinci_eth_ch_teardown(EMAC_CH_RX); /* RX Channel teardown */ |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 615 | |
| 616 | /* Reset EMAC module and disable interrupts in wrapper */ |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 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 |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 623 | |
Sudhakar Rajashekhara | d260740 | 2010-11-18 09:59:37 -0500 | [diff] [blame] | 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 |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 630 | debug_emac("- emac_close\n"); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 631 | } |
| 632 | |
| 633 | static 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 Warren | 8453587 | 2009-05-26 00:34:07 -0700 | [diff] [blame] | 639 | static int davinci_eth_send_packet (struct eth_device *dev, |
Joe Hershberger | bbcdefb | 2012-05-21 05:54:01 +0000 | [diff] [blame] | 640 | void *packet, int length) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 641 | { |
| 642 | int ret_status = -1; |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 643 | int index; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 644 | tx_send_loop = 0; |
| 645 | |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 646 | index = get_active_phy(); |
| 647 | if (index == -1) { |
| 648 | printf(" WARN: emac_send_packet: No link\n"); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 649 | return (ret_status); |
| 650 | } |
| 651 | |
Manjunath Hadli | fb1d633 | 2011-10-13 03:40:55 +0000 | [diff] [blame] | 652 | emac_gigabit_enable(active_phy_addr[index]); |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 653 | |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 654 | /* Check packet size and if < EMAC_MIN_ETHERNET_PKT_SIZE, pad it up */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 655 | if (length < EMAC_MIN_ETHERNET_PKT_SIZE) { |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 656 | length = EMAC_MIN_ETHERNET_PKT_SIZE; |
| 657 | } |
| 658 | |
| 659 | /* Populate the TX descriptor */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 660 | emac_tx_desc->next = 0; |
| 661 | emac_tx_desc->buffer = (u_int8_t *) packet; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 662 | emac_tx_desc->buff_off_len = (length & 0xffff); |
| 663 | emac_tx_desc->pkt_flag_len = ((length & 0xffff) | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 664 | EMAC_CPPI_SOP_BIT | |
| 665 | EMAC_CPPI_OWNERSHIP_BIT | |
| 666 | EMAC_CPPI_EOP_BIT); |
Ilya Yanok | 2aa8720 | 2011-11-28 06:37:33 +0000 | [diff] [blame] | 667 | |
| 668 | flush_dcache_range((unsigned long)packet, |
| 669 | (unsigned long)packet + length); |
| 670 | davinci_flush_desc(emac_tx_desc); |
| 671 | |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 672 | /* Send the packet */ |
Ilya Yanok | 82b7721 | 2011-11-28 06:37:30 +0000 | [diff] [blame] | 673 | writel(BD_TO_HW((unsigned long)emac_tx_desc), &adap_emac->TX0HDP); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 674 | |
| 675 | /* Wait for packet to complete or link down */ |
| 676 | while (1) { |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 677 | if (!phy[index].get_link_speed(active_phy_addr[index])) { |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 678 | davinci_eth_ch_teardown (EMAC_CH_TX); |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 679 | return (ret_status); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 680 | } |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 681 | |
Manjunath Hadli | fb1d633 | 2011-10-13 03:40:55 +0000 | [diff] [blame] | 682 | emac_gigabit_enable(active_phy_addr[index]); |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 683 | |
| 684 | if (readl(&adap_emac->TXINTSTATRAW) & 0x01) { |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 685 | ret_status = length; |
| 686 | break; |
| 687 | } |
| 688 | tx_send_loop++; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 689 | } |
| 690 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 691 | return (ret_status); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | /* |
| 695 | * This function handles receipt of a packet from the network |
| 696 | */ |
Ben Warren | 8453587 | 2009-05-26 00:34:07 -0700 | [diff] [blame] | 697 | static int davinci_eth_rcv_packet (struct eth_device *dev) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 698 | { |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 699 | volatile emac_desc *rx_curr_desc; |
| 700 | volatile emac_desc *curr_desc; |
| 701 | volatile emac_desc *tail_desc; |
| 702 | int status, ret = -1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 703 | |
Ilya Yanok | 2aa8720 | 2011-11-28 06:37:33 +0000 | [diff] [blame] | 704 | davinci_invalidate_rx_descs(); |
| 705 | |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 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)) { |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 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"); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 712 | } else { |
Ilya Yanok | 2aa8720 | 2011-11-28 06:37:33 +0000 | [diff] [blame] | 713 | unsigned long tmp = (unsigned long)rx_curr_desc->buffer; |
| 714 | |
| 715 | invalidate_dcache_range(tmp, tmp + EMAC_RXBUF_SIZE); |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 716 | NetReceive (rx_curr_desc->buffer, |
| 717 | (rx_curr_desc->buff_off_len & 0xffff)); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 718 | ret = rx_curr_desc->buff_off_len & 0xffff; |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 719 | } |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 720 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 721 | /* Ack received packet descriptor */ |
Ilya Yanok | 82b7721 | 2011-11-28 06:37:30 +0000 | [diff] [blame] | 722 | writel(BD_TO_HW((ulong)rx_curr_desc), &adap_emac->RX0CP); |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 723 | curr_desc = rx_curr_desc; |
| 724 | emac_rx_active_head = |
Ilya Yanok | 82b7721 | 2011-11-28 06:37:30 +0000 | [diff] [blame] | 725 | (volatile emac_desc *) (HW_TO_BD(rx_curr_desc->next)); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 726 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 727 | if (status & EMAC_CPPI_EOQ_BIT) { |
| 728 | if (emac_rx_active_head) { |
Ilya Yanok | 82b7721 | 2011-11-28 06:37:30 +0000 | [diff] [blame] | 729 | writel(BD_TO_HW((ulong)emac_rx_active_head), |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 730 | &adap_emac->RX0HDP); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 731 | } else { |
| 732 | emac_rx_queue_active = 0; |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 733 | printf ("INFO:emac_rcv_packet: RX Queue not active\n"); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 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; |
Ilya Yanok | 2aa8720 | 2011-11-28 06:37:33 +0000 | [diff] [blame] | 741 | davinci_flush_desc(rx_curr_desc); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 742 | |
| 743 | if (emac_rx_active_head == 0) { |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 744 | printf ("INFO: emac_rcv_pkt: active queue head = 0\n"); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 745 | emac_rx_active_head = curr_desc; |
| 746 | emac_rx_active_tail = curr_desc; |
| 747 | if (emac_rx_queue_active != 0) { |
Ilya Yanok | 82b7721 | 2011-11-28 06:37:30 +0000 | [diff] [blame] | 748 | writel(BD_TO_HW((ulong)emac_rx_active_head), |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 749 | &adap_emac->RX0HDP); |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 750 | printf ("INFO: emac_rcv_pkt: active queue head = 0, HDP fired\n"); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 751 | emac_rx_queue_active = 1; |
| 752 | } |
| 753 | } else { |
| 754 | tail_desc = emac_rx_active_tail; |
| 755 | emac_rx_active_tail = curr_desc; |
Ilya Yanok | 82b7721 | 2011-11-28 06:37:30 +0000 | [diff] [blame] | 756 | tail_desc->next = BD_TO_HW((ulong) curr_desc); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 757 | status = tail_desc->pkt_flag_len; |
| 758 | if (status & EMAC_CPPI_EOQ_BIT) { |
Ilya Yanok | 2aa8720 | 2011-11-28 06:37:33 +0000 | [diff] [blame] | 759 | davinci_flush_desc(tail_desc); |
Ilya Yanok | 82b7721 | 2011-11-28 06:37:30 +0000 | [diff] [blame] | 760 | writel(BD_TO_HW((ulong)curr_desc), |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 761 | &adap_emac->RX0HDP); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 762 | status &= ~EMAC_CPPI_EOQ_BIT; |
| 763 | tail_desc->pkt_flag_len = status; |
| 764 | } |
Ilya Yanok | 2aa8720 | 2011-11-28 06:37:33 +0000 | [diff] [blame] | 765 | davinci_flush_desc(tail_desc); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 766 | } |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 767 | return (ret); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 768 | } |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 769 | return (0); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 770 | } |
| 771 | |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 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 | */ |
Ben Warren | 8453587 | 2009-05-26 00:34:07 -0700 | [diff] [blame] | 777 | int davinci_emac_initialize(void) |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 778 | { |
| 779 | u_int32_t phy_id; |
| 780 | u_int16_t tmp; |
| 781 | int i; |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 782 | int ret; |
Ben Warren | 8453587 | 2009-05-26 00:34:07 -0700 | [diff] [blame] | 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); |
Sandeep Paulraj | 2a7d603 | 2010-12-28 14:42:27 -0500 | [diff] [blame] | 791 | sprintf(dev->name, "DaVinci-EMAC"); |
Ben Warren | 8453587 | 2009-05-26 00:34:07 -0700 | [diff] [blame] | 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; |
Ben Gardiner | 7b37a27 | 2010-09-23 09:58:43 -0400 | [diff] [blame] | 798 | dev->write_hwaddr = davinci_eth_set_mac_addr; |
Ben Warren | 8453587 | 2009-05-26 00:34:07 -0700 | [diff] [blame] | 799 | |
| 800 | eth_register(dev); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 801 | |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 802 | davinci_eth_mdio_enable(); |
| 803 | |
Heiko Schocher | 19fdf9a | 2011-09-14 19:37:42 +0000 | [diff] [blame] | 804 | /* let the EMAC detect the PHYs */ |
| 805 | udelay(5000); |
| 806 | |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 807 | for (i = 0; i < 256; i++) { |
Nick Thompson | d7e3543 | 2009-12-18 13:33:07 +0000 | [diff] [blame] | 808 | if (readl(&adap_mdio->ALIVE)) |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 809 | break; |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 810 | udelay(1000); |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 811 | } |
| 812 | |
| 813 | if (i >= 256) { |
| 814 | printf("No ETH PHY detected!!!\n"); |
| 815 | return(0); |
| 816 | } |
| 817 | |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 818 | /* Find if PHY(s) is/are connected */ |
| 819 | ret = davinci_eth_phy_detect(); |
| 820 | if (!ret) |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 821 | return(0); |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 822 | else |
Heiko Schocher | dc02bad | 2011-11-15 10:00:04 -0500 | [diff] [blame] | 823 | debug_emac(" %d ETH PHY detected\n", ret); |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 824 | |
| 825 | /* Get PHY ID and initialize phy_ops for a detected PHY */ |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 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 | } |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 832 | |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 833 | phy_id = (tmp << 16) & 0xffff0000; |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 834 | |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 835 | if (!davinci_eth_phy_read(active_phy_addr[i], MII_PHYSID2, |
| 836 | &tmp)) { |
| 837 | active_phy_addr[i] = 0xff; |
| 838 | continue; |
| 839 | } |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 840 | |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 841 | phy_id |= tmp & 0x0000ffff; |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 842 | |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 843 | switch (phy_id) { |
Ilya Yanok | 918588c | 2011-11-28 06:37:31 +0000 | [diff] [blame] | 844 | #ifdef PHY_KSZ8873 |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 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; |
Ilya Yanok | 918588c | 2011-11-28 06:37:31 +0000 | [diff] [blame] | 853 | #endif |
| 854 | #ifdef PHY_LXT972 |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 855 | case PHY_LXT972: |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 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; |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 862 | break; |
Ilya Yanok | 918588c | 2011-11-28 06:37:31 +0000 | [diff] [blame] | 863 | #endif |
| 864 | #ifdef PHY_DP83848 |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 865 | case PHY_DP83848: |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 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; |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 872 | break; |
Ilya Yanok | 918588c | 2011-11-28 06:37:31 +0000 | [diff] [blame] | 873 | #endif |
| 874 | #ifdef PHY_ET1011C |
Sandeep Paulraj | 840f892 | 2010-12-28 15:43:16 -0500 | [diff] [blame] | 875 | case PHY_ET1011C: |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 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; |
Sandeep Paulraj | 840f892 | 2010-12-28 15:43:16 -0500 | [diff] [blame] | 882 | break; |
Ilya Yanok | 918588c | 2011-11-28 06:37:31 +0000 | [diff] [blame] | 883 | #endif |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 884 | default: |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 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 | } |
| 892 | |
Ilya Yanok | e0297a5 | 2011-11-01 13:15:55 +0000 | [diff] [blame] | 893 | debug("Ethernet PHY: %s\n", phy[i].name); |
Manjunath Hadli | 062fe7d | 2011-10-13 03:40:54 +0000 | [diff] [blame] | 894 | |
| 895 | miiphy_register(phy[i].name, davinci_mii_phy_read, |
| 896 | davinci_mii_phy_write); |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 897 | } |
Ben Warren | 8cc13c1 | 2009-04-27 23:19:10 -0700 | [diff] [blame] | 898 | return(1); |
| 899 | } |