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