blob: 29dbce4a9f86e15b9f5eaf112bf152185ba91941 [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001#include <linux/netdevice.h>
2#include <linux/ethtool.h>
3#include <linux/delay.h>
4
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02005#include "decl.h"
David Woodhouse506e9022007-12-12 20:06:06 -05006#include "cmd.h"
7
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02008
Holger Schurig10078322007-11-15 18:05:47 -05009static void lbs_ethtool_get_drvinfo(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020010 struct ethtool_drvinfo *info)
11{
Kiran Divekarab65f642009-02-19 19:32:39 -050012 struct lbs_private *priv = dev->ml_priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020013
Holger Schurigfb14a7e2008-04-02 18:04:35 +020014 snprintf(info->fw_version, 32, "%u.%u.%u.p%u",
15 priv->fwrelease >> 24 & 0xff,
16 priv->fwrelease >> 16 & 0xff,
17 priv->fwrelease >> 8 & 0xff,
18 priv->fwrelease & 0xff);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020019 strcpy(info->driver, "libertas");
Holger Schurig10078322007-11-15 18:05:47 -050020 strcpy(info->version, lbs_driver_version);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020021}
22
Randy Dunlap8973a6e2011-04-26 15:25:29 -070023/*
24 * All 8388 parts have 16KiB EEPROM size at the time of writing.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020025 * In case that changes this needs fixing.
26 */
Holger Schurig10078322007-11-15 18:05:47 -050027#define LBS_EEPROM_LEN 16384
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020028
Holger Schurig10078322007-11-15 18:05:47 -050029static int lbs_ethtool_get_eeprom_len(struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020030{
Holger Schurig10078322007-11-15 18:05:47 -050031 return LBS_EEPROM_LEN;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020032}
33
Holger Schurig10078322007-11-15 18:05:47 -050034static int lbs_ethtool_get_eeprom(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020035 struct ethtool_eeprom *eeprom, u8 * bytes)
36{
Kiran Divekarab65f642009-02-19 19:32:39 -050037 struct lbs_private *priv = dev->ml_priv;
Holger Schurig7460f5a2008-03-26 10:03:48 +010038 struct cmd_ds_802_11_eeprom_access cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020039 int ret;
40
Holger Schurig7460f5a2008-03-26 10:03:48 +010041 lbs_deb_enter(LBS_DEB_ETHTOOL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020042
Holger Schurig7460f5a2008-03-26 10:03:48 +010043 if (eeprom->offset + eeprom->len > LBS_EEPROM_LEN ||
44 eeprom->len > LBS_EEPROM_READ_LEN) {
45 ret = -EINVAL;
46 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020047 }
48
Holger Schurig7460f5a2008-03-26 10:03:48 +010049 cmd.hdr.size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) -
50 LBS_EEPROM_READ_LEN + eeprom->len);
51 cmd.action = cpu_to_le16(CMD_ACT_GET);
52 cmd.offset = cpu_to_le16(eeprom->offset);
53 cmd.len = cpu_to_le16(eeprom->len);
54 ret = lbs_cmd_with_response(priv, CMD_802_11_EEPROM_ACCESS, &cmd);
55 if (!ret)
56 memcpy(bytes, cmd.value, eeprom->len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020057
Holger Schurig7460f5a2008-03-26 10:03:48 +010058out:
59 lbs_deb_leave_args(LBS_DEB_ETHTOOL, "ret %d", ret);
Holger Schurig9012b282007-05-25 11:27:16 -040060 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020061}
62
David Woodhouse506e9022007-12-12 20:06:06 -050063static void lbs_ethtool_get_wol(struct net_device *dev,
64 struct ethtool_wolinfo *wol)
65{
Kiran Divekarab65f642009-02-19 19:32:39 -050066 struct lbs_private *priv = dev->ml_priv;
David Woodhouse506e9022007-12-12 20:06:06 -050067
David Woodhouse506e9022007-12-12 20:06:06 -050068 wol->supported = WAKE_UCAST|WAKE_MCAST|WAKE_BCAST|WAKE_PHY;
69
Sascha Silbe84efa0e2010-06-05 13:30:12 +020070 if (priv->wol_criteria == EHS_REMOVE_WAKEUP)
71 return;
72
David Woodhouse506e9022007-12-12 20:06:06 -050073 if (priv->wol_criteria & EHS_WAKE_ON_UNICAST_DATA)
74 wol->wolopts |= WAKE_UCAST;
75 if (priv->wol_criteria & EHS_WAKE_ON_MULTICAST_DATA)
76 wol->wolopts |= WAKE_MCAST;
77 if (priv->wol_criteria & EHS_WAKE_ON_BROADCAST_DATA)
78 wol->wolopts |= WAKE_BCAST;
79 if (priv->wol_criteria & EHS_WAKE_ON_MAC_EVENT)
80 wol->wolopts |= WAKE_PHY;
81}
82
83static int lbs_ethtool_set_wol(struct net_device *dev,
84 struct ethtool_wolinfo *wol)
85{
Kiran Divekarab65f642009-02-19 19:32:39 -050086 struct lbs_private *priv = dev->ml_priv;
David Woodhouse506e9022007-12-12 20:06:06 -050087
David Woodhouse506e9022007-12-12 20:06:06 -050088 if (wol->wolopts & ~(WAKE_UCAST|WAKE_MCAST|WAKE_BCAST|WAKE_PHY))
89 return -EOPNOTSUPP;
90
Amitkumar Karwar66fceb62010-05-19 03:24:38 -070091 priv->wol_criteria = 0;
Bing Zhao866d4702009-11-09 18:04:12 -080092 if (wol->wolopts & WAKE_UCAST)
Amitkumar Karwar66fceb62010-05-19 03:24:38 -070093 priv->wol_criteria |= EHS_WAKE_ON_UNICAST_DATA;
Bing Zhao866d4702009-11-09 18:04:12 -080094 if (wol->wolopts & WAKE_MCAST)
Amitkumar Karwar66fceb62010-05-19 03:24:38 -070095 priv->wol_criteria |= EHS_WAKE_ON_MULTICAST_DATA;
Bing Zhao866d4702009-11-09 18:04:12 -080096 if (wol->wolopts & WAKE_BCAST)
Amitkumar Karwar66fceb62010-05-19 03:24:38 -070097 priv->wol_criteria |= EHS_WAKE_ON_BROADCAST_DATA;
Bing Zhao866d4702009-11-09 18:04:12 -080098 if (wol->wolopts & WAKE_PHY)
Amitkumar Karwar66fceb62010-05-19 03:24:38 -070099 priv->wol_criteria |= EHS_WAKE_ON_MAC_EVENT;
Bing Zhaoc3b866a2009-11-09 18:04:13 -0800100 if (wol->wolopts == 0)
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700101 priv->wol_criteria |= EHS_REMOVE_WAKEUP;
102 return 0;
David Woodhouse506e9022007-12-12 20:06:06 -0500103}
104
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700105const struct ethtool_ops lbs_ethtool_ops = {
Holger Schurig10078322007-11-15 18:05:47 -0500106 .get_drvinfo = lbs_ethtool_get_drvinfo,
107 .get_eeprom = lbs_ethtool_get_eeprom,
108 .get_eeprom_len = lbs_ethtool_get_eeprom_len,
Holger Schurig4143a232009-12-02 15:26:02 +0100109#ifdef CONFIG_LIBERTAS_MESH
Holger Schurigc7fe64c2009-11-25 13:10:49 +0100110 .get_sset_count = lbs_mesh_ethtool_get_sset_count,
111 .get_ethtool_stats = lbs_mesh_ethtool_get_stats,
112 .get_strings = lbs_mesh_ethtool_get_strings,
Holger Schurig4143a232009-12-02 15:26:02 +0100113#endif
David Woodhouse506e9022007-12-12 20:06:06 -0500114 .get_wol = lbs_ethtool_get_wol,
115 .set_wol = lbs_ethtool_set_wol,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200116};
117