2 * drivers/net/gianfar.c
4 * Gianfar Ethernet Driver
5 * This driver is designed for the non-CPM ethernet controllers
6 * on the 85xx and 83xx family of integrated processors
7 * Based on 8260_io/fcc_enet.c
10 * Maintainer: Kumar Gala
11 * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com>
13 * Copyright 2002-2009 Freescale Semiconductor, Inc.
14 * Copyright 2007 MontaVista Software, Inc.
16 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the
18 * Free Software Foundation; either version 2 of the License, or (at your
19 * option) any later version.
21 * Gianfar: AKA Lambda Draconis, "Dragon"
29 * The driver is initialized through of_device. Configuration information
30 * is therefore conveyed through an OF-style device tree.
32 * The Gianfar Ethernet Controller uses a ring of buffer
33 * descriptors. The beginning is indicated by a register
34 * pointing to the physical address of the start of the ring.
35 * The end is determined by a "wrap" bit being set in the
36 * last descriptor of the ring.
38 * When a packet is received, the RXF bit in the
39 * IEVENT register is set, triggering an interrupt when the
40 * corresponding bit in the IMASK register is also set (if
41 * interrupt coalescing is active, then the interrupt may not
42 * happen immediately, but will wait until either a set number
43 * of frames or amount of time have passed). In NAPI, the
44 * interrupt handler will signal there is work to be done, and
45 * exit. This method will start at the last known empty
46 * descriptor, and process every subsequent descriptor until there
47 * are none left with data (NAPI will stop after a set number of
48 * packets to give time to other tasks, but will eventually
49 * process all the packets). The data arrives inside a
50 * pre-allocated skb, and so after the skb is passed up to the
51 * stack, a new skb must be allocated, and the address field in
52 * the buffer descriptor must be updated to indicate this new
55 * When the kernel requests that a packet be transmitted, the
56 * driver starts where it left off last time, and points the
57 * descriptor at the buffer which was passed in. The driver
58 * then informs the DMA engine that there are packets ready to
59 * be transmitted. Once the controller is finished transmitting
60 * the packet, an interrupt may be triggered (under the same
61 * conditions as for reception, but depending on the TXF bit).
62 * The driver then cleans up the buffer.
65 #include <linux/kernel.h>
66 #include <linux/string.h>
67 #include <linux/errno.h>
68 #include <linux/unistd.h>
69 #include <linux/slab.h>
70 #include <linux/interrupt.h>
71 #include <linux/init.h>
72 #include <linux/delay.h>
73 #include <linux/netdevice.h>
74 #include <linux/etherdevice.h>
75 #include <linux/skbuff.h>
76 #include <linux/if_vlan.h>
77 #include <linux/spinlock.h>
79 #include <linux/of_mdio.h>
80 #include <linux/of_platform.h>
82 #include <linux/tcp.h>
83 #include <linux/udp.h>
85 #include <linux/net_tstamp.h>
89 #include <asm/uaccess.h>
90 #include <linux/module.h>
91 #include <linux/dma-mapping.h>
92 #include <linux/crc32.h>
93 #include <linux/mii.h>
94 #include <linux/phy.h>
95 #include <linux/phy_fixed.h>
99 #include "fsl_pq_mdio.h"
101 #define TX_TIMEOUT (1*HZ)
102 #undef BRIEF_GFAR_ERRORS
103 #undef VERBOSE_GFAR_ERRORS
105 const char gfar_driver_name
[] = "Gianfar Ethernet";
106 const char gfar_driver_version
[] = "1.3";
108 static int gfar_enet_open(struct net_device
*dev
);
109 static int gfar_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
);
110 static void gfar_reset_task(struct work_struct
*work
);
111 static void gfar_timeout(struct net_device
*dev
);
112 static int gfar_close(struct net_device
*dev
);
113 struct sk_buff
*gfar_new_skb(struct net_device
*dev
);
114 static void gfar_new_rxbdp(struct gfar_priv_rx_q
*rx_queue
, struct rxbd8
*bdp
,
115 struct sk_buff
*skb
);
116 static int gfar_set_mac_address(struct net_device
*dev
);
117 static int gfar_change_mtu(struct net_device
*dev
, int new_mtu
);
118 static irqreturn_t
gfar_error(int irq
, void *dev_id
);
119 static irqreturn_t
gfar_transmit(int irq
, void *dev_id
);
120 static irqreturn_t
gfar_interrupt(int irq
, void *dev_id
);
121 static void adjust_link(struct net_device
*dev
);
122 static void init_registers(struct net_device
*dev
);
123 static int init_phy(struct net_device
*dev
);
124 static int gfar_probe(struct of_device
*ofdev
,
125 const struct of_device_id
*match
);
126 static int gfar_remove(struct of_device
*ofdev
);
127 static void free_skb_resources(struct gfar_private
*priv
);
128 static void gfar_set_multi(struct net_device
*dev
);
129 static void gfar_set_hash_for_addr(struct net_device
*dev
, u8
*addr
);
130 static void gfar_configure_serdes(struct net_device
*dev
);
131 static int gfar_poll(struct napi_struct
*napi
, int budget
);
132 #ifdef CONFIG_NET_POLL_CONTROLLER
133 static void gfar_netpoll(struct net_device
*dev
);
135 int gfar_clean_rx_ring(struct gfar_priv_rx_q
*rx_queue
, int rx_work_limit
);
136 static int gfar_clean_tx_ring(struct gfar_priv_tx_q
*tx_queue
);
137 static int gfar_process_frame(struct net_device
*dev
, struct sk_buff
*skb
,
139 static void gfar_vlan_rx_register(struct net_device
*netdev
,
140 struct vlan_group
*grp
);
141 void gfar_halt(struct net_device
*dev
);
142 static void gfar_halt_nodisable(struct net_device
*dev
);
143 void gfar_start(struct net_device
*dev
);
144 static void gfar_clear_exact_match(struct net_device
*dev
);
145 static void gfar_set_mac_for_addr(struct net_device
*dev
, int num
, u8
*addr
);
146 static int gfar_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
148 MODULE_AUTHOR("Freescale Semiconductor, Inc");
149 MODULE_DESCRIPTION("Gianfar Ethernet Driver");
150 MODULE_LICENSE("GPL");
152 static void gfar_init_rxbdp(struct gfar_priv_rx_q
*rx_queue
, struct rxbd8
*bdp
,
159 lstatus
= BD_LFLAG(RXBD_EMPTY
| RXBD_INTERRUPT
);
160 if (bdp
== rx_queue
->rx_bd_base
+ rx_queue
->rx_ring_size
- 1)
161 lstatus
|= BD_LFLAG(RXBD_WRAP
);
165 bdp
->lstatus
= lstatus
;
168 static int gfar_init_bds(struct net_device
*ndev
)
170 struct gfar_private
*priv
= netdev_priv(ndev
);
171 struct gfar_priv_tx_q
*tx_queue
= NULL
;
172 struct gfar_priv_rx_q
*rx_queue
= NULL
;
177 for (i
= 0; i
< priv
->num_tx_queues
; i
++) {
178 tx_queue
= priv
->tx_queue
[i
];
179 /* Initialize some variables in our dev structure */
180 tx_queue
->num_txbdfree
= tx_queue
->tx_ring_size
;
181 tx_queue
->dirty_tx
= tx_queue
->tx_bd_base
;
182 tx_queue
->cur_tx
= tx_queue
->tx_bd_base
;
183 tx_queue
->skb_curtx
= 0;
184 tx_queue
->skb_dirtytx
= 0;
186 /* Initialize Transmit Descriptor Ring */
187 txbdp
= tx_queue
->tx_bd_base
;
188 for (j
= 0; j
< tx_queue
->tx_ring_size
; j
++) {
194 /* Set the last descriptor in the ring to indicate wrap */
196 txbdp
->status
|= TXBD_WRAP
;
199 for (i
= 0; i
< priv
->num_rx_queues
; i
++) {
200 rx_queue
= priv
->rx_queue
[i
];
201 rx_queue
->cur_rx
= rx_queue
->rx_bd_base
;
202 rx_queue
->skb_currx
= 0;
203 rxbdp
= rx_queue
->rx_bd_base
;
205 for (j
= 0; j
< rx_queue
->rx_ring_size
; j
++) {
206 struct sk_buff
*skb
= rx_queue
->rx_skbuff
[j
];
209 gfar_init_rxbdp(rx_queue
, rxbdp
,
212 skb
= gfar_new_skb(ndev
);
214 pr_err("%s: Can't allocate RX buffers\n",
216 goto err_rxalloc_fail
;
218 rx_queue
->rx_skbuff
[j
] = skb
;
220 gfar_new_rxbdp(rx_queue
, rxbdp
, skb
);
231 free_skb_resources(priv
);
235 static int gfar_alloc_skb_resources(struct net_device
*ndev
)
240 struct gfar_private
*priv
= netdev_priv(ndev
);
241 struct device
*dev
= &priv
->ofdev
->dev
;
242 struct gfar_priv_tx_q
*tx_queue
= NULL
;
243 struct gfar_priv_rx_q
*rx_queue
= NULL
;
245 priv
->total_tx_ring_size
= 0;
246 for (i
= 0; i
< priv
->num_tx_queues
; i
++)
247 priv
->total_tx_ring_size
+= priv
->tx_queue
[i
]->tx_ring_size
;
249 priv
->total_rx_ring_size
= 0;
250 for (i
= 0; i
< priv
->num_rx_queues
; i
++)
251 priv
->total_rx_ring_size
+= priv
->rx_queue
[i
]->rx_ring_size
;
253 /* Allocate memory for the buffer descriptors */
254 vaddr
= dma_alloc_coherent(dev
,
255 sizeof(struct txbd8
) * priv
->total_tx_ring_size
+
256 sizeof(struct rxbd8
) * priv
->total_rx_ring_size
,
259 if (netif_msg_ifup(priv
))
260 pr_err("%s: Could not allocate buffer descriptors!\n",
265 for (i
= 0; i
< priv
->num_tx_queues
; i
++) {
266 tx_queue
= priv
->tx_queue
[i
];
267 tx_queue
->tx_bd_base
= (struct txbd8
*) vaddr
;
268 tx_queue
->tx_bd_dma_base
= addr
;
269 tx_queue
->dev
= ndev
;
270 /* enet DMA only understands physical addresses */
271 addr
+= sizeof(struct txbd8
) *tx_queue
->tx_ring_size
;
272 vaddr
+= sizeof(struct txbd8
) *tx_queue
->tx_ring_size
;
275 /* Start the rx descriptor ring where the tx ring leaves off */
276 for (i
= 0; i
< priv
->num_rx_queues
; i
++) {
277 rx_queue
= priv
->rx_queue
[i
];
278 rx_queue
->rx_bd_base
= (struct rxbd8
*) vaddr
;
279 rx_queue
->rx_bd_dma_base
= addr
;
280 rx_queue
->dev
= ndev
;
281 addr
+= sizeof (struct rxbd8
) * rx_queue
->rx_ring_size
;
282 vaddr
+= sizeof (struct rxbd8
) * rx_queue
->rx_ring_size
;
285 /* Setup the skbuff rings */
286 for (i
= 0; i
< priv
->num_tx_queues
; i
++) {
287 tx_queue
= priv
->tx_queue
[i
];
288 tx_queue
->tx_skbuff
= kmalloc(sizeof(*tx_queue
->tx_skbuff
) *
289 tx_queue
->tx_ring_size
, GFP_KERNEL
);
290 if (!tx_queue
->tx_skbuff
) {
291 if (netif_msg_ifup(priv
))
292 pr_err("%s: Could not allocate tx_skbuff\n",
297 for (k
= 0; k
< tx_queue
->tx_ring_size
; k
++)
298 tx_queue
->tx_skbuff
[k
] = NULL
;
301 for (i
= 0; i
< priv
->num_rx_queues
; i
++) {
302 rx_queue
= priv
->rx_queue
[i
];
303 rx_queue
->rx_skbuff
= kmalloc(sizeof(*rx_queue
->rx_skbuff
) *
304 rx_queue
->rx_ring_size
, GFP_KERNEL
);
306 if (!rx_queue
->rx_skbuff
) {
307 if (netif_msg_ifup(priv
))
308 pr_err("%s: Could not allocate rx_skbuff\n",
313 for (j
= 0; j
< rx_queue
->rx_ring_size
; j
++)
314 rx_queue
->rx_skbuff
[j
] = NULL
;
317 if (gfar_init_bds(ndev
))
323 free_skb_resources(priv
);
327 static void gfar_init_tx_rx_base(struct gfar_private
*priv
)
329 struct gfar __iomem
*regs
= priv
->gfargrp
[0].regs
;
333 baddr
= ®s
->tbase0
;
334 for(i
= 0; i
< priv
->num_tx_queues
; i
++) {
335 gfar_write(baddr
, priv
->tx_queue
[i
]->tx_bd_dma_base
);
339 baddr
= ®s
->rbase0
;
340 for(i
= 0; i
< priv
->num_rx_queues
; i
++) {
341 gfar_write(baddr
, priv
->rx_queue
[i
]->rx_bd_dma_base
);
346 static void gfar_init_mac(struct net_device
*ndev
)
348 struct gfar_private
*priv
= netdev_priv(ndev
);
349 struct gfar __iomem
*regs
= priv
->gfargrp
[0].regs
;
354 /* write the tx/rx base registers */
355 gfar_init_tx_rx_base(priv
);
357 /* Configure the coalescing support */
358 gfar_configure_coalescing(priv
, 0xFF, 0xFF);
360 if (priv
->rx_filer_enable
) {
361 rctrl
|= RCTRL_FILREN
;
362 /* Program the RIR0 reg with the required distribution */
363 gfar_write(®s
->rir0
, DEFAULT_RIR0
);
366 if (priv
->rx_csum_enable
)
367 rctrl
|= RCTRL_CHECKSUMMING
;
369 if (priv
->extended_hash
) {
370 rctrl
|= RCTRL_EXTHASH
;
372 gfar_clear_exact_match(ndev
);
377 rctrl
&= ~RCTRL_PAL_MASK
;
378 rctrl
|= RCTRL_PADDING(priv
->padding
);
381 /* Insert receive time stamps into padding alignment bytes */
382 if (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_TIMER
) {
383 rctrl
&= ~RCTRL_PAL_MASK
;
384 rctrl
|= RCTRL_PRSDEP_INIT
| RCTRL_TS_ENABLE
| RCTRL_PADDING(8);
388 /* keep vlan related bits if it's enabled */
390 rctrl
|= RCTRL_VLEX
| RCTRL_PRSDEP_INIT
;
391 tctrl
|= TCTRL_VLINS
;
394 /* Init rctrl based on our settings */
395 gfar_write(®s
->rctrl
, rctrl
);
397 if (ndev
->features
& NETIF_F_IP_CSUM
)
398 tctrl
|= TCTRL_INIT_CSUM
;
400 tctrl
|= TCTRL_TXSCHED_PRIO
;
402 gfar_write(®s
->tctrl
, tctrl
);
404 /* Set the extraction length and index */
405 attrs
= ATTRELI_EL(priv
->rx_stash_size
) |
406 ATTRELI_EI(priv
->rx_stash_index
);
408 gfar_write(®s
->attreli
, attrs
);
410 /* Start with defaults, and add stashing or locking
411 * depending on the approprate variables */
412 attrs
= ATTR_INIT_SETTINGS
;
414 if (priv
->bd_stash_en
)
415 attrs
|= ATTR_BDSTASH
;
417 if (priv
->rx_stash_size
!= 0)
418 attrs
|= ATTR_BUFSTASH
;
420 gfar_write(®s
->attr
, attrs
);
422 gfar_write(®s
->fifo_tx_thr
, priv
->fifo_threshold
);
423 gfar_write(®s
->fifo_tx_starve
, priv
->fifo_starve
);
424 gfar_write(®s
->fifo_tx_starve_shutoff
, priv
->fifo_starve_off
);
427 static struct net_device_stats
*gfar_get_stats(struct net_device
*dev
)
429 struct gfar_private
*priv
= netdev_priv(dev
);
430 struct netdev_queue
*txq
;
431 unsigned long rx_packets
= 0, rx_bytes
= 0, rx_dropped
= 0;
432 unsigned long tx_packets
= 0, tx_bytes
= 0;
435 for (i
= 0; i
< priv
->num_rx_queues
; i
++) {
436 rx_packets
+= priv
->rx_queue
[i
]->stats
.rx_packets
;
437 rx_bytes
+= priv
->rx_queue
[i
]->stats
.rx_bytes
;
438 rx_dropped
+= priv
->rx_queue
[i
]->stats
.rx_dropped
;
441 dev
->stats
.rx_packets
= rx_packets
;
442 dev
->stats
.rx_bytes
= rx_bytes
;
443 dev
->stats
.rx_dropped
= rx_dropped
;
445 for (i
= 0; i
< priv
->num_tx_queues
; i
++) {
446 txq
= netdev_get_tx_queue(dev
, i
);
447 tx_bytes
+= txq
->tx_bytes
;
448 tx_packets
+= txq
->tx_packets
;
451 dev
->stats
.tx_bytes
= tx_bytes
;
452 dev
->stats
.tx_packets
= tx_packets
;
457 static const struct net_device_ops gfar_netdev_ops
= {
458 .ndo_open
= gfar_enet_open
,
459 .ndo_start_xmit
= gfar_start_xmit
,
460 .ndo_stop
= gfar_close
,
461 .ndo_change_mtu
= gfar_change_mtu
,
462 .ndo_set_multicast_list
= gfar_set_multi
,
463 .ndo_tx_timeout
= gfar_timeout
,
464 .ndo_do_ioctl
= gfar_ioctl
,
465 .ndo_get_stats
= gfar_get_stats
,
466 .ndo_vlan_rx_register
= gfar_vlan_rx_register
,
467 .ndo_set_mac_address
= eth_mac_addr
,
468 .ndo_validate_addr
= eth_validate_addr
,
469 #ifdef CONFIG_NET_POLL_CONTROLLER
470 .ndo_poll_controller
= gfar_netpoll
,
474 unsigned int ftp_rqfpr
[MAX_FILER_IDX
+ 1];
475 unsigned int ftp_rqfcr
[MAX_FILER_IDX
+ 1];
477 void lock_rx_qs(struct gfar_private
*priv
)
481 for (i
= 0; i
< priv
->num_rx_queues
; i
++)
482 spin_lock(&priv
->rx_queue
[i
]->rxlock
);
485 void lock_tx_qs(struct gfar_private
*priv
)
489 for (i
= 0; i
< priv
->num_tx_queues
; i
++)
490 spin_lock(&priv
->tx_queue
[i
]->txlock
);
493 void unlock_rx_qs(struct gfar_private
*priv
)
497 for (i
= 0; i
< priv
->num_rx_queues
; i
++)
498 spin_unlock(&priv
->rx_queue
[i
]->rxlock
);
501 void unlock_tx_qs(struct gfar_private
*priv
)
505 for (i
= 0; i
< priv
->num_tx_queues
; i
++)
506 spin_unlock(&priv
->tx_queue
[i
]->txlock
);
509 /* Returns 1 if incoming frames use an FCB */
510 static inline int gfar_uses_fcb(struct gfar_private
*priv
)
512 return priv
->vlgrp
|| priv
->rx_csum_enable
||
513 (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_TIMER
);
516 static void free_tx_pointers(struct gfar_private
*priv
)
520 for (i
= 0; i
< priv
->num_tx_queues
; i
++)
521 kfree(priv
->tx_queue
[i
]);
524 static void free_rx_pointers(struct gfar_private
*priv
)
528 for (i
= 0; i
< priv
->num_rx_queues
; i
++)
529 kfree(priv
->rx_queue
[i
]);
532 static void unmap_group_regs(struct gfar_private
*priv
)
536 for (i
= 0; i
< MAXGROUPS
; i
++)
537 if (priv
->gfargrp
[i
].regs
)
538 iounmap(priv
->gfargrp
[i
].regs
);
541 static void disable_napi(struct gfar_private
*priv
)
545 for (i
= 0; i
< priv
->num_grps
; i
++)
546 napi_disable(&priv
->gfargrp
[i
].napi
);
549 static void enable_napi(struct gfar_private
*priv
)
553 for (i
= 0; i
< priv
->num_grps
; i
++)
554 napi_enable(&priv
->gfargrp
[i
].napi
);
557 static int gfar_parse_group(struct device_node
*np
,
558 struct gfar_private
*priv
, const char *model
)
562 priv
->gfargrp
[priv
->num_grps
].regs
= of_iomap(np
, 0);
563 if (!priv
->gfargrp
[priv
->num_grps
].regs
)
566 priv
->gfargrp
[priv
->num_grps
].interruptTransmit
=
567 irq_of_parse_and_map(np
, 0);
569 /* If we aren't the FEC we have multiple interrupts */
570 if (model
&& strcasecmp(model
, "FEC")) {
571 priv
->gfargrp
[priv
->num_grps
].interruptReceive
=
572 irq_of_parse_and_map(np
, 1);
573 priv
->gfargrp
[priv
->num_grps
].interruptError
=
574 irq_of_parse_and_map(np
,2);
575 if (priv
->gfargrp
[priv
->num_grps
].interruptTransmit
< 0 ||
576 priv
->gfargrp
[priv
->num_grps
].interruptReceive
< 0 ||
577 priv
->gfargrp
[priv
->num_grps
].interruptError
< 0) {
582 priv
->gfargrp
[priv
->num_grps
].grp_id
= priv
->num_grps
;
583 priv
->gfargrp
[priv
->num_grps
].priv
= priv
;
584 spin_lock_init(&priv
->gfargrp
[priv
->num_grps
].grplock
);
585 if(priv
->mode
== MQ_MG_MODE
) {
586 queue_mask
= (u32
*)of_get_property(np
,
587 "fsl,rx-bit-map", NULL
);
588 priv
->gfargrp
[priv
->num_grps
].rx_bit_map
=
589 queue_mask
? *queue_mask
:(DEFAULT_MAPPING
>> priv
->num_grps
);
590 queue_mask
= (u32
*)of_get_property(np
,
591 "fsl,tx-bit-map", NULL
);
592 priv
->gfargrp
[priv
->num_grps
].tx_bit_map
=
593 queue_mask
? *queue_mask
: (DEFAULT_MAPPING
>> priv
->num_grps
);
595 priv
->gfargrp
[priv
->num_grps
].rx_bit_map
= 0xFF;
596 priv
->gfargrp
[priv
->num_grps
].tx_bit_map
= 0xFF;
603 static int gfar_of_init(struct of_device
*ofdev
, struct net_device
**pdev
)
607 const void *mac_addr
;
609 struct net_device
*dev
= NULL
;
610 struct gfar_private
*priv
= NULL
;
611 struct device_node
*np
= ofdev
->dev
.of_node
;
612 struct device_node
*child
= NULL
;
614 const u32
*stash_len
;
615 const u32
*stash_idx
;
616 unsigned int num_tx_qs
, num_rx_qs
;
617 u32
*tx_queues
, *rx_queues
;
619 if (!np
|| !of_device_is_available(np
))
622 /* parse the num of tx and rx queues */
623 tx_queues
= (u32
*)of_get_property(np
, "fsl,num_tx_queues", NULL
);
624 num_tx_qs
= tx_queues
? *tx_queues
: 1;
626 if (num_tx_qs
> MAX_TX_QS
) {
627 printk(KERN_ERR
"num_tx_qs(=%d) greater than MAX_TX_QS(=%d)\n",
628 num_tx_qs
, MAX_TX_QS
);
629 printk(KERN_ERR
"Cannot do alloc_etherdev, aborting\n");
633 rx_queues
= (u32
*)of_get_property(np
, "fsl,num_rx_queues", NULL
);
634 num_rx_qs
= rx_queues
? *rx_queues
: 1;
636 if (num_rx_qs
> MAX_RX_QS
) {
637 printk(KERN_ERR
"num_rx_qs(=%d) greater than MAX_RX_QS(=%d)\n",
638 num_tx_qs
, MAX_TX_QS
);
639 printk(KERN_ERR
"Cannot do alloc_etherdev, aborting\n");
643 *pdev
= alloc_etherdev_mq(sizeof(*priv
), num_tx_qs
);
648 priv
= netdev_priv(dev
);
649 priv
->node
= ofdev
->dev
.of_node
;
652 dev
->num_tx_queues
= num_tx_qs
;
653 dev
->real_num_tx_queues
= num_tx_qs
;
654 priv
->num_tx_queues
= num_tx_qs
;
655 priv
->num_rx_queues
= num_rx_qs
;
656 priv
->num_grps
= 0x0;
658 model
= of_get_property(np
, "model", NULL
);
660 for (i
= 0; i
< MAXGROUPS
; i
++)
661 priv
->gfargrp
[i
].regs
= NULL
;
663 /* Parse and initialize group specific information */
664 if (of_device_is_compatible(np
, "fsl,etsec2")) {
665 priv
->mode
= MQ_MG_MODE
;
666 for_each_child_of_node(np
, child
) {
667 err
= gfar_parse_group(child
, priv
, model
);
672 priv
->mode
= SQ_SG_MODE
;
673 err
= gfar_parse_group(np
, priv
, model
);
678 for (i
= 0; i
< priv
->num_tx_queues
; i
++)
679 priv
->tx_queue
[i
] = NULL
;
680 for (i
= 0; i
< priv
->num_rx_queues
; i
++)
681 priv
->rx_queue
[i
] = NULL
;
683 for (i
= 0; i
< priv
->num_tx_queues
; i
++) {
684 priv
->tx_queue
[i
] = (struct gfar_priv_tx_q
*)kzalloc(
685 sizeof (struct gfar_priv_tx_q
), GFP_KERNEL
);
686 if (!priv
->tx_queue
[i
]) {
688 goto tx_alloc_failed
;
690 priv
->tx_queue
[i
]->tx_skbuff
= NULL
;
691 priv
->tx_queue
[i
]->qindex
= i
;
692 priv
->tx_queue
[i
]->dev
= dev
;
693 spin_lock_init(&(priv
->tx_queue
[i
]->txlock
));
696 for (i
= 0; i
< priv
->num_rx_queues
; i
++) {
697 priv
->rx_queue
[i
] = (struct gfar_priv_rx_q
*)kzalloc(
698 sizeof (struct gfar_priv_rx_q
), GFP_KERNEL
);
699 if (!priv
->rx_queue
[i
]) {
701 goto rx_alloc_failed
;
703 priv
->rx_queue
[i
]->rx_skbuff
= NULL
;
704 priv
->rx_queue
[i
]->qindex
= i
;
705 priv
->rx_queue
[i
]->dev
= dev
;
706 spin_lock_init(&(priv
->rx_queue
[i
]->rxlock
));
710 stash
= of_get_property(np
, "bd-stash", NULL
);
713 priv
->device_flags
|= FSL_GIANFAR_DEV_HAS_BD_STASHING
;
714 priv
->bd_stash_en
= 1;
717 stash_len
= of_get_property(np
, "rx-stash-len", NULL
);
720 priv
->rx_stash_size
= *stash_len
;
722 stash_idx
= of_get_property(np
, "rx-stash-idx", NULL
);
725 priv
->rx_stash_index
= *stash_idx
;
727 if (stash_len
|| stash_idx
)
728 priv
->device_flags
|= FSL_GIANFAR_DEV_HAS_BUF_STASHING
;
730 mac_addr
= of_get_mac_address(np
);
732 memcpy(dev
->dev_addr
, mac_addr
, MAC_ADDR_LEN
);
734 if (model
&& !strcasecmp(model
, "TSEC"))
736 FSL_GIANFAR_DEV_HAS_GIGABIT
|
737 FSL_GIANFAR_DEV_HAS_COALESCE
|
738 FSL_GIANFAR_DEV_HAS_RMON
|
739 FSL_GIANFAR_DEV_HAS_MULTI_INTR
;
740 if (model
&& !strcasecmp(model
, "eTSEC"))
742 FSL_GIANFAR_DEV_HAS_GIGABIT
|
743 FSL_GIANFAR_DEV_HAS_COALESCE
|
744 FSL_GIANFAR_DEV_HAS_RMON
|
745 FSL_GIANFAR_DEV_HAS_MULTI_INTR
|
746 FSL_GIANFAR_DEV_HAS_PADDING
|
747 FSL_GIANFAR_DEV_HAS_CSUM
|
748 FSL_GIANFAR_DEV_HAS_VLAN
|
749 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET
|
750 FSL_GIANFAR_DEV_HAS_EXTENDED_HASH
|
751 FSL_GIANFAR_DEV_HAS_TIMER
;
753 ctype
= of_get_property(np
, "phy-connection-type", NULL
);
755 /* We only care about rgmii-id. The rest are autodetected */
756 if (ctype
&& !strcmp(ctype
, "rgmii-id"))
757 priv
->interface
= PHY_INTERFACE_MODE_RGMII_ID
;
759 priv
->interface
= PHY_INTERFACE_MODE_MII
;
761 if (of_get_property(np
, "fsl,magic-packet", NULL
))
762 priv
->device_flags
|= FSL_GIANFAR_DEV_HAS_MAGIC_PACKET
;
764 priv
->phy_node
= of_parse_phandle(np
, "phy-handle", 0);
766 /* Find the TBI PHY. If it's not there, we don't support SGMII */
767 priv
->tbi_node
= of_parse_phandle(np
, "tbi-handle", 0);
772 free_rx_pointers(priv
);
774 free_tx_pointers(priv
);
776 unmap_group_regs(priv
);
781 static int gfar_hwtstamp_ioctl(struct net_device
*netdev
,
782 struct ifreq
*ifr
, int cmd
)
784 struct hwtstamp_config config
;
785 struct gfar_private
*priv
= netdev_priv(netdev
);
787 if (copy_from_user(&config
, ifr
->ifr_data
, sizeof(config
)))
790 /* reserved for future extensions */
794 switch (config
.tx_type
) {
795 case HWTSTAMP_TX_OFF
:
796 priv
->hwts_tx_en
= 0;
799 if (!(priv
->device_flags
& FSL_GIANFAR_DEV_HAS_TIMER
))
801 priv
->hwts_tx_en
= 1;
807 switch (config
.rx_filter
) {
808 case HWTSTAMP_FILTER_NONE
:
809 priv
->hwts_rx_en
= 0;
812 if (!(priv
->device_flags
& FSL_GIANFAR_DEV_HAS_TIMER
))
814 priv
->hwts_rx_en
= 1;
815 config
.rx_filter
= HWTSTAMP_FILTER_ALL
;
819 return copy_to_user(ifr
->ifr_data
, &config
, sizeof(config
)) ?
823 /* Ioctl MII Interface */
824 static int gfar_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
826 struct gfar_private
*priv
= netdev_priv(dev
);
828 if (!netif_running(dev
))
831 if (cmd
== SIOCSHWTSTAMP
)
832 return gfar_hwtstamp_ioctl(dev
, rq
, cmd
);
837 return phy_mii_ioctl(priv
->phydev
, if_mii(rq
), cmd
);
840 static unsigned int reverse_bitmap(unsigned int bit_map
, unsigned int max_qs
)
842 unsigned int new_bit_map
= 0x0;
843 int mask
= 0x1 << (max_qs
- 1), i
;
844 for (i
= 0; i
< max_qs
; i
++) {
846 new_bit_map
= new_bit_map
+ (1 << i
);
852 static u32
cluster_entry_per_class(struct gfar_private
*priv
, u32 rqfar
,
855 u32 rqfpr
= FPR_FILER_MASK
;
859 rqfcr
= RQFCR_CLE
| RQFCR_PID_MASK
| RQFCR_CMP_EXACT
;
860 ftp_rqfpr
[rqfar
] = rqfpr
;
861 ftp_rqfcr
[rqfar
] = rqfcr
;
862 gfar_write_filer(priv
, rqfar
, rqfcr
, rqfpr
);
865 rqfcr
= RQFCR_CMP_NOMATCH
;
866 ftp_rqfpr
[rqfar
] = rqfpr
;
867 ftp_rqfcr
[rqfar
] = rqfcr
;
868 gfar_write_filer(priv
, rqfar
, rqfcr
, rqfpr
);
871 rqfcr
= RQFCR_CMP_EXACT
| RQFCR_PID_PARSE
| RQFCR_CLE
| RQFCR_AND
;
873 ftp_rqfcr
[rqfar
] = rqfcr
;
874 ftp_rqfpr
[rqfar
] = rqfpr
;
875 gfar_write_filer(priv
, rqfar
, rqfcr
, rqfpr
);
878 rqfcr
= RQFCR_CMP_EXACT
| RQFCR_PID_MASK
| RQFCR_AND
;
880 ftp_rqfcr
[rqfar
] = rqfcr
;
881 ftp_rqfpr
[rqfar
] = rqfpr
;
882 gfar_write_filer(priv
, rqfar
, rqfcr
, rqfpr
);
887 static void gfar_init_filer_table(struct gfar_private
*priv
)
890 u32 rqfar
= MAX_FILER_IDX
;
892 u32 rqfpr
= FPR_FILER_MASK
;
895 rqfcr
= RQFCR_CMP_MATCH
;
896 ftp_rqfcr
[rqfar
] = rqfcr
;
897 ftp_rqfpr
[rqfar
] = rqfpr
;
898 gfar_write_filer(priv
, rqfar
, rqfcr
, rqfpr
);
900 rqfar
= cluster_entry_per_class(priv
, rqfar
, RQFPR_IPV6
);
901 rqfar
= cluster_entry_per_class(priv
, rqfar
, RQFPR_IPV6
| RQFPR_UDP
);
902 rqfar
= cluster_entry_per_class(priv
, rqfar
, RQFPR_IPV6
| RQFPR_TCP
);
903 rqfar
= cluster_entry_per_class(priv
, rqfar
, RQFPR_IPV4
);
904 rqfar
= cluster_entry_per_class(priv
, rqfar
, RQFPR_IPV4
| RQFPR_UDP
);
905 rqfar
= cluster_entry_per_class(priv
, rqfar
, RQFPR_IPV4
| RQFPR_TCP
);
907 /* cur_filer_idx indicated the fisrt non-masked rule */
908 priv
->cur_filer_idx
= rqfar
;
910 /* Rest are masked rules */
911 rqfcr
= RQFCR_CMP_NOMATCH
;
912 for (i
= 0; i
< rqfar
; i
++) {
913 ftp_rqfcr
[i
] = rqfcr
;
914 ftp_rqfpr
[i
] = rqfpr
;
915 gfar_write_filer(priv
, i
, rqfcr
, rqfpr
);
919 /* Set up the ethernet device structure, private data,
920 * and anything else we need before we start */
921 static int gfar_probe(struct of_device
*ofdev
,
922 const struct of_device_id
*match
)
925 struct net_device
*dev
= NULL
;
926 struct gfar_private
*priv
= NULL
;
927 struct gfar __iomem
*regs
= NULL
;
928 int err
= 0, i
, grp_idx
= 0;
930 u32 rstat
= 0, tstat
= 0, rqueue
= 0, tqueue
= 0;
934 err
= gfar_of_init(ofdev
, &dev
);
939 priv
= netdev_priv(dev
);
942 priv
->node
= ofdev
->dev
.of_node
;
943 SET_NETDEV_DEV(dev
, &ofdev
->dev
);
945 spin_lock_init(&priv
->bflock
);
946 INIT_WORK(&priv
->reset_task
, gfar_reset_task
);
948 dev_set_drvdata(&ofdev
->dev
, priv
);
949 regs
= priv
->gfargrp
[0].regs
;
951 /* Stop the DMA engine now, in case it was running before */
952 /* (The firmware could have used it, and left it running). */
955 /* Reset MAC layer */
956 gfar_write(®s
->maccfg1
, MACCFG1_SOFT_RESET
);
958 /* We need to delay at least 3 TX clocks */
961 tempval
= (MACCFG1_TX_FLOW
| MACCFG1_RX_FLOW
);
962 gfar_write(®s
->maccfg1
, tempval
);
964 /* Initialize MACCFG2. */
965 gfar_write(®s
->maccfg2
, MACCFG2_INIT_SETTINGS
);
967 /* Initialize ECNTRL */
968 gfar_write(®s
->ecntrl
, ECNTRL_INIT_SETTINGS
);
970 /* Set the dev->base_addr to the gfar reg region */
971 dev
->base_addr
= (unsigned long) regs
;
973 SET_NETDEV_DEV(dev
, &ofdev
->dev
);
975 /* Fill in the dev structure */
976 dev
->watchdog_timeo
= TX_TIMEOUT
;
978 dev
->netdev_ops
= &gfar_netdev_ops
;
979 dev
->ethtool_ops
= &gfar_ethtool_ops
;
981 /* Register for napi ...We are registering NAPI for each grp */
982 for (i
= 0; i
< priv
->num_grps
; i
++)
983 netif_napi_add(dev
, &priv
->gfargrp
[i
].napi
, gfar_poll
, GFAR_DEV_WEIGHT
);
985 if (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_CSUM
) {
986 priv
->rx_csum_enable
= 1;
987 dev
->features
|= NETIF_F_IP_CSUM
| NETIF_F_SG
| NETIF_F_HIGHDMA
;
989 priv
->rx_csum_enable
= 0;
993 if (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_VLAN
)
994 dev
->features
|= NETIF_F_HW_VLAN_TX
| NETIF_F_HW_VLAN_RX
;
996 if (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_EXTENDED_HASH
) {
997 priv
->extended_hash
= 1;
998 priv
->hash_width
= 9;
1000 priv
->hash_regs
[0] = ®s
->igaddr0
;
1001 priv
->hash_regs
[1] = ®s
->igaddr1
;
1002 priv
->hash_regs
[2] = ®s
->igaddr2
;
1003 priv
->hash_regs
[3] = ®s
->igaddr3
;
1004 priv
->hash_regs
[4] = ®s
->igaddr4
;
1005 priv
->hash_regs
[5] = ®s
->igaddr5
;
1006 priv
->hash_regs
[6] = ®s
->igaddr6
;
1007 priv
->hash_regs
[7] = ®s
->igaddr7
;
1008 priv
->hash_regs
[8] = ®s
->gaddr0
;
1009 priv
->hash_regs
[9] = ®s
->gaddr1
;
1010 priv
->hash_regs
[10] = ®s
->gaddr2
;
1011 priv
->hash_regs
[11] = ®s
->gaddr3
;
1012 priv
->hash_regs
[12] = ®s
->gaddr4
;
1013 priv
->hash_regs
[13] = ®s
->gaddr5
;
1014 priv
->hash_regs
[14] = ®s
->gaddr6
;
1015 priv
->hash_regs
[15] = ®s
->gaddr7
;
1018 priv
->extended_hash
= 0;
1019 priv
->hash_width
= 8;
1021 priv
->hash_regs
[0] = ®s
->gaddr0
;
1022 priv
->hash_regs
[1] = ®s
->gaddr1
;
1023 priv
->hash_regs
[2] = ®s
->gaddr2
;
1024 priv
->hash_regs
[3] = ®s
->gaddr3
;
1025 priv
->hash_regs
[4] = ®s
->gaddr4
;
1026 priv
->hash_regs
[5] = ®s
->gaddr5
;
1027 priv
->hash_regs
[6] = ®s
->gaddr6
;
1028 priv
->hash_regs
[7] = ®s
->gaddr7
;
1031 if (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_PADDING
)
1032 priv
->padding
= DEFAULT_PADDING
;
1036 if (dev
->features
& NETIF_F_IP_CSUM
||
1037 priv
->device_flags
& FSL_GIANFAR_DEV_HAS_TIMER
)
1038 dev
->hard_header_len
+= GMAC_FCB_LEN
;
1040 /* Program the isrg regs only if number of grps > 1 */
1041 if (priv
->num_grps
> 1) {
1042 baddr
= ®s
->isrg0
;
1043 for (i
= 0; i
< priv
->num_grps
; i
++) {
1044 isrg
|= (priv
->gfargrp
[i
].rx_bit_map
<< ISRG_SHIFT_RX
);
1045 isrg
|= (priv
->gfargrp
[i
].tx_bit_map
<< ISRG_SHIFT_TX
);
1046 gfar_write(baddr
, isrg
);
1052 /* Need to reverse the bit maps as bit_map's MSB is q0
1053 * but, for_each_set_bit parses from right to left, which
1054 * basically reverses the queue numbers */
1055 for (i
= 0; i
< priv
->num_grps
; i
++) {
1056 priv
->gfargrp
[i
].tx_bit_map
= reverse_bitmap(
1057 priv
->gfargrp
[i
].tx_bit_map
, MAX_TX_QS
);
1058 priv
->gfargrp
[i
].rx_bit_map
= reverse_bitmap(
1059 priv
->gfargrp
[i
].rx_bit_map
, MAX_RX_QS
);
1062 /* Calculate RSTAT, TSTAT, RQUEUE and TQUEUE values,
1063 * also assign queues to groups */
1064 for (grp_idx
= 0; grp_idx
< priv
->num_grps
; grp_idx
++) {
1065 priv
->gfargrp
[grp_idx
].num_rx_queues
= 0x0;
1066 for_each_set_bit(i
, &priv
->gfargrp
[grp_idx
].rx_bit_map
,
1067 priv
->num_rx_queues
) {
1068 priv
->gfargrp
[grp_idx
].num_rx_queues
++;
1069 priv
->rx_queue
[i
]->grp
= &priv
->gfargrp
[grp_idx
];
1070 rstat
= rstat
| (RSTAT_CLEAR_RHALT
>> i
);
1071 rqueue
= rqueue
| ((RQUEUE_EN0
| RQUEUE_EX0
) >> i
);
1073 priv
->gfargrp
[grp_idx
].num_tx_queues
= 0x0;
1074 for_each_set_bit(i
, &priv
->gfargrp
[grp_idx
].tx_bit_map
,
1075 priv
->num_tx_queues
) {
1076 priv
->gfargrp
[grp_idx
].num_tx_queues
++;
1077 priv
->tx_queue
[i
]->grp
= &priv
->gfargrp
[grp_idx
];
1078 tstat
= tstat
| (TSTAT_CLEAR_THALT
>> i
);
1079 tqueue
= tqueue
| (TQUEUE_EN0
>> i
);
1081 priv
->gfargrp
[grp_idx
].rstat
= rstat
;
1082 priv
->gfargrp
[grp_idx
].tstat
= tstat
;
1086 gfar_write(®s
->rqueue
, rqueue
);
1087 gfar_write(®s
->tqueue
, tqueue
);
1089 priv
->rx_buffer_size
= DEFAULT_RX_BUFFER_SIZE
;
1091 /* Initializing some of the rx/tx queue level parameters */
1092 for (i
= 0; i
< priv
->num_tx_queues
; i
++) {
1093 priv
->tx_queue
[i
]->tx_ring_size
= DEFAULT_TX_RING_SIZE
;
1094 priv
->tx_queue
[i
]->num_txbdfree
= DEFAULT_TX_RING_SIZE
;
1095 priv
->tx_queue
[i
]->txcoalescing
= DEFAULT_TX_COALESCE
;
1096 priv
->tx_queue
[i
]->txic
= DEFAULT_TXIC
;
1099 for (i
= 0; i
< priv
->num_rx_queues
; i
++) {
1100 priv
->rx_queue
[i
]->rx_ring_size
= DEFAULT_RX_RING_SIZE
;
1101 priv
->rx_queue
[i
]->rxcoalescing
= DEFAULT_RX_COALESCE
;
1102 priv
->rx_queue
[i
]->rxic
= DEFAULT_RXIC
;
1105 /* enable filer if using multiple RX queues*/
1106 if(priv
->num_rx_queues
> 1)
1107 priv
->rx_filer_enable
= 1;
1108 /* Enable most messages by default */
1109 priv
->msg_enable
= (NETIF_MSG_IFUP
<< 1 ) - 1;
1111 /* Carrier starts down, phylib will bring it up */
1112 netif_carrier_off(dev
);
1114 err
= register_netdev(dev
);
1117 printk(KERN_ERR
"%s: Cannot register net device, aborting.\n",
1122 device_init_wakeup(&dev
->dev
,
1123 priv
->device_flags
& FSL_GIANFAR_DEV_HAS_MAGIC_PACKET
);
1125 /* fill out IRQ number and name fields */
1126 len_devname
= strlen(dev
->name
);
1127 for (i
= 0; i
< priv
->num_grps
; i
++) {
1128 strncpy(&priv
->gfargrp
[i
].int_name_tx
[0], dev
->name
,
1130 if (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_MULTI_INTR
) {
1131 strncpy(&priv
->gfargrp
[i
].int_name_tx
[len_devname
],
1132 "_g", sizeof("_g"));
1133 priv
->gfargrp
[i
].int_name_tx
[
1134 strlen(priv
->gfargrp
[i
].int_name_tx
)] = i
+48;
1135 strncpy(&priv
->gfargrp
[i
].int_name_tx
[strlen(
1136 priv
->gfargrp
[i
].int_name_tx
)],
1137 "_tx", sizeof("_tx") + 1);
1139 strncpy(&priv
->gfargrp
[i
].int_name_rx
[0], dev
->name
,
1141 strncpy(&priv
->gfargrp
[i
].int_name_rx
[len_devname
],
1142 "_g", sizeof("_g"));
1143 priv
->gfargrp
[i
].int_name_rx
[
1144 strlen(priv
->gfargrp
[i
].int_name_rx
)] = i
+48;
1145 strncpy(&priv
->gfargrp
[i
].int_name_rx
[strlen(
1146 priv
->gfargrp
[i
].int_name_rx
)],
1147 "_rx", sizeof("_rx") + 1);
1149 strncpy(&priv
->gfargrp
[i
].int_name_er
[0], dev
->name
,
1151 strncpy(&priv
->gfargrp
[i
].int_name_er
[len_devname
],
1152 "_g", sizeof("_g"));
1153 priv
->gfargrp
[i
].int_name_er
[strlen(
1154 priv
->gfargrp
[i
].int_name_er
)] = i
+48;
1155 strncpy(&priv
->gfargrp
[i
].int_name_er
[strlen(\
1156 priv
->gfargrp
[i
].int_name_er
)],
1157 "_er", sizeof("_er") + 1);
1159 priv
->gfargrp
[i
].int_name_tx
[len_devname
] = '\0';
1162 /* Initialize the filer table */
1163 gfar_init_filer_table(priv
);
1165 /* Create all the sysfs files */
1166 gfar_init_sysfs(dev
);
1168 /* Print out the device info */
1169 printk(KERN_INFO DEVICE_NAME
"%pM\n", dev
->name
, dev
->dev_addr
);
1171 /* Even more device info helps when determining which kernel */
1172 /* provided which set of benchmarks. */
1173 printk(KERN_INFO
"%s: Running with NAPI enabled\n", dev
->name
);
1174 for (i
= 0; i
< priv
->num_rx_queues
; i
++)
1175 printk(KERN_INFO
"%s: RX BD ring size for Q[%d]: %d\n",
1176 dev
->name
, i
, priv
->rx_queue
[i
]->rx_ring_size
);
1177 for(i
= 0; i
< priv
->num_tx_queues
; i
++)
1178 printk(KERN_INFO
"%s: TX BD ring size for Q[%d]: %d\n",
1179 dev
->name
, i
, priv
->tx_queue
[i
]->tx_ring_size
);
1184 unmap_group_regs(priv
);
1185 free_tx_pointers(priv
);
1186 free_rx_pointers(priv
);
1188 of_node_put(priv
->phy_node
);
1190 of_node_put(priv
->tbi_node
);
1195 static int gfar_remove(struct of_device
*ofdev
)
1197 struct gfar_private
*priv
= dev_get_drvdata(&ofdev
->dev
);
1200 of_node_put(priv
->phy_node
);
1202 of_node_put(priv
->tbi_node
);
1204 dev_set_drvdata(&ofdev
->dev
, NULL
);
1206 unregister_netdev(priv
->ndev
);
1207 unmap_group_regs(priv
);
1208 free_netdev(priv
->ndev
);
1215 static int gfar_suspend(struct device
*dev
)
1217 struct gfar_private
*priv
= dev_get_drvdata(dev
);
1218 struct net_device
*ndev
= priv
->ndev
;
1219 struct gfar __iomem
*regs
= priv
->gfargrp
[0].regs
;
1220 unsigned long flags
;
1223 int magic_packet
= priv
->wol_en
&&
1224 (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_MAGIC_PACKET
);
1226 netif_device_detach(ndev
);
1228 if (netif_running(ndev
)) {
1230 local_irq_save(flags
);
1234 gfar_halt_nodisable(ndev
);
1236 /* Disable Tx, and Rx if wake-on-LAN is disabled. */
1237 tempval
= gfar_read(®s
->maccfg1
);
1239 tempval
&= ~MACCFG1_TX_EN
;
1242 tempval
&= ~MACCFG1_RX_EN
;
1244 gfar_write(®s
->maccfg1
, tempval
);
1248 local_irq_restore(flags
);
1253 /* Enable interrupt on Magic Packet */
1254 gfar_write(®s
->imask
, IMASK_MAG
);
1256 /* Enable Magic Packet mode */
1257 tempval
= gfar_read(®s
->maccfg2
);
1258 tempval
|= MACCFG2_MPEN
;
1259 gfar_write(®s
->maccfg2
, tempval
);
1261 phy_stop(priv
->phydev
);
1268 static int gfar_resume(struct device
*dev
)
1270 struct gfar_private
*priv
= dev_get_drvdata(dev
);
1271 struct net_device
*ndev
= priv
->ndev
;
1272 struct gfar __iomem
*regs
= priv
->gfargrp
[0].regs
;
1273 unsigned long flags
;
1275 int magic_packet
= priv
->wol_en
&&
1276 (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_MAGIC_PACKET
);
1278 if (!netif_running(ndev
)) {
1279 netif_device_attach(ndev
);
1283 if (!magic_packet
&& priv
->phydev
)
1284 phy_start(priv
->phydev
);
1286 /* Disable Magic Packet mode, in case something
1289 local_irq_save(flags
);
1293 tempval
= gfar_read(®s
->maccfg2
);
1294 tempval
&= ~MACCFG2_MPEN
;
1295 gfar_write(®s
->maccfg2
, tempval
);
1301 local_irq_restore(flags
);
1303 netif_device_attach(ndev
);
1310 static int gfar_restore(struct device
*dev
)
1312 struct gfar_private
*priv
= dev_get_drvdata(dev
);
1313 struct net_device
*ndev
= priv
->ndev
;
1315 if (!netif_running(ndev
))
1318 gfar_init_bds(ndev
);
1319 init_registers(ndev
);
1320 gfar_set_mac_address(ndev
);
1321 gfar_init_mac(ndev
);
1326 priv
->oldduplex
= -1;
1329 phy_start(priv
->phydev
);
1331 netif_device_attach(ndev
);
1337 static struct dev_pm_ops gfar_pm_ops
= {
1338 .suspend
= gfar_suspend
,
1339 .resume
= gfar_resume
,
1340 .freeze
= gfar_suspend
,
1341 .thaw
= gfar_resume
,
1342 .restore
= gfar_restore
,
1345 #define GFAR_PM_OPS (&gfar_pm_ops)
1349 #define GFAR_PM_OPS NULL
1353 /* Reads the controller's registers to determine what interface
1354 * connects it to the PHY.
1356 static phy_interface_t
gfar_get_interface(struct net_device
*dev
)
1358 struct gfar_private
*priv
= netdev_priv(dev
);
1359 struct gfar __iomem
*regs
= priv
->gfargrp
[0].regs
;
1362 ecntrl
= gfar_read(®s
->ecntrl
);
1364 if (ecntrl
& ECNTRL_SGMII_MODE
)
1365 return PHY_INTERFACE_MODE_SGMII
;
1367 if (ecntrl
& ECNTRL_TBI_MODE
) {
1368 if (ecntrl
& ECNTRL_REDUCED_MODE
)
1369 return PHY_INTERFACE_MODE_RTBI
;
1371 return PHY_INTERFACE_MODE_TBI
;
1374 if (ecntrl
& ECNTRL_REDUCED_MODE
) {
1375 if (ecntrl
& ECNTRL_REDUCED_MII_MODE
)
1376 return PHY_INTERFACE_MODE_RMII
;
1378 phy_interface_t interface
= priv
->interface
;
1381 * This isn't autodetected right now, so it must
1382 * be set by the device tree or platform code.
1384 if (interface
== PHY_INTERFACE_MODE_RGMII_ID
)
1385 return PHY_INTERFACE_MODE_RGMII_ID
;
1387 return PHY_INTERFACE_MODE_RGMII
;
1391 if (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_GIGABIT
)
1392 return PHY_INTERFACE_MODE_GMII
;
1394 return PHY_INTERFACE_MODE_MII
;
1398 /* Initializes driver's PHY state, and attaches to the PHY.
1399 * Returns 0 on success.
1401 static int init_phy(struct net_device
*dev
)
1403 struct gfar_private
*priv
= netdev_priv(dev
);
1404 uint gigabit_support
=
1405 priv
->device_flags
& FSL_GIANFAR_DEV_HAS_GIGABIT
?
1406 SUPPORTED_1000baseT_Full
: 0;
1407 phy_interface_t interface
;
1411 priv
->oldduplex
= -1;
1413 interface
= gfar_get_interface(dev
);
1415 priv
->phydev
= of_phy_connect(dev
, priv
->phy_node
, &adjust_link
, 0,
1418 priv
->phydev
= of_phy_connect_fixed_link(dev
, &adjust_link
,
1420 if (!priv
->phydev
) {
1421 dev_err(&dev
->dev
, "could not attach to PHY\n");
1425 if (interface
== PHY_INTERFACE_MODE_SGMII
)
1426 gfar_configure_serdes(dev
);
1428 /* Remove any features not supported by the controller */
1429 priv
->phydev
->supported
&= (GFAR_SUPPORTED
| gigabit_support
);
1430 priv
->phydev
->advertising
= priv
->phydev
->supported
;
1436 * Initialize TBI PHY interface for communicating with the
1437 * SERDES lynx PHY on the chip. We communicate with this PHY
1438 * through the MDIO bus on each controller, treating it as a
1439 * "normal" PHY at the address found in the TBIPA register. We assume
1440 * that the TBIPA register is valid. Either the MDIO bus code will set
1441 * it to a value that doesn't conflict with other PHYs on the bus, or the
1442 * value doesn't matter, as there are no other PHYs on the bus.
1444 static void gfar_configure_serdes(struct net_device
*dev
)
1446 struct gfar_private
*priv
= netdev_priv(dev
);
1447 struct phy_device
*tbiphy
;
1449 if (!priv
->tbi_node
) {
1450 dev_warn(&dev
->dev
, "error: SGMII mode requires that the "
1451 "device tree specify a tbi-handle\n");
1455 tbiphy
= of_phy_find_device(priv
->tbi_node
);
1457 dev_err(&dev
->dev
, "error: Could not get TBI device\n");
1462 * If the link is already up, we must already be ok, and don't need to
1463 * configure and reset the TBI<->SerDes link. Maybe U-Boot configured
1464 * everything for us? Resetting it takes the link down and requires
1465 * several seconds for it to come back.
1467 if (phy_read(tbiphy
, MII_BMSR
) & BMSR_LSTATUS
)
1470 /* Single clk mode, mii mode off(for serdes communication) */
1471 phy_write(tbiphy
, MII_TBICON
, TBICON_CLK_SELECT
);
1473 phy_write(tbiphy
, MII_ADVERTISE
,
1474 ADVERTISE_1000XFULL
| ADVERTISE_1000XPAUSE
|
1475 ADVERTISE_1000XPSE_ASYM
);
1477 phy_write(tbiphy
, MII_BMCR
, BMCR_ANENABLE
|
1478 BMCR_ANRESTART
| BMCR_FULLDPLX
| BMCR_SPEED1000
);
1481 static void init_registers(struct net_device
*dev
)
1483 struct gfar_private
*priv
= netdev_priv(dev
);
1484 struct gfar __iomem
*regs
= NULL
;
1487 for (i
= 0; i
< priv
->num_grps
; i
++) {
1488 regs
= priv
->gfargrp
[i
].regs
;
1490 gfar_write(®s
->ievent
, IEVENT_INIT_CLEAR
);
1492 /* Initialize IMASK */
1493 gfar_write(®s
->imask
, IMASK_INIT_CLEAR
);
1496 regs
= priv
->gfargrp
[0].regs
;
1497 /* Init hash registers to zero */
1498 gfar_write(®s
->igaddr0
, 0);
1499 gfar_write(®s
->igaddr1
, 0);
1500 gfar_write(®s
->igaddr2
, 0);
1501 gfar_write(®s
->igaddr3
, 0);
1502 gfar_write(®s
->igaddr4
, 0);
1503 gfar_write(®s
->igaddr5
, 0);
1504 gfar_write(®s
->igaddr6
, 0);
1505 gfar_write(®s
->igaddr7
, 0);
1507 gfar_write(®s
->gaddr0
, 0);
1508 gfar_write(®s
->gaddr1
, 0);
1509 gfar_write(®s
->gaddr2
, 0);
1510 gfar_write(®s
->gaddr3
, 0);
1511 gfar_write(®s
->gaddr4
, 0);
1512 gfar_write(®s
->gaddr5
, 0);
1513 gfar_write(®s
->gaddr6
, 0);
1514 gfar_write(®s
->gaddr7
, 0);
1516 /* Zero out the rmon mib registers if it has them */
1517 if (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_RMON
) {
1518 memset_io(&(regs
->rmon
), 0, sizeof (struct rmon_mib
));
1520 /* Mask off the CAM interrupts */
1521 gfar_write(®s
->rmon
.cam1
, 0xffffffff);
1522 gfar_write(®s
->rmon
.cam2
, 0xffffffff);
1525 /* Initialize the max receive buffer length */
1526 gfar_write(®s
->mrblr
, priv
->rx_buffer_size
);
1528 /* Initialize the Minimum Frame Length Register */
1529 gfar_write(®s
->minflr
, MINFLR_INIT_SETTINGS
);
1533 /* Halt the receive and transmit queues */
1534 static void gfar_halt_nodisable(struct net_device
*dev
)
1536 struct gfar_private
*priv
= netdev_priv(dev
);
1537 struct gfar __iomem
*regs
= NULL
;
1541 for (i
= 0; i
< priv
->num_grps
; i
++) {
1542 regs
= priv
->gfargrp
[i
].regs
;
1543 /* Mask all interrupts */
1544 gfar_write(®s
->imask
, IMASK_INIT_CLEAR
);
1546 /* Clear all interrupts */
1547 gfar_write(®s
->ievent
, IEVENT_INIT_CLEAR
);
1550 regs
= priv
->gfargrp
[0].regs
;
1551 /* Stop the DMA, and wait for it to stop */
1552 tempval
= gfar_read(®s
->dmactrl
);
1553 if ((tempval
& (DMACTRL_GRS
| DMACTRL_GTS
))
1554 != (DMACTRL_GRS
| DMACTRL_GTS
)) {
1555 tempval
|= (DMACTRL_GRS
| DMACTRL_GTS
);
1556 gfar_write(®s
->dmactrl
, tempval
);
1558 spin_event_timeout(((gfar_read(®s
->ievent
) &
1559 (IEVENT_GRSC
| IEVENT_GTSC
)) ==
1560 (IEVENT_GRSC
| IEVENT_GTSC
)), -1, 0);
1564 /* Halt the receive and transmit queues */
1565 void gfar_halt(struct net_device
*dev
)
1567 struct gfar_private
*priv
= netdev_priv(dev
);
1568 struct gfar __iomem
*regs
= priv
->gfargrp
[0].regs
;
1571 gfar_halt_nodisable(dev
);
1573 /* Disable Rx and Tx */
1574 tempval
= gfar_read(®s
->maccfg1
);
1575 tempval
&= ~(MACCFG1_RX_EN
| MACCFG1_TX_EN
);
1576 gfar_write(®s
->maccfg1
, tempval
);
1579 static void free_grp_irqs(struct gfar_priv_grp
*grp
)
1581 free_irq(grp
->interruptError
, grp
);
1582 free_irq(grp
->interruptTransmit
, grp
);
1583 free_irq(grp
->interruptReceive
, grp
);
1586 void stop_gfar(struct net_device
*dev
)
1588 struct gfar_private
*priv
= netdev_priv(dev
);
1589 unsigned long flags
;
1592 phy_stop(priv
->phydev
);
1596 local_irq_save(flags
);
1604 local_irq_restore(flags
);
1607 if (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_MULTI_INTR
) {
1608 for (i
= 0; i
< priv
->num_grps
; i
++)
1609 free_grp_irqs(&priv
->gfargrp
[i
]);
1611 for (i
= 0; i
< priv
->num_grps
; i
++)
1612 free_irq(priv
->gfargrp
[i
].interruptTransmit
,
1616 free_skb_resources(priv
);
1619 static void free_skb_tx_queue(struct gfar_priv_tx_q
*tx_queue
)
1621 struct txbd8
*txbdp
;
1622 struct gfar_private
*priv
= netdev_priv(tx_queue
->dev
);
1625 txbdp
= tx_queue
->tx_bd_base
;
1627 for (i
= 0; i
< tx_queue
->tx_ring_size
; i
++) {
1628 if (!tx_queue
->tx_skbuff
[i
])
1631 dma_unmap_single(&priv
->ofdev
->dev
, txbdp
->bufPtr
,
1632 txbdp
->length
, DMA_TO_DEVICE
);
1634 for (j
= 0; j
< skb_shinfo(tx_queue
->tx_skbuff
[i
])->nr_frags
;
1637 dma_unmap_page(&priv
->ofdev
->dev
, txbdp
->bufPtr
,
1638 txbdp
->length
, DMA_TO_DEVICE
);
1641 dev_kfree_skb_any(tx_queue
->tx_skbuff
[i
]);
1642 tx_queue
->tx_skbuff
[i
] = NULL
;
1644 kfree(tx_queue
->tx_skbuff
);
1647 static void free_skb_rx_queue(struct gfar_priv_rx_q
*rx_queue
)
1649 struct rxbd8
*rxbdp
;
1650 struct gfar_private
*priv
= netdev_priv(rx_queue
->dev
);
1653 rxbdp
= rx_queue
->rx_bd_base
;
1655 for (i
= 0; i
< rx_queue
->rx_ring_size
; i
++) {
1656 if (rx_queue
->rx_skbuff
[i
]) {
1657 dma_unmap_single(&priv
->ofdev
->dev
,
1658 rxbdp
->bufPtr
, priv
->rx_buffer_size
,
1660 dev_kfree_skb_any(rx_queue
->rx_skbuff
[i
]);
1661 rx_queue
->rx_skbuff
[i
] = NULL
;
1667 kfree(rx_queue
->rx_skbuff
);
1670 /* If there are any tx skbs or rx skbs still around, free them.
1671 * Then free tx_skbuff and rx_skbuff */
1672 static void free_skb_resources(struct gfar_private
*priv
)
1674 struct gfar_priv_tx_q
*tx_queue
= NULL
;
1675 struct gfar_priv_rx_q
*rx_queue
= NULL
;
1678 /* Go through all the buffer descriptors and free their data buffers */
1679 for (i
= 0; i
< priv
->num_tx_queues
; i
++) {
1680 tx_queue
= priv
->tx_queue
[i
];
1681 if(tx_queue
->tx_skbuff
)
1682 free_skb_tx_queue(tx_queue
);
1685 for (i
= 0; i
< priv
->num_rx_queues
; i
++) {
1686 rx_queue
= priv
->rx_queue
[i
];
1687 if(rx_queue
->rx_skbuff
)
1688 free_skb_rx_queue(rx_queue
);
1691 dma_free_coherent(&priv
->ofdev
->dev
,
1692 sizeof(struct txbd8
) * priv
->total_tx_ring_size
+
1693 sizeof(struct rxbd8
) * priv
->total_rx_ring_size
,
1694 priv
->tx_queue
[0]->tx_bd_base
,
1695 priv
->tx_queue
[0]->tx_bd_dma_base
);
1696 skb_queue_purge(&priv
->rx_recycle
);
1699 void gfar_start(struct net_device
*dev
)
1701 struct gfar_private
*priv
= netdev_priv(dev
);
1702 struct gfar __iomem
*regs
= priv
->gfargrp
[0].regs
;
1706 /* Enable Rx and Tx in MACCFG1 */
1707 tempval
= gfar_read(®s
->maccfg1
);
1708 tempval
|= (MACCFG1_RX_EN
| MACCFG1_TX_EN
);
1709 gfar_write(®s
->maccfg1
, tempval
);
1711 /* Initialize DMACTRL to have WWR and WOP */
1712 tempval
= gfar_read(®s
->dmactrl
);
1713 tempval
|= DMACTRL_INIT_SETTINGS
;
1714 gfar_write(®s
->dmactrl
, tempval
);
1716 /* Make sure we aren't stopped */
1717 tempval
= gfar_read(®s
->dmactrl
);
1718 tempval
&= ~(DMACTRL_GRS
| DMACTRL_GTS
);
1719 gfar_write(®s
->dmactrl
, tempval
);
1721 for (i
= 0; i
< priv
->num_grps
; i
++) {
1722 regs
= priv
->gfargrp
[i
].regs
;
1723 /* Clear THLT/RHLT, so that the DMA starts polling now */
1724 gfar_write(®s
->tstat
, priv
->gfargrp
[i
].tstat
);
1725 gfar_write(®s
->rstat
, priv
->gfargrp
[i
].rstat
);
1726 /* Unmask the interrupts we look for */
1727 gfar_write(®s
->imask
, IMASK_DEFAULT
);
1730 dev
->trans_start
= jiffies
; /* prevent tx timeout */
1733 void gfar_configure_coalescing(struct gfar_private
*priv
,
1734 unsigned long tx_mask
, unsigned long rx_mask
)
1736 struct gfar __iomem
*regs
= priv
->gfargrp
[0].regs
;
1740 /* Backward compatible case ---- even if we enable
1741 * multiple queues, there's only single reg to program
1743 gfar_write(®s
->txic
, 0);
1744 if(likely(priv
->tx_queue
[0]->txcoalescing
))
1745 gfar_write(®s
->txic
, priv
->tx_queue
[0]->txic
);
1747 gfar_write(®s
->rxic
, 0);
1748 if(unlikely(priv
->rx_queue
[0]->rxcoalescing
))
1749 gfar_write(®s
->rxic
, priv
->rx_queue
[0]->rxic
);
1751 if (priv
->mode
== MQ_MG_MODE
) {
1752 baddr
= ®s
->txic0
;
1753 for_each_set_bit(i
, &tx_mask
, priv
->num_tx_queues
) {
1754 if (likely(priv
->tx_queue
[i
]->txcoalescing
)) {
1755 gfar_write(baddr
+ i
, 0);
1756 gfar_write(baddr
+ i
, priv
->tx_queue
[i
]->txic
);
1760 baddr
= ®s
->rxic0
;
1761 for_each_set_bit(i
, &rx_mask
, priv
->num_rx_queues
) {
1762 if (likely(priv
->rx_queue
[i
]->rxcoalescing
)) {
1763 gfar_write(baddr
+ i
, 0);
1764 gfar_write(baddr
+ i
, priv
->rx_queue
[i
]->rxic
);
1770 static int register_grp_irqs(struct gfar_priv_grp
*grp
)
1772 struct gfar_private
*priv
= grp
->priv
;
1773 struct net_device
*dev
= priv
->ndev
;
1776 /* If the device has multiple interrupts, register for
1777 * them. Otherwise, only register for the one */
1778 if (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_MULTI_INTR
) {
1779 /* Install our interrupt handlers for Error,
1780 * Transmit, and Receive */
1781 if ((err
= request_irq(grp
->interruptError
, gfar_error
, 0,
1782 grp
->int_name_er
,grp
)) < 0) {
1783 if (netif_msg_intr(priv
))
1784 printk(KERN_ERR
"%s: Can't get IRQ %d\n",
1785 dev
->name
, grp
->interruptError
);
1790 if ((err
= request_irq(grp
->interruptTransmit
, gfar_transmit
,
1791 0, grp
->int_name_tx
, grp
)) < 0) {
1792 if (netif_msg_intr(priv
))
1793 printk(KERN_ERR
"%s: Can't get IRQ %d\n",
1794 dev
->name
, grp
->interruptTransmit
);
1798 if ((err
= request_irq(grp
->interruptReceive
, gfar_receive
, 0,
1799 grp
->int_name_rx
, grp
)) < 0) {
1800 if (netif_msg_intr(priv
))
1801 printk(KERN_ERR
"%s: Can't get IRQ %d\n",
1802 dev
->name
, grp
->interruptReceive
);
1806 if ((err
= request_irq(grp
->interruptTransmit
, gfar_interrupt
, 0,
1807 grp
->int_name_tx
, grp
)) < 0) {
1808 if (netif_msg_intr(priv
))
1809 printk(KERN_ERR
"%s: Can't get IRQ %d\n",
1810 dev
->name
, grp
->interruptTransmit
);
1818 free_irq(grp
->interruptTransmit
, grp
);
1820 free_irq(grp
->interruptError
, grp
);
1826 /* Bring the controller up and running */
1827 int startup_gfar(struct net_device
*ndev
)
1829 struct gfar_private
*priv
= netdev_priv(ndev
);
1830 struct gfar __iomem
*regs
= NULL
;
1833 for (i
= 0; i
< priv
->num_grps
; i
++) {
1834 regs
= priv
->gfargrp
[i
].regs
;
1835 gfar_write(®s
->imask
, IMASK_INIT_CLEAR
);
1838 regs
= priv
->gfargrp
[0].regs
;
1839 err
= gfar_alloc_skb_resources(ndev
);
1843 gfar_init_mac(ndev
);
1845 for (i
= 0; i
< priv
->num_grps
; i
++) {
1846 err
= register_grp_irqs(&priv
->gfargrp
[i
]);
1848 for (j
= 0; j
< i
; j
++)
1849 free_grp_irqs(&priv
->gfargrp
[j
]);
1854 /* Start the controller */
1857 phy_start(priv
->phydev
);
1859 gfar_configure_coalescing(priv
, 0xFF, 0xFF);
1864 free_skb_resources(priv
);
1868 /* Called when something needs to use the ethernet device */
1869 /* Returns 0 for success. */
1870 static int gfar_enet_open(struct net_device
*dev
)
1872 struct gfar_private
*priv
= netdev_priv(dev
);
1877 skb_queue_head_init(&priv
->rx_recycle
);
1879 /* Initialize a bunch of registers */
1880 init_registers(dev
);
1882 gfar_set_mac_address(dev
);
1884 err
= init_phy(dev
);
1891 err
= startup_gfar(dev
);
1897 netif_tx_start_all_queues(dev
);
1899 device_set_wakeup_enable(&dev
->dev
, priv
->wol_en
);
1904 static inline struct txfcb
*gfar_add_fcb(struct sk_buff
*skb
)
1906 struct txfcb
*fcb
= (struct txfcb
*)skb_push(skb
, GMAC_FCB_LEN
);
1908 memset(fcb
, 0, GMAC_FCB_LEN
);
1913 static inline void gfar_tx_checksum(struct sk_buff
*skb
, struct txfcb
*fcb
)
1917 /* If we're here, it's a IP packet with a TCP or UDP
1918 * payload. We set it to checksum, using a pseudo-header
1921 flags
= TXFCB_DEFAULT
;
1923 /* Tell the controller what the protocol is */
1924 /* And provide the already calculated phcs */
1925 if (ip_hdr(skb
)->protocol
== IPPROTO_UDP
) {
1927 fcb
->phcs
= udp_hdr(skb
)->check
;
1929 fcb
->phcs
= tcp_hdr(skb
)->check
;
1931 /* l3os is the distance between the start of the
1932 * frame (skb->data) and the start of the IP hdr.
1933 * l4os is the distance between the start of the
1934 * l3 hdr and the l4 hdr */
1935 fcb
->l3os
= (u16
)(skb_network_offset(skb
) - GMAC_FCB_LEN
);
1936 fcb
->l4os
= skb_network_header_len(skb
);
1941 void inline gfar_tx_vlan(struct sk_buff
*skb
, struct txfcb
*fcb
)
1943 fcb
->flags
|= TXFCB_VLN
;
1944 fcb
->vlctl
= vlan_tx_tag_get(skb
);
1947 static inline struct txbd8
*skip_txbd(struct txbd8
*bdp
, int stride
,
1948 struct txbd8
*base
, int ring_size
)
1950 struct txbd8
*new_bd
= bdp
+ stride
;
1952 return (new_bd
>= (base
+ ring_size
)) ? (new_bd
- ring_size
) : new_bd
;
1955 static inline struct txbd8
*next_txbd(struct txbd8
*bdp
, struct txbd8
*base
,
1958 return skip_txbd(bdp
, 1, base
, ring_size
);
1961 /* This is called by the kernel when a frame is ready for transmission. */
1962 /* It is pointed to by the dev->hard_start_xmit function pointer */
1963 static int gfar_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1965 struct gfar_private
*priv
= netdev_priv(dev
);
1966 struct gfar_priv_tx_q
*tx_queue
= NULL
;
1967 struct netdev_queue
*txq
;
1968 struct gfar __iomem
*regs
= NULL
;
1969 struct txfcb
*fcb
= NULL
;
1970 struct txbd8
*txbdp
, *txbdp_start
, *base
, *txbdp_tstamp
= NULL
;
1972 int i
, rq
= 0, do_tstamp
= 0;
1974 unsigned long flags
;
1975 unsigned int nr_frags
, nr_txbds
, length
;
1976 union skb_shared_tx
*shtx
;
1978 rq
= skb
->queue_mapping
;
1979 tx_queue
= priv
->tx_queue
[rq
];
1980 txq
= netdev_get_tx_queue(dev
, rq
);
1981 base
= tx_queue
->tx_bd_base
;
1982 regs
= tx_queue
->grp
->regs
;
1985 /* check if time stamp should be generated */
1986 if (unlikely(shtx
->hardware
&& priv
->hwts_tx_en
))
1989 /* make space for additional header when fcb is needed */
1990 if (((skb
->ip_summed
== CHECKSUM_PARTIAL
) ||
1991 (priv
->vlgrp
&& vlan_tx_tag_present(skb
)) ||
1992 unlikely(do_tstamp
)) &&
1993 (skb_headroom(skb
) < GMAC_FCB_LEN
)) {
1994 struct sk_buff
*skb_new
;
1996 skb_new
= skb_realloc_headroom(skb
, GMAC_FCB_LEN
);
1998 dev
->stats
.tx_errors
++;
2000 return NETDEV_TX_OK
;
2006 /* total number of fragments in the SKB */
2007 nr_frags
= skb_shinfo(skb
)->nr_frags
;
2009 /* calculate the required number of TxBDs for this skb */
2010 if (unlikely(do_tstamp
))
2011 nr_txbds
= nr_frags
+ 2;
2013 nr_txbds
= nr_frags
+ 1;
2015 /* check if there is space to queue this packet */
2016 if (nr_txbds
> tx_queue
->num_txbdfree
) {
2017 /* no space, stop the queue */
2018 netif_tx_stop_queue(txq
);
2019 dev
->stats
.tx_fifo_errors
++;
2020 return NETDEV_TX_BUSY
;
2023 /* Update transmit stats */
2024 txq
->tx_bytes
+= skb
->len
;
2027 txbdp
= txbdp_start
= tx_queue
->cur_tx
;
2028 lstatus
= txbdp
->lstatus
;
2030 /* Time stamp insertion requires one additional TxBD */
2031 if (unlikely(do_tstamp
))
2032 txbdp_tstamp
= txbdp
= next_txbd(txbdp
, base
,
2033 tx_queue
->tx_ring_size
);
2035 if (nr_frags
== 0) {
2036 if (unlikely(do_tstamp
))
2037 txbdp_tstamp
->lstatus
|= BD_LFLAG(TXBD_LAST
|
2040 lstatus
|= BD_LFLAG(TXBD_LAST
| TXBD_INTERRUPT
);
2042 /* Place the fragment addresses and lengths into the TxBDs */
2043 for (i
= 0; i
< nr_frags
; i
++) {
2044 /* Point at the next BD, wrapping as needed */
2045 txbdp
= next_txbd(txbdp
, base
, tx_queue
->tx_ring_size
);
2047 length
= skb_shinfo(skb
)->frags
[i
].size
;
2049 lstatus
= txbdp
->lstatus
| length
|
2050 BD_LFLAG(TXBD_READY
);
2052 /* Handle the last BD specially */
2053 if (i
== nr_frags
- 1)
2054 lstatus
|= BD_LFLAG(TXBD_LAST
| TXBD_INTERRUPT
);
2056 bufaddr
= dma_map_page(&priv
->ofdev
->dev
,
2057 skb_shinfo(skb
)->frags
[i
].page
,
2058 skb_shinfo(skb
)->frags
[i
].page_offset
,
2062 /* set the TxBD length and buffer pointer */
2063 txbdp
->bufPtr
= bufaddr
;
2064 txbdp
->lstatus
= lstatus
;
2067 lstatus
= txbdp_start
->lstatus
;
2070 /* Set up checksumming */
2071 if (CHECKSUM_PARTIAL
== skb
->ip_summed
) {
2072 fcb
= gfar_add_fcb(skb
);
2073 lstatus
|= BD_LFLAG(TXBD_TOE
);
2074 gfar_tx_checksum(skb
, fcb
);
2077 if (priv
->vlgrp
&& vlan_tx_tag_present(skb
)) {
2078 if (unlikely(NULL
== fcb
)) {
2079 fcb
= gfar_add_fcb(skb
);
2080 lstatus
|= BD_LFLAG(TXBD_TOE
);
2083 gfar_tx_vlan(skb
, fcb
);
2086 /* Setup tx hardware time stamping if requested */
2087 if (unlikely(do_tstamp
)) {
2088 shtx
->in_progress
= 1;
2090 fcb
= gfar_add_fcb(skb
);
2092 lstatus
|= BD_LFLAG(TXBD_TOE
);
2095 txbdp_start
->bufPtr
= dma_map_single(&priv
->ofdev
->dev
, skb
->data
,
2096 skb_headlen(skb
), DMA_TO_DEVICE
);
2099 * If time stamping is requested one additional TxBD must be set up. The
2100 * first TxBD points to the FCB and must have a data length of
2101 * GMAC_FCB_LEN. The second TxBD points to the actual frame data with
2102 * the full frame length.
2104 if (unlikely(do_tstamp
)) {
2105 txbdp_tstamp
->bufPtr
= txbdp_start
->bufPtr
+ GMAC_FCB_LEN
;
2106 txbdp_tstamp
->lstatus
|= BD_LFLAG(TXBD_READY
) |
2107 (skb_headlen(skb
) - GMAC_FCB_LEN
);
2108 lstatus
|= BD_LFLAG(TXBD_CRC
| TXBD_READY
) | GMAC_FCB_LEN
;
2110 lstatus
|= BD_LFLAG(TXBD_CRC
| TXBD_READY
) | skb_headlen(skb
);
2114 * We can work in parallel with gfar_clean_tx_ring(), except
2115 * when modifying num_txbdfree. Note that we didn't grab the lock
2116 * when we were reading the num_txbdfree and checking for available
2117 * space, that's because outside of this function it can only grow,
2118 * and once we've got needed space, it cannot suddenly disappear.
2120 * The lock also protects us from gfar_error(), which can modify
2121 * regs->tstat and thus retrigger the transfers, which is why we
2122 * also must grab the lock before setting ready bit for the first
2123 * to be transmitted BD.
2125 spin_lock_irqsave(&tx_queue
->txlock
, flags
);
2128 * The powerpc-specific eieio() is used, as wmb() has too strong
2129 * semantics (it requires synchronization between cacheable and
2130 * uncacheable mappings, which eieio doesn't provide and which we
2131 * don't need), thus requiring a more expensive sync instruction. At
2132 * some point, the set of architecture-independent barrier functions
2133 * should be expanded to include weaker barriers.
2137 txbdp_start
->lstatus
= lstatus
;
2139 eieio(); /* force lstatus write before tx_skbuff */
2141 tx_queue
->tx_skbuff
[tx_queue
->skb_curtx
] = skb
;
2143 /* Update the current skb pointer to the next entry we will use
2144 * (wrapping if necessary) */
2145 tx_queue
->skb_curtx
= (tx_queue
->skb_curtx
+ 1) &
2146 TX_RING_MOD_MASK(tx_queue
->tx_ring_size
);
2148 tx_queue
->cur_tx
= next_txbd(txbdp
, base
, tx_queue
->tx_ring_size
);
2150 /* reduce TxBD free count */
2151 tx_queue
->num_txbdfree
-= (nr_txbds
);
2153 /* If the next BD still needs to be cleaned up, then the bds
2154 are full. We need to tell the kernel to stop sending us stuff. */
2155 if (!tx_queue
->num_txbdfree
) {
2156 netif_tx_stop_queue(txq
);
2158 dev
->stats
.tx_fifo_errors
++;
2161 /* Tell the DMA to go go go */
2162 gfar_write(®s
->tstat
, TSTAT_CLEAR_THALT
>> tx_queue
->qindex
);
2165 spin_unlock_irqrestore(&tx_queue
->txlock
, flags
);
2167 return NETDEV_TX_OK
;
2170 /* Stops the kernel queue, and halts the controller */
2171 static int gfar_close(struct net_device
*dev
)
2173 struct gfar_private
*priv
= netdev_priv(dev
);
2177 cancel_work_sync(&priv
->reset_task
);
2180 /* Disconnect from the PHY */
2181 phy_disconnect(priv
->phydev
);
2182 priv
->phydev
= NULL
;
2184 netif_tx_stop_all_queues(dev
);
2189 /* Changes the mac address if the controller is not running. */
2190 static int gfar_set_mac_address(struct net_device
*dev
)
2192 gfar_set_mac_for_addr(dev
, 0, dev
->dev_addr
);
2198 /* Enables and disables VLAN insertion/extraction */
2199 static void gfar_vlan_rx_register(struct net_device
*dev
,
2200 struct vlan_group
*grp
)
2202 struct gfar_private
*priv
= netdev_priv(dev
);
2203 struct gfar __iomem
*regs
= NULL
;
2204 unsigned long flags
;
2207 regs
= priv
->gfargrp
[0].regs
;
2208 local_irq_save(flags
);
2214 /* Enable VLAN tag insertion */
2215 tempval
= gfar_read(®s
->tctrl
);
2216 tempval
|= TCTRL_VLINS
;
2218 gfar_write(®s
->tctrl
, tempval
);
2220 /* Enable VLAN tag extraction */
2221 tempval
= gfar_read(®s
->rctrl
);
2222 tempval
|= (RCTRL_VLEX
| RCTRL_PRSDEP_INIT
);
2223 gfar_write(®s
->rctrl
, tempval
);
2225 /* Disable VLAN tag insertion */
2226 tempval
= gfar_read(®s
->tctrl
);
2227 tempval
&= ~TCTRL_VLINS
;
2228 gfar_write(®s
->tctrl
, tempval
);
2230 /* Disable VLAN tag extraction */
2231 tempval
= gfar_read(®s
->rctrl
);
2232 tempval
&= ~RCTRL_VLEX
;
2233 /* If parse is no longer required, then disable parser */
2234 if (tempval
& RCTRL_REQ_PARSER
)
2235 tempval
|= RCTRL_PRSDEP_INIT
;
2237 tempval
&= ~RCTRL_PRSDEP_INIT
;
2238 gfar_write(®s
->rctrl
, tempval
);
2241 gfar_change_mtu(dev
, dev
->mtu
);
2244 local_irq_restore(flags
);
2247 static int gfar_change_mtu(struct net_device
*dev
, int new_mtu
)
2249 int tempsize
, tempval
;
2250 struct gfar_private
*priv
= netdev_priv(dev
);
2251 struct gfar __iomem
*regs
= priv
->gfargrp
[0].regs
;
2252 int oldsize
= priv
->rx_buffer_size
;
2253 int frame_size
= new_mtu
+ ETH_HLEN
;
2256 frame_size
+= VLAN_HLEN
;
2258 if ((frame_size
< 64) || (frame_size
> JUMBO_FRAME_SIZE
)) {
2259 if (netif_msg_drv(priv
))
2260 printk(KERN_ERR
"%s: Invalid MTU setting\n",
2265 if (gfar_uses_fcb(priv
))
2266 frame_size
+= GMAC_FCB_LEN
;
2268 frame_size
+= priv
->padding
;
2271 (frame_size
& ~(INCREMENTAL_BUFFER_SIZE
- 1)) +
2272 INCREMENTAL_BUFFER_SIZE
;
2274 /* Only stop and start the controller if it isn't already
2275 * stopped, and we changed something */
2276 if ((oldsize
!= tempsize
) && (dev
->flags
& IFF_UP
))
2279 priv
->rx_buffer_size
= tempsize
;
2283 gfar_write(®s
->mrblr
, priv
->rx_buffer_size
);
2284 gfar_write(®s
->maxfrm
, priv
->rx_buffer_size
);
2286 /* If the mtu is larger than the max size for standard
2287 * ethernet frames (ie, a jumbo frame), then set maccfg2
2288 * to allow huge frames, and to check the length */
2289 tempval
= gfar_read(®s
->maccfg2
);
2291 if (priv
->rx_buffer_size
> DEFAULT_RX_BUFFER_SIZE
)
2292 tempval
|= (MACCFG2_HUGEFRAME
| MACCFG2_LENGTHCHECK
);
2294 tempval
&= ~(MACCFG2_HUGEFRAME
| MACCFG2_LENGTHCHECK
);
2296 gfar_write(®s
->maccfg2
, tempval
);
2298 if ((oldsize
!= tempsize
) && (dev
->flags
& IFF_UP
))
2304 /* gfar_reset_task gets scheduled when a packet has not been
2305 * transmitted after a set amount of time.
2306 * For now, assume that clearing out all the structures, and
2307 * starting over will fix the problem.
2309 static void gfar_reset_task(struct work_struct
*work
)
2311 struct gfar_private
*priv
= container_of(work
, struct gfar_private
,
2313 struct net_device
*dev
= priv
->ndev
;
2315 if (dev
->flags
& IFF_UP
) {
2316 netif_tx_stop_all_queues(dev
);
2319 netif_tx_start_all_queues(dev
);
2322 netif_tx_schedule_all(dev
);
2325 static void gfar_timeout(struct net_device
*dev
)
2327 struct gfar_private
*priv
= netdev_priv(dev
);
2329 dev
->stats
.tx_errors
++;
2330 schedule_work(&priv
->reset_task
);
2333 /* Interrupt Handler for Transmit complete */
2334 static int gfar_clean_tx_ring(struct gfar_priv_tx_q
*tx_queue
)
2336 struct net_device
*dev
= tx_queue
->dev
;
2337 struct gfar_private
*priv
= netdev_priv(dev
);
2338 struct gfar_priv_rx_q
*rx_queue
= NULL
;
2339 struct txbd8
*bdp
, *next
= NULL
;
2340 struct txbd8
*lbdp
= NULL
;
2341 struct txbd8
*base
= tx_queue
->tx_bd_base
;
2342 struct sk_buff
*skb
;
2344 int tx_ring_size
= tx_queue
->tx_ring_size
;
2345 int frags
= 0, nr_txbds
= 0;
2350 union skb_shared_tx
*shtx
;
2352 rx_queue
= priv
->rx_queue
[tx_queue
->qindex
];
2353 bdp
= tx_queue
->dirty_tx
;
2354 skb_dirtytx
= tx_queue
->skb_dirtytx
;
2356 while ((skb
= tx_queue
->tx_skbuff
[skb_dirtytx
])) {
2357 unsigned long flags
;
2359 frags
= skb_shinfo(skb
)->nr_frags
;
2362 * When time stamping, one additional TxBD must be freed.
2363 * Also, we need to dma_unmap_single() the TxPAL.
2366 if (unlikely(shtx
->in_progress
))
2367 nr_txbds
= frags
+ 2;
2369 nr_txbds
= frags
+ 1;
2371 lbdp
= skip_txbd(bdp
, nr_txbds
- 1, base
, tx_ring_size
);
2373 lstatus
= lbdp
->lstatus
;
2375 /* Only clean completed frames */
2376 if ((lstatus
& BD_LFLAG(TXBD_READY
)) &&
2377 (lstatus
& BD_LENGTH_MASK
))
2380 if (unlikely(shtx
->in_progress
)) {
2381 next
= next_txbd(bdp
, base
, tx_ring_size
);
2382 buflen
= next
->length
+ GMAC_FCB_LEN
;
2384 buflen
= bdp
->length
;
2386 dma_unmap_single(&priv
->ofdev
->dev
, bdp
->bufPtr
,
2387 buflen
, DMA_TO_DEVICE
);
2389 if (unlikely(shtx
->in_progress
)) {
2390 struct skb_shared_hwtstamps shhwtstamps
;
2391 u64
*ns
= (u64
*) (((u32
)skb
->data
+ 0x10) & ~0x7);
2392 memset(&shhwtstamps
, 0, sizeof(shhwtstamps
));
2393 shhwtstamps
.hwtstamp
= ns_to_ktime(*ns
);
2394 skb_tstamp_tx(skb
, &shhwtstamps
);
2395 bdp
->lstatus
&= BD_LFLAG(TXBD_WRAP
);
2399 bdp
->lstatus
&= BD_LFLAG(TXBD_WRAP
);
2400 bdp
= next_txbd(bdp
, base
, tx_ring_size
);
2402 for (i
= 0; i
< frags
; i
++) {
2403 dma_unmap_page(&priv
->ofdev
->dev
,
2407 bdp
->lstatus
&= BD_LFLAG(TXBD_WRAP
);
2408 bdp
= next_txbd(bdp
, base
, tx_ring_size
);
2412 * If there's room in the queue (limit it to rx_buffer_size)
2413 * we add this skb back into the pool, if it's the right size
2415 if (skb_queue_len(&priv
->rx_recycle
) < rx_queue
->rx_ring_size
&&
2416 skb_recycle_check(skb
, priv
->rx_buffer_size
+
2418 __skb_queue_head(&priv
->rx_recycle
, skb
);
2420 dev_kfree_skb_any(skb
);
2422 tx_queue
->tx_skbuff
[skb_dirtytx
] = NULL
;
2424 skb_dirtytx
= (skb_dirtytx
+ 1) &
2425 TX_RING_MOD_MASK(tx_ring_size
);
2428 spin_lock_irqsave(&tx_queue
->txlock
, flags
);
2429 tx_queue
->num_txbdfree
+= nr_txbds
;
2430 spin_unlock_irqrestore(&tx_queue
->txlock
, flags
);
2433 /* If we freed a buffer, we can restart transmission, if necessary */
2434 if (__netif_subqueue_stopped(dev
, tx_queue
->qindex
) && tx_queue
->num_txbdfree
)
2435 netif_wake_subqueue(dev
, tx_queue
->qindex
);
2437 /* Update dirty indicators */
2438 tx_queue
->skb_dirtytx
= skb_dirtytx
;
2439 tx_queue
->dirty_tx
= bdp
;
2444 static void gfar_schedule_cleanup(struct gfar_priv_grp
*gfargrp
)
2446 unsigned long flags
;
2448 spin_lock_irqsave(&gfargrp
->grplock
, flags
);
2449 if (napi_schedule_prep(&gfargrp
->napi
)) {
2450 gfar_write(&gfargrp
->regs
->imask
, IMASK_RTX_DISABLED
);
2451 __napi_schedule(&gfargrp
->napi
);
2454 * Clear IEVENT, so interrupts aren't called again
2455 * because of the packets that have already arrived.
2457 gfar_write(&gfargrp
->regs
->ievent
, IEVENT_RTX_MASK
);
2459 spin_unlock_irqrestore(&gfargrp
->grplock
, flags
);
2463 /* Interrupt Handler for Transmit complete */
2464 static irqreturn_t
gfar_transmit(int irq
, void *grp_id
)
2466 gfar_schedule_cleanup((struct gfar_priv_grp
*)grp_id
);
2470 static void gfar_new_rxbdp(struct gfar_priv_rx_q
*rx_queue
, struct rxbd8
*bdp
,
2471 struct sk_buff
*skb
)
2473 struct net_device
*dev
= rx_queue
->dev
;
2474 struct gfar_private
*priv
= netdev_priv(dev
);
2477 buf
= dma_map_single(&priv
->ofdev
->dev
, skb
->data
,
2478 priv
->rx_buffer_size
, DMA_FROM_DEVICE
);
2479 gfar_init_rxbdp(rx_queue
, bdp
, buf
);
2483 struct sk_buff
* gfar_new_skb(struct net_device
*dev
)
2485 unsigned int alignamount
;
2486 struct gfar_private
*priv
= netdev_priv(dev
);
2487 struct sk_buff
*skb
= NULL
;
2489 skb
= __skb_dequeue(&priv
->rx_recycle
);
2491 skb
= netdev_alloc_skb(dev
,
2492 priv
->rx_buffer_size
+ RXBUF_ALIGNMENT
);
2497 alignamount
= RXBUF_ALIGNMENT
-
2498 (((unsigned long) skb
->data
) & (RXBUF_ALIGNMENT
- 1));
2500 /* We need the data buffer to be aligned properly. We will reserve
2501 * as many bytes as needed to align the data properly
2503 skb_reserve(skb
, alignamount
);
2504 GFAR_CB(skb
)->alignamount
= alignamount
;
2509 static inline void count_errors(unsigned short status
, struct net_device
*dev
)
2511 struct gfar_private
*priv
= netdev_priv(dev
);
2512 struct net_device_stats
*stats
= &dev
->stats
;
2513 struct gfar_extra_stats
*estats
= &priv
->extra_stats
;
2515 /* If the packet was truncated, none of the other errors
2517 if (status
& RXBD_TRUNCATED
) {
2518 stats
->rx_length_errors
++;
2524 /* Count the errors, if there were any */
2525 if (status
& (RXBD_LARGE
| RXBD_SHORT
)) {
2526 stats
->rx_length_errors
++;
2528 if (status
& RXBD_LARGE
)
2533 if (status
& RXBD_NONOCTET
) {
2534 stats
->rx_frame_errors
++;
2535 estats
->rx_nonoctet
++;
2537 if (status
& RXBD_CRCERR
) {
2538 estats
->rx_crcerr
++;
2539 stats
->rx_crc_errors
++;
2541 if (status
& RXBD_OVERRUN
) {
2542 estats
->rx_overrun
++;
2543 stats
->rx_crc_errors
++;
2547 irqreturn_t
gfar_receive(int irq
, void *grp_id
)
2549 gfar_schedule_cleanup((struct gfar_priv_grp
*)grp_id
);
2553 static inline void gfar_rx_checksum(struct sk_buff
*skb
, struct rxfcb
*fcb
)
2555 /* If valid headers were found, and valid sums
2556 * were verified, then we tell the kernel that no
2557 * checksumming is necessary. Otherwise, it is */
2558 if ((fcb
->flags
& RXFCB_CSUM_MASK
) == (RXFCB_CIP
| RXFCB_CTU
))
2559 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
2561 skb
->ip_summed
= CHECKSUM_NONE
;
2565 /* gfar_process_frame() -- handle one incoming packet if skb
2567 static int gfar_process_frame(struct net_device
*dev
, struct sk_buff
*skb
,
2570 struct gfar_private
*priv
= netdev_priv(dev
);
2571 struct rxfcb
*fcb
= NULL
;
2575 /* fcb is at the beginning if exists */
2576 fcb
= (struct rxfcb
*)skb
->data
;
2578 /* Remove the FCB from the skb */
2579 /* Remove the padded bytes, if there are any */
2581 skb_record_rx_queue(skb
, fcb
->rq
);
2582 skb_pull(skb
, amount_pull
);
2585 /* Get receive timestamp from the skb */
2586 if (priv
->hwts_rx_en
) {
2587 struct skb_shared_hwtstamps
*shhwtstamps
= skb_hwtstamps(skb
);
2588 u64
*ns
= (u64
*) skb
->data
;
2589 memset(shhwtstamps
, 0, sizeof(*shhwtstamps
));
2590 shhwtstamps
->hwtstamp
= ns_to_ktime(*ns
);
2594 skb_pull(skb
, priv
->padding
);
2596 if (priv
->rx_csum_enable
)
2597 gfar_rx_checksum(skb
, fcb
);
2599 /* Tell the skb what kind of packet this is */
2600 skb
->protocol
= eth_type_trans(skb
, dev
);
2602 /* Send the packet up the stack */
2603 if (unlikely(priv
->vlgrp
&& (fcb
->flags
& RXFCB_VLN
)))
2604 ret
= vlan_hwaccel_receive_skb(skb
, priv
->vlgrp
, fcb
->vlctl
);
2606 ret
= netif_receive_skb(skb
);
2608 if (NET_RX_DROP
== ret
)
2609 priv
->extra_stats
.kernel_dropped
++;
2614 /* gfar_clean_rx_ring() -- Processes each frame in the rx ring
2615 * until the budget/quota has been reached. Returns the number
2618 int gfar_clean_rx_ring(struct gfar_priv_rx_q
*rx_queue
, int rx_work_limit
)
2620 struct net_device
*dev
= rx_queue
->dev
;
2621 struct rxbd8
*bdp
, *base
;
2622 struct sk_buff
*skb
;
2626 struct gfar_private
*priv
= netdev_priv(dev
);
2628 /* Get the first full descriptor */
2629 bdp
= rx_queue
->cur_rx
;
2630 base
= rx_queue
->rx_bd_base
;
2632 amount_pull
= (gfar_uses_fcb(priv
) ? GMAC_FCB_LEN
: 0);
2634 while (!((bdp
->status
& RXBD_EMPTY
) || (--rx_work_limit
< 0))) {
2635 struct sk_buff
*newskb
;
2638 /* Add another skb for the future */
2639 newskb
= gfar_new_skb(dev
);
2641 skb
= rx_queue
->rx_skbuff
[rx_queue
->skb_currx
];
2643 dma_unmap_single(&priv
->ofdev
->dev
, bdp
->bufPtr
,
2644 priv
->rx_buffer_size
, DMA_FROM_DEVICE
);
2646 /* We drop the frame if we failed to allocate a new buffer */
2647 if (unlikely(!newskb
|| !(bdp
->status
& RXBD_LAST
) ||
2648 bdp
->status
& RXBD_ERR
)) {
2649 count_errors(bdp
->status
, dev
);
2651 if (unlikely(!newskb
))
2655 * We need to un-reserve() the skb to what it
2656 * was before gfar_new_skb() re-aligned
2657 * it to an RXBUF_ALIGNMENT boundary
2658 * before we put the skb back on the
2661 skb_reserve(skb
, -GFAR_CB(skb
)->alignamount
);
2662 __skb_queue_head(&priv
->rx_recycle
, skb
);
2665 /* Increment the number of packets */
2666 rx_queue
->stats
.rx_packets
++;
2670 pkt_len
= bdp
->length
- ETH_FCS_LEN
;
2671 /* Remove the FCS from the packet length */
2672 skb_put(skb
, pkt_len
);
2673 rx_queue
->stats
.rx_bytes
+= pkt_len
;
2674 skb_record_rx_queue(skb
, rx_queue
->qindex
);
2675 gfar_process_frame(dev
, skb
, amount_pull
);
2678 if (netif_msg_rx_err(priv
))
2680 "%s: Missing skb!\n", dev
->name
);
2681 rx_queue
->stats
.rx_dropped
++;
2682 priv
->extra_stats
.rx_skbmissing
++;
2687 rx_queue
->rx_skbuff
[rx_queue
->skb_currx
] = newskb
;
2689 /* Setup the new bdp */
2690 gfar_new_rxbdp(rx_queue
, bdp
, newskb
);
2692 /* Update to the next pointer */
2693 bdp
= next_bd(bdp
, base
, rx_queue
->rx_ring_size
);
2695 /* update to point at the next skb */
2696 rx_queue
->skb_currx
=
2697 (rx_queue
->skb_currx
+ 1) &
2698 RX_RING_MOD_MASK(rx_queue
->rx_ring_size
);
2701 /* Update the current rxbd pointer to be the next one */
2702 rx_queue
->cur_rx
= bdp
;
2707 static int gfar_poll(struct napi_struct
*napi
, int budget
)
2709 struct gfar_priv_grp
*gfargrp
= container_of(napi
,
2710 struct gfar_priv_grp
, napi
);
2711 struct gfar_private
*priv
= gfargrp
->priv
;
2712 struct gfar __iomem
*regs
= gfargrp
->regs
;
2713 struct gfar_priv_tx_q
*tx_queue
= NULL
;
2714 struct gfar_priv_rx_q
*rx_queue
= NULL
;
2715 int rx_cleaned
= 0, budget_per_queue
= 0, rx_cleaned_per_queue
= 0;
2716 int tx_cleaned
= 0, i
, left_over_budget
= budget
;
2717 unsigned long serviced_queues
= 0;
2720 num_queues
= gfargrp
->num_rx_queues
;
2721 budget_per_queue
= budget
/num_queues
;
2723 /* Clear IEVENT, so interrupts aren't called again
2724 * because of the packets that have already arrived */
2725 gfar_write(®s
->ievent
, IEVENT_RTX_MASK
);
2727 while (num_queues
&& left_over_budget
) {
2729 budget_per_queue
= left_over_budget
/num_queues
;
2730 left_over_budget
= 0;
2732 for_each_set_bit(i
, &gfargrp
->rx_bit_map
, priv
->num_rx_queues
) {
2733 if (test_bit(i
, &serviced_queues
))
2735 rx_queue
= priv
->rx_queue
[i
];
2736 tx_queue
= priv
->tx_queue
[rx_queue
->qindex
];
2738 tx_cleaned
+= gfar_clean_tx_ring(tx_queue
);
2739 rx_cleaned_per_queue
= gfar_clean_rx_ring(rx_queue
,
2741 rx_cleaned
+= rx_cleaned_per_queue
;
2742 if(rx_cleaned_per_queue
< budget_per_queue
) {
2743 left_over_budget
= left_over_budget
+
2744 (budget_per_queue
- rx_cleaned_per_queue
);
2745 set_bit(i
, &serviced_queues
);
2754 if (rx_cleaned
< budget
) {
2755 napi_complete(napi
);
2757 /* Clear the halt bit in RSTAT */
2758 gfar_write(®s
->rstat
, gfargrp
->rstat
);
2760 gfar_write(®s
->imask
, IMASK_DEFAULT
);
2762 /* If we are coalescing interrupts, update the timer */
2763 /* Otherwise, clear it */
2764 gfar_configure_coalescing(priv
,
2765 gfargrp
->rx_bit_map
, gfargrp
->tx_bit_map
);
2771 #ifdef CONFIG_NET_POLL_CONTROLLER
2773 * Polling 'interrupt' - used by things like netconsole to send skbs
2774 * without having to re-enable interrupts. It's not called while
2775 * the interrupt routine is executing.
2777 static void gfar_netpoll(struct net_device
*dev
)
2779 struct gfar_private
*priv
= netdev_priv(dev
);
2782 /* If the device has multiple interrupts, run tx/rx */
2783 if (priv
->device_flags
& FSL_GIANFAR_DEV_HAS_MULTI_INTR
) {
2784 for (i
= 0; i
< priv
->num_grps
; i
++) {
2785 disable_irq(priv
->gfargrp
[i
].interruptTransmit
);
2786 disable_irq(priv
->gfargrp
[i
].interruptReceive
);
2787 disable_irq(priv
->gfargrp
[i
].interruptError
);
2788 gfar_interrupt(priv
->gfargrp
[i
].interruptTransmit
,
2790 enable_irq(priv
->gfargrp
[i
].interruptError
);
2791 enable_irq(priv
->gfargrp
[i
].interruptReceive
);
2792 enable_irq(priv
->gfargrp
[i
].interruptTransmit
);
2795 for (i
= 0; i
< priv
->num_grps
; i
++) {
2796 disable_irq(priv
->gfargrp
[i
].interruptTransmit
);
2797 gfar_interrupt(priv
->gfargrp
[i
].interruptTransmit
,
2799 enable_irq(priv
->gfargrp
[i
].interruptTransmit
);
2805 /* The interrupt handler for devices with one interrupt */
2806 static irqreturn_t
gfar_interrupt(int irq
, void *grp_id
)
2808 struct gfar_priv_grp
*gfargrp
= grp_id
;
2810 /* Save ievent for future reference */
2811 u32 events
= gfar_read(&gfargrp
->regs
->ievent
);
2813 /* Check for reception */
2814 if (events
& IEVENT_RX_MASK
)
2815 gfar_receive(irq
, grp_id
);
2817 /* Check for transmit completion */
2818 if (events
& IEVENT_TX_MASK
)
2819 gfar_transmit(irq
, grp_id
);
2821 /* Check for errors */
2822 if (events
& IEVENT_ERR_MASK
)
2823 gfar_error(irq
, grp_id
);
2828 /* Called every time the controller might need to be made
2829 * aware of new link state. The PHY code conveys this
2830 * information through variables in the phydev structure, and this
2831 * function converts those variables into the appropriate
2832 * register values, and can bring down the device if needed.
2834 static void adjust_link(struct net_device
*dev
)
2836 struct gfar_private
*priv
= netdev_priv(dev
);
2837 struct gfar __iomem
*regs
= priv
->gfargrp
[0].regs
;
2838 unsigned long flags
;
2839 struct phy_device
*phydev
= priv
->phydev
;
2842 local_irq_save(flags
);
2846 u32 tempval
= gfar_read(®s
->maccfg2
);
2847 u32 ecntrl
= gfar_read(®s
->ecntrl
);
2849 /* Now we make sure that we can be in full duplex mode.
2850 * If not, we operate in half-duplex mode. */
2851 if (phydev
->duplex
!= priv
->oldduplex
) {
2853 if (!(phydev
->duplex
))
2854 tempval
&= ~(MACCFG2_FULL_DUPLEX
);
2856 tempval
|= MACCFG2_FULL_DUPLEX
;
2858 priv
->oldduplex
= phydev
->duplex
;
2861 if (phydev
->speed
!= priv
->oldspeed
) {
2863 switch (phydev
->speed
) {
2866 ((tempval
& ~(MACCFG2_IF
)) | MACCFG2_GMII
);
2868 ecntrl
&= ~(ECNTRL_R100
);
2873 ((tempval
& ~(MACCFG2_IF
)) | MACCFG2_MII
);
2875 /* Reduced mode distinguishes
2876 * between 10 and 100 */
2877 if (phydev
->speed
== SPEED_100
)
2878 ecntrl
|= ECNTRL_R100
;
2880 ecntrl
&= ~(ECNTRL_R100
);
2883 if (netif_msg_link(priv
))
2885 "%s: Ack! Speed (%d) is not 10/100/1000!\n",
2886 dev
->name
, phydev
->speed
);
2890 priv
->oldspeed
= phydev
->speed
;
2893 gfar_write(®s
->maccfg2
, tempval
);
2894 gfar_write(®s
->ecntrl
, ecntrl
);
2896 if (!priv
->oldlink
) {
2900 } else if (priv
->oldlink
) {
2904 priv
->oldduplex
= -1;
2907 if (new_state
&& netif_msg_link(priv
))
2908 phy_print_status(phydev
);
2910 local_irq_restore(flags
);
2913 /* Update the hash table based on the current list of multicast
2914 * addresses we subscribe to. Also, change the promiscuity of
2915 * the device based on the flags (this function is called
2916 * whenever dev->flags is changed */
2917 static void gfar_set_multi(struct net_device
*dev
)
2919 struct netdev_hw_addr
*ha
;
2920 struct gfar_private
*priv
= netdev_priv(dev
);
2921 struct gfar __iomem
*regs
= priv
->gfargrp
[0].regs
;
2924 if (dev
->flags
& IFF_PROMISC
) {
2925 /* Set RCTRL to PROM */
2926 tempval
= gfar_read(®s
->rctrl
);
2927 tempval
|= RCTRL_PROM
;
2928 gfar_write(®s
->rctrl
, tempval
);
2930 /* Set RCTRL to not PROM */
2931 tempval
= gfar_read(®s
->rctrl
);
2932 tempval
&= ~(RCTRL_PROM
);
2933 gfar_write(®s
->rctrl
, tempval
);
2936 if (dev
->flags
& IFF_ALLMULTI
) {
2937 /* Set the hash to rx all multicast frames */
2938 gfar_write(®s
->igaddr0
, 0xffffffff);
2939 gfar_write(®s
->igaddr1
, 0xffffffff);
2940 gfar_write(®s
->igaddr2
, 0xffffffff);
2941 gfar_write(®s
->igaddr3
, 0xffffffff);
2942 gfar_write(®s
->igaddr4
, 0xffffffff);
2943 gfar_write(®s
->igaddr5
, 0xffffffff);
2944 gfar_write(®s
->igaddr6
, 0xffffffff);
2945 gfar_write(®s
->igaddr7
, 0xffffffff);
2946 gfar_write(®s
->gaddr0
, 0xffffffff);
2947 gfar_write(®s
->gaddr1
, 0xffffffff);
2948 gfar_write(®s
->gaddr2
, 0xffffffff);
2949 gfar_write(®s
->gaddr3
, 0xffffffff);
2950 gfar_write(®s
->gaddr4
, 0xffffffff);
2951 gfar_write(®s
->gaddr5
, 0xffffffff);
2952 gfar_write(®s
->gaddr6
, 0xffffffff);
2953 gfar_write(®s
->gaddr7
, 0xffffffff);
2958 /* zero out the hash */
2959 gfar_write(®s
->igaddr0
, 0x0);
2960 gfar_write(®s
->igaddr1
, 0x0);
2961 gfar_write(®s
->igaddr2
, 0x0);
2962 gfar_write(®s
->igaddr3
, 0x0);
2963 gfar_write(®s
->igaddr4
, 0x0);
2964 gfar_write(®s
->igaddr5
, 0x0);
2965 gfar_write(®s
->igaddr6
, 0x0);
2966 gfar_write(®s
->igaddr7
, 0x0);
2967 gfar_write(®s
->gaddr0
, 0x0);
2968 gfar_write(®s
->gaddr1
, 0x0);
2969 gfar_write(®s
->gaddr2
, 0x0);
2970 gfar_write(®s
->gaddr3
, 0x0);
2971 gfar_write(®s
->gaddr4
, 0x0);
2972 gfar_write(®s
->gaddr5
, 0x0);
2973 gfar_write(®s
->gaddr6
, 0x0);
2974 gfar_write(®s
->gaddr7
, 0x0);
2976 /* If we have extended hash tables, we need to
2977 * clear the exact match registers to prepare for
2979 if (priv
->extended_hash
) {
2980 em_num
= GFAR_EM_NUM
+ 1;
2981 gfar_clear_exact_match(dev
);
2988 if (netdev_mc_empty(dev
))
2991 /* Parse the list, and set the appropriate bits */
2992 netdev_for_each_mc_addr(ha
, dev
) {
2994 gfar_set_mac_for_addr(dev
, idx
, ha
->addr
);
2997 gfar_set_hash_for_addr(dev
, ha
->addr
);
3003 /* Clears each of the exact match registers to zero, so they
3004 * don't interfere with normal reception */
3005 static void gfar_clear_exact_match(struct net_device
*dev
)
3008 u8 zero_arr
[MAC_ADDR_LEN
] = {0,0,0,0,0,0};
3010 for(idx
= 1;idx
< GFAR_EM_NUM
+ 1;idx
++)
3011 gfar_set_mac_for_addr(dev
, idx
, (u8
*)zero_arr
);
3014 /* Set the appropriate hash bit for the given addr */
3015 /* The algorithm works like so:
3016 * 1) Take the Destination Address (ie the multicast address), and
3017 * do a CRC on it (little endian), and reverse the bits of the
3019 * 2) Use the 8 most significant bits as a hash into a 256-entry
3020 * table. The table is controlled through 8 32-bit registers:
3021 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
3022 * gaddr7. This means that the 3 most significant bits in the
3023 * hash index which gaddr register to use, and the 5 other bits
3024 * indicate which bit (assuming an IBM numbering scheme, which
3025 * for PowerPC (tm) is usually the case) in the register holds
3027 static void gfar_set_hash_for_addr(struct net_device
*dev
, u8
*addr
)
3030 struct gfar_private
*priv
= netdev_priv(dev
);
3031 u32 result
= ether_crc(MAC_ADDR_LEN
, addr
);
3032 int width
= priv
->hash_width
;
3033 u8 whichbit
= (result
>> (32 - width
)) & 0x1f;
3034 u8 whichreg
= result
>> (32 - width
+ 5);
3035 u32 value
= (1 << (31-whichbit
));
3037 tempval
= gfar_read(priv
->hash_regs
[whichreg
]);
3039 gfar_write(priv
->hash_regs
[whichreg
], tempval
);
3043 /* There are multiple MAC Address register pairs on some controllers
3044 * This function sets the numth pair to a given address
3046 static void gfar_set_mac_for_addr(struct net_device
*dev
, int num
, u8
*addr
)
3048 struct gfar_private
*priv
= netdev_priv(dev
);
3049 struct gfar __iomem
*regs
= priv
->gfargrp
[0].regs
;
3051 char tmpbuf
[MAC_ADDR_LEN
];
3053 u32 __iomem
*macptr
= ®s
->macstnaddr1
;
3057 /* Now copy it into the mac registers backwards, cuz */
3058 /* little endian is silly */
3059 for (idx
= 0; idx
< MAC_ADDR_LEN
; idx
++)
3060 tmpbuf
[MAC_ADDR_LEN
- 1 - idx
] = addr
[idx
];
3062 gfar_write(macptr
, *((u32
*) (tmpbuf
)));
3064 tempval
= *((u32
*) (tmpbuf
+ 4));
3066 gfar_write(macptr
+1, tempval
);
3069 /* GFAR error interrupt handler */
3070 static irqreturn_t
gfar_error(int irq
, void *grp_id
)
3072 struct gfar_priv_grp
*gfargrp
= grp_id
;
3073 struct gfar __iomem
*regs
= gfargrp
->regs
;
3074 struct gfar_private
*priv
= gfargrp
->priv
;
3075 struct net_device
*dev
= priv
->ndev
;
3077 /* Save ievent for future reference */
3078 u32 events
= gfar_read(®s
->ievent
);
3081 gfar_write(®s
->ievent
, events
& IEVENT_ERR_MASK
);
3083 /* Magic Packet is not an error. */
3084 if ((priv
->device_flags
& FSL_GIANFAR_DEV_HAS_MAGIC_PACKET
) &&
3085 (events
& IEVENT_MAG
))
3086 events
&= ~IEVENT_MAG
;
3089 if (netif_msg_rx_err(priv
) || netif_msg_tx_err(priv
))
3090 printk(KERN_DEBUG
"%s: error interrupt (ievent=0x%08x imask=0x%08x)\n",
3091 dev
->name
, events
, gfar_read(®s
->imask
));
3093 /* Update the error counters */
3094 if (events
& IEVENT_TXE
) {
3095 dev
->stats
.tx_errors
++;
3097 if (events
& IEVENT_LC
)
3098 dev
->stats
.tx_window_errors
++;
3099 if (events
& IEVENT_CRL
)
3100 dev
->stats
.tx_aborted_errors
++;
3101 if (events
& IEVENT_XFUN
) {
3102 unsigned long flags
;
3104 if (netif_msg_tx_err(priv
))
3105 printk(KERN_DEBUG
"%s: TX FIFO underrun, "
3106 "packet dropped.\n", dev
->name
);
3107 dev
->stats
.tx_dropped
++;
3108 priv
->extra_stats
.tx_underrun
++;
3110 local_irq_save(flags
);
3113 /* Reactivate the Tx Queues */
3114 gfar_write(®s
->tstat
, gfargrp
->tstat
);
3117 local_irq_restore(flags
);
3119 if (netif_msg_tx_err(priv
))
3120 printk(KERN_DEBUG
"%s: Transmit Error\n", dev
->name
);
3122 if (events
& IEVENT_BSY
) {
3123 dev
->stats
.rx_errors
++;
3124 priv
->extra_stats
.rx_bsy
++;
3126 gfar_receive(irq
, grp_id
);
3128 if (netif_msg_rx_err(priv
))
3129 printk(KERN_DEBUG
"%s: busy error (rstat: %x)\n",
3130 dev
->name
, gfar_read(®s
->rstat
));
3132 if (events
& IEVENT_BABR
) {
3133 dev
->stats
.rx_errors
++;
3134 priv
->extra_stats
.rx_babr
++;
3136 if (netif_msg_rx_err(priv
))
3137 printk(KERN_DEBUG
"%s: babbling RX error\n", dev
->name
);
3139 if (events
& IEVENT_EBERR
) {
3140 priv
->extra_stats
.eberr
++;
3141 if (netif_msg_rx_err(priv
))
3142 printk(KERN_DEBUG
"%s: bus error\n", dev
->name
);
3144 if ((events
& IEVENT_RXC
) && netif_msg_rx_status(priv
))
3145 printk(KERN_DEBUG
"%s: control frame\n", dev
->name
);
3147 if (events
& IEVENT_BABT
) {
3148 priv
->extra_stats
.tx_babt
++;
3149 if (netif_msg_tx_err(priv
))
3150 printk(KERN_DEBUG
"%s: babbling TX error\n", dev
->name
);
3155 static struct of_device_id gfar_match
[] =
3159 .compatible
= "gianfar",
3162 .compatible
= "fsl,etsec2",
3166 MODULE_DEVICE_TABLE(of
, gfar_match
);
3168 /* Structure for a device driver */
3169 static struct of_platform_driver gfar_driver
= {
3171 .name
= "fsl-gianfar",
3172 .owner
= THIS_MODULE
,
3174 .of_match_table
= gfar_match
,
3176 .probe
= gfar_probe
,
3177 .remove
= gfar_remove
,
3180 static int __init
gfar_init(void)
3182 return of_register_platform_driver(&gfar_driver
);
3185 static void __exit
gfar_exit(void)
3187 of_unregister_platform_driver(&gfar_driver
);
3190 module_init(gfar_init
);
3191 module_exit(gfar_exit
);