Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/net/mv643xx_eth.c - Driver for MV643XX ethernet ports |
| 3 | * Copyright (C) 2002 Matthew Dharm <mdharm@momenco.com> |
| 4 | * |
| 5 | * Based on the 64360 driver from: |
| 6 | * Copyright (C) 2002 rabeeh@galileo.co.il |
| 7 | * |
| 8 | * Copyright (C) 2003 PMC-Sierra, Inc., |
Olaf Hering | 3bb8a18a | 2006-01-05 22:45:45 -0800 | [diff] [blame] | 9 | * written by Manish Lachwani |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * |
| 11 | * Copyright (C) 2003 Ralf Baechle <ralf@linux-mips.org> |
| 12 | * |
| 13 | * Copyright (C) 2004-2005 MontaVista Software, Inc. |
| 14 | * Dale Farnsworth <dale@farnsworth.org> |
| 15 | * |
| 16 | * Copyright (C) 2004 Steven J. Hill <sjhill1@rockwellcollins.com> |
| 17 | * <sjhill@realitydiluted.com> |
| 18 | * |
| 19 | * This program is free software; you can redistribute it and/or |
| 20 | * modify it under the terms of the GNU General Public License |
| 21 | * as published by the Free Software Foundation; either version 2 |
| 22 | * of the License, or (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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 32 | */ |
| 33 | #include <linux/init.h> |
| 34 | #include <linux/dma-mapping.h> |
| 35 | #include <linux/tcp.h> |
| 36 | #include <linux/udp.h> |
| 37 | #include <linux/etherdevice.h> |
Olaf Hering | 78a5e53 | 2006-01-16 16:47:00 -0700 | [diff] [blame] | 38 | #include <linux/in.h> |
| 39 | #include <linux/ip.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | #include <linux/bitops.h> |
| 42 | #include <linux/delay.h> |
| 43 | #include <linux/ethtool.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 44 | #include <linux/platform_device.h> |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <asm/io.h> |
| 47 | #include <asm/types.h> |
| 48 | #include <asm/pgtable.h> |
| 49 | #include <asm/system.h> |
| 50 | #include <asm/delay.h> |
| 51 | #include "mv643xx_eth.h" |
| 52 | |
| 53 | /* |
| 54 | * The first part is the high level driver of the gigE ethernet ports. |
| 55 | */ |
| 56 | |
| 57 | /* Constants */ |
| 58 | #define VLAN_HLEN 4 |
| 59 | #define FCS_LEN 4 |
Dale Farnsworth | b44cd57 | 2006-01-16 16:51:22 -0700 | [diff] [blame] | 60 | #define DMA_ALIGN 8 /* hw requires 8-byte alignment */ |
| 61 | #define HW_IP_ALIGN 2 /* hw aligns IP header */ |
| 62 | #define WRAP HW_IP_ALIGN + ETH_HLEN + VLAN_HLEN + FCS_LEN |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #define RX_SKB_SIZE ((dev->mtu + WRAP + 7) & ~0x7) |
| 64 | |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 65 | #define INT_UNMASK_ALL 0x0007ffff |
| 66 | #define INT_UNMASK_ALL_EXT 0x0011ffff |
| 67 | #define INT_MASK_ALL 0x00000000 |
| 68 | #define INT_MASK_ALL_EXT 0x00000000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | #define INT_CAUSE_CHECK_BITS INT_CAUSE_UNMASK_ALL |
| 70 | #define INT_CAUSE_CHECK_BITS_EXT INT_CAUSE_UNMASK_ALL_EXT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
| 72 | #ifdef MV643XX_CHECKSUM_OFFLOAD_TX |
| 73 | #define MAX_DESCS_PER_SKB (MAX_SKB_FRAGS + 1) |
| 74 | #else |
| 75 | #define MAX_DESCS_PER_SKB 1 |
| 76 | #endif |
| 77 | |
| 78 | #define PHY_WAIT_ITERATIONS 1000 /* 1000 iterations * 10uS = 10mS max */ |
| 79 | #define PHY_WAIT_MICRO_SECONDS 10 |
| 80 | |
| 81 | /* Static function declarations */ |
| 82 | static int eth_port_link_is_up(unsigned int eth_port_num); |
| 83 | static void eth_port_uc_addr_get(struct net_device *dev, |
| 84 | unsigned char *MacAddr); |
Dale Farnsworth | 16e0301 | 2006-01-16 16:50:02 -0700 | [diff] [blame] | 85 | static void eth_port_set_multicast_list(struct net_device *); |
Dale Farnsworth | ab4384a | 2006-01-16 16:59:21 -0700 | [diff] [blame] | 86 | static int mv643xx_eth_open(struct net_device *); |
| 87 | static int mv643xx_eth_stop(struct net_device *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | static int mv643xx_eth_change_mtu(struct net_device *, int); |
| 89 | static struct net_device_stats *mv643xx_eth_get_stats(struct net_device *); |
| 90 | static void eth_port_init_mac_tables(unsigned int eth_port_num); |
| 91 | #ifdef MV643XX_NAPI |
| 92 | static int mv643xx_poll(struct net_device *dev, int *budget); |
| 93 | #endif |
| 94 | static void ethernet_phy_set(unsigned int eth_port_num, int phy_addr); |
| 95 | static int ethernet_phy_detect(unsigned int eth_port_num); |
| 96 | static struct ethtool_ops mv643xx_ethtool_ops; |
| 97 | |
| 98 | static char mv643xx_driver_name[] = "mv643xx_eth"; |
| 99 | static char mv643xx_driver_version[] = "1.0"; |
| 100 | |
| 101 | static void __iomem *mv643xx_eth_shared_base; |
| 102 | |
| 103 | /* used to protect MV643XX_ETH_SMI_REG, which is shared across ports */ |
Ingo Molnar | a9f6a0d | 2005-09-09 13:10:41 -0700 | [diff] [blame] | 104 | static DEFINE_SPINLOCK(mv643xx_eth_phy_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | static inline u32 mv_read(int offset) |
| 107 | { |
Al Viro | dc074a8 | 2005-04-25 07:55:58 -0700 | [diff] [blame] | 108 | void __iomem *reg_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
| 110 | reg_base = mv643xx_eth_shared_base - MV643XX_ETH_SHARED_REGS; |
| 111 | |
| 112 | return readl(reg_base + offset); |
| 113 | } |
| 114 | |
| 115 | static inline void mv_write(int offset, u32 data) |
| 116 | { |
Al Viro | dc074a8 | 2005-04-25 07:55:58 -0700 | [diff] [blame] | 117 | void __iomem *reg_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | reg_base = mv643xx_eth_shared_base - MV643XX_ETH_SHARED_REGS; |
| 120 | writel(data, reg_base + offset); |
| 121 | } |
| 122 | |
| 123 | /* |
| 124 | * Changes MTU (maximum transfer unit) of the gigabit ethenret port |
| 125 | * |
| 126 | * Input : pointer to ethernet interface network device structure |
| 127 | * new mtu size |
| 128 | * Output : 0 upon success, -EINVAL upon failure |
| 129 | */ |
| 130 | static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu) |
| 131 | { |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 132 | if ((new_mtu > 9500) || (new_mtu < 64)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
| 135 | dev->mtu = new_mtu; |
| 136 | /* |
| 137 | * Stop then re-open the interface. This will allocate RX skb's with |
| 138 | * the new MTU. |
| 139 | * There is a possible danger that the open will not successed, due |
| 140 | * to memory is full, which might fail the open function. |
| 141 | */ |
| 142 | if (netif_running(dev)) { |
Dale Farnsworth | ab4384a | 2006-01-16 16:59:21 -0700 | [diff] [blame] | 143 | mv643xx_eth_stop(dev); |
| 144 | if (mv643xx_eth_open(dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | printk(KERN_ERR |
| 146 | "%s: Fatal error on opening device\n", |
| 147 | dev->name); |
| 148 | } |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | return 0; |
| 151 | } |
| 152 | |
| 153 | /* |
| 154 | * mv643xx_eth_rx_task |
| 155 | * |
| 156 | * Fills / refills RX queue on a certain gigabit ethernet port |
| 157 | * |
| 158 | * Input : pointer to ethernet interface network device structure |
| 159 | * Output : N/A |
| 160 | */ |
| 161 | static void mv643xx_eth_rx_task(void *data) |
| 162 | { |
| 163 | struct net_device *dev = (struct net_device *)data; |
| 164 | struct mv643xx_private *mp = netdev_priv(dev); |
| 165 | struct pkt_info pkt_info; |
| 166 | struct sk_buff *skb; |
Dale Farnsworth | b44cd57 | 2006-01-16 16:51:22 -0700 | [diff] [blame] | 167 | int unaligned; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
| 169 | if (test_and_set_bit(0, &mp->rx_task_busy)) |
| 170 | panic("%s: Error in test_set_bit / clear_bit", dev->name); |
| 171 | |
| 172 | while (mp->rx_ring_skbs < (mp->rx_ring_size - 5)) { |
Dale Farnsworth | b44cd57 | 2006-01-16 16:51:22 -0700 | [diff] [blame] | 173 | skb = dev_alloc_skb(RX_SKB_SIZE + DMA_ALIGN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | if (!skb) |
| 175 | break; |
| 176 | mp->rx_ring_skbs++; |
Dale Farnsworth | b44cd57 | 2006-01-16 16:51:22 -0700 | [diff] [blame] | 177 | unaligned = (u32)skb->data & (DMA_ALIGN - 1); |
| 178 | if (unaligned) |
| 179 | skb_reserve(skb, DMA_ALIGN - unaligned); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | pkt_info.cmd_sts = ETH_RX_ENABLE_INTERRUPT; |
| 181 | pkt_info.byte_cnt = RX_SKB_SIZE; |
| 182 | pkt_info.buf_ptr = dma_map_single(NULL, skb->data, RX_SKB_SIZE, |
| 183 | DMA_FROM_DEVICE); |
| 184 | pkt_info.return_info = skb; |
| 185 | if (eth_rx_return_buff(mp, &pkt_info) != ETH_OK) { |
| 186 | printk(KERN_ERR |
| 187 | "%s: Error allocating RX Ring\n", dev->name); |
| 188 | break; |
| 189 | } |
Dale Farnsworth | b44cd57 | 2006-01-16 16:51:22 -0700 | [diff] [blame] | 190 | skb_reserve(skb, HW_IP_ALIGN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | } |
| 192 | clear_bit(0, &mp->rx_task_busy); |
| 193 | /* |
| 194 | * If RX ring is empty of SKB, set a timer to try allocating |
| 195 | * again in a later time . |
| 196 | */ |
| 197 | if ((mp->rx_ring_skbs == 0) && (mp->rx_timer_flag == 0)) { |
| 198 | printk(KERN_INFO "%s: Rx ring is empty\n", dev->name); |
| 199 | /* After 100mSec */ |
| 200 | mp->timeout.expires = jiffies + (HZ / 10); |
| 201 | add_timer(&mp->timeout); |
| 202 | mp->rx_timer_flag = 1; |
| 203 | } |
| 204 | #ifdef MV643XX_RX_QUEUE_FILL_ON_TASK |
| 205 | else { |
| 206 | /* Return interrupts */ |
| 207 | mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(mp->port_num), |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 208 | INT_UNMASK_ALL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | } |
| 210 | #endif |
| 211 | } |
| 212 | |
| 213 | /* |
| 214 | * mv643xx_eth_rx_task_timer_wrapper |
| 215 | * |
| 216 | * Timer routine to wake up RX queue filling task. This function is |
| 217 | * used only in case the RX queue is empty, and all alloc_skb has |
| 218 | * failed (due to out of memory event). |
| 219 | * |
| 220 | * Input : pointer to ethernet interface network device structure |
| 221 | * Output : N/A |
| 222 | */ |
| 223 | static void mv643xx_eth_rx_task_timer_wrapper(unsigned long data) |
| 224 | { |
| 225 | struct net_device *dev = (struct net_device *)data; |
| 226 | struct mv643xx_private *mp = netdev_priv(dev); |
| 227 | |
| 228 | mp->rx_timer_flag = 0; |
| 229 | mv643xx_eth_rx_task((void *)data); |
| 230 | } |
| 231 | |
| 232 | /* |
| 233 | * mv643xx_eth_update_mac_address |
| 234 | * |
| 235 | * Update the MAC address of the port in the address table |
| 236 | * |
| 237 | * Input : pointer to ethernet interface network device structure |
| 238 | * Output : N/A |
| 239 | */ |
| 240 | static void mv643xx_eth_update_mac_address(struct net_device *dev) |
| 241 | { |
| 242 | struct mv643xx_private *mp = netdev_priv(dev); |
| 243 | unsigned int port_num = mp->port_num; |
| 244 | |
| 245 | eth_port_init_mac_tables(port_num); |
Dale Farnsworth | ed9b5d4 | 2006-01-27 01:06:38 -0700 | [diff] [blame] | 246 | eth_port_uc_addr_set(port_num, dev->dev_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | /* |
| 250 | * mv643xx_eth_set_rx_mode |
| 251 | * |
| 252 | * Change from promiscuos to regular rx mode |
| 253 | * |
| 254 | * Input : pointer to ethernet interface network device structure |
| 255 | * Output : N/A |
| 256 | */ |
| 257 | static void mv643xx_eth_set_rx_mode(struct net_device *dev) |
| 258 | { |
| 259 | struct mv643xx_private *mp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | if (dev->flags & IFF_PROMISC) |
Dale Farnsworth | 7342cd8 | 2005-09-02 12:36:48 -0700 | [diff] [blame] | 262 | mp->port_config |= (u32) MV643XX_ETH_UNICAST_PROMISCUOUS_MODE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | else |
Dale Farnsworth | 7342cd8 | 2005-09-02 12:36:48 -0700 | [diff] [blame] | 264 | mp->port_config &= ~(u32) MV643XX_ETH_UNICAST_PROMISCUOUS_MODE; |
| 265 | |
| 266 | mv_write(MV643XX_ETH_PORT_CONFIG_REG(mp->port_num), mp->port_config); |
Dale Farnsworth | 16e0301 | 2006-01-16 16:50:02 -0700 | [diff] [blame] | 267 | |
| 268 | eth_port_set_multicast_list(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | /* |
| 272 | * mv643xx_eth_set_mac_address |
| 273 | * |
| 274 | * Change the interface's mac address. |
| 275 | * No special hardware thing should be done because interface is always |
| 276 | * put in promiscuous mode. |
| 277 | * |
| 278 | * Input : pointer to ethernet interface network device structure and |
| 279 | * a pointer to the designated entry to be added to the cache. |
| 280 | * Output : zero upon success, negative upon failure |
| 281 | */ |
| 282 | static int mv643xx_eth_set_mac_address(struct net_device *dev, void *addr) |
| 283 | { |
| 284 | int i; |
| 285 | |
| 286 | for (i = 0; i < 6; i++) |
| 287 | /* +2 is for the offset of the HW addr type */ |
| 288 | dev->dev_addr[i] = ((unsigned char *)addr)[i + 2]; |
| 289 | mv643xx_eth_update_mac_address(dev); |
| 290 | return 0; |
| 291 | } |
| 292 | |
| 293 | /* |
| 294 | * mv643xx_eth_tx_timeout |
| 295 | * |
| 296 | * Called upon a timeout on transmitting a packet |
| 297 | * |
| 298 | * Input : pointer to ethernet interface network device structure. |
| 299 | * Output : N/A |
| 300 | */ |
| 301 | static void mv643xx_eth_tx_timeout(struct net_device *dev) |
| 302 | { |
| 303 | struct mv643xx_private *mp = netdev_priv(dev); |
| 304 | |
| 305 | printk(KERN_INFO "%s: TX timeout ", dev->name); |
| 306 | |
| 307 | /* Do the reset outside of interrupt context */ |
| 308 | schedule_work(&mp->tx_timeout_task); |
| 309 | } |
| 310 | |
| 311 | /* |
| 312 | * mv643xx_eth_tx_timeout_task |
| 313 | * |
| 314 | * Actual routine to reset the adapter when a timeout on Tx has occurred |
| 315 | */ |
| 316 | static void mv643xx_eth_tx_timeout_task(struct net_device *dev) |
| 317 | { |
| 318 | struct mv643xx_private *mp = netdev_priv(dev); |
| 319 | |
| 320 | netif_device_detach(dev); |
| 321 | eth_port_reset(mp->port_num); |
Dale Farnsworth | ed9b5d4 | 2006-01-27 01:06:38 -0700 | [diff] [blame] | 322 | eth_port_start(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | netif_device_attach(dev); |
| 324 | } |
| 325 | |
| 326 | /* |
| 327 | * mv643xx_eth_free_tx_queue |
| 328 | * |
| 329 | * Input : dev - a pointer to the required interface |
| 330 | * |
| 331 | * Output : 0 if was able to release skb , nonzero otherwise |
| 332 | */ |
| 333 | static int mv643xx_eth_free_tx_queue(struct net_device *dev, |
| 334 | unsigned int eth_int_cause_ext) |
| 335 | { |
| 336 | struct mv643xx_private *mp = netdev_priv(dev); |
| 337 | struct net_device_stats *stats = &mp->stats; |
| 338 | struct pkt_info pkt_info; |
| 339 | int released = 1; |
| 340 | |
| 341 | if (!(eth_int_cause_ext & (BIT0 | BIT8))) |
| 342 | return released; |
| 343 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | /* Check only queue 0 */ |
| 345 | while (eth_tx_return_desc(mp, &pkt_info) == ETH_OK) { |
| 346 | if (pkt_info.cmd_sts & BIT0) { |
| 347 | printk("%s: Error in TX\n", dev->name); |
| 348 | stats->tx_errors++; |
| 349 | } |
| 350 | |
Paolo Galtieri | cb415d3 | 2006-01-16 16:48:02 -0700 | [diff] [blame] | 351 | if (pkt_info.cmd_sts & ETH_TX_FIRST_DESC) |
| 352 | dma_unmap_single(NULL, pkt_info.buf_ptr, |
| 353 | pkt_info.byte_cnt, |
| 354 | DMA_TO_DEVICE); |
| 355 | else |
| 356 | dma_unmap_page(NULL, pkt_info.buf_ptr, |
| 357 | pkt_info.byte_cnt, |
| 358 | DMA_TO_DEVICE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
Paolo Galtieri | cb415d3 | 2006-01-16 16:48:02 -0700 | [diff] [blame] | 360 | if (pkt_info.return_info) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | dev_kfree_skb_irq(pkt_info.return_info); |
| 362 | released = 0; |
Paolo Galtieri | cb415d3 | 2006-01-16 16:48:02 -0700 | [diff] [blame] | 363 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | } |
| 365 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | return released; |
| 367 | } |
| 368 | |
| 369 | /* |
| 370 | * mv643xx_eth_receive |
| 371 | * |
| 372 | * This function is forward packets that are received from the port's |
| 373 | * queues toward kernel core or FastRoute them to another interface. |
| 374 | * |
| 375 | * Input : dev - a pointer to the required interface |
| 376 | * max - maximum number to receive (0 means unlimted) |
| 377 | * |
| 378 | * Output : number of served packets |
| 379 | */ |
| 380 | #ifdef MV643XX_NAPI |
| 381 | static int mv643xx_eth_receive_queue(struct net_device *dev, int budget) |
| 382 | #else |
| 383 | static int mv643xx_eth_receive_queue(struct net_device *dev) |
| 384 | #endif |
| 385 | { |
| 386 | struct mv643xx_private *mp = netdev_priv(dev); |
| 387 | struct net_device_stats *stats = &mp->stats; |
| 388 | unsigned int received_packets = 0; |
| 389 | struct sk_buff *skb; |
| 390 | struct pkt_info pkt_info; |
| 391 | |
| 392 | #ifdef MV643XX_NAPI |
Dale Farnsworth | b1dd9ca | 2005-09-01 09:59:23 -0700 | [diff] [blame] | 393 | while (budget-- > 0 && eth_port_receive(mp, &pkt_info) == ETH_OK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | #else |
| 395 | while (eth_port_receive(mp, &pkt_info) == ETH_OK) { |
| 396 | #endif |
| 397 | mp->rx_ring_skbs--; |
| 398 | received_packets++; |
Dale Farnsworth | b1dd9ca | 2005-09-01 09:59:23 -0700 | [diff] [blame] | 399 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | /* Update statistics. Note byte count includes 4 byte CRC count */ |
| 401 | stats->rx_packets++; |
| 402 | stats->rx_bytes += pkt_info.byte_cnt; |
| 403 | skb = pkt_info.return_info; |
| 404 | /* |
| 405 | * In case received a packet without first / last bits on OR |
| 406 | * the error summary bit is on, the packets needs to be dropeed. |
| 407 | */ |
| 408 | if (((pkt_info.cmd_sts |
| 409 | & (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC)) != |
| 410 | (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC)) |
| 411 | || (pkt_info.cmd_sts & ETH_ERROR_SUMMARY)) { |
| 412 | stats->rx_dropped++; |
| 413 | if ((pkt_info.cmd_sts & (ETH_RX_FIRST_DESC | |
| 414 | ETH_RX_LAST_DESC)) != |
| 415 | (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC)) { |
| 416 | if (net_ratelimit()) |
| 417 | printk(KERN_ERR |
| 418 | "%s: Received packet spread " |
| 419 | "on multiple descriptors\n", |
| 420 | dev->name); |
| 421 | } |
| 422 | if (pkt_info.cmd_sts & ETH_ERROR_SUMMARY) |
| 423 | stats->rx_errors++; |
| 424 | |
| 425 | dev_kfree_skb_irq(skb); |
| 426 | } else { |
| 427 | /* |
| 428 | * The -4 is for the CRC in the trailer of the |
| 429 | * received packet |
| 430 | */ |
| 431 | skb_put(skb, pkt_info.byte_cnt - 4); |
| 432 | skb->dev = dev; |
| 433 | |
| 434 | if (pkt_info.cmd_sts & ETH_LAYER_4_CHECKSUM_OK) { |
| 435 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
| 436 | skb->csum = htons( |
| 437 | (pkt_info.cmd_sts & 0x0007fff8) >> 3); |
| 438 | } |
| 439 | skb->protocol = eth_type_trans(skb, dev); |
| 440 | #ifdef MV643XX_NAPI |
| 441 | netif_receive_skb(skb); |
| 442 | #else |
| 443 | netif_rx(skb); |
| 444 | #endif |
| 445 | } |
Paolo Galtieri | 12ad74f | 2006-01-27 01:03:38 -0700 | [diff] [blame] | 446 | dev->last_rx = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | return received_packets; |
| 450 | } |
| 451 | |
| 452 | /* |
| 453 | * mv643xx_eth_int_handler |
| 454 | * |
| 455 | * Main interrupt handler for the gigbit ethernet ports |
| 456 | * |
| 457 | * Input : irq - irq number (not used) |
| 458 | * dev_id - a pointer to the required interface's data structure |
| 459 | * regs - not used |
| 460 | * Output : N/A |
| 461 | */ |
| 462 | |
| 463 | static irqreturn_t mv643xx_eth_int_handler(int irq, void *dev_id, |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 464 | struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { |
| 466 | struct net_device *dev = (struct net_device *)dev_id; |
| 467 | struct mv643xx_private *mp = netdev_priv(dev); |
| 468 | u32 eth_int_cause, eth_int_cause_ext = 0; |
| 469 | unsigned int port_num = mp->port_num; |
| 470 | |
| 471 | /* Read interrupt cause registers */ |
| 472 | eth_int_cause = mv_read(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num)) & |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 473 | INT_UNMASK_ALL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | |
| 475 | if (eth_int_cause & BIT1) |
| 476 | eth_int_cause_ext = mv_read( |
| 477 | MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num)) & |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 478 | INT_UNMASK_ALL_EXT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | |
| 480 | #ifdef MV643XX_NAPI |
| 481 | if (!(eth_int_cause & 0x0007fffd)) { |
| 482 | /* Dont ack the Rx interrupt */ |
| 483 | #endif |
| 484 | /* |
| 485 | * Clear specific ethernet port intrerrupt registers by |
| 486 | * acknowleding relevant bits. |
| 487 | */ |
| 488 | mv_write(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num), |
| 489 | ~eth_int_cause); |
| 490 | if (eth_int_cause_ext != 0x0) |
| 491 | mv_write(MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG |
| 492 | (port_num), ~eth_int_cause_ext); |
| 493 | |
| 494 | /* UDP change : We may need this */ |
| 495 | if ((eth_int_cause_ext & 0x0000ffff) && |
| 496 | (mv643xx_eth_free_tx_queue(dev, eth_int_cause_ext) == 0) && |
| 497 | (mp->tx_ring_size > mp->tx_ring_skbs + MAX_DESCS_PER_SKB)) |
| 498 | netif_wake_queue(dev); |
| 499 | #ifdef MV643XX_NAPI |
| 500 | } else { |
| 501 | if (netif_rx_schedule_prep(dev)) { |
| 502 | /* Mask all the interrupts */ |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 503 | mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), |
| 504 | INT_MASK_ALL); |
| 505 | /* wait for previous write to complete */ |
| 506 | mv_read(MV643XX_ETH_INTERRUPT_MASK_REG(port_num)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | __netif_rx_schedule(dev); |
| 508 | } |
| 509 | #else |
| 510 | if (eth_int_cause & (BIT2 | BIT11)) |
| 511 | mv643xx_eth_receive_queue(dev, 0); |
| 512 | |
| 513 | /* |
| 514 | * After forwarded received packets to upper layer, add a task |
| 515 | * in an interrupts enabled context that refills the RX ring |
| 516 | * with skb's. |
| 517 | */ |
| 518 | #ifdef MV643XX_RX_QUEUE_FILL_ON_TASK |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 519 | /* Mask all interrupts on ethernet port */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 521 | INT_MASK_ALL); |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 522 | /* wait for previous write to take effect */ |
| 523 | mv_read(MV643XX_ETH_INTERRUPT_MASK_REG(port_num)); |
| 524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | queue_task(&mp->rx_task, &tq_immediate); |
| 526 | mark_bh(IMMEDIATE_BH); |
| 527 | #else |
| 528 | mp->rx_task.func(dev); |
| 529 | #endif |
| 530 | #endif |
| 531 | } |
| 532 | /* PHY status changed */ |
| 533 | if (eth_int_cause_ext & (BIT16 | BIT20)) { |
| 534 | if (eth_port_link_is_up(port_num)) { |
| 535 | netif_carrier_on(dev); |
| 536 | netif_wake_queue(dev); |
| 537 | /* Start TX queue */ |
| 538 | mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG |
| 539 | (port_num), 1); |
| 540 | } else { |
| 541 | netif_carrier_off(dev); |
| 542 | netif_stop_queue(dev); |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | /* |
| 547 | * If no real interrupt occured, exit. |
| 548 | * This can happen when using gigE interrupt coalescing mechanism. |
| 549 | */ |
| 550 | if ((eth_int_cause == 0x0) && (eth_int_cause_ext == 0x0)) |
| 551 | return IRQ_NONE; |
| 552 | |
| 553 | return IRQ_HANDLED; |
| 554 | } |
| 555 | |
| 556 | #ifdef MV643XX_COAL |
| 557 | |
| 558 | /* |
| 559 | * eth_port_set_rx_coal - Sets coalescing interrupt mechanism on RX path |
| 560 | * |
| 561 | * DESCRIPTION: |
| 562 | * This routine sets the RX coalescing interrupt mechanism parameter. |
| 563 | * This parameter is a timeout counter, that counts in 64 t_clk |
| 564 | * chunks ; that when timeout event occurs a maskable interrupt |
| 565 | * occurs. |
| 566 | * The parameter is calculated using the tClk of the MV-643xx chip |
| 567 | * , and the required delay of the interrupt in usec. |
| 568 | * |
| 569 | * INPUT: |
| 570 | * unsigned int eth_port_num Ethernet port number |
| 571 | * unsigned int t_clk t_clk of the MV-643xx chip in HZ units |
| 572 | * unsigned int delay Delay in usec |
| 573 | * |
| 574 | * OUTPUT: |
| 575 | * Interrupt coalescing mechanism value is set in MV-643xx chip. |
| 576 | * |
| 577 | * RETURN: |
| 578 | * The interrupt coalescing value set in the gigE port. |
| 579 | * |
| 580 | */ |
| 581 | static unsigned int eth_port_set_rx_coal(unsigned int eth_port_num, |
| 582 | unsigned int t_clk, unsigned int delay) |
| 583 | { |
| 584 | unsigned int coal = ((t_clk / 1000000) * delay) / 64; |
| 585 | |
| 586 | /* Set RX Coalescing mechanism */ |
| 587 | mv_write(MV643XX_ETH_SDMA_CONFIG_REG(eth_port_num), |
| 588 | ((coal & 0x3fff) << 8) | |
| 589 | (mv_read(MV643XX_ETH_SDMA_CONFIG_REG(eth_port_num)) |
| 590 | & 0xffc000ff)); |
| 591 | |
| 592 | return coal; |
| 593 | } |
| 594 | #endif |
| 595 | |
| 596 | /* |
| 597 | * eth_port_set_tx_coal - Sets coalescing interrupt mechanism on TX path |
| 598 | * |
| 599 | * DESCRIPTION: |
| 600 | * This routine sets the TX coalescing interrupt mechanism parameter. |
| 601 | * This parameter is a timeout counter, that counts in 64 t_clk |
| 602 | * chunks ; that when timeout event occurs a maskable interrupt |
| 603 | * occurs. |
| 604 | * The parameter is calculated using the t_cLK frequency of the |
| 605 | * MV-643xx chip and the required delay in the interrupt in uSec |
| 606 | * |
| 607 | * INPUT: |
| 608 | * unsigned int eth_port_num Ethernet port number |
| 609 | * unsigned int t_clk t_clk of the MV-643xx chip in HZ units |
| 610 | * unsigned int delay Delay in uSeconds |
| 611 | * |
| 612 | * OUTPUT: |
| 613 | * Interrupt coalescing mechanism value is set in MV-643xx chip. |
| 614 | * |
| 615 | * RETURN: |
| 616 | * The interrupt coalescing value set in the gigE port. |
| 617 | * |
| 618 | */ |
| 619 | static unsigned int eth_port_set_tx_coal(unsigned int eth_port_num, |
| 620 | unsigned int t_clk, unsigned int delay) |
| 621 | { |
| 622 | unsigned int coal; |
| 623 | coal = ((t_clk / 1000000) * delay) / 64; |
| 624 | /* Set TX Coalescing mechanism */ |
| 625 | mv_write(MV643XX_ETH_TX_FIFO_URGENT_THRESHOLD_REG(eth_port_num), |
| 626 | coal << 4); |
| 627 | return coal; |
| 628 | } |
| 629 | |
| 630 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | * ether_init_rx_desc_ring - Curve a Rx chain desc list and buffer in memory. |
| 632 | * |
| 633 | * DESCRIPTION: |
| 634 | * This function prepares a Rx chained list of descriptors and packet |
| 635 | * buffers in a form of a ring. The routine must be called after port |
| 636 | * initialization routine and before port start routine. |
| 637 | * The Ethernet SDMA engine uses CPU bus addresses to access the various |
| 638 | * devices in the system (i.e. DRAM). This function uses the ethernet |
| 639 | * struct 'virtual to physical' routine (set by the user) to set the ring |
| 640 | * with physical addresses. |
| 641 | * |
| 642 | * INPUT: |
| 643 | * struct mv643xx_private *mp Ethernet Port Control srtuct. |
| 644 | * |
| 645 | * OUTPUT: |
| 646 | * The routine updates the Ethernet port control struct with information |
| 647 | * regarding the Rx descriptors and buffers. |
| 648 | * |
| 649 | * RETURN: |
| 650 | * None. |
| 651 | */ |
| 652 | static void ether_init_rx_desc_ring(struct mv643xx_private *mp) |
| 653 | { |
| 654 | volatile struct eth_rx_desc *p_rx_desc; |
| 655 | int rx_desc_num = mp->rx_ring_size; |
| 656 | int i; |
| 657 | |
| 658 | /* initialize the next_desc_ptr links in the Rx descriptors ring */ |
| 659 | p_rx_desc = (struct eth_rx_desc *)mp->p_rx_desc_area; |
| 660 | for (i = 0; i < rx_desc_num; i++) { |
| 661 | p_rx_desc[i].next_desc_ptr = mp->rx_desc_dma + |
| 662 | ((i + 1) % rx_desc_num) * sizeof(struct eth_rx_desc); |
| 663 | } |
| 664 | |
| 665 | /* Save Rx desc pointer to driver struct. */ |
| 666 | mp->rx_curr_desc_q = 0; |
| 667 | mp->rx_used_desc_q = 0; |
| 668 | |
| 669 | mp->rx_desc_area_size = rx_desc_num * sizeof(struct eth_rx_desc); |
| 670 | |
| 671 | /* Add the queue to the list of RX queues of this port */ |
| 672 | mp->port_rx_queue_command |= 1; |
| 673 | } |
| 674 | |
| 675 | /* |
| 676 | * ether_init_tx_desc_ring - Curve a Tx chain desc list and buffer in memory. |
| 677 | * |
| 678 | * DESCRIPTION: |
| 679 | * This function prepares a Tx chained list of descriptors and packet |
| 680 | * buffers in a form of a ring. The routine must be called after port |
| 681 | * initialization routine and before port start routine. |
| 682 | * The Ethernet SDMA engine uses CPU bus addresses to access the various |
| 683 | * devices in the system (i.e. DRAM). This function uses the ethernet |
| 684 | * struct 'virtual to physical' routine (set by the user) to set the ring |
| 685 | * with physical addresses. |
| 686 | * |
| 687 | * INPUT: |
| 688 | * struct mv643xx_private *mp Ethernet Port Control srtuct. |
| 689 | * |
| 690 | * OUTPUT: |
| 691 | * The routine updates the Ethernet port control struct with information |
| 692 | * regarding the Tx descriptors and buffers. |
| 693 | * |
| 694 | * RETURN: |
| 695 | * None. |
| 696 | */ |
| 697 | static void ether_init_tx_desc_ring(struct mv643xx_private *mp) |
| 698 | { |
| 699 | int tx_desc_num = mp->tx_ring_size; |
| 700 | struct eth_tx_desc *p_tx_desc; |
| 701 | int i; |
| 702 | |
| 703 | /* Initialize the next_desc_ptr links in the Tx descriptors ring */ |
| 704 | p_tx_desc = (struct eth_tx_desc *)mp->p_tx_desc_area; |
| 705 | for (i = 0; i < tx_desc_num; i++) { |
| 706 | p_tx_desc[i].next_desc_ptr = mp->tx_desc_dma + |
| 707 | ((i + 1) % tx_desc_num) * sizeof(struct eth_tx_desc); |
| 708 | } |
| 709 | |
| 710 | mp->tx_curr_desc_q = 0; |
| 711 | mp->tx_used_desc_q = 0; |
| 712 | #ifdef MV643XX_CHECKSUM_OFFLOAD_TX |
| 713 | mp->tx_first_desc_q = 0; |
| 714 | #endif |
| 715 | |
| 716 | mp->tx_desc_area_size = tx_desc_num * sizeof(struct eth_tx_desc); |
| 717 | |
| 718 | /* Add the queue to the list of Tx queues of this port */ |
| 719 | mp->port_tx_queue_command |= 1; |
| 720 | } |
| 721 | |
Dale Farnsworth | ab4384a | 2006-01-16 16:59:21 -0700 | [diff] [blame] | 722 | /* |
| 723 | * mv643xx_eth_open |
| 724 | * |
| 725 | * This function is called when openning the network device. The function |
| 726 | * should initialize all the hardware, initialize cyclic Rx/Tx |
| 727 | * descriptors chain and buffers and allocate an IRQ to the network |
| 728 | * device. |
| 729 | * |
| 730 | * Input : a pointer to the network device structure |
| 731 | * |
| 732 | * Output : zero of success , nonzero if fails. |
| 733 | */ |
| 734 | |
| 735 | static int mv643xx_eth_open(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | { |
| 737 | struct mv643xx_private *mp = netdev_priv(dev); |
| 738 | unsigned int port_num = mp->port_num; |
| 739 | unsigned int size; |
Dale Farnsworth | ab4384a | 2006-01-16 16:59:21 -0700 | [diff] [blame] | 740 | int err; |
| 741 | |
| 742 | err = request_irq(dev->irq, mv643xx_eth_int_handler, |
| 743 | SA_SHIRQ | SA_SAMPLE_RANDOM, dev->name, dev); |
| 744 | if (err) { |
| 745 | printk(KERN_ERR "Can not assign IRQ number to MV643XX_eth%d\n", |
| 746 | port_num); |
| 747 | return -EAGAIN; |
| 748 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | |
| 750 | /* Stop RX Queues */ |
| 751 | mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num), 0x0000ff00); |
| 752 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | eth_port_init(mp); |
| 754 | |
| 755 | INIT_WORK(&mp->rx_task, (void (*)(void *))mv643xx_eth_rx_task, dev); |
| 756 | |
| 757 | memset(&mp->timeout, 0, sizeof(struct timer_list)); |
| 758 | mp->timeout.function = mv643xx_eth_rx_task_timer_wrapper; |
| 759 | mp->timeout.data = (unsigned long)dev; |
| 760 | |
| 761 | mp->rx_task_busy = 0; |
| 762 | mp->rx_timer_flag = 0; |
| 763 | |
| 764 | /* Allocate RX and TX skb rings */ |
| 765 | mp->rx_skb = kmalloc(sizeof(*mp->rx_skb) * mp->rx_ring_size, |
| 766 | GFP_KERNEL); |
| 767 | if (!mp->rx_skb) { |
| 768 | printk(KERN_ERR "%s: Cannot allocate Rx skb ring\n", dev->name); |
Dale Farnsworth | ab4384a | 2006-01-16 16:59:21 -0700 | [diff] [blame] | 769 | err = -ENOMEM; |
| 770 | goto out_free_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | } |
| 772 | mp->tx_skb = kmalloc(sizeof(*mp->tx_skb) * mp->tx_ring_size, |
| 773 | GFP_KERNEL); |
| 774 | if (!mp->tx_skb) { |
| 775 | printk(KERN_ERR "%s: Cannot allocate Tx skb ring\n", dev->name); |
Dale Farnsworth | ab4384a | 2006-01-16 16:59:21 -0700 | [diff] [blame] | 776 | err = -ENOMEM; |
| 777 | goto out_free_rx_skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | /* Allocate TX ring */ |
| 781 | mp->tx_ring_skbs = 0; |
| 782 | size = mp->tx_ring_size * sizeof(struct eth_tx_desc); |
| 783 | mp->tx_desc_area_size = size; |
| 784 | |
| 785 | if (mp->tx_sram_size) { |
| 786 | mp->p_tx_desc_area = ioremap(mp->tx_sram_addr, |
| 787 | mp->tx_sram_size); |
| 788 | mp->tx_desc_dma = mp->tx_sram_addr; |
| 789 | } else |
| 790 | mp->p_tx_desc_area = dma_alloc_coherent(NULL, size, |
| 791 | &mp->tx_desc_dma, |
| 792 | GFP_KERNEL); |
| 793 | |
| 794 | if (!mp->p_tx_desc_area) { |
| 795 | printk(KERN_ERR "%s: Cannot allocate Tx Ring (size %d bytes)\n", |
| 796 | dev->name, size); |
Dale Farnsworth | ab4384a | 2006-01-16 16:59:21 -0700 | [diff] [blame] | 797 | err = -ENOMEM; |
| 798 | goto out_free_tx_skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | } |
| 800 | BUG_ON((u32) mp->p_tx_desc_area & 0xf); /* check 16-byte alignment */ |
| 801 | memset((void *)mp->p_tx_desc_area, 0, mp->tx_desc_area_size); |
| 802 | |
| 803 | ether_init_tx_desc_ring(mp); |
| 804 | |
| 805 | /* Allocate RX ring */ |
| 806 | mp->rx_ring_skbs = 0; |
| 807 | size = mp->rx_ring_size * sizeof(struct eth_rx_desc); |
| 808 | mp->rx_desc_area_size = size; |
| 809 | |
| 810 | if (mp->rx_sram_size) { |
| 811 | mp->p_rx_desc_area = ioremap(mp->rx_sram_addr, |
| 812 | mp->rx_sram_size); |
| 813 | mp->rx_desc_dma = mp->rx_sram_addr; |
| 814 | } else |
| 815 | mp->p_rx_desc_area = dma_alloc_coherent(NULL, size, |
| 816 | &mp->rx_desc_dma, |
| 817 | GFP_KERNEL); |
| 818 | |
| 819 | if (!mp->p_rx_desc_area) { |
| 820 | printk(KERN_ERR "%s: Cannot allocate Rx ring (size %d bytes)\n", |
| 821 | dev->name, size); |
| 822 | printk(KERN_ERR "%s: Freeing previously allocated TX queues...", |
| 823 | dev->name); |
| 824 | if (mp->rx_sram_size) |
Dale Farnsworth | dd09b1d | 2006-01-16 16:53:15 -0700 | [diff] [blame] | 825 | iounmap(mp->p_tx_desc_area); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | else |
| 827 | dma_free_coherent(NULL, mp->tx_desc_area_size, |
| 828 | mp->p_tx_desc_area, mp->tx_desc_dma); |
Dale Farnsworth | ab4384a | 2006-01-16 16:59:21 -0700 | [diff] [blame] | 829 | err = -ENOMEM; |
| 830 | goto out_free_tx_skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | } |
| 832 | memset((void *)mp->p_rx_desc_area, 0, size); |
| 833 | |
| 834 | ether_init_rx_desc_ring(mp); |
| 835 | |
| 836 | mv643xx_eth_rx_task(dev); /* Fill RX ring with skb's */ |
| 837 | |
Dale Farnsworth | ed9b5d4 | 2006-01-27 01:06:38 -0700 | [diff] [blame] | 838 | eth_port_start(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | |
| 840 | /* Interrupt Coalescing */ |
| 841 | |
| 842 | #ifdef MV643XX_COAL |
| 843 | mp->rx_int_coal = |
| 844 | eth_port_set_rx_coal(port_num, 133000000, MV643XX_RX_COAL); |
| 845 | #endif |
| 846 | |
| 847 | mp->tx_int_coal = |
| 848 | eth_port_set_tx_coal(port_num, 133000000, MV643XX_TX_COAL); |
| 849 | |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 850 | /* Clear any pending ethernet port interrupts */ |
| 851 | mv_write(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num), 0); |
| 852 | mv_write(MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num), 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 854 | /* Unmask phy and link status changes interrupts */ |
| 855 | mv_write(MV643XX_ETH_INTERRUPT_EXTEND_MASK_REG(port_num), |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 856 | INT_UNMASK_ALL_EXT); |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 857 | |
| 858 | /* Unmask RX buffer and TX end interrupt */ |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 859 | mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), INT_UNMASK_ALL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | return 0; |
Dale Farnsworth | ab4384a | 2006-01-16 16:59:21 -0700 | [diff] [blame] | 861 | |
| 862 | out_free_tx_skb: |
| 863 | kfree(mp->tx_skb); |
| 864 | out_free_rx_skb: |
| 865 | kfree(mp->rx_skb); |
| 866 | out_free_irq: |
| 867 | free_irq(dev->irq, dev); |
| 868 | |
| 869 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | } |
| 871 | |
| 872 | static void mv643xx_eth_free_tx_rings(struct net_device *dev) |
| 873 | { |
| 874 | struct mv643xx_private *mp = netdev_priv(dev); |
| 875 | unsigned int port_num = mp->port_num; |
| 876 | unsigned int curr; |
Dale Farnsworth | 4476e0e4 | 2006-01-16 16:58:24 -0700 | [diff] [blame] | 877 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | |
| 879 | /* Stop Tx Queues */ |
| 880 | mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num), 0x0000ff00); |
| 881 | |
| 882 | /* Free outstanding skb's on TX rings */ |
| 883 | for (curr = 0; mp->tx_ring_skbs && curr < mp->tx_ring_size; curr++) { |
Dale Farnsworth | 4476e0e4 | 2006-01-16 16:58:24 -0700 | [diff] [blame] | 884 | skb = mp->tx_skb[curr]; |
| 885 | if (skb) { |
| 886 | mp->tx_ring_skbs -= skb_shinfo(skb)->nr_frags; |
| 887 | dev_kfree_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | mp->tx_ring_skbs--; |
| 889 | } |
| 890 | } |
| 891 | if (mp->tx_ring_skbs) |
| 892 | printk("%s: Error on Tx descriptor free - could not free %d" |
| 893 | " descriptors\n", dev->name, mp->tx_ring_skbs); |
| 894 | |
| 895 | /* Free TX ring */ |
| 896 | if (mp->tx_sram_size) |
| 897 | iounmap(mp->p_tx_desc_area); |
| 898 | else |
| 899 | dma_free_coherent(NULL, mp->tx_desc_area_size, |
| 900 | mp->p_tx_desc_area, mp->tx_desc_dma); |
| 901 | } |
| 902 | |
| 903 | static void mv643xx_eth_free_rx_rings(struct net_device *dev) |
| 904 | { |
| 905 | struct mv643xx_private *mp = netdev_priv(dev); |
| 906 | unsigned int port_num = mp->port_num; |
| 907 | int curr; |
| 908 | |
| 909 | /* Stop RX Queues */ |
| 910 | mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num), 0x0000ff00); |
| 911 | |
| 912 | /* Free preallocated skb's on RX rings */ |
| 913 | for (curr = 0; mp->rx_ring_skbs && curr < mp->rx_ring_size; curr++) { |
| 914 | if (mp->rx_skb[curr]) { |
| 915 | dev_kfree_skb(mp->rx_skb[curr]); |
| 916 | mp->rx_ring_skbs--; |
| 917 | } |
| 918 | } |
| 919 | |
| 920 | if (mp->rx_ring_skbs) |
| 921 | printk(KERN_ERR |
| 922 | "%s: Error in freeing Rx Ring. %d skb's still" |
| 923 | " stuck in RX Ring - ignoring them\n", dev->name, |
| 924 | mp->rx_ring_skbs); |
| 925 | /* Free RX ring */ |
| 926 | if (mp->rx_sram_size) |
| 927 | iounmap(mp->p_rx_desc_area); |
| 928 | else |
| 929 | dma_free_coherent(NULL, mp->rx_desc_area_size, |
| 930 | mp->p_rx_desc_area, mp->rx_desc_dma); |
| 931 | } |
| 932 | |
| 933 | /* |
| 934 | * mv643xx_eth_stop |
| 935 | * |
| 936 | * This function is used when closing the network device. |
| 937 | * It updates the hardware, |
| 938 | * release all memory that holds buffers and descriptors and release the IRQ. |
| 939 | * Input : a pointer to the device structure |
| 940 | * Output : zero if success , nonzero if fails |
| 941 | */ |
| 942 | |
Dale Farnsworth | ab4384a | 2006-01-16 16:59:21 -0700 | [diff] [blame] | 943 | static int mv643xx_eth_stop(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | { |
| 945 | struct mv643xx_private *mp = netdev_priv(dev); |
| 946 | unsigned int port_num = mp->port_num; |
| 947 | |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 948 | /* Mask all interrupts on ethernet port */ |
| 949 | mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), INT_MASK_ALL); |
| 950 | /* wait for previous write to complete */ |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 951 | mv_read(MV643XX_ETH_INTERRUPT_MASK_REG(port_num)); |
| 952 | |
| 953 | #ifdef MV643XX_NAPI |
| 954 | netif_poll_disable(dev); |
| 955 | #endif |
| 956 | netif_carrier_off(dev); |
| 957 | netif_stop_queue(dev); |
| 958 | |
| 959 | eth_port_reset(mp->port_num); |
| 960 | |
| 961 | mv643xx_eth_free_tx_rings(dev); |
| 962 | mv643xx_eth_free_rx_rings(dev); |
| 963 | |
| 964 | #ifdef MV643XX_NAPI |
| 965 | netif_poll_enable(dev); |
| 966 | #endif |
| 967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | free_irq(dev->irq, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | |
| 970 | return 0; |
| 971 | } |
| 972 | |
| 973 | #ifdef MV643XX_NAPI |
| 974 | static void mv643xx_tx(struct net_device *dev) |
| 975 | { |
| 976 | struct mv643xx_private *mp = netdev_priv(dev); |
| 977 | struct pkt_info pkt_info; |
| 978 | |
| 979 | while (eth_tx_return_desc(mp, &pkt_info) == ETH_OK) { |
Paolo Galtieri | cb415d3 | 2006-01-16 16:48:02 -0700 | [diff] [blame] | 980 | if (pkt_info.cmd_sts & ETH_TX_FIRST_DESC) |
| 981 | dma_unmap_single(NULL, pkt_info.buf_ptr, |
| 982 | pkt_info.byte_cnt, |
| 983 | DMA_TO_DEVICE); |
| 984 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | dma_unmap_page(NULL, pkt_info.buf_ptr, |
Paolo Galtieri | cb415d3 | 2006-01-16 16:48:02 -0700 | [diff] [blame] | 986 | pkt_info.byte_cnt, |
| 987 | DMA_TO_DEVICE); |
| 988 | |
| 989 | if (pkt_info.return_info) |
| 990 | dev_kfree_skb_irq(pkt_info.return_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | } |
| 992 | |
| 993 | if (netif_queue_stopped(dev) && |
| 994 | mp->tx_ring_size > mp->tx_ring_skbs + MAX_DESCS_PER_SKB) |
| 995 | netif_wake_queue(dev); |
| 996 | } |
| 997 | |
| 998 | /* |
| 999 | * mv643xx_poll |
| 1000 | * |
| 1001 | * This function is used in case of NAPI |
| 1002 | */ |
| 1003 | static int mv643xx_poll(struct net_device *dev, int *budget) |
| 1004 | { |
| 1005 | struct mv643xx_private *mp = netdev_priv(dev); |
| 1006 | int done = 1, orig_budget, work_done; |
| 1007 | unsigned int port_num = mp->port_num; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | |
| 1009 | #ifdef MV643XX_TX_FAST_REFILL |
| 1010 | if (++mp->tx_clean_threshold > 5) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | mv643xx_tx(dev); |
| 1012 | mp->tx_clean_threshold = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | } |
| 1014 | #endif |
| 1015 | |
| 1016 | if ((mv_read(MV643XX_ETH_RX_CURRENT_QUEUE_DESC_PTR_0(port_num))) |
| 1017 | != (u32) mp->rx_used_desc_q) { |
| 1018 | orig_budget = *budget; |
| 1019 | if (orig_budget > dev->quota) |
| 1020 | orig_budget = dev->quota; |
| 1021 | work_done = mv643xx_eth_receive_queue(dev, orig_budget); |
| 1022 | mp->rx_task.func(dev); |
| 1023 | *budget -= work_done; |
| 1024 | dev->quota -= work_done; |
| 1025 | if (work_done >= orig_budget) |
| 1026 | done = 0; |
| 1027 | } |
| 1028 | |
| 1029 | if (done) { |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 1030 | netif_rx_complete(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | mv_write(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num), 0); |
| 1032 | mv_write(MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num), 0); |
| 1033 | mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 1034 | INT_UNMASK_ALL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | } |
| 1036 | |
| 1037 | return done ? 0 : 1; |
| 1038 | } |
| 1039 | #endif |
| 1040 | |
Paul Janzen | f7ea333 | 2006-01-16 16:52:13 -0700 | [diff] [blame] | 1041 | /* Hardware can't handle unaligned fragments smaller than 9 bytes. |
| 1042 | * This helper function detects that case. |
| 1043 | */ |
| 1044 | |
| 1045 | static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb) |
| 1046 | { |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 1047 | unsigned int frag; |
| 1048 | skb_frag_t *fragp; |
Paul Janzen | f7ea333 | 2006-01-16 16:52:13 -0700 | [diff] [blame] | 1049 | |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 1050 | for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) { |
| 1051 | fragp = &skb_shinfo(skb)->frags[frag]; |
| 1052 | if (fragp->size <= 8 && fragp->page_offset & 0x7) |
| 1053 | return 1; |
| 1054 | } |
| 1055 | return 0; |
Paul Janzen | f7ea333 | 2006-01-16 16:52:13 -0700 | [diff] [blame] | 1056 | } |
| 1057 | |
| 1058 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | /* |
| 1060 | * mv643xx_eth_start_xmit |
| 1061 | * |
| 1062 | * This function is queues a packet in the Tx descriptor for |
| 1063 | * required port. |
| 1064 | * |
| 1065 | * Input : skb - a pointer to socket buffer |
| 1066 | * dev - a pointer to the required port |
| 1067 | * |
| 1068 | * Output : zero upon success |
| 1069 | */ |
| 1070 | static int mv643xx_eth_start_xmit(struct sk_buff *skb, struct net_device *dev) |
| 1071 | { |
| 1072 | struct mv643xx_private *mp = netdev_priv(dev); |
| 1073 | struct net_device_stats *stats = &mp->stats; |
| 1074 | ETH_FUNC_RET_STATUS status; |
| 1075 | unsigned long flags; |
| 1076 | struct pkt_info pkt_info; |
| 1077 | |
| 1078 | if (netif_queue_stopped(dev)) { |
| 1079 | printk(KERN_ERR |
| 1080 | "%s: Tried sending packet when interface is stopped\n", |
| 1081 | dev->name); |
| 1082 | return 1; |
| 1083 | } |
| 1084 | |
| 1085 | /* This is a hard error, log it. */ |
| 1086 | if ((mp->tx_ring_size - mp->tx_ring_skbs) <= |
| 1087 | (skb_shinfo(skb)->nr_frags + 1)) { |
| 1088 | netif_stop_queue(dev); |
| 1089 | printk(KERN_ERR |
| 1090 | "%s: Bug in mv643xx_eth - Trying to transmit when" |
| 1091 | " queue full !\n", dev->name); |
| 1092 | return 1; |
| 1093 | } |
| 1094 | |
| 1095 | /* Paranoid check - this shouldn't happen */ |
| 1096 | if (skb == NULL) { |
| 1097 | stats->tx_dropped++; |
| 1098 | printk(KERN_ERR "mv64320_eth paranoid check failed\n"); |
| 1099 | return 1; |
| 1100 | } |
| 1101 | |
Paul Janzen | f7ea333 | 2006-01-16 16:52:13 -0700 | [diff] [blame] | 1102 | #ifdef MV643XX_CHECKSUM_OFFLOAD_TX |
| 1103 | if (has_tiny_unaligned_frags(skb)) { |
| 1104 | if ((skb_linearize(skb, GFP_ATOMIC) != 0)) { |
| 1105 | stats->tx_dropped++; |
| 1106 | printk(KERN_DEBUG "%s: failed to linearize tiny " |
| 1107 | "unaligned fragment\n", dev->name); |
| 1108 | return 1; |
| 1109 | } |
| 1110 | } |
| 1111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | spin_lock_irqsave(&mp->lock, flags); |
| 1113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | if (!skb_shinfo(skb)->nr_frags) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | if (skb->ip_summed != CHECKSUM_HW) { |
Dale Farnsworth | 2600636 | 2005-08-22 15:53:29 -0700 | [diff] [blame] | 1116 | /* Errata BTS #50, IHL must be 5 if no HW checksum */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | pkt_info.cmd_sts = ETH_TX_ENABLE_INTERRUPT | |
Dale Farnsworth | 2600636 | 2005-08-22 15:53:29 -0700 | [diff] [blame] | 1118 | ETH_TX_FIRST_DESC | |
| 1119 | ETH_TX_LAST_DESC | |
| 1120 | 5 << ETH_TX_IHL_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | pkt_info.l4i_chk = 0; |
| 1122 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | pkt_info.cmd_sts = ETH_TX_ENABLE_INTERRUPT | |
Dale Farnsworth | 2600636 | 2005-08-22 15:53:29 -0700 | [diff] [blame] | 1124 | ETH_TX_FIRST_DESC | |
| 1125 | ETH_TX_LAST_DESC | |
| 1126 | ETH_GEN_TCP_UDP_CHECKSUM | |
| 1127 | ETH_GEN_IP_V_4_CHECKSUM | |
| 1128 | skb->nh.iph->ihl << ETH_TX_IHL_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | /* CPU already calculated pseudo header checksum. */ |
Wolfram Joost | 6389057 | 2006-01-16 16:57:41 -0700 | [diff] [blame] | 1130 | if ((skb->protocol == ETH_P_IP) && |
| 1131 | (skb->nh.iph->protocol == IPPROTO_UDP) ) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | pkt_info.cmd_sts |= ETH_UDP_FRAME; |
| 1133 | pkt_info.l4i_chk = skb->h.uh->check; |
Wolfram Joost | 6389057 | 2006-01-16 16:57:41 -0700 | [diff] [blame] | 1134 | } else if ((skb->protocol == ETH_P_IP) && |
| 1135 | (skb->nh.iph->protocol == IPPROTO_TCP)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | pkt_info.l4i_chk = skb->h.th->check; |
| 1137 | else { |
| 1138 | printk(KERN_ERR |
Wolfram Joost | 6389057 | 2006-01-16 16:57:41 -0700 | [diff] [blame] | 1139 | "%s: chksum proto != IPv4 TCP or UDP\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | dev->name); |
| 1141 | spin_unlock_irqrestore(&mp->lock, flags); |
| 1142 | return 1; |
| 1143 | } |
| 1144 | } |
| 1145 | pkt_info.byte_cnt = skb->len; |
| 1146 | pkt_info.buf_ptr = dma_map_single(NULL, skb->data, skb->len, |
| 1147 | DMA_TO_DEVICE); |
| 1148 | pkt_info.return_info = skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | status = eth_port_send(mp, &pkt_info); |
| 1150 | if ((status == ETH_ERROR) || (status == ETH_QUEUE_FULL)) |
| 1151 | printk(KERN_ERR "%s: Error on transmitting packet\n", |
| 1152 | dev->name); |
| 1153 | stats->tx_bytes += pkt_info.byte_cnt; |
| 1154 | } else { |
| 1155 | unsigned int frag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | /* first frag which is skb header */ |
| 1158 | pkt_info.byte_cnt = skb_headlen(skb); |
| 1159 | pkt_info.buf_ptr = dma_map_single(NULL, skb->data, |
| 1160 | skb_headlen(skb), |
| 1161 | DMA_TO_DEVICE); |
| 1162 | pkt_info.l4i_chk = 0; |
| 1163 | pkt_info.return_info = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | |
Dale Farnsworth | 2600636 | 2005-08-22 15:53:29 -0700 | [diff] [blame] | 1165 | if (skb->ip_summed != CHECKSUM_HW) |
| 1166 | /* Errata BTS #50, IHL must be 5 if no HW checksum */ |
| 1167 | pkt_info.cmd_sts = ETH_TX_FIRST_DESC | |
| 1168 | 5 << ETH_TX_IHL_SHIFT; |
| 1169 | else { |
| 1170 | pkt_info.cmd_sts = ETH_TX_FIRST_DESC | |
| 1171 | ETH_GEN_TCP_UDP_CHECKSUM | |
| 1172 | ETH_GEN_IP_V_4_CHECKSUM | |
| 1173 | skb->nh.iph->ihl << ETH_TX_IHL_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | /* CPU already calculated pseudo header checksum. */ |
Wolfram Joost | 6389057 | 2006-01-16 16:57:41 -0700 | [diff] [blame] | 1175 | if ((skb->protocol == ETH_P_IP) && |
| 1176 | (skb->nh.iph->protocol == IPPROTO_UDP)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | pkt_info.cmd_sts |= ETH_UDP_FRAME; |
| 1178 | pkt_info.l4i_chk = skb->h.uh->check; |
Wolfram Joost | 6389057 | 2006-01-16 16:57:41 -0700 | [diff] [blame] | 1179 | } else if ((skb->protocol == ETH_P_IP) && |
| 1180 | (skb->nh.iph->protocol == IPPROTO_TCP)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | pkt_info.l4i_chk = skb->h.th->check; |
| 1182 | else { |
| 1183 | printk(KERN_ERR |
Wolfram Joost | 6389057 | 2006-01-16 16:57:41 -0700 | [diff] [blame] | 1184 | "%s: chksum proto != IPv4 TCP or UDP\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | dev->name); |
| 1186 | spin_unlock_irqrestore(&mp->lock, flags); |
| 1187 | return 1; |
| 1188 | } |
| 1189 | } |
| 1190 | |
| 1191 | status = eth_port_send(mp, &pkt_info); |
| 1192 | if (status != ETH_OK) { |
| 1193 | if ((status == ETH_ERROR)) |
| 1194 | printk(KERN_ERR |
| 1195 | "%s: Error on transmitting packet\n", |
| 1196 | dev->name); |
| 1197 | if (status == ETH_QUEUE_FULL) |
| 1198 | printk("Error on Queue Full \n"); |
| 1199 | if (status == ETH_QUEUE_LAST_RESOURCE) |
| 1200 | printk("Tx resource error \n"); |
| 1201 | } |
| 1202 | stats->tx_bytes += pkt_info.byte_cnt; |
| 1203 | |
| 1204 | /* Check for the remaining frags */ |
| 1205 | for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) { |
| 1206 | skb_frag_t *this_frag = &skb_shinfo(skb)->frags[frag]; |
| 1207 | pkt_info.l4i_chk = 0x0000; |
| 1208 | pkt_info.cmd_sts = 0x00000000; |
| 1209 | |
| 1210 | /* Last Frag enables interrupt and frees the skb */ |
| 1211 | if (frag == (skb_shinfo(skb)->nr_frags - 1)) { |
| 1212 | pkt_info.cmd_sts |= ETH_TX_ENABLE_INTERRUPT | |
| 1213 | ETH_TX_LAST_DESC; |
| 1214 | pkt_info.return_info = skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | } else { |
| 1216 | pkt_info.return_info = 0; |
| 1217 | } |
| 1218 | pkt_info.l4i_chk = 0; |
| 1219 | pkt_info.byte_cnt = this_frag->size; |
| 1220 | |
| 1221 | pkt_info.buf_ptr = dma_map_page(NULL, this_frag->page, |
| 1222 | this_frag->page_offset, |
| 1223 | this_frag->size, |
| 1224 | DMA_TO_DEVICE); |
| 1225 | |
| 1226 | status = eth_port_send(mp, &pkt_info); |
| 1227 | |
| 1228 | if (status != ETH_OK) { |
| 1229 | if ((status == ETH_ERROR)) |
| 1230 | printk(KERN_ERR "%s: Error on " |
| 1231 | "transmitting packet\n", |
| 1232 | dev->name); |
| 1233 | |
| 1234 | if (status == ETH_QUEUE_LAST_RESOURCE) |
| 1235 | printk("Tx resource error \n"); |
| 1236 | |
| 1237 | if (status == ETH_QUEUE_FULL) |
| 1238 | printk("Queue is full \n"); |
| 1239 | } |
| 1240 | stats->tx_bytes += pkt_info.byte_cnt; |
| 1241 | } |
| 1242 | } |
| 1243 | #else |
Paul Janzen | f7ea333 | 2006-01-16 16:52:13 -0700 | [diff] [blame] | 1244 | spin_lock_irqsave(&mp->lock, flags); |
| 1245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | pkt_info.cmd_sts = ETH_TX_ENABLE_INTERRUPT | ETH_TX_FIRST_DESC | |
| 1247 | ETH_TX_LAST_DESC; |
| 1248 | pkt_info.l4i_chk = 0; |
| 1249 | pkt_info.byte_cnt = skb->len; |
| 1250 | pkt_info.buf_ptr = dma_map_single(NULL, skb->data, skb->len, |
| 1251 | DMA_TO_DEVICE); |
| 1252 | pkt_info.return_info = skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | status = eth_port_send(mp, &pkt_info); |
| 1254 | if ((status == ETH_ERROR) || (status == ETH_QUEUE_FULL)) |
| 1255 | printk(KERN_ERR "%s: Error on transmitting packet\n", |
| 1256 | dev->name); |
| 1257 | stats->tx_bytes += pkt_info.byte_cnt; |
| 1258 | #endif |
| 1259 | |
| 1260 | /* Check if TX queue can handle another skb. If not, then |
| 1261 | * signal higher layers to stop requesting TX |
| 1262 | */ |
| 1263 | if (mp->tx_ring_size <= (mp->tx_ring_skbs + MAX_DESCS_PER_SKB)) |
| 1264 | /* |
| 1265 | * Stop getting skb's from upper layers. |
| 1266 | * Getting skb's from upper layers will be enabled again after |
| 1267 | * packets are released. |
| 1268 | */ |
| 1269 | netif_stop_queue(dev); |
| 1270 | |
| 1271 | /* Update statistics and start of transmittion time */ |
| 1272 | stats->tx_packets++; |
| 1273 | dev->trans_start = jiffies; |
| 1274 | |
| 1275 | spin_unlock_irqrestore(&mp->lock, flags); |
| 1276 | |
| 1277 | return 0; /* success */ |
| 1278 | } |
| 1279 | |
| 1280 | /* |
| 1281 | * mv643xx_eth_get_stats |
| 1282 | * |
| 1283 | * Returns a pointer to the interface statistics. |
| 1284 | * |
| 1285 | * Input : dev - a pointer to the required interface |
| 1286 | * |
| 1287 | * Output : a pointer to the interface's statistics |
| 1288 | */ |
| 1289 | |
| 1290 | static struct net_device_stats *mv643xx_eth_get_stats(struct net_device *dev) |
| 1291 | { |
| 1292 | struct mv643xx_private *mp = netdev_priv(dev); |
| 1293 | |
| 1294 | return &mp->stats; |
| 1295 | } |
| 1296 | |
Dale Farnsworth | 63c9e54 | 2005-09-02 13:49:10 -0700 | [diff] [blame] | 1297 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Dale Farnsworth | 63c9e54 | 2005-09-02 13:49:10 -0700 | [diff] [blame] | 1298 | static void mv643xx_netpoll(struct net_device *netdev) |
| 1299 | { |
| 1300 | struct mv643xx_private *mp = netdev_priv(netdev); |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 1301 | int port_num = mp->port_num; |
Dale Farnsworth | 63c9e54 | 2005-09-02 13:49:10 -0700 | [diff] [blame] | 1302 | |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 1303 | mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), INT_MASK_ALL); |
| 1304 | /* wait for previous write to complete */ |
| 1305 | mv_read(MV643XX_ETH_INTERRUPT_MASK_REG(port_num)); |
| 1306 | |
Dale Farnsworth | 63c9e54 | 2005-09-02 13:49:10 -0700 | [diff] [blame] | 1307 | mv643xx_eth_int_handler(netdev->irq, netdev, NULL); |
Dale Farnsworth | c2e5b35 | 2006-01-16 17:00:24 -0700 | [diff] [blame] | 1308 | |
| 1309 | mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), INT_UNMASK_ALL); |
Dale Farnsworth | 63c9e54 | 2005-09-02 13:49:10 -0700 | [diff] [blame] | 1310 | } |
| 1311 | #endif |
| 1312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | /*/ |
| 1314 | * mv643xx_eth_probe |
| 1315 | * |
| 1316 | * First function called after registering the network device. |
| 1317 | * It's purpose is to initialize the device as an ethernet device, |
| 1318 | * fill the ethernet device structure with pointers * to functions, |
| 1319 | * and set the MAC address of the interface |
| 1320 | * |
| 1321 | * Input : struct device * |
| 1322 | * Output : -ENOMEM if failed , 0 if success |
| 1323 | */ |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1324 | static int mv643xx_eth_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | struct mv643xx_eth_platform_data *pd; |
| 1327 | int port_num = pdev->id; |
| 1328 | struct mv643xx_private *mp; |
| 1329 | struct net_device *dev; |
| 1330 | u8 *p; |
| 1331 | struct resource *res; |
| 1332 | int err; |
| 1333 | |
| 1334 | dev = alloc_etherdev(sizeof(struct mv643xx_private)); |
| 1335 | if (!dev) |
| 1336 | return -ENOMEM; |
| 1337 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1338 | platform_set_drvdata(pdev, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | |
| 1340 | mp = netdev_priv(dev); |
| 1341 | |
| 1342 | res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
| 1343 | BUG_ON(!res); |
| 1344 | dev->irq = res->start; |
| 1345 | |
| 1346 | mp->port_num = port_num; |
| 1347 | |
| 1348 | dev->open = mv643xx_eth_open; |
| 1349 | dev->stop = mv643xx_eth_stop; |
| 1350 | dev->hard_start_xmit = mv643xx_eth_start_xmit; |
| 1351 | dev->get_stats = mv643xx_eth_get_stats; |
| 1352 | dev->set_mac_address = mv643xx_eth_set_mac_address; |
| 1353 | dev->set_multicast_list = mv643xx_eth_set_rx_mode; |
| 1354 | |
| 1355 | /* No need to Tx Timeout */ |
| 1356 | dev->tx_timeout = mv643xx_eth_tx_timeout; |
| 1357 | #ifdef MV643XX_NAPI |
| 1358 | dev->poll = mv643xx_poll; |
| 1359 | dev->weight = 64; |
| 1360 | #endif |
| 1361 | |
Dale Farnsworth | 63c9e54 | 2005-09-02 13:49:10 -0700 | [diff] [blame] | 1362 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1363 | dev->poll_controller = mv643xx_netpoll; |
| 1364 | #endif |
| 1365 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | dev->watchdog_timeo = 2 * HZ; |
| 1367 | dev->tx_queue_len = mp->tx_ring_size; |
| 1368 | dev->base_addr = 0; |
| 1369 | dev->change_mtu = mv643xx_eth_change_mtu; |
| 1370 | SET_ETHTOOL_OPS(dev, &mv643xx_ethtool_ops); |
| 1371 | |
| 1372 | #ifdef MV643XX_CHECKSUM_OFFLOAD_TX |
| 1373 | #ifdef MAX_SKB_FRAGS |
| 1374 | /* |
| 1375 | * Zero copy can only work if we use Discovery II memory. Else, we will |
| 1376 | * have to map the buffers to ISA memory which is only 16 MB |
| 1377 | */ |
Wolfram Joost | 6389057 | 2006-01-16 16:57:41 -0700 | [diff] [blame] | 1378 | dev->features = NETIF_F_SG | NETIF_F_IP_CSUM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | #endif |
| 1380 | #endif |
| 1381 | |
| 1382 | /* Configure the timeout task */ |
| 1383 | INIT_WORK(&mp->tx_timeout_task, |
| 1384 | (void (*)(void *))mv643xx_eth_tx_timeout_task, dev); |
| 1385 | |
| 1386 | spin_lock_init(&mp->lock); |
| 1387 | |
| 1388 | /* set default config values */ |
| 1389 | eth_port_uc_addr_get(dev, dev->dev_addr); |
| 1390 | mp->port_config = MV643XX_ETH_PORT_CONFIG_DEFAULT_VALUE; |
| 1391 | mp->port_config_extend = MV643XX_ETH_PORT_CONFIG_EXTEND_DEFAULT_VALUE; |
| 1392 | mp->port_sdma_config = MV643XX_ETH_PORT_SDMA_CONFIG_DEFAULT_VALUE; |
| 1393 | mp->port_serial_control = MV643XX_ETH_PORT_SERIAL_CONTROL_DEFAULT_VALUE; |
| 1394 | mp->rx_ring_size = MV643XX_ETH_PORT_DEFAULT_RECEIVE_QUEUE_SIZE; |
| 1395 | mp->tx_ring_size = MV643XX_ETH_PORT_DEFAULT_TRANSMIT_QUEUE_SIZE; |
| 1396 | |
| 1397 | pd = pdev->dev.platform_data; |
| 1398 | if (pd) { |
| 1399 | if (pd->mac_addr != NULL) |
| 1400 | memcpy(dev->dev_addr, pd->mac_addr, 6); |
| 1401 | |
| 1402 | if (pd->phy_addr || pd->force_phy_addr) |
| 1403 | ethernet_phy_set(port_num, pd->phy_addr); |
| 1404 | |
| 1405 | if (pd->port_config || pd->force_port_config) |
| 1406 | mp->port_config = pd->port_config; |
| 1407 | |
| 1408 | if (pd->port_config_extend || pd->force_port_config_extend) |
| 1409 | mp->port_config_extend = pd->port_config_extend; |
| 1410 | |
| 1411 | if (pd->port_sdma_config || pd->force_port_sdma_config) |
| 1412 | mp->port_sdma_config = pd->port_sdma_config; |
| 1413 | |
| 1414 | if (pd->port_serial_control || pd->force_port_serial_control) |
| 1415 | mp->port_serial_control = pd->port_serial_control; |
| 1416 | |
| 1417 | if (pd->rx_queue_size) |
| 1418 | mp->rx_ring_size = pd->rx_queue_size; |
| 1419 | |
| 1420 | if (pd->tx_queue_size) |
| 1421 | mp->tx_ring_size = pd->tx_queue_size; |
| 1422 | |
| 1423 | if (pd->tx_sram_size) { |
| 1424 | mp->tx_sram_size = pd->tx_sram_size; |
| 1425 | mp->tx_sram_addr = pd->tx_sram_addr; |
| 1426 | } |
| 1427 | |
| 1428 | if (pd->rx_sram_size) { |
| 1429 | mp->rx_sram_size = pd->rx_sram_size; |
| 1430 | mp->rx_sram_addr = pd->rx_sram_addr; |
| 1431 | } |
| 1432 | } |
| 1433 | |
| 1434 | err = ethernet_phy_detect(port_num); |
| 1435 | if (err) { |
| 1436 | pr_debug("MV643xx ethernet port %d: " |
| 1437 | "No PHY detected at addr %d\n", |
| 1438 | port_num, ethernet_phy_get(port_num)); |
| 1439 | return err; |
| 1440 | } |
| 1441 | |
| 1442 | err = register_netdev(dev); |
| 1443 | if (err) |
| 1444 | goto out; |
| 1445 | |
| 1446 | p = dev->dev_addr; |
| 1447 | printk(KERN_NOTICE |
| 1448 | "%s: port %d with MAC address %02x:%02x:%02x:%02x:%02x:%02x\n", |
| 1449 | dev->name, port_num, p[0], p[1], p[2], p[3], p[4], p[5]); |
| 1450 | |
| 1451 | if (dev->features & NETIF_F_SG) |
| 1452 | printk(KERN_NOTICE "%s: Scatter Gather Enabled\n", dev->name); |
| 1453 | |
| 1454 | if (dev->features & NETIF_F_IP_CSUM) |
| 1455 | printk(KERN_NOTICE "%s: TX TCP/IP Checksumming Supported\n", |
| 1456 | dev->name); |
| 1457 | |
| 1458 | #ifdef MV643XX_CHECKSUM_OFFLOAD_TX |
| 1459 | printk(KERN_NOTICE "%s: RX TCP/UDP Checksum Offload ON \n", dev->name); |
| 1460 | #endif |
| 1461 | |
| 1462 | #ifdef MV643XX_COAL |
| 1463 | printk(KERN_NOTICE "%s: TX and RX Interrupt Coalescing ON \n", |
| 1464 | dev->name); |
| 1465 | #endif |
| 1466 | |
| 1467 | #ifdef MV643XX_NAPI |
| 1468 | printk(KERN_NOTICE "%s: RX NAPI Enabled \n", dev->name); |
| 1469 | #endif |
| 1470 | |
Nicolas DET | b152987 | 2005-10-28 17:46:30 -0700 | [diff] [blame] | 1471 | if (mp->tx_sram_size > 0) |
| 1472 | printk(KERN_NOTICE "%s: Using SRAM\n", dev->name); |
| 1473 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1474 | return 0; |
| 1475 | |
| 1476 | out: |
| 1477 | free_netdev(dev); |
| 1478 | |
| 1479 | return err; |
| 1480 | } |
| 1481 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1482 | static int mv643xx_eth_remove(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1484 | struct net_device *dev = platform_get_drvdata(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | |
| 1486 | unregister_netdev(dev); |
| 1487 | flush_scheduled_work(); |
| 1488 | |
| 1489 | free_netdev(dev); |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1490 | platform_set_drvdata(pdev, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | return 0; |
| 1492 | } |
| 1493 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1494 | static int mv643xx_eth_shared_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | struct resource *res; |
| 1497 | |
| 1498 | printk(KERN_NOTICE "MV-643xx 10/100/1000 Ethernet Driver\n"); |
| 1499 | |
| 1500 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1501 | if (res == NULL) |
| 1502 | return -ENODEV; |
| 1503 | |
| 1504 | mv643xx_eth_shared_base = ioremap(res->start, |
| 1505 | MV643XX_ETH_SHARED_REGS_SIZE); |
| 1506 | if (mv643xx_eth_shared_base == NULL) |
| 1507 | return -ENOMEM; |
| 1508 | |
| 1509 | return 0; |
| 1510 | |
| 1511 | } |
| 1512 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1513 | static int mv643xx_eth_shared_remove(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | { |
| 1515 | iounmap(mv643xx_eth_shared_base); |
| 1516 | mv643xx_eth_shared_base = NULL; |
| 1517 | |
| 1518 | return 0; |
| 1519 | } |
| 1520 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1521 | static struct platform_driver mv643xx_eth_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | .probe = mv643xx_eth_probe, |
| 1523 | .remove = mv643xx_eth_remove, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1524 | .driver = { |
| 1525 | .name = MV643XX_ETH_NAME, |
| 1526 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | }; |
| 1528 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1529 | static struct platform_driver mv643xx_eth_shared_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | .probe = mv643xx_eth_shared_probe, |
| 1531 | .remove = mv643xx_eth_shared_remove, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1532 | .driver = { |
| 1533 | .name = MV643XX_ETH_SHARED_NAME, |
| 1534 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1535 | }; |
| 1536 | |
| 1537 | /* |
| 1538 | * mv643xx_init_module |
| 1539 | * |
| 1540 | * Registers the network drivers into the Linux kernel |
| 1541 | * |
| 1542 | * Input : N/A |
| 1543 | * |
| 1544 | * Output : N/A |
| 1545 | */ |
| 1546 | static int __init mv643xx_init_module(void) |
| 1547 | { |
| 1548 | int rc; |
| 1549 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1550 | rc = platform_driver_register(&mv643xx_eth_shared_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | if (!rc) { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1552 | rc = platform_driver_register(&mv643xx_eth_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | if (rc) |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1554 | platform_driver_unregister(&mv643xx_eth_shared_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | } |
| 1556 | return rc; |
| 1557 | } |
| 1558 | |
| 1559 | /* |
| 1560 | * mv643xx_cleanup_module |
| 1561 | * |
| 1562 | * Registers the network drivers into the Linux kernel |
| 1563 | * |
| 1564 | * Input : N/A |
| 1565 | * |
| 1566 | * Output : N/A |
| 1567 | */ |
| 1568 | static void __exit mv643xx_cleanup_module(void) |
| 1569 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1570 | platform_driver_unregister(&mv643xx_eth_driver); |
| 1571 | platform_driver_unregister(&mv643xx_eth_shared_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | } |
| 1573 | |
| 1574 | module_init(mv643xx_init_module); |
| 1575 | module_exit(mv643xx_cleanup_module); |
| 1576 | |
| 1577 | MODULE_LICENSE("GPL"); |
| 1578 | MODULE_AUTHOR( "Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, Manish Lachwani" |
| 1579 | " and Dale Farnsworth"); |
| 1580 | MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX"); |
| 1581 | |
| 1582 | /* |
| 1583 | * The second part is the low level driver of the gigE ethernet ports. |
| 1584 | */ |
| 1585 | |
| 1586 | /* |
| 1587 | * Marvell's Gigabit Ethernet controller low level driver |
| 1588 | * |
| 1589 | * DESCRIPTION: |
| 1590 | * This file introduce low level API to Marvell's Gigabit Ethernet |
| 1591 | * controller. This Gigabit Ethernet Controller driver API controls |
| 1592 | * 1) Operations (i.e. port init, start, reset etc'). |
| 1593 | * 2) Data flow (i.e. port send, receive etc'). |
| 1594 | * Each Gigabit Ethernet port is controlled via |
| 1595 | * struct mv643xx_private. |
| 1596 | * This struct includes user configuration information as well as |
| 1597 | * driver internal data needed for its operations. |
| 1598 | * |
| 1599 | * Supported Features: |
| 1600 | * - This low level driver is OS independent. Allocating memory for |
| 1601 | * the descriptor rings and buffers are not within the scope of |
| 1602 | * this driver. |
| 1603 | * - The user is free from Rx/Tx queue managing. |
| 1604 | * - This low level driver introduce functionality API that enable |
| 1605 | * the to operate Marvell's Gigabit Ethernet Controller in a |
| 1606 | * convenient way. |
| 1607 | * - Simple Gigabit Ethernet port operation API. |
| 1608 | * - Simple Gigabit Ethernet port data flow API. |
| 1609 | * - Data flow and operation API support per queue functionality. |
| 1610 | * - Support cached descriptors for better performance. |
| 1611 | * - Enable access to all four DRAM banks and internal SRAM memory |
| 1612 | * spaces. |
| 1613 | * - PHY access and control API. |
| 1614 | * - Port control register configuration API. |
| 1615 | * - Full control over Unicast and Multicast MAC configurations. |
| 1616 | * |
| 1617 | * Operation flow: |
| 1618 | * |
| 1619 | * Initialization phase |
| 1620 | * This phase complete the initialization of the the |
| 1621 | * mv643xx_private struct. |
| 1622 | * User information regarding port configuration has to be set |
| 1623 | * prior to calling the port initialization routine. |
| 1624 | * |
| 1625 | * In this phase any port Tx/Rx activity is halted, MIB counters |
| 1626 | * are cleared, PHY address is set according to user parameter and |
| 1627 | * access to DRAM and internal SRAM memory spaces. |
| 1628 | * |
| 1629 | * Driver ring initialization |
| 1630 | * Allocating memory for the descriptor rings and buffers is not |
| 1631 | * within the scope of this driver. Thus, the user is required to |
| 1632 | * allocate memory for the descriptors ring and buffers. Those |
| 1633 | * memory parameters are used by the Rx and Tx ring initialization |
| 1634 | * routines in order to curve the descriptor linked list in a form |
| 1635 | * of a ring. |
| 1636 | * Note: Pay special attention to alignment issues when using |
| 1637 | * cached descriptors/buffers. In this phase the driver store |
| 1638 | * information in the mv643xx_private struct regarding each queue |
| 1639 | * ring. |
| 1640 | * |
| 1641 | * Driver start |
| 1642 | * This phase prepares the Ethernet port for Rx and Tx activity. |
| 1643 | * It uses the information stored in the mv643xx_private struct to |
| 1644 | * initialize the various port registers. |
| 1645 | * |
| 1646 | * Data flow: |
| 1647 | * All packet references to/from the driver are done using |
| 1648 | * struct pkt_info. |
| 1649 | * This struct is a unified struct used with Rx and Tx operations. |
| 1650 | * This way the user is not required to be familiar with neither |
| 1651 | * Tx nor Rx descriptors structures. |
| 1652 | * The driver's descriptors rings are management by indexes. |
| 1653 | * Those indexes controls the ring resources and used to indicate |
| 1654 | * a SW resource error: |
| 1655 | * 'current' |
| 1656 | * This index points to the current available resource for use. For |
| 1657 | * example in Rx process this index will point to the descriptor |
| 1658 | * that will be passed to the user upon calling the receive |
| 1659 | * routine. In Tx process, this index will point to the descriptor |
| 1660 | * that will be assigned with the user packet info and transmitted. |
| 1661 | * 'used' |
| 1662 | * This index points to the descriptor that need to restore its |
| 1663 | * resources. For example in Rx process, using the Rx buffer return |
| 1664 | * API will attach the buffer returned in packet info to the |
| 1665 | * descriptor pointed by 'used'. In Tx process, using the Tx |
| 1666 | * descriptor return will merely return the user packet info with |
| 1667 | * the command status of the transmitted buffer pointed by the |
| 1668 | * 'used' index. Nevertheless, it is essential to use this routine |
| 1669 | * to update the 'used' index. |
| 1670 | * 'first' |
| 1671 | * This index supports Tx Scatter-Gather. It points to the first |
| 1672 | * descriptor of a packet assembled of multiple buffers. For |
| 1673 | * example when in middle of Such packet we have a Tx resource |
| 1674 | * error the 'curr' index get the value of 'first' to indicate |
| 1675 | * that the ring returned to its state before trying to transmit |
| 1676 | * this packet. |
| 1677 | * |
| 1678 | * Receive operation: |
| 1679 | * The eth_port_receive API set the packet information struct, |
| 1680 | * passed by the caller, with received information from the |
| 1681 | * 'current' SDMA descriptor. |
| 1682 | * It is the user responsibility to return this resource back |
| 1683 | * to the Rx descriptor ring to enable the reuse of this source. |
| 1684 | * Return Rx resource is done using the eth_rx_return_buff API. |
| 1685 | * |
| 1686 | * Transmit operation: |
| 1687 | * The eth_port_send API supports Scatter-Gather which enables to |
| 1688 | * send a packet spanned over multiple buffers. This means that |
| 1689 | * for each packet info structure given by the user and put into |
| 1690 | * the Tx descriptors ring, will be transmitted only if the 'LAST' |
| 1691 | * bit will be set in the packet info command status field. This |
| 1692 | * API also consider restriction regarding buffer alignments and |
| 1693 | * sizes. |
| 1694 | * The user must return a Tx resource after ensuring the buffer |
| 1695 | * has been transmitted to enable the Tx ring indexes to update. |
| 1696 | * |
| 1697 | * BOARD LAYOUT |
| 1698 | * This device is on-board. No jumper diagram is necessary. |
| 1699 | * |
| 1700 | * EXTERNAL INTERFACE |
| 1701 | * |
| 1702 | * Prior to calling the initialization routine eth_port_init() the user |
| 1703 | * must set the following fields under mv643xx_private struct: |
| 1704 | * port_num User Ethernet port number. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | * port_config User port configuration value. |
| 1706 | * port_config_extend User port config extend value. |
| 1707 | * port_sdma_config User port SDMA config value. |
| 1708 | * port_serial_control User port serial control value. |
| 1709 | * |
| 1710 | * This driver data flow is done using the struct pkt_info which |
| 1711 | * is a unified struct for Rx and Tx operations: |
| 1712 | * |
| 1713 | * byte_cnt Tx/Rx descriptor buffer byte count. |
| 1714 | * l4i_chk CPU provided TCP Checksum. For Tx operation |
| 1715 | * only. |
| 1716 | * cmd_sts Tx/Rx descriptor command status. |
| 1717 | * buf_ptr Tx/Rx descriptor buffer pointer. |
| 1718 | * return_info Tx/Rx user resource return information. |
| 1719 | */ |
| 1720 | |
| 1721 | /* defines */ |
| 1722 | /* SDMA command macros */ |
| 1723 | #define ETH_ENABLE_TX_QUEUE(eth_port) \ |
| 1724 | mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(eth_port), 1) |
| 1725 | |
| 1726 | /* locals */ |
| 1727 | |
| 1728 | /* PHY routines */ |
| 1729 | static int ethernet_phy_get(unsigned int eth_port_num); |
| 1730 | static void ethernet_phy_set(unsigned int eth_port_num, int phy_addr); |
| 1731 | |
| 1732 | /* Ethernet Port routines */ |
Dale Farnsworth | cf4086c | 2006-01-27 01:07:48 -0700 | [diff] [blame^] | 1733 | static void eth_port_set_filter_table_entry(int table, unsigned char entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | |
| 1735 | /* |
| 1736 | * eth_port_init - Initialize the Ethernet port driver |
| 1737 | * |
| 1738 | * DESCRIPTION: |
| 1739 | * This function prepares the ethernet port to start its activity: |
| 1740 | * 1) Completes the ethernet port driver struct initialization toward port |
| 1741 | * start routine. |
| 1742 | * 2) Resets the device to a quiescent state in case of warm reboot. |
| 1743 | * 3) Enable SDMA access to all four DRAM banks as well as internal SRAM. |
| 1744 | * 4) Clean MAC tables. The reset status of those tables is unknown. |
| 1745 | * 5) Set PHY address. |
| 1746 | * Note: Call this routine prior to eth_port_start routine and after |
| 1747 | * setting user values in the user fields of Ethernet port control |
| 1748 | * struct. |
| 1749 | * |
| 1750 | * INPUT: |
| 1751 | * struct mv643xx_private *mp Ethernet port control struct |
| 1752 | * |
| 1753 | * OUTPUT: |
| 1754 | * See description. |
| 1755 | * |
| 1756 | * RETURN: |
| 1757 | * None. |
| 1758 | */ |
| 1759 | static void eth_port_init(struct mv643xx_private *mp) |
| 1760 | { |
| 1761 | mp->port_rx_queue_command = 0; |
| 1762 | mp->port_tx_queue_command = 0; |
| 1763 | |
| 1764 | mp->rx_resource_err = 0; |
| 1765 | mp->tx_resource_err = 0; |
| 1766 | |
| 1767 | eth_port_reset(mp->port_num); |
| 1768 | |
| 1769 | eth_port_init_mac_tables(mp->port_num); |
| 1770 | |
| 1771 | ethernet_phy_reset(mp->port_num); |
| 1772 | } |
| 1773 | |
| 1774 | /* |
| 1775 | * eth_port_start - Start the Ethernet port activity. |
| 1776 | * |
| 1777 | * DESCRIPTION: |
| 1778 | * This routine prepares the Ethernet port for Rx and Tx activity: |
| 1779 | * 1. Initialize Tx and Rx Current Descriptor Pointer for each queue that |
| 1780 | * has been initialized a descriptor's ring (using |
| 1781 | * ether_init_tx_desc_ring for Tx and ether_init_rx_desc_ring for Rx) |
| 1782 | * 2. Initialize and enable the Ethernet configuration port by writing to |
| 1783 | * the port's configuration and command registers. |
| 1784 | * 3. Initialize and enable the SDMA by writing to the SDMA's |
| 1785 | * configuration and command registers. After completing these steps, |
| 1786 | * the ethernet port SDMA can starts to perform Rx and Tx activities. |
| 1787 | * |
| 1788 | * Note: Each Rx and Tx queue descriptor's list must be initialized prior |
| 1789 | * to calling this function (use ether_init_tx_desc_ring for Tx queues |
| 1790 | * and ether_init_rx_desc_ring for Rx queues). |
| 1791 | * |
| 1792 | * INPUT: |
Dale Farnsworth | ed9b5d4 | 2006-01-27 01:06:38 -0700 | [diff] [blame] | 1793 | * dev - a pointer to the required interface |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | * |
| 1795 | * OUTPUT: |
| 1796 | * Ethernet port is ready to receive and transmit. |
| 1797 | * |
| 1798 | * RETURN: |
| 1799 | * None. |
| 1800 | */ |
Dale Farnsworth | ed9b5d4 | 2006-01-27 01:06:38 -0700 | [diff] [blame] | 1801 | static void eth_port_start(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | { |
Dale Farnsworth | ed9b5d4 | 2006-01-27 01:06:38 -0700 | [diff] [blame] | 1803 | struct mv643xx_private *mp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | unsigned int port_num = mp->port_num; |
| 1805 | int tx_curr_desc, rx_curr_desc; |
| 1806 | |
| 1807 | /* Assignment of Tx CTRP of given queue */ |
| 1808 | tx_curr_desc = mp->tx_curr_desc_q; |
| 1809 | mv_write(MV643XX_ETH_TX_CURRENT_QUEUE_DESC_PTR_0(port_num), |
| 1810 | (u32)((struct eth_tx_desc *)mp->tx_desc_dma + tx_curr_desc)); |
| 1811 | |
| 1812 | /* Assignment of Rx CRDP of given queue */ |
| 1813 | rx_curr_desc = mp->rx_curr_desc_q; |
| 1814 | mv_write(MV643XX_ETH_RX_CURRENT_QUEUE_DESC_PTR_0(port_num), |
| 1815 | (u32)((struct eth_rx_desc *)mp->rx_desc_dma + rx_curr_desc)); |
| 1816 | |
| 1817 | /* Add the assigned Ethernet address to the port's address table */ |
Dale Farnsworth | ed9b5d4 | 2006-01-27 01:06:38 -0700 | [diff] [blame] | 1818 | eth_port_uc_addr_set(port_num, dev->dev_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | |
| 1820 | /* Assign port configuration and command. */ |
| 1821 | mv_write(MV643XX_ETH_PORT_CONFIG_REG(port_num), mp->port_config); |
| 1822 | |
| 1823 | mv_write(MV643XX_ETH_PORT_CONFIG_EXTEND_REG(port_num), |
| 1824 | mp->port_config_extend); |
| 1825 | |
| 1826 | |
| 1827 | /* Increase the Rx side buffer size if supporting GigE */ |
| 1828 | if (mp->port_serial_control & MV643XX_ETH_SET_GMII_SPEED_TO_1000) |
| 1829 | mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num), |
| 1830 | (mp->port_serial_control & 0xfff1ffff) | (0x5 << 17)); |
| 1831 | else |
| 1832 | mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num), |
| 1833 | mp->port_serial_control); |
| 1834 | |
| 1835 | mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num), |
| 1836 | mv_read(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num)) | |
| 1837 | MV643XX_ETH_SERIAL_PORT_ENABLE); |
| 1838 | |
| 1839 | /* Assign port SDMA configuration */ |
| 1840 | mv_write(MV643XX_ETH_SDMA_CONFIG_REG(port_num), |
| 1841 | mp->port_sdma_config); |
| 1842 | |
| 1843 | /* Enable port Rx. */ |
| 1844 | mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num), |
| 1845 | mp->port_rx_queue_command); |
Dale Farnsworth | 8f54371 | 2005-09-02 12:34:35 -0700 | [diff] [blame] | 1846 | |
| 1847 | /* Disable port bandwidth limits by clearing MTU register */ |
| 1848 | mv_write(MV643XX_ETH_MAXIMUM_TRANSMIT_UNIT(port_num), 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | } |
| 1850 | |
| 1851 | /* |
| 1852 | * eth_port_uc_addr_set - This function Set the port Unicast address. |
| 1853 | * |
| 1854 | * DESCRIPTION: |
| 1855 | * This function Set the port Ethernet MAC address. |
| 1856 | * |
| 1857 | * INPUT: |
| 1858 | * unsigned int eth_port_num Port number. |
| 1859 | * char * p_addr Address to be set |
| 1860 | * |
| 1861 | * OUTPUT: |
Dale Farnsworth | cf4086c | 2006-01-27 01:07:48 -0700 | [diff] [blame^] | 1862 | * Set MAC address low and high registers. also calls |
| 1863 | * eth_port_set_filter_table_entry() to set the unicast |
| 1864 | * table with the proper information. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | * |
| 1866 | * RETURN: |
| 1867 | * N/A. |
| 1868 | * |
| 1869 | */ |
| 1870 | static void eth_port_uc_addr_set(unsigned int eth_port_num, |
| 1871 | unsigned char *p_addr) |
| 1872 | { |
| 1873 | unsigned int mac_h; |
| 1874 | unsigned int mac_l; |
Dale Farnsworth | cf4086c | 2006-01-27 01:07:48 -0700 | [diff] [blame^] | 1875 | int table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | |
| 1877 | mac_l = (p_addr[4] << 8) | (p_addr[5]); |
| 1878 | mac_h = (p_addr[0] << 24) | (p_addr[1] << 16) | (p_addr[2] << 8) | |
| 1879 | (p_addr[3] << 0); |
| 1880 | |
| 1881 | mv_write(MV643XX_ETH_MAC_ADDR_LOW(eth_port_num), mac_l); |
| 1882 | mv_write(MV643XX_ETH_MAC_ADDR_HIGH(eth_port_num), mac_h); |
| 1883 | |
| 1884 | /* Accept frames of this address */ |
Dale Farnsworth | cf4086c | 2006-01-27 01:07:48 -0700 | [diff] [blame^] | 1885 | table = MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE(eth_port_num); |
| 1886 | eth_port_set_filter_table_entry(table, p_addr[5] & 0x0f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | } |
| 1888 | |
| 1889 | /* |
| 1890 | * eth_port_uc_addr_get - This function retrieves the port Unicast address |
| 1891 | * (MAC address) from the ethernet hw registers. |
| 1892 | * |
| 1893 | * DESCRIPTION: |
| 1894 | * This function retrieves the port Ethernet MAC address. |
| 1895 | * |
| 1896 | * INPUT: |
| 1897 | * unsigned int eth_port_num Port number. |
| 1898 | * char *MacAddr pointer where the MAC address is stored |
| 1899 | * |
| 1900 | * OUTPUT: |
| 1901 | * Copy the MAC address to the location pointed to by MacAddr |
| 1902 | * |
| 1903 | * RETURN: |
| 1904 | * N/A. |
| 1905 | * |
| 1906 | */ |
| 1907 | static void eth_port_uc_addr_get(struct net_device *dev, unsigned char *p_addr) |
| 1908 | { |
| 1909 | struct mv643xx_private *mp = netdev_priv(dev); |
| 1910 | unsigned int mac_h; |
| 1911 | unsigned int mac_l; |
| 1912 | |
| 1913 | mac_h = mv_read(MV643XX_ETH_MAC_ADDR_HIGH(mp->port_num)); |
| 1914 | mac_l = mv_read(MV643XX_ETH_MAC_ADDR_LOW(mp->port_num)); |
| 1915 | |
| 1916 | p_addr[0] = (mac_h >> 24) & 0xff; |
| 1917 | p_addr[1] = (mac_h >> 16) & 0xff; |
| 1918 | p_addr[2] = (mac_h >> 8) & 0xff; |
| 1919 | p_addr[3] = mac_h & 0xff; |
| 1920 | p_addr[4] = (mac_l >> 8) & 0xff; |
| 1921 | p_addr[5] = mac_l & 0xff; |
| 1922 | } |
| 1923 | |
| 1924 | /* |
Dale Farnsworth | 16e0301 | 2006-01-16 16:50:02 -0700 | [diff] [blame] | 1925 | * The entries in each table are indexed by a hash of a packet's MAC |
| 1926 | * address. One bit in each entry determines whether the packet is |
| 1927 | * accepted. There are 4 entries (each 8 bits wide) in each register |
| 1928 | * of the table. The bits in each entry are defined as follows: |
| 1929 | * 0 Accept=1, Drop=0 |
| 1930 | * 3-1 Queue (ETH_Q0=0) |
| 1931 | * 7-4 Reserved = 0; |
| 1932 | */ |
| 1933 | static void eth_port_set_filter_table_entry(int table, unsigned char entry) |
| 1934 | { |
| 1935 | unsigned int table_reg; |
| 1936 | unsigned int tbl_offset; |
| 1937 | unsigned int reg_offset; |
| 1938 | |
| 1939 | tbl_offset = (entry / 4) * 4; /* Register offset of DA table entry */ |
| 1940 | reg_offset = entry % 4; /* Entry offset within the register */ |
| 1941 | |
| 1942 | /* Set "accepts frame bit" at specified table entry */ |
| 1943 | table_reg = mv_read(table + tbl_offset); |
| 1944 | table_reg |= 0x01 << (8 * reg_offset); |
| 1945 | mv_write(table + tbl_offset, table_reg); |
| 1946 | } |
| 1947 | |
| 1948 | /* |
| 1949 | * eth_port_mc_addr - Multicast address settings. |
| 1950 | * |
| 1951 | * The MV device supports multicast using two tables: |
| 1952 | * 1) Special Multicast Table for MAC addresses of the form |
| 1953 | * 0x01-00-5E-00-00-XX (where XX is between 0x00 and 0x_FF). |
| 1954 | * The MAC DA[7:0] bits are used as a pointer to the Special Multicast |
| 1955 | * Table entries in the DA-Filter table. |
| 1956 | * 2) Other Multicast Table for multicast of another type. A CRC-8bit |
| 1957 | * is used as an index to the Other Multicast Table entries in the |
| 1958 | * DA-Filter table. This function calculates the CRC-8bit value. |
| 1959 | * In either case, eth_port_set_filter_table_entry() is then called |
| 1960 | * to set to set the actual table entry. |
| 1961 | */ |
| 1962 | static void eth_port_mc_addr(unsigned int eth_port_num, unsigned char *p_addr) |
| 1963 | { |
| 1964 | unsigned int mac_h; |
| 1965 | unsigned int mac_l; |
| 1966 | unsigned char crc_result = 0; |
| 1967 | int table; |
| 1968 | int mac_array[48]; |
| 1969 | int crc[8]; |
| 1970 | int i; |
| 1971 | |
| 1972 | if ((p_addr[0] == 0x01) && (p_addr[1] == 0x00) && |
| 1973 | (p_addr[2] == 0x5E) && (p_addr[3] == 0x00) && (p_addr[4] == 0x00)) { |
| 1974 | table = MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE |
| 1975 | (eth_port_num); |
| 1976 | eth_port_set_filter_table_entry(table, p_addr[5]); |
| 1977 | return; |
| 1978 | } |
| 1979 | |
| 1980 | /* Calculate CRC-8 out of the given address */ |
| 1981 | mac_h = (p_addr[0] << 8) | (p_addr[1]); |
| 1982 | mac_l = (p_addr[2] << 24) | (p_addr[3] << 16) | |
| 1983 | (p_addr[4] << 8) | (p_addr[5] << 0); |
| 1984 | |
| 1985 | for (i = 0; i < 32; i++) |
| 1986 | mac_array[i] = (mac_l >> i) & 0x1; |
| 1987 | for (i = 32; i < 48; i++) |
| 1988 | mac_array[i] = (mac_h >> (i - 32)) & 0x1; |
| 1989 | |
| 1990 | crc[0] = mac_array[45] ^ mac_array[43] ^ mac_array[40] ^ mac_array[39] ^ |
| 1991 | mac_array[35] ^ mac_array[34] ^ mac_array[31] ^ mac_array[30] ^ |
| 1992 | mac_array[28] ^ mac_array[23] ^ mac_array[21] ^ mac_array[19] ^ |
| 1993 | mac_array[18] ^ mac_array[16] ^ mac_array[14] ^ mac_array[12] ^ |
| 1994 | mac_array[8] ^ mac_array[7] ^ mac_array[6] ^ mac_array[0]; |
| 1995 | |
| 1996 | crc[1] = mac_array[46] ^ mac_array[45] ^ mac_array[44] ^ mac_array[43] ^ |
| 1997 | mac_array[41] ^ mac_array[39] ^ mac_array[36] ^ mac_array[34] ^ |
| 1998 | mac_array[32] ^ mac_array[30] ^ mac_array[29] ^ mac_array[28] ^ |
| 1999 | mac_array[24] ^ mac_array[23] ^ mac_array[22] ^ mac_array[21] ^ |
| 2000 | mac_array[20] ^ mac_array[18] ^ mac_array[17] ^ mac_array[16] ^ |
| 2001 | mac_array[15] ^ mac_array[14] ^ mac_array[13] ^ mac_array[12] ^ |
| 2002 | mac_array[9] ^ mac_array[6] ^ mac_array[1] ^ mac_array[0]; |
| 2003 | |
| 2004 | crc[2] = mac_array[47] ^ mac_array[46] ^ mac_array[44] ^ mac_array[43] ^ |
| 2005 | mac_array[42] ^ mac_array[39] ^ mac_array[37] ^ mac_array[34] ^ |
| 2006 | mac_array[33] ^ mac_array[29] ^ mac_array[28] ^ mac_array[25] ^ |
| 2007 | mac_array[24] ^ mac_array[22] ^ mac_array[17] ^ mac_array[15] ^ |
| 2008 | mac_array[13] ^ mac_array[12] ^ mac_array[10] ^ mac_array[8] ^ |
| 2009 | mac_array[6] ^ mac_array[2] ^ mac_array[1] ^ mac_array[0]; |
| 2010 | |
| 2011 | crc[3] = mac_array[47] ^ mac_array[45] ^ mac_array[44] ^ mac_array[43] ^ |
| 2012 | mac_array[40] ^ mac_array[38] ^ mac_array[35] ^ mac_array[34] ^ |
| 2013 | mac_array[30] ^ mac_array[29] ^ mac_array[26] ^ mac_array[25] ^ |
| 2014 | mac_array[23] ^ mac_array[18] ^ mac_array[16] ^ mac_array[14] ^ |
| 2015 | mac_array[13] ^ mac_array[11] ^ mac_array[9] ^ mac_array[7] ^ |
| 2016 | mac_array[3] ^ mac_array[2] ^ mac_array[1]; |
| 2017 | |
| 2018 | crc[4] = mac_array[46] ^ mac_array[45] ^ mac_array[44] ^ mac_array[41] ^ |
| 2019 | mac_array[39] ^ mac_array[36] ^ mac_array[35] ^ mac_array[31] ^ |
| 2020 | mac_array[30] ^ mac_array[27] ^ mac_array[26] ^ mac_array[24] ^ |
| 2021 | mac_array[19] ^ mac_array[17] ^ mac_array[15] ^ mac_array[14] ^ |
| 2022 | mac_array[12] ^ mac_array[10] ^ mac_array[8] ^ mac_array[4] ^ |
| 2023 | mac_array[3] ^ mac_array[2]; |
| 2024 | |
| 2025 | crc[5] = mac_array[47] ^ mac_array[46] ^ mac_array[45] ^ mac_array[42] ^ |
| 2026 | mac_array[40] ^ mac_array[37] ^ mac_array[36] ^ mac_array[32] ^ |
| 2027 | mac_array[31] ^ mac_array[28] ^ mac_array[27] ^ mac_array[25] ^ |
| 2028 | mac_array[20] ^ mac_array[18] ^ mac_array[16] ^ mac_array[15] ^ |
| 2029 | mac_array[13] ^ mac_array[11] ^ mac_array[9] ^ mac_array[5] ^ |
| 2030 | mac_array[4] ^ mac_array[3]; |
| 2031 | |
| 2032 | crc[6] = mac_array[47] ^ mac_array[46] ^ mac_array[43] ^ mac_array[41] ^ |
| 2033 | mac_array[38] ^ mac_array[37] ^ mac_array[33] ^ mac_array[32] ^ |
| 2034 | mac_array[29] ^ mac_array[28] ^ mac_array[26] ^ mac_array[21] ^ |
| 2035 | mac_array[19] ^ mac_array[17] ^ mac_array[16] ^ mac_array[14] ^ |
| 2036 | mac_array[12] ^ mac_array[10] ^ mac_array[6] ^ mac_array[5] ^ |
| 2037 | mac_array[4]; |
| 2038 | |
| 2039 | crc[7] = mac_array[47] ^ mac_array[44] ^ mac_array[42] ^ mac_array[39] ^ |
| 2040 | mac_array[38] ^ mac_array[34] ^ mac_array[33] ^ mac_array[30] ^ |
| 2041 | mac_array[29] ^ mac_array[27] ^ mac_array[22] ^ mac_array[20] ^ |
| 2042 | mac_array[18] ^ mac_array[17] ^ mac_array[15] ^ mac_array[13] ^ |
| 2043 | mac_array[11] ^ mac_array[7] ^ mac_array[6] ^ mac_array[5]; |
| 2044 | |
| 2045 | for (i = 0; i < 8; i++) |
| 2046 | crc_result = crc_result | (crc[i] << i); |
| 2047 | |
| 2048 | table = MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE(eth_port_num); |
| 2049 | eth_port_set_filter_table_entry(table, crc_result); |
| 2050 | } |
| 2051 | |
| 2052 | /* |
| 2053 | * Set the entire multicast list based on dev->mc_list. |
| 2054 | */ |
| 2055 | static void eth_port_set_multicast_list(struct net_device *dev) |
| 2056 | { |
| 2057 | |
| 2058 | struct dev_mc_list *mc_list; |
| 2059 | int i; |
| 2060 | int table_index; |
| 2061 | struct mv643xx_private *mp = netdev_priv(dev); |
| 2062 | unsigned int eth_port_num = mp->port_num; |
| 2063 | |
| 2064 | /* If the device is in promiscuous mode or in all multicast mode, |
| 2065 | * we will fully populate both multicast tables with accept. |
| 2066 | * This is guaranteed to yield a match on all multicast addresses... |
| 2067 | */ |
| 2068 | if ((dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI)) { |
| 2069 | for (table_index = 0; table_index <= 0xFC; table_index += 4) { |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 2070 | /* Set all entries in DA filter special multicast |
| 2071 | * table (Ex_dFSMT) |
| 2072 | * Set for ETH_Q0 for now |
| 2073 | * Bits |
| 2074 | * 0 Accept=1, Drop=0 |
| 2075 | * 3-1 Queue ETH_Q0=0 |
| 2076 | * 7-4 Reserved = 0; |
| 2077 | */ |
| 2078 | mv_write(MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE(eth_port_num) + table_index, 0x01010101); |
Dale Farnsworth | 16e0301 | 2006-01-16 16:50:02 -0700 | [diff] [blame] | 2079 | |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 2080 | /* Set all entries in DA filter other multicast |
| 2081 | * table (Ex_dFOMT) |
| 2082 | * Set for ETH_Q0 for now |
| 2083 | * Bits |
| 2084 | * 0 Accept=1, Drop=0 |
| 2085 | * 3-1 Queue ETH_Q0=0 |
| 2086 | * 7-4 Reserved = 0; |
| 2087 | */ |
| 2088 | mv_write(MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE(eth_port_num) + table_index, 0x01010101); |
| 2089 | } |
Dale Farnsworth | 16e0301 | 2006-01-16 16:50:02 -0700 | [diff] [blame] | 2090 | return; |
| 2091 | } |
| 2092 | |
| 2093 | /* We will clear out multicast tables every time we get the list. |
| 2094 | * Then add the entire new list... |
| 2095 | */ |
| 2096 | for (table_index = 0; table_index <= 0xFC; table_index += 4) { |
| 2097 | /* Clear DA filter special multicast table (Ex_dFSMT) */ |
| 2098 | mv_write(MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE |
| 2099 | (eth_port_num) + table_index, 0); |
| 2100 | |
| 2101 | /* Clear DA filter other multicast table (Ex_dFOMT) */ |
| 2102 | mv_write(MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE |
| 2103 | (eth_port_num) + table_index, 0); |
| 2104 | } |
| 2105 | |
| 2106 | /* Get pointer to net_device multicast list and add each one... */ |
| 2107 | for (i = 0, mc_list = dev->mc_list; |
| 2108 | (i < 256) && (mc_list != NULL) && (i < dev->mc_count); |
| 2109 | i++, mc_list = mc_list->next) |
| 2110 | if (mc_list->dmi_addrlen == 6) |
| 2111 | eth_port_mc_addr(eth_port_num, mc_list->dmi_addr); |
| 2112 | } |
| 2113 | |
| 2114 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | * eth_port_init_mac_tables - Clear all entrance in the UC, SMC and OMC tables |
| 2116 | * |
| 2117 | * DESCRIPTION: |
| 2118 | * Go through all the DA filter tables (Unicast, Special Multicast & |
| 2119 | * Other Multicast) and set each entry to 0. |
| 2120 | * |
| 2121 | * INPUT: |
| 2122 | * unsigned int eth_port_num Ethernet Port number. |
| 2123 | * |
| 2124 | * OUTPUT: |
| 2125 | * Multicast and Unicast packets are rejected. |
| 2126 | * |
| 2127 | * RETURN: |
| 2128 | * None. |
| 2129 | */ |
| 2130 | static void eth_port_init_mac_tables(unsigned int eth_port_num) |
| 2131 | { |
| 2132 | int table_index; |
| 2133 | |
| 2134 | /* Clear DA filter unicast table (Ex_dFUT) */ |
| 2135 | for (table_index = 0; table_index <= 0xC; table_index += 4) |
Dale Farnsworth | cf4086c | 2006-01-27 01:07:48 -0700 | [diff] [blame^] | 2136 | mv_write(MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE |
| 2137 | (eth_port_num) + table_index, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 | |
| 2139 | for (table_index = 0; table_index <= 0xFC; table_index += 4) { |
| 2140 | /* Clear DA filter special multicast table (Ex_dFSMT) */ |
Dale Farnsworth | 16e0301 | 2006-01-16 16:50:02 -0700 | [diff] [blame] | 2141 | mv_write(MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE |
| 2142 | (eth_port_num) + table_index, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2143 | /* Clear DA filter other multicast table (Ex_dFOMT) */ |
Dale Farnsworth | 16e0301 | 2006-01-16 16:50:02 -0700 | [diff] [blame] | 2144 | mv_write(MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE |
| 2145 | (eth_port_num) + table_index, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | } |
| 2147 | } |
| 2148 | |
| 2149 | /* |
| 2150 | * eth_clear_mib_counters - Clear all MIB counters |
| 2151 | * |
| 2152 | * DESCRIPTION: |
| 2153 | * This function clears all MIB counters of a specific ethernet port. |
| 2154 | * A read from the MIB counter will reset the counter. |
| 2155 | * |
| 2156 | * INPUT: |
| 2157 | * unsigned int eth_port_num Ethernet Port number. |
| 2158 | * |
| 2159 | * OUTPUT: |
| 2160 | * After reading all MIB counters, the counters resets. |
| 2161 | * |
| 2162 | * RETURN: |
| 2163 | * MIB counter value. |
| 2164 | * |
| 2165 | */ |
| 2166 | static void eth_clear_mib_counters(unsigned int eth_port_num) |
| 2167 | { |
| 2168 | int i; |
| 2169 | |
| 2170 | /* Perform dummy reads from MIB counters */ |
| 2171 | for (i = ETH_MIB_GOOD_OCTETS_RECEIVED_LOW; i < ETH_MIB_LATE_COLLISION; |
| 2172 | i += 4) |
| 2173 | mv_read(MV643XX_ETH_MIB_COUNTERS_BASE(eth_port_num) + i); |
| 2174 | } |
| 2175 | |
| 2176 | static inline u32 read_mib(struct mv643xx_private *mp, int offset) |
| 2177 | { |
| 2178 | return mv_read(MV643XX_ETH_MIB_COUNTERS_BASE(mp->port_num) + offset); |
| 2179 | } |
| 2180 | |
| 2181 | static void eth_update_mib_counters(struct mv643xx_private *mp) |
| 2182 | { |
| 2183 | struct mv643xx_mib_counters *p = &mp->mib_counters; |
| 2184 | int offset; |
| 2185 | |
| 2186 | p->good_octets_received += |
| 2187 | read_mib(mp, ETH_MIB_GOOD_OCTETS_RECEIVED_LOW); |
| 2188 | p->good_octets_received += |
| 2189 | (u64)read_mib(mp, ETH_MIB_GOOD_OCTETS_RECEIVED_HIGH) << 32; |
| 2190 | |
| 2191 | for (offset = ETH_MIB_BAD_OCTETS_RECEIVED; |
| 2192 | offset <= ETH_MIB_FRAMES_1024_TO_MAX_OCTETS; |
| 2193 | offset += 4) |
| 2194 | *(u32 *)((char *)p + offset) = read_mib(mp, offset); |
| 2195 | |
| 2196 | p->good_octets_sent += read_mib(mp, ETH_MIB_GOOD_OCTETS_SENT_LOW); |
| 2197 | p->good_octets_sent += |
| 2198 | (u64)read_mib(mp, ETH_MIB_GOOD_OCTETS_SENT_HIGH) << 32; |
| 2199 | |
| 2200 | for (offset = ETH_MIB_GOOD_FRAMES_SENT; |
| 2201 | offset <= ETH_MIB_LATE_COLLISION; |
| 2202 | offset += 4) |
| 2203 | *(u32 *)((char *)p + offset) = read_mib(mp, offset); |
| 2204 | } |
| 2205 | |
| 2206 | /* |
| 2207 | * ethernet_phy_detect - Detect whether a phy is present |
| 2208 | * |
| 2209 | * DESCRIPTION: |
| 2210 | * This function tests whether there is a PHY present on |
| 2211 | * the specified port. |
| 2212 | * |
| 2213 | * INPUT: |
| 2214 | * unsigned int eth_port_num Ethernet Port number. |
| 2215 | * |
| 2216 | * OUTPUT: |
| 2217 | * None |
| 2218 | * |
| 2219 | * RETURN: |
| 2220 | * 0 on success |
| 2221 | * -ENODEV on failure |
| 2222 | * |
| 2223 | */ |
| 2224 | static int ethernet_phy_detect(unsigned int port_num) |
| 2225 | { |
| 2226 | unsigned int phy_reg_data0; |
| 2227 | int auto_neg; |
| 2228 | |
| 2229 | eth_port_read_smi_reg(port_num, 0, &phy_reg_data0); |
| 2230 | auto_neg = phy_reg_data0 & 0x1000; |
| 2231 | phy_reg_data0 ^= 0x1000; /* invert auto_neg */ |
| 2232 | eth_port_write_smi_reg(port_num, 0, phy_reg_data0); |
| 2233 | |
| 2234 | eth_port_read_smi_reg(port_num, 0, &phy_reg_data0); |
| 2235 | if ((phy_reg_data0 & 0x1000) == auto_neg) |
| 2236 | return -ENODEV; /* change didn't take */ |
| 2237 | |
| 2238 | phy_reg_data0 ^= 0x1000; |
| 2239 | eth_port_write_smi_reg(port_num, 0, phy_reg_data0); |
| 2240 | return 0; |
| 2241 | } |
| 2242 | |
| 2243 | /* |
| 2244 | * ethernet_phy_get - Get the ethernet port PHY address. |
| 2245 | * |
| 2246 | * DESCRIPTION: |
| 2247 | * This routine returns the given ethernet port PHY address. |
| 2248 | * |
| 2249 | * INPUT: |
| 2250 | * unsigned int eth_port_num Ethernet Port number. |
| 2251 | * |
| 2252 | * OUTPUT: |
| 2253 | * None. |
| 2254 | * |
| 2255 | * RETURN: |
| 2256 | * PHY address. |
| 2257 | * |
| 2258 | */ |
| 2259 | static int ethernet_phy_get(unsigned int eth_port_num) |
| 2260 | { |
| 2261 | unsigned int reg_data; |
| 2262 | |
| 2263 | reg_data = mv_read(MV643XX_ETH_PHY_ADDR_REG); |
| 2264 | |
| 2265 | return ((reg_data >> (5 * eth_port_num)) & 0x1f); |
| 2266 | } |
| 2267 | |
| 2268 | /* |
| 2269 | * ethernet_phy_set - Set the ethernet port PHY address. |
| 2270 | * |
| 2271 | * DESCRIPTION: |
| 2272 | * This routine sets the given ethernet port PHY address. |
| 2273 | * |
| 2274 | * INPUT: |
| 2275 | * unsigned int eth_port_num Ethernet Port number. |
| 2276 | * int phy_addr PHY address. |
| 2277 | * |
| 2278 | * OUTPUT: |
| 2279 | * None. |
| 2280 | * |
| 2281 | * RETURN: |
| 2282 | * None. |
| 2283 | * |
| 2284 | */ |
| 2285 | static void ethernet_phy_set(unsigned int eth_port_num, int phy_addr) |
| 2286 | { |
| 2287 | u32 reg_data; |
| 2288 | int addr_shift = 5 * eth_port_num; |
| 2289 | |
| 2290 | reg_data = mv_read(MV643XX_ETH_PHY_ADDR_REG); |
| 2291 | reg_data &= ~(0x1f << addr_shift); |
| 2292 | reg_data |= (phy_addr & 0x1f) << addr_shift; |
| 2293 | mv_write(MV643XX_ETH_PHY_ADDR_REG, reg_data); |
| 2294 | } |
| 2295 | |
| 2296 | /* |
| 2297 | * ethernet_phy_reset - Reset Ethernet port PHY. |
| 2298 | * |
| 2299 | * DESCRIPTION: |
| 2300 | * This routine utilizes the SMI interface to reset the ethernet port PHY. |
| 2301 | * |
| 2302 | * INPUT: |
| 2303 | * unsigned int eth_port_num Ethernet Port number. |
| 2304 | * |
| 2305 | * OUTPUT: |
| 2306 | * The PHY is reset. |
| 2307 | * |
| 2308 | * RETURN: |
| 2309 | * None. |
| 2310 | * |
| 2311 | */ |
| 2312 | static void ethernet_phy_reset(unsigned int eth_port_num) |
| 2313 | { |
| 2314 | unsigned int phy_reg_data; |
| 2315 | |
| 2316 | /* Reset the PHY */ |
| 2317 | eth_port_read_smi_reg(eth_port_num, 0, &phy_reg_data); |
| 2318 | phy_reg_data |= 0x8000; /* Set bit 15 to reset the PHY */ |
| 2319 | eth_port_write_smi_reg(eth_port_num, 0, phy_reg_data); |
| 2320 | } |
| 2321 | |
| 2322 | /* |
| 2323 | * eth_port_reset - Reset Ethernet port |
| 2324 | * |
| 2325 | * DESCRIPTION: |
| 2326 | * This routine resets the chip by aborting any SDMA engine activity and |
| 2327 | * clearing the MIB counters. The Receiver and the Transmit unit are in |
| 2328 | * idle state after this command is performed and the port is disabled. |
| 2329 | * |
| 2330 | * INPUT: |
| 2331 | * unsigned int eth_port_num Ethernet Port number. |
| 2332 | * |
| 2333 | * OUTPUT: |
| 2334 | * Channel activity is halted. |
| 2335 | * |
| 2336 | * RETURN: |
| 2337 | * None. |
| 2338 | * |
| 2339 | */ |
| 2340 | static void eth_port_reset(unsigned int port_num) |
| 2341 | { |
| 2342 | unsigned int reg_data; |
| 2343 | |
| 2344 | /* Stop Tx port activity. Check port Tx activity. */ |
| 2345 | reg_data = mv_read(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num)); |
| 2346 | |
| 2347 | if (reg_data & 0xFF) { |
| 2348 | /* Issue stop command for active channels only */ |
| 2349 | mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num), |
| 2350 | (reg_data << 8)); |
| 2351 | |
| 2352 | /* Wait for all Tx activity to terminate. */ |
| 2353 | /* Check port cause register that all Tx queues are stopped */ |
| 2354 | while (mv_read(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num)) |
| 2355 | & 0xFF) |
| 2356 | udelay(10); |
| 2357 | } |
| 2358 | |
| 2359 | /* Stop Rx port activity. Check port Rx activity. */ |
| 2360 | reg_data = mv_read(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num)); |
| 2361 | |
| 2362 | if (reg_data & 0xFF) { |
| 2363 | /* Issue stop command for active channels only */ |
| 2364 | mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num), |
| 2365 | (reg_data << 8)); |
| 2366 | |
| 2367 | /* Wait for all Rx activity to terminate. */ |
| 2368 | /* Check port cause register that all Rx queues are stopped */ |
| 2369 | while (mv_read(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num)) |
| 2370 | & 0xFF) |
| 2371 | udelay(10); |
| 2372 | } |
| 2373 | |
| 2374 | /* Clear all MIB counters */ |
| 2375 | eth_clear_mib_counters(port_num); |
| 2376 | |
| 2377 | /* Reset the Enable bit in the Configuration Register */ |
| 2378 | reg_data = mv_read(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num)); |
| 2379 | reg_data &= ~MV643XX_ETH_SERIAL_PORT_ENABLE; |
| 2380 | mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num), reg_data); |
| 2381 | } |
| 2382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2383 | |
| 2384 | static int eth_port_autoneg_supported(unsigned int eth_port_num) |
| 2385 | { |
| 2386 | unsigned int phy_reg_data0; |
| 2387 | |
| 2388 | eth_port_read_smi_reg(eth_port_num, 0, &phy_reg_data0); |
| 2389 | |
| 2390 | return phy_reg_data0 & 0x1000; |
| 2391 | } |
| 2392 | |
| 2393 | static int eth_port_link_is_up(unsigned int eth_port_num) |
| 2394 | { |
| 2395 | unsigned int phy_reg_data1; |
| 2396 | |
| 2397 | eth_port_read_smi_reg(eth_port_num, 1, &phy_reg_data1); |
| 2398 | |
| 2399 | if (eth_port_autoneg_supported(eth_port_num)) { |
| 2400 | if (phy_reg_data1 & 0x20) /* auto-neg complete */ |
| 2401 | return 1; |
| 2402 | } else if (phy_reg_data1 & 0x4) /* link up */ |
| 2403 | return 1; |
| 2404 | |
| 2405 | return 0; |
| 2406 | } |
| 2407 | |
| 2408 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | * eth_port_read_smi_reg - Read PHY registers |
| 2410 | * |
| 2411 | * DESCRIPTION: |
| 2412 | * This routine utilize the SMI interface to interact with the PHY in |
| 2413 | * order to perform PHY register read. |
| 2414 | * |
| 2415 | * INPUT: |
| 2416 | * unsigned int port_num Ethernet Port number. |
| 2417 | * unsigned int phy_reg PHY register address offset. |
| 2418 | * unsigned int *value Register value buffer. |
| 2419 | * |
| 2420 | * OUTPUT: |
| 2421 | * Write the value of a specified PHY register into given buffer. |
| 2422 | * |
| 2423 | * RETURN: |
| 2424 | * false if the PHY is busy or read data is not in valid state. |
| 2425 | * true otherwise. |
| 2426 | * |
| 2427 | */ |
| 2428 | static void eth_port_read_smi_reg(unsigned int port_num, |
| 2429 | unsigned int phy_reg, unsigned int *value) |
| 2430 | { |
| 2431 | int phy_addr = ethernet_phy_get(port_num); |
| 2432 | unsigned long flags; |
| 2433 | int i; |
| 2434 | |
| 2435 | /* the SMI register is a shared resource */ |
| 2436 | spin_lock_irqsave(&mv643xx_eth_phy_lock, flags); |
| 2437 | |
| 2438 | /* wait for the SMI register to become available */ |
| 2439 | for (i = 0; mv_read(MV643XX_ETH_SMI_REG) & ETH_SMI_BUSY; i++) { |
| 2440 | if (i == PHY_WAIT_ITERATIONS) { |
| 2441 | printk("mv643xx PHY busy timeout, port %d\n", port_num); |
| 2442 | goto out; |
| 2443 | } |
| 2444 | udelay(PHY_WAIT_MICRO_SECONDS); |
| 2445 | } |
| 2446 | |
| 2447 | mv_write(MV643XX_ETH_SMI_REG, |
| 2448 | (phy_addr << 16) | (phy_reg << 21) | ETH_SMI_OPCODE_READ); |
| 2449 | |
| 2450 | /* now wait for the data to be valid */ |
| 2451 | for (i = 0; !(mv_read(MV643XX_ETH_SMI_REG) & ETH_SMI_READ_VALID); i++) { |
| 2452 | if (i == PHY_WAIT_ITERATIONS) { |
| 2453 | printk("mv643xx PHY read timeout, port %d\n", port_num); |
| 2454 | goto out; |
| 2455 | } |
| 2456 | udelay(PHY_WAIT_MICRO_SECONDS); |
| 2457 | } |
| 2458 | |
| 2459 | *value = mv_read(MV643XX_ETH_SMI_REG) & 0xffff; |
| 2460 | out: |
| 2461 | spin_unlock_irqrestore(&mv643xx_eth_phy_lock, flags); |
| 2462 | } |
| 2463 | |
| 2464 | /* |
| 2465 | * eth_port_write_smi_reg - Write to PHY registers |
| 2466 | * |
| 2467 | * DESCRIPTION: |
| 2468 | * This routine utilize the SMI interface to interact with the PHY in |
| 2469 | * order to perform writes to PHY registers. |
| 2470 | * |
| 2471 | * INPUT: |
| 2472 | * unsigned int eth_port_num Ethernet Port number. |
| 2473 | * unsigned int phy_reg PHY register address offset. |
| 2474 | * unsigned int value Register value. |
| 2475 | * |
| 2476 | * OUTPUT: |
| 2477 | * Write the given value to the specified PHY register. |
| 2478 | * |
| 2479 | * RETURN: |
| 2480 | * false if the PHY is busy. |
| 2481 | * true otherwise. |
| 2482 | * |
| 2483 | */ |
| 2484 | static void eth_port_write_smi_reg(unsigned int eth_port_num, |
| 2485 | unsigned int phy_reg, unsigned int value) |
| 2486 | { |
| 2487 | int phy_addr; |
| 2488 | int i; |
| 2489 | unsigned long flags; |
| 2490 | |
| 2491 | phy_addr = ethernet_phy_get(eth_port_num); |
| 2492 | |
| 2493 | /* the SMI register is a shared resource */ |
| 2494 | spin_lock_irqsave(&mv643xx_eth_phy_lock, flags); |
| 2495 | |
| 2496 | /* wait for the SMI register to become available */ |
| 2497 | for (i = 0; mv_read(MV643XX_ETH_SMI_REG) & ETH_SMI_BUSY; i++) { |
| 2498 | if (i == PHY_WAIT_ITERATIONS) { |
| 2499 | printk("mv643xx PHY busy timeout, port %d\n", |
| 2500 | eth_port_num); |
| 2501 | goto out; |
| 2502 | } |
| 2503 | udelay(PHY_WAIT_MICRO_SECONDS); |
| 2504 | } |
| 2505 | |
| 2506 | mv_write(MV643XX_ETH_SMI_REG, (phy_addr << 16) | (phy_reg << 21) | |
| 2507 | ETH_SMI_OPCODE_WRITE | (value & 0xffff)); |
| 2508 | out: |
| 2509 | spin_unlock_irqrestore(&mv643xx_eth_phy_lock, flags); |
| 2510 | } |
| 2511 | |
| 2512 | /* |
| 2513 | * eth_port_send - Send an Ethernet packet |
| 2514 | * |
| 2515 | * DESCRIPTION: |
| 2516 | * This routine send a given packet described by p_pktinfo parameter. It |
| 2517 | * supports transmitting of a packet spaned over multiple buffers. The |
| 2518 | * routine updates 'curr' and 'first' indexes according to the packet |
| 2519 | * segment passed to the routine. In case the packet segment is first, |
| 2520 | * the 'first' index is update. In any case, the 'curr' index is updated. |
| 2521 | * If the routine get into Tx resource error it assigns 'curr' index as |
| 2522 | * 'first'. This way the function can abort Tx process of multiple |
| 2523 | * descriptors per packet. |
| 2524 | * |
| 2525 | * INPUT: |
| 2526 | * struct mv643xx_private *mp Ethernet Port Control srtuct. |
| 2527 | * struct pkt_info *p_pkt_info User packet buffer. |
| 2528 | * |
| 2529 | * OUTPUT: |
| 2530 | * Tx ring 'curr' and 'first' indexes are updated. |
| 2531 | * |
| 2532 | * RETURN: |
| 2533 | * ETH_QUEUE_FULL in case of Tx resource error. |
| 2534 | * ETH_ERROR in case the routine can not access Tx desc ring. |
| 2535 | * ETH_QUEUE_LAST_RESOURCE if the routine uses the last Tx resource. |
| 2536 | * ETH_OK otherwise. |
| 2537 | * |
| 2538 | */ |
| 2539 | #ifdef MV643XX_CHECKSUM_OFFLOAD_TX |
| 2540 | /* |
| 2541 | * Modified to include the first descriptor pointer in case of SG |
| 2542 | */ |
| 2543 | static ETH_FUNC_RET_STATUS eth_port_send(struct mv643xx_private *mp, |
| 2544 | struct pkt_info *p_pkt_info) |
| 2545 | { |
| 2546 | int tx_desc_curr, tx_desc_used, tx_first_desc, tx_next_desc; |
| 2547 | struct eth_tx_desc *current_descriptor; |
| 2548 | struct eth_tx_desc *first_descriptor; |
| 2549 | u32 command; |
| 2550 | |
| 2551 | /* Do not process Tx ring in case of Tx ring resource error */ |
| 2552 | if (mp->tx_resource_err) |
| 2553 | return ETH_QUEUE_FULL; |
| 2554 | |
| 2555 | /* |
| 2556 | * The hardware requires that each buffer that is <= 8 bytes |
| 2557 | * in length must be aligned on an 8 byte boundary. |
| 2558 | */ |
| 2559 | if (p_pkt_info->byte_cnt <= 8 && p_pkt_info->buf_ptr & 0x7) { |
| 2560 | printk(KERN_ERR |
| 2561 | "mv643xx_eth port %d: packet size <= 8 problem\n", |
| 2562 | mp->port_num); |
| 2563 | return ETH_ERROR; |
| 2564 | } |
| 2565 | |
Dale Farnsworth | b111ceb | 2005-09-02 10:25:24 -0700 | [diff] [blame] | 2566 | mp->tx_ring_skbs++; |
| 2567 | BUG_ON(mp->tx_ring_skbs > mp->tx_ring_size); |
| 2568 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2569 | /* Get the Tx Desc ring indexes */ |
| 2570 | tx_desc_curr = mp->tx_curr_desc_q; |
| 2571 | tx_desc_used = mp->tx_used_desc_q; |
| 2572 | |
| 2573 | current_descriptor = &mp->p_tx_desc_area[tx_desc_curr]; |
| 2574 | |
| 2575 | tx_next_desc = (tx_desc_curr + 1) % mp->tx_ring_size; |
| 2576 | |
| 2577 | current_descriptor->buf_ptr = p_pkt_info->buf_ptr; |
| 2578 | current_descriptor->byte_cnt = p_pkt_info->byte_cnt; |
| 2579 | current_descriptor->l4i_chk = p_pkt_info->l4i_chk; |
| 2580 | mp->tx_skb[tx_desc_curr] = p_pkt_info->return_info; |
| 2581 | |
| 2582 | command = p_pkt_info->cmd_sts | ETH_ZERO_PADDING | ETH_GEN_CRC | |
| 2583 | ETH_BUFFER_OWNED_BY_DMA; |
| 2584 | if (command & ETH_TX_FIRST_DESC) { |
| 2585 | tx_first_desc = tx_desc_curr; |
| 2586 | mp->tx_first_desc_q = tx_first_desc; |
| 2587 | first_descriptor = current_descriptor; |
| 2588 | mp->tx_first_command = command; |
| 2589 | } else { |
| 2590 | tx_first_desc = mp->tx_first_desc_q; |
| 2591 | first_descriptor = &mp->p_tx_desc_area[tx_first_desc]; |
| 2592 | BUG_ON(first_descriptor == NULL); |
| 2593 | current_descriptor->cmd_sts = command; |
| 2594 | } |
| 2595 | |
| 2596 | if (command & ETH_TX_LAST_DESC) { |
| 2597 | wmb(); |
| 2598 | first_descriptor->cmd_sts = mp->tx_first_command; |
| 2599 | |
| 2600 | wmb(); |
| 2601 | ETH_ENABLE_TX_QUEUE(mp->port_num); |
| 2602 | |
| 2603 | /* |
| 2604 | * Finish Tx packet. Update first desc in case of Tx resource |
| 2605 | * error */ |
| 2606 | tx_first_desc = tx_next_desc; |
| 2607 | mp->tx_first_desc_q = tx_first_desc; |
| 2608 | } |
| 2609 | |
| 2610 | /* Check for ring index overlap in the Tx desc ring */ |
| 2611 | if (tx_next_desc == tx_desc_used) { |
| 2612 | mp->tx_resource_err = 1; |
| 2613 | mp->tx_curr_desc_q = tx_first_desc; |
| 2614 | |
| 2615 | return ETH_QUEUE_LAST_RESOURCE; |
| 2616 | } |
| 2617 | |
| 2618 | mp->tx_curr_desc_q = tx_next_desc; |
| 2619 | |
| 2620 | return ETH_OK; |
| 2621 | } |
| 2622 | #else |
| 2623 | static ETH_FUNC_RET_STATUS eth_port_send(struct mv643xx_private *mp, |
| 2624 | struct pkt_info *p_pkt_info) |
| 2625 | { |
| 2626 | int tx_desc_curr; |
| 2627 | int tx_desc_used; |
| 2628 | struct eth_tx_desc *current_descriptor; |
| 2629 | unsigned int command_status; |
| 2630 | |
| 2631 | /* Do not process Tx ring in case of Tx ring resource error */ |
| 2632 | if (mp->tx_resource_err) |
| 2633 | return ETH_QUEUE_FULL; |
| 2634 | |
Dale Farnsworth | b111ceb | 2005-09-02 10:25:24 -0700 | [diff] [blame] | 2635 | mp->tx_ring_skbs++; |
| 2636 | BUG_ON(mp->tx_ring_skbs > mp->tx_ring_size); |
| 2637 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2638 | /* Get the Tx Desc ring indexes */ |
| 2639 | tx_desc_curr = mp->tx_curr_desc_q; |
| 2640 | tx_desc_used = mp->tx_used_desc_q; |
| 2641 | current_descriptor = &mp->p_tx_desc_area[tx_desc_curr]; |
| 2642 | |
| 2643 | command_status = p_pkt_info->cmd_sts | ETH_ZERO_PADDING | ETH_GEN_CRC; |
| 2644 | current_descriptor->buf_ptr = p_pkt_info->buf_ptr; |
| 2645 | current_descriptor->byte_cnt = p_pkt_info->byte_cnt; |
| 2646 | mp->tx_skb[tx_desc_curr] = p_pkt_info->return_info; |
| 2647 | |
| 2648 | /* Set last desc with DMA ownership and interrupt enable. */ |
| 2649 | wmb(); |
| 2650 | current_descriptor->cmd_sts = command_status | |
| 2651 | ETH_BUFFER_OWNED_BY_DMA | ETH_TX_ENABLE_INTERRUPT; |
| 2652 | |
| 2653 | wmb(); |
| 2654 | ETH_ENABLE_TX_QUEUE(mp->port_num); |
| 2655 | |
| 2656 | /* Finish Tx packet. Update first desc in case of Tx resource error */ |
| 2657 | tx_desc_curr = (tx_desc_curr + 1) % mp->tx_ring_size; |
| 2658 | |
| 2659 | /* Update the current descriptor */ |
| 2660 | mp->tx_curr_desc_q = tx_desc_curr; |
| 2661 | |
| 2662 | /* Check for ring index overlap in the Tx desc ring */ |
| 2663 | if (tx_desc_curr == tx_desc_used) { |
| 2664 | mp->tx_resource_err = 1; |
| 2665 | return ETH_QUEUE_LAST_RESOURCE; |
| 2666 | } |
| 2667 | |
| 2668 | return ETH_OK; |
| 2669 | } |
| 2670 | #endif |
| 2671 | |
| 2672 | /* |
| 2673 | * eth_tx_return_desc - Free all used Tx descriptors |
| 2674 | * |
| 2675 | * DESCRIPTION: |
| 2676 | * This routine returns the transmitted packet information to the caller. |
| 2677 | * It uses the 'first' index to support Tx desc return in case a transmit |
| 2678 | * of a packet spanned over multiple buffer still in process. |
| 2679 | * In case the Tx queue was in "resource error" condition, where there are |
| 2680 | * no available Tx resources, the function resets the resource error flag. |
| 2681 | * |
| 2682 | * INPUT: |
| 2683 | * struct mv643xx_private *mp Ethernet Port Control srtuct. |
| 2684 | * struct pkt_info *p_pkt_info User packet buffer. |
| 2685 | * |
| 2686 | * OUTPUT: |
| 2687 | * Tx ring 'first' and 'used' indexes are updated. |
| 2688 | * |
| 2689 | * RETURN: |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2690 | * ETH_OK on success |
| 2691 | * ETH_ERROR otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2692 | * |
| 2693 | */ |
| 2694 | static ETH_FUNC_RET_STATUS eth_tx_return_desc(struct mv643xx_private *mp, |
| 2695 | struct pkt_info *p_pkt_info) |
| 2696 | { |
| 2697 | int tx_desc_used; |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2698 | int tx_busy_desc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2699 | struct eth_tx_desc *p_tx_desc_used; |
| 2700 | unsigned int command_status; |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2701 | unsigned long flags; |
| 2702 | int err = ETH_OK; |
| 2703 | |
| 2704 | spin_lock_irqsave(&mp->lock, flags); |
| 2705 | |
| 2706 | #ifdef MV643XX_CHECKSUM_OFFLOAD_TX |
| 2707 | tx_busy_desc = mp->tx_first_desc_q; |
| 2708 | #else |
| 2709 | tx_busy_desc = mp->tx_curr_desc_q; |
| 2710 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2711 | |
| 2712 | /* Get the Tx Desc ring indexes */ |
| 2713 | tx_desc_used = mp->tx_used_desc_q; |
| 2714 | |
| 2715 | p_tx_desc_used = &mp->p_tx_desc_area[tx_desc_used]; |
| 2716 | |
| 2717 | /* Sanity check */ |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2718 | if (p_tx_desc_used == NULL) { |
| 2719 | err = ETH_ERROR; |
| 2720 | goto out; |
| 2721 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2722 | |
| 2723 | /* Stop release. About to overlap the current available Tx descriptor */ |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2724 | if (tx_desc_used == tx_busy_desc && !mp->tx_resource_err) { |
| 2725 | err = ETH_ERROR; |
| 2726 | goto out; |
| 2727 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2728 | |
| 2729 | command_status = p_tx_desc_used->cmd_sts; |
| 2730 | |
| 2731 | /* Still transmitting... */ |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2732 | if (command_status & (ETH_BUFFER_OWNED_BY_DMA)) { |
| 2733 | err = ETH_ERROR; |
| 2734 | goto out; |
| 2735 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | |
| 2737 | /* Pass the packet information to the caller */ |
| 2738 | p_pkt_info->cmd_sts = command_status; |
| 2739 | p_pkt_info->return_info = mp->tx_skb[tx_desc_used]; |
Paolo Galtieri | 4eaa3cb | 2006-01-16 16:48:58 -0700 | [diff] [blame] | 2740 | p_pkt_info->buf_ptr = p_tx_desc_used->buf_ptr; |
| 2741 | p_pkt_info->byte_cnt = p_tx_desc_used->byte_cnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2742 | mp->tx_skb[tx_desc_used] = NULL; |
| 2743 | |
| 2744 | /* Update the next descriptor to release. */ |
| 2745 | mp->tx_used_desc_q = (tx_desc_used + 1) % mp->tx_ring_size; |
| 2746 | |
| 2747 | /* Any Tx return cancels the Tx resource error status */ |
| 2748 | mp->tx_resource_err = 0; |
| 2749 | |
Dale Farnsworth | b111ceb | 2005-09-02 10:25:24 -0700 | [diff] [blame] | 2750 | BUG_ON(mp->tx_ring_skbs == 0); |
| 2751 | mp->tx_ring_skbs--; |
| 2752 | |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2753 | out: |
| 2754 | spin_unlock_irqrestore(&mp->lock, flags); |
| 2755 | |
| 2756 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2757 | } |
| 2758 | |
| 2759 | /* |
| 2760 | * eth_port_receive - Get received information from Rx ring. |
| 2761 | * |
| 2762 | * DESCRIPTION: |
| 2763 | * This routine returns the received data to the caller. There is no |
| 2764 | * data copying during routine operation. All information is returned |
| 2765 | * using pointer to packet information struct passed from the caller. |
| 2766 | * If the routine exhausts Rx ring resources then the resource error flag |
| 2767 | * is set. |
| 2768 | * |
| 2769 | * INPUT: |
| 2770 | * struct mv643xx_private *mp Ethernet Port Control srtuct. |
| 2771 | * struct pkt_info *p_pkt_info User packet buffer. |
| 2772 | * |
| 2773 | * OUTPUT: |
| 2774 | * Rx ring current and used indexes are updated. |
| 2775 | * |
| 2776 | * RETURN: |
| 2777 | * ETH_ERROR in case the routine can not access Rx desc ring. |
| 2778 | * ETH_QUEUE_FULL if Rx ring resources are exhausted. |
| 2779 | * ETH_END_OF_JOB if there is no received data. |
| 2780 | * ETH_OK otherwise. |
| 2781 | */ |
| 2782 | static ETH_FUNC_RET_STATUS eth_port_receive(struct mv643xx_private *mp, |
| 2783 | struct pkt_info *p_pkt_info) |
| 2784 | { |
| 2785 | int rx_next_curr_desc, rx_curr_desc, rx_used_desc; |
| 2786 | volatile struct eth_rx_desc *p_rx_desc; |
| 2787 | unsigned int command_status; |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2788 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2789 | |
| 2790 | /* Do not process Rx ring in case of Rx ring resource error */ |
| 2791 | if (mp->rx_resource_err) |
| 2792 | return ETH_QUEUE_FULL; |
| 2793 | |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2794 | spin_lock_irqsave(&mp->lock, flags); |
| 2795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2796 | /* Get the Rx Desc ring 'curr and 'used' indexes */ |
| 2797 | rx_curr_desc = mp->rx_curr_desc_q; |
| 2798 | rx_used_desc = mp->rx_used_desc_q; |
| 2799 | |
| 2800 | p_rx_desc = &mp->p_rx_desc_area[rx_curr_desc]; |
| 2801 | |
| 2802 | /* The following parameters are used to save readings from memory */ |
| 2803 | command_status = p_rx_desc->cmd_sts; |
| 2804 | rmb(); |
| 2805 | |
| 2806 | /* Nothing to receive... */ |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2807 | if (command_status & (ETH_BUFFER_OWNED_BY_DMA)) { |
| 2808 | spin_unlock_irqrestore(&mp->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2809 | return ETH_END_OF_JOB; |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2810 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2811 | |
| 2812 | p_pkt_info->byte_cnt = (p_rx_desc->byte_cnt) - RX_BUF_OFFSET; |
| 2813 | p_pkt_info->cmd_sts = command_status; |
| 2814 | p_pkt_info->buf_ptr = (p_rx_desc->buf_ptr) + RX_BUF_OFFSET; |
| 2815 | p_pkt_info->return_info = mp->rx_skb[rx_curr_desc]; |
| 2816 | p_pkt_info->l4i_chk = p_rx_desc->buf_size; |
| 2817 | |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 2818 | /* |
| 2819 | * Clean the return info field to indicate that the |
| 2820 | * packet has been moved to the upper layers |
| 2821 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2822 | mp->rx_skb[rx_curr_desc] = NULL; |
| 2823 | |
| 2824 | /* Update current index in data structure */ |
| 2825 | rx_next_curr_desc = (rx_curr_desc + 1) % mp->rx_ring_size; |
| 2826 | mp->rx_curr_desc_q = rx_next_curr_desc; |
| 2827 | |
| 2828 | /* Rx descriptors exhausted. Set the Rx ring resource error flag */ |
| 2829 | if (rx_next_curr_desc == rx_used_desc) |
| 2830 | mp->rx_resource_err = 1; |
| 2831 | |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2832 | spin_unlock_irqrestore(&mp->lock, flags); |
| 2833 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2834 | return ETH_OK; |
| 2835 | } |
| 2836 | |
| 2837 | /* |
| 2838 | * eth_rx_return_buff - Returns a Rx buffer back to the Rx ring. |
| 2839 | * |
| 2840 | * DESCRIPTION: |
| 2841 | * This routine returns a Rx buffer back to the Rx ring. It retrieves the |
| 2842 | * next 'used' descriptor and attached the returned buffer to it. |
| 2843 | * In case the Rx ring was in "resource error" condition, where there are |
| 2844 | * no available Rx resources, the function resets the resource error flag. |
| 2845 | * |
| 2846 | * INPUT: |
| 2847 | * struct mv643xx_private *mp Ethernet Port Control srtuct. |
| 2848 | * struct pkt_info *p_pkt_info Information on returned buffer. |
| 2849 | * |
| 2850 | * OUTPUT: |
| 2851 | * New available Rx resource in Rx descriptor ring. |
| 2852 | * |
| 2853 | * RETURN: |
| 2854 | * ETH_ERROR in case the routine can not access Rx desc ring. |
| 2855 | * ETH_OK otherwise. |
| 2856 | */ |
| 2857 | static ETH_FUNC_RET_STATUS eth_rx_return_buff(struct mv643xx_private *mp, |
| 2858 | struct pkt_info *p_pkt_info) |
| 2859 | { |
| 2860 | int used_rx_desc; /* Where to return Rx resource */ |
| 2861 | volatile struct eth_rx_desc *p_used_rx_desc; |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2862 | unsigned long flags; |
| 2863 | |
| 2864 | spin_lock_irqsave(&mp->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2865 | |
| 2866 | /* Get 'used' Rx descriptor */ |
| 2867 | used_rx_desc = mp->rx_used_desc_q; |
| 2868 | p_used_rx_desc = &mp->p_rx_desc_area[used_rx_desc]; |
| 2869 | |
| 2870 | p_used_rx_desc->buf_ptr = p_pkt_info->buf_ptr; |
| 2871 | p_used_rx_desc->buf_size = p_pkt_info->byte_cnt; |
| 2872 | mp->rx_skb[used_rx_desc] = p_pkt_info->return_info; |
| 2873 | |
| 2874 | /* Flush the write pipe */ |
| 2875 | |
| 2876 | /* Return the descriptor to DMA ownership */ |
| 2877 | wmb(); |
| 2878 | p_used_rx_desc->cmd_sts = |
| 2879 | ETH_BUFFER_OWNED_BY_DMA | ETH_RX_ENABLE_INTERRUPT; |
| 2880 | wmb(); |
| 2881 | |
| 2882 | /* Move the used descriptor pointer to the next descriptor */ |
| 2883 | mp->rx_used_desc_q = (used_rx_desc + 1) % mp->rx_ring_size; |
| 2884 | |
| 2885 | /* Any Rx return cancels the Rx resource error status */ |
| 2886 | mp->rx_resource_err = 0; |
| 2887 | |
Dale Farnsworth | 8f51870 | 2006-01-16 16:56:30 -0700 | [diff] [blame] | 2888 | spin_unlock_irqrestore(&mp->lock, flags); |
| 2889 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2890 | return ETH_OK; |
| 2891 | } |
| 2892 | |
| 2893 | /************* Begin ethtool support *************************/ |
| 2894 | |
| 2895 | struct mv643xx_stats { |
| 2896 | char stat_string[ETH_GSTRING_LEN]; |
| 2897 | int sizeof_stat; |
| 2898 | int stat_offset; |
| 2899 | }; |
| 2900 | |
| 2901 | #define MV643XX_STAT(m) sizeof(((struct mv643xx_private *)0)->m), \ |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 2902 | offsetof(struct mv643xx_private, m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2903 | |
| 2904 | static const struct mv643xx_stats mv643xx_gstrings_stats[] = { |
| 2905 | { "rx_packets", MV643XX_STAT(stats.rx_packets) }, |
| 2906 | { "tx_packets", MV643XX_STAT(stats.tx_packets) }, |
| 2907 | { "rx_bytes", MV643XX_STAT(stats.rx_bytes) }, |
| 2908 | { "tx_bytes", MV643XX_STAT(stats.tx_bytes) }, |
| 2909 | { "rx_errors", MV643XX_STAT(stats.rx_errors) }, |
| 2910 | { "tx_errors", MV643XX_STAT(stats.tx_errors) }, |
| 2911 | { "rx_dropped", MV643XX_STAT(stats.rx_dropped) }, |
| 2912 | { "tx_dropped", MV643XX_STAT(stats.tx_dropped) }, |
| 2913 | { "good_octets_received", MV643XX_STAT(mib_counters.good_octets_received) }, |
| 2914 | { "bad_octets_received", MV643XX_STAT(mib_counters.bad_octets_received) }, |
| 2915 | { "internal_mac_transmit_err", MV643XX_STAT(mib_counters.internal_mac_transmit_err) }, |
| 2916 | { "good_frames_received", MV643XX_STAT(mib_counters.good_frames_received) }, |
| 2917 | { "bad_frames_received", MV643XX_STAT(mib_counters.bad_frames_received) }, |
| 2918 | { "broadcast_frames_received", MV643XX_STAT(mib_counters.broadcast_frames_received) }, |
| 2919 | { "multicast_frames_received", MV643XX_STAT(mib_counters.multicast_frames_received) }, |
| 2920 | { "frames_64_octets", MV643XX_STAT(mib_counters.frames_64_octets) }, |
| 2921 | { "frames_65_to_127_octets", MV643XX_STAT(mib_counters.frames_65_to_127_octets) }, |
| 2922 | { "frames_128_to_255_octets", MV643XX_STAT(mib_counters.frames_128_to_255_octets) }, |
| 2923 | { "frames_256_to_511_octets", MV643XX_STAT(mib_counters.frames_256_to_511_octets) }, |
| 2924 | { "frames_512_to_1023_octets", MV643XX_STAT(mib_counters.frames_512_to_1023_octets) }, |
| 2925 | { "frames_1024_to_max_octets", MV643XX_STAT(mib_counters.frames_1024_to_max_octets) }, |
| 2926 | { "good_octets_sent", MV643XX_STAT(mib_counters.good_octets_sent) }, |
| 2927 | { "good_frames_sent", MV643XX_STAT(mib_counters.good_frames_sent) }, |
| 2928 | { "excessive_collision", MV643XX_STAT(mib_counters.excessive_collision) }, |
| 2929 | { "multicast_frames_sent", MV643XX_STAT(mib_counters.multicast_frames_sent) }, |
| 2930 | { "broadcast_frames_sent", MV643XX_STAT(mib_counters.broadcast_frames_sent) }, |
| 2931 | { "unrec_mac_control_received", MV643XX_STAT(mib_counters.unrec_mac_control_received) }, |
| 2932 | { "fc_sent", MV643XX_STAT(mib_counters.fc_sent) }, |
| 2933 | { "good_fc_received", MV643XX_STAT(mib_counters.good_fc_received) }, |
| 2934 | { "bad_fc_received", MV643XX_STAT(mib_counters.bad_fc_received) }, |
| 2935 | { "undersize_received", MV643XX_STAT(mib_counters.undersize_received) }, |
| 2936 | { "fragments_received", MV643XX_STAT(mib_counters.fragments_received) }, |
| 2937 | { "oversize_received", MV643XX_STAT(mib_counters.oversize_received) }, |
| 2938 | { "jabber_received", MV643XX_STAT(mib_counters.jabber_received) }, |
| 2939 | { "mac_receive_error", MV643XX_STAT(mib_counters.mac_receive_error) }, |
| 2940 | { "bad_crc_event", MV643XX_STAT(mib_counters.bad_crc_event) }, |
| 2941 | { "collision", MV643XX_STAT(mib_counters.collision) }, |
| 2942 | { "late_collision", MV643XX_STAT(mib_counters.late_collision) }, |
| 2943 | }; |
| 2944 | |
| 2945 | #define MV643XX_STATS_LEN \ |
| 2946 | sizeof(mv643xx_gstrings_stats) / sizeof(struct mv643xx_stats) |
| 2947 | |
| 2948 | static int |
| 2949 | mv643xx_get_settings(struct net_device *netdev, struct ethtool_cmd *ecmd) |
| 2950 | { |
| 2951 | struct mv643xx_private *mp = netdev->priv; |
| 2952 | int port_num = mp->port_num; |
| 2953 | int autoneg = eth_port_autoneg_supported(port_num); |
| 2954 | int mode_10_bit; |
| 2955 | int auto_duplex; |
| 2956 | int half_duplex = 0; |
| 2957 | int full_duplex = 0; |
| 2958 | int auto_speed; |
| 2959 | int speed_10 = 0; |
| 2960 | int speed_100 = 0; |
| 2961 | int speed_1000 = 0; |
| 2962 | |
| 2963 | u32 pcs = mv_read(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num)); |
| 2964 | u32 psr = mv_read(MV643XX_ETH_PORT_STATUS_REG(port_num)); |
| 2965 | |
| 2966 | mode_10_bit = psr & MV643XX_ETH_PORT_STATUS_MODE_10_BIT; |
| 2967 | |
| 2968 | if (mode_10_bit) { |
| 2969 | ecmd->supported = SUPPORTED_10baseT_Half; |
| 2970 | } else { |
| 2971 | ecmd->supported = (SUPPORTED_10baseT_Half | |
| 2972 | SUPPORTED_10baseT_Full | |
| 2973 | SUPPORTED_100baseT_Half | |
| 2974 | SUPPORTED_100baseT_Full | |
| 2975 | SUPPORTED_1000baseT_Full | |
| 2976 | (autoneg ? SUPPORTED_Autoneg : 0) | |
| 2977 | SUPPORTED_TP); |
| 2978 | |
| 2979 | auto_duplex = !(pcs & MV643XX_ETH_DISABLE_AUTO_NEG_FOR_DUPLX); |
| 2980 | auto_speed = !(pcs & MV643XX_ETH_DISABLE_AUTO_NEG_SPEED_GMII); |
| 2981 | |
| 2982 | ecmd->advertising = ADVERTISED_TP; |
| 2983 | |
| 2984 | if (autoneg) { |
| 2985 | ecmd->advertising |= ADVERTISED_Autoneg; |
| 2986 | |
| 2987 | if (auto_duplex) { |
| 2988 | half_duplex = 1; |
| 2989 | full_duplex = 1; |
| 2990 | } else { |
| 2991 | if (pcs & MV643XX_ETH_SET_FULL_DUPLEX_MODE) |
| 2992 | full_duplex = 1; |
| 2993 | else |
| 2994 | half_duplex = 1; |
| 2995 | } |
| 2996 | |
| 2997 | if (auto_speed) { |
| 2998 | speed_10 = 1; |
| 2999 | speed_100 = 1; |
| 3000 | speed_1000 = 1; |
| 3001 | } else { |
| 3002 | if (pcs & MV643XX_ETH_SET_GMII_SPEED_TO_1000) |
| 3003 | speed_1000 = 1; |
| 3004 | else if (pcs & MV643XX_ETH_SET_MII_SPEED_TO_100) |
| 3005 | speed_100 = 1; |
| 3006 | else |
| 3007 | speed_10 = 1; |
| 3008 | } |
| 3009 | |
| 3010 | if (speed_10 & half_duplex) |
| 3011 | ecmd->advertising |= ADVERTISED_10baseT_Half; |
| 3012 | if (speed_10 & full_duplex) |
| 3013 | ecmd->advertising |= ADVERTISED_10baseT_Full; |
| 3014 | if (speed_100 & half_duplex) |
| 3015 | ecmd->advertising |= ADVERTISED_100baseT_Half; |
| 3016 | if (speed_100 & full_duplex) |
| 3017 | ecmd->advertising |= ADVERTISED_100baseT_Full; |
| 3018 | if (speed_1000) |
| 3019 | ecmd->advertising |= ADVERTISED_1000baseT_Full; |
| 3020 | } |
| 3021 | } |
| 3022 | |
| 3023 | ecmd->port = PORT_TP; |
| 3024 | ecmd->phy_address = ethernet_phy_get(port_num); |
| 3025 | |
| 3026 | ecmd->transceiver = XCVR_EXTERNAL; |
| 3027 | |
| 3028 | if (netif_carrier_ok(netdev)) { |
| 3029 | if (mode_10_bit) |
| 3030 | ecmd->speed = SPEED_10; |
| 3031 | else { |
| 3032 | if (psr & MV643XX_ETH_PORT_STATUS_GMII_1000) |
| 3033 | ecmd->speed = SPEED_1000; |
| 3034 | else if (psr & MV643XX_ETH_PORT_STATUS_MII_100) |
| 3035 | ecmd->speed = SPEED_100; |
| 3036 | else |
| 3037 | ecmd->speed = SPEED_10; |
| 3038 | } |
| 3039 | |
| 3040 | if (psr & MV643XX_ETH_PORT_STATUS_FULL_DUPLEX) |
| 3041 | ecmd->duplex = DUPLEX_FULL; |
| 3042 | else |
| 3043 | ecmd->duplex = DUPLEX_HALF; |
| 3044 | } else { |
| 3045 | ecmd->speed = -1; |
| 3046 | ecmd->duplex = -1; |
| 3047 | } |
| 3048 | |
| 3049 | ecmd->autoneg = autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE; |
| 3050 | return 0; |
| 3051 | } |
| 3052 | |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 3053 | static void mv643xx_get_drvinfo(struct net_device *netdev, |
| 3054 | struct ethtool_drvinfo *drvinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3055 | { |
| 3056 | strncpy(drvinfo->driver, mv643xx_driver_name, 32); |
| 3057 | strncpy(drvinfo->version, mv643xx_driver_version, 32); |
| 3058 | strncpy(drvinfo->fw_version, "N/A", 32); |
| 3059 | strncpy(drvinfo->bus_info, "mv643xx", 32); |
| 3060 | drvinfo->n_stats = MV643XX_STATS_LEN; |
| 3061 | } |
| 3062 | |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 3063 | static int mv643xx_get_stats_count(struct net_device *netdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3064 | { |
| 3065 | return MV643XX_STATS_LEN; |
| 3066 | } |
| 3067 | |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 3068 | static void mv643xx_get_ethtool_stats(struct net_device *netdev, |
| 3069 | struct ethtool_stats *stats, uint64_t *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3070 | { |
| 3071 | struct mv643xx_private *mp = netdev->priv; |
| 3072 | int i; |
| 3073 | |
| 3074 | eth_update_mib_counters(mp); |
| 3075 | |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 3076 | for (i = 0; i < MV643XX_STATS_LEN; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3077 | char *p = (char *)mp+mv643xx_gstrings_stats[i].stat_offset; |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 3078 | data[i] = (mv643xx_gstrings_stats[i].sizeof_stat == |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3079 | sizeof(uint64_t)) ? *(uint64_t *)p : *(uint32_t *)p; |
| 3080 | } |
| 3081 | } |
| 3082 | |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 3083 | static void mv643xx_get_strings(struct net_device *netdev, uint32_t stringset, |
| 3084 | uint8_t *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3085 | { |
| 3086 | int i; |
| 3087 | |
| 3088 | switch(stringset) { |
| 3089 | case ETH_SS_STATS: |
| 3090 | for (i=0; i < MV643XX_STATS_LEN; i++) { |
Dale Farnsworth | b4de905 | 2006-01-27 01:04:43 -0700 | [diff] [blame] | 3091 | memcpy(data + i * ETH_GSTRING_LEN, |
| 3092 | mv643xx_gstrings_stats[i].stat_string, |
| 3093 | ETH_GSTRING_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3094 | } |
| 3095 | break; |
| 3096 | } |
| 3097 | } |
| 3098 | |
| 3099 | static struct ethtool_ops mv643xx_ethtool_ops = { |
| 3100 | .get_settings = mv643xx_get_settings, |
| 3101 | .get_drvinfo = mv643xx_get_drvinfo, |
| 3102 | .get_link = ethtool_op_get_link, |
| 3103 | .get_sg = ethtool_op_get_sg, |
| 3104 | .set_sg = ethtool_op_set_sg, |
| 3105 | .get_strings = mv643xx_get_strings, |
| 3106 | .get_stats_count = mv643xx_get_stats_count, |
| 3107 | .get_ethtool_stats = mv643xx_get_ethtool_stats, |
| 3108 | }; |
| 3109 | |
| 3110 | /************* End ethtool support *************************/ |