2 * drivers/net/gianfar_ethtool.c
4 * Gianfar Ethernet Driver
5 * Ethtool support for Gianfar Enet
6 * Based on e1000 ethtool support
9 * Maintainer: Kumar Gala
11 * Copyright (c) 2003,2004 Freescale Semiconductor, Inc.
13 * This software may be used and distributed according to
14 * the terms of the GNU Public License, Version 2, incorporated herein
18 #include <linux/kernel.h>
19 #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>
33 #include <asm/uaccess.h>
34 #include <linux/module.h>
35 #include <linux/crc32.h>
36 #include <asm/types.h>
37 #include <linux/ethtool.h>
38 #include <linux/mii.h>
39 #include <linux/phy.h>
43 extern void gfar_start(struct net_device
*dev
);
44 extern int gfar_clean_rx_ring(struct net_device
*dev
, int rx_work_limit
);
46 #define GFAR_MAX_COAL_USECS 0xffff
47 #define GFAR_MAX_COAL_FRAMES 0xff
48 static void gfar_fill_stats(struct net_device
*dev
, struct ethtool_stats
*dummy
,
50 static void gfar_gstrings(struct net_device
*dev
, u32 stringset
, u8
* buf
);
51 static int gfar_gcoalesce(struct net_device
*dev
, struct ethtool_coalesce
*cvals
);
52 static int gfar_scoalesce(struct net_device
*dev
, struct ethtool_coalesce
*cvals
);
53 static void gfar_gringparam(struct net_device
*dev
, struct ethtool_ringparam
*rvals
);
54 static int gfar_sringparam(struct net_device
*dev
, struct ethtool_ringparam
*rvals
);
55 static void gfar_gdrvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*drvinfo
);
57 static 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",
66 "rx-truncated-frames",
70 "rx-skb-missing-errors",
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",
82 "receive-multicast-packet",
83 "receive-broadcast-packet",
84 "rx-control-frame-packets",
85 "rx-pause-frame-packets",
88 "rx-frame-length-error",
90 "rx-carrier-sense-error",
91 "rx-undersize-packets",
92 "rx-oversize-packets",
93 "rx-fragmented-frames",
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",
113 "tx-oversize-frames",
114 "tx-undersize-frames",
115 "tx-fragmented-frames",
118 /* Fill in a buffer with the strings which correspond to the
120 static void gfar_gstrings(struct net_device
*dev
, u32 stringset
, u8
* buf
)
122 struct gfar_private
*priv
= netdev_priv(dev
);
124 if (priv
->einfo
->device_flags
& FSL_GIANFAR_DEV_HAS_RMON
)
125 memcpy(buf
, stat_gstrings
, GFAR_STATS_LEN
* ETH_GSTRING_LEN
);
127 memcpy(buf
, stat_gstrings
,
128 GFAR_EXTRA_STATS_LEN
* ETH_GSTRING_LEN
);
131 /* 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
135 static void gfar_fill_stats(struct net_device
*dev
, struct ethtool_stats
*dummy
, u64
* buf
)
138 struct gfar_private
*priv
= netdev_priv(dev
);
139 u64
*extra
= (u64
*) & priv
->extra_stats
;
141 if (priv
->einfo
->device_flags
& FSL_GIANFAR_DEV_HAS_RMON
) {
142 u32 __iomem
*rmon
= (u32 __iomem
*) & priv
->regs
->rmon
;
143 struct gfar_stats
*stats
= (struct gfar_stats
*) buf
;
145 for (i
= 0; i
< GFAR_RMON_LEN
; i
++)
146 stats
->rmon
[i
] = (u64
) gfar_read(&rmon
[i
]);
148 for (i
= 0; i
< GFAR_EXTRA_STATS_LEN
; i
++)
149 stats
->extra
[i
] = extra
[i
];
151 for (i
= 0; i
< GFAR_EXTRA_STATS_LEN
; i
++)
155 static int gfar_sset_count(struct net_device
*dev
, int sset
)
157 struct gfar_private
*priv
= netdev_priv(dev
);
161 if (priv
->einfo
->device_flags
& FSL_GIANFAR_DEV_HAS_RMON
)
162 return GFAR_STATS_LEN
;
164 return GFAR_EXTRA_STATS_LEN
;
170 /* Fills in the drvinfo structure with some basic info */
171 static void gfar_gdrvinfo(struct net_device
*dev
, struct
172 ethtool_drvinfo
*drvinfo
)
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
);
178 drvinfo
->regdump_len
= 0;
179 drvinfo
->eedump_len
= 0;
183 static int gfar_ssettings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
185 struct gfar_private
*priv
= netdev_priv(dev
);
186 struct phy_device
*phydev
= priv
->phydev
;
191 return phy_ethtool_sset(phydev
, cmd
);
195 /* Return the current settings in the ethtool_cmd structure */
196 static int gfar_gsettings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
198 struct gfar_private
*priv
= netdev_priv(dev
);
199 struct phy_device
*phydev
= priv
->phydev
;
204 cmd
->maxtxpkt
= priv
->txcount
;
205 cmd
->maxrxpkt
= priv
->rxcount
;
207 return phy_ethtool_gset(phydev
, cmd
);
210 /* Return the length of the register structure */
211 static int gfar_reglen(struct net_device
*dev
)
213 return sizeof (struct gfar
);
216 /* Return a dump of the GFAR register space */
217 static void gfar_get_regs(struct net_device
*dev
, struct ethtool_regs
*regs
, void *regbuf
)
220 struct gfar_private
*priv
= netdev_priv(dev
);
221 u32 __iomem
*theregs
= (u32 __iomem
*) priv
->regs
;
222 u32
*buf
= (u32
*) regbuf
;
224 for (i
= 0; i
< sizeof (struct gfar
) / sizeof (u32
); i
++)
225 buf
[i
] = gfar_read(&theregs
[i
]);
228 /* Convert microseconds to ethernet clock ticks, which changes
229 * depending on what speed the controller is running at */
230 static unsigned int gfar_usecs2ticks(struct gfar_private
*priv
, unsigned int usecs
)
234 /* The timer is different, depending on the interface speed */
235 switch (priv
->phydev
->speed
) {
237 count
= GFAR_GBIT_TIME
;
240 count
= GFAR_100_TIME
;
244 count
= GFAR_10_TIME
;
248 /* Make sure we return a number greater than 0
250 return ((usecs
* 1000 + count
- 1) / count
);
253 /* Convert ethernet clock ticks to microseconds */
254 static unsigned int gfar_ticks2usecs(struct gfar_private
*priv
, unsigned int ticks
)
258 /* The timer is different, depending on the interface speed */
259 switch (priv
->phydev
->speed
) {
261 count
= GFAR_GBIT_TIME
;
264 count
= GFAR_100_TIME
;
268 count
= GFAR_10_TIME
;
272 /* Make sure we return a number greater than 0 */
273 /* if ticks is > 0 */
274 return ((ticks
* count
) / 1000);
277 /* Get the coalescing parameters, and put them in the cvals
279 static int gfar_gcoalesce(struct net_device
*dev
, struct ethtool_coalesce
*cvals
)
281 struct gfar_private
*priv
= netdev_priv(dev
);
283 if (!(priv
->einfo
->device_flags
& FSL_GIANFAR_DEV_HAS_COALESCE
))
286 if (NULL
== priv
->phydev
)
289 cvals
->rx_coalesce_usecs
= gfar_ticks2usecs(priv
, priv
->rxtime
);
290 cvals
->rx_max_coalesced_frames
= priv
->rxcount
;
292 cvals
->tx_coalesce_usecs
= gfar_ticks2usecs(priv
, priv
->txtime
);
293 cvals
->tx_max_coalesced_frames
= priv
->txcount
;
295 cvals
->use_adaptive_rx_coalesce
= 0;
296 cvals
->use_adaptive_tx_coalesce
= 0;
298 cvals
->pkt_rate_low
= 0;
299 cvals
->rx_coalesce_usecs_low
= 0;
300 cvals
->rx_max_coalesced_frames_low
= 0;
301 cvals
->tx_coalesce_usecs_low
= 0;
302 cvals
->tx_max_coalesced_frames_low
= 0;
304 /* When the packet rate is below pkt_rate_high but above
305 * pkt_rate_low (both measured in packets per second) the
306 * normal {rx,tx}_* coalescing parameters are used.
309 /* When the packet rate is (measured in packets per second)
310 * is above pkt_rate_high, the {rx,tx}_*_high parameters are
313 cvals
->pkt_rate_high
= 0;
314 cvals
->rx_coalesce_usecs_high
= 0;
315 cvals
->rx_max_coalesced_frames_high
= 0;
316 cvals
->tx_coalesce_usecs_high
= 0;
317 cvals
->tx_max_coalesced_frames_high
= 0;
319 /* How often to do adaptive coalescing packet rate sampling,
320 * measured in seconds. Must not be zero.
322 cvals
->rate_sample_interval
= 0;
327 /* Change the coalescing values.
328 * Both cvals->*_usecs and cvals->*_frames have to be > 0
329 * in order for coalescing to be active
331 static int gfar_scoalesce(struct net_device
*dev
, struct ethtool_coalesce
*cvals
)
333 struct gfar_private
*priv
= netdev_priv(dev
);
335 if (!(priv
->einfo
->device_flags
& FSL_GIANFAR_DEV_HAS_COALESCE
))
338 /* Set up rx coalescing */
339 if ((cvals
->rx_coalesce_usecs
== 0) ||
340 (cvals
->rx_max_coalesced_frames
== 0))
341 priv
->rxcoalescing
= 0;
343 priv
->rxcoalescing
= 1;
345 if (NULL
== priv
->phydev
)
348 /* Check the bounds of the values */
349 if (cvals
->rx_coalesce_usecs
> GFAR_MAX_COAL_USECS
) {
350 pr_info("Coalescing is limited to %d microseconds\n",
351 GFAR_MAX_COAL_USECS
);
355 if (cvals
->rx_max_coalesced_frames
> GFAR_MAX_COAL_FRAMES
) {
356 pr_info("Coalescing is limited to %d frames\n",
357 GFAR_MAX_COAL_FRAMES
);
361 priv
->rxtime
= gfar_usecs2ticks(priv
, cvals
->rx_coalesce_usecs
);
362 priv
->rxcount
= cvals
->rx_max_coalesced_frames
;
364 /* Set up tx coalescing */
365 if ((cvals
->tx_coalesce_usecs
== 0) ||
366 (cvals
->tx_max_coalesced_frames
== 0))
367 priv
->txcoalescing
= 0;
369 priv
->txcoalescing
= 1;
371 /* Check the bounds of the values */
372 if (cvals
->tx_coalesce_usecs
> GFAR_MAX_COAL_USECS
) {
373 pr_info("Coalescing is limited to %d microseconds\n",
374 GFAR_MAX_COAL_USECS
);
378 if (cvals
->tx_max_coalesced_frames
> GFAR_MAX_COAL_FRAMES
) {
379 pr_info("Coalescing is limited to %d frames\n",
380 GFAR_MAX_COAL_FRAMES
);
384 priv
->txtime
= gfar_usecs2ticks(priv
, cvals
->tx_coalesce_usecs
);
385 priv
->txcount
= cvals
->tx_max_coalesced_frames
;
387 if (priv
->rxcoalescing
)
388 gfar_write(&priv
->regs
->rxic
,
389 mk_ic_value(priv
->rxcount
, priv
->rxtime
));
391 gfar_write(&priv
->regs
->rxic
, 0);
393 if (priv
->txcoalescing
)
394 gfar_write(&priv
->regs
->txic
,
395 mk_ic_value(priv
->txcount
, priv
->txtime
));
397 gfar_write(&priv
->regs
->txic
, 0);
402 /* Fills in rvals with the current ring parameters. Currently,
403 * rx, rx_mini, and rx_jumbo rings are the same size, as mini and
404 * jumbo are ignored by the driver */
405 static void gfar_gringparam(struct net_device
*dev
, struct ethtool_ringparam
*rvals
)
407 struct gfar_private
*priv
= netdev_priv(dev
);
409 rvals
->rx_max_pending
= GFAR_RX_MAX_RING_SIZE
;
410 rvals
->rx_mini_max_pending
= GFAR_RX_MAX_RING_SIZE
;
411 rvals
->rx_jumbo_max_pending
= GFAR_RX_MAX_RING_SIZE
;
412 rvals
->tx_max_pending
= GFAR_TX_MAX_RING_SIZE
;
414 /* Values changeable by the user. The valid values are
415 * in the range 1 to the "*_max_pending" counterpart above.
417 rvals
->rx_pending
= priv
->rx_ring_size
;
418 rvals
->rx_mini_pending
= priv
->rx_ring_size
;
419 rvals
->rx_jumbo_pending
= priv
->rx_ring_size
;
420 rvals
->tx_pending
= priv
->tx_ring_size
;
423 /* Change the current ring parameters, stopping the controller if
424 * necessary so that we don't mess things up while we're in
425 * motion. We wait for the ring to be clean before reallocating
427 static int gfar_sringparam(struct net_device
*dev
, struct ethtool_ringparam
*rvals
)
429 struct gfar_private
*priv
= netdev_priv(dev
);
432 if (rvals
->rx_pending
> GFAR_RX_MAX_RING_SIZE
)
435 if (!is_power_of_2(rvals
->rx_pending
)) {
436 printk("%s: Ring sizes must be a power of 2\n",
441 if (rvals
->tx_pending
> GFAR_TX_MAX_RING_SIZE
)
444 if (!is_power_of_2(rvals
->tx_pending
)) {
445 printk("%s: Ring sizes must be a power of 2\n",
450 if (dev
->flags
& IFF_UP
) {
453 /* Halt TX and RX, and process the frames which
454 * have already been received */
455 spin_lock_irqsave(&priv
->txlock
, flags
);
456 spin_lock(&priv
->rxlock
);
459 gfar_clean_rx_ring(dev
, priv
->rx_ring_size
);
461 spin_unlock(&priv
->rxlock
);
462 spin_unlock_irqrestore(&priv
->txlock
, flags
);
464 /* Now we take down the rings to rebuild them */
468 /* Change the size */
469 priv
->rx_ring_size
= rvals
->rx_pending
;
470 priv
->tx_ring_size
= rvals
->tx_pending
;
472 /* Rebuild the rings with the new size */
473 if (dev
->flags
& IFF_UP
)
474 err
= startup_gfar(dev
);
479 static int gfar_set_rx_csum(struct net_device
*dev
, uint32_t data
)
481 struct gfar_private
*priv
= netdev_priv(dev
);
485 if (!(priv
->einfo
->device_flags
& FSL_GIANFAR_DEV_HAS_CSUM
))
488 if (dev
->flags
& IFF_UP
) {
489 /* Halt TX and RX, and process the frames which
490 * have already been received */
491 spin_lock_irqsave(&priv
->txlock
, flags
);
492 spin_lock(&priv
->rxlock
);
495 gfar_clean_rx_ring(dev
, priv
->rx_ring_size
);
497 spin_unlock(&priv
->rxlock
);
498 spin_unlock_irqrestore(&priv
->txlock
, flags
);
500 /* Now we take down the rings to rebuild them */
504 spin_lock_irqsave(&priv
->bflock
, flags
);
505 priv
->rx_csum_enable
= data
;
506 spin_unlock_irqrestore(&priv
->bflock
, flags
);
508 if (dev
->flags
& IFF_UP
)
509 err
= startup_gfar(dev
);
514 static uint32_t gfar_get_rx_csum(struct net_device
*dev
)
516 struct gfar_private
*priv
= netdev_priv(dev
);
518 if (!(priv
->einfo
->device_flags
& FSL_GIANFAR_DEV_HAS_CSUM
))
521 return priv
->rx_csum_enable
;
524 static int gfar_set_tx_csum(struct net_device
*dev
, uint32_t data
)
527 struct gfar_private
*priv
= netdev_priv(dev
);
529 if (!(priv
->einfo
->device_flags
& FSL_GIANFAR_DEV_HAS_CSUM
))
532 spin_lock_irqsave(&priv
->txlock
, flags
);
536 dev
->features
|= NETIF_F_IP_CSUM
;
538 dev
->features
&= ~NETIF_F_IP_CSUM
;
541 spin_unlock_irqrestore(&priv
->txlock
, flags
);
546 static uint32_t gfar_get_tx_csum(struct net_device
*dev
)
548 struct gfar_private
*priv
= netdev_priv(dev
);
550 if (!(priv
->einfo
->device_flags
& FSL_GIANFAR_DEV_HAS_CSUM
))
553 return (dev
->features
& NETIF_F_IP_CSUM
) != 0;
556 static uint32_t gfar_get_msglevel(struct net_device
*dev
)
558 struct gfar_private
*priv
= netdev_priv(dev
);
559 return priv
->msg_enable
;
562 static void gfar_set_msglevel(struct net_device
*dev
, uint32_t data
)
564 struct gfar_private
*priv
= netdev_priv(dev
);
565 priv
->msg_enable
= data
;
569 static void gfar_get_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
571 struct gfar_private
*priv
= netdev_priv(dev
);
573 if (priv
->einfo
->device_flags
& FSL_GIANFAR_DEV_HAS_MAGIC_PACKET
) {
574 wol
->supported
= WAKE_MAGIC
;
575 wol
->wolopts
= priv
->wol_en
? WAKE_MAGIC
: 0;
577 wol
->supported
= wol
->wolopts
= 0;
581 static int gfar_set_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
583 struct gfar_private
*priv
= netdev_priv(dev
);
586 if (!(priv
->einfo
->device_flags
& FSL_GIANFAR_DEV_HAS_MAGIC_PACKET
) &&
590 if (wol
->wolopts
& ~WAKE_MAGIC
)
593 spin_lock_irqsave(&priv
->bflock
, flags
);
594 priv
->wol_en
= wol
->wolopts
& WAKE_MAGIC
? 1 : 0;
595 spin_unlock_irqrestore(&priv
->bflock
, flags
);
601 const struct ethtool_ops gfar_ethtool_ops
= {
602 .get_settings
= gfar_gsettings
,
603 .set_settings
= gfar_ssettings
,
604 .get_drvinfo
= gfar_gdrvinfo
,
605 .get_regs_len
= gfar_reglen
,
606 .get_regs
= gfar_get_regs
,
607 .get_link
= ethtool_op_get_link
,
608 .get_coalesce
= gfar_gcoalesce
,
609 .set_coalesce
= gfar_scoalesce
,
610 .get_ringparam
= gfar_gringparam
,
611 .set_ringparam
= gfar_sringparam
,
612 .get_strings
= gfar_gstrings
,
613 .get_sset_count
= gfar_sset_count
,
614 .get_ethtool_stats
= gfar_fill_stats
,
615 .get_rx_csum
= gfar_get_rx_csum
,
616 .get_tx_csum
= gfar_get_tx_csum
,
617 .set_rx_csum
= gfar_set_rx_csum
,
618 .set_tx_csum
= gfar_set_tx_csum
,
619 .get_msglevel
= gfar_get_msglevel
,
620 .set_msglevel
= gfar_set_msglevel
,
622 .get_wol
= gfar_get_wol
,
623 .set_wol
= gfar_set_wol
,