gianfar: Introduce logical group support.
[linux-2.6-block.git] / drivers / net / gianfar_ethtool.c
CommitLineData
1da177e4
LT
1/*
2 * drivers/net/gianfar_ethtool.c
3 *
4 * Gianfar Ethernet Driver
5 * Ethtool support for Gianfar Enet
6 * Based on e1000 ethtool support
7 *
8 * Author: Andy Fleming
4c8d3d99 9 * Maintainer: Kumar Gala
a12f801d 10 * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com>
1da177e4 11 *
a12f801d 12 * Copyright 2003-2006, 2008-2009 Freescale Semiconductor, Inc.
1da177e4 13 *
6aa20a22
JG
14 * This software may be used and distributed according to
15 * the terms of the GNU Public License, Version 2, incorporated herein
1da177e4
LT
16 * by reference.
17 */
18
1da177e4 19#include <linux/kernel.h>
1da177e4
LT
20#include <linux/string.h>
21#include <linux/errno.h>
22#include <linux/slab.h>
23#include <linux/interrupt.h>
24#include <linux/init.h>
25#include <linux/delay.h>
26#include <linux/netdevice.h>
27#include <linux/etherdevice.h>
28#include <linux/skbuff.h>
29#include <linux/spinlock.h>
30#include <linux/mm.h>
31
32#include <asm/io.h>
33#include <asm/irq.h>
34#include <asm/uaccess.h>
35#include <linux/module.h>
1da177e4
LT
36#include <linux/crc32.h>
37#include <asm/types.h>
1da177e4 38#include <linux/ethtool.h>
bb40dcbb
AF
39#include <linux/mii.h>
40#include <linux/phy.h>
1da177e4
LT
41
42#include "gianfar.h"
43
0bbaf069 44extern void gfar_start(struct net_device *dev);
a12f801d 45extern int gfar_clean_rx_ring(struct gfar_priv_rx_q *rx_queue, int rx_work_limit);
1da177e4 46
bb40dcbb
AF
47#define GFAR_MAX_COAL_USECS 0xffff
48#define GFAR_MAX_COAL_FRAMES 0xff
0bbaf069 49static void gfar_fill_stats(struct net_device *dev, struct ethtool_stats *dummy,
1da177e4 50 u64 * buf);
0bbaf069
KG
51static void gfar_gstrings(struct net_device *dev, u32 stringset, u8 * buf);
52static int gfar_gcoalesce(struct net_device *dev, struct ethtool_coalesce *cvals);
53static int gfar_scoalesce(struct net_device *dev, struct ethtool_coalesce *cvals);
54static void gfar_gringparam(struct net_device *dev, struct ethtool_ringparam *rvals);
55static int gfar_sringparam(struct net_device *dev, struct ethtool_ringparam *rvals);
56static void gfar_gdrvinfo(struct net_device *dev, struct ethtool_drvinfo *drvinfo);
1da177e4
LT
57
58static char stat_gstrings[][ETH_GSTRING_LEN] = {
59 "rx-dropped-by-kernel",
60 "rx-large-frame-errors",
61 "rx-short-frame-errors",
62 "rx-non-octet-errors",
63 "rx-crc-errors",
64 "rx-overrun-errors",
65 "rx-busy-errors",
66 "rx-babbling-errors",
67 "rx-truncated-frames",
68 "ethernet-bus-error",
69 "tx-babbling-errors",
70 "tx-underrun-errors",
71 "rx-skb-missing-errors",
72 "tx-timeout-errors",
73 "tx-rx-64-frames",
74 "tx-rx-65-127-frames",
75 "tx-rx-128-255-frames",
76 "tx-rx-256-511-frames",
77 "tx-rx-512-1023-frames",
78 "tx-rx-1024-1518-frames",
79 "tx-rx-1519-1522-good-vlan",
80 "rx-bytes",
81 "rx-packets",
82 "rx-fcs-errors",
83 "receive-multicast-packet",
84 "receive-broadcast-packet",
85 "rx-control-frame-packets",
86 "rx-pause-frame-packets",
87 "rx-unknown-op-code",
88 "rx-alignment-error",
89 "rx-frame-length-error",
90 "rx-code-error",
91 "rx-carrier-sense-error",
92 "rx-undersize-packets",
93 "rx-oversize-packets",
94 "rx-fragmented-frames",
95 "rx-jabber-frames",
96 "rx-dropped-frames",
97 "tx-byte-counter",
98 "tx-packets",
99 "tx-multicast-packets",
100 "tx-broadcast-packets",
101 "tx-pause-control-frames",
102 "tx-deferral-packets",
103 "tx-excessive-deferral-packets",
104 "tx-single-collision-packets",
105 "tx-multiple-collision-packets",
106 "tx-late-collision-packets",
107 "tx-excessive-collision-packets",
108 "tx-total-collision",
109 "reserved",
110 "tx-dropped-frames",
111 "tx-jabber-frames",
112 "tx-fcs-errors",
113 "tx-control-frames",
114 "tx-oversize-frames",
115 "tx-undersize-frames",
116 "tx-fragmented-frames",
117};
118
0bbaf069
KG
119/* Fill in a buffer with the strings which correspond to the
120 * stats */
121static void gfar_gstrings(struct net_device *dev, u32 stringset, u8 * buf)
122{
123 struct gfar_private *priv = netdev_priv(dev);
7f7f5316 124
b31a1d8b 125 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON)
0bbaf069
KG
126 memcpy(buf, stat_gstrings, GFAR_STATS_LEN * ETH_GSTRING_LEN);
127 else
128 memcpy(buf, stat_gstrings,
129 GFAR_EXTRA_STATS_LEN * ETH_GSTRING_LEN);
130}
131
1da177e4
LT
132/* Fill in an array of 64-bit statistics from various sources.
133 * This array will be appended to the end of the ethtool_stats
134 * structure, and returned to user space
135 */
0bbaf069 136static void gfar_fill_stats(struct net_device *dev, struct ethtool_stats *dummy, u64 * buf)
1da177e4
LT
137{
138 int i;
139 struct gfar_private *priv = netdev_priv(dev);
f4983704 140 struct gfar __iomem *regs = priv->gfargrp.regs;
1da177e4 141 u64 *extra = (u64 *) & priv->extra_stats;
1da177e4 142
b31a1d8b 143 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
f4983704 144 u32 __iomem *rmon = (u32 __iomem *) &regs->rmon;
0bbaf069 145 struct gfar_stats *stats = (struct gfar_stats *) buf;
1da177e4 146
0bbaf069 147 for (i = 0; i < GFAR_RMON_LEN; i++)
cc8c6e37 148 stats->rmon[i] = (u64) gfar_read(&rmon[i]);
1da177e4 149
0bbaf069
KG
150 for (i = 0; i < GFAR_EXTRA_STATS_LEN; i++)
151 stats->extra[i] = extra[i];
152 } else
153 for (i = 0; i < GFAR_EXTRA_STATS_LEN; i++)
154 buf[i] = extra[i];
1da177e4
LT
155}
156
b9f2c044 157static int gfar_sset_count(struct net_device *dev, int sset)
1da177e4 158{
1da177e4 159 struct gfar_private *priv = netdev_priv(dev);
1da177e4 160
b9f2c044
JG
161 switch (sset) {
162 case ETH_SS_STATS:
b31a1d8b 163 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON)
b9f2c044
JG
164 return GFAR_STATS_LEN;
165 else
166 return GFAR_EXTRA_STATS_LEN;
167 default:
168 return -EOPNOTSUPP;
169 }
1da177e4
LT
170}
171
1da177e4 172/* Fills in the drvinfo structure with some basic info */
0bbaf069 173static void gfar_gdrvinfo(struct net_device *dev, struct
1da177e4
LT
174 ethtool_drvinfo *drvinfo)
175{
176 strncpy(drvinfo->driver, DRV_NAME, GFAR_INFOSTR_LEN);
177 strncpy(drvinfo->version, gfar_driver_version, GFAR_INFOSTR_LEN);
178 strncpy(drvinfo->fw_version, "N/A", GFAR_INFOSTR_LEN);
179 strncpy(drvinfo->bus_info, "N/A", GFAR_INFOSTR_LEN);
1da177e4
LT
180 drvinfo->regdump_len = 0;
181 drvinfo->eedump_len = 0;
182}
183
bb40dcbb
AF
184
185static int gfar_ssettings(struct net_device *dev, struct ethtool_cmd *cmd)
186{
187 struct gfar_private *priv = netdev_priv(dev);
188 struct phy_device *phydev = priv->phydev;
189
190 if (NULL == phydev)
191 return -ENODEV;
192
193 return phy_ethtool_sset(phydev, cmd);
194}
195
196
1da177e4 197/* Return the current settings in the ethtool_cmd structure */
0bbaf069 198static int gfar_gsettings(struct net_device *dev, struct ethtool_cmd *cmd)
1da177e4
LT
199{
200 struct gfar_private *priv = netdev_priv(dev);
bb40dcbb 201 struct phy_device *phydev = priv->phydev;
a12f801d
SG
202 struct gfar_priv_rx_q *rx_queue = NULL;
203 struct gfar_priv_tx_q *tx_queue = NULL;
bb40dcbb
AF
204
205 if (NULL == phydev)
206 return -ENODEV;
a12f801d
SG
207 tx_queue = priv->tx_queue;
208 rx_queue = priv->rx_queue;
6aa20a22 209
a12f801d
SG
210 cmd->maxtxpkt = get_icft_value(tx_queue->txic);
211 cmd->maxrxpkt = get_icft_value(rx_queue->rxic);
1da177e4 212
bb40dcbb 213 return phy_ethtool_gset(phydev, cmd);
1da177e4
LT
214}
215
216/* Return the length of the register structure */
0bbaf069 217static int gfar_reglen(struct net_device *dev)
1da177e4
LT
218{
219 return sizeof (struct gfar);
220}
221
222/* Return a dump of the GFAR register space */
0bbaf069 223static void gfar_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *regbuf)
1da177e4
LT
224{
225 int i;
226 struct gfar_private *priv = netdev_priv(dev);
f4983704 227 u32 __iomem *theregs = (u32 __iomem *) priv->gfargrp.regs;
1da177e4
LT
228 u32 *buf = (u32 *) regbuf;
229
230 for (i = 0; i < sizeof (struct gfar) / sizeof (u32); i++)
cc8c6e37 231 buf[i] = gfar_read(&theregs[i]);
1da177e4
LT
232}
233
1da177e4
LT
234/* Convert microseconds to ethernet clock ticks, which changes
235 * depending on what speed the controller is running at */
236static unsigned int gfar_usecs2ticks(struct gfar_private *priv, unsigned int usecs)
237{
238 unsigned int count;
239
240 /* The timer is different, depending on the interface speed */
bb40dcbb
AF
241 switch (priv->phydev->speed) {
242 case SPEED_1000:
1da177e4
LT
243 count = GFAR_GBIT_TIME;
244 break;
bb40dcbb 245 case SPEED_100:
1da177e4
LT
246 count = GFAR_100_TIME;
247 break;
bb40dcbb 248 case SPEED_10:
1da177e4
LT
249 default:
250 count = GFAR_10_TIME;
251 break;
252 }
253
254 /* Make sure we return a number greater than 0
255 * if usecs > 0 */
256 return ((usecs * 1000 + count - 1) / count);
257}
258
259/* Convert ethernet clock ticks to microseconds */
260static unsigned int gfar_ticks2usecs(struct gfar_private *priv, unsigned int ticks)
261{
262 unsigned int count;
263
264 /* The timer is different, depending on the interface speed */
bb40dcbb
AF
265 switch (priv->phydev->speed) {
266 case SPEED_1000:
1da177e4
LT
267 count = GFAR_GBIT_TIME;
268 break;
bb40dcbb 269 case SPEED_100:
1da177e4
LT
270 count = GFAR_100_TIME;
271 break;
bb40dcbb 272 case SPEED_10:
1da177e4
LT
273 default:
274 count = GFAR_10_TIME;
275 break;
276 }
277
278 /* Make sure we return a number greater than 0 */
279 /* if ticks is > 0 */
280 return ((ticks * count) / 1000);
281}
282
283/* Get the coalescing parameters, and put them in the cvals
284 * structure. */
0bbaf069 285static int gfar_gcoalesce(struct net_device *dev, struct ethtool_coalesce *cvals)
1da177e4
LT
286{
287 struct gfar_private *priv = netdev_priv(dev);
a12f801d
SG
288 struct gfar_priv_rx_q *rx_queue = NULL;
289 struct gfar_priv_tx_q *tx_queue = NULL;
b46a8454
DH
290 unsigned long rxtime;
291 unsigned long rxcount;
292 unsigned long txtime;
293 unsigned long txcount;
6aa20a22 294
b31a1d8b 295 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_COALESCE))
0bbaf069 296 return -EOPNOTSUPP;
1da177e4 297
bb40dcbb
AF
298 if (NULL == priv->phydev)
299 return -ENODEV;
300
a12f801d
SG
301 rx_queue = priv->rx_queue;
302 tx_queue = priv->tx_queue;
303
304 rxtime = get_ictt_value(rx_queue->rxic);
305 rxcount = get_icft_value(rx_queue->rxic);
306 txtime = get_ictt_value(tx_queue->txic);
307 txcount = get_icft_value(tx_queue->txic);
b46a8454
DH
308 cvals->rx_coalesce_usecs = gfar_ticks2usecs(priv, rxtime);
309 cvals->rx_max_coalesced_frames = rxcount;
1da177e4 310
b46a8454
DH
311 cvals->tx_coalesce_usecs = gfar_ticks2usecs(priv, txtime);
312 cvals->tx_max_coalesced_frames = txcount;
1da177e4
LT
313
314 cvals->use_adaptive_rx_coalesce = 0;
315 cvals->use_adaptive_tx_coalesce = 0;
316
317 cvals->pkt_rate_low = 0;
318 cvals->rx_coalesce_usecs_low = 0;
319 cvals->rx_max_coalesced_frames_low = 0;
320 cvals->tx_coalesce_usecs_low = 0;
321 cvals->tx_max_coalesced_frames_low = 0;
322
323 /* When the packet rate is below pkt_rate_high but above
324 * pkt_rate_low (both measured in packets per second) the
325 * normal {rx,tx}_* coalescing parameters are used.
326 */
327
328 /* When the packet rate is (measured in packets per second)
329 * is above pkt_rate_high, the {rx,tx}_*_high parameters are
330 * used.
331 */
332 cvals->pkt_rate_high = 0;
333 cvals->rx_coalesce_usecs_high = 0;
334 cvals->rx_max_coalesced_frames_high = 0;
335 cvals->tx_coalesce_usecs_high = 0;
336 cvals->tx_max_coalesced_frames_high = 0;
337
338 /* How often to do adaptive coalescing packet rate sampling,
339 * measured in seconds. Must not be zero.
340 */
341 cvals->rate_sample_interval = 0;
342
343 return 0;
344}
345
346/* Change the coalescing values.
347 * Both cvals->*_usecs and cvals->*_frames have to be > 0
348 * in order for coalescing to be active
349 */
0bbaf069 350static int gfar_scoalesce(struct net_device *dev, struct ethtool_coalesce *cvals)
1da177e4
LT
351{
352 struct gfar_private *priv = netdev_priv(dev);
f4983704 353 struct gfar __iomem *regs = priv->gfargrp.regs;
a12f801d
SG
354 struct gfar_priv_tx_q *tx_queue = NULL;
355 struct gfar_priv_rx_q *rx_queue = NULL;
1da177e4 356
b31a1d8b 357 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_COALESCE))
0bbaf069
KG
358 return -EOPNOTSUPP;
359
a12f801d
SG
360 tx_queue = priv->tx_queue;
361 rx_queue = priv->rx_queue;
362
1da177e4
LT
363 /* Set up rx coalescing */
364 if ((cvals->rx_coalesce_usecs == 0) ||
365 (cvals->rx_max_coalesced_frames == 0))
a12f801d 366 rx_queue->rxcoalescing = 0;
1da177e4 367 else
a12f801d 368 rx_queue->rxcoalescing = 1;
1da177e4 369
bb40dcbb
AF
370 if (NULL == priv->phydev)
371 return -ENODEV;
372
373 /* Check the bounds of the values */
374 if (cvals->rx_coalesce_usecs > GFAR_MAX_COAL_USECS) {
375 pr_info("Coalescing is limited to %d microseconds\n",
376 GFAR_MAX_COAL_USECS);
377 return -EINVAL;
378 }
379
380 if (cvals->rx_max_coalesced_frames > GFAR_MAX_COAL_FRAMES) {
381 pr_info("Coalescing is limited to %d frames\n",
382 GFAR_MAX_COAL_FRAMES);
383 return -EINVAL;
384 }
385
a12f801d 386 rx_queue->rxic = mk_ic_value(cvals->rx_max_coalesced_frames,
accff95c 387 gfar_usecs2ticks(priv, cvals->rx_coalesce_usecs));
1da177e4
LT
388
389 /* Set up tx coalescing */
390 if ((cvals->tx_coalesce_usecs == 0) ||
391 (cvals->tx_max_coalesced_frames == 0))
a12f801d 392 tx_queue->txcoalescing = 0;
1da177e4 393 else
a12f801d 394 tx_queue->txcoalescing = 1;
1da177e4 395
bb40dcbb
AF
396 /* Check the bounds of the values */
397 if (cvals->tx_coalesce_usecs > GFAR_MAX_COAL_USECS) {
398 pr_info("Coalescing is limited to %d microseconds\n",
399 GFAR_MAX_COAL_USECS);
400 return -EINVAL;
401 }
402
403 if (cvals->tx_max_coalesced_frames > GFAR_MAX_COAL_FRAMES) {
404 pr_info("Coalescing is limited to %d frames\n",
405 GFAR_MAX_COAL_FRAMES);
406 return -EINVAL;
407 }
408
a12f801d 409 tx_queue->txic = mk_ic_value(cvals->tx_max_coalesced_frames,
accff95c 410 gfar_usecs2ticks(priv, cvals->tx_coalesce_usecs));
1da177e4 411
f4983704 412 gfar_write(&regs->rxic, 0);
a12f801d 413 if (rx_queue->rxcoalescing)
f4983704 414 gfar_write(&regs->rxic, rx_queue->rxic);
1da177e4 415
f4983704 416 gfar_write(&regs->txic, 0);
a12f801d 417 if (tx_queue->txcoalescing)
f4983704 418 gfar_write(&regs->txic, tx_queue->txic);
1da177e4
LT
419
420 return 0;
421}
422
423/* Fills in rvals with the current ring parameters. Currently,
424 * rx, rx_mini, and rx_jumbo rings are the same size, as mini and
425 * jumbo are ignored by the driver */
0bbaf069 426static void gfar_gringparam(struct net_device *dev, struct ethtool_ringparam *rvals)
1da177e4
LT
427{
428 struct gfar_private *priv = netdev_priv(dev);
a12f801d
SG
429 struct gfar_priv_tx_q *tx_queue = NULL;
430 struct gfar_priv_rx_q *rx_queue = NULL;
431
432 tx_queue = priv->tx_queue;
433 rx_queue = priv->rx_queue;
1da177e4
LT
434
435 rvals->rx_max_pending = GFAR_RX_MAX_RING_SIZE;
436 rvals->rx_mini_max_pending = GFAR_RX_MAX_RING_SIZE;
437 rvals->rx_jumbo_max_pending = GFAR_RX_MAX_RING_SIZE;
438 rvals->tx_max_pending = GFAR_TX_MAX_RING_SIZE;
439
440 /* Values changeable by the user. The valid values are
441 * in the range 1 to the "*_max_pending" counterpart above.
442 */
a12f801d
SG
443 rvals->rx_pending = rx_queue->rx_ring_size;
444 rvals->rx_mini_pending = rx_queue->rx_ring_size;
445 rvals->rx_jumbo_pending = rx_queue->rx_ring_size;
446 rvals->tx_pending = tx_queue->tx_ring_size;
1da177e4
LT
447}
448
449/* Change the current ring parameters, stopping the controller if
450 * necessary so that we don't mess things up while we're in
451 * motion. We wait for the ring to be clean before reallocating
452 * the rings. */
0bbaf069 453static int gfar_sringparam(struct net_device *dev, struct ethtool_ringparam *rvals)
1da177e4 454{
1da177e4 455 struct gfar_private *priv = netdev_priv(dev);
a12f801d
SG
456 struct gfar_priv_tx_q *tx_queue = NULL;
457 struct gfar_priv_rx_q *rx_queue = NULL;
1da177e4
LT
458 int err = 0;
459
460 if (rvals->rx_pending > GFAR_RX_MAX_RING_SIZE)
461 return -EINVAL;
462
463 if (!is_power_of_2(rvals->rx_pending)) {
464 printk("%s: Ring sizes must be a power of 2\n",
465 dev->name);
466 return -EINVAL;
467 }
468
469 if (rvals->tx_pending > GFAR_TX_MAX_RING_SIZE)
470 return -EINVAL;
471
472 if (!is_power_of_2(rvals->tx_pending)) {
473 printk("%s: Ring sizes must be a power of 2\n",
474 dev->name);
475 return -EINVAL;
476 }
477
a12f801d
SG
478 tx_queue = priv->tx_queue;
479 rx_queue = priv->rx_queue;
480
0bbaf069
KG
481 if (dev->flags & IFF_UP) {
482 unsigned long flags;
1da177e4 483
0bbaf069
KG
484 /* Halt TX and RX, and process the frames which
485 * have already been received */
a12f801d
SG
486 spin_lock_irqsave(&tx_queue->txlock, flags);
487 spin_lock(&rx_queue->rxlock);
fef6108d 488
0bbaf069 489 gfar_halt(dev);
fef6108d 490
a12f801d
SG
491 spin_unlock(&rx_queue->rxlock);
492 spin_unlock_irqrestore(&tx_queue->txlock, flags);
1da177e4 493
a12f801d 494 gfar_clean_rx_ring(rx_queue, rx_queue->rx_ring_size);
12dea57b 495
0bbaf069
KG
496 /* Now we take down the rings to rebuild them */
497 stop_gfar(dev);
498 }
1da177e4 499
0bbaf069 500 /* Change the size */
a12f801d
SG
501 rx_queue->rx_ring_size = rvals->rx_pending;
502 tx_queue->tx_ring_size = rvals->tx_pending;
503 tx_queue->num_txbdfree = tx_queue->tx_ring_size;
1da177e4 504
0bbaf069 505 /* Rebuild the rings with the new size */
12dea57b 506 if (dev->flags & IFF_UP) {
0bbaf069 507 err = startup_gfar(dev);
12dea57b
DH
508 netif_wake_queue(dev);
509 }
0bbaf069
KG
510 return err;
511}
1da177e4 512
0bbaf069
KG
513static int gfar_set_rx_csum(struct net_device *dev, uint32_t data)
514{
515 struct gfar_private *priv = netdev_priv(dev);
a12f801d
SG
516 struct gfar_priv_rx_q *rx_queue = NULL;
517 struct gfar_priv_tx_q *tx_queue = NULL;
d87eb127 518 unsigned long flags;
0bbaf069 519 int err = 0;
1da177e4 520
b31a1d8b 521 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM))
0bbaf069
KG
522 return -EOPNOTSUPP;
523
a12f801d
SG
524 tx_queue = priv->tx_queue;
525 rx_queue = priv->rx_queue;
526
0bbaf069 527 if (dev->flags & IFF_UP) {
0bbaf069
KG
528 /* Halt TX and RX, and process the frames which
529 * have already been received */
a12f801d
SG
530 spin_lock_irqsave(&tx_queue->txlock, flags);
531 spin_lock(&rx_queue->rxlock);
fef6108d 532
0bbaf069 533 gfar_halt(dev);
fef6108d 534
a12f801d
SG
535 spin_unlock(&rx_queue->rxlock);
536 spin_unlock_irqrestore(&tx_queue->txlock, flags);
0bbaf069 537
a12f801d 538 gfar_clean_rx_ring(rx_queue, rx_queue->rx_ring_size);
12dea57b 539
0bbaf069 540 /* Now we take down the rings to rebuild them */
1da177e4
LT
541 stop_gfar(dev);
542 }
543
d87eb127 544 spin_lock_irqsave(&priv->bflock, flags);
0bbaf069 545 priv->rx_csum_enable = data;
d87eb127 546 spin_unlock_irqrestore(&priv->bflock, flags);
1da177e4 547
12dea57b 548 if (dev->flags & IFF_UP) {
1da177e4 549 err = startup_gfar(dev);
12dea57b
DH
550 netif_wake_queue(dev);
551 }
1da177e4
LT
552 return err;
553}
554
0bbaf069
KG
555static uint32_t gfar_get_rx_csum(struct net_device *dev)
556{
557 struct gfar_private *priv = netdev_priv(dev);
558
b31a1d8b 559 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM))
0bbaf069
KG
560 return 0;
561
562 return priv->rx_csum_enable;
563}
564
565static int gfar_set_tx_csum(struct net_device *dev, uint32_t data)
566{
0bbaf069
KG
567 struct gfar_private *priv = netdev_priv(dev);
568
b31a1d8b 569 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM))
0bbaf069
KG
570 return -EOPNOTSUPP;
571
12dea57b 572 netif_tx_lock_bh(dev);
0bbaf069
KG
573
574 if (data)
575 dev->features |= NETIF_F_IP_CSUM;
576 else
577 dev->features &= ~NETIF_F_IP_CSUM;
578
12dea57b 579 netif_tx_unlock_bh(dev);
0bbaf069
KG
580
581 return 0;
582}
583
584static uint32_t gfar_get_tx_csum(struct net_device *dev)
585{
586 struct gfar_private *priv = netdev_priv(dev);
587
b31a1d8b 588 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM))
0bbaf069
KG
589 return 0;
590
591 return (dev->features & NETIF_F_IP_CSUM) != 0;
592}
593
594static uint32_t gfar_get_msglevel(struct net_device *dev)
6aa20a22 595{
0bbaf069
KG
596 struct gfar_private *priv = netdev_priv(dev);
597 return priv->msg_enable;
6aa20a22
JG
598}
599
0bbaf069 600static void gfar_set_msglevel(struct net_device *dev, uint32_t data)
6aa20a22 601{
0bbaf069
KG
602 struct gfar_private *priv = netdev_priv(dev);
603 priv->msg_enable = data;
604}
605
d87eb127
SW
606#ifdef CONFIG_PM
607static void gfar_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
608{
609 struct gfar_private *priv = netdev_priv(dev);
610
b31a1d8b 611 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) {
d87eb127
SW
612 wol->supported = WAKE_MAGIC;
613 wol->wolopts = priv->wol_en ? WAKE_MAGIC : 0;
614 } else {
615 wol->supported = wol->wolopts = 0;
616 }
617}
618
619static int gfar_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
620{
621 struct gfar_private *priv = netdev_priv(dev);
622 unsigned long flags;
623
b31a1d8b 624 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
d87eb127
SW
625 wol->wolopts != 0)
626 return -EINVAL;
627
628 if (wol->wolopts & ~WAKE_MAGIC)
629 return -EINVAL;
630
631 spin_lock_irqsave(&priv->bflock, flags);
632 priv->wol_en = wol->wolopts & WAKE_MAGIC ? 1 : 0;
2884e5cc 633 device_set_wakeup_enable(&dev->dev, priv->wol_en);
d87eb127
SW
634 spin_unlock_irqrestore(&priv->bflock, flags);
635
636 return 0;
637}
638#endif
0bbaf069 639
7282d491 640const struct ethtool_ops gfar_ethtool_ops = {
1da177e4 641 .get_settings = gfar_gsettings,
bb40dcbb 642 .set_settings = gfar_ssettings,
1da177e4
LT
643 .get_drvinfo = gfar_gdrvinfo,
644 .get_regs_len = gfar_reglen,
645 .get_regs = gfar_get_regs,
646 .get_link = ethtool_op_get_link,
647 .get_coalesce = gfar_gcoalesce,
648 .set_coalesce = gfar_scoalesce,
649 .get_ringparam = gfar_gringparam,
650 .set_ringparam = gfar_sringparam,
651 .get_strings = gfar_gstrings,
b9f2c044 652 .get_sset_count = gfar_sset_count,
1da177e4 653 .get_ethtool_stats = gfar_fill_stats,
0bbaf069
KG
654 .get_rx_csum = gfar_get_rx_csum,
655 .get_tx_csum = gfar_get_tx_csum,
656 .set_rx_csum = gfar_set_rx_csum,
657 .set_tx_csum = gfar_set_tx_csum,
4669bc90 658 .set_sg = ethtool_op_set_sg,
0bbaf069
KG
659 .get_msglevel = gfar_get_msglevel,
660 .set_msglevel = gfar_set_msglevel,
d87eb127
SW
661#ifdef CONFIG_PM
662 .get_wol = gfar_get_wol,
663 .set_wol = gfar_set_wol,
664#endif
1da177e4 665};