blob: 083603f6bec002596ddf4072798a8df51db4e21b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Paul Gortmaker3396c782012-01-27 13:36:01 +00002 * drivers/net/ethernet/freescale/gianfar_ethtool.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Gianfar Ethernet Driver
5 * Ethtool support for Gianfar Enet
6 * Based on e1000 ethtool support
7 *
8 * Author: Andy Fleming
Kumar Gala4c8d3d92005-11-13 16:06:30 -08009 * Maintainer: Kumar Gala
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +000010 * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +000012 * Copyright 2003-2006, 2008-2009, 2011 Freescale Semiconductor, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014 * This software may be used and distributed according to
15 * the terms of the GNU Public License, Version 2, incorporated herein
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * by reference.
17 */
18
Joe Perches59deab22011-06-14 08:57:47 +000019#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/string.h>
23#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/netdevice.h>
28#include <linux/etherdevice.h>
David S. Miller65a85a82012-04-06 00:35:34 -040029#include <linux/net_tstamp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/skbuff.h>
31#include <linux/spinlock.h>
32#include <linux/mm.h>
33
34#include <asm/io.h>
35#include <asm/irq.h>
36#include <asm/uaccess.h>
37#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/crc32.h>
39#include <asm/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/ethtool.h>
Andy Flemingbb40dcb2005-09-23 22:54:21 -040041#include <linux/mii.h>
42#include <linux/phy.h>
Sebastian Poehn4aa3a712011-06-20 13:57:59 -070043#include <linux/sort.h>
Sebastian Poehn380b1532011-07-07 04:30:29 -070044#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include "gianfar.h"
47
Kumar Gala0bbaf062005-06-20 10:54:21 -050048extern void gfar_start(struct net_device *dev);
Jan Ceuleerscbfc60712012-06-05 03:42:15 +000049extern int gfar_clean_rx_ring(struct gfar_priv_rx_q *rx_queue,
50 int rx_work_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Andy Flemingbb40dcb2005-09-23 22:54:21 -040052#define GFAR_MAX_COAL_USECS 0xffff
53#define GFAR_MAX_COAL_FRAMES 0xff
Kumar Gala0bbaf062005-06-20 10:54:21 -050054static void gfar_fill_stats(struct net_device *dev, struct ethtool_stats *dummy,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +000055 u64 *buf);
Kumar Gala0bbaf062005-06-20 10:54:21 -050056static void gfar_gstrings(struct net_device *dev, u32 stringset, u8 * buf);
Jan Ceuleerscbfc60712012-06-05 03:42:15 +000057static int gfar_gcoalesce(struct net_device *dev,
58 struct ethtool_coalesce *cvals);
59static int gfar_scoalesce(struct net_device *dev,
60 struct ethtool_coalesce *cvals);
61static void gfar_gringparam(struct net_device *dev,
62 struct ethtool_ringparam *rvals);
63static int gfar_sringparam(struct net_device *dev,
64 struct ethtool_ringparam *rvals);
65static void gfar_gdrvinfo(struct net_device *dev,
66 struct ethtool_drvinfo *drvinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Paul Gortmaker30f7e312012-01-08 13:21:57 -050068static const char stat_gstrings[][ETH_GSTRING_LEN] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 "rx-large-frame-errors",
70 "rx-short-frame-errors",
71 "rx-non-octet-errors",
72 "rx-crc-errors",
73 "rx-overrun-errors",
74 "rx-busy-errors",
75 "rx-babbling-errors",
76 "rx-truncated-frames",
77 "ethernet-bus-error",
78 "tx-babbling-errors",
79 "tx-underrun-errors",
80 "rx-skb-missing-errors",
81 "tx-timeout-errors",
82 "tx-rx-64-frames",
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",
89 "rx-bytes",
90 "rx-packets",
91 "rx-fcs-errors",
92 "receive-multicast-packet",
93 "receive-broadcast-packet",
94 "rx-control-frame-packets",
95 "rx-pause-frame-packets",
96 "rx-unknown-op-code",
97 "rx-alignment-error",
98 "rx-frame-length-error",
99 "rx-code-error",
100 "rx-carrier-sense-error",
101 "rx-undersize-packets",
102 "rx-oversize-packets",
103 "rx-fragmented-frames",
104 "rx-jabber-frames",
105 "rx-dropped-frames",
106 "tx-byte-counter",
107 "tx-packets",
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",
118 "reserved",
119 "tx-dropped-frames",
120 "tx-jabber-frames",
121 "tx-fcs-errors",
122 "tx-control-frames",
123 "tx-oversize-frames",
124 "tx-undersize-frames",
125 "tx-fragmented-frames",
126};
127
Kumar Gala0bbaf062005-06-20 10:54:21 -0500128/* Fill in a buffer with the strings which correspond to the
129 * stats */
130static void gfar_gstrings(struct net_device *dev, u32 stringset, u8 * buf)
131{
132 struct gfar_private *priv = netdev_priv(dev);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600133
Andy Flemingb31a1d82008-12-16 15:29:15 -0800134 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500135 memcpy(buf, stat_gstrings, GFAR_STATS_LEN * ETH_GSTRING_LEN);
136 else
137 memcpy(buf, stat_gstrings,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000138 GFAR_EXTRA_STATS_LEN * ETH_GSTRING_LEN);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500139}
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/* 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
144 */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000145static void gfar_fill_stats(struct net_device *dev, struct ethtool_stats *dummy,
146 u64 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 int i;
149 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000150 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Paul Gortmaker212079d2013-02-12 15:38:19 -0500151 atomic64_t *extra = (atomic64_t *)&priv->extra_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Paul Gortmaker68719782013-02-12 15:28:35 -0500153 for (i = 0; i < GFAR_EXTRA_STATS_LEN; i++)
Paul Gortmaker212079d2013-02-12 15:38:19 -0500154 buf[i] = atomic64_read(&extra[i]);
Paul Gortmaker68719782013-02-12 15:28:35 -0500155
Andy Flemingb31a1d82008-12-16 15:29:15 -0800156 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
Sandeep Gopalpetf4983702009-11-02 07:03:09 +0000157 u32 __iomem *rmon = (u32 __iomem *) &regs->rmon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Paul Gortmaker68719782013-02-12 15:28:35 -0500159 for (; i < GFAR_STATS_LEN; i++, rmon++)
160 buf[i] = (u64) gfar_read(rmon);
161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700164static int gfar_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700168 switch (sset) {
169 case ETH_SS_STATS:
Andy Flemingb31a1d82008-12-16 15:29:15 -0800170 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON)
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700171 return GFAR_STATS_LEN;
172 else
173 return GFAR_EXTRA_STATS_LEN;
174 default:
175 return -EOPNOTSUPP;
176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/* Fills in the drvinfo structure with some basic info */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000180static void gfar_gdrvinfo(struct net_device *dev,
181 struct ethtool_drvinfo *drvinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Jiri Pirko7826d432013-01-06 00:44:26 +0000183 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));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 drvinfo->regdump_len = 0;
189 drvinfo->eedump_len = 0;
190}
191
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400192
193static int gfar_ssettings(struct net_device *dev, struct ethtool_cmd *cmd)
194{
195 struct gfar_private *priv = netdev_priv(dev);
196 struct phy_device *phydev = priv->phydev;
197
198 if (NULL == phydev)
199 return -ENODEV;
200
201 return phy_ethtool_sset(phydev, cmd);
202}
203
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/* Return the current settings in the ethtool_cmd structure */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500206static int gfar_gsettings(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400209 struct phy_device *phydev = priv->phydev;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000210 struct gfar_priv_rx_q *rx_queue = NULL;
211 struct gfar_priv_tx_q *tx_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400213 if (NULL == phydev)
214 return -ENODEV;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000215 tx_queue = priv->tx_queue[0];
216 rx_queue = priv->rx_queue[0];
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400217
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000218 /* etsec-1.7 and older versions have only one txic
219 * and rxic regs although they support multiple queues */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000220 cmd->maxtxpkt = get_icft_value(tx_queue->txic);
221 cmd->maxrxpkt = get_icft_value(rx_queue->rxic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400223 return phy_ethtool_gset(phydev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226/* Return the length of the register structure */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500227static int gfar_reglen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 return sizeof (struct gfar);
230}
231
232/* Return a dump of the GFAR register space */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000233static void gfar_get_regs(struct net_device *dev, struct ethtool_regs *regs,
234 void *regbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 int i;
237 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000238 u32 __iomem *theregs = (u32 __iomem *) priv->gfargrp[0].regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 u32 *buf = (u32 *) regbuf;
240
241 for (i = 0; i < sizeof (struct gfar) / sizeof (u32); i++)
Kumar Galacc8c6e32006-02-01 15:18:03 -0600242 buf[i] = gfar_read(&theregs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245/* Convert microseconds to ethernet clock ticks, which changes
246 * depending on what speed the controller is running at */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000247static unsigned int gfar_usecs2ticks(struct gfar_private *priv,
248 unsigned int usecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 unsigned int count;
251
252 /* The timer is different, depending on the interface speed */
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400253 switch (priv->phydev->speed) {
254 case SPEED_1000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 count = GFAR_GBIT_TIME;
256 break;
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400257 case SPEED_100:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 count = GFAR_100_TIME;
259 break;
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400260 case SPEED_10:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 default:
262 count = GFAR_10_TIME;
263 break;
264 }
265
266 /* Make sure we return a number greater than 0
267 * if usecs > 0 */
Eric Dumazet807540b2010-09-23 05:40:09 +0000268 return (usecs * 1000 + count - 1) / count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271/* Convert ethernet clock ticks to microseconds */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000272static unsigned int gfar_ticks2usecs(struct gfar_private *priv,
273 unsigned int ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 unsigned int count;
276
277 /* The timer is different, depending on the interface speed */
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400278 switch (priv->phydev->speed) {
279 case SPEED_1000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 count = GFAR_GBIT_TIME;
281 break;
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400282 case SPEED_100:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 count = GFAR_100_TIME;
284 break;
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400285 case SPEED_10:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 default:
287 count = GFAR_10_TIME;
288 break;
289 }
290
291 /* Make sure we return a number greater than 0 */
292 /* if ticks is > 0 */
Eric Dumazet807540b2010-09-23 05:40:09 +0000293 return (ticks * count) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
296/* Get the coalescing parameters, and put them in the cvals
297 * structure. */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000298static int gfar_gcoalesce(struct net_device *dev,
299 struct ethtool_coalesce *cvals)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000302 struct gfar_priv_rx_q *rx_queue = NULL;
303 struct gfar_priv_tx_q *tx_queue = NULL;
Dai Harukib46a8452008-12-16 15:29:52 -0800304 unsigned long rxtime;
305 unsigned long rxcount;
306 unsigned long txtime;
307 unsigned long txcount;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400308
Andy Flemingb31a1d82008-12-16 15:29:15 -0800309 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_COALESCE))
Kumar Gala0bbaf062005-06-20 10:54:21 -0500310 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400312 if (NULL == priv->phydev)
313 return -ENODEV;
314
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000315 rx_queue = priv->rx_queue[0];
316 tx_queue = priv->tx_queue[0];
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000317
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);
Dai Harukib46a8452008-12-16 15:29:52 -0800322 cvals->rx_coalesce_usecs = gfar_ticks2usecs(priv, rxtime);
323 cvals->rx_max_coalesced_frames = rxcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Dai Harukib46a8452008-12-16 15:29:52 -0800325 cvals->tx_coalesce_usecs = gfar_ticks2usecs(priv, txtime);
326 cvals->tx_max_coalesced_frames = txcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 cvals->use_adaptive_rx_coalesce = 0;
329 cvals->use_adaptive_tx_coalesce = 0;
330
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;
336
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.
340 */
341
342 /* When the packet rate is (measured in packets per second)
343 * is above pkt_rate_high, the {rx,tx}_*_high parameters are
344 * used.
345 */
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;
351
352 /* How often to do adaptive coalescing packet rate sampling,
353 * measured in seconds. Must not be zero.
354 */
355 cvals->rate_sample_interval = 0;
356
357 return 0;
358}
359
360/* Change the coalescing values.
361 * Both cvals->*_usecs and cvals->*_frames have to be > 0
362 * in order for coalescing to be active
363 */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000364static int gfar_scoalesce(struct net_device *dev,
365 struct ethtool_coalesce *cvals)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000368 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Andy Flemingb31a1d82008-12-16 15:29:15 -0800370 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_COALESCE))
Kumar Gala0bbaf062005-06-20 10:54:21 -0500371 return -EOPNOTSUPP;
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 /* Set up rx coalescing */
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000374 /* As of now, we will enable/disable coalescing for all
375 * queues together in case of eTSEC2, this will be modified
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000376 * along with the ethtool interface
377 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if ((cvals->rx_coalesce_usecs == 0) ||
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000379 (cvals->rx_max_coalesced_frames == 0)) {
380 for (i = 0; i < priv->num_rx_queues; i++)
381 priv->rx_queue[i]->rxcoalescing = 0;
382 } else {
383 for (i = 0; i < priv->num_rx_queues; i++)
384 priv->rx_queue[i]->rxcoalescing = 1;
385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400387 if (NULL == priv->phydev)
388 return -ENODEV;
389
390 /* Check the bounds of the values */
391 if (cvals->rx_coalesce_usecs > GFAR_MAX_COAL_USECS) {
Joe Perches375d6a12013-04-13 19:03:18 +0000392 netdev_info(dev, "Coalescing is limited to %d microseconds\n",
393 GFAR_MAX_COAL_USECS);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400394 return -EINVAL;
395 }
396
397 if (cvals->rx_max_coalesced_frames > GFAR_MAX_COAL_FRAMES) {
Joe Perches375d6a12013-04-13 19:03:18 +0000398 netdev_info(dev, "Coalescing is limited to %d frames\n",
399 GFAR_MAX_COAL_FRAMES);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400400 return -EINVAL;
401 }
402
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000403 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));
407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 /* Set up tx coalescing */
410 if ((cvals->tx_coalesce_usecs == 0) ||
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000411 (cvals->tx_max_coalesced_frames == 0)) {
412 for (i = 0; i < priv->num_tx_queues; i++)
413 priv->tx_queue[i]->txcoalescing = 0;
414 } else {
415 for (i = 0; i < priv->num_tx_queues; i++)
416 priv->tx_queue[i]->txcoalescing = 1;
417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400419 /* Check the bounds of the values */
420 if (cvals->tx_coalesce_usecs > GFAR_MAX_COAL_USECS) {
Joe Perches375d6a12013-04-13 19:03:18 +0000421 netdev_info(dev, "Coalescing is limited to %d microseconds\n",
422 GFAR_MAX_COAL_USECS);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400423 return -EINVAL;
424 }
425
426 if (cvals->tx_max_coalesced_frames > GFAR_MAX_COAL_FRAMES) {
Joe Perches375d6a12013-04-13 19:03:18 +0000427 netdev_info(dev, "Coalescing is limited to %d frames\n",
428 GFAR_MAX_COAL_FRAMES);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400429 return -EINVAL;
430 }
431
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000432 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));
436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Claudiu Manoil800c6442013-03-19 07:40:05 +0000438 gfar_configure_coalescing_all(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 return 0;
441}
442
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 */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000446static void gfar_gringparam(struct net_device *dev,
447 struct ethtool_ringparam *rvals)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000450 struct gfar_priv_tx_q *tx_queue = NULL;
451 struct gfar_priv_rx_q *rx_queue = NULL;
452
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000453 tx_queue = priv->tx_queue[0];
454 rx_queue = priv->rx_queue[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
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;
460
461 /* Values changeable by the user. The valid values are
462 * in the range 1 to the "*_max_pending" counterpart above.
463 */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000464 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469
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
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000473 * the rings.
474 */
475static int gfar_sringparam(struct net_device *dev,
476 struct ethtool_ringparam *rvals)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000479 int err = 0, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 if (rvals->rx_pending > GFAR_RX_MAX_RING_SIZE)
482 return -EINVAL;
483
484 if (!is_power_of_2(rvals->rx_pending)) {
Joe Perches59deab22011-06-14 08:57:47 +0000485 netdev_err(dev, "Ring sizes must be a power of 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return -EINVAL;
487 }
488
489 if (rvals->tx_pending > GFAR_TX_MAX_RING_SIZE)
490 return -EINVAL;
491
492 if (!is_power_of_2(rvals->tx_pending)) {
Joe Perches59deab22011-06-14 08:57:47 +0000493 netdev_err(dev, "Ring sizes must be a power of 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return -EINVAL;
495 }
496
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (dev->flags & IFF_UP) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500499 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Kumar Gala0bbaf062005-06-20 10:54:21 -0500501 /* Halt TX and RX, and process the frames which
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000502 * have already been received
503 */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000504 local_irq_save(flags);
505 lock_tx_qs(priv);
506 lock_rx_qs(priv);
Andy Flemingfef61082006-04-20 16:44:29 -0500507
Kumar Gala0bbaf062005-06-20 10:54:21 -0500508 gfar_halt(dev);
Andy Flemingfef61082006-04-20 16:44:29 -0500509
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000510 unlock_rx_qs(priv);
511 unlock_tx_qs(priv);
512 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000514 for (i = 0; i < priv->num_rx_queues; i++)
515 gfar_clean_rx_ring(priv->rx_queue[i],
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000516 priv->rx_queue[i]->rx_ring_size);
Dai Haruki12dea572008-12-16 15:30:20 -0800517
Kumar Gala0bbaf062005-06-20 10:54:21 -0500518 /* Now we take down the rings to rebuild them */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 stop_gfar(dev);
520 }
521
Kumar Gala0bbaf062005-06-20 10:54:21 -0500522 /* Change the size */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000523 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;
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000526 priv->tx_queue[i]->num_txbdfree =
527 priv->tx_queue[i]->tx_ring_size;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Kumar Gala0bbaf062005-06-20 10:54:21 -0500530 /* Rebuild the rings with the new size */
Dai Haruki12dea572008-12-16 15:30:20 -0800531 if (dev->flags & IFF_UP) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500532 err = startup_gfar(dev);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000533 netif_tx_wake_all_queues(dev);
Dai Haruki12dea572008-12-16 15:30:20 -0800534 }
Kumar Gala0bbaf062005-06-20 10:54:21 -0500535 return err;
536}
537
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000538int gfar_set_features(struct net_device *dev, netdev_features_t features)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500539{
540 struct gfar_private *priv = netdev_priv(dev);
Scott Woodd87eb122008-07-11 18:04:45 -0500541 unsigned long flags;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000542 int err = 0, i = 0;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000543 netdev_features_t changed = dev->features ^ features;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500544
Jiri Pirko87c288c2011-07-20 04:54:19 +0000545 if (changed & (NETIF_F_HW_VLAN_TX|NETIF_F_HW_VLAN_RX))
546 gfar_vlan_mode(dev, features);
547
Michał Mirosław8b3afe92011-04-15 04:50:50 +0000548 if (!(changed & NETIF_F_RXCSUM))
549 return 0;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000550
Kumar Gala0bbaf062005-06-20 10:54:21 -0500551 if (dev->flags & IFF_UP) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500552 /* Halt TX and RX, and process the frames which
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000553 * have already been received
554 */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000555 local_irq_save(flags);
556 lock_tx_qs(priv);
557 lock_rx_qs(priv);
Andy Flemingfef61082006-04-20 16:44:29 -0500558
Kumar Gala0bbaf062005-06-20 10:54:21 -0500559 gfar_halt(dev);
Andy Flemingfef61082006-04-20 16:44:29 -0500560
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000561 unlock_tx_qs(priv);
562 unlock_rx_qs(priv);
Dan Carpenter97564032010-10-13 09:19:55 +0000563 local_irq_restore(flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500564
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000565 for (i = 0; i < priv->num_rx_queues; i++)
566 gfar_clean_rx_ring(priv->rx_queue[i],
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000567 priv->rx_queue[i]->rx_ring_size);
Dai Haruki12dea572008-12-16 15:30:20 -0800568
Kumar Gala0bbaf062005-06-20 10:54:21 -0500569 /* Now we take down the rings to rebuild them */
570 stop_gfar(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500571
Michał Mirosław8b3afe92011-04-15 04:50:50 +0000572 dev->features = features;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 err = startup_gfar(dev);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000575 netif_tx_wake_all_queues(dev);
Dai Haruki12dea572008-12-16 15:30:20 -0800576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return err;
578}
579
Kumar Gala0bbaf062005-06-20 10:54:21 -0500580static uint32_t gfar_get_msglevel(struct net_device *dev)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400581{
Kumar Gala0bbaf062005-06-20 10:54:21 -0500582 struct gfar_private *priv = netdev_priv(dev);
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000583
Kumar Gala0bbaf062005-06-20 10:54:21 -0500584 return priv->msg_enable;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400585}
586
Kumar Gala0bbaf062005-06-20 10:54:21 -0500587static void gfar_set_msglevel(struct net_device *dev, uint32_t data)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400588{
Kumar Gala0bbaf062005-06-20 10:54:21 -0500589 struct gfar_private *priv = netdev_priv(dev);
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000590
Kumar Gala0bbaf062005-06-20 10:54:21 -0500591 priv->msg_enable = data;
592}
593
Scott Woodd87eb122008-07-11 18:04:45 -0500594#ifdef CONFIG_PM
595static void gfar_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
596{
597 struct gfar_private *priv = netdev_priv(dev);
598
Andy Flemingb31a1d82008-12-16 15:29:15 -0800599 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) {
Scott Woodd87eb122008-07-11 18:04:45 -0500600 wol->supported = WAKE_MAGIC;
601 wol->wolopts = priv->wol_en ? WAKE_MAGIC : 0;
602 } else {
603 wol->supported = wol->wolopts = 0;
604 }
605}
606
607static int gfar_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
608{
609 struct gfar_private *priv = netdev_priv(dev);
610 unsigned long flags;
611
Andy Flemingb31a1d82008-12-16 15:29:15 -0800612 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
Scott Woodd87eb122008-07-11 18:04:45 -0500613 wol->wolopts != 0)
614 return -EINVAL;
615
616 if (wol->wolopts & ~WAKE_MAGIC)
617 return -EINVAL;
618
Rafael J. Wysocki6c4f1992010-11-09 11:54:19 +0000619 device_set_wakeup_enable(&dev->dev, wol->wolopts & WAKE_MAGIC);
620
Scott Woodd87eb122008-07-11 18:04:45 -0500621 spin_lock_irqsave(&priv->bflock, flags);
Rafael J. Wysocki6c4f1992010-11-09 11:54:19 +0000622 priv->wol_en = !!device_may_wakeup(&dev->dev);
Scott Woodd87eb122008-07-11 18:04:45 -0500623 spin_unlock_irqrestore(&priv->bflock, flags);
624
625 return 0;
626}
627#endif
Kumar Gala0bbaf062005-06-20 10:54:21 -0500628
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000629static void ethflow_to_filer_rules (struct gfar_private *priv, u64 ethflow)
630{
631 u32 fcr = 0x0, fpr = FPR_FILER_MASK;
632
633 if (ethflow & RXH_L2DA) {
634 fcr = RQFCR_PID_DAH |RQFCR_CMP_NOMATCH |
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000635 RQFCR_HASH | RQFCR_AND | RQFCR_HASHTBL_0;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000636 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
637 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000638 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
639 priv->cur_filer_idx = priv->cur_filer_idx - 1;
640
641 fcr = RQFCR_PID_DAL | RQFCR_AND | RQFCR_CMP_NOMATCH |
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000642 RQFCR_HASH | RQFCR_AND | RQFCR_HASHTBL_0;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000643 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
644 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000645 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
646 priv->cur_filer_idx = priv->cur_filer_idx - 1;
647 }
648
649 if (ethflow & RXH_VLAN) {
650 fcr = RQFCR_PID_VID | RQFCR_CMP_NOMATCH | RQFCR_HASH |
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000651 RQFCR_AND | RQFCR_HASHTBL_0;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000652 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000653 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
654 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000655 priv->cur_filer_idx = priv->cur_filer_idx - 1;
656 }
657
658 if (ethflow & RXH_IP_SRC) {
659 fcr = RQFCR_PID_SIA | RQFCR_CMP_NOMATCH | RQFCR_HASH |
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000660 RQFCR_AND | RQFCR_HASHTBL_0;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000661 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
662 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000663 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
664 priv->cur_filer_idx = priv->cur_filer_idx - 1;
665 }
666
667 if (ethflow & (RXH_IP_DST)) {
668 fcr = RQFCR_PID_DIA | RQFCR_CMP_NOMATCH | RQFCR_HASH |
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000669 RQFCR_AND | RQFCR_HASHTBL_0;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000670 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
671 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000672 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
673 priv->cur_filer_idx = priv->cur_filer_idx - 1;
674 }
675
676 if (ethflow & RXH_L3_PROTO) {
677 fcr = RQFCR_PID_L4P | RQFCR_CMP_NOMATCH | RQFCR_HASH |
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000678 RQFCR_AND | RQFCR_HASHTBL_0;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000679 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
680 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000681 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
682 priv->cur_filer_idx = priv->cur_filer_idx - 1;
683 }
684
685 if (ethflow & RXH_L4_B_0_1) {
686 fcr = RQFCR_PID_SPT | RQFCR_CMP_NOMATCH | RQFCR_HASH |
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000687 RQFCR_AND | RQFCR_HASHTBL_0;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000688 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
689 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000690 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
691 priv->cur_filer_idx = priv->cur_filer_idx - 1;
692 }
693
694 if (ethflow & RXH_L4_B_2_3) {
695 fcr = RQFCR_PID_DPT | RQFCR_CMP_NOMATCH | RQFCR_HASH |
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000696 RQFCR_AND | RQFCR_HASHTBL_0;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000697 priv->ftp_rqfpr[priv->cur_filer_idx] = fpr;
698 priv->ftp_rqfcr[priv->cur_filer_idx] = fcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000699 gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr);
700 priv->cur_filer_idx = priv->cur_filer_idx - 1;
701 }
702}
703
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000704static int gfar_ethflow_to_filer_table(struct gfar_private *priv, u64 ethflow,
705 u64 class)
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000706{
707 unsigned int last_rule_idx = priv->cur_filer_idx;
708 unsigned int cmp_rqfpr;
Wang Shaoyan588dc912011-08-11 17:07:25 +0000709 unsigned int *local_rqfpr;
710 unsigned int *local_rqfcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000711 int i = 0x0, k = 0x0;
712 int j = MAX_FILER_IDX, l = 0x0;
Wang Shaoyan588dc912011-08-11 17:07:25 +0000713 int ret = 1;
714
Joe Perchesb2adaca2013-02-03 17:43:58 +0000715 local_rqfpr = kmalloc_array(MAX_FILER_IDX + 1, sizeof(unsigned int),
716 GFP_KERNEL);
717 local_rqfcr = kmalloc_array(MAX_FILER_IDX + 1, sizeof(unsigned int),
718 GFP_KERNEL);
Wang Shaoyan588dc912011-08-11 17:07:25 +0000719 if (!local_rqfpr || !local_rqfcr) {
Wang Shaoyan588dc912011-08-11 17:07:25 +0000720 ret = 0;
721 goto err;
722 }
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000723
724 switch (class) {
725 case TCP_V4_FLOW:
726 cmp_rqfpr = RQFPR_IPV4 |RQFPR_TCP;
727 break;
728 case UDP_V4_FLOW:
729 cmp_rqfpr = RQFPR_IPV4 |RQFPR_UDP;
730 break;
731 case TCP_V6_FLOW:
732 cmp_rqfpr = RQFPR_IPV6 |RQFPR_TCP;
733 break;
734 case UDP_V6_FLOW:
735 cmp_rqfpr = RQFPR_IPV6 |RQFPR_UDP;
736 break;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000737 default:
Joe Perches375d6a12013-04-13 19:03:18 +0000738 netdev_err(priv->ndev,
739 "Right now this class is not supported\n");
Wang Shaoyan588dc912011-08-11 17:07:25 +0000740 ret = 0;
741 goto err;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000742 }
743
744 for (i = 0; i < MAX_FILER_IDX + 1; i++) {
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000745 local_rqfpr[j] = priv->ftp_rqfpr[i];
746 local_rqfcr[j] = priv->ftp_rqfcr[i];
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000747 j--;
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000748 if ((priv->ftp_rqfcr[i] ==
749 (RQFCR_PID_PARSE | RQFCR_CLE | RQFCR_AND)) &&
750 (priv->ftp_rqfpr[i] == cmp_rqfpr))
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000751 break;
752 }
753
754 if (i == MAX_FILER_IDX + 1) {
Joe Perches375d6a12013-04-13 19:03:18 +0000755 netdev_err(priv->ndev,
756 "No parse rule found, can't create hash rules\n");
Wang Shaoyan588dc912011-08-11 17:07:25 +0000757 ret = 0;
758 goto err;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000759 }
760
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
763 */
764 for (l = i+1; l < MAX_FILER_IDX; l++) {
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000765 if ((priv->ftp_rqfcr[l] & RQFCR_CLE) &&
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000766 !(priv->ftp_rqfcr[l] & RQFCR_AND)) {
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000767 priv->ftp_rqfcr[l] = RQFCR_CLE | RQFCR_CMP_EXACT |
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000768 RQFCR_HASHTBL_0 | RQFCR_PID_MASK;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000769 priv->ftp_rqfpr[l] = FPR_FILER_MASK;
770 gfar_write_filer(priv, l, priv->ftp_rqfcr[l],
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000771 priv->ftp_rqfpr[l]);
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000772 break;
773 }
774
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000775 if (!(priv->ftp_rqfcr[l] & RQFCR_CLE) &&
776 (priv->ftp_rqfcr[l] & RQFCR_AND))
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000777 continue;
778 else {
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000779 local_rqfpr[j] = priv->ftp_rqfpr[l];
780 local_rqfcr[j] = priv->ftp_rqfcr[l];
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000781 j--;
782 }
783 }
784
785 priv->cur_filer_idx = l - 1;
786 last_rule_idx = l;
787
788 /* hash rules */
789 ethflow_to_filer_rules(priv, ethflow);
790
791 /* Write back the popped out rules again */
792 for (k = j+1; k < MAX_FILER_IDX; k++) {
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000793 priv->ftp_rqfpr[priv->cur_filer_idx] = local_rqfpr[k];
794 priv->ftp_rqfcr[priv->cur_filer_idx] = local_rqfcr[k];
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000795 gfar_write_filer(priv, priv->cur_filer_idx,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000796 local_rqfcr[k], local_rqfpr[k]);
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000797 if (!priv->cur_filer_idx)
798 break;
799 priv->cur_filer_idx = priv->cur_filer_idx - 1;
800 }
801
Wang Shaoyan588dc912011-08-11 17:07:25 +0000802err:
803 kfree(local_rqfcr);
804 kfree(local_rqfpr);
805 return ret;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000806}
807
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000808static int gfar_set_hash_opts(struct gfar_private *priv,
809 struct ethtool_rxnfc *cmd)
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000810{
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000811 /* write the filer rules here */
812 if (!gfar_ethflow_to_filer_table(priv, cmd->data, cmd->flow_type))
Ben Hutchingsbde35282011-04-08 13:45:11 +0000813 return -EINVAL;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000814
815 return 0;
816}
817
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700818static int gfar_check_filer_hardware(struct gfar_private *priv)
819{
820 struct gfar __iomem *regs = NULL;
821 u32 i;
822
823 regs = priv->gfargrp[0].regs;
824
825 /* Check if we are in FIFO mode */
826 i = gfar_read(&regs->ecntrl);
827 i &= ECNTRL_FIFM;
828 if (i == ECNTRL_FIFM) {
829 netdev_notice(priv->ndev, "Interface in FIFO mode\n");
830 i = gfar_read(&regs->rctrl);
831 i &= RCTRL_PRSDEP_MASK | RCTRL_PRSFM;
832 if (i == (RCTRL_PRSDEP_MASK | RCTRL_PRSFM)) {
833 netdev_info(priv->ndev,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000834 "Receive Queue Filtering enabled\n");
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700835 } else {
836 netdev_warn(priv->ndev,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000837 "Receive Queue Filtering disabled\n");
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700838 return -EOPNOTSUPP;
839 }
840 }
841 /* Or in standard mode */
842 else {
843 i = gfar_read(&regs->rctrl);
844 i &= RCTRL_PRSDEP_MASK;
845 if (i == RCTRL_PRSDEP_MASK) {
846 netdev_info(priv->ndev,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000847 "Receive Queue Filtering enabled\n");
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700848 } else {
849 netdev_warn(priv->ndev,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000850 "Receive Queue Filtering disabled\n");
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700851 return -EOPNOTSUPP;
852 }
853 }
854
855 /* Sets the properties for arbitrary filer rule
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000856 * to the first 4 Layer 4 Bytes
857 */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700858 regs->rbifx = 0xC0C1C2C3;
859 return 0;
860}
861
862static int gfar_comp_asc(const void *a, const void *b)
863{
864 return memcmp(a, b, 4);
865}
866
867static int gfar_comp_desc(const void *a, const void *b)
868{
869 return -memcmp(a, b, 4);
870}
871
872static void gfar_swap(void *a, void *b, int size)
873{
874 u32 *_a = a;
875 u32 *_b = b;
876
877 swap(_a[0], _b[0]);
878 swap(_a[1], _b[1]);
879 swap(_a[2], _b[2]);
880 swap(_a[3], _b[3]);
881}
882
883/* Write a mask to filer cache */
884static void gfar_set_mask(u32 mask, struct filer_table *tab)
885{
886 tab->fe[tab->index].ctrl = RQFCR_AND | RQFCR_PID_MASK | RQFCR_CMP_EXACT;
887 tab->fe[tab->index].prop = mask;
888 tab->index++;
889}
890
891/* Sets parse bits (e.g. IP or TCP) */
892static void gfar_set_parse_bits(u32 value, u32 mask, struct filer_table *tab)
893{
894 gfar_set_mask(mask, tab);
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000895 tab->fe[tab->index].ctrl = RQFCR_CMP_EXACT | RQFCR_PID_PARSE |
896 RQFCR_AND;
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700897 tab->fe[tab->index].prop = value;
898 tab->index++;
899}
900
901static void gfar_set_general_attribute(u32 value, u32 mask, u32 flag,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000902 struct filer_table *tab)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700903{
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;
907 tab->index++;
908}
909
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000910/* For setting a tuple of value and mask of type flag
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700911 * Example:
912 * IP-Src = 10.0.0.0/255.0.0.0
913 * value: 0x0A000000 mask: FF000000 flag: RQFPR_IPV4
914 *
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
917 *
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.
921 *
922 * Further the all masks are one-padded for better hardware efficiency.
923 */
924static void gfar_set_attribute(u32 value, u32 mask, u32 flag,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000925 struct filer_table *tab)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700926{
927 switch (flag) {
Sebastian Poehn380b1532011-07-07 04:30:29 -0700928 /* 3bit */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700929 case RQFCR_PID_PRI:
930 if (!(value | mask))
931 return;
932 mask |= RQFCR_PID_PRI_MASK;
933 break;
934 /* 8bit */
935 case RQFCR_PID_L4P:
936 case RQFCR_PID_TOS:
937 if (!~(mask | RQFCR_PID_L4P_MASK))
938 return;
939 if (!mask)
940 mask = ~0;
941 else
942 mask |= RQFCR_PID_L4P_MASK;
943 break;
944 /* 12bit */
945 case RQFCR_PID_VID:
946 if (!(value | mask))
947 return;
948 mask |= RQFCR_PID_VID_MASK;
949 break;
950 /* 16bit */
951 case RQFCR_PID_DPT:
952 case RQFCR_PID_SPT:
953 case RQFCR_PID_ETY:
954 if (!~(mask | RQFCR_PID_PORT_MASK))
955 return;
956 if (!mask)
957 mask = ~0;
958 else
959 mask |= RQFCR_PID_PORT_MASK;
960 break;
961 /* 24bit */
962 case RQFCR_PID_DAH:
963 case RQFCR_PID_DAL:
964 case RQFCR_PID_SAH:
965 case RQFCR_PID_SAL:
966 if (!(value | mask))
967 return;
968 mask |= RQFCR_PID_MAC_MASK;
969 break;
970 /* for all real 32bit masks */
971 default:
972 if (!~mask)
973 return;
974 if (!mask)
975 mask = ~0;
976 break;
977 }
978 gfar_set_general_attribute(value, mask, flag, tab);
979}
980
981/* Translates value and mask for UDP, TCP or SCTP */
982static void gfar_set_basic_ip(struct ethtool_tcpip4_spec *value,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000983 struct ethtool_tcpip4_spec *mask,
984 struct filer_table *tab)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700985{
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);
991}
992
993/* Translates value and mask for RAW-IP4 */
994static void gfar_set_user_ip(struct ethtool_usrip4_spec *value,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +0000995 struct ethtool_usrip4_spec *mask,
996 struct filer_table *tab)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700997{
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,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001003 tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001004
1005}
1006
1007/* Translates value and mask for ETHER spec */
1008static void gfar_set_ether(struct ethhdr *value, struct ethhdr *mask,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001009 struct filer_table *tab)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001010{
1011 u32 upper_temp_mask = 0;
1012 u32 lower_temp_mask = 0;
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001013
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001014 /* Source address */
1015 if (!is_broadcast_ether_addr(mask->h_source)) {
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001016 if (is_zero_ether_addr(mask->h_source)) {
1017 upper_temp_mask = 0xFFFFFFFF;
1018 lower_temp_mask = 0xFFFFFFFF;
1019 } else {
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001020 upper_temp_mask = mask->h_source[0] << 16 |
1021 mask->h_source[1] << 8 |
1022 mask->h_source[2];
1023 lower_temp_mask = mask->h_source[3] << 16 |
1024 mask->h_source[4] << 8 |
1025 mask->h_source[5];
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001026 }
1027 /* Upper 24bit */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001028 gfar_set_attribute(value->h_source[0] << 16 |
1029 value->h_source[1] << 8 |
1030 value->h_source[2],
1031 upper_temp_mask, RQFCR_PID_SAH, tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001032 /* And the same for the lower part */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001033 gfar_set_attribute(value->h_source[3] << 16 |
1034 value->h_source[4] << 8 |
1035 value->h_source[5],
1036 lower_temp_mask, RQFCR_PID_SAL, tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001037 }
1038 /* Destination address */
1039 if (!is_broadcast_ether_addr(mask->h_dest)) {
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001040 /* Special for destination is limited broadcast */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001041 if ((is_broadcast_ether_addr(value->h_dest) &&
1042 is_zero_ether_addr(mask->h_dest))) {
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001043 gfar_set_parse_bits(RQFPR_EBC, RQFPR_EBC, tab);
1044 } else {
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001045 if (is_zero_ether_addr(mask->h_dest)) {
1046 upper_temp_mask = 0xFFFFFFFF;
1047 lower_temp_mask = 0xFFFFFFFF;
1048 } else {
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001049 upper_temp_mask = mask->h_dest[0] << 16 |
1050 mask->h_dest[1] << 8 |
1051 mask->h_dest[2];
1052 lower_temp_mask = mask->h_dest[3] << 16 |
1053 mask->h_dest[4] << 8 |
1054 mask->h_dest[5];
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001055 }
1056
1057 /* Upper 24bit */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001058 gfar_set_attribute(value->h_dest[0] << 16 |
1059 value->h_dest[1] << 8 |
1060 value->h_dest[2],
1061 upper_temp_mask, RQFCR_PID_DAH, tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001062 /* And the same for the lower part */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001063 gfar_set_attribute(value->h_dest[3] << 16 |
1064 value->h_dest[4] << 8 |
1065 value->h_dest[5],
1066 lower_temp_mask, RQFCR_PID_DAL, tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001067 }
1068 }
1069
1070 gfar_set_attribute(value->h_proto, mask->h_proto, RQFCR_PID_ETY, tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001071}
1072
1073/* Convert a rule to binary filter format of gianfar */
1074static int gfar_convert_to_filer(struct ethtool_rx_flow_spec *rule,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001075 struct filer_table *tab)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001076{
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;
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001081 u32 old_index = tab->index;
1082
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;
1087
1088 vlan = RQFPR_VLN;
1089 vlan_mask = RQFPR_VLN;
1090
1091 /* Separate the fields */
Sebastian Poehn380b1532011-07-07 04:30:29 -07001092 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;
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001096 prio = (rule->h_ext.vlan_tci & VLAN_PRIO_MASK) >>
1097 VLAN_PRIO_SHIFT;
1098 prio_mask = (rule->m_ext.vlan_tci & VLAN_PRIO_MASK) >>
1099 VLAN_PRIO_SHIFT;
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001100
Sebastian Poehn380b1532011-07-07 04:30:29 -07001101 if (cfi == VLAN_TAG_PRESENT && cfi_mask == VLAN_TAG_PRESENT) {
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001102 vlan |= RQFPR_CFI;
1103 vlan_mask |= RQFPR_CFI;
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001104 } else if (cfi != VLAN_TAG_PRESENT &&
1105 cfi_mask == VLAN_TAG_PRESENT) {
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001106 vlan_mask |= RQFPR_CFI;
1107 }
1108 }
1109
1110 switch (rule->flow_type & ~FLOW_EXT) {
1111 case TCP_V4_FLOW:
1112 gfar_set_parse_bits(RQFPR_IPV4 | RQFPR_TCP | vlan,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001113 RQFPR_IPV4 | RQFPR_TCP | vlan_mask, tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001114 gfar_set_basic_ip(&rule->h_u.tcp_ip4_spec,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001115 &rule->m_u.tcp_ip4_spec, tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001116 break;
1117 case UDP_V4_FLOW:
1118 gfar_set_parse_bits(RQFPR_IPV4 | RQFPR_UDP | vlan,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001119 RQFPR_IPV4 | RQFPR_UDP | vlan_mask, tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001120 gfar_set_basic_ip(&rule->h_u.udp_ip4_spec,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001121 &rule->m_u.udp_ip4_spec, tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001122 break;
1123 case SCTP_V4_FLOW:
1124 gfar_set_parse_bits(RQFPR_IPV4 | vlan, RQFPR_IPV4 | vlan_mask,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001125 tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001126 gfar_set_attribute(132, 0, RQFCR_PID_L4P, tab);
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001127 gfar_set_basic_ip((struct ethtool_tcpip4_spec *)&rule->h_u,
1128 (struct ethtool_tcpip4_spec *)&rule->m_u,
1129 tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001130 break;
1131 case IP_USER_FLOW:
1132 gfar_set_parse_bits(RQFPR_IPV4 | vlan, RQFPR_IPV4 | vlan_mask,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001133 tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001134 gfar_set_user_ip((struct ethtool_usrip4_spec *) &rule->h_u,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001135 (struct ethtool_usrip4_spec *) &rule->m_u,
1136 tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001137 break;
1138 case ETHER_FLOW:
1139 if (vlan)
1140 gfar_set_parse_bits(vlan, vlan_mask, tab);
1141 gfar_set_ether((struct ethhdr *) &rule->h_u,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001142 (struct ethhdr *) &rule->m_u, tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001143 break;
1144 default:
1145 return -1;
1146 }
1147
1148 /* Set the vlan attributes in the end */
1149 if (vlan) {
1150 gfar_set_attribute(id, id_mask, RQFCR_PID_VID, tab);
1151 gfar_set_attribute(prio, prio_mask, RQFCR_PID_PRI, tab);
1152 }
1153
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;
1159 tab->index++;
1160 }
1161
1162 /* Remove last AND */
1163 tab->fe[tab->index - 1].ctrl &= (~RQFCR_AND);
1164
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;
1168 else
1169 tab->fe[tab->index - 1].ctrl |= (rule->ring_cookie << 10);
1170
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;
1175 }
1176
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001177 /* In rare cases the cache can be full while there is
1178 * free space in hw
1179 */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001180 if (tab->index > MAX_FILER_CACHE_IDX - 1)
1181 return -EBUSY;
1182
1183 return 0;
1184}
1185
1186/* Copy size filer entries */
1187static void gfar_copy_filer_entries(struct gfar_filer_entry dst[0],
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001188 struct gfar_filer_entry src[0], s32 size)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001189{
1190 while (size > 0) {
1191 size--;
1192 dst[size].ctrl = src[size].ctrl;
1193 dst[size].prop = src[size].prop;
1194 }
1195}
1196
1197/* Delete the contents of the filer-table between start and end
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001198 * and collapse them
1199 */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001200static int gfar_trim_filer_entries(u32 begin, u32 end, struct filer_table *tab)
1201{
1202 int length;
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001203
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001204 if (end > MAX_FILER_CACHE_IDX || end < begin)
1205 return -EINVAL;
1206
1207 end++;
1208 length = end - begin;
1209
1210 /* Copy */
1211 while (end < tab->index) {
1212 tab->fe[begin].ctrl = tab->fe[end].ctrl;
1213 tab->fe[begin++].prop = tab->fe[end++].prop;
1214
1215 }
1216 /* Fill up with don't cares */
1217 while (begin < tab->index) {
1218 tab->fe[begin].ctrl = 0x60;
1219 tab->fe[begin].prop = 0xFFFFFFFF;
1220 begin++;
1221 }
1222
1223 tab->index -= length;
1224 return 0;
1225}
1226
1227/* Make space on the wanted location */
1228static int gfar_expand_filer_entries(u32 begin, u32 length,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001229 struct filer_table *tab)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001230{
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001231 if (length == 0 || length + tab->index > MAX_FILER_CACHE_IDX ||
1232 begin > MAX_FILER_CACHE_IDX)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001233 return -EINVAL;
1234
1235 gfar_copy_filer_entries(&(tab->fe[begin + length]), &(tab->fe[begin]),
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001236 tab->index - length + 1);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001237
1238 tab->index += length;
1239 return 0;
1240}
1241
1242static int gfar_get_next_cluster_start(int start, struct filer_table *tab)
1243{
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001244 for (; (start < tab->index) && (start < MAX_FILER_CACHE_IDX - 1);
1245 start++) {
1246 if ((tab->fe[start].ctrl & (RQFCR_AND | RQFCR_CLE)) ==
1247 (RQFCR_AND | RQFCR_CLE))
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001248 return start;
1249 }
1250 return -1;
1251}
1252
1253static int gfar_get_next_cluster_end(int start, struct filer_table *tab)
1254{
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001255 for (; (start < tab->index) && (start < MAX_FILER_CACHE_IDX - 1);
1256 start++) {
1257 if ((tab->fe[start].ctrl & (RQFCR_AND | RQFCR_CLE)) ==
1258 (RQFCR_CLE))
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001259 return start;
1260 }
1261 return -1;
1262}
1263
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001264/* Uses hardwares clustering option to reduce
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001265 * the number of filer table entries
1266 */
1267static void gfar_cluster_filer(struct filer_table *tab)
1268{
1269 s32 i = -1, j, iend, jend;
1270
1271 while ((i = gfar_get_next_cluster_start(++i, tab)) != -1) {
1272 j = i;
1273 while ((j = gfar_get_next_cluster_start(++j, tab)) != -1) {
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001274 /* The cluster entries self and the previous one
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001275 * (a mask) must be identical!
1276 */
1277 if (tab->fe[i].ctrl != tab->fe[j].ctrl)
1278 break;
1279 if (tab->fe[i].prop != tab->fe[j].prop)
1280 break;
1281 if (tab->fe[i - 1].ctrl != tab->fe[j - 1].ctrl)
1282 break;
1283 if (tab->fe[i - 1].prop != tab->fe[j - 1].prop)
1284 break;
1285 iend = gfar_get_next_cluster_end(i, tab);
1286 jend = gfar_get_next_cluster_end(j, tab);
1287 if (jend == -1 || iend == -1)
1288 break;
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001289
1290 /* First we make some free space, where our cluster
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001291 * element should be. Then we copy it there and finally
1292 * delete in from its old location.
1293 */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001294 if (gfar_expand_filer_entries(iend, (jend - j), tab) ==
1295 -EINVAL)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001296 break;
1297
1298 gfar_copy_filer_entries(&(tab->fe[iend + 1]),
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001299 &(tab->fe[jend + 1]), jend - j);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001300
1301 if (gfar_trim_filer_entries(jend - 1,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001302 jend + (jend - j),
1303 tab) == -EINVAL)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001304 return;
1305
1306 /* Mask out cluster bit */
1307 tab->fe[iend].ctrl &= ~(RQFCR_CLE);
1308 }
1309 }
1310}
1311
Sebastian Poehn380b1532011-07-07 04:30:29 -07001312/* Swaps the masked bits of a1<>a2 and b1<>b2 */
1313static void gfar_swap_bits(struct gfar_filer_entry *a1,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001314 struct gfar_filer_entry *a2,
1315 struct gfar_filer_entry *b1,
1316 struct gfar_filer_entry *b2, u32 mask)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001317{
1318 u32 temp[4];
Sebastian Poehn380b1532011-07-07 04:30:29 -07001319 temp[0] = a1->ctrl & mask;
1320 temp[1] = a2->ctrl & mask;
1321 temp[2] = b1->ctrl & mask;
1322 temp[3] = b2->ctrl & mask;
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001323
Sebastian Poehn380b1532011-07-07 04:30:29 -07001324 a1->ctrl &= ~mask;
1325 a2->ctrl &= ~mask;
1326 b1->ctrl &= ~mask;
1327 b2->ctrl &= ~mask;
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001328
1329 a1->ctrl |= temp[1];
1330 a2->ctrl |= temp[0];
1331 b1->ctrl |= temp[3];
1332 b2->ctrl |= temp[2];
1333}
1334
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001335/* Generate a list consisting of masks values with their start and
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001336 * end of validity and block as indicator for parts belonging
1337 * together (glued by ANDs) in mask_table
1338 */
1339static u32 gfar_generate_mask_table(struct gfar_mask_entry *mask_table,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001340 struct filer_table *tab)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001341{
1342 u32 i, and_index = 0, block_index = 1;
1343
1344 for (i = 0; i < tab->index; i++) {
1345
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;
1351 if (and_index >= 1)
1352 mask_table[and_index - 1].end = i - 1;
1353 and_index++;
1354 }
Sebastian Poehn380b1532011-07-07 04:30:29 -07001355 /* cluster starts and ends will be separated because they should
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001356 * hold their position
1357 */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001358 if (tab->fe[i].ctrl & RQFCR_CLE)
1359 block_index++;
1360 /* A not set AND indicates the end of a depended block */
1361 if (!(tab->fe[i].ctrl & RQFCR_AND))
1362 block_index++;
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001363 }
1364
1365 mask_table[and_index - 1].end = i - 1;
1366
1367 return and_index;
1368}
1369
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001370/* Sorts the entries of mask_table by the values of the masks.
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001371 * Important: The 0xFF80 flags of the first and last entry of a
1372 * block must hold their position (which queue, CLusterEnable, ReJEct,
1373 * AND)
1374 */
1375static void gfar_sort_mask_table(struct gfar_mask_entry *mask_table,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001376 struct filer_table *temp_table, u32 and_index)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001377{
1378 /* Pointer to compare function (_asc or _desc) */
1379 int (*gfar_comp)(const void *, const void *);
1380
1381 u32 i, size = 0, start = 0, prev = 1;
1382 u32 old_first, old_last, new_first, new_last;
1383
1384 gfar_comp = &gfar_comp_desc;
1385
1386 for (i = 0; i < and_index; i++) {
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001387 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,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001391 sizeof(struct gfar_mask_entry),
1392 gfar_comp, &gfar_swap);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001393
1394 /* Toggle order for every block. This makes the
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001395 * thing more efficient!
1396 */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001397 if (gfar_comp == gfar_comp_desc)
1398 gfar_comp = &gfar_comp_asc;
1399 else
1400 gfar_comp = &gfar_comp_desc;
1401
1402 new_first = mask_table[start].start + 1;
1403 new_last = mask_table[i - 1].end;
1404
Sebastian Poehn380b1532011-07-07 04:30:29 -07001405 gfar_swap_bits(&temp_table->fe[new_first],
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001406 &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);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001411
1412 start = i;
1413 size = 0;
1414 }
1415 size++;
1416 prev = mask_table[i].block;
1417 }
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001418}
1419
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001420/* Reduces the number of masks needed in the filer table to save entries
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001421 * 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
1424 * it.
1425 */
1426static int gfar_optimize_filer_masks(struct filer_table *tab)
1427{
1428 struct filer_table *temp_table;
1429 struct gfar_mask_entry *mask_table;
1430
1431 u32 and_index = 0, previous_mask = 0, i = 0, j = 0, size = 0;
1432 s32 ret = 0;
1433
1434 /* We need a copy of the filer table because
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001435 * we want to change its order
1436 */
Thomas Meyerb8ffdbd2011-11-17 13:05:35 +00001437 temp_table = kmemdup(tab, sizeof(*temp_table), GFP_KERNEL);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001438 if (temp_table == NULL)
1439 return -ENOMEM;
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001440
1441 mask_table = kcalloc(MAX_FILER_CACHE_IDX / 2 + 1,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001442 sizeof(struct gfar_mask_entry), GFP_KERNEL);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001443
1444 if (mask_table == NULL) {
1445 ret = -ENOMEM;
1446 goto end;
1447 }
1448
1449 and_index = gfar_generate_mask_table(mask_table, tab);
1450
1451 gfar_sort_mask_table(mask_table, temp_table, and_index);
1452
1453 /* Now we can copy the data from our duplicated filer table to
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001454 * the real one in the order the mask table says
1455 */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001456 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);
1460 j += size;
1461 }
1462
1463 /* And finally we just have to check for duplicated masks and drop the
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001464 * second ones
1465 */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001466 for (i = 0; i < tab->index && i < MAX_FILER_CACHE_IDX; i++) {
1467 if (tab->fe[i].ctrl == 0x80) {
1468 previous_mask = i++;
1469 break;
1470 }
1471 }
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!
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001476 * So drop the second one!
1477 */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001478 gfar_trim_filer_entries(i, i, tab);
1479 } else
1480 /* Not identical! */
1481 previous_mask = i;
1482 }
1483 }
1484
1485 kfree(mask_table);
1486end: kfree(temp_table);
1487 return ret;
1488}
1489
1490/* Write the bit-pattern from software's buffer to hardware registers */
1491static int gfar_write_filer_table(struct gfar_private *priv,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001492 struct filer_table *tab)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001493{
1494 u32 i = 0;
1495 if (tab->index > MAX_FILER_IDX - 1)
1496 return -EBUSY;
1497
1498 /* Avoid inconsistent filer table to be processed */
1499 lock_rx_qs(priv);
1500
1501 /* Fill regular entries */
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001502 for (; i < MAX_FILER_IDX - 1 && (tab->fe[i].ctrl | tab->fe[i].ctrl);
1503 i++)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001504 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
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001509 * because that's what people expect
1510 */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001511 gfar_write_filer(priv, i, 0x20, 0x0);
1512
1513 unlock_rx_qs(priv);
1514
1515 return 0;
1516}
1517
1518static int gfar_check_capability(struct ethtool_rx_flow_spec *flow,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001519 struct gfar_private *priv)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001520{
1521
1522 if (flow->flow_type & FLOW_EXT) {
1523 if (~flow->m_ext.data[0] || ~flow->m_ext.data[1])
1524 netdev_warn(priv->ndev,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001525 "User-specific data not supported!\n");
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001526 if (~flow->m_ext.vlan_etype)
1527 netdev_warn(priv->ndev,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001528 "VLAN-etype not supported!\n");
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001529 }
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,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001533 "IP-Version differing from IPv4 not supported!\n");
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001534
1535 return 0;
1536}
1537
1538static int gfar_process_filer_changes(struct gfar_private *priv)
1539{
1540 struct ethtool_flow_spec_container *j;
1541 struct filer_table *tab;
1542 s32 i = 0;
1543 s32 ret = 0;
1544
1545 /* So index is set to zero, too! */
1546 tab = kzalloc(sizeof(*tab), GFP_KERNEL);
1547 if (tab == NULL)
1548 return -ENOMEM;
1549
1550 /* Now convert the existing filer data from flow_spec into
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001551 * filer tables binary format
1552 */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001553 list_for_each_entry(j, &priv->rx_list.list, list) {
1554 ret = gfar_convert_to_filer(&j->fs, tab);
1555 if (ret == -EBUSY) {
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001556 netdev_err(priv->ndev,
1557 "Rule not added: No free space!\n");
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001558 goto end;
1559 }
1560 if (ret == -1) {
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001561 netdev_err(priv->ndev,
1562 "Rule not added: Unsupported Flow-type!\n");
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001563 goto end;
1564 }
1565 }
1566
1567 i = tab->index;
1568
1569 /* Optimizations to save entries */
1570 gfar_cluster_filer(tab);
1571 gfar_optimize_filer_masks(tab);
1572
Joe Perches375d6a12013-04-13 19:03:18 +00001573 pr_debug("\tSummary:\n"
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001574 "\tData on hardware: %d\n"
1575 "\tCompression rate: %d%%\n",
1576 tab->index, 100 - (100 * tab->index) / i);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001577
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");
1582 goto end;
1583 }
1584
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001585end:
1586 kfree(tab);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001587 return ret;
1588}
1589
1590static void gfar_invert_masks(struct ethtool_rx_flow_spec *flow)
1591{
1592 u32 i = 0;
1593
1594 for (i = 0; i < sizeof(flow->m_u); i++)
1595 flow->m_u.hdata[i] ^= 0xFF;
1596
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;
1601}
1602
1603static int gfar_add_cls(struct gfar_private *priv,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001604 struct ethtool_rx_flow_spec *flow)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001605{
1606 struct ethtool_flow_spec_container *temp, *comp;
1607 int ret = 0;
1608
1609 temp = kmalloc(sizeof(*temp), GFP_KERNEL);
1610 if (temp == NULL)
1611 return -ENOMEM;
1612 memcpy(&temp->fs, flow, sizeof(temp->fs));
1613
1614 gfar_invert_masks(&temp->fs);
1615 ret = gfar_check_capability(&temp->fs, priv);
1616 if (ret)
1617 goto clean_mem;
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);
1621 if (ret != 0)
1622 goto clean_mem;
1623 list_add(&temp->list, &priv->rx_list.list);
1624 goto process;
1625 } else {
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001626 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);
1629 goto process;
1630 }
1631 if (comp->fs.location == flow->location) {
1632 netdev_err(priv->ndev,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001633 "Rule not added: ID %d not free!\n",
1634 flow->location);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001635 ret = -EBUSY;
1636 goto clean_mem;
1637 }
1638 }
1639 list_add_tail(&temp->list, &priv->rx_list.list);
1640 }
1641
1642process:
1643 ret = gfar_process_filer_changes(priv);
1644 if (ret)
1645 goto clean_list;
1646 priv->rx_list.count++;
1647 return ret;
1648
1649clean_list:
1650 list_del(&temp->list);
1651clean_mem:
1652 kfree(temp);
1653 return ret;
1654}
1655
1656static int gfar_del_cls(struct gfar_private *priv, u32 loc)
1657{
1658 struct ethtool_flow_spec_container *comp;
1659 u32 ret = -EINVAL;
1660
1661 if (list_empty(&priv->rx_list.list))
1662 return ret;
1663
1664 list_for_each_entry(comp, &priv->rx_list.list, list) {
1665 if (comp->fs.location == loc) {
1666 list_del(&comp->list);
1667 kfree(comp);
1668 priv->rx_list.count--;
1669 gfar_process_filer_changes(priv);
1670 ret = 0;
1671 break;
1672 }
1673 }
1674
1675 return ret;
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001676}
1677
1678static int gfar_get_cls(struct gfar_private *priv, struct ethtool_rxnfc *cmd)
1679{
1680 struct ethtool_flow_spec_container *comp;
1681 u32 ret = -EINVAL;
1682
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);
1687 ret = 0;
1688 break;
1689 }
1690 }
1691
1692 return ret;
1693}
1694
1695static int gfar_get_cls_all(struct gfar_private *priv,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001696 struct ethtool_rxnfc *cmd, u32 *rule_locs)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001697{
1698 struct ethtool_flow_spec_container *comp;
1699 u32 i = 0;
1700
1701 list_for_each_entry(comp, &priv->rx_list.list, list) {
David S. Miller8decf862011-09-22 03:23:13 -04001702 if (i == cmd->rule_cnt)
1703 return -EMSGSIZE;
1704 rule_locs[i] = comp->fs.location;
1705 i++;
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001706 }
1707
1708 cmd->data = MAX_FILER_IDX;
Ben Hutchings473e64e2011-09-06 13:52:47 +00001709 cmd->rule_cnt = i;
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001710
1711 return 0;
1712}
1713
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001714static int gfar_set_nfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
1715{
1716 struct gfar_private *priv = netdev_priv(dev);
1717 int ret = 0;
1718
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001719 mutex_lock(&priv->rx_queue_access);
1720
1721 switch (cmd->cmd) {
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001722 case ETHTOOL_SRXFH:
1723 ret = gfar_set_hash_opts(priv, cmd);
1724 break;
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001725 case ETHTOOL_SRXCLSRLINS:
Ben Hutchings3a73e492012-01-03 11:59:30 +00001726 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) {
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001729 ret = -EINVAL;
1730 break;
1731 }
1732 ret = gfar_add_cls(priv, &cmd->fs);
1733 break;
1734 case ETHTOOL_SRXCLSRLDEL:
1735 ret = gfar_del_cls(priv, cmd->fs.location);
1736 break;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001737 default:
1738 ret = -EINVAL;
1739 }
1740
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001741 mutex_unlock(&priv->rx_queue_access);
1742
1743 return ret;
1744}
1745
1746static int gfar_get_nfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001747 u32 *rule_locs)
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001748{
1749 struct gfar_private *priv = netdev_priv(dev);
1750 int ret = 0;
1751
1752 switch (cmd->cmd) {
1753 case ETHTOOL_GRXRINGS:
1754 cmd->data = priv->num_rx_queues;
1755 break;
1756 case ETHTOOL_GRXCLSRLCNT:
1757 cmd->rule_cnt = priv->rx_list.count;
1758 break;
1759 case ETHTOOL_GRXCLSRULE:
1760 ret = gfar_get_cls(priv, cmd);
1761 break;
1762 case ETHTOOL_GRXCLSRLALL:
Ben Hutchings815c7db2011-09-06 13:49:12 +00001763 ret = gfar_get_cls_all(priv, cmd, rule_locs);
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001764 break;
1765 default:
1766 ret = -EINVAL;
1767 break;
1768 }
1769
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001770 return ret;
1771}
1772
Richard Cochran66636282012-04-03 22:59:19 +00001773int gfar_phc_index = -1;
Richard Cochran28889b72012-09-20 19:11:12 +00001774EXPORT_SYMBOL(gfar_phc_index);
Richard Cochran66636282012-04-03 22:59:19 +00001775
1776static int gfar_get_ts_info(struct net_device *dev,
1777 struct ethtool_ts_info *info)
1778{
1779 struct gfar_private *priv = netdev_priv(dev);
1780
1781 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER)) {
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001782 info->so_timestamping = SOF_TIMESTAMPING_RX_SOFTWARE |
1783 SOF_TIMESTAMPING_SOFTWARE;
Richard Cochran66636282012-04-03 22:59:19 +00001784 info->phc_index = -1;
1785 return 0;
1786 }
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001787 info->so_timestamping = SOF_TIMESTAMPING_TX_HARDWARE |
1788 SOF_TIMESTAMPING_RX_HARDWARE |
1789 SOF_TIMESTAMPING_RAW_HARDWARE;
Richard Cochran66636282012-04-03 22:59:19 +00001790 info->phc_index = gfar_phc_index;
Jan Ceuleerscbfc60712012-06-05 03:42:15 +00001791 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);
Richard Cochran66636282012-04-03 22:59:19 +00001795 return 0;
1796}
1797
Jeff Garzik7282d492006-09-13 14:30:00 -04001798const struct ethtool_ops gfar_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 .get_settings = gfar_gsettings,
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001800 .set_settings = gfar_ssettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 .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,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001810 .get_sset_count = gfar_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 .get_ethtool_stats = gfar_fill_stats,
Kumar Gala0bbaf062005-06-20 10:54:21 -05001812 .get_msglevel = gfar_get_msglevel,
1813 .set_msglevel = gfar_set_msglevel,
Scott Woodd87eb122008-07-11 18:04:45 -05001814#ifdef CONFIG_PM
1815 .get_wol = gfar_get_wol,
1816 .set_wol = gfar_set_wol,
1817#endif
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001818 .set_rxnfc = gfar_set_nfc,
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001819 .get_rxnfc = gfar_get_nfc,
Richard Cochran66636282012-04-03 22:59:19 +00001820 .get_ts_info = gfar_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821};