Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1 | #include <linux/netdevice.h> |
| 2 | #include <linux/ethtool.h> |
| 3 | #include <linux/delay.h> |
| 4 | |
| 5 | #include "host.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 6 | #include "decl.h" |
| 7 | #include "defs.h" |
| 8 | #include "dev.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 9 | #include "wext.h" |
David Woodhouse | 506e902 | 2007-12-12 20:06:06 -0500 | [diff] [blame] | 10 | #include "cmd.h" |
Holger Schurig | c7fe64c | 2009-11-25 13:10:49 +0100 | [diff] [blame] | 11 | #include "mesh.h" |
David Woodhouse | 506e902 | 2007-12-12 20:06:06 -0500 | [diff] [blame] | 12 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 13 | |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 14 | static void lbs_ethtool_get_drvinfo(struct net_device *dev, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 15 | struct ethtool_drvinfo *info) |
| 16 | { |
Kiran Divekar | ab65f64 | 2009-02-19 19:32:39 -0500 | [diff] [blame] | 17 | struct lbs_private *priv = dev->ml_priv; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 18 | |
Holger Schurig | fb14a7e | 2008-04-02 18:04:35 +0200 | [diff] [blame] | 19 | snprintf(info->fw_version, 32, "%u.%u.%u.p%u", |
| 20 | priv->fwrelease >> 24 & 0xff, |
| 21 | priv->fwrelease >> 16 & 0xff, |
| 22 | priv->fwrelease >> 8 & 0xff, |
| 23 | priv->fwrelease & 0xff); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 24 | strcpy(info->driver, "libertas"); |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 25 | strcpy(info->version, lbs_driver_version); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 26 | } |
| 27 | |
| 28 | /* All 8388 parts have 16KiB EEPROM size at the time of writing. |
| 29 | * In case that changes this needs fixing. |
| 30 | */ |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 31 | #define LBS_EEPROM_LEN 16384 |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 32 | |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 33 | static int lbs_ethtool_get_eeprom_len(struct net_device *dev) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 34 | { |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 35 | return LBS_EEPROM_LEN; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 36 | } |
| 37 | |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 38 | static int lbs_ethtool_get_eeprom(struct net_device *dev, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 39 | struct ethtool_eeprom *eeprom, u8 * bytes) |
| 40 | { |
Kiran Divekar | ab65f64 | 2009-02-19 19:32:39 -0500 | [diff] [blame] | 41 | struct lbs_private *priv = dev->ml_priv; |
Holger Schurig | 7460f5a | 2008-03-26 10:03:48 +0100 | [diff] [blame] | 42 | struct cmd_ds_802_11_eeprom_access cmd; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 43 | int ret; |
| 44 | |
Holger Schurig | 7460f5a | 2008-03-26 10:03:48 +0100 | [diff] [blame] | 45 | lbs_deb_enter(LBS_DEB_ETHTOOL); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 46 | |
Holger Schurig | 7460f5a | 2008-03-26 10:03:48 +0100 | [diff] [blame] | 47 | if (eeprom->offset + eeprom->len > LBS_EEPROM_LEN || |
| 48 | eeprom->len > LBS_EEPROM_READ_LEN) { |
| 49 | ret = -EINVAL; |
| 50 | goto out; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 51 | } |
| 52 | |
Holger Schurig | 7460f5a | 2008-03-26 10:03:48 +0100 | [diff] [blame] | 53 | cmd.hdr.size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) - |
| 54 | LBS_EEPROM_READ_LEN + eeprom->len); |
| 55 | cmd.action = cpu_to_le16(CMD_ACT_GET); |
| 56 | cmd.offset = cpu_to_le16(eeprom->offset); |
| 57 | cmd.len = cpu_to_le16(eeprom->len); |
| 58 | ret = lbs_cmd_with_response(priv, CMD_802_11_EEPROM_ACCESS, &cmd); |
| 59 | if (!ret) |
| 60 | memcpy(bytes, cmd.value, eeprom->len); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 61 | |
Holger Schurig | 7460f5a | 2008-03-26 10:03:48 +0100 | [diff] [blame] | 62 | out: |
| 63 | lbs_deb_leave_args(LBS_DEB_ETHTOOL, "ret %d", ret); |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 64 | return ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 65 | } |
| 66 | |
David Woodhouse | 506e902 | 2007-12-12 20:06:06 -0500 | [diff] [blame] | 67 | static void lbs_ethtool_get_wol(struct net_device *dev, |
| 68 | struct ethtool_wolinfo *wol) |
| 69 | { |
Kiran Divekar | ab65f64 | 2009-02-19 19:32:39 -0500 | [diff] [blame] | 70 | struct lbs_private *priv = dev->ml_priv; |
David Woodhouse | 506e902 | 2007-12-12 20:06:06 -0500 | [diff] [blame] | 71 | |
| 72 | if (priv->wol_criteria == 0xffffffff) { |
| 73 | /* Interface driver didn't configure wake */ |
| 74 | wol->supported = wol->wolopts = 0; |
| 75 | return; |
| 76 | } |
| 77 | |
| 78 | wol->supported = WAKE_UCAST|WAKE_MCAST|WAKE_BCAST|WAKE_PHY; |
| 79 | |
| 80 | if (priv->wol_criteria & EHS_WAKE_ON_UNICAST_DATA) |
| 81 | wol->wolopts |= WAKE_UCAST; |
| 82 | if (priv->wol_criteria & EHS_WAKE_ON_MULTICAST_DATA) |
| 83 | wol->wolopts |= WAKE_MCAST; |
| 84 | if (priv->wol_criteria & EHS_WAKE_ON_BROADCAST_DATA) |
| 85 | wol->wolopts |= WAKE_BCAST; |
| 86 | if (priv->wol_criteria & EHS_WAKE_ON_MAC_EVENT) |
| 87 | wol->wolopts |= WAKE_PHY; |
| 88 | } |
| 89 | |
| 90 | static int lbs_ethtool_set_wol(struct net_device *dev, |
| 91 | struct ethtool_wolinfo *wol) |
| 92 | { |
Kiran Divekar | ab65f64 | 2009-02-19 19:32:39 -0500 | [diff] [blame] | 93 | struct lbs_private *priv = dev->ml_priv; |
David Woodhouse | 506e902 | 2007-12-12 20:06:06 -0500 | [diff] [blame] | 94 | uint32_t criteria = 0; |
| 95 | |
David Woodhouse | 506e902 | 2007-12-12 20:06:06 -0500 | [diff] [blame] | 96 | if (wol->wolopts & ~(WAKE_UCAST|WAKE_MCAST|WAKE_BCAST|WAKE_PHY)) |
| 97 | return -EOPNOTSUPP; |
| 98 | |
Bing Zhao | 866d470 | 2009-11-09 18:04:12 -0800 | [diff] [blame] | 99 | if (wol->wolopts & WAKE_UCAST) |
| 100 | criteria |= EHS_WAKE_ON_UNICAST_DATA; |
| 101 | if (wol->wolopts & WAKE_MCAST) |
| 102 | criteria |= EHS_WAKE_ON_MULTICAST_DATA; |
| 103 | if (wol->wolopts & WAKE_BCAST) |
| 104 | criteria |= EHS_WAKE_ON_BROADCAST_DATA; |
| 105 | if (wol->wolopts & WAKE_PHY) |
| 106 | criteria |= EHS_WAKE_ON_MAC_EVENT; |
Bing Zhao | c3b866a | 2009-11-09 18:04:13 -0800 | [diff] [blame] | 107 | if (wol->wolopts == 0) |
| 108 | criteria |= EHS_REMOVE_WAKEUP; |
David Woodhouse | 506e902 | 2007-12-12 20:06:06 -0500 | [diff] [blame] | 109 | |
Anna Neal | 582c1b5 | 2008-10-20 16:46:56 -0700 | [diff] [blame] | 110 | return lbs_host_sleep_cfg(priv, criteria, (struct wol_config *)NULL); |
David Woodhouse | 506e902 | 2007-12-12 20:06:06 -0500 | [diff] [blame] | 111 | } |
| 112 | |
Stephen Hemminger | 0fc0b73 | 2009-09-02 01:03:33 -0700 | [diff] [blame] | 113 | const struct ethtool_ops lbs_ethtool_ops = { |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 114 | .get_drvinfo = lbs_ethtool_get_drvinfo, |
| 115 | .get_eeprom = lbs_ethtool_get_eeprom, |
| 116 | .get_eeprom_len = lbs_ethtool_get_eeprom_len, |
Holger Schurig | c7fe64c | 2009-11-25 13:10:49 +0100 | [diff] [blame] | 117 | .get_sset_count = lbs_mesh_ethtool_get_sset_count, |
| 118 | .get_ethtool_stats = lbs_mesh_ethtool_get_stats, |
| 119 | .get_strings = lbs_mesh_ethtool_get_strings, |
David Woodhouse | 506e902 | 2007-12-12 20:06:06 -0500 | [diff] [blame] | 120 | .get_wol = lbs_ethtool_get_wol, |
| 121 | .set_wol = lbs_ethtool_set_wol, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 122 | }; |
| 123 | |