2 * drivers/net/ethernet/freescale/gianfar_ethtool.c
4 * Gianfar Ethernet Driver
5 * Ethtool support for Gianfar Enet
6 * Based on e1000 ethtool support
9 * Maintainer: Kumar Gala
12 * Copyright 2003-2006, 2008-2009, 2011 Freescale Semiconductor, Inc.
14 * This software may be used and distributed according to
15 * the terms of the GNU Public License, Version 2, incorporated herein
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21 #include <linux/kernel.h>
22 #include <linux/string.h>
23 #include <linux/errno.h>
24 #include <linux/interrupt.h>
25 #include <linux/init.h>
26 #include <linux/delay.h>
27 #include <linux/netdevice.h>
28 #include <linux/etherdevice.h>
29 #include <linux/net_tstamp.h>
30 #include <linux/skbuff.h>
31 #include <linux/spinlock.h>
36 #include <asm/uaccess.h>
37 #include <linux/module.h>
38 #include <linux/crc32.h>
39 #include <asm/types.h>
40 #include <linux/ethtool.h>
41 #include <linux/mii.h>
42 #include <linux/phy.h>
43 #include <linux/sort.h>
44 #include <linux/if_vlan.h>
48 extern void gfar_start(struct net_device *dev);
49 extern int gfar_clean_rx_ring(struct gfar_priv_rx_q *rx_queue,
52 #define GFAR_MAX_COAL_USECS 0xffff
53 #define GFAR_MAX_COAL_FRAMES 0xff
54 static void gfar_fill_stats(struct net_device *dev, struct ethtool_stats *dummy,
56 static void gfar_gstrings(struct net_device *dev, u32 stringset, u8 * buf);
57 static int gfar_gcoalesce(struct net_device *dev,
58 struct ethtool_coalesce *cvals);
59 static int gfar_scoalesce(struct net_device *dev,
60 struct ethtool_coalesce *cvals);
61 static void gfar_gringparam(struct net_device *dev,
62 struct ethtool_ringparam *rvals);
63 static int gfar_sringparam(struct net_device *dev,
64 struct ethtool_ringparam *rvals);
65 static void gfar_gdrvinfo(struct net_device *dev,
66 struct ethtool_drvinfo *drvinfo);
68 static const char stat_gstrings[][ETH_GSTRING_LEN] = {
69 "rx-large-frame-errors",
70 "rx-short-frame-errors",
71 "rx-non-octet-errors",
76 "rx-truncated-frames",
80 "rx-skb-missing-errors",
83 "tx-rx-65-127-frames",
84 "tx-rx-128-255-frames",
85 "tx-rx-256-511-frames",
86 "tx-rx-512-1023-frames",
87 "tx-rx-1024-1518-frames",
88 "tx-rx-1519-1522-good-vlan",
92 "receive-multicast-packet",
93 "receive-broadcast-packet",
94 "rx-control-frame-packets",
95 "rx-pause-frame-packets",
98 "rx-frame-length-error",
100 "rx-carrier-sense-error",
101 "rx-undersize-packets",
102 "rx-oversize-packets",
103 "rx-fragmented-frames",
108 "tx-multicast-packets",
109 "tx-broadcast-packets",
110 "tx-pause-control-frames",
111 "tx-deferral-packets",
112 "tx-excessive-deferral-packets",
113 "tx-single-collision-packets",
114 "tx-multiple-collision-packets",
115 "tx-late-collision-packets",
116 "tx-excessive-collision-packets",
117 "tx-total-collision",
123 "tx-oversize-frames",
124 "tx-undersize-frames",
125 "tx-fragmented-frames",
128 /* Fill in a buffer with the strings which correspond to the
130 static void gfar_gstrings(struct net_device *dev, u32 stringset, u8 * buf)
132 struct gfar_private *priv = netdev_priv(dev);
134 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON)
135 memcpy(buf, stat_gstrings, GFAR_STATS_LEN * ETH_GSTRING_LEN);
137 memcpy(buf, stat_gstrings,
138 GFAR_EXTRA_STATS_LEN * ETH_GSTRING_LEN);
141 /* Fill in an array of 64-bit statistics from various sources.
142 * This array will be appended to the end of the ethtool_stats
143 * structure, and returned to user space
145 static void gfar_fill_stats(struct net_device *dev, struct ethtool_stats *dummy,
149 struct gfar_private *priv = netdev_priv(dev);
150 struct gfar __iomem *regs = priv->gfargrp[0].regs;
151 atomic64_t *extra = (atomic64_t *)&priv->extra_stats;
153 for (i = 0; i < GFAR_EXTRA_STATS_LEN; i++)
154 buf[i] = atomic64_read(&extra[i]);
156 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
157 u32 __iomem *rmon = (u32 __iomem *) ®s->rmon;
159 for (; i < GFAR_STATS_LEN; i++, rmon++)
160 buf[i] = (u64) gfar_read(rmon);
164 static int gfar_sset_count(struct net_device *dev, int sset)
166 struct gfar_private *priv = netdev_priv(dev);
170 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON)
171 return GFAR_STATS_LEN;
173 return GFAR_EXTRA_STATS_LEN;
179 /* Fills in the drvinfo structure with some basic info */
180 static void gfar_gdrvinfo(struct net_device *dev,
181 struct ethtool_drvinfo *drvinfo)
183 strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver));
184 strlcpy(drvinfo->version, gfar_driver_version,
185 sizeof(drvinfo->version));
186 strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
187 strlcpy(drvinfo->bus_info, "N/A", sizeof(drvinfo->bus_info));
188 drvinfo->regdump_len = 0;
189 drvinfo->eedump_len = 0;
193 static int gfar_ssettings(struct net_device *dev, struct ethtool_cmd *cmd)
195 struct gfar_private *priv = netdev_priv(dev);
196 struct phy_device *phydev = priv->phydev;
201 return phy_ethtool_sset(phydev, cmd);
205 /* Return the current settings in the ethtool_cmd structure */
206 static int gfar_gsettings(struct net_device *dev, struct ethtool_cmd *cmd)
208 struct gfar_private *priv = netdev_priv(dev);
209 struct phy_device *phydev = priv->phydev;
210 struct gfar_priv_rx_q *rx_queue = NULL;
211 struct gfar_priv_tx_q *tx_queue = NULL;
215 tx_queue = priv->tx_queue[0];
216 rx_queue = priv->rx_queue[0];
218 /* etsec-1.7 and older versions have only one txic
219 * and rxic regs although they support multiple queues */
220 cmd->maxtxpkt = get_icft_value(tx_queue->txic);
221 cmd->maxrxpkt = get_icft_value(rx_queue->rxic);
223 return phy_ethtool_gset(phydev, cmd);
226 /* Return the length of the register structure */
227 static int gfar_reglen(struct net_device *dev)
229 return sizeof (struct gfar);
232 /* Return a dump of the GFAR register space */
233 static void gfar_get_regs(struct net_device *dev, struct ethtool_regs *regs,
237 struct gfar_private *priv = netdev_priv(dev);
238 u32 __iomem *theregs = (u32 __iomem *) priv->gfargrp[0].regs;
239 u32 *buf = (u32 *) regbuf;
241 for (i = 0; i < sizeof (struct gfar) / sizeof (u32); i++)
242 buf[i] = gfar_read(&theregs[i]);
245 /* Convert microseconds to ethernet clock ticks, which changes
246 * depending on what speed the controller is running at */
247 static unsigned int gfar_usecs2ticks(struct gfar_private *priv,
252 /* The timer is different, depending on the interface speed */
253 switch (priv->phydev->speed) {
255 count = GFAR_GBIT_TIME;
258 count = GFAR_100_TIME;
262 count = GFAR_10_TIME;
266 /* Make sure we return a number greater than 0
268 return (usecs * 1000 + count - 1) / count;
271 /* Convert ethernet clock ticks to microseconds */
272 static unsigned int gfar_ticks2usecs(struct gfar_private *priv,
277 /* The timer is different, depending on the interface speed */
278 switch (priv->phydev->speed) {
280 count = GFAR_GBIT_TIME;
283 count = GFAR_100_TIME;
287 count = GFAR_10_TIME;
291 /* Make sure we return a number greater than 0 */
292 /* if ticks is > 0 */
293 return (ticks * count) / 1000;
296 /* Get the coalescing parameters, and put them in the cvals
298 static int gfar_gcoalesce(struct net_device *dev,
299 struct ethtool_coalesce *cvals)
301 struct gfar_private *priv = netdev_priv(dev);
302 struct gfar_priv_rx_q *rx_queue = NULL;
303 struct gfar_priv_tx_q *tx_queue = NULL;
304 unsigned long rxtime;
305 unsigned long rxcount;
306 unsigned long txtime;
307 unsigned long txcount;
309 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_COALESCE))
312 if (NULL == priv->phydev)
315 rx_queue = priv->rx_queue[0];
316 tx_queue = priv->tx_queue[0];
318 rxtime = get_ictt_value(rx_queue->rxic);
319 rxcount = get_icft_value(rx_queue->rxic);
320 txtime = get_ictt_value(tx_queue->txic);
321 txcount = get_icft_value(tx_queue->txic);
322 cvals->rx_coalesce_usecs = gfar_ticks2usecs(priv, rxtime);
323 cvals->rx_max_coalesced_frames = rxcount;
325 cvals->tx_coalesce_usecs = gfar_ticks2usecs(priv, txtime);
326 cvals->tx_max_coalesced_frames = txcount;
328 cvals->use_adaptive_rx_coalesce = 0;
329 cvals->use_adaptive_tx_coalesce = 0;
331 cvals->pkt_rate_low = 0;
332 cvals->rx_coalesce_usecs_low = 0;
333 cvals->rx_max_coalesced_frames_low = 0;
334 cvals->tx_coalesce_usecs_low = 0;
335 cvals->tx_max_coalesced_frames_low = 0;
337 /* When the packet rate is below pkt_rate_high but above
338 * pkt_rate_low (both measured in packets per second) the
339 * normal {rx,tx}_* coalescing parameters are used.
342 /* When the packet rate is (measured in packets per second)
343 * is above pkt_rate_high, the {rx,tx}_*_high parameters are
346 cvals->pkt_rate_high = 0;
347 cvals->rx_coalesce_usecs_high = 0;
348 cvals->rx_max_coalesced_frames_high = 0;
349 cvals->tx_coalesce_usecs_high = 0;
350 cvals->tx_max_coalesced_frames_high = 0;
352 /* How often to do adaptive coalescing packet rate sampling,
353 * measured in seconds. Must not be zero.
355 cvals->rate_sample_interval = 0;
360 /* Change the coalescing values.
361 * Both cvals->*_usecs and cvals->*_frames have to be > 0
362 * in order for coalescing to be active
364 static int gfar_scoalesce(struct net_device *dev,
365 struct ethtool_coalesce *cvals)
367 struct gfar_private *priv = netdev_priv(dev);
370 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_COALESCE))
373 /* Set up rx coalescing */
374 /* As of now, we will enable/disable coalescing for all
375 * queues together in case of eTSEC2, this will be modified
376 * along with the ethtool interface
378 if ((cvals->rx_coalesce_usecs == 0) ||
379 (cvals->rx_max_coalesced_frames == 0)) {
380 for (i = 0; i < priv->num_rx_queues; i++)
381 priv->rx_queue[i]->rxcoalescing = 0;
383 for (i = 0; i < priv->num_rx_queues; i++)
384 priv->rx_queue[i]->rxcoalescing = 1;
387 if (NULL == priv->phydev)
390 /* Check the bounds of the values */
391 if (cvals->rx_coalesce_usecs > GFAR_MAX_COAL_USECS) {
392 netdev_info(dev, "Coalescing is limited to %d microseconds\n",
393 GFAR_MAX_COAL_USECS);
397 if (cvals->rx_max_coalesced_frames > GFAR_MAX_COAL_FRAMES) {
398 netdev_info(dev, "Coalescing is limited to %d frames\n",
399 GFAR_MAX_COAL_FRAMES);
403 for (i = 0; i < priv->num_rx_queues; i++) {
404 priv->rx_queue[i]->rxic = mk_ic_value(
405 cvals->rx_max_coalesced_frames,
406 gfar_usecs2ticks(priv, cvals->rx_coalesce_usecs));
409 /* Set up tx coalescing */
410 if ((cvals->tx_coalesce_usecs == 0) ||
411 (cvals->tx_max_coalesced_frames == 0)) {
412 for (i = 0; i < priv->num_tx_queues; i++)
413 priv->tx_queue[i]->txcoalescing = 0;
415 for (i = 0; i < priv->num_tx_queues; i++)
416 priv->tx_queue[i]->txcoalescing = 1;
419 /* Check the bounds of the values */
420 if (cvals->tx_coalesce_usecs > GFAR_MAX_COAL_USECS) {
421 netdev_info(dev, "Coalescing is limited to %d microseconds\n",
422 GFAR_MAX_COAL_USECS);
426 if (cvals->tx_max_coalesced_frames > GFAR_MAX_COAL_FRAMES) {
427 netdev_info(dev, "Coalescing is limited to %d frames\n",
428 GFAR_MAX_COAL_FRAMES);
432 for (i = 0; i < priv->num_tx_queues; i++) {
433 priv->tx_queue[i]->txic = mk_ic_value(
434 cvals->tx_max_coalesced_frames,
435 gfar_usecs2ticks(priv, cvals->tx_coalesce_usecs));
438 gfar_configure_coalescing_all(priv);
443 /* Fills in rvals with the current ring parameters. Currently,
444 * rx, rx_mini, and rx_jumbo rings are the same size, as mini and
445 * jumbo are ignored by the driver */
446 static void gfar_gringparam(struct net_device *dev,
447 struct ethtool_ringparam *rvals)
449 struct gfar_private *priv = netdev_priv(dev);
450 struct gfar_priv_tx_q *tx_queue = NULL;
451 struct gfar_priv_rx_q *rx_queue = NULL;
453 tx_queue = priv->tx_queue[0];
454 rx_queue = priv->rx_queue[0];
456 rvals->rx_max_pending = GFAR_RX_MAX_RING_SIZE;
457 rvals->rx_mini_max_pending = GFAR_RX_MAX_RING_SIZE;
458 rvals->rx_jumbo_max_pending = GFAR_RX_MAX_RING_SIZE;
459 rvals->tx_max_pending = GFAR_TX_MAX_RING_SIZE;
461 /* Values changeable by the user. The valid values are
462 * in the range 1 to the "*_max_pending" counterpart above.
464 rvals->rx_pending = rx_queue->rx_ring_size;
465 rvals->rx_mini_pending = rx_queue->rx_ring_size;
466 rvals->rx_jumbo_pending = rx_queue->rx_ring_size;
467 rvals->tx_pending = tx_queue->tx_ring_size;
470 /* Change the current ring parameters, stopping the controller if
471 * necessary so that we don't mess things up while we're in
472 * motion. We wait for the ring to be clean before reallocating
475 static int gfar_sringparam(struct net_device *dev,
476 struct ethtool_ringparam *rvals)
478 struct gfar_private *priv = netdev_priv(dev);
481 if (rvals->rx_pending > GFAR_RX_MAX_RING_SIZE)
484 if (!is_power_of_2(rvals->rx_pending)) {
485 netdev_err(dev, "Ring sizes must be a power of 2\n");
489 if (rvals->tx_pending > GFAR_TX_MAX_RING_SIZE)
492 if (!is_power_of_2(rvals->tx_pending)) {
493 netdev_err(dev, "Ring sizes must be a power of 2\n");
498 if (dev->flags & IFF_UP) {
501 /* Halt TX and RX, and process the frames which
502 * have already been received
504 local_irq_save(flags);
512 local_irq_restore(flags);
514 for (i = 0; i < priv->num_rx_queues; i++)
515 gfar_clean_rx_ring(priv->rx_queue[i],
516 priv->rx_queue[i]->rx_ring_size);
518 /* Now we take down the rings to rebuild them */
522 /* Change the size */
523 for (i = 0; i < priv->num_rx_queues; i++) {
524 priv->rx_queue[i]->rx_ring_size = rvals->rx_pending;
525 priv->tx_queue[i]->tx_ring_size = rvals->tx_pending;
526 priv->tx_queue[i]->num_txbdfree =
527 priv->tx_queue[i]->tx_ring_size;
530 /* Rebuild the rings with the new size */
531 if (dev->flags & IFF_UP) {
532 err = startup_gfar(dev);
533 netif_tx_wake_all_queues(dev);
538 int gfar_set_features(struct net_device *dev, netdev_features_t features)
540 struct gfar_private *priv = netdev_priv(dev);
543 netdev_features_t changed = dev->features ^ features;
545 if (changed & (NETIF_F_HW_VLAN_CTAG_TX|NETIF_F_HW_VLAN_CTAG_RX))
546 gfar_vlan_mode(dev, features);
548 if (!(changed & NETIF_F_RXCSUM))
551 if (dev->flags & IFF_UP) {
552 /* Halt TX and RX, and process the frames which
553 * have already been received
555 local_irq_save(flags);
563 local_irq_restore(flags);
565 for (i = 0; i < priv->num_rx_queues; i++)
566 gfar_clean_rx_ring(priv->rx_queue[i],
567 priv->rx_queue[i]->rx_ring_size);
569 /* Now we take down the rings to rebuild them */
572 dev->features = features;
574 err = startup_gfar(dev);
575 netif_tx_wake_all_queues(dev);
580 static uint32_t gfar_get_msglevel(struct net_device *dev)
582 struct gfar_private *priv = netdev_priv(dev);
584 return priv->msg_enable;
587 static void gfar_set_msglevel(struct net_device *dev, uint32_t data)
589 struct gfar_private *priv = netdev_priv(dev);
591 priv->msg_enable = data;
595 static void gfar_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
597 struct gfar_private *priv = netdev_priv(dev);
599 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) {
600 wol->supported = WAKE_MAGIC;
601 wol->wolopts = priv->wol_en ? WAKE_MAGIC : 0;
603 wol->supported = wol->wolopts = 0;
607 static int gfar_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
609 struct gfar_private *priv = netdev_priv(dev);
612 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
616 if (wol->wolopts & ~WAKE_MAGIC)
619 device_set_wakeup_enable(&dev->dev, wol->wolopts & WAKE_MAGIC);
621 spin_lock_irqsave(&priv->bflock, flags);
622 priv->wol_en = !!device_may_wakeup(&dev->dev);
623 spin_unlock_irqrestore(&priv->bflock, flags);
629 static void ethflow_to_filer_rules (struct gfar_private *priv, u64 ethflow)
631 u32 fcr = 0x0, fpr = FPR_FILER_MASK;
633 if (ethflow & RXH_L2DA) {
634 fcr = RQFCR_PID_DAH |RQFCR_CMP_NOMATCH |
635 RQFCR_HASH | RQFCR_AND | RQFCR_HASHTBL_0;
636 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
637 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
638 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
639 priv->cur_filer_idx = priv->cur_filer_idx - 1;
641 fcr = RQFCR_PID_DAL | RQFCR_AND | RQFCR_CMP_NOMATCH |
642 RQFCR_HASH | RQFCR_AND | RQFCR_HASHTBL_0;
643 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
644 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
645 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
646 priv->cur_filer_idx = priv->cur_filer_idx - 1;
649 if (ethflow & RXH_VLAN) {
650 fcr = RQFCR_PID_VID | RQFCR_CMP_NOMATCH | RQFCR_HASH |
651 RQFCR_AND | RQFCR_HASHTBL_0;
652 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
653 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
654 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
655 priv->cur_filer_idx = priv->cur_filer_idx - 1;
658 if (ethflow & RXH_IP_SRC) {
659 fcr = RQFCR_PID_SIA | RQFCR_CMP_NOMATCH | RQFCR_HASH |
660 RQFCR_AND | RQFCR_HASHTBL_0;
661 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
662 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
663 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
664 priv->cur_filer_idx = priv->cur_filer_idx - 1;
667 if (ethflow & (RXH_IP_DST)) {
668 fcr = RQFCR_PID_DIA | RQFCR_CMP_NOMATCH | RQFCR_HASH |
669 RQFCR_AND | RQFCR_HASHTBL_0;
670 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
671 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
672 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
673 priv->cur_filer_idx = priv->cur_filer_idx - 1;
676 if (ethflow & RXH_L3_PROTO) {
677 fcr = RQFCR_PID_L4P | RQFCR_CMP_NOMATCH | RQFCR_HASH |
678 RQFCR_AND | RQFCR_HASHTBL_0;
679 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
680 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
681 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
682 priv->cur_filer_idx = priv->cur_filer_idx - 1;
685 if (ethflow & RXH_L4_B_0_1) {
686 fcr = RQFCR_PID_SPT | RQFCR_CMP_NOMATCH | RQFCR_HASH |
687 RQFCR_AND | RQFCR_HASHTBL_0;
688 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
689 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
690 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
691 priv->cur_filer_idx = priv->cur_filer_idx - 1;
694 if (ethflow & RXH_L4_B_2_3) {
695 fcr = RQFCR_PID_DPT | RQFCR_CMP_NOMATCH | RQFCR_HASH |
696 RQFCR_AND | RQFCR_HASHTBL_0;
697 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
698 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
699 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
700 priv->cur_filer_idx = priv->cur_filer_idx - 1;
704 static int gfar_ethflow_to_filer_table(struct gfar_private *priv, u64 ethflow,
707 unsigned int last_rule_idx = priv->cur_filer_idx;
708 unsigned int cmp_rqfpr;
709 unsigned int *local_rqfpr;
710 unsigned int *local_rqfcr;
711 int i = 0x0, k = 0x0;
712 int j = MAX_FILER_IDX, l = 0x0;
715 local_rqfpr = kmalloc_array(MAX_FILER_IDX + 1, sizeof(unsigned int),
717 local_rqfcr = kmalloc_array(MAX_FILER_IDX + 1, sizeof(unsigned int),
719 if (!local_rqfpr || !local_rqfcr) {
726 cmp_rqfpr = RQFPR_IPV4 |RQFPR_TCP;
729 cmp_rqfpr = RQFPR_IPV4 |RQFPR_UDP;
732 cmp_rqfpr = RQFPR_IPV6 |RQFPR_TCP;
735 cmp_rqfpr = RQFPR_IPV6 |RQFPR_UDP;
738 netdev_err(priv->ndev,
739 "Right now this class is not supported\n");
744 for (i = 0; i < MAX_FILER_IDX + 1; i++) {
745 local_rqfpr[j] = priv->ftp_rqfpr[i];
746 local_rqfcr[j] = priv->ftp_rqfcr[i];
748 if ((priv->ftp_rqfcr[i] ==
749 (RQFCR_PID_PARSE | RQFCR_CLE | RQFCR_AND)) &&
750 (priv->ftp_rqfpr[i] == cmp_rqfpr))
754 if (i == MAX_FILER_IDX + 1) {
755 netdev_err(priv->ndev,
756 "No parse rule found, can't create hash rules\n");
761 /* If a match was found, then it begins the starting of a cluster rule
762 * if it was already programmed, we need to overwrite these rules
764 for (l = i+1; l < MAX_FILER_IDX; l++) {
765 if ((priv->ftp_rqfcr[l] & RQFCR_CLE) &&
766 !(priv->ftp_rqfcr[l] & RQFCR_AND)) {
767 priv->ftp_rqfcr[l] = RQFCR_CLE | RQFCR_CMP_EXACT |
768 RQFCR_HASHTBL_0 | RQFCR_PID_MASK;
769 priv->ftp_rqfpr[l] = FPR_FILER_MASK;
770 gfar_write_filer(priv, l, priv->ftp_rqfcr[l],
775 if (!(priv->ftp_rqfcr[l] & RQFCR_CLE) &&
776 (priv->ftp_rqfcr[l] & RQFCR_AND))
779 local_rqfpr[j] = priv->ftp_rqfpr[l];
780 local_rqfcr[j] = priv->ftp_rqfcr[l];
785 priv->cur_filer_idx = l - 1;
789 ethflow_to_filer_rules(priv, ethflow);
791 /* Write back the popped out rules again */
792 for (k = j+1; k < MAX_FILER_IDX; k++) {
793 priv->ftp_rqfpr[priv->cur_filer_idx] = local_rqfpr[k];
794 priv->ftp_rqfcr[priv->cur_filer_idx] = local_rqfcr[k];
795 gfar_write_filer(priv, priv->cur_filer_idx,
796 local_rqfcr[k], local_rqfpr[k]);
797 if (!priv->cur_filer_idx)
799 priv->cur_filer_idx = priv->cur_filer_idx - 1;
808 static int gfar_set_hash_opts(struct gfar_private *priv,
809 struct ethtool_rxnfc *cmd)
811 /* write the filer rules here */
812 if (!gfar_ethflow_to_filer_table(priv, cmd->data, cmd->flow_type))
818 static int gfar_check_filer_hardware(struct gfar_private *priv)
820 struct gfar __iomem *regs = NULL;
823 regs = priv->gfargrp[0].regs;
825 /* Check if we are in FIFO mode */
826 i = gfar_read(®s->ecntrl);
828 if (i == ECNTRL_FIFM) {
829 netdev_notice(priv->ndev, "Interface in FIFO mode\n");
830 i = gfar_read(®s->rctrl);
831 i &= RCTRL_PRSDEP_MASK | RCTRL_PRSFM;
832 if (i == (RCTRL_PRSDEP_MASK | RCTRL_PRSFM)) {
833 netdev_info(priv->ndev,
834 "Receive Queue Filtering enabled\n");
836 netdev_warn(priv->ndev,
837 "Receive Queue Filtering disabled\n");
841 /* Or in standard mode */
843 i = gfar_read(®s->rctrl);
844 i &= RCTRL_PRSDEP_MASK;
845 if (i == RCTRL_PRSDEP_MASK) {
846 netdev_info(priv->ndev,
847 "Receive Queue Filtering enabled\n");
849 netdev_warn(priv->ndev,
850 "Receive Queue Filtering disabled\n");
855 /* Sets the properties for arbitrary filer rule
856 * to the first 4 Layer 4 Bytes
858 regs->rbifx = 0xC0C1C2C3;
862 static int gfar_comp_asc(const void *a, const void *b)
864 return memcmp(a, b, 4);
867 static int gfar_comp_desc(const void *a, const void *b)
869 return -memcmp(a, b, 4);
872 static void gfar_swap(void *a, void *b, int size)
883 /* Write a mask to filer cache */
884 static void gfar_set_mask(u32 mask, struct filer_table *tab)
886 tab->fe[tab->index].ctrl = RQFCR_AND | RQFCR_PID_MASK | RQFCR_CMP_EXACT;
887 tab->fe[tab->index].prop = mask;
891 /* Sets parse bits (e.g. IP or TCP) */
892 static void gfar_set_parse_bits(u32 value, u32 mask, struct filer_table *tab)
894 gfar_set_mask(mask, tab);
895 tab->fe[tab->index].ctrl = RQFCR_CMP_EXACT | RQFCR_PID_PARSE |
897 tab->fe[tab->index].prop = value;
901 static void gfar_set_general_attribute(u32 value, u32 mask, u32 flag,
902 struct filer_table *tab)
904 gfar_set_mask(mask, tab);
905 tab->fe[tab->index].ctrl = RQFCR_CMP_EXACT | RQFCR_AND | flag;
906 tab->fe[tab->index].prop = value;
910 /* For setting a tuple of value and mask of type flag
912 * IP-Src = 10.0.0.0/255.0.0.0
913 * value: 0x0A000000 mask: FF000000 flag: RQFPR_IPV4
915 * Ethtool gives us a value=0 and mask=~0 for don't care a tuple
916 * For a don't care mask it gives us a 0
918 * The check if don't care and the mask adjustment if mask=0 is done for VLAN
919 * and MAC stuff on an upper level (due to missing information on this level).
920 * For these guys we can discard them if they are value=0 and mask=0.
922 * Further the all masks are one-padded for better hardware efficiency.
924 static void gfar_set_attribute(u32 value, u32 mask, u32 flag,
925 struct filer_table *tab)
932 mask |= RQFCR_PID_PRI_MASK;
937 if (!~(mask | RQFCR_PID_L4P_MASK))
942 mask |= RQFCR_PID_L4P_MASK;
948 mask |= RQFCR_PID_VID_MASK;
954 if (!~(mask | RQFCR_PID_PORT_MASK))
959 mask |= RQFCR_PID_PORT_MASK;
968 mask |= RQFCR_PID_MAC_MASK;
970 /* for all real 32bit masks */
978 gfar_set_general_attribute(value, mask, flag, tab);
981 /* Translates value and mask for UDP, TCP or SCTP */
982 static void gfar_set_basic_ip(struct ethtool_tcpip4_spec *value,
983 struct ethtool_tcpip4_spec *mask,
984 struct filer_table *tab)
986 gfar_set_attribute(value->ip4src, mask->ip4src, RQFCR_PID_SIA, tab);
987 gfar_set_attribute(value->ip4dst, mask->ip4dst, RQFCR_PID_DIA, tab);
988 gfar_set_attribute(value->pdst, mask->pdst, RQFCR_PID_DPT, tab);
989 gfar_set_attribute(value->psrc, mask->psrc, RQFCR_PID_SPT, tab);
990 gfar_set_attribute(value->tos, mask->tos, RQFCR_PID_TOS, tab);
993 /* Translates value and mask for RAW-IP4 */
994 static void gfar_set_user_ip(struct ethtool_usrip4_spec *value,
995 struct ethtool_usrip4_spec *mask,
996 struct filer_table *tab)
998 gfar_set_attribute(value->ip4src, mask->ip4src, RQFCR_PID_SIA, tab);
999 gfar_set_attribute(value->ip4dst, mask->ip4dst, RQFCR_PID_DIA, tab);
1000 gfar_set_attribute(value->tos, mask->tos, RQFCR_PID_TOS, tab);
1001 gfar_set_attribute(value->proto, mask->proto, RQFCR_PID_L4P, tab);
1002 gfar_set_attribute(value->l4_4_bytes, mask->l4_4_bytes, RQFCR_PID_ARB,
1007 /* Translates value and mask for ETHER spec */
1008 static void gfar_set_ether(struct ethhdr *value, struct ethhdr *mask,
1009 struct filer_table *tab)
1011 u32 upper_temp_mask = 0;
1012 u32 lower_temp_mask = 0;
1014 /* Source address */
1015 if (!is_broadcast_ether_addr(mask->h_source)) {
1016 if (is_zero_ether_addr(mask->h_source)) {
1017 upper_temp_mask = 0xFFFFFFFF;
1018 lower_temp_mask = 0xFFFFFFFF;
1020 upper_temp_mask = mask->h_source[0] << 16 |
1021 mask->h_source[1] << 8 |
1023 lower_temp_mask = mask->h_source[3] << 16 |
1024 mask->h_source[4] << 8 |
1028 gfar_set_attribute(value->h_source[0] << 16 |
1029 value->h_source[1] << 8 |
1031 upper_temp_mask, RQFCR_PID_SAH, tab);
1032 /* And the same for the lower part */
1033 gfar_set_attribute(value->h_source[3] << 16 |
1034 value->h_source[4] << 8 |
1036 lower_temp_mask, RQFCR_PID_SAL, tab);
1038 /* Destination address */
1039 if (!is_broadcast_ether_addr(mask->h_dest)) {
1040 /* Special for destination is limited broadcast */
1041 if ((is_broadcast_ether_addr(value->h_dest) &&
1042 is_zero_ether_addr(mask->h_dest))) {
1043 gfar_set_parse_bits(RQFPR_EBC, RQFPR_EBC, tab);
1045 if (is_zero_ether_addr(mask->h_dest)) {
1046 upper_temp_mask = 0xFFFFFFFF;
1047 lower_temp_mask = 0xFFFFFFFF;
1049 upper_temp_mask = mask->h_dest[0] << 16 |
1050 mask->h_dest[1] << 8 |
1052 lower_temp_mask = mask->h_dest[3] << 16 |
1053 mask->h_dest[4] << 8 |
1058 gfar_set_attribute(value->h_dest[0] << 16 |
1059 value->h_dest[1] << 8 |
1061 upper_temp_mask, RQFCR_PID_DAH, tab);
1062 /* And the same for the lower part */
1063 gfar_set_attribute(value->h_dest[3] << 16 |
1064 value->h_dest[4] << 8 |
1066 lower_temp_mask, RQFCR_PID_DAL, tab);
1070 gfar_set_attribute(value->h_proto, mask->h_proto, RQFCR_PID_ETY, tab);
1073 /* Convert a rule to binary filter format of gianfar */
1074 static int gfar_convert_to_filer(struct ethtool_rx_flow_spec *rule,
1075 struct filer_table *tab)
1077 u32 vlan = 0, vlan_mask = 0;
1078 u32 id = 0, id_mask = 0;
1079 u32 cfi = 0, cfi_mask = 0;
1080 u32 prio = 0, prio_mask = 0;
1081 u32 old_index = tab->index;
1083 /* Check if vlan is wanted */
1084 if ((rule->flow_type & FLOW_EXT) && (rule->m_ext.vlan_tci != 0xFFFF)) {
1085 if (!rule->m_ext.vlan_tci)
1086 rule->m_ext.vlan_tci = 0xFFFF;
1089 vlan_mask = RQFPR_VLN;
1091 /* Separate the fields */
1092 id = rule->h_ext.vlan_tci & VLAN_VID_MASK;
1093 id_mask = rule->m_ext.vlan_tci & VLAN_VID_MASK;
1094 cfi = rule->h_ext.vlan_tci & VLAN_CFI_MASK;
1095 cfi_mask = rule->m_ext.vlan_tci & VLAN_CFI_MASK;
1096 prio = (rule->h_ext.vlan_tci & VLAN_PRIO_MASK) >>
1098 prio_mask = (rule->m_ext.vlan_tci & VLAN_PRIO_MASK) >>
1101 if (cfi == VLAN_TAG_PRESENT && cfi_mask == VLAN_TAG_PRESENT) {
1103 vlan_mask |= RQFPR_CFI;
1104 } else if (cfi != VLAN_TAG_PRESENT &&
1105 cfi_mask == VLAN_TAG_PRESENT) {
1106 vlan_mask |= RQFPR_CFI;
1110 switch (rule->flow_type & ~FLOW_EXT) {
1112 gfar_set_parse_bits(RQFPR_IPV4 | RQFPR_TCP | vlan,
1113 RQFPR_IPV4 | RQFPR_TCP | vlan_mask, tab);
1114 gfar_set_basic_ip(&rule->h_u.tcp_ip4_spec,
1115 &rule->m_u.tcp_ip4_spec, tab);
1118 gfar_set_parse_bits(RQFPR_IPV4 | RQFPR_UDP | vlan,
1119 RQFPR_IPV4 | RQFPR_UDP | vlan_mask, tab);
1120 gfar_set_basic_ip(&rule->h_u.udp_ip4_spec,
1121 &rule->m_u.udp_ip4_spec, tab);
1124 gfar_set_parse_bits(RQFPR_IPV4 | vlan, RQFPR_IPV4 | vlan_mask,
1126 gfar_set_attribute(132, 0, RQFCR_PID_L4P, tab);
1127 gfar_set_basic_ip((struct ethtool_tcpip4_spec *)&rule->h_u,
1128 (struct ethtool_tcpip4_spec *)&rule->m_u,
1132 gfar_set_parse_bits(RQFPR_IPV4 | vlan, RQFPR_IPV4 | vlan_mask,
1134 gfar_set_user_ip((struct ethtool_usrip4_spec *) &rule->h_u,
1135 (struct ethtool_usrip4_spec *) &rule->m_u,
1140 gfar_set_parse_bits(vlan, vlan_mask, tab);
1141 gfar_set_ether((struct ethhdr *) &rule->h_u,
1142 (struct ethhdr *) &rule->m_u, tab);
1148 /* Set the vlan attributes in the end */
1150 gfar_set_attribute(id, id_mask, RQFCR_PID_VID, tab);
1151 gfar_set_attribute(prio, prio_mask, RQFCR_PID_PRI, tab);
1154 /* If there has been nothing written till now, it must be a default */
1155 if (tab->index == old_index) {
1156 gfar_set_mask(0xFFFFFFFF, tab);
1157 tab->fe[tab->index].ctrl = 0x20;
1158 tab->fe[tab->index].prop = 0x0;
1162 /* Remove last AND */
1163 tab->fe[tab->index - 1].ctrl &= (~RQFCR_AND);
1165 /* Specify which queue to use or to drop */
1166 if (rule->ring_cookie == RX_CLS_FLOW_DISC)
1167 tab->fe[tab->index - 1].ctrl |= RQFCR_RJE;
1169 tab->fe[tab->index - 1].ctrl |= (rule->ring_cookie << 10);
1171 /* Only big enough entries can be clustered */
1172 if (tab->index > (old_index + 2)) {
1173 tab->fe[old_index + 1].ctrl |= RQFCR_CLE;
1174 tab->fe[tab->index - 1].ctrl |= RQFCR_CLE;
1177 /* In rare cases the cache can be full while there is
1180 if (tab->index > MAX_FILER_CACHE_IDX - 1)
1186 /* Copy size filer entries */
1187 static void gfar_copy_filer_entries(struct gfar_filer_entry dst[0],
1188 struct gfar_filer_entry src[0], s32 size)
1192 dst[size].ctrl = src[size].ctrl;
1193 dst[size].prop = src[size].prop;
1197 /* Delete the contents of the filer-table between start and end
1200 static int gfar_trim_filer_entries(u32 begin, u32 end, struct filer_table *tab)
1204 if (end > MAX_FILER_CACHE_IDX || end < begin)
1208 length = end - begin;
1211 while (end < tab->index) {
1212 tab->fe[begin].ctrl = tab->fe[end].ctrl;
1213 tab->fe[begin++].prop = tab->fe[end++].prop;
1216 /* Fill up with don't cares */
1217 while (begin < tab->index) {
1218 tab->fe[begin].ctrl = 0x60;
1219 tab->fe[begin].prop = 0xFFFFFFFF;
1223 tab->index -= length;
1227 /* Make space on the wanted location */
1228 static int gfar_expand_filer_entries(u32 begin, u32 length,
1229 struct filer_table *tab)
1231 if (length == 0 || length + tab->index > MAX_FILER_CACHE_IDX ||
1232 begin > MAX_FILER_CACHE_IDX)
1235 gfar_copy_filer_entries(&(tab->fe[begin + length]), &(tab->fe[begin]),
1236 tab->index - length + 1);
1238 tab->index += length;
1242 static int gfar_get_next_cluster_start(int start, struct filer_table *tab)
1244 for (; (start < tab->index) && (start < MAX_FILER_CACHE_IDX - 1);
1246 if ((tab->fe[start].ctrl & (RQFCR_AND | RQFCR_CLE)) ==
1247 (RQFCR_AND | RQFCR_CLE))
1253 static int gfar_get_next_cluster_end(int start, struct filer_table *tab)
1255 for (; (start < tab->index) && (start < MAX_FILER_CACHE_IDX - 1);
1257 if ((tab->fe[start].ctrl & (RQFCR_AND | RQFCR_CLE)) ==
1264 /* Uses hardwares clustering option to reduce
1265 * the number of filer table entries
1267 static void gfar_cluster_filer(struct filer_table *tab)
1269 s32 i = -1, j, iend, jend;
1271 while ((i = gfar_get_next_cluster_start(++i, tab)) != -1) {
1273 while ((j = gfar_get_next_cluster_start(++j, tab)) != -1) {
1274 /* The cluster entries self and the previous one
1275 * (a mask) must be identical!
1277 if (tab->fe[i].ctrl != tab->fe[j].ctrl)
1279 if (tab->fe[i].prop != tab->fe[j].prop)
1281 if (tab->fe[i - 1].ctrl != tab->fe[j - 1].ctrl)
1283 if (tab->fe[i - 1].prop != tab->fe[j - 1].prop)
1285 iend = gfar_get_next_cluster_end(i, tab);
1286 jend = gfar_get_next_cluster_end(j, tab);
1287 if (jend == -1 || iend == -1)
1290 /* First we make some free space, where our cluster
1291 * element should be. Then we copy it there and finally
1292 * delete in from its old location.
1294 if (gfar_expand_filer_entries(iend, (jend - j), tab) ==
1298 gfar_copy_filer_entries(&(tab->fe[iend + 1]),
1299 &(tab->fe[jend + 1]), jend - j);
1301 if (gfar_trim_filer_entries(jend - 1,
1306 /* Mask out cluster bit */
1307 tab->fe[iend].ctrl &= ~(RQFCR_CLE);
1312 /* Swaps the masked bits of a1<>a2 and b1<>b2 */
1313 static void gfar_swap_bits(struct gfar_filer_entry *a1,
1314 struct gfar_filer_entry *a2,
1315 struct gfar_filer_entry *b1,
1316 struct gfar_filer_entry *b2, u32 mask)
1319 temp[0] = a1->ctrl & mask;
1320 temp[1] = a2->ctrl & mask;
1321 temp[2] = b1->ctrl & mask;
1322 temp[3] = b2->ctrl & mask;
1329 a1->ctrl |= temp[1];
1330 a2->ctrl |= temp[0];
1331 b1->ctrl |= temp[3];
1332 b2->ctrl |= temp[2];
1335 /* Generate a list consisting of masks values with their start and
1336 * end of validity and block as indicator for parts belonging
1337 * together (glued by ANDs) in mask_table
1339 static u32 gfar_generate_mask_table(struct gfar_mask_entry *mask_table,
1340 struct filer_table *tab)
1342 u32 i, and_index = 0, block_index = 1;
1344 for (i = 0; i < tab->index; i++) {
1346 /* LSByte of control = 0 sets a mask */
1347 if (!(tab->fe[i].ctrl & 0xF)) {
1348 mask_table[and_index].mask = tab->fe[i].prop;
1349 mask_table[and_index].start = i;
1350 mask_table[and_index].block = block_index;
1352 mask_table[and_index - 1].end = i - 1;
1355 /* cluster starts and ends will be separated because they should
1356 * hold their position
1358 if (tab->fe[i].ctrl & RQFCR_CLE)
1360 /* A not set AND indicates the end of a depended block */
1361 if (!(tab->fe[i].ctrl & RQFCR_AND))
1365 mask_table[and_index - 1].end = i - 1;
1370 /* Sorts the entries of mask_table by the values of the masks.
1371 * Important: The 0xFF80 flags of the first and last entry of a
1372 * block must hold their position (which queue, CLusterEnable, ReJEct,
1375 static void gfar_sort_mask_table(struct gfar_mask_entry *mask_table,
1376 struct filer_table *temp_table, u32 and_index)
1378 /* Pointer to compare function (_asc or _desc) */
1379 int (*gfar_comp)(const void *, const void *);
1381 u32 i, size = 0, start = 0, prev = 1;
1382 u32 old_first, old_last, new_first, new_last;
1384 gfar_comp = &gfar_comp_desc;
1386 for (i = 0; i < and_index; i++) {
1387 if (prev != mask_table[i].block) {
1388 old_first = mask_table[start].start + 1;
1389 old_last = mask_table[i - 1].end;
1390 sort(mask_table + start, size,
1391 sizeof(struct gfar_mask_entry),
1392 gfar_comp, &gfar_swap);
1394 /* Toggle order for every block. This makes the
1395 * thing more efficient!
1397 if (gfar_comp == gfar_comp_desc)
1398 gfar_comp = &gfar_comp_asc;
1400 gfar_comp = &gfar_comp_desc;
1402 new_first = mask_table[start].start + 1;
1403 new_last = mask_table[i - 1].end;
1405 gfar_swap_bits(&temp_table->fe[new_first],
1406 &temp_table->fe[old_first],
1407 &temp_table->fe[new_last],
1408 &temp_table->fe[old_last],
1409 RQFCR_QUEUE | RQFCR_CLE |
1410 RQFCR_RJE | RQFCR_AND);
1416 prev = mask_table[i].block;
1420 /* Reduces the number of masks needed in the filer table to save entries
1421 * This is done by sorting the masks of a depended block. A depended block is
1422 * identified by gluing ANDs or CLE. The sorting order toggles after every
1423 * block. Of course entries in scope of a mask must change their location with
1426 static int gfar_optimize_filer_masks(struct filer_table *tab)
1428 struct filer_table *temp_table;
1429 struct gfar_mask_entry *mask_table;
1431 u32 and_index = 0, previous_mask = 0, i = 0, j = 0, size = 0;
1434 /* We need a copy of the filer table because
1435 * we want to change its order
1437 temp_table = kmemdup(tab, sizeof(*temp_table), GFP_KERNEL);
1438 if (temp_table == NULL)
1441 mask_table = kcalloc(MAX_FILER_CACHE_IDX / 2 + 1,
1442 sizeof(struct gfar_mask_entry), GFP_KERNEL);
1444 if (mask_table == NULL) {
1449 and_index = gfar_generate_mask_table(mask_table, tab);
1451 gfar_sort_mask_table(mask_table, temp_table, and_index);
1453 /* Now we can copy the data from our duplicated filer table to
1454 * the real one in the order the mask table says
1456 for (i = 0; i < and_index; i++) {
1457 size = mask_table[i].end - mask_table[i].start + 1;
1458 gfar_copy_filer_entries(&(tab->fe[j]),
1459 &(temp_table->fe[mask_table[i].start]), size);
1463 /* And finally we just have to check for duplicated masks and drop the
1466 for (i = 0; i < tab->index && i < MAX_FILER_CACHE_IDX; i++) {
1467 if (tab->fe[i].ctrl == 0x80) {
1468 previous_mask = i++;
1472 for (; i < tab->index && i < MAX_FILER_CACHE_IDX; i++) {
1473 if (tab->fe[i].ctrl == 0x80) {
1474 if (tab->fe[i].prop == tab->fe[previous_mask].prop) {
1475 /* Two identical ones found!
1476 * So drop the second one!
1478 gfar_trim_filer_entries(i, i, tab);
1480 /* Not identical! */
1486 end: kfree(temp_table);
1490 /* Write the bit-pattern from software's buffer to hardware registers */
1491 static int gfar_write_filer_table(struct gfar_private *priv,
1492 struct filer_table *tab)
1495 if (tab->index > MAX_FILER_IDX - 1)
1498 /* Avoid inconsistent filer table to be processed */
1501 /* Fill regular entries */
1502 for (; i < MAX_FILER_IDX - 1 && (tab->fe[i].ctrl | tab->fe[i].ctrl);
1504 gfar_write_filer(priv, i, tab->fe[i].ctrl, tab->fe[i].prop);
1505 /* Fill the rest with fall-troughs */
1506 for (; i < MAX_FILER_IDX - 1; i++)
1507 gfar_write_filer(priv, i, 0x60, 0xFFFFFFFF);
1508 /* Last entry must be default accept
1509 * because that's what people expect
1511 gfar_write_filer(priv, i, 0x20, 0x0);
1518 static int gfar_check_capability(struct ethtool_rx_flow_spec *flow,
1519 struct gfar_private *priv)
1522 if (flow->flow_type & FLOW_EXT) {
1523 if (~flow->m_ext.data[0] || ~flow->m_ext.data[1])
1524 netdev_warn(priv->ndev,
1525 "User-specific data not supported!\n");
1526 if (~flow->m_ext.vlan_etype)
1527 netdev_warn(priv->ndev,
1528 "VLAN-etype not supported!\n");
1530 if (flow->flow_type == IP_USER_FLOW)
1531 if (flow->h_u.usr_ip4_spec.ip_ver != ETH_RX_NFC_IP4)
1532 netdev_warn(priv->ndev,
1533 "IP-Version differing from IPv4 not supported!\n");
1538 static int gfar_process_filer_changes(struct gfar_private *priv)
1540 struct ethtool_flow_spec_container *j;
1541 struct filer_table *tab;
1545 /* So index is set to zero, too! */
1546 tab = kzalloc(sizeof(*tab), GFP_KERNEL);
1550 /* Now convert the existing filer data from flow_spec into
1551 * filer tables binary format
1553 list_for_each_entry(j, &priv->rx_list.list, list) {
1554 ret = gfar_convert_to_filer(&j->fs, tab);
1555 if (ret == -EBUSY) {
1556 netdev_err(priv->ndev,
1557 "Rule not added: No free space!\n");
1561 netdev_err(priv->ndev,
1562 "Rule not added: Unsupported Flow-type!\n");
1569 /* Optimizations to save entries */
1570 gfar_cluster_filer(tab);
1571 gfar_optimize_filer_masks(tab);
1573 pr_debug("\tSummary:\n"
1574 "\tData on hardware: %d\n"
1575 "\tCompression rate: %d%%\n",
1576 tab->index, 100 - (100 * tab->index) / i);
1578 /* Write everything to hardware */
1579 ret = gfar_write_filer_table(priv, tab);
1580 if (ret == -EBUSY) {
1581 netdev_err(priv->ndev, "Rule not added: No free space!\n");
1590 static void gfar_invert_masks(struct ethtool_rx_flow_spec *flow)
1594 for (i = 0; i < sizeof(flow->m_u); i++)
1595 flow->m_u.hdata[i] ^= 0xFF;
1597 flow->m_ext.vlan_etype ^= 0xFFFF;
1598 flow->m_ext.vlan_tci ^= 0xFFFF;
1599 flow->m_ext.data[0] ^= ~0;
1600 flow->m_ext.data[1] ^= ~0;
1603 static int gfar_add_cls(struct gfar_private *priv,
1604 struct ethtool_rx_flow_spec *flow)
1606 struct ethtool_flow_spec_container *temp, *comp;
1609 temp = kmalloc(sizeof(*temp), GFP_KERNEL);
1612 memcpy(&temp->fs, flow, sizeof(temp->fs));
1614 gfar_invert_masks(&temp->fs);
1615 ret = gfar_check_capability(&temp->fs, priv);
1618 /* Link in the new element at the right @location */
1619 if (list_empty(&priv->rx_list.list)) {
1620 ret = gfar_check_filer_hardware(priv);
1623 list_add(&temp->list, &priv->rx_list.list);
1626 list_for_each_entry(comp, &priv->rx_list.list, list) {
1627 if (comp->fs.location > flow->location) {
1628 list_add_tail(&temp->list, &comp->list);
1631 if (comp->fs.location == flow->location) {
1632 netdev_err(priv->ndev,
1633 "Rule not added: ID %d not free!\n",
1639 list_add_tail(&temp->list, &priv->rx_list.list);
1643 ret = gfar_process_filer_changes(priv);
1646 priv->rx_list.count++;
1650 list_del(&temp->list);
1656 static int gfar_del_cls(struct gfar_private *priv, u32 loc)
1658 struct ethtool_flow_spec_container *comp;
1661 if (list_empty(&priv->rx_list.list))
1664 list_for_each_entry(comp, &priv->rx_list.list, list) {
1665 if (comp->fs.location == loc) {
1666 list_del(&comp->list);
1668 priv->rx_list.count--;
1669 gfar_process_filer_changes(priv);
1678 static int gfar_get_cls(struct gfar_private *priv, struct ethtool_rxnfc *cmd)
1680 struct ethtool_flow_spec_container *comp;
1683 list_for_each_entry(comp, &priv->rx_list.list, list) {
1684 if (comp->fs.location == cmd->fs.location) {
1685 memcpy(&cmd->fs, &comp->fs, sizeof(cmd->fs));
1686 gfar_invert_masks(&cmd->fs);
1695 static int gfar_get_cls_all(struct gfar_private *priv,
1696 struct ethtool_rxnfc *cmd, u32 *rule_locs)
1698 struct ethtool_flow_spec_container *comp;
1701 list_for_each_entry(comp, &priv->rx_list.list, list) {
1702 if (i == cmd->rule_cnt)
1704 rule_locs[i] = comp->fs.location;
1708 cmd->data = MAX_FILER_IDX;
1714 static int gfar_set_nfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
1716 struct gfar_private *priv = netdev_priv(dev);
1719 mutex_lock(&priv->rx_queue_access);
1723 ret = gfar_set_hash_opts(priv, cmd);
1725 case ETHTOOL_SRXCLSRLINS:
1726 if ((cmd->fs.ring_cookie != RX_CLS_FLOW_DISC &&
1727 cmd->fs.ring_cookie >= priv->num_rx_queues) ||
1728 cmd->fs.location >= MAX_FILER_IDX) {
1732 ret = gfar_add_cls(priv, &cmd->fs);
1734 case ETHTOOL_SRXCLSRLDEL:
1735 ret = gfar_del_cls(priv, cmd->fs.location);
1741 mutex_unlock(&priv->rx_queue_access);
1746 static int gfar_get_nfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
1749 struct gfar_private *priv = netdev_priv(dev);
1753 case ETHTOOL_GRXRINGS:
1754 cmd->data = priv->num_rx_queues;
1756 case ETHTOOL_GRXCLSRLCNT:
1757 cmd->rule_cnt = priv->rx_list.count;
1759 case ETHTOOL_GRXCLSRULE:
1760 ret = gfar_get_cls(priv, cmd);
1762 case ETHTOOL_GRXCLSRLALL:
1763 ret = gfar_get_cls_all(priv, cmd, rule_locs);
1773 int gfar_phc_index = -1;
1774 EXPORT_SYMBOL(gfar_phc_index);
1776 static int gfar_get_ts_info(struct net_device *dev,
1777 struct ethtool_ts_info *info)
1779 struct gfar_private *priv = netdev_priv(dev);
1781 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER)) {
1782 info->so_timestamping = SOF_TIMESTAMPING_RX_SOFTWARE |
1783 SOF_TIMESTAMPING_SOFTWARE;
1784 info->phc_index = -1;
1787 info->so_timestamping = SOF_TIMESTAMPING_TX_HARDWARE |
1788 SOF_TIMESTAMPING_RX_HARDWARE |
1789 SOF_TIMESTAMPING_RAW_HARDWARE;
1790 info->phc_index = gfar_phc_index;
1791 info->tx_types = (1 << HWTSTAMP_TX_OFF) |
1792 (1 << HWTSTAMP_TX_ON);
1793 info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) |
1794 (1 << HWTSTAMP_FILTER_ALL);
1798 const struct ethtool_ops gfar_ethtool_ops = {
1799 .get_settings = gfar_gsettings,
1800 .set_settings = gfar_ssettings,
1801 .get_drvinfo = gfar_gdrvinfo,
1802 .get_regs_len = gfar_reglen,
1803 .get_regs = gfar_get_regs,
1804 .get_link = ethtool_op_get_link,
1805 .get_coalesce = gfar_gcoalesce,
1806 .set_coalesce = gfar_scoalesce,
1807 .get_ringparam = gfar_gringparam,
1808 .set_ringparam = gfar_sringparam,
1809 .get_strings = gfar_gstrings,
1810 .get_sset_count = gfar_sset_count,
1811 .get_ethtool_stats = gfar_fill_stats,
1812 .get_msglevel = gfar_get_msglevel,
1813 .set_msglevel = gfar_set_msglevel,
1815 .get_wol = gfar_get_wol,
1816 .set_wol = gfar_set_wol,
1818 .set_rxnfc = gfar_set_nfc,
1819 .get_rxnfc = gfar_get_nfc,
1820 .get_ts_info = gfar_get_ts_info,