Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * drivers/net/gianfar.c |
| 3 | * |
| 4 | * Gianfar Ethernet Driver |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 5 | * This driver is designed for the non-CPM ethernet controllers |
| 6 | * on the 85xx and 83xx family of integrated processors |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Based on 8260_io/fcc_enet.c |
| 8 | * |
| 9 | * Author: Andy Fleming |
Kumar Gala | 4c8d3d9 | 2005-11-13 16:06:30 -0800 | [diff] [blame] | 10 | * Maintainer: Kumar Gala |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 12 | * Copyright (c) 2002-2006 Freescale Semiconductor, Inc. |
Sergei Shtylyov | 538cc7e | 2007-02-15 17:56:01 +0400 | [diff] [blame] | 13 | * Copyright (c) 2007 MontaVista Software, Inc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * |
| 15 | * This program is free software; you can redistribute it and/or modify it |
| 16 | * under the terms of the GNU General Public License as published by the |
| 17 | * Free Software Foundation; either version 2 of the License, or (at your |
| 18 | * option) any later version. |
| 19 | * |
| 20 | * Gianfar: AKA Lambda Draconis, "Dragon" |
| 21 | * RA 11 31 24.2 |
| 22 | * Dec +69 19 52 |
| 23 | * V 3.84 |
| 24 | * B-V +1.62 |
| 25 | * |
| 26 | * Theory of operation |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 27 | * |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 28 | * The driver is initialized through of_device. Configuration information |
| 29 | * is therefore conveyed through an OF-style device tree. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | * |
| 31 | * The Gianfar Ethernet Controller uses a ring of buffer |
| 32 | * descriptors. The beginning is indicated by a register |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 33 | * pointing to the physical address of the start of the ring. |
| 34 | * The end is determined by a "wrap" bit being set in the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | * last descriptor of the ring. |
| 36 | * |
| 37 | * When a packet is received, the RXF bit in the |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 38 | * IEVENT register is set, triggering an interrupt when the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | * corresponding bit in the IMASK register is also set (if |
| 40 | * interrupt coalescing is active, then the interrupt may not |
| 41 | * happen immediately, but will wait until either a set number |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 42 | * of frames or amount of time have passed). In NAPI, the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | * interrupt handler will signal there is work to be done, and |
Francois Romieu | 0aa1538 | 2008-07-11 00:33:52 +0200 | [diff] [blame] | 44 | * exit. This method will start at the last known empty |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 45 | * descriptor, and process every subsequent descriptor until there |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | * are none left with data (NAPI will stop after a set number of |
| 47 | * packets to give time to other tasks, but will eventually |
| 48 | * process all the packets). The data arrives inside a |
| 49 | * pre-allocated skb, and so after the skb is passed up to the |
| 50 | * stack, a new skb must be allocated, and the address field in |
| 51 | * the buffer descriptor must be updated to indicate this new |
| 52 | * skb. |
| 53 | * |
| 54 | * When the kernel requests that a packet be transmitted, the |
| 55 | * driver starts where it left off last time, and points the |
| 56 | * descriptor at the buffer which was passed in. The driver |
| 57 | * then informs the DMA engine that there are packets ready to |
| 58 | * be transmitted. Once the controller is finished transmitting |
| 59 | * the packet, an interrupt may be triggered (under the same |
| 60 | * conditions as for reception, but depending on the TXF bit). |
| 61 | * The driver then cleans up the buffer. |
| 62 | */ |
| 63 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #include <linux/string.h> |
| 66 | #include <linux/errno.h> |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 67 | #include <linux/unistd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #include <linux/slab.h> |
| 69 | #include <linux/interrupt.h> |
| 70 | #include <linux/init.h> |
| 71 | #include <linux/delay.h> |
| 72 | #include <linux/netdevice.h> |
| 73 | #include <linux/etherdevice.h> |
| 74 | #include <linux/skbuff.h> |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 75 | #include <linux/if_vlan.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | #include <linux/spinlock.h> |
| 77 | #include <linux/mm.h> |
Grant Likely | fe192a4 | 2009-04-25 12:53:12 +0000 | [diff] [blame] | 78 | #include <linux/of_mdio.h> |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 79 | #include <linux/of_platform.h> |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 80 | #include <linux/ip.h> |
| 81 | #include <linux/tcp.h> |
| 82 | #include <linux/udp.h> |
Kumar Gala | 9c07b884 | 2006-01-11 11:26:25 -0800 | [diff] [blame] | 83 | #include <linux/in.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | #include <asm/io.h> |
| 86 | #include <asm/irq.h> |
| 87 | #include <asm/uaccess.h> |
| 88 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | #include <linux/dma-mapping.h> |
| 90 | #include <linux/crc32.h> |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 91 | #include <linux/mii.h> |
| 92 | #include <linux/phy.h> |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 93 | #include <linux/phy_fixed.h> |
| 94 | #include <linux/of.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | #include "gianfar.h" |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 97 | #include "fsl_pq_mdio.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
| 99 | #define TX_TIMEOUT (1*HZ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | #undef BRIEF_GFAR_ERRORS |
| 101 | #undef VERBOSE_GFAR_ERRORS |
| 102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | const char gfar_driver_name[] = "Gianfar Ethernet"; |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 104 | const char gfar_driver_version[] = "1.3"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | static int gfar_enet_open(struct net_device *dev); |
| 107 | static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev); |
Sebastian Siewior | ab93990 | 2008-08-19 21:12:45 +0200 | [diff] [blame] | 108 | static void gfar_reset_task(struct work_struct *work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | static void gfar_timeout(struct net_device *dev); |
| 110 | static int gfar_close(struct net_device *dev); |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 111 | struct sk_buff *gfar_new_skb(struct net_device *dev); |
| 112 | static void gfar_new_rxbdp(struct net_device *dev, struct rxbd8 *bdp, |
| 113 | struct sk_buff *skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | static int gfar_set_mac_address(struct net_device *dev); |
| 115 | static int gfar_change_mtu(struct net_device *dev, int new_mtu); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 116 | static irqreturn_t gfar_error(int irq, void *dev_id); |
| 117 | static irqreturn_t gfar_transmit(int irq, void *dev_id); |
| 118 | static irqreturn_t gfar_interrupt(int irq, void *dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | static void adjust_link(struct net_device *dev); |
| 120 | static void init_registers(struct net_device *dev); |
| 121 | static int init_phy(struct net_device *dev); |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 122 | static int gfar_probe(struct of_device *ofdev, |
| 123 | const struct of_device_id *match); |
| 124 | static int gfar_remove(struct of_device *ofdev); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 125 | static void free_skb_resources(struct gfar_private *priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | static void gfar_set_multi(struct net_device *dev); |
| 127 | static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr); |
Kapil Juneja | d3c1287 | 2007-05-11 18:25:11 -0500 | [diff] [blame] | 128 | static void gfar_configure_serdes(struct net_device *dev); |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 129 | static int gfar_poll(struct napi_struct *napi, int budget); |
Vitaly Wool | f2d71c2 | 2006-11-07 13:27:02 +0300 | [diff] [blame] | 130 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 131 | static void gfar_netpoll(struct net_device *dev); |
| 132 | #endif |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 133 | int gfar_clean_rx_ring(struct net_device *dev, int rx_work_limit); |
Andy Fleming | f162b9d | 2008-05-02 13:00:30 -0500 | [diff] [blame] | 134 | static int gfar_clean_tx_ring(struct net_device *dev); |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 135 | static int gfar_process_frame(struct net_device *dev, struct sk_buff *skb, |
| 136 | int amount_pull); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 137 | static void gfar_vlan_rx_register(struct net_device *netdev, |
| 138 | struct vlan_group *grp); |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 139 | void gfar_halt(struct net_device *dev); |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 140 | static void gfar_halt_nodisable(struct net_device *dev); |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 141 | void gfar_start(struct net_device *dev); |
| 142 | static void gfar_clear_exact_match(struct net_device *dev); |
| 143 | static void gfar_set_mac_for_addr(struct net_device *dev, int num, u8 *addr); |
Andy Fleming | 26ccfc3 | 2009-03-10 12:58:28 +0000 | [diff] [blame] | 144 | static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | MODULE_AUTHOR("Freescale Semiconductor, Inc"); |
| 147 | MODULE_DESCRIPTION("Gianfar Ethernet Driver"); |
| 148 | MODULE_LICENSE("GPL"); |
| 149 | |
Andy Fleming | 26ccfc3 | 2009-03-10 12:58:28 +0000 | [diff] [blame] | 150 | static const struct net_device_ops gfar_netdev_ops = { |
| 151 | .ndo_open = gfar_enet_open, |
| 152 | .ndo_start_xmit = gfar_start_xmit, |
| 153 | .ndo_stop = gfar_close, |
| 154 | .ndo_change_mtu = gfar_change_mtu, |
| 155 | .ndo_set_multicast_list = gfar_set_multi, |
| 156 | .ndo_tx_timeout = gfar_timeout, |
| 157 | .ndo_do_ioctl = gfar_ioctl, |
| 158 | .ndo_vlan_rx_register = gfar_vlan_rx_register, |
Ben Hutchings | 240c102 | 2009-07-09 17:54:35 +0000 | [diff] [blame] | 159 | .ndo_set_mac_address = eth_mac_addr, |
| 160 | .ndo_validate_addr = eth_validate_addr, |
Andy Fleming | 26ccfc3 | 2009-03-10 12:58:28 +0000 | [diff] [blame] | 161 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 162 | .ndo_poll_controller = gfar_netpoll, |
| 163 | #endif |
| 164 | }; |
| 165 | |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 166 | /* Returns 1 if incoming frames use an FCB */ |
| 167 | static inline int gfar_uses_fcb(struct gfar_private *priv) |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 168 | { |
Dai Haruki | 77ecaf2 | 2008-12-16 15:30:48 -0800 | [diff] [blame] | 169 | return priv->vlgrp || priv->rx_csum_enable; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 170 | } |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 171 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 172 | static int gfar_of_init(struct net_device *dev) |
| 173 | { |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 174 | const char *model; |
| 175 | const char *ctype; |
| 176 | const void *mac_addr; |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 177 | u64 addr, size; |
| 178 | int err = 0; |
| 179 | struct gfar_private *priv = netdev_priv(dev); |
| 180 | struct device_node *np = priv->node; |
Andy Fleming | 4d7902f | 2009-02-04 16:43:44 -0800 | [diff] [blame] | 181 | const u32 *stash; |
| 182 | const u32 *stash_len; |
| 183 | const u32 *stash_idx; |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 184 | |
| 185 | if (!np || !of_device_is_available(np)) |
| 186 | return -ENODEV; |
| 187 | |
| 188 | /* get a pointer to the register memory */ |
| 189 | addr = of_translate_address(np, of_get_address(np, 0, &size, NULL)); |
| 190 | priv->regs = ioremap(addr, size); |
| 191 | |
| 192 | if (priv->regs == NULL) |
| 193 | return -ENOMEM; |
| 194 | |
| 195 | priv->interruptTransmit = irq_of_parse_and_map(np, 0); |
| 196 | |
| 197 | model = of_get_property(np, "model", NULL); |
| 198 | |
| 199 | /* If we aren't the FEC we have multiple interrupts */ |
| 200 | if (model && strcasecmp(model, "FEC")) { |
| 201 | priv->interruptReceive = irq_of_parse_and_map(np, 1); |
| 202 | |
| 203 | priv->interruptError = irq_of_parse_and_map(np, 2); |
| 204 | |
| 205 | if (priv->interruptTransmit < 0 || |
| 206 | priv->interruptReceive < 0 || |
| 207 | priv->interruptError < 0) { |
| 208 | err = -EINVAL; |
| 209 | goto err_out; |
| 210 | } |
| 211 | } |
| 212 | |
Andy Fleming | 4d7902f | 2009-02-04 16:43:44 -0800 | [diff] [blame] | 213 | stash = of_get_property(np, "bd-stash", NULL); |
| 214 | |
| 215 | if(stash) { |
| 216 | priv->device_flags |= FSL_GIANFAR_DEV_HAS_BD_STASHING; |
| 217 | priv->bd_stash_en = 1; |
| 218 | } |
| 219 | |
| 220 | stash_len = of_get_property(np, "rx-stash-len", NULL); |
| 221 | |
| 222 | if (stash_len) |
| 223 | priv->rx_stash_size = *stash_len; |
| 224 | |
| 225 | stash_idx = of_get_property(np, "rx-stash-idx", NULL); |
| 226 | |
| 227 | if (stash_idx) |
| 228 | priv->rx_stash_index = *stash_idx; |
| 229 | |
| 230 | if (stash_len || stash_idx) |
| 231 | priv->device_flags |= FSL_GIANFAR_DEV_HAS_BUF_STASHING; |
| 232 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 233 | mac_addr = of_get_mac_address(np); |
| 234 | if (mac_addr) |
| 235 | memcpy(dev->dev_addr, mac_addr, MAC_ADDR_LEN); |
| 236 | |
| 237 | if (model && !strcasecmp(model, "TSEC")) |
| 238 | priv->device_flags = |
| 239 | FSL_GIANFAR_DEV_HAS_GIGABIT | |
| 240 | FSL_GIANFAR_DEV_HAS_COALESCE | |
| 241 | FSL_GIANFAR_DEV_HAS_RMON | |
| 242 | FSL_GIANFAR_DEV_HAS_MULTI_INTR; |
| 243 | if (model && !strcasecmp(model, "eTSEC")) |
| 244 | priv->device_flags = |
| 245 | FSL_GIANFAR_DEV_HAS_GIGABIT | |
| 246 | FSL_GIANFAR_DEV_HAS_COALESCE | |
| 247 | FSL_GIANFAR_DEV_HAS_RMON | |
| 248 | FSL_GIANFAR_DEV_HAS_MULTI_INTR | |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 249 | FSL_GIANFAR_DEV_HAS_PADDING | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 250 | FSL_GIANFAR_DEV_HAS_CSUM | |
| 251 | FSL_GIANFAR_DEV_HAS_VLAN | |
| 252 | FSL_GIANFAR_DEV_HAS_MAGIC_PACKET | |
| 253 | FSL_GIANFAR_DEV_HAS_EXTENDED_HASH; |
| 254 | |
| 255 | ctype = of_get_property(np, "phy-connection-type", NULL); |
| 256 | |
| 257 | /* We only care about rgmii-id. The rest are autodetected */ |
| 258 | if (ctype && !strcmp(ctype, "rgmii-id")) |
| 259 | priv->interface = PHY_INTERFACE_MODE_RGMII_ID; |
| 260 | else |
| 261 | priv->interface = PHY_INTERFACE_MODE_MII; |
| 262 | |
| 263 | if (of_get_property(np, "fsl,magic-packet", NULL)) |
| 264 | priv->device_flags |= FSL_GIANFAR_DEV_HAS_MAGIC_PACKET; |
| 265 | |
Grant Likely | fe192a4 | 2009-04-25 12:53:12 +0000 | [diff] [blame] | 266 | priv->phy_node = of_parse_phandle(np, "phy-handle", 0); |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 267 | |
| 268 | /* Find the TBI PHY. If it's not there, we don't support SGMII */ |
Grant Likely | fe192a4 | 2009-04-25 12:53:12 +0000 | [diff] [blame] | 269 | priv->tbi_node = of_parse_phandle(np, "tbi-handle", 0); |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 270 | |
| 271 | return 0; |
| 272 | |
| 273 | err_out: |
| 274 | iounmap(priv->regs); |
| 275 | return err; |
| 276 | } |
| 277 | |
Clifford Wolf | 0faac9f | 2009-01-09 10:23:11 +0000 | [diff] [blame] | 278 | /* Ioctl MII Interface */ |
| 279 | static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) |
| 280 | { |
| 281 | struct gfar_private *priv = netdev_priv(dev); |
| 282 | |
| 283 | if (!netif_running(dev)) |
| 284 | return -EINVAL; |
| 285 | |
| 286 | if (!priv->phydev) |
| 287 | return -ENODEV; |
| 288 | |
| 289 | return phy_mii_ioctl(priv->phydev, if_mii(rq), cmd); |
| 290 | } |
| 291 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 292 | /* Set up the ethernet device structure, private data, |
| 293 | * and anything else we need before we start */ |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 294 | static int gfar_probe(struct of_device *ofdev, |
| 295 | const struct of_device_id *match) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | { |
| 297 | u32 tempval; |
| 298 | struct net_device *dev = NULL; |
| 299 | struct gfar_private *priv = NULL; |
Dai Haruki | c50a5d9 | 2008-12-17 16:51:32 -0800 | [diff] [blame] | 300 | int err = 0; |
| 301 | int len_devname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
| 303 | /* Create an ethernet device instance */ |
| 304 | dev = alloc_etherdev(sizeof (*priv)); |
| 305 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 306 | if (NULL == dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | return -ENOMEM; |
| 308 | |
| 309 | priv = netdev_priv(dev); |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 310 | priv->ndev = dev; |
| 311 | priv->ofdev = ofdev; |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 312 | priv->node = ofdev->node; |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 313 | SET_NETDEV_DEV(dev, &ofdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 315 | err = gfar_of_init(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 317 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | goto regs_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 320 | spin_lock_init(&priv->txlock); |
| 321 | spin_lock_init(&priv->rxlock); |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 322 | spin_lock_init(&priv->bflock); |
Sebastian Siewior | ab93990 | 2008-08-19 21:12:45 +0200 | [diff] [blame] | 323 | INIT_WORK(&priv->reset_task, gfar_reset_task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 325 | dev_set_drvdata(&ofdev->dev, priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
| 327 | /* Stop the DMA engine now, in case it was running before */ |
| 328 | /* (The firmware could have used it, and left it running). */ |
Andy Fleming | 257d938 | 2008-12-16 15:25:45 -0800 | [diff] [blame] | 329 | gfar_halt(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
| 331 | /* Reset MAC layer */ |
| 332 | gfar_write(&priv->regs->maccfg1, MACCFG1_SOFT_RESET); |
| 333 | |
Andy Fleming | b98ac70 | 2009-02-04 16:38:05 -0800 | [diff] [blame] | 334 | /* We need to delay at least 3 TX clocks */ |
| 335 | udelay(2); |
| 336 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | tempval = (MACCFG1_TX_FLOW | MACCFG1_RX_FLOW); |
| 338 | gfar_write(&priv->regs->maccfg1, tempval); |
| 339 | |
| 340 | /* Initialize MACCFG2. */ |
| 341 | gfar_write(&priv->regs->maccfg2, MACCFG2_INIT_SETTINGS); |
| 342 | |
| 343 | /* Initialize ECNTRL */ |
| 344 | gfar_write(&priv->regs->ecntrl, ECNTRL_INIT_SETTINGS); |
| 345 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | /* Set the dev->base_addr to the gfar reg region */ |
| 347 | dev->base_addr = (unsigned long) (priv->regs); |
| 348 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 349 | SET_NETDEV_DEV(dev, &ofdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | |
| 351 | /* Fill in the dev structure */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | dev->watchdog_timeo = TX_TIMEOUT; |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 353 | netif_napi_add(dev, &priv->napi, gfar_poll, GFAR_DEV_WEIGHT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | dev->mtu = 1500; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Andy Fleming | 26ccfc3 | 2009-03-10 12:58:28 +0000 | [diff] [blame] | 356 | dev->netdev_ops = &gfar_netdev_ops; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 357 | dev->ethtool_ops = &gfar_ethtool_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 359 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 360 | priv->rx_csum_enable = 1; |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 361 | dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_HIGHDMA; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 362 | } else |
| 363 | priv->rx_csum_enable = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 365 | priv->vlgrp = NULL; |
| 366 | |
Andy Fleming | 26ccfc3 | 2009-03-10 12:58:28 +0000 | [diff] [blame] | 367 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_VLAN) |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 368 | dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 369 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 370 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_EXTENDED_HASH) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 371 | priv->extended_hash = 1; |
| 372 | priv->hash_width = 9; |
| 373 | |
| 374 | priv->hash_regs[0] = &priv->regs->igaddr0; |
| 375 | priv->hash_regs[1] = &priv->regs->igaddr1; |
| 376 | priv->hash_regs[2] = &priv->regs->igaddr2; |
| 377 | priv->hash_regs[3] = &priv->regs->igaddr3; |
| 378 | priv->hash_regs[4] = &priv->regs->igaddr4; |
| 379 | priv->hash_regs[5] = &priv->regs->igaddr5; |
| 380 | priv->hash_regs[6] = &priv->regs->igaddr6; |
| 381 | priv->hash_regs[7] = &priv->regs->igaddr7; |
| 382 | priv->hash_regs[8] = &priv->regs->gaddr0; |
| 383 | priv->hash_regs[9] = &priv->regs->gaddr1; |
| 384 | priv->hash_regs[10] = &priv->regs->gaddr2; |
| 385 | priv->hash_regs[11] = &priv->regs->gaddr3; |
| 386 | priv->hash_regs[12] = &priv->regs->gaddr4; |
| 387 | priv->hash_regs[13] = &priv->regs->gaddr5; |
| 388 | priv->hash_regs[14] = &priv->regs->gaddr6; |
| 389 | priv->hash_regs[15] = &priv->regs->gaddr7; |
| 390 | |
| 391 | } else { |
| 392 | priv->extended_hash = 0; |
| 393 | priv->hash_width = 8; |
| 394 | |
| 395 | priv->hash_regs[0] = &priv->regs->gaddr0; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 396 | priv->hash_regs[1] = &priv->regs->gaddr1; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 397 | priv->hash_regs[2] = &priv->regs->gaddr2; |
| 398 | priv->hash_regs[3] = &priv->regs->gaddr3; |
| 399 | priv->hash_regs[4] = &priv->regs->gaddr4; |
| 400 | priv->hash_regs[5] = &priv->regs->gaddr5; |
| 401 | priv->hash_regs[6] = &priv->regs->gaddr6; |
| 402 | priv->hash_regs[7] = &priv->regs->gaddr7; |
| 403 | } |
| 404 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 405 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_PADDING) |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 406 | priv->padding = DEFAULT_PADDING; |
| 407 | else |
| 408 | priv->padding = 0; |
| 409 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 410 | if (dev->features & NETIF_F_IP_CSUM) |
| 411 | dev->hard_header_len += GMAC_FCB_LEN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | |
| 413 | priv->rx_buffer_size = DEFAULT_RX_BUFFER_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | priv->tx_ring_size = DEFAULT_TX_RING_SIZE; |
| 415 | priv->rx_ring_size = DEFAULT_RX_RING_SIZE; |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 416 | priv->num_txbdfree = DEFAULT_TX_RING_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
| 418 | priv->txcoalescing = DEFAULT_TX_COALESCE; |
Dai Haruki | b46a845 | 2008-12-16 15:29:52 -0800 | [diff] [blame] | 419 | priv->txic = DEFAULT_TXIC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | priv->rxcoalescing = DEFAULT_RX_COALESCE; |
Dai Haruki | b46a845 | 2008-12-16 15:29:52 -0800 | [diff] [blame] | 421 | priv->rxic = DEFAULT_RXIC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 423 | /* Enable most messages by default */ |
| 424 | priv->msg_enable = (NETIF_MSG_IFUP << 1 ) - 1; |
| 425 | |
Trent Piepho | d3eab82 | 2008-10-02 11:12:24 +0000 | [diff] [blame] | 426 | /* Carrier starts down, phylib will bring it up */ |
| 427 | netif_carrier_off(dev); |
| 428 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | err = register_netdev(dev); |
| 430 | |
| 431 | if (err) { |
| 432 | printk(KERN_ERR "%s: Cannot register net device, aborting.\n", |
| 433 | dev->name); |
| 434 | goto register_fail; |
| 435 | } |
| 436 | |
Anton Vorontsov | 2884e5c | 2009-02-01 00:52:34 -0800 | [diff] [blame] | 437 | device_init_wakeup(&dev->dev, |
| 438 | priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET); |
| 439 | |
Dai Haruki | c50a5d9 | 2008-12-17 16:51:32 -0800 | [diff] [blame] | 440 | /* fill out IRQ number and name fields */ |
| 441 | len_devname = strlen(dev->name); |
| 442 | strncpy(&priv->int_name_tx[0], dev->name, len_devname); |
| 443 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) { |
| 444 | strncpy(&priv->int_name_tx[len_devname], |
| 445 | "_tx", sizeof("_tx") + 1); |
| 446 | |
| 447 | strncpy(&priv->int_name_rx[0], dev->name, len_devname); |
| 448 | strncpy(&priv->int_name_rx[len_devname], |
| 449 | "_rx", sizeof("_rx") + 1); |
| 450 | |
| 451 | strncpy(&priv->int_name_er[0], dev->name, len_devname); |
| 452 | strncpy(&priv->int_name_er[len_devname], |
| 453 | "_er", sizeof("_er") + 1); |
| 454 | } else |
| 455 | priv->int_name_tx[len_devname] = '\0'; |
| 456 | |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 457 | /* Create all the sysfs files */ |
| 458 | gfar_init_sysfs(dev); |
| 459 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | /* Print out the device info */ |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 461 | printk(KERN_INFO DEVICE_NAME "%pM\n", dev->name, dev->dev_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
| 463 | /* Even more device info helps when determining which kernel */ |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 464 | /* provided which set of benchmarks. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | printk(KERN_INFO "%s: Running with NAPI enabled\n", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | printk(KERN_INFO "%s: %d/%d RX/TX BD ring size\n", |
| 467 | dev->name, priv->rx_ring_size, priv->tx_ring_size); |
| 468 | |
| 469 | return 0; |
| 470 | |
| 471 | register_fail: |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 472 | iounmap(priv->regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | regs_fail: |
Grant Likely | fe192a4 | 2009-04-25 12:53:12 +0000 | [diff] [blame] | 474 | if (priv->phy_node) |
| 475 | of_node_put(priv->phy_node); |
| 476 | if (priv->tbi_node) |
| 477 | of_node_put(priv->tbi_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | free_netdev(dev); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 479 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | } |
| 481 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 482 | static int gfar_remove(struct of_device *ofdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | { |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 484 | struct gfar_private *priv = dev_get_drvdata(&ofdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | |
Grant Likely | fe192a4 | 2009-04-25 12:53:12 +0000 | [diff] [blame] | 486 | if (priv->phy_node) |
| 487 | of_node_put(priv->phy_node); |
| 488 | if (priv->tbi_node) |
| 489 | of_node_put(priv->tbi_node); |
| 490 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 491 | dev_set_drvdata(&ofdev->dev, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 493 | iounmap(priv->regs); |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 494 | free_netdev(priv->ndev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | return 0; |
| 497 | } |
| 498 | |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 499 | #ifdef CONFIG_PM |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 500 | static int gfar_suspend(struct of_device *ofdev, pm_message_t state) |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 501 | { |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 502 | struct gfar_private *priv = dev_get_drvdata(&ofdev->dev); |
Anton Vorontsov | 29ded5f | 2009-03-21 13:27:55 -0700 | [diff] [blame] | 503 | struct net_device *dev = priv->ndev; |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 504 | unsigned long flags; |
| 505 | u32 tempval; |
| 506 | |
| 507 | int magic_packet = priv->wol_en && |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 508 | (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET); |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 509 | |
| 510 | netif_device_detach(dev); |
| 511 | |
| 512 | if (netif_running(dev)) { |
| 513 | spin_lock_irqsave(&priv->txlock, flags); |
| 514 | spin_lock(&priv->rxlock); |
| 515 | |
| 516 | gfar_halt_nodisable(dev); |
| 517 | |
| 518 | /* Disable Tx, and Rx if wake-on-LAN is disabled. */ |
| 519 | tempval = gfar_read(&priv->regs->maccfg1); |
| 520 | |
| 521 | tempval &= ~MACCFG1_TX_EN; |
| 522 | |
| 523 | if (!magic_packet) |
| 524 | tempval &= ~MACCFG1_RX_EN; |
| 525 | |
| 526 | gfar_write(&priv->regs->maccfg1, tempval); |
| 527 | |
| 528 | spin_unlock(&priv->rxlock); |
| 529 | spin_unlock_irqrestore(&priv->txlock, flags); |
| 530 | |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 531 | napi_disable(&priv->napi); |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 532 | |
| 533 | if (magic_packet) { |
| 534 | /* Enable interrupt on Magic Packet */ |
| 535 | gfar_write(&priv->regs->imask, IMASK_MAG); |
| 536 | |
| 537 | /* Enable Magic Packet mode */ |
| 538 | tempval = gfar_read(&priv->regs->maccfg2); |
| 539 | tempval |= MACCFG2_MPEN; |
| 540 | gfar_write(&priv->regs->maccfg2, tempval); |
| 541 | } else { |
| 542 | phy_stop(priv->phydev); |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | return 0; |
| 547 | } |
| 548 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 549 | static int gfar_resume(struct of_device *ofdev) |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 550 | { |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 551 | struct gfar_private *priv = dev_get_drvdata(&ofdev->dev); |
Anton Vorontsov | 29ded5f | 2009-03-21 13:27:55 -0700 | [diff] [blame] | 552 | struct net_device *dev = priv->ndev; |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 553 | unsigned long flags; |
| 554 | u32 tempval; |
| 555 | int magic_packet = priv->wol_en && |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 556 | (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET); |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 557 | |
| 558 | if (!netif_running(dev)) { |
| 559 | netif_device_attach(dev); |
| 560 | return 0; |
| 561 | } |
| 562 | |
| 563 | if (!magic_packet && priv->phydev) |
| 564 | phy_start(priv->phydev); |
| 565 | |
| 566 | /* Disable Magic Packet mode, in case something |
| 567 | * else woke us up. |
| 568 | */ |
| 569 | |
| 570 | spin_lock_irqsave(&priv->txlock, flags); |
| 571 | spin_lock(&priv->rxlock); |
| 572 | |
| 573 | tempval = gfar_read(&priv->regs->maccfg2); |
| 574 | tempval &= ~MACCFG2_MPEN; |
| 575 | gfar_write(&priv->regs->maccfg2, tempval); |
| 576 | |
| 577 | gfar_start(dev); |
| 578 | |
| 579 | spin_unlock(&priv->rxlock); |
| 580 | spin_unlock_irqrestore(&priv->txlock, flags); |
| 581 | |
| 582 | netif_device_attach(dev); |
| 583 | |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 584 | napi_enable(&priv->napi); |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 585 | |
| 586 | return 0; |
| 587 | } |
| 588 | #else |
| 589 | #define gfar_suspend NULL |
| 590 | #define gfar_resume NULL |
| 591 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 593 | /* Reads the controller's registers to determine what interface |
| 594 | * connects it to the PHY. |
| 595 | */ |
| 596 | static phy_interface_t gfar_get_interface(struct net_device *dev) |
| 597 | { |
| 598 | struct gfar_private *priv = netdev_priv(dev); |
| 599 | u32 ecntrl = gfar_read(&priv->regs->ecntrl); |
| 600 | |
| 601 | if (ecntrl & ECNTRL_SGMII_MODE) |
| 602 | return PHY_INTERFACE_MODE_SGMII; |
| 603 | |
| 604 | if (ecntrl & ECNTRL_TBI_MODE) { |
| 605 | if (ecntrl & ECNTRL_REDUCED_MODE) |
| 606 | return PHY_INTERFACE_MODE_RTBI; |
| 607 | else |
| 608 | return PHY_INTERFACE_MODE_TBI; |
| 609 | } |
| 610 | |
| 611 | if (ecntrl & ECNTRL_REDUCED_MODE) { |
| 612 | if (ecntrl & ECNTRL_REDUCED_MII_MODE) |
| 613 | return PHY_INTERFACE_MODE_RMII; |
Andy Fleming | 7132ab7 | 2007-07-11 11:43:07 -0500 | [diff] [blame] | 614 | else { |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 615 | phy_interface_t interface = priv->interface; |
Andy Fleming | 7132ab7 | 2007-07-11 11:43:07 -0500 | [diff] [blame] | 616 | |
| 617 | /* |
| 618 | * This isn't autodetected right now, so it must |
| 619 | * be set by the device tree or platform code. |
| 620 | */ |
| 621 | if (interface == PHY_INTERFACE_MODE_RGMII_ID) |
| 622 | return PHY_INTERFACE_MODE_RGMII_ID; |
| 623 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 624 | return PHY_INTERFACE_MODE_RGMII; |
Andy Fleming | 7132ab7 | 2007-07-11 11:43:07 -0500 | [diff] [blame] | 625 | } |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 626 | } |
| 627 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 628 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT) |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 629 | return PHY_INTERFACE_MODE_GMII; |
| 630 | |
| 631 | return PHY_INTERFACE_MODE_MII; |
| 632 | } |
| 633 | |
| 634 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 635 | /* Initializes driver's PHY state, and attaches to the PHY. |
| 636 | * Returns 0 on success. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | */ |
| 638 | static int init_phy(struct net_device *dev) |
| 639 | { |
| 640 | struct gfar_private *priv = netdev_priv(dev); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 641 | uint gigabit_support = |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 642 | priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT ? |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 643 | SUPPORTED_1000baseT_Full : 0; |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 644 | phy_interface_t interface; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | |
| 646 | priv->oldlink = 0; |
| 647 | priv->oldspeed = 0; |
| 648 | priv->oldduplex = -1; |
| 649 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 650 | interface = gfar_get_interface(dev); |
| 651 | |
Anton Vorontsov | 1db780f | 2009-07-16 21:31:42 +0000 | [diff] [blame] | 652 | priv->phydev = of_phy_connect(dev, priv->phy_node, &adjust_link, 0, |
| 653 | interface); |
| 654 | if (!priv->phydev) |
| 655 | priv->phydev = of_phy_connect_fixed_link(dev, &adjust_link, |
| 656 | interface); |
| 657 | if (!priv->phydev) { |
| 658 | dev_err(&dev->dev, "could not attach to PHY\n"); |
| 659 | return -ENODEV; |
Grant Likely | fe192a4 | 2009-04-25 12:53:12 +0000 | [diff] [blame] | 660 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | |
Kapil Juneja | d3c1287 | 2007-05-11 18:25:11 -0500 | [diff] [blame] | 662 | if (interface == PHY_INTERFACE_MODE_SGMII) |
| 663 | gfar_configure_serdes(dev); |
| 664 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 665 | /* Remove any features not supported by the controller */ |
Grant Likely | fe192a4 | 2009-04-25 12:53:12 +0000 | [diff] [blame] | 666 | priv->phydev->supported &= (GFAR_SUPPORTED | gigabit_support); |
| 667 | priv->phydev->advertising = priv->phydev->supported; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | |
| 669 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | } |
| 671 | |
Paul Gortmaker | d031358 | 2008-04-17 00:08:10 -0400 | [diff] [blame] | 672 | /* |
| 673 | * Initialize TBI PHY interface for communicating with the |
| 674 | * SERDES lynx PHY on the chip. We communicate with this PHY |
| 675 | * through the MDIO bus on each controller, treating it as a |
| 676 | * "normal" PHY at the address found in the TBIPA register. We assume |
| 677 | * that the TBIPA register is valid. Either the MDIO bus code will set |
| 678 | * it to a value that doesn't conflict with other PHYs on the bus, or the |
| 679 | * value doesn't matter, as there are no other PHYs on the bus. |
| 680 | */ |
Kapil Juneja | d3c1287 | 2007-05-11 18:25:11 -0500 | [diff] [blame] | 681 | static void gfar_configure_serdes(struct net_device *dev) |
| 682 | { |
| 683 | struct gfar_private *priv = netdev_priv(dev); |
Grant Likely | fe192a4 | 2009-04-25 12:53:12 +0000 | [diff] [blame] | 684 | struct phy_device *tbiphy; |
Trent Piepho | c132419 | 2008-10-30 18:17:06 -0700 | [diff] [blame] | 685 | |
Grant Likely | fe192a4 | 2009-04-25 12:53:12 +0000 | [diff] [blame] | 686 | if (!priv->tbi_node) { |
| 687 | dev_warn(&dev->dev, "error: SGMII mode requires that the " |
| 688 | "device tree specify a tbi-handle\n"); |
| 689 | return; |
| 690 | } |
| 691 | |
| 692 | tbiphy = of_phy_find_device(priv->tbi_node); |
| 693 | if (!tbiphy) { |
| 694 | dev_err(&dev->dev, "error: Could not get TBI device\n"); |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 695 | return; |
| 696 | } |
Kapil Juneja | d3c1287 | 2007-05-11 18:25:11 -0500 | [diff] [blame] | 697 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 698 | /* |
| 699 | * If the link is already up, we must already be ok, and don't need to |
Trent Piepho | bdb59f9 | 2008-10-30 18:17:07 -0700 | [diff] [blame] | 700 | * configure and reset the TBI<->SerDes link. Maybe U-Boot configured |
| 701 | * everything for us? Resetting it takes the link down and requires |
| 702 | * several seconds for it to come back. |
| 703 | */ |
Grant Likely | fe192a4 | 2009-04-25 12:53:12 +0000 | [diff] [blame] | 704 | if (phy_read(tbiphy, MII_BMSR) & BMSR_LSTATUS) |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 705 | return; |
Kapil Juneja | d3c1287 | 2007-05-11 18:25:11 -0500 | [diff] [blame] | 706 | |
Paul Gortmaker | d031358 | 2008-04-17 00:08:10 -0400 | [diff] [blame] | 707 | /* Single clk mode, mii mode off(for serdes communication) */ |
Grant Likely | fe192a4 | 2009-04-25 12:53:12 +0000 | [diff] [blame] | 708 | phy_write(tbiphy, MII_TBICON, TBICON_CLK_SELECT); |
Kapil Juneja | d3c1287 | 2007-05-11 18:25:11 -0500 | [diff] [blame] | 709 | |
Grant Likely | fe192a4 | 2009-04-25 12:53:12 +0000 | [diff] [blame] | 710 | phy_write(tbiphy, MII_ADVERTISE, |
Kapil Juneja | d3c1287 | 2007-05-11 18:25:11 -0500 | [diff] [blame] | 711 | ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE | |
| 712 | ADVERTISE_1000XPSE_ASYM); |
| 713 | |
Grant Likely | fe192a4 | 2009-04-25 12:53:12 +0000 | [diff] [blame] | 714 | phy_write(tbiphy, MII_BMCR, BMCR_ANENABLE | |
Kapil Juneja | d3c1287 | 2007-05-11 18:25:11 -0500 | [diff] [blame] | 715 | BMCR_ANRESTART | BMCR_FULLDPLX | BMCR_SPEED1000); |
| 716 | } |
| 717 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | static void init_registers(struct net_device *dev) |
| 719 | { |
| 720 | struct gfar_private *priv = netdev_priv(dev); |
| 721 | |
| 722 | /* Clear IEVENT */ |
| 723 | gfar_write(&priv->regs->ievent, IEVENT_INIT_CLEAR); |
| 724 | |
| 725 | /* Initialize IMASK */ |
| 726 | gfar_write(&priv->regs->imask, IMASK_INIT_CLEAR); |
| 727 | |
| 728 | /* Init hash registers to zero */ |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 729 | gfar_write(&priv->regs->igaddr0, 0); |
| 730 | gfar_write(&priv->regs->igaddr1, 0); |
| 731 | gfar_write(&priv->regs->igaddr2, 0); |
| 732 | gfar_write(&priv->regs->igaddr3, 0); |
| 733 | gfar_write(&priv->regs->igaddr4, 0); |
| 734 | gfar_write(&priv->regs->igaddr5, 0); |
| 735 | gfar_write(&priv->regs->igaddr6, 0); |
| 736 | gfar_write(&priv->regs->igaddr7, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | |
| 738 | gfar_write(&priv->regs->gaddr0, 0); |
| 739 | gfar_write(&priv->regs->gaddr1, 0); |
| 740 | gfar_write(&priv->regs->gaddr2, 0); |
| 741 | gfar_write(&priv->regs->gaddr3, 0); |
| 742 | gfar_write(&priv->regs->gaddr4, 0); |
| 743 | gfar_write(&priv->regs->gaddr5, 0); |
| 744 | gfar_write(&priv->regs->gaddr6, 0); |
| 745 | gfar_write(&priv->regs->gaddr7, 0); |
| 746 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | /* Zero out the rmon mib registers if it has them */ |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 748 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) { |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 749 | memset_io(&(priv->regs->rmon), 0, sizeof (struct rmon_mib)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | |
| 751 | /* Mask off the CAM interrupts */ |
| 752 | gfar_write(&priv->regs->rmon.cam1, 0xffffffff); |
| 753 | gfar_write(&priv->regs->rmon.cam2, 0xffffffff); |
| 754 | } |
| 755 | |
| 756 | /* Initialize the max receive buffer length */ |
| 757 | gfar_write(&priv->regs->mrblr, priv->rx_buffer_size); |
| 758 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | /* Initialize the Minimum Frame Length Register */ |
| 760 | gfar_write(&priv->regs->minflr, MINFLR_INIT_SETTINGS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | } |
| 762 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 763 | |
| 764 | /* Halt the receive and transmit queues */ |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 765 | static void gfar_halt_nodisable(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | { |
| 767 | struct gfar_private *priv = netdev_priv(dev); |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 768 | struct gfar __iomem *regs = priv->regs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | u32 tempval; |
| 770 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | /* Mask all interrupts */ |
| 772 | gfar_write(®s->imask, IMASK_INIT_CLEAR); |
| 773 | |
| 774 | /* Clear all interrupts */ |
| 775 | gfar_write(®s->ievent, IEVENT_INIT_CLEAR); |
| 776 | |
| 777 | /* Stop the DMA, and wait for it to stop */ |
| 778 | tempval = gfar_read(&priv->regs->dmactrl); |
| 779 | if ((tempval & (DMACTRL_GRS | DMACTRL_GTS)) |
| 780 | != (DMACTRL_GRS | DMACTRL_GTS)) { |
| 781 | tempval |= (DMACTRL_GRS | DMACTRL_GTS); |
| 782 | gfar_write(&priv->regs->dmactrl, tempval); |
| 783 | |
| 784 | while (!(gfar_read(&priv->regs->ievent) & |
| 785 | (IEVENT_GRSC | IEVENT_GTSC))) |
| 786 | cpu_relax(); |
| 787 | } |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 788 | } |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 789 | |
| 790 | /* Halt the receive and transmit queues */ |
| 791 | void gfar_halt(struct net_device *dev) |
| 792 | { |
| 793 | struct gfar_private *priv = netdev_priv(dev); |
| 794 | struct gfar __iomem *regs = priv->regs; |
| 795 | u32 tempval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | |
Scott Wood | 2a54adc | 2008-08-12 15:10:46 -0500 | [diff] [blame] | 797 | gfar_halt_nodisable(dev); |
| 798 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | /* Disable Rx and Tx */ |
| 800 | tempval = gfar_read(®s->maccfg1); |
| 801 | tempval &= ~(MACCFG1_RX_EN | MACCFG1_TX_EN); |
| 802 | gfar_write(®s->maccfg1, tempval); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | void stop_gfar(struct net_device *dev) |
| 806 | { |
| 807 | struct gfar_private *priv = netdev_priv(dev); |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 808 | struct gfar __iomem *regs = priv->regs; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 809 | unsigned long flags; |
| 810 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 811 | phy_stop(priv->phydev); |
| 812 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 813 | /* Lock it down */ |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 814 | spin_lock_irqsave(&priv->txlock, flags); |
| 815 | spin_lock(&priv->rxlock); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 816 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 817 | gfar_halt(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 819 | spin_unlock(&priv->rxlock); |
| 820 | spin_unlock_irqrestore(&priv->txlock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | |
| 822 | /* Free the IRQs */ |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 823 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | free_irq(priv->interruptError, dev); |
| 825 | free_irq(priv->interruptTransmit, dev); |
| 826 | free_irq(priv->interruptReceive, dev); |
| 827 | } else { |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 828 | free_irq(priv->interruptTransmit, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | } |
| 830 | |
| 831 | free_skb_resources(priv); |
| 832 | |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 833 | dma_free_coherent(&priv->ofdev->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | sizeof(struct txbd8)*priv->tx_ring_size |
| 835 | + sizeof(struct rxbd8)*priv->rx_ring_size, |
| 836 | priv->tx_bd_base, |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 837 | gfar_read(®s->tbase0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | } |
| 839 | |
| 840 | /* If there are any tx skbs or rx skbs still around, free them. |
| 841 | * Then free tx_skbuff and rx_skbuff */ |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 842 | static void free_skb_resources(struct gfar_private *priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | { |
| 844 | struct rxbd8 *rxbdp; |
| 845 | struct txbd8 *txbdp; |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 846 | int i, j; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | |
| 848 | /* Go through all the buffer descriptors and free their data buffers */ |
| 849 | txbdp = priv->tx_bd_base; |
| 850 | |
| 851 | for (i = 0; i < priv->tx_ring_size; i++) { |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 852 | if (!priv->tx_skbuff[i]) |
| 853 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 855 | dma_unmap_single(&priv->ofdev->dev, txbdp->bufPtr, |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 856 | txbdp->length, DMA_TO_DEVICE); |
| 857 | txbdp->lstatus = 0; |
| 858 | for (j = 0; j < skb_shinfo(priv->tx_skbuff[i])->nr_frags; j++) { |
| 859 | txbdp++; |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 860 | dma_unmap_page(&priv->ofdev->dev, txbdp->bufPtr, |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 861 | txbdp->length, DMA_TO_DEVICE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | } |
Andy Fleming | ad5da7a | 2008-05-07 13:20:55 -0500 | [diff] [blame] | 863 | txbdp++; |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 864 | dev_kfree_skb_any(priv->tx_skbuff[i]); |
| 865 | priv->tx_skbuff[i] = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | } |
| 867 | |
| 868 | kfree(priv->tx_skbuff); |
| 869 | |
| 870 | rxbdp = priv->rx_bd_base; |
| 871 | |
| 872 | /* rx_skbuff is not guaranteed to be allocated, so only |
| 873 | * free it and its contents if it is allocated */ |
| 874 | if(priv->rx_skbuff != NULL) { |
| 875 | for (i = 0; i < priv->rx_ring_size; i++) { |
| 876 | if (priv->rx_skbuff[i]) { |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 877 | dma_unmap_single(&priv->ofdev->dev, rxbdp->bufPtr, |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 878 | priv->rx_buffer_size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | DMA_FROM_DEVICE); |
| 880 | |
| 881 | dev_kfree_skb_any(priv->rx_skbuff[i]); |
| 882 | priv->rx_skbuff[i] = NULL; |
| 883 | } |
| 884 | |
Dai Haruki | 5a5efed | 2008-12-16 15:34:50 -0800 | [diff] [blame] | 885 | rxbdp->lstatus = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | rxbdp->bufPtr = 0; |
| 887 | |
| 888 | rxbdp++; |
| 889 | } |
| 890 | |
| 891 | kfree(priv->rx_skbuff); |
| 892 | } |
| 893 | } |
| 894 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 895 | void gfar_start(struct net_device *dev) |
| 896 | { |
| 897 | struct gfar_private *priv = netdev_priv(dev); |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 898 | struct gfar __iomem *regs = priv->regs; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 899 | u32 tempval; |
| 900 | |
| 901 | /* Enable Rx and Tx in MACCFG1 */ |
| 902 | tempval = gfar_read(®s->maccfg1); |
| 903 | tempval |= (MACCFG1_RX_EN | MACCFG1_TX_EN); |
| 904 | gfar_write(®s->maccfg1, tempval); |
| 905 | |
| 906 | /* Initialize DMACTRL to have WWR and WOP */ |
| 907 | tempval = gfar_read(&priv->regs->dmactrl); |
| 908 | tempval |= DMACTRL_INIT_SETTINGS; |
| 909 | gfar_write(&priv->regs->dmactrl, tempval); |
| 910 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 911 | /* Make sure we aren't stopped */ |
| 912 | tempval = gfar_read(&priv->regs->dmactrl); |
| 913 | tempval &= ~(DMACTRL_GRS | DMACTRL_GTS); |
| 914 | gfar_write(&priv->regs->dmactrl, tempval); |
| 915 | |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 916 | /* Clear THLT/RHLT, so that the DMA starts polling now */ |
| 917 | gfar_write(®s->tstat, TSTAT_CLEAR_THALT); |
| 918 | gfar_write(®s->rstat, RSTAT_CLEAR_RHALT); |
| 919 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 920 | /* Unmask the interrupts we look for */ |
| 921 | gfar_write(®s->imask, IMASK_DEFAULT); |
Dai Haruki | 12dea57 | 2008-12-16 15:30:20 -0800 | [diff] [blame] | 922 | |
| 923 | dev->trans_start = jiffies; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 924 | } |
| 925 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | /* Bring the controller up and running */ |
| 927 | int startup_gfar(struct net_device *dev) |
| 928 | { |
| 929 | struct txbd8 *txbdp; |
| 930 | struct rxbd8 *rxbdp; |
Grant Likely | f9663ae | 2007-12-01 22:10:03 -0700 | [diff] [blame] | 931 | dma_addr_t addr = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | unsigned long vaddr; |
| 933 | int i; |
| 934 | struct gfar_private *priv = netdev_priv(dev); |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 935 | struct gfar __iomem *regs = priv->regs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | int err = 0; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 937 | u32 rctrl = 0; |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 938 | u32 attrs = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | |
| 940 | gfar_write(®s->imask, IMASK_INIT_CLEAR); |
| 941 | |
| 942 | /* Allocate memory for the buffer descriptors */ |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 943 | vaddr = (unsigned long) dma_alloc_coherent(&priv->ofdev->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | sizeof (struct txbd8) * priv->tx_ring_size + |
| 945 | sizeof (struct rxbd8) * priv->rx_ring_size, |
| 946 | &addr, GFP_KERNEL); |
| 947 | |
| 948 | if (vaddr == 0) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 949 | if (netif_msg_ifup(priv)) |
| 950 | printk(KERN_ERR "%s: Could not allocate buffer descriptors!\n", |
| 951 | dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | return -ENOMEM; |
| 953 | } |
| 954 | |
| 955 | priv->tx_bd_base = (struct txbd8 *) vaddr; |
| 956 | |
| 957 | /* enet DMA only understands physical addresses */ |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 958 | gfar_write(®s->tbase0, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | |
| 960 | /* Start the rx descriptor ring where the tx ring leaves off */ |
| 961 | addr = addr + sizeof (struct txbd8) * priv->tx_ring_size; |
| 962 | vaddr = vaddr + sizeof (struct txbd8) * priv->tx_ring_size; |
| 963 | priv->rx_bd_base = (struct rxbd8 *) vaddr; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 964 | gfar_write(®s->rbase0, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | |
| 966 | /* Setup the skbuff rings */ |
| 967 | priv->tx_skbuff = |
| 968 | (struct sk_buff **) kmalloc(sizeof (struct sk_buff *) * |
| 969 | priv->tx_ring_size, GFP_KERNEL); |
| 970 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 971 | if (NULL == priv->tx_skbuff) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 972 | if (netif_msg_ifup(priv)) |
| 973 | printk(KERN_ERR "%s: Could not allocate tx_skbuff\n", |
| 974 | dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | err = -ENOMEM; |
| 976 | goto tx_skb_fail; |
| 977 | } |
| 978 | |
| 979 | for (i = 0; i < priv->tx_ring_size; i++) |
| 980 | priv->tx_skbuff[i] = NULL; |
| 981 | |
| 982 | priv->rx_skbuff = |
| 983 | (struct sk_buff **) kmalloc(sizeof (struct sk_buff *) * |
| 984 | priv->rx_ring_size, GFP_KERNEL); |
| 985 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 986 | if (NULL == priv->rx_skbuff) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 987 | if (netif_msg_ifup(priv)) |
| 988 | printk(KERN_ERR "%s: Could not allocate rx_skbuff\n", |
| 989 | dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | err = -ENOMEM; |
| 991 | goto rx_skb_fail; |
| 992 | } |
| 993 | |
| 994 | for (i = 0; i < priv->rx_ring_size; i++) |
| 995 | priv->rx_skbuff[i] = NULL; |
| 996 | |
| 997 | /* Initialize some variables in our dev structure */ |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 998 | priv->num_txbdfree = priv->tx_ring_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | priv->dirty_tx = priv->cur_tx = priv->tx_bd_base; |
| 1000 | priv->cur_rx = priv->rx_bd_base; |
| 1001 | priv->skb_curtx = priv->skb_dirtytx = 0; |
| 1002 | priv->skb_currx = 0; |
| 1003 | |
| 1004 | /* Initialize Transmit Descriptor Ring */ |
| 1005 | txbdp = priv->tx_bd_base; |
| 1006 | for (i = 0; i < priv->tx_ring_size; i++) { |
Dai Haruki | 5a5efed | 2008-12-16 15:34:50 -0800 | [diff] [blame] | 1007 | txbdp->lstatus = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | txbdp->bufPtr = 0; |
| 1009 | txbdp++; |
| 1010 | } |
| 1011 | |
| 1012 | /* Set the last descriptor in the ring to indicate wrap */ |
| 1013 | txbdp--; |
| 1014 | txbdp->status |= TXBD_WRAP; |
| 1015 | |
| 1016 | rxbdp = priv->rx_bd_base; |
| 1017 | for (i = 0; i < priv->rx_ring_size; i++) { |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1018 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1020 | skb = gfar_new_skb(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1022 | if (!skb) { |
| 1023 | printk(KERN_ERR "%s: Can't allocate RX buffers\n", |
| 1024 | dev->name); |
| 1025 | |
| 1026 | goto err_rxalloc_fail; |
| 1027 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | |
| 1029 | priv->rx_skbuff[i] = skb; |
| 1030 | |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1031 | gfar_new_rxbdp(dev, rxbdp, skb); |
| 1032 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | rxbdp++; |
| 1034 | } |
| 1035 | |
| 1036 | /* Set the last descriptor in the ring to wrap */ |
| 1037 | rxbdp--; |
| 1038 | rxbdp->status |= RXBD_WRAP; |
| 1039 | |
| 1040 | /* If the device has multiple interrupts, register for |
| 1041 | * them. Otherwise, only register for the one */ |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 1042 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1043 | /* Install our interrupt handlers for Error, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | * Transmit, and Receive */ |
| 1045 | if (request_irq(priv->interruptError, gfar_error, |
Dai Haruki | c50a5d9 | 2008-12-17 16:51:32 -0800 | [diff] [blame] | 1046 | 0, priv->int_name_er, dev) < 0) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1047 | if (netif_msg_intr(priv)) |
| 1048 | printk(KERN_ERR "%s: Can't get IRQ %d\n", |
| 1049 | dev->name, priv->interruptError); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | |
| 1051 | err = -1; |
| 1052 | goto err_irq_fail; |
| 1053 | } |
| 1054 | |
| 1055 | if (request_irq(priv->interruptTransmit, gfar_transmit, |
Dai Haruki | c50a5d9 | 2008-12-17 16:51:32 -0800 | [diff] [blame] | 1056 | 0, priv->int_name_tx, dev) < 0) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1057 | if (netif_msg_intr(priv)) |
| 1058 | printk(KERN_ERR "%s: Can't get IRQ %d\n", |
| 1059 | dev->name, priv->interruptTransmit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | |
| 1061 | err = -1; |
| 1062 | |
| 1063 | goto tx_irq_fail; |
| 1064 | } |
| 1065 | |
| 1066 | if (request_irq(priv->interruptReceive, gfar_receive, |
Dai Haruki | c50a5d9 | 2008-12-17 16:51:32 -0800 | [diff] [blame] | 1067 | 0, priv->int_name_rx, dev) < 0) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1068 | if (netif_msg_intr(priv)) |
| 1069 | printk(KERN_ERR "%s: Can't get IRQ %d (receive0)\n", |
| 1070 | dev->name, priv->interruptReceive); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | |
| 1072 | err = -1; |
| 1073 | goto rx_irq_fail; |
| 1074 | } |
| 1075 | } else { |
| 1076 | if (request_irq(priv->interruptTransmit, gfar_interrupt, |
Dai Haruki | c50a5d9 | 2008-12-17 16:51:32 -0800 | [diff] [blame] | 1077 | 0, priv->int_name_tx, dev) < 0) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1078 | if (netif_msg_intr(priv)) |
| 1079 | printk(KERN_ERR "%s: Can't get IRQ %d\n", |
Dai Haruki | c50a5d9 | 2008-12-17 16:51:32 -0800 | [diff] [blame] | 1080 | dev->name, priv->interruptTransmit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | |
| 1082 | err = -1; |
| 1083 | goto err_irq_fail; |
| 1084 | } |
| 1085 | } |
| 1086 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 1087 | phy_start(priv->phydev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | |
| 1089 | /* Configure the coalescing support */ |
Dai Haruki | b46a845 | 2008-12-16 15:29:52 -0800 | [diff] [blame] | 1090 | gfar_write(®s->txic, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | if (priv->txcoalescing) |
Dai Haruki | b46a845 | 2008-12-16 15:29:52 -0800 | [diff] [blame] | 1092 | gfar_write(®s->txic, priv->txic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | |
Dai Haruki | b46a845 | 2008-12-16 15:29:52 -0800 | [diff] [blame] | 1094 | gfar_write(®s->rxic, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | if (priv->rxcoalescing) |
Dai Haruki | b46a845 | 2008-12-16 15:29:52 -0800 | [diff] [blame] | 1096 | gfar_write(®s->rxic, priv->rxic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1098 | if (priv->rx_csum_enable) |
| 1099 | rctrl |= RCTRL_CHECKSUMMING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1101 | if (priv->extended_hash) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1102 | rctrl |= RCTRL_EXTHASH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1104 | gfar_clear_exact_match(dev); |
| 1105 | rctrl |= RCTRL_EMEN; |
| 1106 | } |
| 1107 | |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1108 | if (priv->padding) { |
| 1109 | rctrl &= ~RCTRL_PAL_MASK; |
| 1110 | rctrl |= RCTRL_PADDING(priv->padding); |
| 1111 | } |
| 1112 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1113 | /* Init rctrl based on our settings */ |
| 1114 | gfar_write(&priv->regs->rctrl, rctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1116 | if (dev->features & NETIF_F_IP_CSUM) |
| 1117 | gfar_write(&priv->regs->tctrl, TCTRL_INIT_CSUM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1119 | /* Set the extraction length and index */ |
| 1120 | attrs = ATTRELI_EL(priv->rx_stash_size) | |
| 1121 | ATTRELI_EI(priv->rx_stash_index); |
| 1122 | |
| 1123 | gfar_write(&priv->regs->attreli, attrs); |
| 1124 | |
| 1125 | /* Start with defaults, and add stashing or locking |
| 1126 | * depending on the approprate variables */ |
| 1127 | attrs = ATTR_INIT_SETTINGS; |
| 1128 | |
| 1129 | if (priv->bd_stash_en) |
| 1130 | attrs |= ATTR_BDSTASH; |
| 1131 | |
| 1132 | if (priv->rx_stash_size != 0) |
| 1133 | attrs |= ATTR_BUFSTASH; |
| 1134 | |
| 1135 | gfar_write(&priv->regs->attr, attrs); |
| 1136 | |
| 1137 | gfar_write(&priv->regs->fifo_tx_thr, priv->fifo_threshold); |
| 1138 | gfar_write(&priv->regs->fifo_tx_starve, priv->fifo_starve); |
| 1139 | gfar_write(&priv->regs->fifo_tx_starve_shutoff, priv->fifo_starve_off); |
| 1140 | |
| 1141 | /* Start the controller */ |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1142 | gfar_start(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | |
| 1144 | return 0; |
| 1145 | |
| 1146 | rx_irq_fail: |
| 1147 | free_irq(priv->interruptTransmit, dev); |
| 1148 | tx_irq_fail: |
| 1149 | free_irq(priv->interruptError, dev); |
| 1150 | err_irq_fail: |
Jeff Garzik | 7d2e3cb | 2008-05-13 01:41:58 -0400 | [diff] [blame] | 1151 | err_rxalloc_fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | rx_skb_fail: |
| 1153 | free_skb_resources(priv); |
| 1154 | tx_skb_fail: |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 1155 | dma_free_coherent(&priv->ofdev->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | sizeof(struct txbd8)*priv->tx_ring_size |
| 1157 | + sizeof(struct rxbd8)*priv->rx_ring_size, |
| 1158 | priv->tx_bd_base, |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1159 | gfar_read(®s->tbase0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | return err; |
| 1162 | } |
| 1163 | |
| 1164 | /* Called when something needs to use the ethernet device */ |
| 1165 | /* Returns 0 for success. */ |
| 1166 | static int gfar_enet_open(struct net_device *dev) |
| 1167 | { |
Li Yang | 94e8cc3 | 2007-10-12 21:53:51 +0800 | [diff] [blame] | 1168 | struct gfar_private *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | int err; |
| 1170 | |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 1171 | napi_enable(&priv->napi); |
| 1172 | |
Andy Fleming | 0fd56bb | 2009-02-04 16:43:16 -0800 | [diff] [blame] | 1173 | skb_queue_head_init(&priv->rx_recycle); |
| 1174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | /* Initialize a bunch of registers */ |
| 1176 | init_registers(dev); |
| 1177 | |
| 1178 | gfar_set_mac_address(dev); |
| 1179 | |
| 1180 | err = init_phy(dev); |
| 1181 | |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 1182 | if(err) { |
| 1183 | napi_disable(&priv->napi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | return err; |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 1185 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | |
| 1187 | err = startup_gfar(dev); |
Anton Vorontsov | db0e8e3 | 2007-10-17 23:57:46 +0400 | [diff] [blame] | 1188 | if (err) { |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 1189 | napi_disable(&priv->napi); |
Anton Vorontsov | db0e8e3 | 2007-10-17 23:57:46 +0400 | [diff] [blame] | 1190 | return err; |
| 1191 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | |
| 1193 | netif_start_queue(dev); |
| 1194 | |
Anton Vorontsov | 2884e5c | 2009-02-01 00:52:34 -0800 | [diff] [blame] | 1195 | device_set_wakeup_enable(&dev->dev, priv->wol_en); |
| 1196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | return err; |
| 1198 | } |
| 1199 | |
Stephen Hemminger | 54dc79f | 2009-03-27 00:38:45 -0700 | [diff] [blame] | 1200 | static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb) |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1201 | { |
Stephen Hemminger | 54dc79f | 2009-03-27 00:38:45 -0700 | [diff] [blame] | 1202 | struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN); |
Kumar Gala | 6c31d55 | 2009-04-28 08:04:10 -0700 | [diff] [blame] | 1203 | |
| 1204 | memset(fcb, 0, GMAC_FCB_LEN); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1205 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1206 | return fcb; |
| 1207 | } |
| 1208 | |
| 1209 | static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb) |
| 1210 | { |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1211 | u8 flags = 0; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1212 | |
| 1213 | /* If we're here, it's a IP packet with a TCP or UDP |
| 1214 | * payload. We set it to checksum, using a pseudo-header |
| 1215 | * we provide |
| 1216 | */ |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1217 | flags = TXFCB_DEFAULT; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1218 | |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1219 | /* Tell the controller what the protocol is */ |
| 1220 | /* And provide the already calculated phcs */ |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 1221 | if (ip_hdr(skb)->protocol == IPPROTO_UDP) { |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1222 | flags |= TXFCB_UDP; |
Arnaldo Carvalho de Melo | 4bedb45 | 2007-03-13 14:28:48 -0300 | [diff] [blame] | 1223 | fcb->phcs = udp_hdr(skb)->check; |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1224 | } else |
Kumar Gala | 8da32de | 2007-06-29 00:12:04 -0500 | [diff] [blame] | 1225 | fcb->phcs = tcp_hdr(skb)->check; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1226 | |
| 1227 | /* l3os is the distance between the start of the |
| 1228 | * frame (skb->data) and the start of the IP hdr. |
| 1229 | * l4os is the distance between the start of the |
| 1230 | * l3 hdr and the l4 hdr */ |
Arnaldo Carvalho de Melo | bbe735e | 2007-03-10 22:16:10 -0300 | [diff] [blame] | 1231 | fcb->l3os = (u16)(skb_network_offset(skb) - GMAC_FCB_LEN); |
Arnaldo Carvalho de Melo | cfe1fc7 | 2007-03-16 17:26:39 -0300 | [diff] [blame] | 1232 | fcb->l4os = skb_network_header_len(skb); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1233 | |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1234 | fcb->flags = flags; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1235 | } |
| 1236 | |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1237 | void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb) |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1238 | { |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1239 | fcb->flags |= TXFCB_VLN; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1240 | fcb->vlctl = vlan_tx_tag_get(skb); |
| 1241 | } |
| 1242 | |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1243 | static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride, |
| 1244 | struct txbd8 *base, int ring_size) |
| 1245 | { |
| 1246 | struct txbd8 *new_bd = bdp + stride; |
| 1247 | |
| 1248 | return (new_bd >= (base + ring_size)) ? (new_bd - ring_size) : new_bd; |
| 1249 | } |
| 1250 | |
| 1251 | static inline struct txbd8 *next_txbd(struct txbd8 *bdp, struct txbd8 *base, |
| 1252 | int ring_size) |
| 1253 | { |
| 1254 | return skip_txbd(bdp, 1, base, ring_size); |
| 1255 | } |
| 1256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | /* This is called by the kernel when a frame is ready for transmission. */ |
| 1258 | /* It is pointed to by the dev->hard_start_xmit function pointer */ |
| 1259 | static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev) |
| 1260 | { |
| 1261 | struct gfar_private *priv = netdev_priv(dev); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1262 | struct txfcb *fcb = NULL; |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1263 | struct txbd8 *txbdp, *txbdp_start, *base; |
Dai Haruki | 5a5efed | 2008-12-16 15:34:50 -0800 | [diff] [blame] | 1264 | u32 lstatus; |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1265 | int i; |
| 1266 | u32 bufaddr; |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 1267 | unsigned long flags; |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1268 | unsigned int nr_frags, length; |
| 1269 | |
| 1270 | base = priv->tx_bd_base; |
| 1271 | |
Li Yang | 5b28bea | 2009-03-27 15:54:30 -0700 | [diff] [blame] | 1272 | /* make space for additional header when fcb is needed */ |
| 1273 | if (((skb->ip_summed == CHECKSUM_PARTIAL) || |
| 1274 | (priv->vlgrp && vlan_tx_tag_present(skb))) && |
| 1275 | (skb_headroom(skb) < GMAC_FCB_LEN)) { |
Stephen Hemminger | 54dc79f | 2009-03-27 00:38:45 -0700 | [diff] [blame] | 1276 | struct sk_buff *skb_new; |
| 1277 | |
| 1278 | skb_new = skb_realloc_headroom(skb, GMAC_FCB_LEN); |
| 1279 | if (!skb_new) { |
| 1280 | dev->stats.tx_errors++; |
David S. Miller | bd14ba8 | 2009-03-27 01:10:58 -0700 | [diff] [blame] | 1281 | kfree_skb(skb); |
Stephen Hemminger | 54dc79f | 2009-03-27 00:38:45 -0700 | [diff] [blame] | 1282 | return NETDEV_TX_OK; |
| 1283 | } |
| 1284 | kfree_skb(skb); |
| 1285 | skb = skb_new; |
| 1286 | } |
| 1287 | |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1288 | /* total number of fragments in the SKB */ |
| 1289 | nr_frags = skb_shinfo(skb)->nr_frags; |
| 1290 | |
| 1291 | spin_lock_irqsave(&priv->txlock, flags); |
| 1292 | |
| 1293 | /* check if there is space to queue this packet */ |
Rini van Zetten | 7958a45 | 2009-02-27 03:18:48 -0800 | [diff] [blame] | 1294 | if ((nr_frags+1) > priv->num_txbdfree) { |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1295 | /* no space, stop the queue */ |
| 1296 | netif_stop_queue(dev); |
| 1297 | dev->stats.tx_fifo_errors++; |
| 1298 | spin_unlock_irqrestore(&priv->txlock, flags); |
| 1299 | return NETDEV_TX_BUSY; |
| 1300 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | |
| 1302 | /* Update transmit stats */ |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 1303 | dev->stats.tx_bytes += skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1305 | txbdp = txbdp_start = priv->cur_tx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1307 | if (nr_frags == 0) { |
| 1308 | lstatus = txbdp->lstatus | BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT); |
| 1309 | } else { |
| 1310 | /* Place the fragment addresses and lengths into the TxBDs */ |
| 1311 | for (i = 0; i < nr_frags; i++) { |
| 1312 | /* Point at the next BD, wrapping as needed */ |
| 1313 | txbdp = next_txbd(txbdp, base, priv->tx_ring_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1315 | length = skb_shinfo(skb)->frags[i].size; |
| 1316 | |
| 1317 | lstatus = txbdp->lstatus | length | |
| 1318 | BD_LFLAG(TXBD_READY); |
| 1319 | |
| 1320 | /* Handle the last BD specially */ |
| 1321 | if (i == nr_frags - 1) |
| 1322 | lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT); |
| 1323 | |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 1324 | bufaddr = dma_map_page(&priv->ofdev->dev, |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1325 | skb_shinfo(skb)->frags[i].page, |
| 1326 | skb_shinfo(skb)->frags[i].page_offset, |
| 1327 | length, |
| 1328 | DMA_TO_DEVICE); |
| 1329 | |
| 1330 | /* set the TxBD length and buffer pointer */ |
| 1331 | txbdp->bufPtr = bufaddr; |
| 1332 | txbdp->lstatus = lstatus; |
| 1333 | } |
| 1334 | |
| 1335 | lstatus = txbdp_start->lstatus; |
| 1336 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1338 | /* Set up checksumming */ |
Dai Haruki | 12dea57 | 2008-12-16 15:30:20 -0800 | [diff] [blame] | 1339 | if (CHECKSUM_PARTIAL == skb->ip_summed) { |
Stephen Hemminger | 54dc79f | 2009-03-27 00:38:45 -0700 | [diff] [blame] | 1340 | fcb = gfar_add_fcb(skb); |
| 1341 | lstatus |= BD_LFLAG(TXBD_TOE); |
| 1342 | gfar_tx_checksum(skb, fcb); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1343 | } |
| 1344 | |
Dai Haruki | 77ecaf2 | 2008-12-16 15:30:48 -0800 | [diff] [blame] | 1345 | if (priv->vlgrp && vlan_tx_tag_present(skb)) { |
Stephen Hemminger | 54dc79f | 2009-03-27 00:38:45 -0700 | [diff] [blame] | 1346 | if (unlikely(NULL == fcb)) { |
| 1347 | fcb = gfar_add_fcb(skb); |
Dai Haruki | 5a5efed | 2008-12-16 15:34:50 -0800 | [diff] [blame] | 1348 | lstatus |= BD_LFLAG(TXBD_TOE); |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1349 | } |
Stephen Hemminger | 54dc79f | 2009-03-27 00:38:45 -0700 | [diff] [blame] | 1350 | |
| 1351 | gfar_tx_vlan(skb, fcb); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1352 | } |
| 1353 | |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1354 | /* setup the TxBD length and buffer pointer for the first BD */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | priv->tx_skbuff[priv->skb_curtx] = skb; |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 1356 | txbdp_start->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data, |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1357 | skb_headlen(skb), DMA_TO_DEVICE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1359 | lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | skb_headlen(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1361 | /* |
| 1362 | * The powerpc-specific eieio() is used, as wmb() has too strong |
Scott Wood | 3b6330c | 2007-05-16 15:06:59 -0500 | [diff] [blame] | 1363 | * semantics (it requires synchronization between cacheable and |
| 1364 | * uncacheable mappings, which eieio doesn't provide and which we |
| 1365 | * don't need), thus requiring a more expensive sync instruction. At |
| 1366 | * some point, the set of architecture-independent barrier functions |
| 1367 | * should be expanded to include weaker barriers. |
| 1368 | */ |
Scott Wood | 3b6330c | 2007-05-16 15:06:59 -0500 | [diff] [blame] | 1369 | eieio(); |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1370 | |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1371 | txbdp_start->lstatus = lstatus; |
| 1372 | |
| 1373 | /* Update the current skb pointer to the next entry we will use |
| 1374 | * (wrapping if necessary) */ |
| 1375 | priv->skb_curtx = (priv->skb_curtx + 1) & |
| 1376 | TX_RING_MOD_MASK(priv->tx_ring_size); |
| 1377 | |
| 1378 | priv->cur_tx = next_txbd(txbdp, base, priv->tx_ring_size); |
| 1379 | |
| 1380 | /* reduce TxBD free count */ |
| 1381 | priv->num_txbdfree -= (nr_frags + 1); |
| 1382 | |
| 1383 | dev->trans_start = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | |
| 1385 | /* If the next BD still needs to be cleaned up, then the bds |
| 1386 | are full. We need to tell the kernel to stop sending us stuff. */ |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1387 | if (!priv->num_txbdfree) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | netif_stop_queue(dev); |
| 1389 | |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 1390 | dev->stats.tx_fifo_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | } |
| 1392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | /* Tell the DMA to go go go */ |
| 1394 | gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT); |
| 1395 | |
| 1396 | /* Unlock priv */ |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 1397 | spin_unlock_irqrestore(&priv->txlock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | |
Stephen Hemminger | 54dc79f | 2009-03-27 00:38:45 -0700 | [diff] [blame] | 1399 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | } |
| 1401 | |
| 1402 | /* Stops the kernel queue, and halts the controller */ |
| 1403 | static int gfar_close(struct net_device *dev) |
| 1404 | { |
| 1405 | struct gfar_private *priv = netdev_priv(dev); |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 1406 | |
| 1407 | napi_disable(&priv->napi); |
| 1408 | |
Andy Fleming | 0fd56bb | 2009-02-04 16:43:16 -0800 | [diff] [blame] | 1409 | skb_queue_purge(&priv->rx_recycle); |
Sebastian Siewior | ab93990 | 2008-08-19 21:12:45 +0200 | [diff] [blame] | 1410 | cancel_work_sync(&priv->reset_task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1411 | stop_gfar(dev); |
| 1412 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 1413 | /* Disconnect from the PHY */ |
| 1414 | phy_disconnect(priv->phydev); |
| 1415 | priv->phydev = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | |
| 1417 | netif_stop_queue(dev); |
| 1418 | |
| 1419 | return 0; |
| 1420 | } |
| 1421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | /* Changes the mac address if the controller is not running. */ |
Andy Fleming | f162b9d | 2008-05-02 13:00:30 -0500 | [diff] [blame] | 1423 | static int gfar_set_mac_address(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | { |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1425 | gfar_set_mac_for_addr(dev, 0, dev->dev_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | |
| 1427 | return 0; |
| 1428 | } |
| 1429 | |
| 1430 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1431 | /* Enables and disables VLAN insertion/extraction */ |
| 1432 | static void gfar_vlan_rx_register(struct net_device *dev, |
| 1433 | struct vlan_group *grp) |
| 1434 | { |
| 1435 | struct gfar_private *priv = netdev_priv(dev); |
| 1436 | unsigned long flags; |
| 1437 | u32 tempval; |
| 1438 | |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 1439 | spin_lock_irqsave(&priv->rxlock, flags); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1440 | |
Anton Vorontsov | cd1f55a | 2009-01-26 14:33:23 -0800 | [diff] [blame] | 1441 | priv->vlgrp = grp; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1442 | |
| 1443 | if (grp) { |
| 1444 | /* Enable VLAN tag insertion */ |
| 1445 | tempval = gfar_read(&priv->regs->tctrl); |
| 1446 | tempval |= TCTRL_VLINS; |
| 1447 | |
| 1448 | gfar_write(&priv->regs->tctrl, tempval); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1449 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1450 | /* Enable VLAN tag extraction */ |
| 1451 | tempval = gfar_read(&priv->regs->rctrl); |
| 1452 | tempval |= RCTRL_VLEX; |
Dai Haruki | 77ecaf2 | 2008-12-16 15:30:48 -0800 | [diff] [blame] | 1453 | tempval |= (RCTRL_VLEX | RCTRL_PRSDEP_INIT); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1454 | gfar_write(&priv->regs->rctrl, tempval); |
| 1455 | } else { |
| 1456 | /* Disable VLAN tag insertion */ |
| 1457 | tempval = gfar_read(&priv->regs->tctrl); |
| 1458 | tempval &= ~TCTRL_VLINS; |
| 1459 | gfar_write(&priv->regs->tctrl, tempval); |
| 1460 | |
| 1461 | /* Disable VLAN tag extraction */ |
| 1462 | tempval = gfar_read(&priv->regs->rctrl); |
| 1463 | tempval &= ~RCTRL_VLEX; |
Dai Haruki | 77ecaf2 | 2008-12-16 15:30:48 -0800 | [diff] [blame] | 1464 | /* If parse is no longer required, then disable parser */ |
| 1465 | if (tempval & RCTRL_REQ_PARSER) |
| 1466 | tempval |= RCTRL_PRSDEP_INIT; |
| 1467 | else |
| 1468 | tempval &= ~RCTRL_PRSDEP_INIT; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1469 | gfar_write(&priv->regs->rctrl, tempval); |
| 1470 | } |
| 1471 | |
Dai Haruki | 77ecaf2 | 2008-12-16 15:30:48 -0800 | [diff] [blame] | 1472 | gfar_change_mtu(dev, dev->mtu); |
| 1473 | |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 1474 | spin_unlock_irqrestore(&priv->rxlock, flags); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1475 | } |
| 1476 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | static int gfar_change_mtu(struct net_device *dev, int new_mtu) |
| 1478 | { |
| 1479 | int tempsize, tempval; |
| 1480 | struct gfar_private *priv = netdev_priv(dev); |
| 1481 | int oldsize = priv->rx_buffer_size; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1482 | int frame_size = new_mtu + ETH_HLEN; |
| 1483 | |
Dai Haruki | 77ecaf2 | 2008-12-16 15:30:48 -0800 | [diff] [blame] | 1484 | if (priv->vlgrp) |
Dai Haruki | faa8957 | 2008-03-24 10:53:26 -0500 | [diff] [blame] | 1485 | frame_size += VLAN_HLEN; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1486 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | if ((frame_size < 64) || (frame_size > JUMBO_FRAME_SIZE)) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1488 | if (netif_msg_drv(priv)) |
| 1489 | printk(KERN_ERR "%s: Invalid MTU setting\n", |
| 1490 | dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | return -EINVAL; |
| 1492 | } |
| 1493 | |
Dai Haruki | 77ecaf2 | 2008-12-16 15:30:48 -0800 | [diff] [blame] | 1494 | if (gfar_uses_fcb(priv)) |
| 1495 | frame_size += GMAC_FCB_LEN; |
| 1496 | |
| 1497 | frame_size += priv->padding; |
| 1498 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | tempsize = |
| 1500 | (frame_size & ~(INCREMENTAL_BUFFER_SIZE - 1)) + |
| 1501 | INCREMENTAL_BUFFER_SIZE; |
| 1502 | |
| 1503 | /* Only stop and start the controller if it isn't already |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1504 | * stopped, and we changed something */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | if ((oldsize != tempsize) && (dev->flags & IFF_UP)) |
| 1506 | stop_gfar(dev); |
| 1507 | |
| 1508 | priv->rx_buffer_size = tempsize; |
| 1509 | |
| 1510 | dev->mtu = new_mtu; |
| 1511 | |
| 1512 | gfar_write(&priv->regs->mrblr, priv->rx_buffer_size); |
| 1513 | gfar_write(&priv->regs->maxfrm, priv->rx_buffer_size); |
| 1514 | |
| 1515 | /* If the mtu is larger than the max size for standard |
| 1516 | * ethernet frames (ie, a jumbo frame), then set maccfg2 |
| 1517 | * to allow huge frames, and to check the length */ |
| 1518 | tempval = gfar_read(&priv->regs->maccfg2); |
| 1519 | |
| 1520 | if (priv->rx_buffer_size > DEFAULT_RX_BUFFER_SIZE) |
| 1521 | tempval |= (MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK); |
| 1522 | else |
| 1523 | tempval &= ~(MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK); |
| 1524 | |
| 1525 | gfar_write(&priv->regs->maccfg2, tempval); |
| 1526 | |
| 1527 | if ((oldsize != tempsize) && (dev->flags & IFF_UP)) |
| 1528 | startup_gfar(dev); |
| 1529 | |
| 1530 | return 0; |
| 1531 | } |
| 1532 | |
Sebastian Siewior | ab93990 | 2008-08-19 21:12:45 +0200 | [diff] [blame] | 1533 | /* gfar_reset_task gets scheduled when a packet has not been |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | * transmitted after a set amount of time. |
| 1535 | * For now, assume that clearing out all the structures, and |
Sebastian Siewior | ab93990 | 2008-08-19 21:12:45 +0200 | [diff] [blame] | 1536 | * starting over will fix the problem. |
| 1537 | */ |
| 1538 | static void gfar_reset_task(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | { |
Sebastian Siewior | ab93990 | 2008-08-19 21:12:45 +0200 | [diff] [blame] | 1540 | struct gfar_private *priv = container_of(work, struct gfar_private, |
| 1541 | reset_task); |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 1542 | struct net_device *dev = priv->ndev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | |
| 1544 | if (dev->flags & IFF_UP) { |
Markus Brunner | cbea2707 | 2009-04-15 02:35:40 -0700 | [diff] [blame] | 1545 | netif_stop_queue(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | stop_gfar(dev); |
| 1547 | startup_gfar(dev); |
Markus Brunner | cbea2707 | 2009-04-15 02:35:40 -0700 | [diff] [blame] | 1548 | netif_start_queue(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | } |
| 1550 | |
David S. Miller | 263ba32 | 2008-07-15 03:47:41 -0700 | [diff] [blame] | 1551 | netif_tx_schedule_all(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | } |
| 1553 | |
Sebastian Siewior | ab93990 | 2008-08-19 21:12:45 +0200 | [diff] [blame] | 1554 | static void gfar_timeout(struct net_device *dev) |
| 1555 | { |
| 1556 | struct gfar_private *priv = netdev_priv(dev); |
| 1557 | |
| 1558 | dev->stats.tx_errors++; |
| 1559 | schedule_work(&priv->reset_task); |
| 1560 | } |
| 1561 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | /* Interrupt Handler for Transmit complete */ |
Andy Fleming | f162b9d | 2008-05-02 13:00:30 -0500 | [diff] [blame] | 1563 | static int gfar_clean_tx_ring(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | { |
Dai Haruki | d080cd6 | 2008-04-09 19:37:51 -0500 | [diff] [blame] | 1565 | struct gfar_private *priv = netdev_priv(dev); |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1566 | struct txbd8 *bdp; |
| 1567 | struct txbd8 *lbdp = NULL; |
| 1568 | struct txbd8 *base = priv->tx_bd_base; |
| 1569 | struct sk_buff *skb; |
| 1570 | int skb_dirtytx; |
| 1571 | int tx_ring_size = priv->tx_ring_size; |
| 1572 | int frags = 0; |
| 1573 | int i; |
Dai Haruki | d080cd6 | 2008-04-09 19:37:51 -0500 | [diff] [blame] | 1574 | int howmany = 0; |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1575 | u32 lstatus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | bdp = priv->dirty_tx; |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1578 | skb_dirtytx = priv->skb_dirtytx; |
| 1579 | |
| 1580 | while ((skb = priv->tx_skbuff[skb_dirtytx])) { |
| 1581 | frags = skb_shinfo(skb)->nr_frags; |
| 1582 | lbdp = skip_txbd(bdp, frags, base, tx_ring_size); |
| 1583 | |
| 1584 | lstatus = lbdp->lstatus; |
| 1585 | |
| 1586 | /* Only clean completed frames */ |
| 1587 | if ((lstatus & BD_LFLAG(TXBD_READY)) && |
| 1588 | (lstatus & BD_LENGTH_MASK)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | break; |
| 1590 | |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 1591 | dma_unmap_single(&priv->ofdev->dev, |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1592 | bdp->bufPtr, |
| 1593 | bdp->length, |
| 1594 | DMA_TO_DEVICE); |
| 1595 | |
| 1596 | bdp->lstatus &= BD_LFLAG(TXBD_WRAP); |
| 1597 | bdp = next_txbd(bdp, base, tx_ring_size); |
| 1598 | |
| 1599 | for (i = 0; i < frags; i++) { |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 1600 | dma_unmap_page(&priv->ofdev->dev, |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1601 | bdp->bufPtr, |
| 1602 | bdp->length, |
| 1603 | DMA_TO_DEVICE); |
| 1604 | bdp->lstatus &= BD_LFLAG(TXBD_WRAP); |
| 1605 | bdp = next_txbd(bdp, base, tx_ring_size); |
| 1606 | } |
| 1607 | |
Andy Fleming | 0fd56bb | 2009-02-04 16:43:16 -0800 | [diff] [blame] | 1608 | /* |
| 1609 | * If there's room in the queue (limit it to rx_buffer_size) |
| 1610 | * we add this skb back into the pool, if it's the right size |
| 1611 | */ |
| 1612 | if (skb_queue_len(&priv->rx_recycle) < priv->rx_ring_size && |
| 1613 | skb_recycle_check(skb, priv->rx_buffer_size + |
| 1614 | RXBUF_ALIGNMENT)) |
| 1615 | __skb_queue_head(&priv->rx_recycle, skb); |
| 1616 | else |
| 1617 | dev_kfree_skb_any(skb); |
| 1618 | |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1619 | priv->tx_skbuff[skb_dirtytx] = NULL; |
| 1620 | |
| 1621 | skb_dirtytx = (skb_dirtytx + 1) & |
| 1622 | TX_RING_MOD_MASK(tx_ring_size); |
| 1623 | |
Dai Haruki | d080cd6 | 2008-04-09 19:37:51 -0500 | [diff] [blame] | 1624 | howmany++; |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1625 | priv->num_txbdfree += frags + 1; |
| 1626 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1628 | /* If we freed a buffer, we can restart transmission, if necessary */ |
| 1629 | if (netif_queue_stopped(dev) && priv->num_txbdfree) |
| 1630 | netif_wake_queue(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | |
Dai Haruki | 4669bc9 | 2008-12-17 16:51:04 -0800 | [diff] [blame] | 1632 | /* Update dirty indicators */ |
| 1633 | priv->skb_dirtytx = skb_dirtytx; |
| 1634 | priv->dirty_tx = bdp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | |
Dai Haruki | d080cd6 | 2008-04-09 19:37:51 -0500 | [diff] [blame] | 1636 | dev->stats.tx_packets += howmany; |
| 1637 | |
| 1638 | return howmany; |
| 1639 | } |
| 1640 | |
Dai Haruki | 8c7396a | 2008-12-17 16:52:00 -0800 | [diff] [blame] | 1641 | static void gfar_schedule_cleanup(struct net_device *dev) |
| 1642 | { |
| 1643 | struct gfar_private *priv = netdev_priv(dev); |
Anton Vorontsov | a6d0b91 | 2009-01-12 21:57:34 -0800 | [diff] [blame] | 1644 | unsigned long flags; |
| 1645 | |
| 1646 | spin_lock_irqsave(&priv->txlock, flags); |
| 1647 | spin_lock(&priv->rxlock); |
| 1648 | |
Ben Hutchings | 288379f | 2009-01-19 16:43:59 -0800 | [diff] [blame] | 1649 | if (napi_schedule_prep(&priv->napi)) { |
Dai Haruki | 8c7396a | 2008-12-17 16:52:00 -0800 | [diff] [blame] | 1650 | gfar_write(&priv->regs->imask, IMASK_RTX_DISABLED); |
Ben Hutchings | 288379f | 2009-01-19 16:43:59 -0800 | [diff] [blame] | 1651 | __napi_schedule(&priv->napi); |
Jarek Poplawski | 8707bdd | 2009-02-09 14:59:30 -0800 | [diff] [blame] | 1652 | } else { |
| 1653 | /* |
| 1654 | * Clear IEVENT, so interrupts aren't called again |
| 1655 | * because of the packets that have already arrived. |
| 1656 | */ |
| 1657 | gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK); |
Dai Haruki | 8c7396a | 2008-12-17 16:52:00 -0800 | [diff] [blame] | 1658 | } |
Anton Vorontsov | a6d0b91 | 2009-01-12 21:57:34 -0800 | [diff] [blame] | 1659 | |
| 1660 | spin_unlock(&priv->rxlock); |
| 1661 | spin_unlock_irqrestore(&priv->txlock, flags); |
Dai Haruki | 8c7396a | 2008-12-17 16:52:00 -0800 | [diff] [blame] | 1662 | } |
| 1663 | |
Dai Haruki | d080cd6 | 2008-04-09 19:37:51 -0500 | [diff] [blame] | 1664 | /* Interrupt Handler for Transmit complete */ |
| 1665 | static irqreturn_t gfar_transmit(int irq, void *dev_id) |
| 1666 | { |
Dai Haruki | 8c7396a | 2008-12-17 16:52:00 -0800 | [diff] [blame] | 1667 | gfar_schedule_cleanup((struct net_device *)dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | return IRQ_HANDLED; |
| 1669 | } |
| 1670 | |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1671 | static void gfar_new_rxbdp(struct net_device *dev, struct rxbd8 *bdp, |
| 1672 | struct sk_buff *skb) |
| 1673 | { |
| 1674 | struct gfar_private *priv = netdev_priv(dev); |
Dai Haruki | 5a5efed | 2008-12-16 15:34:50 -0800 | [diff] [blame] | 1675 | u32 lstatus; |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1676 | |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 1677 | bdp->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data, |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1678 | priv->rx_buffer_size, DMA_FROM_DEVICE); |
| 1679 | |
Dai Haruki | 5a5efed | 2008-12-16 15:34:50 -0800 | [diff] [blame] | 1680 | lstatus = BD_LFLAG(RXBD_EMPTY | RXBD_INTERRUPT); |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1681 | |
| 1682 | if (bdp == priv->rx_bd_base + priv->rx_ring_size - 1) |
Dai Haruki | 5a5efed | 2008-12-16 15:34:50 -0800 | [diff] [blame] | 1683 | lstatus |= BD_LFLAG(RXBD_WRAP); |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1684 | |
| 1685 | eieio(); |
| 1686 | |
Dai Haruki | 5a5efed | 2008-12-16 15:34:50 -0800 | [diff] [blame] | 1687 | bdp->lstatus = lstatus; |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1688 | } |
| 1689 | |
| 1690 | |
| 1691 | struct sk_buff * gfar_new_skb(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | { |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1693 | unsigned int alignamount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1694 | struct gfar_private *priv = netdev_priv(dev); |
| 1695 | struct sk_buff *skb = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | |
Andy Fleming | 0fd56bb | 2009-02-04 16:43:16 -0800 | [diff] [blame] | 1697 | skb = __skb_dequeue(&priv->rx_recycle); |
| 1698 | if (!skb) |
| 1699 | skb = netdev_alloc_skb(dev, |
| 1700 | priv->rx_buffer_size + RXBUF_ALIGNMENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1702 | if (!skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | return NULL; |
| 1704 | |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1705 | alignamount = RXBUF_ALIGNMENT - |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 1706 | (((unsigned long) skb->data) & (RXBUF_ALIGNMENT - 1)); |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1707 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | /* We need the data buffer to be aligned properly. We will reserve |
| 1709 | * as many bytes as needed to align the data properly |
| 1710 | */ |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1711 | skb_reserve(skb, alignamount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | return skb; |
| 1714 | } |
| 1715 | |
Li Yang | 298e1a9 | 2007-10-16 14:18:13 +0800 | [diff] [blame] | 1716 | static inline void count_errors(unsigned short status, struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | { |
Li Yang | 298e1a9 | 2007-10-16 14:18:13 +0800 | [diff] [blame] | 1718 | struct gfar_private *priv = netdev_priv(dev); |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 1719 | struct net_device_stats *stats = &dev->stats; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | struct gfar_extra_stats *estats = &priv->extra_stats; |
| 1721 | |
| 1722 | /* If the packet was truncated, none of the other errors |
| 1723 | * matter */ |
| 1724 | if (status & RXBD_TRUNCATED) { |
| 1725 | stats->rx_length_errors++; |
| 1726 | |
| 1727 | estats->rx_trunc++; |
| 1728 | |
| 1729 | return; |
| 1730 | } |
| 1731 | /* Count the errors, if there were any */ |
| 1732 | if (status & (RXBD_LARGE | RXBD_SHORT)) { |
| 1733 | stats->rx_length_errors++; |
| 1734 | |
| 1735 | if (status & RXBD_LARGE) |
| 1736 | estats->rx_large++; |
| 1737 | else |
| 1738 | estats->rx_short++; |
| 1739 | } |
| 1740 | if (status & RXBD_NONOCTET) { |
| 1741 | stats->rx_frame_errors++; |
| 1742 | estats->rx_nonoctet++; |
| 1743 | } |
| 1744 | if (status & RXBD_CRCERR) { |
| 1745 | estats->rx_crcerr++; |
| 1746 | stats->rx_crc_errors++; |
| 1747 | } |
| 1748 | if (status & RXBD_OVERRUN) { |
| 1749 | estats->rx_overrun++; |
| 1750 | stats->rx_crc_errors++; |
| 1751 | } |
| 1752 | } |
| 1753 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1754 | irqreturn_t gfar_receive(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | { |
Dai Haruki | 8c7396a | 2008-12-17 16:52:00 -0800 | [diff] [blame] | 1756 | gfar_schedule_cleanup((struct net_device *)dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | return IRQ_HANDLED; |
| 1758 | } |
| 1759 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1760 | static inline void gfar_rx_checksum(struct sk_buff *skb, struct rxfcb *fcb) |
| 1761 | { |
| 1762 | /* If valid headers were found, and valid sums |
| 1763 | * were verified, then we tell the kernel that no |
| 1764 | * checksumming is necessary. Otherwise, it is */ |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 1765 | if ((fcb->flags & RXFCB_CSUM_MASK) == (RXFCB_CIP | RXFCB_CTU)) |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1766 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
| 1767 | else |
| 1768 | skb->ip_summed = CHECKSUM_NONE; |
| 1769 | } |
| 1770 | |
| 1771 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | /* gfar_process_frame() -- handle one incoming packet if skb |
| 1773 | * isn't NULL. */ |
| 1774 | static int gfar_process_frame(struct net_device *dev, struct sk_buff *skb, |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 1775 | int amount_pull) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | { |
| 1777 | struct gfar_private *priv = netdev_priv(dev); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1778 | struct rxfcb *fcb = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 1780 | int ret; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1781 | |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 1782 | /* fcb is at the beginning if exists */ |
| 1783 | fcb = (struct rxfcb *)skb->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 1785 | /* Remove the FCB from the skb */ |
| 1786 | /* Remove the padded bytes, if there are any */ |
| 1787 | if (amount_pull) |
| 1788 | skb_pull(skb, amount_pull); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1789 | |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 1790 | if (priv->rx_csum_enable) |
| 1791 | gfar_rx_checksum(skb, fcb); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1792 | |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 1793 | /* Tell the skb what kind of packet this is */ |
| 1794 | skb->protocol = eth_type_trans(skb, dev); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1795 | |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 1796 | /* Send the packet up the stack */ |
| 1797 | if (unlikely(priv->vlgrp && (fcb->flags & RXFCB_VLN))) |
| 1798 | ret = vlan_hwaccel_receive_skb(skb, priv->vlgrp, fcb->vlctl); |
| 1799 | else |
| 1800 | ret = netif_receive_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1801 | |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 1802 | if (NET_RX_DROP == ret) |
| 1803 | priv->extra_stats.kernel_dropped++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | |
| 1805 | return 0; |
| 1806 | } |
| 1807 | |
| 1808 | /* gfar_clean_rx_ring() -- Processes each frame in the rx ring |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1809 | * until the budget/quota has been reached. Returns the number |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | * of frames handled |
| 1811 | */ |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1812 | int gfar_clean_rx_ring(struct net_device *dev, int rx_work_limit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | { |
Andy Fleming | 31de198 | 2008-12-16 15:33:40 -0800 | [diff] [blame] | 1814 | struct rxbd8 *bdp, *base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | struct sk_buff *skb; |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 1816 | int pkt_len; |
| 1817 | int amount_pull; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | int howmany = 0; |
| 1819 | struct gfar_private *priv = netdev_priv(dev); |
| 1820 | |
| 1821 | /* Get the first full descriptor */ |
| 1822 | bdp = priv->cur_rx; |
Andy Fleming | 31de198 | 2008-12-16 15:33:40 -0800 | [diff] [blame] | 1823 | base = priv->rx_bd_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 1825 | amount_pull = (gfar_uses_fcb(priv) ? GMAC_FCB_LEN : 0) + |
| 1826 | priv->padding; |
| 1827 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | while (!((bdp->status & RXBD_EMPTY) || (--rx_work_limit < 0))) { |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1829 | struct sk_buff *newskb; |
Scott Wood | 3b6330c | 2007-05-16 15:06:59 -0500 | [diff] [blame] | 1830 | rmb(); |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1831 | |
| 1832 | /* Add another skb for the future */ |
| 1833 | newskb = gfar_new_skb(dev); |
| 1834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | skb = priv->rx_skbuff[priv->skb_currx]; |
| 1836 | |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 1837 | dma_unmap_single(&priv->ofdev->dev, bdp->bufPtr, |
Andy Fleming | 8118305 | 2008-11-12 10:07:11 -0600 | [diff] [blame] | 1838 | priv->rx_buffer_size, DMA_FROM_DEVICE); |
| 1839 | |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1840 | /* We drop the frame if we failed to allocate a new buffer */ |
| 1841 | if (unlikely(!newskb || !(bdp->status & RXBD_LAST) || |
| 1842 | bdp->status & RXBD_ERR)) { |
| 1843 | count_errors(bdp->status, dev); |
| 1844 | |
| 1845 | if (unlikely(!newskb)) |
| 1846 | newskb = skb; |
Lennert Buytenhek | 4e2fd55 | 2009-05-25 00:42:34 -0700 | [diff] [blame] | 1847 | else if (skb) { |
| 1848 | /* |
| 1849 | * We need to reset ->data to what it |
| 1850 | * was before gfar_new_skb() re-aligned |
| 1851 | * it to an RXBUF_ALIGNMENT boundary |
| 1852 | * before we put the skb back on the |
| 1853 | * recycle list. |
| 1854 | */ |
| 1855 | skb->data = skb->head + NET_SKB_PAD; |
Andy Fleming | 0fd56bb | 2009-02-04 16:43:16 -0800 | [diff] [blame] | 1856 | __skb_queue_head(&priv->rx_recycle, skb); |
Lennert Buytenhek | 4e2fd55 | 2009-05-25 00:42:34 -0700 | [diff] [blame] | 1857 | } |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1858 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1859 | /* Increment the number of packets */ |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 1860 | dev->stats.rx_packets++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | howmany++; |
| 1862 | |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 1863 | if (likely(skb)) { |
| 1864 | pkt_len = bdp->length - ETH_FCS_LEN; |
| 1865 | /* Remove the FCS from the packet length */ |
| 1866 | skb_put(skb, pkt_len); |
| 1867 | dev->stats.rx_bytes += pkt_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 1869 | if (in_irq() || irqs_disabled()) |
| 1870 | printk("Interrupt problem!\n"); |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 1871 | gfar_process_frame(dev, skb, amount_pull); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | |
Dai Haruki | 2c2db48 | 2008-12-16 15:31:15 -0800 | [diff] [blame] | 1873 | } else { |
| 1874 | if (netif_msg_rx_err(priv)) |
| 1875 | printk(KERN_WARNING |
| 1876 | "%s: Missing skb!\n", dev->name); |
| 1877 | dev->stats.rx_dropped++; |
| 1878 | priv->extra_stats.rx_skbmissing++; |
| 1879 | } |
| 1880 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | } |
| 1882 | |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1883 | priv->rx_skbuff[priv->skb_currx] = newskb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 | |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1885 | /* Setup the new bdp */ |
| 1886 | gfar_new_rxbdp(dev, bdp, newskb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | |
| 1888 | /* Update to the next pointer */ |
Andy Fleming | 31de198 | 2008-12-16 15:33:40 -0800 | [diff] [blame] | 1889 | bdp = next_bd(bdp, base, priv->rx_ring_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | |
| 1891 | /* update to point at the next skb */ |
| 1892 | priv->skb_currx = |
Andy Fleming | 815b97c | 2008-04-22 17:18:29 -0500 | [diff] [blame] | 1893 | (priv->skb_currx + 1) & |
| 1894 | RX_RING_MOD_MASK(priv->rx_ring_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | } |
| 1896 | |
| 1897 | /* Update the current rxbd pointer to be the next one */ |
| 1898 | priv->cur_rx = bdp; |
| 1899 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | return howmany; |
| 1901 | } |
| 1902 | |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 1903 | static int gfar_poll(struct napi_struct *napi, int budget) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | { |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 1905 | struct gfar_private *priv = container_of(napi, struct gfar_private, napi); |
Kumar Gala | 4826857 | 2009-03-18 23:28:22 -0700 | [diff] [blame] | 1906 | struct net_device *dev = priv->ndev; |
Andy Fleming | 4219988 | 2008-12-17 16:52:30 -0800 | [diff] [blame] | 1907 | int tx_cleaned = 0; |
| 1908 | int rx_cleaned = 0; |
Dai Haruki | d080cd6 | 2008-04-09 19:37:51 -0500 | [diff] [blame] | 1909 | unsigned long flags; |
| 1910 | |
Dai Haruki | 8c7396a | 2008-12-17 16:52:00 -0800 | [diff] [blame] | 1911 | /* Clear IEVENT, so interrupts aren't called again |
| 1912 | * because of the packets that have already arrived */ |
| 1913 | gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK); |
| 1914 | |
Dai Haruki | d080cd6 | 2008-04-09 19:37:51 -0500 | [diff] [blame] | 1915 | /* If we fail to get the lock, don't bother with the TX BDs */ |
| 1916 | if (spin_trylock_irqsave(&priv->txlock, flags)) { |
Andy Fleming | 4219988 | 2008-12-17 16:52:30 -0800 | [diff] [blame] | 1917 | tx_cleaned = gfar_clean_tx_ring(dev); |
Dai Haruki | d080cd6 | 2008-04-09 19:37:51 -0500 | [diff] [blame] | 1918 | spin_unlock_irqrestore(&priv->txlock, flags); |
| 1919 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1920 | |
Andy Fleming | 4219988 | 2008-12-17 16:52:30 -0800 | [diff] [blame] | 1921 | rx_cleaned = gfar_clean_rx_ring(dev, budget); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | |
Andy Fleming | 4219988 | 2008-12-17 16:52:30 -0800 | [diff] [blame] | 1923 | if (tx_cleaned) |
| 1924 | return budget; |
| 1925 | |
| 1926 | if (rx_cleaned < budget) { |
Ben Hutchings | 288379f | 2009-01-19 16:43:59 -0800 | [diff] [blame] | 1927 | napi_complete(napi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | |
| 1929 | /* Clear the halt bit in RSTAT */ |
| 1930 | gfar_write(&priv->regs->rstat, RSTAT_CLEAR_RHALT); |
| 1931 | |
| 1932 | gfar_write(&priv->regs->imask, IMASK_DEFAULT); |
| 1933 | |
| 1934 | /* If we are coalescing interrupts, update the timer */ |
| 1935 | /* Otherwise, clear it */ |
Andy Fleming | 2f44891 | 2008-03-24 10:53:28 -0500 | [diff] [blame] | 1936 | if (likely(priv->rxcoalescing)) { |
| 1937 | gfar_write(&priv->regs->rxic, 0); |
Dai Haruki | b46a845 | 2008-12-16 15:29:52 -0800 | [diff] [blame] | 1938 | gfar_write(&priv->regs->rxic, priv->rxic); |
Andy Fleming | 2f44891 | 2008-03-24 10:53:28 -0500 | [diff] [blame] | 1939 | } |
Dai Haruki | 8c7396a | 2008-12-17 16:52:00 -0800 | [diff] [blame] | 1940 | if (likely(priv->txcoalescing)) { |
| 1941 | gfar_write(&priv->regs->txic, 0); |
| 1942 | gfar_write(&priv->regs->txic, priv->txic); |
| 1943 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | } |
| 1945 | |
Andy Fleming | 4219988 | 2008-12-17 16:52:30 -0800 | [diff] [blame] | 1946 | return rx_cleaned; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | |
Vitaly Wool | f2d71c2 | 2006-11-07 13:27:02 +0300 | [diff] [blame] | 1949 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1950 | /* |
| 1951 | * Polling 'interrupt' - used by things like netconsole to send skbs |
| 1952 | * without having to re-enable interrupts. It's not called while |
| 1953 | * the interrupt routine is executing. |
| 1954 | */ |
| 1955 | static void gfar_netpoll(struct net_device *dev) |
| 1956 | { |
| 1957 | struct gfar_private *priv = netdev_priv(dev); |
| 1958 | |
| 1959 | /* If the device has multiple interrupts, run tx/rx */ |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 1960 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) { |
Vitaly Wool | f2d71c2 | 2006-11-07 13:27:02 +0300 | [diff] [blame] | 1961 | disable_irq(priv->interruptTransmit); |
| 1962 | disable_irq(priv->interruptReceive); |
| 1963 | disable_irq(priv->interruptError); |
| 1964 | gfar_interrupt(priv->interruptTransmit, dev); |
| 1965 | enable_irq(priv->interruptError); |
| 1966 | enable_irq(priv->interruptReceive); |
| 1967 | enable_irq(priv->interruptTransmit); |
| 1968 | } else { |
| 1969 | disable_irq(priv->interruptTransmit); |
| 1970 | gfar_interrupt(priv->interruptTransmit, dev); |
| 1971 | enable_irq(priv->interruptTransmit); |
| 1972 | } |
| 1973 | } |
| 1974 | #endif |
| 1975 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | /* The interrupt handler for devices with one interrupt */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1977 | static irqreturn_t gfar_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | { |
| 1979 | struct net_device *dev = dev_id; |
| 1980 | struct gfar_private *priv = netdev_priv(dev); |
| 1981 | |
| 1982 | /* Save ievent for future reference */ |
| 1983 | u32 events = gfar_read(&priv->regs->ievent); |
| 1984 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | /* Check for reception */ |
Sergei Shtylyov | 538cc7e | 2007-02-15 17:56:01 +0400 | [diff] [blame] | 1986 | if (events & IEVENT_RX_MASK) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1987 | gfar_receive(irq, dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1988 | |
| 1989 | /* Check for transmit completion */ |
Sergei Shtylyov | 538cc7e | 2007-02-15 17:56:01 +0400 | [diff] [blame] | 1990 | if (events & IEVENT_TX_MASK) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1991 | gfar_transmit(irq, dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1992 | |
Sergei Shtylyov | 538cc7e | 2007-02-15 17:56:01 +0400 | [diff] [blame] | 1993 | /* Check for errors */ |
| 1994 | if (events & IEVENT_ERR_MASK) |
| 1995 | gfar_error(irq, dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1996 | |
| 1997 | return IRQ_HANDLED; |
| 1998 | } |
| 1999 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2000 | /* Called every time the controller might need to be made |
| 2001 | * aware of new link state. The PHY code conveys this |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2002 | * information through variables in the phydev structure, and this |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | * function converts those variables into the appropriate |
| 2004 | * register values, and can bring down the device if needed. |
| 2005 | */ |
| 2006 | static void adjust_link(struct net_device *dev) |
| 2007 | { |
| 2008 | struct gfar_private *priv = netdev_priv(dev); |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 2009 | struct gfar __iomem *regs = priv->regs; |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2010 | unsigned long flags; |
| 2011 | struct phy_device *phydev = priv->phydev; |
| 2012 | int new_state = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 2014 | spin_lock_irqsave(&priv->txlock, flags); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2015 | if (phydev->link) { |
| 2016 | u32 tempval = gfar_read(®s->maccfg2); |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 2017 | u32 ecntrl = gfar_read(®s->ecntrl); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2018 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2019 | /* Now we make sure that we can be in full duplex mode. |
| 2020 | * If not, we operate in half-duplex mode. */ |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2021 | if (phydev->duplex != priv->oldduplex) { |
| 2022 | new_state = 1; |
| 2023 | if (!(phydev->duplex)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | tempval &= ~(MACCFG2_FULL_DUPLEX); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2025 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2026 | tempval |= MACCFG2_FULL_DUPLEX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2028 | priv->oldduplex = phydev->duplex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 | } |
| 2030 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2031 | if (phydev->speed != priv->oldspeed) { |
| 2032 | new_state = 1; |
| 2033 | switch (phydev->speed) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | case 1000: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | tempval = |
| 2036 | ((tempval & ~(MACCFG2_IF)) | MACCFG2_GMII); |
Li Yang | f430e49 | 2009-01-06 14:08:10 -0800 | [diff] [blame] | 2037 | |
| 2038 | ecntrl &= ~(ECNTRL_R100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2039 | break; |
| 2040 | case 100: |
| 2041 | case 10: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2042 | tempval = |
| 2043 | ((tempval & ~(MACCFG2_IF)) | MACCFG2_MII); |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 2044 | |
| 2045 | /* Reduced mode distinguishes |
| 2046 | * between 10 and 100 */ |
| 2047 | if (phydev->speed == SPEED_100) |
| 2048 | ecntrl |= ECNTRL_R100; |
| 2049 | else |
| 2050 | ecntrl &= ~(ECNTRL_R100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | break; |
| 2052 | default: |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2053 | if (netif_msg_link(priv)) |
| 2054 | printk(KERN_WARNING |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2055 | "%s: Ack! Speed (%d) is not 10/100/1000!\n", |
| 2056 | dev->name, phydev->speed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2057 | break; |
| 2058 | } |
| 2059 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2060 | priv->oldspeed = phydev->speed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | } |
| 2062 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2063 | gfar_write(®s->maccfg2, tempval); |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 2064 | gfar_write(®s->ecntrl, ecntrl); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2065 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2066 | if (!priv->oldlink) { |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2067 | new_state = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2068 | priv->oldlink = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | } |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2070 | } else if (priv->oldlink) { |
| 2071 | new_state = 1; |
| 2072 | priv->oldlink = 0; |
| 2073 | priv->oldspeed = 0; |
| 2074 | priv->oldduplex = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2076 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2077 | if (new_state && netif_msg_link(priv)) |
| 2078 | phy_print_status(phydev); |
| 2079 | |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 2080 | spin_unlock_irqrestore(&priv->txlock, flags); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2081 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2082 | |
| 2083 | /* Update the hash table based on the current list of multicast |
| 2084 | * addresses we subscribe to. Also, change the promiscuity of |
| 2085 | * the device based on the flags (this function is called |
| 2086 | * whenever dev->flags is changed */ |
| 2087 | static void gfar_set_multi(struct net_device *dev) |
| 2088 | { |
| 2089 | struct dev_mc_list *mc_ptr; |
| 2090 | struct gfar_private *priv = netdev_priv(dev); |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 2091 | struct gfar __iomem *regs = priv->regs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2092 | u32 tempval; |
| 2093 | |
| 2094 | if(dev->flags & IFF_PROMISC) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | /* Set RCTRL to PROM */ |
| 2096 | tempval = gfar_read(®s->rctrl); |
| 2097 | tempval |= RCTRL_PROM; |
| 2098 | gfar_write(®s->rctrl, tempval); |
| 2099 | } else { |
| 2100 | /* Set RCTRL to not PROM */ |
| 2101 | tempval = gfar_read(®s->rctrl); |
| 2102 | tempval &= ~(RCTRL_PROM); |
| 2103 | gfar_write(®s->rctrl, tempval); |
| 2104 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2106 | if(dev->flags & IFF_ALLMULTI) { |
| 2107 | /* Set the hash to rx all multicast frames */ |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2108 | gfar_write(®s->igaddr0, 0xffffffff); |
| 2109 | gfar_write(®s->igaddr1, 0xffffffff); |
| 2110 | gfar_write(®s->igaddr2, 0xffffffff); |
| 2111 | gfar_write(®s->igaddr3, 0xffffffff); |
| 2112 | gfar_write(®s->igaddr4, 0xffffffff); |
| 2113 | gfar_write(®s->igaddr5, 0xffffffff); |
| 2114 | gfar_write(®s->igaddr6, 0xffffffff); |
| 2115 | gfar_write(®s->igaddr7, 0xffffffff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | gfar_write(®s->gaddr0, 0xffffffff); |
| 2117 | gfar_write(®s->gaddr1, 0xffffffff); |
| 2118 | gfar_write(®s->gaddr2, 0xffffffff); |
| 2119 | gfar_write(®s->gaddr3, 0xffffffff); |
| 2120 | gfar_write(®s->gaddr4, 0xffffffff); |
| 2121 | gfar_write(®s->gaddr5, 0xffffffff); |
| 2122 | gfar_write(®s->gaddr6, 0xffffffff); |
| 2123 | gfar_write(®s->gaddr7, 0xffffffff); |
| 2124 | } else { |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 2125 | int em_num; |
| 2126 | int idx; |
| 2127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | /* zero out the hash */ |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2129 | gfar_write(®s->igaddr0, 0x0); |
| 2130 | gfar_write(®s->igaddr1, 0x0); |
| 2131 | gfar_write(®s->igaddr2, 0x0); |
| 2132 | gfar_write(®s->igaddr3, 0x0); |
| 2133 | gfar_write(®s->igaddr4, 0x0); |
| 2134 | gfar_write(®s->igaddr5, 0x0); |
| 2135 | gfar_write(®s->igaddr6, 0x0); |
| 2136 | gfar_write(®s->igaddr7, 0x0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2137 | gfar_write(®s->gaddr0, 0x0); |
| 2138 | gfar_write(®s->gaddr1, 0x0); |
| 2139 | gfar_write(®s->gaddr2, 0x0); |
| 2140 | gfar_write(®s->gaddr3, 0x0); |
| 2141 | gfar_write(®s->gaddr4, 0x0); |
| 2142 | gfar_write(®s->gaddr5, 0x0); |
| 2143 | gfar_write(®s->gaddr6, 0x0); |
| 2144 | gfar_write(®s->gaddr7, 0x0); |
| 2145 | |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 2146 | /* If we have extended hash tables, we need to |
| 2147 | * clear the exact match registers to prepare for |
| 2148 | * setting them */ |
| 2149 | if (priv->extended_hash) { |
| 2150 | em_num = GFAR_EM_NUM + 1; |
| 2151 | gfar_clear_exact_match(dev); |
| 2152 | idx = 1; |
| 2153 | } else { |
| 2154 | idx = 0; |
| 2155 | em_num = 0; |
| 2156 | } |
| 2157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2158 | if(dev->mc_count == 0) |
| 2159 | return; |
| 2160 | |
| 2161 | /* Parse the list, and set the appropriate bits */ |
| 2162 | for(mc_ptr = dev->mc_list; mc_ptr; mc_ptr = mc_ptr->next) { |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 2163 | if (idx < em_num) { |
| 2164 | gfar_set_mac_for_addr(dev, idx, |
| 2165 | mc_ptr->dmi_addr); |
| 2166 | idx++; |
| 2167 | } else |
| 2168 | gfar_set_hash_for_addr(dev, mc_ptr->dmi_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2169 | } |
| 2170 | } |
| 2171 | |
| 2172 | return; |
| 2173 | } |
| 2174 | |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 2175 | |
| 2176 | /* Clears each of the exact match registers to zero, so they |
| 2177 | * don't interfere with normal reception */ |
| 2178 | static void gfar_clear_exact_match(struct net_device *dev) |
| 2179 | { |
| 2180 | int idx; |
| 2181 | u8 zero_arr[MAC_ADDR_LEN] = {0,0,0,0,0,0}; |
| 2182 | |
| 2183 | for(idx = 1;idx < GFAR_EM_NUM + 1;idx++) |
| 2184 | gfar_set_mac_for_addr(dev, idx, (u8 *)zero_arr); |
| 2185 | } |
| 2186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2187 | /* Set the appropriate hash bit for the given addr */ |
| 2188 | /* The algorithm works like so: |
| 2189 | * 1) Take the Destination Address (ie the multicast address), and |
| 2190 | * do a CRC on it (little endian), and reverse the bits of the |
| 2191 | * result. |
| 2192 | * 2) Use the 8 most significant bits as a hash into a 256-entry |
| 2193 | * table. The table is controlled through 8 32-bit registers: |
| 2194 | * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is |
| 2195 | * gaddr7. This means that the 3 most significant bits in the |
| 2196 | * hash index which gaddr register to use, and the 5 other bits |
| 2197 | * indicate which bit (assuming an IBM numbering scheme, which |
| 2198 | * for PowerPC (tm) is usually the case) in the register holds |
| 2199 | * the entry. */ |
| 2200 | static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr) |
| 2201 | { |
| 2202 | u32 tempval; |
| 2203 | struct gfar_private *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | u32 result = ether_crc(MAC_ADDR_LEN, addr); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2205 | int width = priv->hash_width; |
| 2206 | u8 whichbit = (result >> (32 - width)) & 0x1f; |
| 2207 | u8 whichreg = result >> (32 - width + 5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2208 | u32 value = (1 << (31-whichbit)); |
| 2209 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2210 | tempval = gfar_read(priv->hash_regs[whichreg]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | tempval |= value; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2212 | gfar_write(priv->hash_regs[whichreg], tempval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | |
| 2214 | return; |
| 2215 | } |
| 2216 | |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 2217 | |
| 2218 | /* There are multiple MAC Address register pairs on some controllers |
| 2219 | * This function sets the numth pair to a given address |
| 2220 | */ |
| 2221 | static void gfar_set_mac_for_addr(struct net_device *dev, int num, u8 *addr) |
| 2222 | { |
| 2223 | struct gfar_private *priv = netdev_priv(dev); |
| 2224 | int idx; |
| 2225 | char tmpbuf[MAC_ADDR_LEN]; |
| 2226 | u32 tempval; |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 2227 | u32 __iomem *macptr = &priv->regs->macstnaddr1; |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 2228 | |
| 2229 | macptr += num*2; |
| 2230 | |
| 2231 | /* Now copy it into the mac registers backwards, cuz */ |
| 2232 | /* little endian is silly */ |
| 2233 | for (idx = 0; idx < MAC_ADDR_LEN; idx++) |
| 2234 | tmpbuf[MAC_ADDR_LEN - 1 - idx] = addr[idx]; |
| 2235 | |
| 2236 | gfar_write(macptr, *((u32 *) (tmpbuf))); |
| 2237 | |
| 2238 | tempval = *((u32 *) (tmpbuf + 4)); |
| 2239 | |
| 2240 | gfar_write(macptr+1, tempval); |
| 2241 | } |
| 2242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2243 | /* GFAR error interrupt handler */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 2244 | static irqreturn_t gfar_error(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | { |
| 2246 | struct net_device *dev = dev_id; |
| 2247 | struct gfar_private *priv = netdev_priv(dev); |
| 2248 | |
| 2249 | /* Save ievent for future reference */ |
| 2250 | u32 events = gfar_read(&priv->regs->ievent); |
| 2251 | |
| 2252 | /* Clear IEVENT */ |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 2253 | gfar_write(&priv->regs->ievent, events & IEVENT_ERR_MASK); |
| 2254 | |
| 2255 | /* Magic Packet is not an error. */ |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 2256 | if ((priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) && |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 2257 | (events & IEVENT_MAG)) |
| 2258 | events &= ~IEVENT_MAG; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | |
| 2260 | /* Hmm... */ |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2261 | if (netif_msg_rx_err(priv) || netif_msg_tx_err(priv)) |
| 2262 | printk(KERN_DEBUG "%s: error interrupt (ievent=0x%08x imask=0x%08x)\n", |
Sergei Shtylyov | 538cc7e | 2007-02-15 17:56:01 +0400 | [diff] [blame] | 2263 | dev->name, events, gfar_read(&priv->regs->imask)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | |
| 2265 | /* Update the error counters */ |
| 2266 | if (events & IEVENT_TXE) { |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 2267 | dev->stats.tx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | |
| 2269 | if (events & IEVENT_LC) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 2270 | dev->stats.tx_window_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | if (events & IEVENT_CRL) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 2272 | dev->stats.tx_aborted_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 | if (events & IEVENT_XFUN) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2274 | if (netif_msg_tx_err(priv)) |
Sergei Shtylyov | 538cc7e | 2007-02-15 17:56:01 +0400 | [diff] [blame] | 2275 | printk(KERN_DEBUG "%s: TX FIFO underrun, " |
| 2276 | "packet dropped.\n", dev->name); |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 2277 | dev->stats.tx_dropped++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2278 | priv->extra_stats.tx_underrun++; |
| 2279 | |
| 2280 | /* Reactivate the Tx Queues */ |
| 2281 | gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT); |
| 2282 | } |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2283 | if (netif_msg_tx_err(priv)) |
| 2284 | printk(KERN_DEBUG "%s: Transmit Error\n", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | } |
| 2286 | if (events & IEVENT_BSY) { |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 2287 | dev->stats.rx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2288 | priv->extra_stats.rx_bsy++; |
| 2289 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 2290 | gfar_receive(irq, dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2291 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2292 | if (netif_msg_rx_err(priv)) |
Sergei Shtylyov | 538cc7e | 2007-02-15 17:56:01 +0400 | [diff] [blame] | 2293 | printk(KERN_DEBUG "%s: busy error (rstat: %x)\n", |
| 2294 | dev->name, gfar_read(&priv->regs->rstat)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | } |
| 2296 | if (events & IEVENT_BABR) { |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 2297 | dev->stats.rx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2298 | priv->extra_stats.rx_babr++; |
| 2299 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2300 | if (netif_msg_rx_err(priv)) |
Sergei Shtylyov | 538cc7e | 2007-02-15 17:56:01 +0400 | [diff] [blame] | 2301 | printk(KERN_DEBUG "%s: babbling RX error\n", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2302 | } |
| 2303 | if (events & IEVENT_EBERR) { |
| 2304 | priv->extra_stats.eberr++; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2305 | if (netif_msg_rx_err(priv)) |
Sergei Shtylyov | 538cc7e | 2007-02-15 17:56:01 +0400 | [diff] [blame] | 2306 | printk(KERN_DEBUG "%s: bus error\n", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2307 | } |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2308 | if ((events & IEVENT_RXC) && netif_msg_rx_status(priv)) |
Sergei Shtylyov | 538cc7e | 2007-02-15 17:56:01 +0400 | [diff] [blame] | 2309 | printk(KERN_DEBUG "%s: control frame\n", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2310 | |
| 2311 | if (events & IEVENT_BABT) { |
| 2312 | priv->extra_stats.tx_babt++; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 2313 | if (netif_msg_tx_err(priv)) |
Sergei Shtylyov | 538cc7e | 2007-02-15 17:56:01 +0400 | [diff] [blame] | 2314 | printk(KERN_DEBUG "%s: babbling TX error\n", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2315 | } |
| 2316 | return IRQ_HANDLED; |
| 2317 | } |
| 2318 | |
Kay Sievers | 72abb46 | 2008-04-18 13:50:44 -0700 | [diff] [blame] | 2319 | /* work with hotplug and coldplug */ |
| 2320 | MODULE_ALIAS("platform:fsl-gianfar"); |
| 2321 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 2322 | static struct of_device_id gfar_match[] = |
| 2323 | { |
| 2324 | { |
| 2325 | .type = "network", |
| 2326 | .compatible = "gianfar", |
| 2327 | }, |
| 2328 | {}, |
| 2329 | }; |
| 2330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | /* Structure for a device driver */ |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 2332 | static struct of_platform_driver gfar_driver = { |
| 2333 | .name = "fsl-gianfar", |
| 2334 | .match_table = gfar_match, |
| 2335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2336 | .probe = gfar_probe, |
| 2337 | .remove = gfar_remove, |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 2338 | .suspend = gfar_suspend, |
| 2339 | .resume = gfar_resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2340 | }; |
| 2341 | |
| 2342 | static int __init gfar_init(void) |
| 2343 | { |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 2344 | return of_register_platform_driver(&gfar_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2345 | } |
| 2346 | |
| 2347 | static void __exit gfar_exit(void) |
| 2348 | { |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 2349 | of_unregister_platform_driver(&gfar_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2350 | } |
| 2351 | |
| 2352 | module_init(gfar_init); |
| 2353 | module_exit(gfar_exit); |
| 2354 | |