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