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/delay.h>
26 #include <linux/netdevice.h>
27 #include <linux/etherdevice.h>
28 #include <linux/net_tstamp.h>
29 #include <linux/skbuff.h>
30 #include <linux/spinlock.h>
35 #include <asm/uaccess.h>
36 #include <linux/module.h>
37 #include <linux/crc32.h>
38 #include <asm/types.h>
39 #include <linux/ethtool.h>
40 #include <linux/mii.h>
41 #include <linux/phy.h>
42 #include <linux/sort.h>
43 #include <linux/if_vlan.h>
47 #define GFAR_MAX_COAL_USECS 0xffff
48 #define GFAR_MAX_COAL_FRAMES 0xff
49 static void gfar_fill_stats(struct net_device *dev, struct ethtool_stats *dummy,
51 static void gfar_gstrings(struct net_device *dev, u32 stringset, u8 * buf);
52 static int gfar_gcoalesce(struct net_device *dev,
53 struct ethtool_coalesce *cvals);
54 static int gfar_scoalesce(struct net_device *dev,
55 struct ethtool_coalesce *cvals);
56 static void gfar_gringparam(struct net_device *dev,
57 struct ethtool_ringparam *rvals);
58 static int gfar_sringparam(struct net_device *dev,
59 struct ethtool_ringparam *rvals);
60 static void gfar_gdrvinfo(struct net_device *dev,
61 struct ethtool_drvinfo *drvinfo);
63 static const char stat_gstrings[][ETH_GSTRING_LEN] = {
64 "rx-large-frame-errors",
65 "rx-short-frame-errors",
66 "rx-non-octet-errors",
71 "rx-truncated-frames",
75 "rx-skb-missing-errors",
78 "tx-rx-65-127-frames",
79 "tx-rx-128-255-frames",
80 "tx-rx-256-511-frames",
81 "tx-rx-512-1023-frames",
82 "tx-rx-1024-1518-frames",
83 "tx-rx-1519-1522-good-vlan",
87 "receive-multicast-packet",
88 "receive-broadcast-packet",
89 "rx-control-frame-packets",
90 "rx-pause-frame-packets",
93 "rx-frame-length-error",
95 "rx-carrier-sense-error",
96 "rx-undersize-packets",
97 "rx-oversize-packets",
98 "rx-fragmented-frames",
103 "tx-multicast-packets",
104 "tx-broadcast-packets",
105 "tx-pause-control-frames",
106 "tx-deferral-packets",
107 "tx-excessive-deferral-packets",
108 "tx-single-collision-packets",
109 "tx-multiple-collision-packets",
110 "tx-late-collision-packets",
111 "tx-excessive-collision-packets",
112 "tx-total-collision",
118 "tx-oversize-frames",
119 "tx-undersize-frames",
120 "tx-fragmented-frames",
123 /* Fill in a buffer with the strings which correspond to the
125 static void gfar_gstrings(struct net_device *dev, u32 stringset, u8 * buf)
127 struct gfar_private *priv = netdev_priv(dev);
129 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON)
130 memcpy(buf, stat_gstrings, GFAR_STATS_LEN * ETH_GSTRING_LEN);
132 memcpy(buf, stat_gstrings,
133 GFAR_EXTRA_STATS_LEN * ETH_GSTRING_LEN);
136 /* Fill in an array of 64-bit statistics from various sources.
137 * This array will be appended to the end of the ethtool_stats
138 * structure, and returned to user space
140 static void gfar_fill_stats(struct net_device *dev, struct ethtool_stats *dummy,
144 struct gfar_private *priv = netdev_priv(dev);
145 struct gfar __iomem *regs = priv->gfargrp[0].regs;
146 atomic64_t *extra = (atomic64_t *)&priv->extra_stats;
148 for (i = 0; i < GFAR_EXTRA_STATS_LEN; i++)
149 buf[i] = atomic64_read(&extra[i]);
151 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
152 u32 __iomem *rmon = (u32 __iomem *) ®s->rmon;
154 for (; i < GFAR_STATS_LEN; i++, rmon++)
155 buf[i] = (u64) gfar_read(rmon);
159 static int gfar_sset_count(struct net_device *dev, int sset)
161 struct gfar_private *priv = netdev_priv(dev);
165 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON)
166 return GFAR_STATS_LEN;
168 return GFAR_EXTRA_STATS_LEN;
174 /* Fills in the drvinfo structure with some basic info */
175 static void gfar_gdrvinfo(struct net_device *dev,
176 struct ethtool_drvinfo *drvinfo)
178 strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver));
179 strlcpy(drvinfo->version, gfar_driver_version,
180 sizeof(drvinfo->version));
181 strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
182 strlcpy(drvinfo->bus_info, "N/A", sizeof(drvinfo->bus_info));
183 drvinfo->regdump_len = 0;
184 drvinfo->eedump_len = 0;
188 static int gfar_ssettings(struct net_device *dev, struct ethtool_cmd *cmd)
190 struct gfar_private *priv = netdev_priv(dev);
191 struct phy_device *phydev = priv->phydev;
196 return phy_ethtool_sset(phydev, cmd);
200 /* Return the current settings in the ethtool_cmd structure */
201 static int gfar_gsettings(struct net_device *dev, struct ethtool_cmd *cmd)
203 struct gfar_private *priv = netdev_priv(dev);
204 struct phy_device *phydev = priv->phydev;
205 struct gfar_priv_rx_q *rx_queue = NULL;
206 struct gfar_priv_tx_q *tx_queue = NULL;
210 tx_queue = priv->tx_queue[0];
211 rx_queue = priv->rx_queue[0];
213 /* etsec-1.7 and older versions have only one txic
214 * and rxic regs although they support multiple queues */
215 cmd->maxtxpkt = get_icft_value(tx_queue->txic);
216 cmd->maxrxpkt = get_icft_value(rx_queue->rxic);
218 return phy_ethtool_gset(phydev, cmd);
221 /* Return the length of the register structure */
222 static int gfar_reglen(struct net_device *dev)
224 return sizeof (struct gfar);
227 /* Return a dump of the GFAR register space */
228 static void gfar_get_regs(struct net_device *dev, struct ethtool_regs *regs,
232 struct gfar_private *priv = netdev_priv(dev);
233 u32 __iomem *theregs = (u32 __iomem *) priv->gfargrp[0].regs;
234 u32 *buf = (u32 *) regbuf;
236 for (i = 0; i < sizeof (struct gfar) / sizeof (u32); i++)
237 buf[i] = gfar_read(&theregs[i]);
240 /* Convert microseconds to ethernet clock ticks, which changes
241 * depending on what speed the controller is running at */
242 static unsigned int gfar_usecs2ticks(struct gfar_private *priv,
247 /* The timer is different, depending on the interface speed */
248 switch (priv->phydev->speed) {
250 count = GFAR_GBIT_TIME;
253 count = GFAR_100_TIME;
257 count = GFAR_10_TIME;
261 /* Make sure we return a number greater than 0
263 return (usecs * 1000 + count - 1) / count;
266 /* Convert ethernet clock ticks to microseconds */
267 static unsigned int gfar_ticks2usecs(struct gfar_private *priv,
272 /* The timer is different, depending on the interface speed */
273 switch (priv->phydev->speed) {
275 count = GFAR_GBIT_TIME;
278 count = GFAR_100_TIME;
282 count = GFAR_10_TIME;
286 /* Make sure we return a number greater than 0 */
287 /* if ticks is > 0 */
288 return (ticks * count) / 1000;
291 /* Get the coalescing parameters, and put them in the cvals
293 static int gfar_gcoalesce(struct net_device *dev,
294 struct ethtool_coalesce *cvals)
296 struct gfar_private *priv = netdev_priv(dev);
297 struct gfar_priv_rx_q *rx_queue = NULL;
298 struct gfar_priv_tx_q *tx_queue = NULL;
299 unsigned long rxtime;
300 unsigned long rxcount;
301 unsigned long txtime;
302 unsigned long txcount;
304 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_COALESCE))
307 if (NULL == priv->phydev)
310 rx_queue = priv->rx_queue[0];
311 tx_queue = priv->tx_queue[0];
313 rxtime = get_ictt_value(rx_queue->rxic);
314 rxcount = get_icft_value(rx_queue->rxic);
315 txtime = get_ictt_value(tx_queue->txic);
316 txcount = get_icft_value(tx_queue->txic);
317 cvals->rx_coalesce_usecs = gfar_ticks2usecs(priv, rxtime);
318 cvals->rx_max_coalesced_frames = rxcount;
320 cvals->tx_coalesce_usecs = gfar_ticks2usecs(priv, txtime);
321 cvals->tx_max_coalesced_frames = txcount;
323 cvals->use_adaptive_rx_coalesce = 0;
324 cvals->use_adaptive_tx_coalesce = 0;
326 cvals->pkt_rate_low = 0;
327 cvals->rx_coalesce_usecs_low = 0;
328 cvals->rx_max_coalesced_frames_low = 0;
329 cvals->tx_coalesce_usecs_low = 0;
330 cvals->tx_max_coalesced_frames_low = 0;
332 /* When the packet rate is below pkt_rate_high but above
333 * pkt_rate_low (both measured in packets per second) the
334 * normal {rx,tx}_* coalescing parameters are used.
337 /* When the packet rate is (measured in packets per second)
338 * is above pkt_rate_high, the {rx,tx}_*_high parameters are
341 cvals->pkt_rate_high = 0;
342 cvals->rx_coalesce_usecs_high = 0;
343 cvals->rx_max_coalesced_frames_high = 0;
344 cvals->tx_coalesce_usecs_high = 0;
345 cvals->tx_max_coalesced_frames_high = 0;
347 /* How often to do adaptive coalescing packet rate sampling,
348 * measured in seconds. Must not be zero.
350 cvals->rate_sample_interval = 0;
355 /* Change the coalescing values.
356 * Both cvals->*_usecs and cvals->*_frames have to be > 0
357 * in order for coalescing to be active
359 static int gfar_scoalesce(struct net_device *dev,
360 struct ethtool_coalesce *cvals)
362 struct gfar_private *priv = netdev_priv(dev);
365 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_COALESCE))
368 if (NULL == priv->phydev)
371 /* Check the bounds of the values */
372 if (cvals->rx_coalesce_usecs > GFAR_MAX_COAL_USECS) {
373 netdev_info(dev, "Coalescing is limited to %d microseconds\n",
374 GFAR_MAX_COAL_USECS);
378 if (cvals->rx_max_coalesced_frames > GFAR_MAX_COAL_FRAMES) {
379 netdev_info(dev, "Coalescing is limited to %d frames\n",
380 GFAR_MAX_COAL_FRAMES);
384 /* Check the bounds of the values */
385 if (cvals->tx_coalesce_usecs > GFAR_MAX_COAL_USECS) {
386 netdev_info(dev, "Coalescing is limited to %d microseconds\n",
387 GFAR_MAX_COAL_USECS);
391 if (cvals->tx_max_coalesced_frames > GFAR_MAX_COAL_FRAMES) {
392 netdev_info(dev, "Coalescing is limited to %d frames\n",
393 GFAR_MAX_COAL_FRAMES);
397 while (test_and_set_bit_lock(GFAR_RESETTING, &priv->state))
400 /* Set up rx coalescing */
401 if ((cvals->rx_coalesce_usecs == 0) ||
402 (cvals->rx_max_coalesced_frames == 0)) {
403 for (i = 0; i < priv->num_rx_queues; i++)
404 priv->rx_queue[i]->rxcoalescing = 0;
406 for (i = 0; i < priv->num_rx_queues; i++)
407 priv->rx_queue[i]->rxcoalescing = 1;
410 for (i = 0; i < priv->num_rx_queues; i++) {
411 priv->rx_queue[i]->rxic = mk_ic_value(
412 cvals->rx_max_coalesced_frames,
413 gfar_usecs2ticks(priv, cvals->rx_coalesce_usecs));
416 /* Set up tx coalescing */
417 if ((cvals->tx_coalesce_usecs == 0) ||
418 (cvals->tx_max_coalesced_frames == 0)) {
419 for (i = 0; i < priv->num_tx_queues; i++)
420 priv->tx_queue[i]->txcoalescing = 0;
422 for (i = 0; i < priv->num_tx_queues; i++)
423 priv->tx_queue[i]->txcoalescing = 1;
426 for (i = 0; i < priv->num_tx_queues; i++) {
427 priv->tx_queue[i]->txic = mk_ic_value(
428 cvals->tx_max_coalesced_frames,
429 gfar_usecs2ticks(priv, cvals->tx_coalesce_usecs));
432 if (dev->flags & IFF_UP) {
434 err = startup_gfar(dev);
436 gfar_mac_reset(priv);
439 clear_bit_unlock(GFAR_RESETTING, &priv->state);
444 /* Fills in rvals with the current ring parameters. Currently,
445 * rx, rx_mini, and rx_jumbo rings are the same size, as mini and
446 * jumbo are ignored by the driver */
447 static void gfar_gringparam(struct net_device *dev,
448 struct ethtool_ringparam *rvals)
450 struct gfar_private *priv = netdev_priv(dev);
451 struct gfar_priv_tx_q *tx_queue = NULL;
452 struct gfar_priv_rx_q *rx_queue = NULL;
454 tx_queue = priv->tx_queue[0];
455 rx_queue = priv->rx_queue[0];
457 rvals->rx_max_pending = GFAR_RX_MAX_RING_SIZE;
458 rvals->rx_mini_max_pending = GFAR_RX_MAX_RING_SIZE;
459 rvals->rx_jumbo_max_pending = GFAR_RX_MAX_RING_SIZE;
460 rvals->tx_max_pending = GFAR_TX_MAX_RING_SIZE;
462 /* Values changeable by the user. The valid values are
463 * in the range 1 to the "*_max_pending" counterpart above.
465 rvals->rx_pending = rx_queue->rx_ring_size;
466 rvals->rx_mini_pending = rx_queue->rx_ring_size;
467 rvals->rx_jumbo_pending = rx_queue->rx_ring_size;
468 rvals->tx_pending = tx_queue->tx_ring_size;
471 /* Change the current ring parameters, stopping the controller if
472 * necessary so that we don't mess things up while we're in motion.
474 static int gfar_sringparam(struct net_device *dev,
475 struct ethtool_ringparam *rvals)
477 struct gfar_private *priv = netdev_priv(dev);
480 if (rvals->rx_pending > GFAR_RX_MAX_RING_SIZE)
483 if (!is_power_of_2(rvals->rx_pending)) {
484 netdev_err(dev, "Ring sizes must be a power of 2\n");
488 if (rvals->tx_pending > GFAR_TX_MAX_RING_SIZE)
491 if (!is_power_of_2(rvals->tx_pending)) {
492 netdev_err(dev, "Ring sizes must be a power of 2\n");
496 while (test_and_set_bit_lock(GFAR_RESETTING, &priv->state))
499 if (dev->flags & IFF_UP)
502 /* Change the sizes */
503 for (i = 0; i < priv->num_rx_queues; i++)
504 priv->rx_queue[i]->rx_ring_size = rvals->rx_pending;
506 for (i = 0; i < priv->num_tx_queues; i++)
507 priv->tx_queue[i]->tx_ring_size = rvals->tx_pending;
509 /* Rebuild the rings with the new size */
510 if (dev->flags & IFF_UP)
511 err = startup_gfar(dev);
513 clear_bit_unlock(GFAR_RESETTING, &priv->state);
518 static void gfar_gpauseparam(struct net_device *dev,
519 struct ethtool_pauseparam *epause)
521 struct gfar_private *priv = netdev_priv(dev);
523 epause->autoneg = !!priv->pause_aneg_en;
524 epause->rx_pause = !!priv->rx_pause_en;
525 epause->tx_pause = !!priv->tx_pause_en;
528 static int gfar_spauseparam(struct net_device *dev,
529 struct ethtool_pauseparam *epause)
531 struct gfar_private *priv = netdev_priv(dev);
532 struct phy_device *phydev = priv->phydev;
533 struct gfar __iomem *regs = priv->gfargrp[0].regs;
536 if (!(phydev->supported & SUPPORTED_Pause) ||
537 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
538 (epause->rx_pause != epause->tx_pause)))
541 priv->rx_pause_en = priv->tx_pause_en = 0;
542 if (epause->rx_pause) {
543 priv->rx_pause_en = 1;
545 if (epause->tx_pause) {
546 priv->tx_pause_en = 1;
547 /* FLOW_CTRL_RX & TX */
548 newadv = ADVERTISED_Pause;
549 } else /* FLOW_CTLR_RX */
550 newadv = ADVERTISED_Pause | ADVERTISED_Asym_Pause;
551 } else if (epause->tx_pause) {
552 priv->tx_pause_en = 1;
554 newadv = ADVERTISED_Asym_Pause;
559 priv->pause_aneg_en = 1;
561 priv->pause_aneg_en = 0;
563 oldadv = phydev->advertising &
564 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
565 if (oldadv != newadv) {
566 phydev->advertising &=
567 ~(ADVERTISED_Pause | ADVERTISED_Asym_Pause);
568 phydev->advertising |= newadv;
570 /* inform link partner of our
571 * new flow ctrl settings
573 return phy_start_aneg(phydev);
575 if (!epause->autoneg) {
577 tempval = gfar_read(®s->maccfg1);
578 tempval &= ~(MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
579 if (priv->tx_pause_en)
580 tempval |= MACCFG1_TX_FLOW;
581 if (priv->rx_pause_en)
582 tempval |= MACCFG1_RX_FLOW;
583 gfar_write(®s->maccfg1, tempval);
590 int gfar_set_features(struct net_device *dev, netdev_features_t features)
592 netdev_features_t changed = dev->features ^ features;
593 struct gfar_private *priv = netdev_priv(dev);
596 if (!(changed & (NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX |
600 while (test_and_set_bit_lock(GFAR_RESETTING, &priv->state))
603 dev->features = features;
605 if (dev->flags & IFF_UP) {
606 /* Now we take down the rings to rebuild them */
608 err = startup_gfar(dev);
610 gfar_mac_reset(priv);
613 clear_bit_unlock(GFAR_RESETTING, &priv->state);
618 static uint32_t gfar_get_msglevel(struct net_device *dev)
620 struct gfar_private *priv = netdev_priv(dev);
622 return priv->msg_enable;
625 static void gfar_set_msglevel(struct net_device *dev, uint32_t data)
627 struct gfar_private *priv = netdev_priv(dev);
629 priv->msg_enable = data;
633 static void gfar_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
635 struct gfar_private *priv = netdev_priv(dev);
637 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) {
638 wol->supported = WAKE_MAGIC;
639 wol->wolopts = priv->wol_en ? WAKE_MAGIC : 0;
641 wol->supported = wol->wolopts = 0;
645 static int gfar_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
647 struct gfar_private *priv = netdev_priv(dev);
650 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
654 if (wol->wolopts & ~WAKE_MAGIC)
657 device_set_wakeup_enable(&dev->dev, wol->wolopts & WAKE_MAGIC);
659 spin_lock_irqsave(&priv->bflock, flags);
660 priv->wol_en = !!device_may_wakeup(&dev->dev);
661 spin_unlock_irqrestore(&priv->bflock, flags);
667 static void ethflow_to_filer_rules (struct gfar_private *priv, u64 ethflow)
669 u32 fcr = 0x0, fpr = FPR_FILER_MASK;
671 if (ethflow & RXH_L2DA) {
672 fcr = RQFCR_PID_DAH |RQFCR_CMP_NOMATCH |
673 RQFCR_HASH | RQFCR_AND | RQFCR_HASHTBL_0;
674 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
675 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
676 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
677 priv->cur_filer_idx = priv->cur_filer_idx - 1;
679 fcr = RQFCR_PID_DAL | RQFCR_AND | RQFCR_CMP_NOMATCH |
680 RQFCR_HASH | RQFCR_AND | RQFCR_HASHTBL_0;
681 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
682 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
683 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
684 priv->cur_filer_idx = priv->cur_filer_idx - 1;
687 if (ethflow & RXH_VLAN) {
688 fcr = RQFCR_PID_VID | RQFCR_CMP_NOMATCH | RQFCR_HASH |
689 RQFCR_AND | RQFCR_HASHTBL_0;
690 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
691 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
692 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
693 priv->cur_filer_idx = priv->cur_filer_idx - 1;
696 if (ethflow & RXH_IP_SRC) {
697 fcr = RQFCR_PID_SIA | RQFCR_CMP_NOMATCH | RQFCR_HASH |
698 RQFCR_AND | RQFCR_HASHTBL_0;
699 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
700 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
701 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
702 priv->cur_filer_idx = priv->cur_filer_idx - 1;
705 if (ethflow & (RXH_IP_DST)) {
706 fcr = RQFCR_PID_DIA | RQFCR_CMP_NOMATCH | RQFCR_HASH |
707 RQFCR_AND | RQFCR_HASHTBL_0;
708 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
709 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
710 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
711 priv->cur_filer_idx = priv->cur_filer_idx - 1;
714 if (ethflow & RXH_L3_PROTO) {
715 fcr = RQFCR_PID_L4P | RQFCR_CMP_NOMATCH | RQFCR_HASH |
716 RQFCR_AND | RQFCR_HASHTBL_0;
717 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
718 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
719 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
720 priv->cur_filer_idx = priv->cur_filer_idx - 1;
723 if (ethflow & RXH_L4_B_0_1) {
724 fcr = RQFCR_PID_SPT | RQFCR_CMP_NOMATCH | RQFCR_HASH |
725 RQFCR_AND | RQFCR_HASHTBL_0;
726 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
727 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
728 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
729 priv->cur_filer_idx = priv->cur_filer_idx - 1;
732 if (ethflow & RXH_L4_B_2_3) {
733 fcr = RQFCR_PID_DPT | RQFCR_CMP_NOMATCH | RQFCR_HASH |
734 RQFCR_AND | RQFCR_HASHTBL_0;
735 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
736 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
737 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
738 priv->cur_filer_idx = priv->cur_filer_idx - 1;
742 static int gfar_ethflow_to_filer_table(struct gfar_private *priv, u64 ethflow,
745 unsigned int last_rule_idx = priv->cur_filer_idx;
746 unsigned int cmp_rqfpr;
747 unsigned int *local_rqfpr;
748 unsigned int *local_rqfcr;
749 int i = 0x0, k = 0x0;
750 int j = MAX_FILER_IDX, l = 0x0;
753 local_rqfpr = kmalloc_array(MAX_FILER_IDX + 1, sizeof(unsigned int),
755 local_rqfcr = kmalloc_array(MAX_FILER_IDX + 1, sizeof(unsigned int),
757 if (!local_rqfpr || !local_rqfcr) {
764 cmp_rqfpr = RQFPR_IPV4 |RQFPR_TCP;
767 cmp_rqfpr = RQFPR_IPV4 |RQFPR_UDP;
770 cmp_rqfpr = RQFPR_IPV6 |RQFPR_TCP;
773 cmp_rqfpr = RQFPR_IPV6 |RQFPR_UDP;
776 netdev_err(priv->ndev,
777 "Right now this class is not supported\n");
782 for (i = 0; i < MAX_FILER_IDX + 1; i++) {
783 local_rqfpr[j] = priv->ftp_rqfpr[i];
784 local_rqfcr[j] = priv->ftp_rqfcr[i];
786 if ((priv->ftp_rqfcr[i] ==
787 (RQFCR_PID_PARSE | RQFCR_CLE | RQFCR_AND)) &&
788 (priv->ftp_rqfpr[i] == cmp_rqfpr))
792 if (i == MAX_FILER_IDX + 1) {
793 netdev_err(priv->ndev,
794 "No parse rule found, can't create hash rules\n");
799 /* If a match was found, then it begins the starting of a cluster rule
800 * if it was already programmed, we need to overwrite these rules
802 for (l = i+1; l < MAX_FILER_IDX; l++) {
803 if ((priv->ftp_rqfcr[l] & RQFCR_CLE) &&
804 !(priv->ftp_rqfcr[l] & RQFCR_AND)) {
805 priv->ftp_rqfcr[l] = RQFCR_CLE | RQFCR_CMP_EXACT |
806 RQFCR_HASHTBL_0 | RQFCR_PID_MASK;
807 priv->ftp_rqfpr[l] = FPR_FILER_MASK;
808 gfar_write_filer(priv, l, priv->ftp_rqfcr[l],
813 if (!(priv->ftp_rqfcr[l] & RQFCR_CLE) &&
814 (priv->ftp_rqfcr[l] & RQFCR_AND))
817 local_rqfpr[j] = priv->ftp_rqfpr[l];
818 local_rqfcr[j] = priv->ftp_rqfcr[l];
823 priv->cur_filer_idx = l - 1;
827 ethflow_to_filer_rules(priv, ethflow);
829 /* Write back the popped out rules again */
830 for (k = j+1; k < MAX_FILER_IDX; k++) {
831 priv->ftp_rqfpr[priv->cur_filer_idx] = local_rqfpr[k];
832 priv->ftp_rqfcr[priv->cur_filer_idx] = local_rqfcr[k];
833 gfar_write_filer(priv, priv->cur_filer_idx,
834 local_rqfcr[k], local_rqfpr[k]);
835 if (!priv->cur_filer_idx)
837 priv->cur_filer_idx = priv->cur_filer_idx - 1;
846 static int gfar_set_hash_opts(struct gfar_private *priv,
847 struct ethtool_rxnfc *cmd)
849 /* write the filer rules here */
850 if (!gfar_ethflow_to_filer_table(priv, cmd->data, cmd->flow_type))
856 static int gfar_check_filer_hardware(struct gfar_private *priv)
858 struct gfar __iomem *regs = priv->gfargrp[0].regs;
861 /* Check if we are in FIFO mode */
862 i = gfar_read(®s->ecntrl);
864 if (i == ECNTRL_FIFM) {
865 netdev_notice(priv->ndev, "Interface in FIFO mode\n");
866 i = gfar_read(®s->rctrl);
867 i &= RCTRL_PRSDEP_MASK | RCTRL_PRSFM;
868 if (i == (RCTRL_PRSDEP_MASK | RCTRL_PRSFM)) {
869 netdev_info(priv->ndev,
870 "Receive Queue Filtering enabled\n");
872 netdev_warn(priv->ndev,
873 "Receive Queue Filtering disabled\n");
877 /* Or in standard mode */
879 i = gfar_read(®s->rctrl);
880 i &= RCTRL_PRSDEP_MASK;
881 if (i == RCTRL_PRSDEP_MASK) {
882 netdev_info(priv->ndev,
883 "Receive Queue Filtering enabled\n");
885 netdev_warn(priv->ndev,
886 "Receive Queue Filtering disabled\n");
891 /* Sets the properties for arbitrary filer rule
892 * to the first 4 Layer 4 Bytes
894 gfar_write(®s->rbifx, 0xC0C1C2C3);
898 static int gfar_comp_asc(const void *a, const void *b)
900 return memcmp(a, b, 4);
903 static int gfar_comp_desc(const void *a, const void *b)
905 return -memcmp(a, b, 4);
908 static void gfar_swap(void *a, void *b, int size)
919 /* Write a mask to filer cache */
920 static void gfar_set_mask(u32 mask, struct filer_table *tab)
922 tab->fe[tab->index].ctrl = RQFCR_AND | RQFCR_PID_MASK | RQFCR_CMP_EXACT;
923 tab->fe[tab->index].prop = mask;
927 /* Sets parse bits (e.g. IP or TCP) */
928 static void gfar_set_parse_bits(u32 value, u32 mask, struct filer_table *tab)
930 gfar_set_mask(mask, tab);
931 tab->fe[tab->index].ctrl = RQFCR_CMP_EXACT | RQFCR_PID_PARSE |
933 tab->fe[tab->index].prop = value;
937 static void gfar_set_general_attribute(u32 value, u32 mask, u32 flag,
938 struct filer_table *tab)
940 gfar_set_mask(mask, tab);
941 tab->fe[tab->index].ctrl = RQFCR_CMP_EXACT | RQFCR_AND | flag;
942 tab->fe[tab->index].prop = value;
946 /* For setting a tuple of value and mask of type flag
948 * IP-Src = 10.0.0.0/255.0.0.0
949 * value: 0x0A000000 mask: FF000000 flag: RQFPR_IPV4
951 * Ethtool gives us a value=0 and mask=~0 for don't care a tuple
952 * For a don't care mask it gives us a 0
954 * The check if don't care and the mask adjustment if mask=0 is done for VLAN
955 * and MAC stuff on an upper level (due to missing information on this level).
956 * For these guys we can discard them if they are value=0 and mask=0.
958 * Further the all masks are one-padded for better hardware efficiency.
960 static void gfar_set_attribute(u32 value, u32 mask, u32 flag,
961 struct filer_table *tab)
968 mask |= RQFCR_PID_PRI_MASK;
973 if (!~(mask | RQFCR_PID_L4P_MASK))
978 mask |= RQFCR_PID_L4P_MASK;
984 mask |= RQFCR_PID_VID_MASK;
990 if (!~(mask | RQFCR_PID_PORT_MASK))
995 mask |= RQFCR_PID_PORT_MASK;
1002 if (!(value | mask))
1004 mask |= RQFCR_PID_MAC_MASK;
1006 /* for all real 32bit masks */
1014 gfar_set_general_attribute(value, mask, flag, tab);
1017 /* Translates value and mask for UDP, TCP or SCTP */
1018 static void gfar_set_basic_ip(struct ethtool_tcpip4_spec *value,
1019 struct ethtool_tcpip4_spec *mask,
1020 struct filer_table *tab)
1022 gfar_set_attribute(be32_to_cpu(value->ip4src),
1023 be32_to_cpu(mask->ip4src),
1024 RQFCR_PID_SIA, tab);
1025 gfar_set_attribute(be32_to_cpu(value->ip4dst),
1026 be32_to_cpu(mask->ip4dst),
1027 RQFCR_PID_DIA, tab);
1028 gfar_set_attribute(be16_to_cpu(value->pdst),
1029 be16_to_cpu(mask->pdst),
1030 RQFCR_PID_DPT, tab);
1031 gfar_set_attribute(be16_to_cpu(value->psrc),
1032 be16_to_cpu(mask->psrc),
1033 RQFCR_PID_SPT, tab);
1034 gfar_set_attribute(value->tos, mask->tos, RQFCR_PID_TOS, tab);
1037 /* Translates value and mask for RAW-IP4 */
1038 static void gfar_set_user_ip(struct ethtool_usrip4_spec *value,
1039 struct ethtool_usrip4_spec *mask,
1040 struct filer_table *tab)
1042 gfar_set_attribute(be32_to_cpu(value->ip4src),
1043 be32_to_cpu(mask->ip4src),
1044 RQFCR_PID_SIA, tab);
1045 gfar_set_attribute(be32_to_cpu(value->ip4dst),
1046 be32_to_cpu(mask->ip4dst),
1047 RQFCR_PID_DIA, tab);
1048 gfar_set_attribute(value->tos, mask->tos, RQFCR_PID_TOS, tab);
1049 gfar_set_attribute(value->proto, mask->proto, RQFCR_PID_L4P, tab);
1050 gfar_set_attribute(be32_to_cpu(value->l4_4_bytes),
1051 be32_to_cpu(mask->l4_4_bytes),
1052 RQFCR_PID_ARB, tab);
1056 /* Translates value and mask for ETHER spec */
1057 static void gfar_set_ether(struct ethhdr *value, struct ethhdr *mask,
1058 struct filer_table *tab)
1060 u32 upper_temp_mask = 0;
1061 u32 lower_temp_mask = 0;
1063 /* Source address */
1064 if (!is_broadcast_ether_addr(mask->h_source)) {
1065 if (is_zero_ether_addr(mask->h_source)) {
1066 upper_temp_mask = 0xFFFFFFFF;
1067 lower_temp_mask = 0xFFFFFFFF;
1069 upper_temp_mask = mask->h_source[0] << 16 |
1070 mask->h_source[1] << 8 |
1072 lower_temp_mask = mask->h_source[3] << 16 |
1073 mask->h_source[4] << 8 |
1077 gfar_set_attribute(value->h_source[0] << 16 |
1078 value->h_source[1] << 8 |
1080 upper_temp_mask, RQFCR_PID_SAH, tab);
1081 /* And the same for the lower part */
1082 gfar_set_attribute(value->h_source[3] << 16 |
1083 value->h_source[4] << 8 |
1085 lower_temp_mask, RQFCR_PID_SAL, tab);
1087 /* Destination address */
1088 if (!is_broadcast_ether_addr(mask->h_dest)) {
1089 /* Special for destination is limited broadcast */
1090 if ((is_broadcast_ether_addr(value->h_dest) &&
1091 is_zero_ether_addr(mask->h_dest))) {
1092 gfar_set_parse_bits(RQFPR_EBC, RQFPR_EBC, tab);
1094 if (is_zero_ether_addr(mask->h_dest)) {
1095 upper_temp_mask = 0xFFFFFFFF;
1096 lower_temp_mask = 0xFFFFFFFF;
1098 upper_temp_mask = mask->h_dest[0] << 16 |
1099 mask->h_dest[1] << 8 |
1101 lower_temp_mask = mask->h_dest[3] << 16 |
1102 mask->h_dest[4] << 8 |
1107 gfar_set_attribute(value->h_dest[0] << 16 |
1108 value->h_dest[1] << 8 |
1110 upper_temp_mask, RQFCR_PID_DAH, tab);
1111 /* And the same for the lower part */
1112 gfar_set_attribute(value->h_dest[3] << 16 |
1113 value->h_dest[4] << 8 |
1115 lower_temp_mask, RQFCR_PID_DAL, tab);
1119 gfar_set_attribute(be16_to_cpu(value->h_proto),
1120 be16_to_cpu(mask->h_proto),
1121 RQFCR_PID_ETY, tab);
1124 static inline u32 vlan_tci_vid(struct ethtool_rx_flow_spec *rule)
1126 return be16_to_cpu(rule->h_ext.vlan_tci) & VLAN_VID_MASK;
1129 static inline u32 vlan_tci_vidm(struct ethtool_rx_flow_spec *rule)
1131 return be16_to_cpu(rule->m_ext.vlan_tci) & VLAN_VID_MASK;
1134 static inline u32 vlan_tci_cfi(struct ethtool_rx_flow_spec *rule)
1136 return be16_to_cpu(rule->h_ext.vlan_tci) & VLAN_CFI_MASK;
1139 static inline u32 vlan_tci_cfim(struct ethtool_rx_flow_spec *rule)
1141 return be16_to_cpu(rule->m_ext.vlan_tci) & VLAN_CFI_MASK;
1144 static inline u32 vlan_tci_prio(struct ethtool_rx_flow_spec *rule)
1146 return (be16_to_cpu(rule->h_ext.vlan_tci) & VLAN_PRIO_MASK) >>
1150 static inline u32 vlan_tci_priom(struct ethtool_rx_flow_spec *rule)
1152 return (be16_to_cpu(rule->m_ext.vlan_tci) & VLAN_PRIO_MASK) >>
1156 /* Convert a rule to binary filter format of gianfar */
1157 static int gfar_convert_to_filer(struct ethtool_rx_flow_spec *rule,
1158 struct filer_table *tab)
1160 u32 vlan = 0, vlan_mask = 0;
1161 u32 id = 0, id_mask = 0;
1162 u32 cfi = 0, cfi_mask = 0;
1163 u32 prio = 0, prio_mask = 0;
1164 u32 old_index = tab->index;
1166 /* Check if vlan is wanted */
1167 if ((rule->flow_type & FLOW_EXT) &&
1168 (rule->m_ext.vlan_tci != cpu_to_be16(0xFFFF))) {
1169 if (!rule->m_ext.vlan_tci)
1170 rule->m_ext.vlan_tci = cpu_to_be16(0xFFFF);
1173 vlan_mask = RQFPR_VLN;
1175 /* Separate the fields */
1176 id = vlan_tci_vid(rule);
1177 id_mask = vlan_tci_vidm(rule);
1178 cfi = vlan_tci_cfi(rule);
1179 cfi_mask = vlan_tci_cfim(rule);
1180 prio = vlan_tci_prio(rule);
1181 prio_mask = vlan_tci_priom(rule);
1183 if (cfi == VLAN_TAG_PRESENT && cfi_mask == VLAN_TAG_PRESENT) {
1185 vlan_mask |= RQFPR_CFI;
1186 } else if (cfi != VLAN_TAG_PRESENT &&
1187 cfi_mask == VLAN_TAG_PRESENT) {
1188 vlan_mask |= RQFPR_CFI;
1192 switch (rule->flow_type & ~FLOW_EXT) {
1194 gfar_set_parse_bits(RQFPR_IPV4 | RQFPR_TCP | vlan,
1195 RQFPR_IPV4 | RQFPR_TCP | vlan_mask, tab);
1196 gfar_set_basic_ip(&rule->h_u.tcp_ip4_spec,
1197 &rule->m_u.tcp_ip4_spec, tab);
1200 gfar_set_parse_bits(RQFPR_IPV4 | RQFPR_UDP | vlan,
1201 RQFPR_IPV4 | RQFPR_UDP | vlan_mask, tab);
1202 gfar_set_basic_ip(&rule->h_u.udp_ip4_spec,
1203 &rule->m_u.udp_ip4_spec, tab);
1206 gfar_set_parse_bits(RQFPR_IPV4 | vlan, RQFPR_IPV4 | vlan_mask,
1208 gfar_set_attribute(132, 0, RQFCR_PID_L4P, tab);
1209 gfar_set_basic_ip((struct ethtool_tcpip4_spec *)&rule->h_u,
1210 (struct ethtool_tcpip4_spec *)&rule->m_u,
1214 gfar_set_parse_bits(RQFPR_IPV4 | vlan, RQFPR_IPV4 | vlan_mask,
1216 gfar_set_user_ip((struct ethtool_usrip4_spec *) &rule->h_u,
1217 (struct ethtool_usrip4_spec *) &rule->m_u,
1222 gfar_set_parse_bits(vlan, vlan_mask, tab);
1223 gfar_set_ether((struct ethhdr *) &rule->h_u,
1224 (struct ethhdr *) &rule->m_u, tab);
1230 /* Set the vlan attributes in the end */
1232 gfar_set_attribute(id, id_mask, RQFCR_PID_VID, tab);
1233 gfar_set_attribute(prio, prio_mask, RQFCR_PID_PRI, tab);
1236 /* If there has been nothing written till now, it must be a default */
1237 if (tab->index == old_index) {
1238 gfar_set_mask(0xFFFFFFFF, tab);
1239 tab->fe[tab->index].ctrl = 0x20;
1240 tab->fe[tab->index].prop = 0x0;
1244 /* Remove last AND */
1245 tab->fe[tab->index - 1].ctrl &= (~RQFCR_AND);
1247 /* Specify which queue to use or to drop */
1248 if (rule->ring_cookie == RX_CLS_FLOW_DISC)
1249 tab->fe[tab->index - 1].ctrl |= RQFCR_RJE;
1251 tab->fe[tab->index - 1].ctrl |= (rule->ring_cookie << 10);
1253 /* Only big enough entries can be clustered */
1254 if (tab->index > (old_index + 2)) {
1255 tab->fe[old_index + 1].ctrl |= RQFCR_CLE;
1256 tab->fe[tab->index - 1].ctrl |= RQFCR_CLE;
1259 /* In rare cases the cache can be full while there is
1262 if (tab->index > MAX_FILER_CACHE_IDX - 1)
1268 /* Copy size filer entries */
1269 static void gfar_copy_filer_entries(struct gfar_filer_entry dst[0],
1270 struct gfar_filer_entry src[0], s32 size)
1274 dst[size].ctrl = src[size].ctrl;
1275 dst[size].prop = src[size].prop;
1279 /* Delete the contents of the filer-table between start and end
1282 static int gfar_trim_filer_entries(u32 begin, u32 end, struct filer_table *tab)
1286 if (end > MAX_FILER_CACHE_IDX || end < begin)
1290 length = end - begin;
1293 while (end < tab->index) {
1294 tab->fe[begin].ctrl = tab->fe[end].ctrl;
1295 tab->fe[begin++].prop = tab->fe[end++].prop;
1298 /* Fill up with don't cares */
1299 while (begin < tab->index) {
1300 tab->fe[begin].ctrl = 0x60;
1301 tab->fe[begin].prop = 0xFFFFFFFF;
1305 tab->index -= length;
1309 /* Make space on the wanted location */
1310 static int gfar_expand_filer_entries(u32 begin, u32 length,
1311 struct filer_table *tab)
1313 if (length == 0 || length + tab->index > MAX_FILER_CACHE_IDX ||
1314 begin > MAX_FILER_CACHE_IDX)
1317 gfar_copy_filer_entries(&(tab->fe[begin + length]), &(tab->fe[begin]),
1318 tab->index - length + 1);
1320 tab->index += length;
1324 static int gfar_get_next_cluster_start(int start, struct filer_table *tab)
1326 for (; (start < tab->index) && (start < MAX_FILER_CACHE_IDX - 1);
1328 if ((tab->fe[start].ctrl & (RQFCR_AND | RQFCR_CLE)) ==
1329 (RQFCR_AND | RQFCR_CLE))
1335 static int gfar_get_next_cluster_end(int start, struct filer_table *tab)
1337 for (; (start < tab->index) && (start < MAX_FILER_CACHE_IDX - 1);
1339 if ((tab->fe[start].ctrl & (RQFCR_AND | RQFCR_CLE)) ==
1346 /* Uses hardwares clustering option to reduce
1347 * the number of filer table entries
1349 static void gfar_cluster_filer(struct filer_table *tab)
1351 s32 i = -1, j, iend, jend;
1353 while ((i = gfar_get_next_cluster_start(++i, tab)) != -1) {
1355 while ((j = gfar_get_next_cluster_start(++j, tab)) != -1) {
1356 /* The cluster entries self and the previous one
1357 * (a mask) must be identical!
1359 if (tab->fe[i].ctrl != tab->fe[j].ctrl)
1361 if (tab->fe[i].prop != tab->fe[j].prop)
1363 if (tab->fe[i - 1].ctrl != tab->fe[j - 1].ctrl)
1365 if (tab->fe[i - 1].prop != tab->fe[j - 1].prop)
1367 iend = gfar_get_next_cluster_end(i, tab);
1368 jend = gfar_get_next_cluster_end(j, tab);
1369 if (jend == -1 || iend == -1)
1372 /* First we make some free space, where our cluster
1373 * element should be. Then we copy it there and finally
1374 * delete in from its old location.
1376 if (gfar_expand_filer_entries(iend, (jend - j), tab) ==
1380 gfar_copy_filer_entries(&(tab->fe[iend + 1]),
1381 &(tab->fe[jend + 1]), jend - j);
1383 if (gfar_trim_filer_entries(jend - 1,
1388 /* Mask out cluster bit */
1389 tab->fe[iend].ctrl &= ~(RQFCR_CLE);
1394 /* Swaps the masked bits of a1<>a2 and b1<>b2 */
1395 static void gfar_swap_bits(struct gfar_filer_entry *a1,
1396 struct gfar_filer_entry *a2,
1397 struct gfar_filer_entry *b1,
1398 struct gfar_filer_entry *b2, u32 mask)
1401 temp[0] = a1->ctrl & mask;
1402 temp[1] = a2->ctrl & mask;
1403 temp[2] = b1->ctrl & mask;
1404 temp[3] = b2->ctrl & mask;
1411 a1->ctrl |= temp[1];
1412 a2->ctrl |= temp[0];
1413 b1->ctrl |= temp[3];
1414 b2->ctrl |= temp[2];
1417 /* Generate a list consisting of masks values with their start and
1418 * end of validity and block as indicator for parts belonging
1419 * together (glued by ANDs) in mask_table
1421 static u32 gfar_generate_mask_table(struct gfar_mask_entry *mask_table,
1422 struct filer_table *tab)
1424 u32 i, and_index = 0, block_index = 1;
1426 for (i = 0; i < tab->index; i++) {
1428 /* LSByte of control = 0 sets a mask */
1429 if (!(tab->fe[i].ctrl & 0xF)) {
1430 mask_table[and_index].mask = tab->fe[i].prop;
1431 mask_table[and_index].start = i;
1432 mask_table[and_index].block = block_index;
1434 mask_table[and_index - 1].end = i - 1;
1437 /* cluster starts and ends will be separated because they should
1438 * hold their position
1440 if (tab->fe[i].ctrl & RQFCR_CLE)
1442 /* A not set AND indicates the end of a depended block */
1443 if (!(tab->fe[i].ctrl & RQFCR_AND))
1447 mask_table[and_index - 1].end = i - 1;
1452 /* Sorts the entries of mask_table by the values of the masks.
1453 * Important: The 0xFF80 flags of the first and last entry of a
1454 * block must hold their position (which queue, CLusterEnable, ReJEct,
1457 static void gfar_sort_mask_table(struct gfar_mask_entry *mask_table,
1458 struct filer_table *temp_table, u32 and_index)
1460 /* Pointer to compare function (_asc or _desc) */
1461 int (*gfar_comp)(const void *, const void *);
1463 u32 i, size = 0, start = 0, prev = 1;
1464 u32 old_first, old_last, new_first, new_last;
1466 gfar_comp = &gfar_comp_desc;
1468 for (i = 0; i < and_index; i++) {
1469 if (prev != mask_table[i].block) {
1470 old_first = mask_table[start].start + 1;
1471 old_last = mask_table[i - 1].end;
1472 sort(mask_table + start, size,
1473 sizeof(struct gfar_mask_entry),
1474 gfar_comp, &gfar_swap);
1476 /* Toggle order for every block. This makes the
1477 * thing more efficient!
1479 if (gfar_comp == gfar_comp_desc)
1480 gfar_comp = &gfar_comp_asc;
1482 gfar_comp = &gfar_comp_desc;
1484 new_first = mask_table[start].start + 1;
1485 new_last = mask_table[i - 1].end;
1487 gfar_swap_bits(&temp_table->fe[new_first],
1488 &temp_table->fe[old_first],
1489 &temp_table->fe[new_last],
1490 &temp_table->fe[old_last],
1491 RQFCR_QUEUE | RQFCR_CLE |
1492 RQFCR_RJE | RQFCR_AND);
1498 prev = mask_table[i].block;
1502 /* Reduces the number of masks needed in the filer table to save entries
1503 * This is done by sorting the masks of a depended block. A depended block is
1504 * identified by gluing ANDs or CLE. The sorting order toggles after every
1505 * block. Of course entries in scope of a mask must change their location with
1508 static int gfar_optimize_filer_masks(struct filer_table *tab)
1510 struct filer_table *temp_table;
1511 struct gfar_mask_entry *mask_table;
1513 u32 and_index = 0, previous_mask = 0, i = 0, j = 0, size = 0;
1516 /* We need a copy of the filer table because
1517 * we want to change its order
1519 temp_table = kmemdup(tab, sizeof(*temp_table), GFP_KERNEL);
1520 if (temp_table == NULL)
1523 mask_table = kcalloc(MAX_FILER_CACHE_IDX / 2 + 1,
1524 sizeof(struct gfar_mask_entry), GFP_KERNEL);
1526 if (mask_table == NULL) {
1531 and_index = gfar_generate_mask_table(mask_table, tab);
1533 gfar_sort_mask_table(mask_table, temp_table, and_index);
1535 /* Now we can copy the data from our duplicated filer table to
1536 * the real one in the order the mask table says
1538 for (i = 0; i < and_index; i++) {
1539 size = mask_table[i].end - mask_table[i].start + 1;
1540 gfar_copy_filer_entries(&(tab->fe[j]),
1541 &(temp_table->fe[mask_table[i].start]), size);
1545 /* And finally we just have to check for duplicated masks and drop the
1548 for (i = 0; i < tab->index && i < MAX_FILER_CACHE_IDX; i++) {
1549 if (tab->fe[i].ctrl == 0x80) {
1550 previous_mask = i++;
1554 for (; i < tab->index && i < MAX_FILER_CACHE_IDX; i++) {
1555 if (tab->fe[i].ctrl == 0x80) {
1556 if (tab->fe[i].prop == tab->fe[previous_mask].prop) {
1557 /* Two identical ones found!
1558 * So drop the second one!
1560 gfar_trim_filer_entries(i, i, tab);
1562 /* Not identical! */
1568 end: kfree(temp_table);
1572 /* Write the bit-pattern from software's buffer to hardware registers */
1573 static int gfar_write_filer_table(struct gfar_private *priv,
1574 struct filer_table *tab)
1577 if (tab->index > MAX_FILER_IDX - 1)
1580 /* Fill regular entries */
1581 for (; i < MAX_FILER_IDX - 1 && (tab->fe[i].ctrl | tab->fe[i].ctrl);
1583 gfar_write_filer(priv, i, tab->fe[i].ctrl, tab->fe[i].prop);
1584 /* Fill the rest with fall-troughs */
1585 for (; i < MAX_FILER_IDX - 1; i++)
1586 gfar_write_filer(priv, i, 0x60, 0xFFFFFFFF);
1587 /* Last entry must be default accept
1588 * because that's what people expect
1590 gfar_write_filer(priv, i, 0x20, 0x0);
1595 static int gfar_check_capability(struct ethtool_rx_flow_spec *flow,
1596 struct gfar_private *priv)
1599 if (flow->flow_type & FLOW_EXT) {
1600 if (~flow->m_ext.data[0] || ~flow->m_ext.data[1])
1601 netdev_warn(priv->ndev,
1602 "User-specific data not supported!\n");
1603 if (~flow->m_ext.vlan_etype)
1604 netdev_warn(priv->ndev,
1605 "VLAN-etype not supported!\n");
1607 if (flow->flow_type == IP_USER_FLOW)
1608 if (flow->h_u.usr_ip4_spec.ip_ver != ETH_RX_NFC_IP4)
1609 netdev_warn(priv->ndev,
1610 "IP-Version differing from IPv4 not supported!\n");
1615 static int gfar_process_filer_changes(struct gfar_private *priv)
1617 struct ethtool_flow_spec_container *j;
1618 struct filer_table *tab;
1622 /* So index is set to zero, too! */
1623 tab = kzalloc(sizeof(*tab), GFP_KERNEL);
1627 /* Now convert the existing filer data from flow_spec into
1628 * filer tables binary format
1630 list_for_each_entry(j, &priv->rx_list.list, list) {
1631 ret = gfar_convert_to_filer(&j->fs, tab);
1632 if (ret == -EBUSY) {
1633 netdev_err(priv->ndev,
1634 "Rule not added: No free space!\n");
1638 netdev_err(priv->ndev,
1639 "Rule not added: Unsupported Flow-type!\n");
1646 /* Optimizations to save entries */
1647 gfar_cluster_filer(tab);
1648 gfar_optimize_filer_masks(tab);
1650 pr_debug("\tSummary:\n"
1651 "\tData on hardware: %d\n"
1652 "\tCompression rate: %d%%\n",
1653 tab->index, 100 - (100 * tab->index) / i);
1655 /* Write everything to hardware */
1656 ret = gfar_write_filer_table(priv, tab);
1657 if (ret == -EBUSY) {
1658 netdev_err(priv->ndev, "Rule not added: No free space!\n");
1667 static void gfar_invert_masks(struct ethtool_rx_flow_spec *flow)
1671 for (i = 0; i < sizeof(flow->m_u); i++)
1672 flow->m_u.hdata[i] ^= 0xFF;
1674 flow->m_ext.vlan_etype ^= cpu_to_be16(0xFFFF);
1675 flow->m_ext.vlan_tci ^= cpu_to_be16(0xFFFF);
1676 flow->m_ext.data[0] ^= cpu_to_be32(~0);
1677 flow->m_ext.data[1] ^= cpu_to_be32(~0);
1680 static int gfar_add_cls(struct gfar_private *priv,
1681 struct ethtool_rx_flow_spec *flow)
1683 struct ethtool_flow_spec_container *temp, *comp;
1686 temp = kmalloc(sizeof(*temp), GFP_KERNEL);
1689 memcpy(&temp->fs, flow, sizeof(temp->fs));
1691 gfar_invert_masks(&temp->fs);
1692 ret = gfar_check_capability(&temp->fs, priv);
1695 /* Link in the new element at the right @location */
1696 if (list_empty(&priv->rx_list.list)) {
1697 ret = gfar_check_filer_hardware(priv);
1700 list_add(&temp->list, &priv->rx_list.list);
1703 list_for_each_entry(comp, &priv->rx_list.list, list) {
1704 if (comp->fs.location > flow->location) {
1705 list_add_tail(&temp->list, &comp->list);
1708 if (comp->fs.location == flow->location) {
1709 netdev_err(priv->ndev,
1710 "Rule not added: ID %d not free!\n",
1716 list_add_tail(&temp->list, &priv->rx_list.list);
1720 ret = gfar_process_filer_changes(priv);
1723 priv->rx_list.count++;
1727 list_del(&temp->list);
1733 static int gfar_del_cls(struct gfar_private *priv, u32 loc)
1735 struct ethtool_flow_spec_container *comp;
1738 if (list_empty(&priv->rx_list.list))
1741 list_for_each_entry(comp, &priv->rx_list.list, list) {
1742 if (comp->fs.location == loc) {
1743 list_del(&comp->list);
1745 priv->rx_list.count--;
1746 gfar_process_filer_changes(priv);
1755 static int gfar_get_cls(struct gfar_private *priv, struct ethtool_rxnfc *cmd)
1757 struct ethtool_flow_spec_container *comp;
1760 list_for_each_entry(comp, &priv->rx_list.list, list) {
1761 if (comp->fs.location == cmd->fs.location) {
1762 memcpy(&cmd->fs, &comp->fs, sizeof(cmd->fs));
1763 gfar_invert_masks(&cmd->fs);
1772 static int gfar_get_cls_all(struct gfar_private *priv,
1773 struct ethtool_rxnfc *cmd, u32 *rule_locs)
1775 struct ethtool_flow_spec_container *comp;
1778 list_for_each_entry(comp, &priv->rx_list.list, list) {
1779 if (i == cmd->rule_cnt)
1781 rule_locs[i] = comp->fs.location;
1785 cmd->data = MAX_FILER_IDX;
1791 static int gfar_set_nfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
1793 struct gfar_private *priv = netdev_priv(dev);
1796 if (test_bit(GFAR_RESETTING, &priv->state))
1799 mutex_lock(&priv->rx_queue_access);
1803 ret = gfar_set_hash_opts(priv, cmd);
1805 case ETHTOOL_SRXCLSRLINS:
1806 if ((cmd->fs.ring_cookie != RX_CLS_FLOW_DISC &&
1807 cmd->fs.ring_cookie >= priv->num_rx_queues) ||
1808 cmd->fs.location >= MAX_FILER_IDX) {
1812 ret = gfar_add_cls(priv, &cmd->fs);
1814 case ETHTOOL_SRXCLSRLDEL:
1815 ret = gfar_del_cls(priv, cmd->fs.location);
1821 mutex_unlock(&priv->rx_queue_access);
1826 static int gfar_get_nfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
1829 struct gfar_private *priv = netdev_priv(dev);
1833 case ETHTOOL_GRXRINGS:
1834 cmd->data = priv->num_rx_queues;
1836 case ETHTOOL_GRXCLSRLCNT:
1837 cmd->rule_cnt = priv->rx_list.count;
1839 case ETHTOOL_GRXCLSRULE:
1840 ret = gfar_get_cls(priv, cmd);
1842 case ETHTOOL_GRXCLSRLALL:
1843 ret = gfar_get_cls_all(priv, cmd, rule_locs);
1853 int gfar_phc_index = -1;
1854 EXPORT_SYMBOL(gfar_phc_index);
1856 static int gfar_get_ts_info(struct net_device *dev,
1857 struct ethtool_ts_info *info)
1859 struct gfar_private *priv = netdev_priv(dev);
1861 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER)) {
1862 info->so_timestamping = SOF_TIMESTAMPING_RX_SOFTWARE |
1863 SOF_TIMESTAMPING_SOFTWARE;
1864 info->phc_index = -1;
1867 info->so_timestamping = SOF_TIMESTAMPING_TX_HARDWARE |
1868 SOF_TIMESTAMPING_RX_HARDWARE |
1869 SOF_TIMESTAMPING_RAW_HARDWARE;
1870 info->phc_index = gfar_phc_index;
1871 info->tx_types = (1 << HWTSTAMP_TX_OFF) |
1872 (1 << HWTSTAMP_TX_ON);
1873 info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) |
1874 (1 << HWTSTAMP_FILTER_ALL);
1878 const struct ethtool_ops gfar_ethtool_ops = {
1879 .get_settings = gfar_gsettings,
1880 .set_settings = gfar_ssettings,
1881 .get_drvinfo = gfar_gdrvinfo,
1882 .get_regs_len = gfar_reglen,
1883 .get_regs = gfar_get_regs,
1884 .get_link = ethtool_op_get_link,
1885 .get_coalesce = gfar_gcoalesce,
1886 .set_coalesce = gfar_scoalesce,
1887 .get_ringparam = gfar_gringparam,
1888 .set_ringparam = gfar_sringparam,
1889 .get_pauseparam = gfar_gpauseparam,
1890 .set_pauseparam = gfar_spauseparam,
1891 .get_strings = gfar_gstrings,
1892 .get_sset_count = gfar_sset_count,
1893 .get_ethtool_stats = gfar_fill_stats,
1894 .get_msglevel = gfar_get_msglevel,
1895 .set_msglevel = gfar_set_msglevel,
1897 .get_wol = gfar_get_wol,
1898 .set_wol = gfar_set_wol,
1900 .set_rxnfc = gfar_set_nfc,
1901 .get_rxnfc = gfar_get_nfc,
1902 .get_ts_info = gfar_get_ts_info,