Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Paul Gortmaker | 3396c78 | 2012-01-27 13:36:01 +0000 | [diff] [blame] | 2 | * drivers/net/ethernet/freescale/gianfar_ethtool.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Gianfar Ethernet Driver |
| 5 | * Ethtool support for Gianfar Enet |
| 6 | * Based on e1000 ethtool support |
| 7 | * |
| 8 | * Author: Andy Fleming |
Kumar Gala | 4c8d3d9 | 2005-11-13 16:06:30 -0800 | [diff] [blame] | 9 | * Maintainer: Kumar Gala |
Sandeep Gopalpet | a12f801 | 2009-11-02 07:03:00 +0000 | [diff] [blame] | 10 | * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 12 | * Copyright 2003-2006, 2008-2009, 2011 Freescale Semiconductor, Inc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 14 | * This software may be used and distributed according to |
| 15 | * the terms of the GNU Public License, Version 2, incorporated herein |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * by reference. |
| 17 | */ |
| 18 | |
Joe Perches | 59deab2 | 2011-06-14 08:57:47 +0000 | [diff] [blame] | 19 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/string.h> |
| 23 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/init.h> |
| 26 | #include <linux/delay.h> |
| 27 | #include <linux/netdevice.h> |
| 28 | #include <linux/etherdevice.h> |
David S. Miller | 65a85a8 | 2012-04-06 00:35:34 -0400 | [diff] [blame] | 29 | #include <linux/net_tstamp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/crc32.h> |
| 39 | #include <asm/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <linux/ethtool.h> |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 41 | #include <linux/mii.h> |
| 42 | #include <linux/phy.h> |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 43 | #include <linux/sort.h> |
Sebastian Poehn | 380b153 | 2011-07-07 04:30:29 -0700 | [diff] [blame] | 44 | #include <linux/if_vlan.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | #include "gianfar.h" |
| 47 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 48 | extern void gfar_start(struct net_device *dev); |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 49 | extern int gfar_clean_rx_ring(struct gfar_priv_rx_q *rx_queue, |
| 50 | int rx_work_limit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 52 | #define GFAR_MAX_COAL_USECS 0xffff |
| 53 | #define GFAR_MAX_COAL_FRAMES 0xff |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 54 | static void gfar_fill_stats(struct net_device *dev, struct ethtool_stats *dummy, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 55 | u64 *buf); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 56 | static void gfar_gstrings(struct net_device *dev, u32 stringset, u8 * buf); |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 57 | static int gfar_gcoalesce(struct net_device *dev, |
| 58 | struct ethtool_coalesce *cvals); |
| 59 | static int gfar_scoalesce(struct net_device *dev, |
| 60 | struct ethtool_coalesce *cvals); |
| 61 | static void gfar_gringparam(struct net_device *dev, |
| 62 | struct ethtool_ringparam *rvals); |
| 63 | static int gfar_sringparam(struct net_device *dev, |
| 64 | struct ethtool_ringparam *rvals); |
| 65 | static void gfar_gdrvinfo(struct net_device *dev, |
| 66 | struct ethtool_drvinfo *drvinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Paul Gortmaker | 30f7e31 | 2012-01-08 13:21:57 -0500 | [diff] [blame] | 68 | static const char stat_gstrings[][ETH_GSTRING_LEN] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | "rx-dropped-by-kernel", |
| 70 | "rx-large-frame-errors", |
| 71 | "rx-short-frame-errors", |
| 72 | "rx-non-octet-errors", |
| 73 | "rx-crc-errors", |
| 74 | "rx-overrun-errors", |
| 75 | "rx-busy-errors", |
| 76 | "rx-babbling-errors", |
| 77 | "rx-truncated-frames", |
| 78 | "ethernet-bus-error", |
| 79 | "tx-babbling-errors", |
| 80 | "tx-underrun-errors", |
| 81 | "rx-skb-missing-errors", |
| 82 | "tx-timeout-errors", |
| 83 | "tx-rx-64-frames", |
| 84 | "tx-rx-65-127-frames", |
| 85 | "tx-rx-128-255-frames", |
| 86 | "tx-rx-256-511-frames", |
| 87 | "tx-rx-512-1023-frames", |
| 88 | "tx-rx-1024-1518-frames", |
| 89 | "tx-rx-1519-1522-good-vlan", |
| 90 | "rx-bytes", |
| 91 | "rx-packets", |
| 92 | "rx-fcs-errors", |
| 93 | "receive-multicast-packet", |
| 94 | "receive-broadcast-packet", |
| 95 | "rx-control-frame-packets", |
| 96 | "rx-pause-frame-packets", |
| 97 | "rx-unknown-op-code", |
| 98 | "rx-alignment-error", |
| 99 | "rx-frame-length-error", |
| 100 | "rx-code-error", |
| 101 | "rx-carrier-sense-error", |
| 102 | "rx-undersize-packets", |
| 103 | "rx-oversize-packets", |
| 104 | "rx-fragmented-frames", |
| 105 | "rx-jabber-frames", |
| 106 | "rx-dropped-frames", |
| 107 | "tx-byte-counter", |
| 108 | "tx-packets", |
| 109 | "tx-multicast-packets", |
| 110 | "tx-broadcast-packets", |
| 111 | "tx-pause-control-frames", |
| 112 | "tx-deferral-packets", |
| 113 | "tx-excessive-deferral-packets", |
| 114 | "tx-single-collision-packets", |
| 115 | "tx-multiple-collision-packets", |
| 116 | "tx-late-collision-packets", |
| 117 | "tx-excessive-collision-packets", |
| 118 | "tx-total-collision", |
| 119 | "reserved", |
| 120 | "tx-dropped-frames", |
| 121 | "tx-jabber-frames", |
| 122 | "tx-fcs-errors", |
| 123 | "tx-control-frames", |
| 124 | "tx-oversize-frames", |
| 125 | "tx-undersize-frames", |
| 126 | "tx-fragmented-frames", |
| 127 | }; |
| 128 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 129 | /* Fill in a buffer with the strings which correspond to the |
| 130 | * stats */ |
| 131 | static void gfar_gstrings(struct net_device *dev, u32 stringset, u8 * buf) |
| 132 | { |
| 133 | struct gfar_private *priv = netdev_priv(dev); |
Andy Fleming | 7f7f531 | 2005-11-11 12:38:59 -0600 | [diff] [blame] | 134 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 135 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 136 | memcpy(buf, stat_gstrings, GFAR_STATS_LEN * ETH_GSTRING_LEN); |
| 137 | else |
| 138 | memcpy(buf, stat_gstrings, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 139 | GFAR_EXTRA_STATS_LEN * ETH_GSTRING_LEN); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 140 | } |
| 141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | /* Fill in an array of 64-bit statistics from various sources. |
| 143 | * This array will be appended to the end of the ethtool_stats |
| 144 | * structure, and returned to user space |
| 145 | */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 146 | static void gfar_fill_stats(struct net_device *dev, struct ethtool_stats *dummy, |
| 147 | u64 *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | { |
| 149 | int i; |
| 150 | struct gfar_private *priv = netdev_priv(dev); |
Sandeep Gopalpet | 46ceb60 | 2009-11-02 07:03:34 +0000 | [diff] [blame] | 151 | struct gfar __iomem *regs = priv->gfargrp[0].regs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | u64 *extra = (u64 *) & priv->extra_stats; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 154 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) { |
Sandeep Gopalpet | f498370 | 2009-11-02 07:03:09 +0000 | [diff] [blame] | 155 | u32 __iomem *rmon = (u32 __iomem *) ®s->rmon; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 156 | struct gfar_stats *stats = (struct gfar_stats *) buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 158 | for (i = 0; i < GFAR_RMON_LEN; i++) |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 159 | stats->rmon[i] = (u64) gfar_read(&rmon[i]); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 160 | |
| 161 | for (i = 0; i < GFAR_EXTRA_STATS_LEN; i++) |
| 162 | stats->extra[i] = extra[i]; |
| 163 | } else |
| 164 | for (i = 0; i < GFAR_EXTRA_STATS_LEN; i++) |
| 165 | buf[i] = extra[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | } |
| 167 | |
Jeff Garzik | b9f2c04 | 2007-10-03 18:07:32 -0700 | [diff] [blame] | 168 | static int gfar_sset_count(struct net_device *dev, int sset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | struct gfar_private *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
Jeff Garzik | b9f2c04 | 2007-10-03 18:07:32 -0700 | [diff] [blame] | 172 | switch (sset) { |
| 173 | case ETH_SS_STATS: |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 174 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) |
Jeff Garzik | b9f2c04 | 2007-10-03 18:07:32 -0700 | [diff] [blame] | 175 | return GFAR_STATS_LEN; |
| 176 | else |
| 177 | return GFAR_EXTRA_STATS_LEN; |
| 178 | default: |
| 179 | return -EOPNOTSUPP; |
| 180 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } |
| 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | /* Fills in the drvinfo structure with some basic info */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 184 | static void gfar_gdrvinfo(struct net_device *dev, |
| 185 | struct ethtool_drvinfo *drvinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | { |
Jiri Pirko | 7826d43 | 2013-01-06 00:44:26 +0000 | [diff] [blame^] | 187 | strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver)); |
| 188 | strlcpy(drvinfo->version, gfar_driver_version, |
| 189 | sizeof(drvinfo->version)); |
| 190 | strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version)); |
| 191 | strlcpy(drvinfo->bus_info, "N/A", sizeof(drvinfo->bus_info)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | drvinfo->regdump_len = 0; |
| 193 | drvinfo->eedump_len = 0; |
| 194 | } |
| 195 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 196 | |
| 197 | static int gfar_ssettings(struct net_device *dev, struct ethtool_cmd *cmd) |
| 198 | { |
| 199 | struct gfar_private *priv = netdev_priv(dev); |
| 200 | struct phy_device *phydev = priv->phydev; |
| 201 | |
| 202 | if (NULL == phydev) |
| 203 | return -ENODEV; |
| 204 | |
| 205 | return phy_ethtool_sset(phydev, cmd); |
| 206 | } |
| 207 | |
| 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | /* Return the current settings in the ethtool_cmd structure */ |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 210 | static int gfar_gsettings(struct net_device *dev, struct ethtool_cmd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | { |
| 212 | struct gfar_private *priv = netdev_priv(dev); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 213 | struct phy_device *phydev = priv->phydev; |
Sandeep Gopalpet | a12f801 | 2009-11-02 07:03:00 +0000 | [diff] [blame] | 214 | struct gfar_priv_rx_q *rx_queue = NULL; |
| 215 | struct gfar_priv_tx_q *tx_queue = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 217 | if (NULL == phydev) |
| 218 | return -ENODEV; |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 219 | tx_queue = priv->tx_queue[0]; |
| 220 | rx_queue = priv->rx_queue[0]; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 221 | |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 222 | /* etsec-1.7 and older versions have only one txic |
| 223 | * and rxic regs although they support multiple queues */ |
Sandeep Gopalpet | a12f801 | 2009-11-02 07:03:00 +0000 | [diff] [blame] | 224 | cmd->maxtxpkt = get_icft_value(tx_queue->txic); |
| 225 | cmd->maxrxpkt = get_icft_value(rx_queue->rxic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 227 | return phy_ethtool_gset(phydev, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | /* Return the length of the register structure */ |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 231 | static int gfar_reglen(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
| 233 | return sizeof (struct gfar); |
| 234 | } |
| 235 | |
| 236 | /* Return a dump of the GFAR register space */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 237 | static void gfar_get_regs(struct net_device *dev, struct ethtool_regs *regs, |
| 238 | void *regbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | { |
| 240 | int i; |
| 241 | struct gfar_private *priv = netdev_priv(dev); |
Sandeep Gopalpet | 46ceb60 | 2009-11-02 07:03:34 +0000 | [diff] [blame] | 242 | u32 __iomem *theregs = (u32 __iomem *) priv->gfargrp[0].regs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | u32 *buf = (u32 *) regbuf; |
| 244 | |
| 245 | for (i = 0; i < sizeof (struct gfar) / sizeof (u32); i++) |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 246 | buf[i] = gfar_read(&theregs[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | } |
| 248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | /* Convert microseconds to ethernet clock ticks, which changes |
| 250 | * depending on what speed the controller is running at */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 251 | static unsigned int gfar_usecs2ticks(struct gfar_private *priv, |
| 252 | unsigned int usecs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | { |
| 254 | unsigned int count; |
| 255 | |
| 256 | /* The timer is different, depending on the interface speed */ |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 257 | switch (priv->phydev->speed) { |
| 258 | case SPEED_1000: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | count = GFAR_GBIT_TIME; |
| 260 | break; |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 261 | case SPEED_100: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | count = GFAR_100_TIME; |
| 263 | break; |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 264 | case SPEED_10: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | default: |
| 266 | count = GFAR_10_TIME; |
| 267 | break; |
| 268 | } |
| 269 | |
| 270 | /* Make sure we return a number greater than 0 |
| 271 | * if usecs > 0 */ |
Eric Dumazet | 807540b | 2010-09-23 05:40:09 +0000 | [diff] [blame] | 272 | return (usecs * 1000 + count - 1) / count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | } |
| 274 | |
| 275 | /* Convert ethernet clock ticks to microseconds */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 276 | static unsigned int gfar_ticks2usecs(struct gfar_private *priv, |
| 277 | unsigned int ticks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | { |
| 279 | unsigned int count; |
| 280 | |
| 281 | /* The timer is different, depending on the interface speed */ |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 282 | switch (priv->phydev->speed) { |
| 283 | case SPEED_1000: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | count = GFAR_GBIT_TIME; |
| 285 | break; |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 286 | case SPEED_100: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | count = GFAR_100_TIME; |
| 288 | break; |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 289 | case SPEED_10: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | default: |
| 291 | count = GFAR_10_TIME; |
| 292 | break; |
| 293 | } |
| 294 | |
| 295 | /* Make sure we return a number greater than 0 */ |
| 296 | /* if ticks is > 0 */ |
Eric Dumazet | 807540b | 2010-09-23 05:40:09 +0000 | [diff] [blame] | 297 | return (ticks * count) / 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | /* Get the coalescing parameters, and put them in the cvals |
| 301 | * structure. */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 302 | static int gfar_gcoalesce(struct net_device *dev, |
| 303 | struct ethtool_coalesce *cvals) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | { |
| 305 | struct gfar_private *priv = netdev_priv(dev); |
Sandeep Gopalpet | a12f801 | 2009-11-02 07:03:00 +0000 | [diff] [blame] | 306 | struct gfar_priv_rx_q *rx_queue = NULL; |
| 307 | struct gfar_priv_tx_q *tx_queue = NULL; |
Dai Haruki | b46a845 | 2008-12-16 15:29:52 -0800 | [diff] [blame] | 308 | unsigned long rxtime; |
| 309 | unsigned long rxcount; |
| 310 | unsigned long txtime; |
| 311 | unsigned long txcount; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 312 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 313 | if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_COALESCE)) |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 314 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 316 | if (NULL == priv->phydev) |
| 317 | return -ENODEV; |
| 318 | |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 319 | rx_queue = priv->rx_queue[0]; |
| 320 | tx_queue = priv->tx_queue[0]; |
Sandeep Gopalpet | a12f801 | 2009-11-02 07:03:00 +0000 | [diff] [blame] | 321 | |
| 322 | rxtime = get_ictt_value(rx_queue->rxic); |
| 323 | rxcount = get_icft_value(rx_queue->rxic); |
| 324 | txtime = get_ictt_value(tx_queue->txic); |
| 325 | txcount = get_icft_value(tx_queue->txic); |
Dai Haruki | b46a845 | 2008-12-16 15:29:52 -0800 | [diff] [blame] | 326 | cvals->rx_coalesce_usecs = gfar_ticks2usecs(priv, rxtime); |
| 327 | cvals->rx_max_coalesced_frames = rxcount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
Dai Haruki | b46a845 | 2008-12-16 15:29:52 -0800 | [diff] [blame] | 329 | cvals->tx_coalesce_usecs = gfar_ticks2usecs(priv, txtime); |
| 330 | cvals->tx_max_coalesced_frames = txcount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
| 332 | cvals->use_adaptive_rx_coalesce = 0; |
| 333 | cvals->use_adaptive_tx_coalesce = 0; |
| 334 | |
| 335 | cvals->pkt_rate_low = 0; |
| 336 | cvals->rx_coalesce_usecs_low = 0; |
| 337 | cvals->rx_max_coalesced_frames_low = 0; |
| 338 | cvals->tx_coalesce_usecs_low = 0; |
| 339 | cvals->tx_max_coalesced_frames_low = 0; |
| 340 | |
| 341 | /* When the packet rate is below pkt_rate_high but above |
| 342 | * pkt_rate_low (both measured in packets per second) the |
| 343 | * normal {rx,tx}_* coalescing parameters are used. |
| 344 | */ |
| 345 | |
| 346 | /* When the packet rate is (measured in packets per second) |
| 347 | * is above pkt_rate_high, the {rx,tx}_*_high parameters are |
| 348 | * used. |
| 349 | */ |
| 350 | cvals->pkt_rate_high = 0; |
| 351 | cvals->rx_coalesce_usecs_high = 0; |
| 352 | cvals->rx_max_coalesced_frames_high = 0; |
| 353 | cvals->tx_coalesce_usecs_high = 0; |
| 354 | cvals->tx_max_coalesced_frames_high = 0; |
| 355 | |
| 356 | /* How often to do adaptive coalescing packet rate sampling, |
| 357 | * measured in seconds. Must not be zero. |
| 358 | */ |
| 359 | cvals->rate_sample_interval = 0; |
| 360 | |
| 361 | return 0; |
| 362 | } |
| 363 | |
| 364 | /* Change the coalescing values. |
| 365 | * Both cvals->*_usecs and cvals->*_frames have to be > 0 |
| 366 | * in order for coalescing to be active |
| 367 | */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 368 | static int gfar_scoalesce(struct net_device *dev, |
| 369 | struct ethtool_coalesce *cvals) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | { |
| 371 | struct gfar_private *priv = netdev_priv(dev); |
Sandeep Gopalpet | 46ceb60 | 2009-11-02 07:03:34 +0000 | [diff] [blame] | 372 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 374 | if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_COALESCE)) |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 375 | return -EOPNOTSUPP; |
| 376 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | /* Set up rx coalescing */ |
Sandeep Gopalpet | 46ceb60 | 2009-11-02 07:03:34 +0000 | [diff] [blame] | 378 | /* As of now, we will enable/disable coalescing for all |
| 379 | * queues together in case of eTSEC2, this will be modified |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 380 | * along with the ethtool interface |
| 381 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | if ((cvals->rx_coalesce_usecs == 0) || |
Sandeep Gopalpet | 46ceb60 | 2009-11-02 07:03:34 +0000 | [diff] [blame] | 383 | (cvals->rx_max_coalesced_frames == 0)) { |
| 384 | for (i = 0; i < priv->num_rx_queues; i++) |
| 385 | priv->rx_queue[i]->rxcoalescing = 0; |
| 386 | } else { |
| 387 | for (i = 0; i < priv->num_rx_queues; i++) |
| 388 | priv->rx_queue[i]->rxcoalescing = 1; |
| 389 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 391 | if (NULL == priv->phydev) |
| 392 | return -ENODEV; |
| 393 | |
| 394 | /* Check the bounds of the values */ |
| 395 | if (cvals->rx_coalesce_usecs > GFAR_MAX_COAL_USECS) { |
| 396 | pr_info("Coalescing is limited to %d microseconds\n", |
Joe Perches | 59deab2 | 2011-06-14 08:57:47 +0000 | [diff] [blame] | 397 | GFAR_MAX_COAL_USECS); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 398 | return -EINVAL; |
| 399 | } |
| 400 | |
| 401 | if (cvals->rx_max_coalesced_frames > GFAR_MAX_COAL_FRAMES) { |
| 402 | pr_info("Coalescing is limited to %d frames\n", |
Joe Perches | 59deab2 | 2011-06-14 08:57:47 +0000 | [diff] [blame] | 403 | GFAR_MAX_COAL_FRAMES); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 404 | return -EINVAL; |
| 405 | } |
| 406 | |
Sandeep Gopalpet | 46ceb60 | 2009-11-02 07:03:34 +0000 | [diff] [blame] | 407 | for (i = 0; i < priv->num_rx_queues; i++) { |
| 408 | priv->rx_queue[i]->rxic = mk_ic_value( |
| 409 | cvals->rx_max_coalesced_frames, |
| 410 | gfar_usecs2ticks(priv, cvals->rx_coalesce_usecs)); |
| 411 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | |
| 413 | /* Set up tx coalescing */ |
| 414 | if ((cvals->tx_coalesce_usecs == 0) || |
Sandeep Gopalpet | 46ceb60 | 2009-11-02 07:03:34 +0000 | [diff] [blame] | 415 | (cvals->tx_max_coalesced_frames == 0)) { |
| 416 | for (i = 0; i < priv->num_tx_queues; i++) |
| 417 | priv->tx_queue[i]->txcoalescing = 0; |
| 418 | } else { |
| 419 | for (i = 0; i < priv->num_tx_queues; i++) |
| 420 | priv->tx_queue[i]->txcoalescing = 1; |
| 421 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 423 | /* Check the bounds of the values */ |
| 424 | if (cvals->tx_coalesce_usecs > GFAR_MAX_COAL_USECS) { |
| 425 | pr_info("Coalescing is limited to %d microseconds\n", |
Joe Perches | 59deab2 | 2011-06-14 08:57:47 +0000 | [diff] [blame] | 426 | GFAR_MAX_COAL_USECS); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 427 | return -EINVAL; |
| 428 | } |
| 429 | |
| 430 | if (cvals->tx_max_coalesced_frames > GFAR_MAX_COAL_FRAMES) { |
| 431 | pr_info("Coalescing is limited to %d frames\n", |
Joe Perches | 59deab2 | 2011-06-14 08:57:47 +0000 | [diff] [blame] | 432 | GFAR_MAX_COAL_FRAMES); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 433 | return -EINVAL; |
| 434 | } |
| 435 | |
Sandeep Gopalpet | 46ceb60 | 2009-11-02 07:03:34 +0000 | [diff] [blame] | 436 | for (i = 0; i < priv->num_tx_queues; i++) { |
| 437 | priv->tx_queue[i]->txic = mk_ic_value( |
| 438 | cvals->tx_max_coalesced_frames, |
| 439 | gfar_usecs2ticks(priv, cvals->tx_coalesce_usecs)); |
| 440 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | |
Sandeep Gopalpet | 46ceb60 | 2009-11-02 07:03:34 +0000 | [diff] [blame] | 442 | gfar_configure_coalescing(priv, 0xFF, 0xFF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | |
| 444 | return 0; |
| 445 | } |
| 446 | |
| 447 | /* Fills in rvals with the current ring parameters. Currently, |
| 448 | * rx, rx_mini, and rx_jumbo rings are the same size, as mini and |
| 449 | * jumbo are ignored by the driver */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 450 | static void gfar_gringparam(struct net_device *dev, |
| 451 | struct ethtool_ringparam *rvals) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | { |
| 453 | struct gfar_private *priv = netdev_priv(dev); |
Sandeep Gopalpet | a12f801 | 2009-11-02 07:03:00 +0000 | [diff] [blame] | 454 | struct gfar_priv_tx_q *tx_queue = NULL; |
| 455 | struct gfar_priv_rx_q *rx_queue = NULL; |
| 456 | |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 457 | tx_queue = priv->tx_queue[0]; |
| 458 | rx_queue = priv->rx_queue[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | |
| 460 | rvals->rx_max_pending = GFAR_RX_MAX_RING_SIZE; |
| 461 | rvals->rx_mini_max_pending = GFAR_RX_MAX_RING_SIZE; |
| 462 | rvals->rx_jumbo_max_pending = GFAR_RX_MAX_RING_SIZE; |
| 463 | rvals->tx_max_pending = GFAR_TX_MAX_RING_SIZE; |
| 464 | |
| 465 | /* Values changeable by the user. The valid values are |
| 466 | * in the range 1 to the "*_max_pending" counterpart above. |
| 467 | */ |
Sandeep Gopalpet | a12f801 | 2009-11-02 07:03:00 +0000 | [diff] [blame] | 468 | rvals->rx_pending = rx_queue->rx_ring_size; |
| 469 | rvals->rx_mini_pending = rx_queue->rx_ring_size; |
| 470 | rvals->rx_jumbo_pending = rx_queue->rx_ring_size; |
| 471 | rvals->tx_pending = tx_queue->tx_ring_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | } |
| 473 | |
| 474 | /* Change the current ring parameters, stopping the controller if |
| 475 | * necessary so that we don't mess things up while we're in |
| 476 | * motion. We wait for the ring to be clean before reallocating |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 477 | * the rings. |
| 478 | */ |
| 479 | static int gfar_sringparam(struct net_device *dev, |
| 480 | struct ethtool_ringparam *rvals) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | struct gfar_private *priv = netdev_priv(dev); |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 483 | int err = 0, i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | |
| 485 | if (rvals->rx_pending > GFAR_RX_MAX_RING_SIZE) |
| 486 | return -EINVAL; |
| 487 | |
| 488 | if (!is_power_of_2(rvals->rx_pending)) { |
Joe Perches | 59deab2 | 2011-06-14 08:57:47 +0000 | [diff] [blame] | 489 | netdev_err(dev, "Ring sizes must be a power of 2\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | return -EINVAL; |
| 491 | } |
| 492 | |
| 493 | if (rvals->tx_pending > GFAR_TX_MAX_RING_SIZE) |
| 494 | return -EINVAL; |
| 495 | |
| 496 | if (!is_power_of_2(rvals->tx_pending)) { |
Joe Perches | 59deab2 | 2011-06-14 08:57:47 +0000 | [diff] [blame] | 497 | netdev_err(dev, "Ring sizes must be a power of 2\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | return -EINVAL; |
| 499 | } |
| 500 | |
Sandeep Gopalpet | a12f801 | 2009-11-02 07:03:00 +0000 | [diff] [blame] | 501 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | if (dev->flags & IFF_UP) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 503 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 505 | /* Halt TX and RX, and process the frames which |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 506 | * have already been received |
| 507 | */ |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 508 | local_irq_save(flags); |
| 509 | lock_tx_qs(priv); |
| 510 | lock_rx_qs(priv); |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 511 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 512 | gfar_halt(dev); |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 513 | |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 514 | unlock_rx_qs(priv); |
| 515 | unlock_tx_qs(priv); |
| 516 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 518 | for (i = 0; i < priv->num_rx_queues; i++) |
| 519 | gfar_clean_rx_ring(priv->rx_queue[i], |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 520 | priv->rx_queue[i]->rx_ring_size); |
Dai Haruki | 12dea57 | 2008-12-16 15:30:20 -0800 | [diff] [blame] | 521 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 522 | /* Now we take down the rings to rebuild them */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | stop_gfar(dev); |
| 524 | } |
| 525 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 526 | /* Change the size */ |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 527 | for (i = 0; i < priv->num_rx_queues; i++) { |
| 528 | priv->rx_queue[i]->rx_ring_size = rvals->rx_pending; |
| 529 | priv->tx_queue[i]->tx_ring_size = rvals->tx_pending; |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 530 | priv->tx_queue[i]->num_txbdfree = |
| 531 | priv->tx_queue[i]->tx_ring_size; |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 532 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 534 | /* Rebuild the rings with the new size */ |
Dai Haruki | 12dea57 | 2008-12-16 15:30:20 -0800 | [diff] [blame] | 535 | if (dev->flags & IFF_UP) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 536 | err = startup_gfar(dev); |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 537 | netif_tx_wake_all_queues(dev); |
Dai Haruki | 12dea57 | 2008-12-16 15:30:20 -0800 | [diff] [blame] | 538 | } |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 539 | return err; |
| 540 | } |
| 541 | |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 542 | int gfar_set_features(struct net_device *dev, netdev_features_t features) |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 543 | { |
| 544 | struct gfar_private *priv = netdev_priv(dev); |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 545 | unsigned long flags; |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 546 | int err = 0, i = 0; |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 547 | netdev_features_t changed = dev->features ^ features; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 548 | |
Jiri Pirko | 87c288c | 2011-07-20 04:54:19 +0000 | [diff] [blame] | 549 | if (changed & (NETIF_F_HW_VLAN_TX|NETIF_F_HW_VLAN_RX)) |
| 550 | gfar_vlan_mode(dev, features); |
| 551 | |
Michał Mirosław | 8b3afe9 | 2011-04-15 04:50:50 +0000 | [diff] [blame] | 552 | if (!(changed & NETIF_F_RXCSUM)) |
| 553 | return 0; |
Sandeep Gopalpet | a12f801 | 2009-11-02 07:03:00 +0000 | [diff] [blame] | 554 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 555 | if (dev->flags & IFF_UP) { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 556 | /* Halt TX and RX, and process the frames which |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 557 | * have already been received |
| 558 | */ |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 559 | local_irq_save(flags); |
| 560 | lock_tx_qs(priv); |
| 561 | lock_rx_qs(priv); |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 562 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 563 | gfar_halt(dev); |
Andy Fleming | fef6108 | 2006-04-20 16:44:29 -0500 | [diff] [blame] | 564 | |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 565 | unlock_tx_qs(priv); |
| 566 | unlock_rx_qs(priv); |
Dan Carpenter | 9756403 | 2010-10-13 09:19:55 +0000 | [diff] [blame] | 567 | local_irq_restore(flags); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 568 | |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 569 | for (i = 0; i < priv->num_rx_queues; i++) |
| 570 | gfar_clean_rx_ring(priv->rx_queue[i], |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 571 | priv->rx_queue[i]->rx_ring_size); |
Dai Haruki | 12dea57 | 2008-12-16 15:30:20 -0800 | [diff] [blame] | 572 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 573 | /* Now we take down the rings to rebuild them */ |
| 574 | stop_gfar(dev); |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 575 | |
Michał Mirosław | 8b3afe9 | 2011-04-15 04:50:50 +0000 | [diff] [blame] | 576 | dev->features = features; |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 577 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | err = startup_gfar(dev); |
Sandeep Gopalpet | fba4ed0 | 2009-11-02 07:03:15 +0000 | [diff] [blame] | 579 | netif_tx_wake_all_queues(dev); |
Dai Haruki | 12dea57 | 2008-12-16 15:30:20 -0800 | [diff] [blame] | 580 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | return err; |
| 582 | } |
| 583 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 584 | static uint32_t gfar_get_msglevel(struct net_device *dev) |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 585 | { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 586 | struct gfar_private *priv = netdev_priv(dev); |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 587 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 588 | return priv->msg_enable; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 589 | } |
| 590 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 591 | static void gfar_set_msglevel(struct net_device *dev, uint32_t data) |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 592 | { |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 593 | struct gfar_private *priv = netdev_priv(dev); |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 594 | |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 595 | priv->msg_enable = data; |
| 596 | } |
| 597 | |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 598 | #ifdef CONFIG_PM |
| 599 | static void gfar_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol) |
| 600 | { |
| 601 | struct gfar_private *priv = netdev_priv(dev); |
| 602 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 603 | if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) { |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 604 | wol->supported = WAKE_MAGIC; |
| 605 | wol->wolopts = priv->wol_en ? WAKE_MAGIC : 0; |
| 606 | } else { |
| 607 | wol->supported = wol->wolopts = 0; |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | static int gfar_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol) |
| 612 | { |
| 613 | struct gfar_private *priv = netdev_priv(dev); |
| 614 | unsigned long flags; |
| 615 | |
Andy Fleming | b31a1d8 | 2008-12-16 15:29:15 -0800 | [diff] [blame] | 616 | if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) && |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 617 | wol->wolopts != 0) |
| 618 | return -EINVAL; |
| 619 | |
| 620 | if (wol->wolopts & ~WAKE_MAGIC) |
| 621 | return -EINVAL; |
| 622 | |
Rafael J. Wysocki | 6c4f199 | 2010-11-09 11:54:19 +0000 | [diff] [blame] | 623 | device_set_wakeup_enable(&dev->dev, wol->wolopts & WAKE_MAGIC); |
| 624 | |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 625 | spin_lock_irqsave(&priv->bflock, flags); |
Rafael J. Wysocki | 6c4f199 | 2010-11-09 11:54:19 +0000 | [diff] [blame] | 626 | priv->wol_en = !!device_may_wakeup(&dev->dev); |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 627 | spin_unlock_irqrestore(&priv->bflock, flags); |
| 628 | |
| 629 | return 0; |
| 630 | } |
| 631 | #endif |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 632 | |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 633 | static void ethflow_to_filer_rules (struct gfar_private *priv, u64 ethflow) |
| 634 | { |
| 635 | u32 fcr = 0x0, fpr = FPR_FILER_MASK; |
| 636 | |
| 637 | if (ethflow & RXH_L2DA) { |
| 638 | fcr = RQFCR_PID_DAH |RQFCR_CMP_NOMATCH | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 639 | RQFCR_HASH | RQFCR_AND | RQFCR_HASHTBL_0; |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 640 | priv->ftp_rqfpr[priv->cur_filer_idx] = fpr; |
| 641 | priv->ftp_rqfcr[priv->cur_filer_idx] = fcr; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 642 | gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr); |
| 643 | priv->cur_filer_idx = priv->cur_filer_idx - 1; |
| 644 | |
| 645 | fcr = RQFCR_PID_DAL | RQFCR_AND | RQFCR_CMP_NOMATCH | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 646 | RQFCR_HASH | RQFCR_AND | RQFCR_HASHTBL_0; |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 647 | priv->ftp_rqfpr[priv->cur_filer_idx] = fpr; |
| 648 | priv->ftp_rqfcr[priv->cur_filer_idx] = fcr; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 649 | gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr); |
| 650 | priv->cur_filer_idx = priv->cur_filer_idx - 1; |
| 651 | } |
| 652 | |
| 653 | if (ethflow & RXH_VLAN) { |
| 654 | fcr = RQFCR_PID_VID | RQFCR_CMP_NOMATCH | RQFCR_HASH | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 655 | RQFCR_AND | RQFCR_HASHTBL_0; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 656 | gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr); |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 657 | priv->ftp_rqfpr[priv->cur_filer_idx] = fpr; |
| 658 | priv->ftp_rqfcr[priv->cur_filer_idx] = fcr; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 659 | priv->cur_filer_idx = priv->cur_filer_idx - 1; |
| 660 | } |
| 661 | |
| 662 | if (ethflow & RXH_IP_SRC) { |
| 663 | fcr = RQFCR_PID_SIA | RQFCR_CMP_NOMATCH | RQFCR_HASH | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 664 | RQFCR_AND | RQFCR_HASHTBL_0; |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 665 | priv->ftp_rqfpr[priv->cur_filer_idx] = fpr; |
| 666 | priv->ftp_rqfcr[priv->cur_filer_idx] = fcr; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 667 | gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr); |
| 668 | priv->cur_filer_idx = priv->cur_filer_idx - 1; |
| 669 | } |
| 670 | |
| 671 | if (ethflow & (RXH_IP_DST)) { |
| 672 | fcr = RQFCR_PID_DIA | RQFCR_CMP_NOMATCH | RQFCR_HASH | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 673 | RQFCR_AND | RQFCR_HASHTBL_0; |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 674 | priv->ftp_rqfpr[priv->cur_filer_idx] = fpr; |
| 675 | priv->ftp_rqfcr[priv->cur_filer_idx] = fcr; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 676 | gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr); |
| 677 | priv->cur_filer_idx = priv->cur_filer_idx - 1; |
| 678 | } |
| 679 | |
| 680 | if (ethflow & RXH_L3_PROTO) { |
| 681 | fcr = RQFCR_PID_L4P | RQFCR_CMP_NOMATCH | RQFCR_HASH | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 682 | RQFCR_AND | RQFCR_HASHTBL_0; |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 683 | priv->ftp_rqfpr[priv->cur_filer_idx] = fpr; |
| 684 | priv->ftp_rqfcr[priv->cur_filer_idx] = fcr; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 685 | gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr); |
| 686 | priv->cur_filer_idx = priv->cur_filer_idx - 1; |
| 687 | } |
| 688 | |
| 689 | if (ethflow & RXH_L4_B_0_1) { |
| 690 | fcr = RQFCR_PID_SPT | RQFCR_CMP_NOMATCH | RQFCR_HASH | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 691 | RQFCR_AND | RQFCR_HASHTBL_0; |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 692 | priv->ftp_rqfpr[priv->cur_filer_idx] = fpr; |
| 693 | priv->ftp_rqfcr[priv->cur_filer_idx] = fcr; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 694 | gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr); |
| 695 | priv->cur_filer_idx = priv->cur_filer_idx - 1; |
| 696 | } |
| 697 | |
| 698 | if (ethflow & RXH_L4_B_2_3) { |
| 699 | fcr = RQFCR_PID_DPT | RQFCR_CMP_NOMATCH | RQFCR_HASH | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 700 | RQFCR_AND | RQFCR_HASHTBL_0; |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 701 | priv->ftp_rqfpr[priv->cur_filer_idx] = fpr; |
| 702 | priv->ftp_rqfcr[priv->cur_filer_idx] = fcr; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 703 | gfar_write_filer(priv, priv->cur_filer_idx, fcr, fpr); |
| 704 | priv->cur_filer_idx = priv->cur_filer_idx - 1; |
| 705 | } |
| 706 | } |
| 707 | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 708 | static int gfar_ethflow_to_filer_table(struct gfar_private *priv, u64 ethflow, |
| 709 | u64 class) |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 710 | { |
| 711 | unsigned int last_rule_idx = priv->cur_filer_idx; |
| 712 | unsigned int cmp_rqfpr; |
Wang Shaoyan | 588dc91 | 2011-08-11 17:07:25 +0000 | [diff] [blame] | 713 | unsigned int *local_rqfpr; |
| 714 | unsigned int *local_rqfcr; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 715 | int i = 0x0, k = 0x0; |
| 716 | int j = MAX_FILER_IDX, l = 0x0; |
Wang Shaoyan | 588dc91 | 2011-08-11 17:07:25 +0000 | [diff] [blame] | 717 | int ret = 1; |
| 718 | |
| 719 | local_rqfpr = kmalloc(sizeof(unsigned int) * (MAX_FILER_IDX + 1), |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 720 | GFP_KERNEL); |
Wang Shaoyan | 588dc91 | 2011-08-11 17:07:25 +0000 | [diff] [blame] | 721 | local_rqfcr = kmalloc(sizeof(unsigned int) * (MAX_FILER_IDX + 1), |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 722 | GFP_KERNEL); |
Wang Shaoyan | 588dc91 | 2011-08-11 17:07:25 +0000 | [diff] [blame] | 723 | if (!local_rqfpr || !local_rqfcr) { |
| 724 | pr_err("Out of memory\n"); |
| 725 | ret = 0; |
| 726 | goto err; |
| 727 | } |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 728 | |
| 729 | switch (class) { |
| 730 | case TCP_V4_FLOW: |
| 731 | cmp_rqfpr = RQFPR_IPV4 |RQFPR_TCP; |
| 732 | break; |
| 733 | case UDP_V4_FLOW: |
| 734 | cmp_rqfpr = RQFPR_IPV4 |RQFPR_UDP; |
| 735 | break; |
| 736 | case TCP_V6_FLOW: |
| 737 | cmp_rqfpr = RQFPR_IPV6 |RQFPR_TCP; |
| 738 | break; |
| 739 | case UDP_V6_FLOW: |
| 740 | cmp_rqfpr = RQFPR_IPV6 |RQFPR_UDP; |
| 741 | break; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 742 | default: |
Joe Perches | 59deab2 | 2011-06-14 08:57:47 +0000 | [diff] [blame] | 743 | pr_err("Right now this class is not supported\n"); |
Wang Shaoyan | 588dc91 | 2011-08-11 17:07:25 +0000 | [diff] [blame] | 744 | ret = 0; |
| 745 | goto err; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 746 | } |
| 747 | |
| 748 | for (i = 0; i < MAX_FILER_IDX + 1; i++) { |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 749 | local_rqfpr[j] = priv->ftp_rqfpr[i]; |
| 750 | local_rqfcr[j] = priv->ftp_rqfcr[i]; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 751 | j--; |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 752 | if ((priv->ftp_rqfcr[i] == |
| 753 | (RQFCR_PID_PARSE | RQFCR_CLE | RQFCR_AND)) && |
| 754 | (priv->ftp_rqfpr[i] == cmp_rqfpr)) |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 755 | break; |
| 756 | } |
| 757 | |
| 758 | if (i == MAX_FILER_IDX + 1) { |
Joe Perches | 59deab2 | 2011-06-14 08:57:47 +0000 | [diff] [blame] | 759 | pr_err("No parse rule found, can't create hash rules\n"); |
Wang Shaoyan | 588dc91 | 2011-08-11 17:07:25 +0000 | [diff] [blame] | 760 | ret = 0; |
| 761 | goto err; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | /* If a match was found, then it begins the starting of a cluster rule |
| 765 | * if it was already programmed, we need to overwrite these rules |
| 766 | */ |
| 767 | for (l = i+1; l < MAX_FILER_IDX; l++) { |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 768 | if ((priv->ftp_rqfcr[l] & RQFCR_CLE) && |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 769 | !(priv->ftp_rqfcr[l] & RQFCR_AND)) { |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 770 | priv->ftp_rqfcr[l] = RQFCR_CLE | RQFCR_CMP_EXACT | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 771 | RQFCR_HASHTBL_0 | RQFCR_PID_MASK; |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 772 | priv->ftp_rqfpr[l] = FPR_FILER_MASK; |
| 773 | gfar_write_filer(priv, l, priv->ftp_rqfcr[l], |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 774 | priv->ftp_rqfpr[l]); |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 775 | break; |
| 776 | } |
| 777 | |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 778 | if (!(priv->ftp_rqfcr[l] & RQFCR_CLE) && |
| 779 | (priv->ftp_rqfcr[l] & RQFCR_AND)) |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 780 | continue; |
| 781 | else { |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 782 | local_rqfpr[j] = priv->ftp_rqfpr[l]; |
| 783 | local_rqfcr[j] = priv->ftp_rqfcr[l]; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 784 | j--; |
| 785 | } |
| 786 | } |
| 787 | |
| 788 | priv->cur_filer_idx = l - 1; |
| 789 | last_rule_idx = l; |
| 790 | |
| 791 | /* hash rules */ |
| 792 | ethflow_to_filer_rules(priv, ethflow); |
| 793 | |
| 794 | /* Write back the popped out rules again */ |
| 795 | for (k = j+1; k < MAX_FILER_IDX; k++) { |
Wu Jiajun-B06378 | 6c43e04 | 2011-06-07 21:46:51 +0000 | [diff] [blame] | 796 | priv->ftp_rqfpr[priv->cur_filer_idx] = local_rqfpr[k]; |
| 797 | priv->ftp_rqfcr[priv->cur_filer_idx] = local_rqfcr[k]; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 798 | gfar_write_filer(priv, priv->cur_filer_idx, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 799 | local_rqfcr[k], local_rqfpr[k]); |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 800 | if (!priv->cur_filer_idx) |
| 801 | break; |
| 802 | priv->cur_filer_idx = priv->cur_filer_idx - 1; |
| 803 | } |
| 804 | |
Wang Shaoyan | 588dc91 | 2011-08-11 17:07:25 +0000 | [diff] [blame] | 805 | err: |
| 806 | kfree(local_rqfcr); |
| 807 | kfree(local_rqfpr); |
| 808 | return ret; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 809 | } |
| 810 | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 811 | static int gfar_set_hash_opts(struct gfar_private *priv, |
| 812 | struct ethtool_rxnfc *cmd) |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 813 | { |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 814 | /* write the filer rules here */ |
| 815 | if (!gfar_ethflow_to_filer_table(priv, cmd->data, cmd->flow_type)) |
Ben Hutchings | bde3528 | 2011-04-08 13:45:11 +0000 | [diff] [blame] | 816 | return -EINVAL; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 817 | |
| 818 | return 0; |
| 819 | } |
| 820 | |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 821 | static int gfar_check_filer_hardware(struct gfar_private *priv) |
| 822 | { |
| 823 | struct gfar __iomem *regs = NULL; |
| 824 | u32 i; |
| 825 | |
| 826 | regs = priv->gfargrp[0].regs; |
| 827 | |
| 828 | /* Check if we are in FIFO mode */ |
| 829 | i = gfar_read(®s->ecntrl); |
| 830 | i &= ECNTRL_FIFM; |
| 831 | if (i == ECNTRL_FIFM) { |
| 832 | netdev_notice(priv->ndev, "Interface in FIFO mode\n"); |
| 833 | i = gfar_read(®s->rctrl); |
| 834 | i &= RCTRL_PRSDEP_MASK | RCTRL_PRSFM; |
| 835 | if (i == (RCTRL_PRSDEP_MASK | RCTRL_PRSFM)) { |
| 836 | netdev_info(priv->ndev, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 837 | "Receive Queue Filtering enabled\n"); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 838 | } else { |
| 839 | netdev_warn(priv->ndev, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 840 | "Receive Queue Filtering disabled\n"); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 841 | return -EOPNOTSUPP; |
| 842 | } |
| 843 | } |
| 844 | /* Or in standard mode */ |
| 845 | else { |
| 846 | i = gfar_read(®s->rctrl); |
| 847 | i &= RCTRL_PRSDEP_MASK; |
| 848 | if (i == RCTRL_PRSDEP_MASK) { |
| 849 | netdev_info(priv->ndev, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 850 | "Receive Queue Filtering enabled\n"); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 851 | } else { |
| 852 | netdev_warn(priv->ndev, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 853 | "Receive Queue Filtering disabled\n"); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 854 | return -EOPNOTSUPP; |
| 855 | } |
| 856 | } |
| 857 | |
| 858 | /* Sets the properties for arbitrary filer rule |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 859 | * to the first 4 Layer 4 Bytes |
| 860 | */ |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 861 | regs->rbifx = 0xC0C1C2C3; |
| 862 | return 0; |
| 863 | } |
| 864 | |
| 865 | static int gfar_comp_asc(const void *a, const void *b) |
| 866 | { |
| 867 | return memcmp(a, b, 4); |
| 868 | } |
| 869 | |
| 870 | static int gfar_comp_desc(const void *a, const void *b) |
| 871 | { |
| 872 | return -memcmp(a, b, 4); |
| 873 | } |
| 874 | |
| 875 | static void gfar_swap(void *a, void *b, int size) |
| 876 | { |
| 877 | u32 *_a = a; |
| 878 | u32 *_b = b; |
| 879 | |
| 880 | swap(_a[0], _b[0]); |
| 881 | swap(_a[1], _b[1]); |
| 882 | swap(_a[2], _b[2]); |
| 883 | swap(_a[3], _b[3]); |
| 884 | } |
| 885 | |
| 886 | /* Write a mask to filer cache */ |
| 887 | static void gfar_set_mask(u32 mask, struct filer_table *tab) |
| 888 | { |
| 889 | tab->fe[tab->index].ctrl = RQFCR_AND | RQFCR_PID_MASK | RQFCR_CMP_EXACT; |
| 890 | tab->fe[tab->index].prop = mask; |
| 891 | tab->index++; |
| 892 | } |
| 893 | |
| 894 | /* Sets parse bits (e.g. IP or TCP) */ |
| 895 | static void gfar_set_parse_bits(u32 value, u32 mask, struct filer_table *tab) |
| 896 | { |
| 897 | gfar_set_mask(mask, tab); |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 898 | tab->fe[tab->index].ctrl = RQFCR_CMP_EXACT | RQFCR_PID_PARSE | |
| 899 | RQFCR_AND; |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 900 | tab->fe[tab->index].prop = value; |
| 901 | tab->index++; |
| 902 | } |
| 903 | |
| 904 | static void gfar_set_general_attribute(u32 value, u32 mask, u32 flag, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 905 | struct filer_table *tab) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 906 | { |
| 907 | gfar_set_mask(mask, tab); |
| 908 | tab->fe[tab->index].ctrl = RQFCR_CMP_EXACT | RQFCR_AND | flag; |
| 909 | tab->fe[tab->index].prop = value; |
| 910 | tab->index++; |
| 911 | } |
| 912 | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 913 | /* For setting a tuple of value and mask of type flag |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 914 | * Example: |
| 915 | * IP-Src = 10.0.0.0/255.0.0.0 |
| 916 | * value: 0x0A000000 mask: FF000000 flag: RQFPR_IPV4 |
| 917 | * |
| 918 | * Ethtool gives us a value=0 and mask=~0 for don't care a tuple |
| 919 | * For a don't care mask it gives us a 0 |
| 920 | * |
| 921 | * The check if don't care and the mask adjustment if mask=0 is done for VLAN |
| 922 | * and MAC stuff on an upper level (due to missing information on this level). |
| 923 | * For these guys we can discard them if they are value=0 and mask=0. |
| 924 | * |
| 925 | * Further the all masks are one-padded for better hardware efficiency. |
| 926 | */ |
| 927 | static void gfar_set_attribute(u32 value, u32 mask, u32 flag, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 928 | struct filer_table *tab) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 929 | { |
| 930 | switch (flag) { |
Sebastian Poehn | 380b153 | 2011-07-07 04:30:29 -0700 | [diff] [blame] | 931 | /* 3bit */ |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 932 | case RQFCR_PID_PRI: |
| 933 | if (!(value | mask)) |
| 934 | return; |
| 935 | mask |= RQFCR_PID_PRI_MASK; |
| 936 | break; |
| 937 | /* 8bit */ |
| 938 | case RQFCR_PID_L4P: |
| 939 | case RQFCR_PID_TOS: |
| 940 | if (!~(mask | RQFCR_PID_L4P_MASK)) |
| 941 | return; |
| 942 | if (!mask) |
| 943 | mask = ~0; |
| 944 | else |
| 945 | mask |= RQFCR_PID_L4P_MASK; |
| 946 | break; |
| 947 | /* 12bit */ |
| 948 | case RQFCR_PID_VID: |
| 949 | if (!(value | mask)) |
| 950 | return; |
| 951 | mask |= RQFCR_PID_VID_MASK; |
| 952 | break; |
| 953 | /* 16bit */ |
| 954 | case RQFCR_PID_DPT: |
| 955 | case RQFCR_PID_SPT: |
| 956 | case RQFCR_PID_ETY: |
| 957 | if (!~(mask | RQFCR_PID_PORT_MASK)) |
| 958 | return; |
| 959 | if (!mask) |
| 960 | mask = ~0; |
| 961 | else |
| 962 | mask |= RQFCR_PID_PORT_MASK; |
| 963 | break; |
| 964 | /* 24bit */ |
| 965 | case RQFCR_PID_DAH: |
| 966 | case RQFCR_PID_DAL: |
| 967 | case RQFCR_PID_SAH: |
| 968 | case RQFCR_PID_SAL: |
| 969 | if (!(value | mask)) |
| 970 | return; |
| 971 | mask |= RQFCR_PID_MAC_MASK; |
| 972 | break; |
| 973 | /* for all real 32bit masks */ |
| 974 | default: |
| 975 | if (!~mask) |
| 976 | return; |
| 977 | if (!mask) |
| 978 | mask = ~0; |
| 979 | break; |
| 980 | } |
| 981 | gfar_set_general_attribute(value, mask, flag, tab); |
| 982 | } |
| 983 | |
| 984 | /* Translates value and mask for UDP, TCP or SCTP */ |
| 985 | static void gfar_set_basic_ip(struct ethtool_tcpip4_spec *value, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 986 | struct ethtool_tcpip4_spec *mask, |
| 987 | struct filer_table *tab) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 988 | { |
| 989 | gfar_set_attribute(value->ip4src, mask->ip4src, RQFCR_PID_SIA, tab); |
| 990 | gfar_set_attribute(value->ip4dst, mask->ip4dst, RQFCR_PID_DIA, tab); |
| 991 | gfar_set_attribute(value->pdst, mask->pdst, RQFCR_PID_DPT, tab); |
| 992 | gfar_set_attribute(value->psrc, mask->psrc, RQFCR_PID_SPT, tab); |
| 993 | gfar_set_attribute(value->tos, mask->tos, RQFCR_PID_TOS, tab); |
| 994 | } |
| 995 | |
| 996 | /* Translates value and mask for RAW-IP4 */ |
| 997 | static void gfar_set_user_ip(struct ethtool_usrip4_spec *value, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 998 | struct ethtool_usrip4_spec *mask, |
| 999 | struct filer_table *tab) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1000 | { |
| 1001 | gfar_set_attribute(value->ip4src, mask->ip4src, RQFCR_PID_SIA, tab); |
| 1002 | gfar_set_attribute(value->ip4dst, mask->ip4dst, RQFCR_PID_DIA, tab); |
| 1003 | gfar_set_attribute(value->tos, mask->tos, RQFCR_PID_TOS, tab); |
| 1004 | gfar_set_attribute(value->proto, mask->proto, RQFCR_PID_L4P, tab); |
| 1005 | gfar_set_attribute(value->l4_4_bytes, mask->l4_4_bytes, RQFCR_PID_ARB, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1006 | tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1007 | |
| 1008 | } |
| 1009 | |
| 1010 | /* Translates value and mask for ETHER spec */ |
| 1011 | static void gfar_set_ether(struct ethhdr *value, struct ethhdr *mask, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1012 | struct filer_table *tab) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1013 | { |
| 1014 | u32 upper_temp_mask = 0; |
| 1015 | u32 lower_temp_mask = 0; |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1016 | |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1017 | /* Source address */ |
| 1018 | if (!is_broadcast_ether_addr(mask->h_source)) { |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1019 | if (is_zero_ether_addr(mask->h_source)) { |
| 1020 | upper_temp_mask = 0xFFFFFFFF; |
| 1021 | lower_temp_mask = 0xFFFFFFFF; |
| 1022 | } else { |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1023 | upper_temp_mask = mask->h_source[0] << 16 | |
| 1024 | mask->h_source[1] << 8 | |
| 1025 | mask->h_source[2]; |
| 1026 | lower_temp_mask = mask->h_source[3] << 16 | |
| 1027 | mask->h_source[4] << 8 | |
| 1028 | mask->h_source[5]; |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1029 | } |
| 1030 | /* Upper 24bit */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1031 | gfar_set_attribute(value->h_source[0] << 16 | |
| 1032 | value->h_source[1] << 8 | |
| 1033 | value->h_source[2], |
| 1034 | upper_temp_mask, RQFCR_PID_SAH, tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1035 | /* And the same for the lower part */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1036 | gfar_set_attribute(value->h_source[3] << 16 | |
| 1037 | value->h_source[4] << 8 | |
| 1038 | value->h_source[5], |
| 1039 | lower_temp_mask, RQFCR_PID_SAL, tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1040 | } |
| 1041 | /* Destination address */ |
| 1042 | if (!is_broadcast_ether_addr(mask->h_dest)) { |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1043 | /* Special for destination is limited broadcast */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1044 | if ((is_broadcast_ether_addr(value->h_dest) && |
| 1045 | is_zero_ether_addr(mask->h_dest))) { |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1046 | gfar_set_parse_bits(RQFPR_EBC, RQFPR_EBC, tab); |
| 1047 | } else { |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1048 | if (is_zero_ether_addr(mask->h_dest)) { |
| 1049 | upper_temp_mask = 0xFFFFFFFF; |
| 1050 | lower_temp_mask = 0xFFFFFFFF; |
| 1051 | } else { |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1052 | upper_temp_mask = mask->h_dest[0] << 16 | |
| 1053 | mask->h_dest[1] << 8 | |
| 1054 | mask->h_dest[2]; |
| 1055 | lower_temp_mask = mask->h_dest[3] << 16 | |
| 1056 | mask->h_dest[4] << 8 | |
| 1057 | mask->h_dest[5]; |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1058 | } |
| 1059 | |
| 1060 | /* Upper 24bit */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1061 | gfar_set_attribute(value->h_dest[0] << 16 | |
| 1062 | value->h_dest[1] << 8 | |
| 1063 | value->h_dest[2], |
| 1064 | upper_temp_mask, RQFCR_PID_DAH, tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1065 | /* And the same for the lower part */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1066 | gfar_set_attribute(value->h_dest[3] << 16 | |
| 1067 | value->h_dest[4] << 8 | |
| 1068 | value->h_dest[5], |
| 1069 | lower_temp_mask, RQFCR_PID_DAL, tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1070 | } |
| 1071 | } |
| 1072 | |
| 1073 | gfar_set_attribute(value->h_proto, mask->h_proto, RQFCR_PID_ETY, tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1074 | } |
| 1075 | |
| 1076 | /* Convert a rule to binary filter format of gianfar */ |
| 1077 | static int gfar_convert_to_filer(struct ethtool_rx_flow_spec *rule, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1078 | struct filer_table *tab) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1079 | { |
| 1080 | u32 vlan = 0, vlan_mask = 0; |
| 1081 | u32 id = 0, id_mask = 0; |
| 1082 | u32 cfi = 0, cfi_mask = 0; |
| 1083 | u32 prio = 0, prio_mask = 0; |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1084 | u32 old_index = tab->index; |
| 1085 | |
| 1086 | /* Check if vlan is wanted */ |
| 1087 | if ((rule->flow_type & FLOW_EXT) && (rule->m_ext.vlan_tci != 0xFFFF)) { |
| 1088 | if (!rule->m_ext.vlan_tci) |
| 1089 | rule->m_ext.vlan_tci = 0xFFFF; |
| 1090 | |
| 1091 | vlan = RQFPR_VLN; |
| 1092 | vlan_mask = RQFPR_VLN; |
| 1093 | |
| 1094 | /* Separate the fields */ |
Sebastian Poehn | 380b153 | 2011-07-07 04:30:29 -0700 | [diff] [blame] | 1095 | id = rule->h_ext.vlan_tci & VLAN_VID_MASK; |
| 1096 | id_mask = rule->m_ext.vlan_tci & VLAN_VID_MASK; |
| 1097 | cfi = rule->h_ext.vlan_tci & VLAN_CFI_MASK; |
| 1098 | cfi_mask = rule->m_ext.vlan_tci & VLAN_CFI_MASK; |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1099 | prio = (rule->h_ext.vlan_tci & VLAN_PRIO_MASK) >> |
| 1100 | VLAN_PRIO_SHIFT; |
| 1101 | prio_mask = (rule->m_ext.vlan_tci & VLAN_PRIO_MASK) >> |
| 1102 | VLAN_PRIO_SHIFT; |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1103 | |
Sebastian Poehn | 380b153 | 2011-07-07 04:30:29 -0700 | [diff] [blame] | 1104 | if (cfi == VLAN_TAG_PRESENT && cfi_mask == VLAN_TAG_PRESENT) { |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1105 | vlan |= RQFPR_CFI; |
| 1106 | vlan_mask |= RQFPR_CFI; |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1107 | } else if (cfi != VLAN_TAG_PRESENT && |
| 1108 | cfi_mask == VLAN_TAG_PRESENT) { |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1109 | vlan_mask |= RQFPR_CFI; |
| 1110 | } |
| 1111 | } |
| 1112 | |
| 1113 | switch (rule->flow_type & ~FLOW_EXT) { |
| 1114 | case TCP_V4_FLOW: |
| 1115 | gfar_set_parse_bits(RQFPR_IPV4 | RQFPR_TCP | vlan, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1116 | RQFPR_IPV4 | RQFPR_TCP | vlan_mask, tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1117 | gfar_set_basic_ip(&rule->h_u.tcp_ip4_spec, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1118 | &rule->m_u.tcp_ip4_spec, tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1119 | break; |
| 1120 | case UDP_V4_FLOW: |
| 1121 | gfar_set_parse_bits(RQFPR_IPV4 | RQFPR_UDP | vlan, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1122 | RQFPR_IPV4 | RQFPR_UDP | vlan_mask, tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1123 | gfar_set_basic_ip(&rule->h_u.udp_ip4_spec, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1124 | &rule->m_u.udp_ip4_spec, tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1125 | break; |
| 1126 | case SCTP_V4_FLOW: |
| 1127 | gfar_set_parse_bits(RQFPR_IPV4 | vlan, RQFPR_IPV4 | vlan_mask, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1128 | tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1129 | gfar_set_attribute(132, 0, RQFCR_PID_L4P, tab); |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1130 | gfar_set_basic_ip((struct ethtool_tcpip4_spec *)&rule->h_u, |
| 1131 | (struct ethtool_tcpip4_spec *)&rule->m_u, |
| 1132 | tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1133 | break; |
| 1134 | case IP_USER_FLOW: |
| 1135 | gfar_set_parse_bits(RQFPR_IPV4 | vlan, RQFPR_IPV4 | vlan_mask, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1136 | tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1137 | gfar_set_user_ip((struct ethtool_usrip4_spec *) &rule->h_u, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1138 | (struct ethtool_usrip4_spec *) &rule->m_u, |
| 1139 | tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1140 | break; |
| 1141 | case ETHER_FLOW: |
| 1142 | if (vlan) |
| 1143 | gfar_set_parse_bits(vlan, vlan_mask, tab); |
| 1144 | gfar_set_ether((struct ethhdr *) &rule->h_u, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1145 | (struct ethhdr *) &rule->m_u, tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1146 | break; |
| 1147 | default: |
| 1148 | return -1; |
| 1149 | } |
| 1150 | |
| 1151 | /* Set the vlan attributes in the end */ |
| 1152 | if (vlan) { |
| 1153 | gfar_set_attribute(id, id_mask, RQFCR_PID_VID, tab); |
| 1154 | gfar_set_attribute(prio, prio_mask, RQFCR_PID_PRI, tab); |
| 1155 | } |
| 1156 | |
| 1157 | /* If there has been nothing written till now, it must be a default */ |
| 1158 | if (tab->index == old_index) { |
| 1159 | gfar_set_mask(0xFFFFFFFF, tab); |
| 1160 | tab->fe[tab->index].ctrl = 0x20; |
| 1161 | tab->fe[tab->index].prop = 0x0; |
| 1162 | tab->index++; |
| 1163 | } |
| 1164 | |
| 1165 | /* Remove last AND */ |
| 1166 | tab->fe[tab->index - 1].ctrl &= (~RQFCR_AND); |
| 1167 | |
| 1168 | /* Specify which queue to use or to drop */ |
| 1169 | if (rule->ring_cookie == RX_CLS_FLOW_DISC) |
| 1170 | tab->fe[tab->index - 1].ctrl |= RQFCR_RJE; |
| 1171 | else |
| 1172 | tab->fe[tab->index - 1].ctrl |= (rule->ring_cookie << 10); |
| 1173 | |
| 1174 | /* Only big enough entries can be clustered */ |
| 1175 | if (tab->index > (old_index + 2)) { |
| 1176 | tab->fe[old_index + 1].ctrl |= RQFCR_CLE; |
| 1177 | tab->fe[tab->index - 1].ctrl |= RQFCR_CLE; |
| 1178 | } |
| 1179 | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1180 | /* In rare cases the cache can be full while there is |
| 1181 | * free space in hw |
| 1182 | */ |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1183 | if (tab->index > MAX_FILER_CACHE_IDX - 1) |
| 1184 | return -EBUSY; |
| 1185 | |
| 1186 | return 0; |
| 1187 | } |
| 1188 | |
| 1189 | /* Copy size filer entries */ |
| 1190 | static void gfar_copy_filer_entries(struct gfar_filer_entry dst[0], |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1191 | struct gfar_filer_entry src[0], s32 size) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1192 | { |
| 1193 | while (size > 0) { |
| 1194 | size--; |
| 1195 | dst[size].ctrl = src[size].ctrl; |
| 1196 | dst[size].prop = src[size].prop; |
| 1197 | } |
| 1198 | } |
| 1199 | |
| 1200 | /* Delete the contents of the filer-table between start and end |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1201 | * and collapse them |
| 1202 | */ |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1203 | static int gfar_trim_filer_entries(u32 begin, u32 end, struct filer_table *tab) |
| 1204 | { |
| 1205 | int length; |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1206 | |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1207 | if (end > MAX_FILER_CACHE_IDX || end < begin) |
| 1208 | return -EINVAL; |
| 1209 | |
| 1210 | end++; |
| 1211 | length = end - begin; |
| 1212 | |
| 1213 | /* Copy */ |
| 1214 | while (end < tab->index) { |
| 1215 | tab->fe[begin].ctrl = tab->fe[end].ctrl; |
| 1216 | tab->fe[begin++].prop = tab->fe[end++].prop; |
| 1217 | |
| 1218 | } |
| 1219 | /* Fill up with don't cares */ |
| 1220 | while (begin < tab->index) { |
| 1221 | tab->fe[begin].ctrl = 0x60; |
| 1222 | tab->fe[begin].prop = 0xFFFFFFFF; |
| 1223 | begin++; |
| 1224 | } |
| 1225 | |
| 1226 | tab->index -= length; |
| 1227 | return 0; |
| 1228 | } |
| 1229 | |
| 1230 | /* Make space on the wanted location */ |
| 1231 | static int gfar_expand_filer_entries(u32 begin, u32 length, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1232 | struct filer_table *tab) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1233 | { |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1234 | if (length == 0 || length + tab->index > MAX_FILER_CACHE_IDX || |
| 1235 | begin > MAX_FILER_CACHE_IDX) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1236 | return -EINVAL; |
| 1237 | |
| 1238 | gfar_copy_filer_entries(&(tab->fe[begin + length]), &(tab->fe[begin]), |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1239 | tab->index - length + 1); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1240 | |
| 1241 | tab->index += length; |
| 1242 | return 0; |
| 1243 | } |
| 1244 | |
| 1245 | static int gfar_get_next_cluster_start(int start, struct filer_table *tab) |
| 1246 | { |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1247 | for (; (start < tab->index) && (start < MAX_FILER_CACHE_IDX - 1); |
| 1248 | start++) { |
| 1249 | if ((tab->fe[start].ctrl & (RQFCR_AND | RQFCR_CLE)) == |
| 1250 | (RQFCR_AND | RQFCR_CLE)) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1251 | return start; |
| 1252 | } |
| 1253 | return -1; |
| 1254 | } |
| 1255 | |
| 1256 | static int gfar_get_next_cluster_end(int start, struct filer_table *tab) |
| 1257 | { |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1258 | for (; (start < tab->index) && (start < MAX_FILER_CACHE_IDX - 1); |
| 1259 | start++) { |
| 1260 | if ((tab->fe[start].ctrl & (RQFCR_AND | RQFCR_CLE)) == |
| 1261 | (RQFCR_CLE)) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1262 | return start; |
| 1263 | } |
| 1264 | return -1; |
| 1265 | } |
| 1266 | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1267 | /* Uses hardwares clustering option to reduce |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1268 | * the number of filer table entries |
| 1269 | */ |
| 1270 | static void gfar_cluster_filer(struct filer_table *tab) |
| 1271 | { |
| 1272 | s32 i = -1, j, iend, jend; |
| 1273 | |
| 1274 | while ((i = gfar_get_next_cluster_start(++i, tab)) != -1) { |
| 1275 | j = i; |
| 1276 | while ((j = gfar_get_next_cluster_start(++j, tab)) != -1) { |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1277 | /* The cluster entries self and the previous one |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1278 | * (a mask) must be identical! |
| 1279 | */ |
| 1280 | if (tab->fe[i].ctrl != tab->fe[j].ctrl) |
| 1281 | break; |
| 1282 | if (tab->fe[i].prop != tab->fe[j].prop) |
| 1283 | break; |
| 1284 | if (tab->fe[i - 1].ctrl != tab->fe[j - 1].ctrl) |
| 1285 | break; |
| 1286 | if (tab->fe[i - 1].prop != tab->fe[j - 1].prop) |
| 1287 | break; |
| 1288 | iend = gfar_get_next_cluster_end(i, tab); |
| 1289 | jend = gfar_get_next_cluster_end(j, tab); |
| 1290 | if (jend == -1 || iend == -1) |
| 1291 | break; |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1292 | |
| 1293 | /* First we make some free space, where our cluster |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1294 | * element should be. Then we copy it there and finally |
| 1295 | * delete in from its old location. |
| 1296 | */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1297 | if (gfar_expand_filer_entries(iend, (jend - j), tab) == |
| 1298 | -EINVAL) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1299 | break; |
| 1300 | |
| 1301 | gfar_copy_filer_entries(&(tab->fe[iend + 1]), |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1302 | &(tab->fe[jend + 1]), jend - j); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1303 | |
| 1304 | if (gfar_trim_filer_entries(jend - 1, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1305 | jend + (jend - j), |
| 1306 | tab) == -EINVAL) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1307 | return; |
| 1308 | |
| 1309 | /* Mask out cluster bit */ |
| 1310 | tab->fe[iend].ctrl &= ~(RQFCR_CLE); |
| 1311 | } |
| 1312 | } |
| 1313 | } |
| 1314 | |
Sebastian Poehn | 380b153 | 2011-07-07 04:30:29 -0700 | [diff] [blame] | 1315 | /* Swaps the masked bits of a1<>a2 and b1<>b2 */ |
| 1316 | static void gfar_swap_bits(struct gfar_filer_entry *a1, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1317 | struct gfar_filer_entry *a2, |
| 1318 | struct gfar_filer_entry *b1, |
| 1319 | struct gfar_filer_entry *b2, u32 mask) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1320 | { |
| 1321 | u32 temp[4]; |
Sebastian Poehn | 380b153 | 2011-07-07 04:30:29 -0700 | [diff] [blame] | 1322 | temp[0] = a1->ctrl & mask; |
| 1323 | temp[1] = a2->ctrl & mask; |
| 1324 | temp[2] = b1->ctrl & mask; |
| 1325 | temp[3] = b2->ctrl & mask; |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1326 | |
Sebastian Poehn | 380b153 | 2011-07-07 04:30:29 -0700 | [diff] [blame] | 1327 | a1->ctrl &= ~mask; |
| 1328 | a2->ctrl &= ~mask; |
| 1329 | b1->ctrl &= ~mask; |
| 1330 | b2->ctrl &= ~mask; |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1331 | |
| 1332 | a1->ctrl |= temp[1]; |
| 1333 | a2->ctrl |= temp[0]; |
| 1334 | b1->ctrl |= temp[3]; |
| 1335 | b2->ctrl |= temp[2]; |
| 1336 | } |
| 1337 | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1338 | /* Generate a list consisting of masks values with their start and |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1339 | * end of validity and block as indicator for parts belonging |
| 1340 | * together (glued by ANDs) in mask_table |
| 1341 | */ |
| 1342 | static u32 gfar_generate_mask_table(struct gfar_mask_entry *mask_table, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1343 | struct filer_table *tab) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1344 | { |
| 1345 | u32 i, and_index = 0, block_index = 1; |
| 1346 | |
| 1347 | for (i = 0; i < tab->index; i++) { |
| 1348 | |
| 1349 | /* LSByte of control = 0 sets a mask */ |
| 1350 | if (!(tab->fe[i].ctrl & 0xF)) { |
| 1351 | mask_table[and_index].mask = tab->fe[i].prop; |
| 1352 | mask_table[and_index].start = i; |
| 1353 | mask_table[and_index].block = block_index; |
| 1354 | if (and_index >= 1) |
| 1355 | mask_table[and_index - 1].end = i - 1; |
| 1356 | and_index++; |
| 1357 | } |
Sebastian Poehn | 380b153 | 2011-07-07 04:30:29 -0700 | [diff] [blame] | 1358 | /* cluster starts and ends will be separated because they should |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1359 | * hold their position |
| 1360 | */ |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1361 | if (tab->fe[i].ctrl & RQFCR_CLE) |
| 1362 | block_index++; |
| 1363 | /* A not set AND indicates the end of a depended block */ |
| 1364 | if (!(tab->fe[i].ctrl & RQFCR_AND)) |
| 1365 | block_index++; |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1366 | } |
| 1367 | |
| 1368 | mask_table[and_index - 1].end = i - 1; |
| 1369 | |
| 1370 | return and_index; |
| 1371 | } |
| 1372 | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1373 | /* Sorts the entries of mask_table by the values of the masks. |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1374 | * Important: The 0xFF80 flags of the first and last entry of a |
| 1375 | * block must hold their position (which queue, CLusterEnable, ReJEct, |
| 1376 | * AND) |
| 1377 | */ |
| 1378 | static void gfar_sort_mask_table(struct gfar_mask_entry *mask_table, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1379 | struct filer_table *temp_table, u32 and_index) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1380 | { |
| 1381 | /* Pointer to compare function (_asc or _desc) */ |
| 1382 | int (*gfar_comp)(const void *, const void *); |
| 1383 | |
| 1384 | u32 i, size = 0, start = 0, prev = 1; |
| 1385 | u32 old_first, old_last, new_first, new_last; |
| 1386 | |
| 1387 | gfar_comp = &gfar_comp_desc; |
| 1388 | |
| 1389 | for (i = 0; i < and_index; i++) { |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1390 | if (prev != mask_table[i].block) { |
| 1391 | old_first = mask_table[start].start + 1; |
| 1392 | old_last = mask_table[i - 1].end; |
| 1393 | sort(mask_table + start, size, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1394 | sizeof(struct gfar_mask_entry), |
| 1395 | gfar_comp, &gfar_swap); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1396 | |
| 1397 | /* Toggle order for every block. This makes the |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1398 | * thing more efficient! |
| 1399 | */ |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1400 | if (gfar_comp == gfar_comp_desc) |
| 1401 | gfar_comp = &gfar_comp_asc; |
| 1402 | else |
| 1403 | gfar_comp = &gfar_comp_desc; |
| 1404 | |
| 1405 | new_first = mask_table[start].start + 1; |
| 1406 | new_last = mask_table[i - 1].end; |
| 1407 | |
Sebastian Poehn | 380b153 | 2011-07-07 04:30:29 -0700 | [diff] [blame] | 1408 | gfar_swap_bits(&temp_table->fe[new_first], |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1409 | &temp_table->fe[old_first], |
| 1410 | &temp_table->fe[new_last], |
| 1411 | &temp_table->fe[old_last], |
| 1412 | RQFCR_QUEUE | RQFCR_CLE | |
| 1413 | RQFCR_RJE | RQFCR_AND); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1414 | |
| 1415 | start = i; |
| 1416 | size = 0; |
| 1417 | } |
| 1418 | size++; |
| 1419 | prev = mask_table[i].block; |
| 1420 | } |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1421 | } |
| 1422 | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1423 | /* Reduces the number of masks needed in the filer table to save entries |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1424 | * This is done by sorting the masks of a depended block. A depended block is |
| 1425 | * identified by gluing ANDs or CLE. The sorting order toggles after every |
| 1426 | * block. Of course entries in scope of a mask must change their location with |
| 1427 | * it. |
| 1428 | */ |
| 1429 | static int gfar_optimize_filer_masks(struct filer_table *tab) |
| 1430 | { |
| 1431 | struct filer_table *temp_table; |
| 1432 | struct gfar_mask_entry *mask_table; |
| 1433 | |
| 1434 | u32 and_index = 0, previous_mask = 0, i = 0, j = 0, size = 0; |
| 1435 | s32 ret = 0; |
| 1436 | |
| 1437 | /* We need a copy of the filer table because |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1438 | * we want to change its order |
| 1439 | */ |
Thomas Meyer | b8ffdbd | 2011-11-17 13:05:35 +0000 | [diff] [blame] | 1440 | temp_table = kmemdup(tab, sizeof(*temp_table), GFP_KERNEL); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1441 | if (temp_table == NULL) |
| 1442 | return -ENOMEM; |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1443 | |
| 1444 | mask_table = kcalloc(MAX_FILER_CACHE_IDX / 2 + 1, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1445 | sizeof(struct gfar_mask_entry), GFP_KERNEL); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1446 | |
| 1447 | if (mask_table == NULL) { |
| 1448 | ret = -ENOMEM; |
| 1449 | goto end; |
| 1450 | } |
| 1451 | |
| 1452 | and_index = gfar_generate_mask_table(mask_table, tab); |
| 1453 | |
| 1454 | gfar_sort_mask_table(mask_table, temp_table, and_index); |
| 1455 | |
| 1456 | /* Now we can copy the data from our duplicated filer table to |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1457 | * the real one in the order the mask table says |
| 1458 | */ |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1459 | for (i = 0; i < and_index; i++) { |
| 1460 | size = mask_table[i].end - mask_table[i].start + 1; |
| 1461 | gfar_copy_filer_entries(&(tab->fe[j]), |
| 1462 | &(temp_table->fe[mask_table[i].start]), size); |
| 1463 | j += size; |
| 1464 | } |
| 1465 | |
| 1466 | /* And finally we just have to check for duplicated masks and drop the |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1467 | * second ones |
| 1468 | */ |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1469 | for (i = 0; i < tab->index && i < MAX_FILER_CACHE_IDX; i++) { |
| 1470 | if (tab->fe[i].ctrl == 0x80) { |
| 1471 | previous_mask = i++; |
| 1472 | break; |
| 1473 | } |
| 1474 | } |
| 1475 | for (; i < tab->index && i < MAX_FILER_CACHE_IDX; i++) { |
| 1476 | if (tab->fe[i].ctrl == 0x80) { |
| 1477 | if (tab->fe[i].prop == tab->fe[previous_mask].prop) { |
| 1478 | /* Two identical ones found! |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1479 | * So drop the second one! |
| 1480 | */ |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1481 | gfar_trim_filer_entries(i, i, tab); |
| 1482 | } else |
| 1483 | /* Not identical! */ |
| 1484 | previous_mask = i; |
| 1485 | } |
| 1486 | } |
| 1487 | |
| 1488 | kfree(mask_table); |
| 1489 | end: kfree(temp_table); |
| 1490 | return ret; |
| 1491 | } |
| 1492 | |
| 1493 | /* Write the bit-pattern from software's buffer to hardware registers */ |
| 1494 | static int gfar_write_filer_table(struct gfar_private *priv, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1495 | struct filer_table *tab) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1496 | { |
| 1497 | u32 i = 0; |
| 1498 | if (tab->index > MAX_FILER_IDX - 1) |
| 1499 | return -EBUSY; |
| 1500 | |
| 1501 | /* Avoid inconsistent filer table to be processed */ |
| 1502 | lock_rx_qs(priv); |
| 1503 | |
| 1504 | /* Fill regular entries */ |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1505 | for (; i < MAX_FILER_IDX - 1 && (tab->fe[i].ctrl | tab->fe[i].ctrl); |
| 1506 | i++) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1507 | gfar_write_filer(priv, i, tab->fe[i].ctrl, tab->fe[i].prop); |
| 1508 | /* Fill the rest with fall-troughs */ |
| 1509 | for (; i < MAX_FILER_IDX - 1; i++) |
| 1510 | gfar_write_filer(priv, i, 0x60, 0xFFFFFFFF); |
| 1511 | /* Last entry must be default accept |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1512 | * because that's what people expect |
| 1513 | */ |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1514 | gfar_write_filer(priv, i, 0x20, 0x0); |
| 1515 | |
| 1516 | unlock_rx_qs(priv); |
| 1517 | |
| 1518 | return 0; |
| 1519 | } |
| 1520 | |
| 1521 | static int gfar_check_capability(struct ethtool_rx_flow_spec *flow, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1522 | struct gfar_private *priv) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1523 | { |
| 1524 | |
| 1525 | if (flow->flow_type & FLOW_EXT) { |
| 1526 | if (~flow->m_ext.data[0] || ~flow->m_ext.data[1]) |
| 1527 | netdev_warn(priv->ndev, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1528 | "User-specific data not supported!\n"); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1529 | if (~flow->m_ext.vlan_etype) |
| 1530 | netdev_warn(priv->ndev, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1531 | "VLAN-etype not supported!\n"); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1532 | } |
| 1533 | if (flow->flow_type == IP_USER_FLOW) |
| 1534 | if (flow->h_u.usr_ip4_spec.ip_ver != ETH_RX_NFC_IP4) |
| 1535 | netdev_warn(priv->ndev, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1536 | "IP-Version differing from IPv4 not supported!\n"); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1537 | |
| 1538 | return 0; |
| 1539 | } |
| 1540 | |
| 1541 | static int gfar_process_filer_changes(struct gfar_private *priv) |
| 1542 | { |
| 1543 | struct ethtool_flow_spec_container *j; |
| 1544 | struct filer_table *tab; |
| 1545 | s32 i = 0; |
| 1546 | s32 ret = 0; |
| 1547 | |
| 1548 | /* So index is set to zero, too! */ |
| 1549 | tab = kzalloc(sizeof(*tab), GFP_KERNEL); |
| 1550 | if (tab == NULL) |
| 1551 | return -ENOMEM; |
| 1552 | |
| 1553 | /* Now convert the existing filer data from flow_spec into |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1554 | * filer tables binary format |
| 1555 | */ |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1556 | list_for_each_entry(j, &priv->rx_list.list, list) { |
| 1557 | ret = gfar_convert_to_filer(&j->fs, tab); |
| 1558 | if (ret == -EBUSY) { |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1559 | netdev_err(priv->ndev, |
| 1560 | "Rule not added: No free space!\n"); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1561 | goto end; |
| 1562 | } |
| 1563 | if (ret == -1) { |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1564 | netdev_err(priv->ndev, |
| 1565 | "Rule not added: Unsupported Flow-type!\n"); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1566 | goto end; |
| 1567 | } |
| 1568 | } |
| 1569 | |
| 1570 | i = tab->index; |
| 1571 | |
| 1572 | /* Optimizations to save entries */ |
| 1573 | gfar_cluster_filer(tab); |
| 1574 | gfar_optimize_filer_masks(tab); |
| 1575 | |
| 1576 | pr_debug("\n\tSummary:\n" |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1577 | "\tData on hardware: %d\n" |
| 1578 | "\tCompression rate: %d%%\n", |
| 1579 | tab->index, 100 - (100 * tab->index) / i); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1580 | |
| 1581 | /* Write everything to hardware */ |
| 1582 | ret = gfar_write_filer_table(priv, tab); |
| 1583 | if (ret == -EBUSY) { |
| 1584 | netdev_err(priv->ndev, "Rule not added: No free space!\n"); |
| 1585 | goto end; |
| 1586 | } |
| 1587 | |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1588 | end: |
| 1589 | kfree(tab); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1590 | return ret; |
| 1591 | } |
| 1592 | |
| 1593 | static void gfar_invert_masks(struct ethtool_rx_flow_spec *flow) |
| 1594 | { |
| 1595 | u32 i = 0; |
| 1596 | |
| 1597 | for (i = 0; i < sizeof(flow->m_u); i++) |
| 1598 | flow->m_u.hdata[i] ^= 0xFF; |
| 1599 | |
| 1600 | flow->m_ext.vlan_etype ^= 0xFFFF; |
| 1601 | flow->m_ext.vlan_tci ^= 0xFFFF; |
| 1602 | flow->m_ext.data[0] ^= ~0; |
| 1603 | flow->m_ext.data[1] ^= ~0; |
| 1604 | } |
| 1605 | |
| 1606 | static int gfar_add_cls(struct gfar_private *priv, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1607 | struct ethtool_rx_flow_spec *flow) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1608 | { |
| 1609 | struct ethtool_flow_spec_container *temp, *comp; |
| 1610 | int ret = 0; |
| 1611 | |
| 1612 | temp = kmalloc(sizeof(*temp), GFP_KERNEL); |
| 1613 | if (temp == NULL) |
| 1614 | return -ENOMEM; |
| 1615 | memcpy(&temp->fs, flow, sizeof(temp->fs)); |
| 1616 | |
| 1617 | gfar_invert_masks(&temp->fs); |
| 1618 | ret = gfar_check_capability(&temp->fs, priv); |
| 1619 | if (ret) |
| 1620 | goto clean_mem; |
| 1621 | /* Link in the new element at the right @location */ |
| 1622 | if (list_empty(&priv->rx_list.list)) { |
| 1623 | ret = gfar_check_filer_hardware(priv); |
| 1624 | if (ret != 0) |
| 1625 | goto clean_mem; |
| 1626 | list_add(&temp->list, &priv->rx_list.list); |
| 1627 | goto process; |
| 1628 | } else { |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1629 | list_for_each_entry(comp, &priv->rx_list.list, list) { |
| 1630 | if (comp->fs.location > flow->location) { |
| 1631 | list_add_tail(&temp->list, &comp->list); |
| 1632 | goto process; |
| 1633 | } |
| 1634 | if (comp->fs.location == flow->location) { |
| 1635 | netdev_err(priv->ndev, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1636 | "Rule not added: ID %d not free!\n", |
| 1637 | flow->location); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1638 | ret = -EBUSY; |
| 1639 | goto clean_mem; |
| 1640 | } |
| 1641 | } |
| 1642 | list_add_tail(&temp->list, &priv->rx_list.list); |
| 1643 | } |
| 1644 | |
| 1645 | process: |
| 1646 | ret = gfar_process_filer_changes(priv); |
| 1647 | if (ret) |
| 1648 | goto clean_list; |
| 1649 | priv->rx_list.count++; |
| 1650 | return ret; |
| 1651 | |
| 1652 | clean_list: |
| 1653 | list_del(&temp->list); |
| 1654 | clean_mem: |
| 1655 | kfree(temp); |
| 1656 | return ret; |
| 1657 | } |
| 1658 | |
| 1659 | static int gfar_del_cls(struct gfar_private *priv, u32 loc) |
| 1660 | { |
| 1661 | struct ethtool_flow_spec_container *comp; |
| 1662 | u32 ret = -EINVAL; |
| 1663 | |
| 1664 | if (list_empty(&priv->rx_list.list)) |
| 1665 | return ret; |
| 1666 | |
| 1667 | list_for_each_entry(comp, &priv->rx_list.list, list) { |
| 1668 | if (comp->fs.location == loc) { |
| 1669 | list_del(&comp->list); |
| 1670 | kfree(comp); |
| 1671 | priv->rx_list.count--; |
| 1672 | gfar_process_filer_changes(priv); |
| 1673 | ret = 0; |
| 1674 | break; |
| 1675 | } |
| 1676 | } |
| 1677 | |
| 1678 | return ret; |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1679 | } |
| 1680 | |
| 1681 | static int gfar_get_cls(struct gfar_private *priv, struct ethtool_rxnfc *cmd) |
| 1682 | { |
| 1683 | struct ethtool_flow_spec_container *comp; |
| 1684 | u32 ret = -EINVAL; |
| 1685 | |
| 1686 | list_for_each_entry(comp, &priv->rx_list.list, list) { |
| 1687 | if (comp->fs.location == cmd->fs.location) { |
| 1688 | memcpy(&cmd->fs, &comp->fs, sizeof(cmd->fs)); |
| 1689 | gfar_invert_masks(&cmd->fs); |
| 1690 | ret = 0; |
| 1691 | break; |
| 1692 | } |
| 1693 | } |
| 1694 | |
| 1695 | return ret; |
| 1696 | } |
| 1697 | |
| 1698 | static int gfar_get_cls_all(struct gfar_private *priv, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1699 | struct ethtool_rxnfc *cmd, u32 *rule_locs) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1700 | { |
| 1701 | struct ethtool_flow_spec_container *comp; |
| 1702 | u32 i = 0; |
| 1703 | |
| 1704 | list_for_each_entry(comp, &priv->rx_list.list, list) { |
David S. Miller | 8decf86 | 2011-09-22 03:23:13 -0400 | [diff] [blame] | 1705 | if (i == cmd->rule_cnt) |
| 1706 | return -EMSGSIZE; |
| 1707 | rule_locs[i] = comp->fs.location; |
| 1708 | i++; |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1709 | } |
| 1710 | |
| 1711 | cmd->data = MAX_FILER_IDX; |
Ben Hutchings | 473e64e | 2011-09-06 13:52:47 +0000 | [diff] [blame] | 1712 | cmd->rule_cnt = i; |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1713 | |
| 1714 | return 0; |
| 1715 | } |
| 1716 | |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 1717 | static int gfar_set_nfc(struct net_device *dev, struct ethtool_rxnfc *cmd) |
| 1718 | { |
| 1719 | struct gfar_private *priv = netdev_priv(dev); |
| 1720 | int ret = 0; |
| 1721 | |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1722 | mutex_lock(&priv->rx_queue_access); |
| 1723 | |
| 1724 | switch (cmd->cmd) { |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 1725 | case ETHTOOL_SRXFH: |
| 1726 | ret = gfar_set_hash_opts(priv, cmd); |
| 1727 | break; |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1728 | case ETHTOOL_SRXCLSRLINS: |
Ben Hutchings | 3a73e49 | 2012-01-03 11:59:30 +0000 | [diff] [blame] | 1729 | if ((cmd->fs.ring_cookie != RX_CLS_FLOW_DISC && |
| 1730 | cmd->fs.ring_cookie >= priv->num_rx_queues) || |
| 1731 | cmd->fs.location >= MAX_FILER_IDX) { |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1732 | ret = -EINVAL; |
| 1733 | break; |
| 1734 | } |
| 1735 | ret = gfar_add_cls(priv, &cmd->fs); |
| 1736 | break; |
| 1737 | case ETHTOOL_SRXCLSRLDEL: |
| 1738 | ret = gfar_del_cls(priv, cmd->fs.location); |
| 1739 | break; |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 1740 | default: |
| 1741 | ret = -EINVAL; |
| 1742 | } |
| 1743 | |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1744 | mutex_unlock(&priv->rx_queue_access); |
| 1745 | |
| 1746 | return ret; |
| 1747 | } |
| 1748 | |
| 1749 | static int gfar_get_nfc(struct net_device *dev, struct ethtool_rxnfc *cmd, |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1750 | u32 *rule_locs) |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1751 | { |
| 1752 | struct gfar_private *priv = netdev_priv(dev); |
| 1753 | int ret = 0; |
| 1754 | |
| 1755 | switch (cmd->cmd) { |
| 1756 | case ETHTOOL_GRXRINGS: |
| 1757 | cmd->data = priv->num_rx_queues; |
| 1758 | break; |
| 1759 | case ETHTOOL_GRXCLSRLCNT: |
| 1760 | cmd->rule_cnt = priv->rx_list.count; |
| 1761 | break; |
| 1762 | case ETHTOOL_GRXCLSRULE: |
| 1763 | ret = gfar_get_cls(priv, cmd); |
| 1764 | break; |
| 1765 | case ETHTOOL_GRXCLSRLALL: |
Ben Hutchings | 815c7db | 2011-09-06 13:49:12 +0000 | [diff] [blame] | 1766 | ret = gfar_get_cls_all(priv, cmd, rule_locs); |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1767 | break; |
| 1768 | default: |
| 1769 | ret = -EINVAL; |
| 1770 | break; |
| 1771 | } |
| 1772 | |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 1773 | return ret; |
| 1774 | } |
| 1775 | |
Richard Cochran | 6663628 | 2012-04-03 22:59:19 +0000 | [diff] [blame] | 1776 | int gfar_phc_index = -1; |
Richard Cochran | 28889b7 | 2012-09-20 19:11:12 +0000 | [diff] [blame] | 1777 | EXPORT_SYMBOL(gfar_phc_index); |
Richard Cochran | 6663628 | 2012-04-03 22:59:19 +0000 | [diff] [blame] | 1778 | |
| 1779 | static int gfar_get_ts_info(struct net_device *dev, |
| 1780 | struct ethtool_ts_info *info) |
| 1781 | { |
| 1782 | struct gfar_private *priv = netdev_priv(dev); |
| 1783 | |
| 1784 | if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER)) { |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1785 | info->so_timestamping = SOF_TIMESTAMPING_RX_SOFTWARE | |
| 1786 | SOF_TIMESTAMPING_SOFTWARE; |
Richard Cochran | 6663628 | 2012-04-03 22:59:19 +0000 | [diff] [blame] | 1787 | info->phc_index = -1; |
| 1788 | return 0; |
| 1789 | } |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1790 | info->so_timestamping = SOF_TIMESTAMPING_TX_HARDWARE | |
| 1791 | SOF_TIMESTAMPING_RX_HARDWARE | |
| 1792 | SOF_TIMESTAMPING_RAW_HARDWARE; |
Richard Cochran | 6663628 | 2012-04-03 22:59:19 +0000 | [diff] [blame] | 1793 | info->phc_index = gfar_phc_index; |
Jan Ceuleers | cbfc6071 | 2012-06-05 03:42:15 +0000 | [diff] [blame] | 1794 | info->tx_types = (1 << HWTSTAMP_TX_OFF) | |
| 1795 | (1 << HWTSTAMP_TX_ON); |
| 1796 | info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) | |
| 1797 | (1 << HWTSTAMP_FILTER_ALL); |
Richard Cochran | 6663628 | 2012-04-03 22:59:19 +0000 | [diff] [blame] | 1798 | return 0; |
| 1799 | } |
| 1800 | |
Jeff Garzik | 7282d49 | 2006-09-13 14:30:00 -0400 | [diff] [blame] | 1801 | const struct ethtool_ops gfar_ethtool_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | .get_settings = gfar_gsettings, |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 1803 | .set_settings = gfar_ssettings, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | .get_drvinfo = gfar_gdrvinfo, |
| 1805 | .get_regs_len = gfar_reglen, |
| 1806 | .get_regs = gfar_get_regs, |
| 1807 | .get_link = ethtool_op_get_link, |
| 1808 | .get_coalesce = gfar_gcoalesce, |
| 1809 | .set_coalesce = gfar_scoalesce, |
| 1810 | .get_ringparam = gfar_gringparam, |
| 1811 | .set_ringparam = gfar_sringparam, |
| 1812 | .get_strings = gfar_gstrings, |
Jeff Garzik | b9f2c04 | 2007-10-03 18:07:32 -0700 | [diff] [blame] | 1813 | .get_sset_count = gfar_sset_count, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | .get_ethtool_stats = gfar_fill_stats, |
Kumar Gala | 0bbaf06 | 2005-06-20 10:54:21 -0500 | [diff] [blame] | 1815 | .get_msglevel = gfar_get_msglevel, |
| 1816 | .set_msglevel = gfar_set_msglevel, |
Scott Wood | d87eb12 | 2008-07-11 18:04:45 -0500 | [diff] [blame] | 1817 | #ifdef CONFIG_PM |
| 1818 | .get_wol = gfar_get_wol, |
| 1819 | .set_wol = gfar_set_wol, |
| 1820 | #endif |
Sandeep Gopalpet | 7a8b337 | 2009-11-02 07:03:40 +0000 | [diff] [blame] | 1821 | .set_rxnfc = gfar_set_nfc, |
Sebastian Poehn | 4aa3a71 | 2011-06-20 13:57:59 -0700 | [diff] [blame] | 1822 | .get_rxnfc = gfar_get_nfc, |
Richard Cochran | 6663628 | 2012-04-03 22:59:19 +0000 | [diff] [blame] | 1823 | .get_ts_info = gfar_get_ts_info, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | }; |