blob: c111c532f7b3c7976316140705c8144f26bd4c5c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Kumar Gala4c8d3d92005-11-13 16:06:30 -08009 * Maintainer: Kumar Gala
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * Copyright (c) 2003,2004 Freescale Semiconductor, Inc.
12 *
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013 * This software may be used and distributed according to
14 * the terms of the GNU Public License, Version 2, incorporated herein
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * by reference.
16 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/string.h>
20#include <linux/errno.h>
21#include <linux/slab.h>
22#include <linux/interrupt.h>
23#include <linux/init.h>
24#include <linux/delay.h>
25#include <linux/netdevice.h>
26#include <linux/etherdevice.h>
27#include <linux/skbuff.h>
28#include <linux/spinlock.h>
29#include <linux/mm.h>
30
31#include <asm/io.h>
32#include <asm/irq.h>
33#include <asm/uaccess.h>
34#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/crc32.h>
36#include <asm/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/ethtool.h>
Andy Flemingbb40dcb2005-09-23 22:54:21 -040038#include <linux/mii.h>
39#include <linux/phy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include "gianfar.h"
42
Kumar Gala0bbaf062005-06-20 10:54:21 -050043extern void gfar_start(struct net_device *dev);
44extern int gfar_clean_rx_ring(struct net_device *dev, int rx_work_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Andy Flemingbb40dcb2005-09-23 22:54:21 -040046#define GFAR_MAX_COAL_USECS 0xffff
47#define GFAR_MAX_COAL_FRAMES 0xff
Kumar Gala0bbaf062005-06-20 10:54:21 -050048static void gfar_fill_stats(struct net_device *dev, struct ethtool_stats *dummy,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 u64 * buf);
Kumar Gala0bbaf062005-06-20 10:54:21 -050050static void gfar_gstrings(struct net_device *dev, u32 stringset, u8 * buf);
51static int gfar_gcoalesce(struct net_device *dev, struct ethtool_coalesce *cvals);
52static int gfar_scoalesce(struct net_device *dev, struct ethtool_coalesce *cvals);
53static void gfar_gringparam(struct net_device *dev, struct ethtool_ringparam *rvals);
54static int gfar_sringparam(struct net_device *dev, struct ethtool_ringparam *rvals);
55static void gfar_gdrvinfo(struct net_device *dev, struct ethtool_drvinfo *drvinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57static char stat_gstrings[][ETH_GSTRING_LEN] = {
58 "rx-dropped-by-kernel",
59 "rx-large-frame-errors",
60 "rx-short-frame-errors",
61 "rx-non-octet-errors",
62 "rx-crc-errors",
63 "rx-overrun-errors",
64 "rx-busy-errors",
65 "rx-babbling-errors",
66 "rx-truncated-frames",
67 "ethernet-bus-error",
68 "tx-babbling-errors",
69 "tx-underrun-errors",
70 "rx-skb-missing-errors",
71 "tx-timeout-errors",
72 "tx-rx-64-frames",
73 "tx-rx-65-127-frames",
74 "tx-rx-128-255-frames",
75 "tx-rx-256-511-frames",
76 "tx-rx-512-1023-frames",
77 "tx-rx-1024-1518-frames",
78 "tx-rx-1519-1522-good-vlan",
79 "rx-bytes",
80 "rx-packets",
81 "rx-fcs-errors",
82 "receive-multicast-packet",
83 "receive-broadcast-packet",
84 "rx-control-frame-packets",
85 "rx-pause-frame-packets",
86 "rx-unknown-op-code",
87 "rx-alignment-error",
88 "rx-frame-length-error",
89 "rx-code-error",
90 "rx-carrier-sense-error",
91 "rx-undersize-packets",
92 "rx-oversize-packets",
93 "rx-fragmented-frames",
94 "rx-jabber-frames",
95 "rx-dropped-frames",
96 "tx-byte-counter",
97 "tx-packets",
98 "tx-multicast-packets",
99 "tx-broadcast-packets",
100 "tx-pause-control-frames",
101 "tx-deferral-packets",
102 "tx-excessive-deferral-packets",
103 "tx-single-collision-packets",
104 "tx-multiple-collision-packets",
105 "tx-late-collision-packets",
106 "tx-excessive-collision-packets",
107 "tx-total-collision",
108 "reserved",
109 "tx-dropped-frames",
110 "tx-jabber-frames",
111 "tx-fcs-errors",
112 "tx-control-frames",
113 "tx-oversize-frames",
114 "tx-undersize-frames",
115 "tx-fragmented-frames",
116};
117
Kumar Gala0bbaf062005-06-20 10:54:21 -0500118/* Fill in a buffer with the strings which correspond to the
119 * stats */
120static void gfar_gstrings(struct net_device *dev, u32 stringset, u8 * buf)
121{
122 struct gfar_private *priv = netdev_priv(dev);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600123
Andy Flemingb31a1d82008-12-16 15:29:15 -0800124 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500125 memcpy(buf, stat_gstrings, GFAR_STATS_LEN * ETH_GSTRING_LEN);
126 else
127 memcpy(buf, stat_gstrings,
128 GFAR_EXTRA_STATS_LEN * ETH_GSTRING_LEN);
129}
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131/* Fill in an array of 64-bit statistics from various sources.
132 * This array will be appended to the end of the ethtool_stats
133 * structure, and returned to user space
134 */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500135static void gfar_fill_stats(struct net_device *dev, struct ethtool_stats *dummy, u64 * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 int i;
138 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 u64 *extra = (u64 *) & priv->extra_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Andy Flemingb31a1d82008-12-16 15:29:15 -0800141 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
Kumar Galacc8c6e32006-02-01 15:18:03 -0600142 u32 __iomem *rmon = (u32 __iomem *) & priv->regs->rmon;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500143 struct gfar_stats *stats = (struct gfar_stats *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Kumar Gala0bbaf062005-06-20 10:54:21 -0500145 for (i = 0; i < GFAR_RMON_LEN; i++)
Kumar Galacc8c6e32006-02-01 15:18:03 -0600146 stats->rmon[i] = (u64) gfar_read(&rmon[i]);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500147
148 for (i = 0; i < GFAR_EXTRA_STATS_LEN; i++)
149 stats->extra[i] = extra[i];
150 } else
151 for (i = 0; i < GFAR_EXTRA_STATS_LEN; i++)
152 buf[i] = extra[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700155static int gfar_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700159 switch (sset) {
160 case ETH_SS_STATS:
Andy Flemingb31a1d82008-12-16 15:29:15 -0800161 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON)
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700162 return GFAR_STATS_LEN;
163 else
164 return GFAR_EXTRA_STATS_LEN;
165 default:
166 return -EOPNOTSUPP;
167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/* Fills in the drvinfo structure with some basic info */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500171static void gfar_gdrvinfo(struct net_device *dev, struct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 ethtool_drvinfo *drvinfo)
173{
174 strncpy(drvinfo->driver, DRV_NAME, GFAR_INFOSTR_LEN);
175 strncpy(drvinfo->version, gfar_driver_version, GFAR_INFOSTR_LEN);
176 strncpy(drvinfo->fw_version, "N/A", GFAR_INFOSTR_LEN);
177 strncpy(drvinfo->bus_info, "N/A", GFAR_INFOSTR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 drvinfo->regdump_len = 0;
179 drvinfo->eedump_len = 0;
180}
181
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400182
183static int gfar_ssettings(struct net_device *dev, struct ethtool_cmd *cmd)
184{
185 struct gfar_private *priv = netdev_priv(dev);
186 struct phy_device *phydev = priv->phydev;
187
188 if (NULL == phydev)
189 return -ENODEV;
190
191 return phy_ethtool_sset(phydev, cmd);
192}
193
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/* Return the current settings in the ethtool_cmd structure */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500196static int gfar_gsettings(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400199 struct phy_device *phydev = priv->phydev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400201 if (NULL == phydev)
202 return -ENODEV;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400203
Dai Harukib46a8452008-12-16 15:29:52 -0800204 cmd->maxtxpkt = get_icft_value(priv->txic);
205 cmd->maxrxpkt = get_icft_value(priv->rxic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400207 return phy_ethtool_gset(phydev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
210/* Return the length of the register structure */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500211static int gfar_reglen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 return sizeof (struct gfar);
214}
215
216/* Return a dump of the GFAR register space */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500217static void gfar_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *regbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 int i;
220 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600221 u32 __iomem *theregs = (u32 __iomem *) priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 u32 *buf = (u32 *) regbuf;
223
224 for (i = 0; i < sizeof (struct gfar) / sizeof (u32); i++)
Kumar Galacc8c6e32006-02-01 15:18:03 -0600225 buf[i] = gfar_read(&theregs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/* Convert microseconds to ethernet clock ticks, which changes
229 * depending on what speed the controller is running at */
230static unsigned int gfar_usecs2ticks(struct gfar_private *priv, unsigned int usecs)
231{
232 unsigned int count;
233
234 /* The timer is different, depending on the interface speed */
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400235 switch (priv->phydev->speed) {
236 case SPEED_1000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 count = GFAR_GBIT_TIME;
238 break;
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400239 case SPEED_100:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 count = GFAR_100_TIME;
241 break;
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400242 case SPEED_10:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 default:
244 count = GFAR_10_TIME;
245 break;
246 }
247
248 /* Make sure we return a number greater than 0
249 * if usecs > 0 */
250 return ((usecs * 1000 + count - 1) / count);
251}
252
253/* Convert ethernet clock ticks to microseconds */
254static unsigned int gfar_ticks2usecs(struct gfar_private *priv, unsigned int ticks)
255{
256 unsigned int count;
257
258 /* The timer is different, depending on the interface speed */
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400259 switch (priv->phydev->speed) {
260 case SPEED_1000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 count = GFAR_GBIT_TIME;
262 break;
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400263 case SPEED_100:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 count = GFAR_100_TIME;
265 break;
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400266 case SPEED_10:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 default:
268 count = GFAR_10_TIME;
269 break;
270 }
271
272 /* Make sure we return a number greater than 0 */
273 /* if ticks is > 0 */
274 return ((ticks * count) / 1000);
275}
276
277/* Get the coalescing parameters, and put them in the cvals
278 * structure. */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500279static int gfar_gcoalesce(struct net_device *dev, struct ethtool_coalesce *cvals)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 struct gfar_private *priv = netdev_priv(dev);
Dai Harukib46a8452008-12-16 15:29:52 -0800282 unsigned long rxtime;
283 unsigned long rxcount;
284 unsigned long txtime;
285 unsigned long txcount;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400286
Andy Flemingb31a1d82008-12-16 15:29:15 -0800287 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_COALESCE))
Kumar Gala0bbaf062005-06-20 10:54:21 -0500288 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400290 if (NULL == priv->phydev)
291 return -ENODEV;
292
Dai Harukib46a8452008-12-16 15:29:52 -0800293 rxtime = get_ictt_value(priv->rxic);
294 rxcount = get_icft_value(priv->rxic);
295 txtime = get_ictt_value(priv->txic);
296 txcount = get_icft_value(priv->txic);;
297 cvals->rx_coalesce_usecs = gfar_ticks2usecs(priv, rxtime);
298 cvals->rx_max_coalesced_frames = rxcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Dai Harukib46a8452008-12-16 15:29:52 -0800300 cvals->tx_coalesce_usecs = gfar_ticks2usecs(priv, txtime);
301 cvals->tx_max_coalesced_frames = txcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 cvals->use_adaptive_rx_coalesce = 0;
304 cvals->use_adaptive_tx_coalesce = 0;
305
306 cvals->pkt_rate_low = 0;
307 cvals->rx_coalesce_usecs_low = 0;
308 cvals->rx_max_coalesced_frames_low = 0;
309 cvals->tx_coalesce_usecs_low = 0;
310 cvals->tx_max_coalesced_frames_low = 0;
311
312 /* When the packet rate is below pkt_rate_high but above
313 * pkt_rate_low (both measured in packets per second) the
314 * normal {rx,tx}_* coalescing parameters are used.
315 */
316
317 /* When the packet rate is (measured in packets per second)
318 * is above pkt_rate_high, the {rx,tx}_*_high parameters are
319 * used.
320 */
321 cvals->pkt_rate_high = 0;
322 cvals->rx_coalesce_usecs_high = 0;
323 cvals->rx_max_coalesced_frames_high = 0;
324 cvals->tx_coalesce_usecs_high = 0;
325 cvals->tx_max_coalesced_frames_high = 0;
326
327 /* How often to do adaptive coalescing packet rate sampling,
328 * measured in seconds. Must not be zero.
329 */
330 cvals->rate_sample_interval = 0;
331
332 return 0;
333}
334
335/* Change the coalescing values.
336 * Both cvals->*_usecs and cvals->*_frames have to be > 0
337 * in order for coalescing to be active
338 */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500339static int gfar_scoalesce(struct net_device *dev, struct ethtool_coalesce *cvals)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 struct gfar_private *priv = netdev_priv(dev);
342
Andy Flemingb31a1d82008-12-16 15:29:15 -0800343 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_COALESCE))
Kumar Gala0bbaf062005-06-20 10:54:21 -0500344 return -EOPNOTSUPP;
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 /* Set up rx coalescing */
347 if ((cvals->rx_coalesce_usecs == 0) ||
348 (cvals->rx_max_coalesced_frames == 0))
349 priv->rxcoalescing = 0;
350 else
351 priv->rxcoalescing = 1;
352
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400353 if (NULL == priv->phydev)
354 return -ENODEV;
355
356 /* Check the bounds of the values */
357 if (cvals->rx_coalesce_usecs > GFAR_MAX_COAL_USECS) {
358 pr_info("Coalescing is limited to %d microseconds\n",
359 GFAR_MAX_COAL_USECS);
360 return -EINVAL;
361 }
362
363 if (cvals->rx_max_coalesced_frames > GFAR_MAX_COAL_FRAMES) {
364 pr_info("Coalescing is limited to %d frames\n",
365 GFAR_MAX_COAL_FRAMES);
366 return -EINVAL;
367 }
368
Dai Harukib46a8452008-12-16 15:29:52 -0800369 priv->rxic = mk_ic_value(
370 gfar_usecs2ticks(priv, cvals->rx_coalesce_usecs),
371 cvals->rx_max_coalesced_frames);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 /* Set up tx coalescing */
374 if ((cvals->tx_coalesce_usecs == 0) ||
375 (cvals->tx_max_coalesced_frames == 0))
376 priv->txcoalescing = 0;
377 else
378 priv->txcoalescing = 1;
379
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400380 /* Check the bounds of the values */
381 if (cvals->tx_coalesce_usecs > GFAR_MAX_COAL_USECS) {
382 pr_info("Coalescing is limited to %d microseconds\n",
383 GFAR_MAX_COAL_USECS);
384 return -EINVAL;
385 }
386
387 if (cvals->tx_max_coalesced_frames > GFAR_MAX_COAL_FRAMES) {
388 pr_info("Coalescing is limited to %d frames\n",
389 GFAR_MAX_COAL_FRAMES);
390 return -EINVAL;
391 }
392
Dai Harukib46a8452008-12-16 15:29:52 -0800393 priv->txic = mk_ic_value(
394 gfar_usecs2ticks(priv, cvals->tx_coalesce_usecs),
395 cvals->tx_max_coalesced_frames);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Dai Harukib46a8452008-12-16 15:29:52 -0800397 gfar_write(&priv->regs->rxic, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (priv->rxcoalescing)
Dai Harukib46a8452008-12-16 15:29:52 -0800399 gfar_write(&priv->regs->rxic, priv->rxic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Dai Harukib46a8452008-12-16 15:29:52 -0800401 gfar_write(&priv->regs->txic, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (priv->txcoalescing)
Dai Harukib46a8452008-12-16 15:29:52 -0800403 gfar_write(&priv->regs->txic, priv->txic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 return 0;
406}
407
408/* Fills in rvals with the current ring parameters. Currently,
409 * rx, rx_mini, and rx_jumbo rings are the same size, as mini and
410 * jumbo are ignored by the driver */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500411static void gfar_gringparam(struct net_device *dev, struct ethtool_ringparam *rvals)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 struct gfar_private *priv = netdev_priv(dev);
414
415 rvals->rx_max_pending = GFAR_RX_MAX_RING_SIZE;
416 rvals->rx_mini_max_pending = GFAR_RX_MAX_RING_SIZE;
417 rvals->rx_jumbo_max_pending = GFAR_RX_MAX_RING_SIZE;
418 rvals->tx_max_pending = GFAR_TX_MAX_RING_SIZE;
419
420 /* Values changeable by the user. The valid values are
421 * in the range 1 to the "*_max_pending" counterpart above.
422 */
423 rvals->rx_pending = priv->rx_ring_size;
424 rvals->rx_mini_pending = priv->rx_ring_size;
425 rvals->rx_jumbo_pending = priv->rx_ring_size;
426 rvals->tx_pending = priv->tx_ring_size;
427}
428
429/* Change the current ring parameters, stopping the controller if
430 * necessary so that we don't mess things up while we're in
431 * motion. We wait for the ring to be clean before reallocating
432 * the rings. */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500433static int gfar_sringparam(struct net_device *dev, struct ethtool_ringparam *rvals)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 struct gfar_private *priv = netdev_priv(dev);
436 int err = 0;
437
438 if (rvals->rx_pending > GFAR_RX_MAX_RING_SIZE)
439 return -EINVAL;
440
441 if (!is_power_of_2(rvals->rx_pending)) {
442 printk("%s: Ring sizes must be a power of 2\n",
443 dev->name);
444 return -EINVAL;
445 }
446
447 if (rvals->tx_pending > GFAR_TX_MAX_RING_SIZE)
448 return -EINVAL;
449
450 if (!is_power_of_2(rvals->tx_pending)) {
451 printk("%s: Ring sizes must be a power of 2\n",
452 dev->name);
453 return -EINVAL;
454 }
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (dev->flags & IFF_UP) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500457 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Kumar Gala0bbaf062005-06-20 10:54:21 -0500459 /* Halt TX and RX, and process the frames which
460 * have already been received */
Andy Flemingfef61082006-04-20 16:44:29 -0500461 spin_lock_irqsave(&priv->txlock, flags);
462 spin_lock(&priv->rxlock);
463
Kumar Gala0bbaf062005-06-20 10:54:21 -0500464 gfar_halt(dev);
465 gfar_clean_rx_ring(dev, priv->rx_ring_size);
Andy Flemingfef61082006-04-20 16:44:29 -0500466
467 spin_unlock(&priv->rxlock);
468 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Kumar Gala0bbaf062005-06-20 10:54:21 -0500470 /* Now we take down the rings to rebuild them */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 stop_gfar(dev);
472 }
473
Kumar Gala0bbaf062005-06-20 10:54:21 -0500474 /* Change the size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 priv->rx_ring_size = rvals->rx_pending;
476 priv->tx_ring_size = rvals->tx_pending;
477
Kumar Gala0bbaf062005-06-20 10:54:21 -0500478 /* Rebuild the rings with the new size */
479 if (dev->flags & IFF_UP)
480 err = startup_gfar(dev);
481
482 return err;
483}
484
485static int gfar_set_rx_csum(struct net_device *dev, uint32_t data)
486{
487 struct gfar_private *priv = netdev_priv(dev);
Scott Woodd87eb122008-07-11 18:04:45 -0500488 unsigned long flags;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500489 int err = 0;
490
Andy Flemingb31a1d82008-12-16 15:29:15 -0800491 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM))
Kumar Gala0bbaf062005-06-20 10:54:21 -0500492 return -EOPNOTSUPP;
493
494 if (dev->flags & IFF_UP) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500495 /* Halt TX and RX, and process the frames which
496 * have already been received */
Andy Flemingfef61082006-04-20 16:44:29 -0500497 spin_lock_irqsave(&priv->txlock, flags);
498 spin_lock(&priv->rxlock);
499
Kumar Gala0bbaf062005-06-20 10:54:21 -0500500 gfar_halt(dev);
501 gfar_clean_rx_ring(dev, priv->rx_ring_size);
Andy Flemingfef61082006-04-20 16:44:29 -0500502
503 spin_unlock(&priv->rxlock);
504 spin_unlock_irqrestore(&priv->txlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500505
506 /* Now we take down the rings to rebuild them */
507 stop_gfar(dev);
508 }
509
Scott Woodd87eb122008-07-11 18:04:45 -0500510 spin_lock_irqsave(&priv->bflock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500511 priv->rx_csum_enable = data;
Scott Woodd87eb122008-07-11 18:04:45 -0500512 spin_unlock_irqrestore(&priv->bflock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (dev->flags & IFF_UP)
515 err = startup_gfar(dev);
516
517 return err;
518}
519
Kumar Gala0bbaf062005-06-20 10:54:21 -0500520static uint32_t gfar_get_rx_csum(struct net_device *dev)
521{
522 struct gfar_private *priv = netdev_priv(dev);
523
Andy Flemingb31a1d82008-12-16 15:29:15 -0800524 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM))
Kumar Gala0bbaf062005-06-20 10:54:21 -0500525 return 0;
526
527 return priv->rx_csum_enable;
528}
529
530static int gfar_set_tx_csum(struct net_device *dev, uint32_t data)
531{
532 unsigned long flags;
533 struct gfar_private *priv = netdev_priv(dev);
534
Andy Flemingb31a1d82008-12-16 15:29:15 -0800535 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM))
Kumar Gala0bbaf062005-06-20 10:54:21 -0500536 return -EOPNOTSUPP;
537
Andy Flemingfef61082006-04-20 16:44:29 -0500538 spin_lock_irqsave(&priv->txlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500539 gfar_halt(dev);
540
541 if (data)
542 dev->features |= NETIF_F_IP_CSUM;
543 else
544 dev->features &= ~NETIF_F_IP_CSUM;
545
546 gfar_start(dev);
Andy Flemingfef61082006-04-20 16:44:29 -0500547 spin_unlock_irqrestore(&priv->txlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500548
549 return 0;
550}
551
552static uint32_t gfar_get_tx_csum(struct net_device *dev)
553{
554 struct gfar_private *priv = netdev_priv(dev);
555
Andy Flemingb31a1d82008-12-16 15:29:15 -0800556 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM))
Kumar Gala0bbaf062005-06-20 10:54:21 -0500557 return 0;
558
559 return (dev->features & NETIF_F_IP_CSUM) != 0;
560}
561
562static uint32_t gfar_get_msglevel(struct net_device *dev)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400563{
Kumar Gala0bbaf062005-06-20 10:54:21 -0500564 struct gfar_private *priv = netdev_priv(dev);
565 return priv->msg_enable;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400566}
567
Kumar Gala0bbaf062005-06-20 10:54:21 -0500568static void gfar_set_msglevel(struct net_device *dev, uint32_t data)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400569{
Kumar Gala0bbaf062005-06-20 10:54:21 -0500570 struct gfar_private *priv = netdev_priv(dev);
571 priv->msg_enable = data;
572}
573
Scott Woodd87eb122008-07-11 18:04:45 -0500574#ifdef CONFIG_PM
575static void gfar_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
576{
577 struct gfar_private *priv = netdev_priv(dev);
578
Andy Flemingb31a1d82008-12-16 15:29:15 -0800579 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) {
Scott Woodd87eb122008-07-11 18:04:45 -0500580 wol->supported = WAKE_MAGIC;
581 wol->wolopts = priv->wol_en ? WAKE_MAGIC : 0;
582 } else {
583 wol->supported = wol->wolopts = 0;
584 }
585}
586
587static int gfar_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
588{
589 struct gfar_private *priv = netdev_priv(dev);
590 unsigned long flags;
591
Andy Flemingb31a1d82008-12-16 15:29:15 -0800592 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
Scott Woodd87eb122008-07-11 18:04:45 -0500593 wol->wolopts != 0)
594 return -EINVAL;
595
596 if (wol->wolopts & ~WAKE_MAGIC)
597 return -EINVAL;
598
599 spin_lock_irqsave(&priv->bflock, flags);
600 priv->wol_en = wol->wolopts & WAKE_MAGIC ? 1 : 0;
601 spin_unlock_irqrestore(&priv->bflock, flags);
602
603 return 0;
604}
605#endif
Kumar Gala0bbaf062005-06-20 10:54:21 -0500606
Jeff Garzik7282d492006-09-13 14:30:00 -0400607const struct ethtool_ops gfar_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 .get_settings = gfar_gsettings,
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400609 .set_settings = gfar_ssettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 .get_drvinfo = gfar_gdrvinfo,
611 .get_regs_len = gfar_reglen,
612 .get_regs = gfar_get_regs,
613 .get_link = ethtool_op_get_link,
614 .get_coalesce = gfar_gcoalesce,
615 .set_coalesce = gfar_scoalesce,
616 .get_ringparam = gfar_gringparam,
617 .set_ringparam = gfar_sringparam,
618 .get_strings = gfar_gstrings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700619 .get_sset_count = gfar_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 .get_ethtool_stats = gfar_fill_stats,
Kumar Gala0bbaf062005-06-20 10:54:21 -0500621 .get_rx_csum = gfar_get_rx_csum,
622 .get_tx_csum = gfar_get_tx_csum,
623 .set_rx_csum = gfar_set_rx_csum,
624 .set_tx_csum = gfar_set_tx_csum,
625 .get_msglevel = gfar_get_msglevel,
626 .set_msglevel = gfar_set_msglevel,
Scott Woodd87eb122008-07-11 18:04:45 -0500627#ifdef CONFIG_PM
628 .get_wol = gfar_get_wol,
629 .set_wol = gfar_set_wol,
630#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631};