blob: f32fb00129e7afe5f1f1c4e39ff626e6b037cc81 [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
5#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02006#include "decl.h"
7#include "defs.h"
8#include "dev.h"
9#include "join.h"
10#include "wext.h"
11static const char * mesh_stat_strings[]= {
12 "drop_duplicate_bcast",
13 "drop_ttl_zero",
14 "drop_no_fwd_route",
15 "drop_no_buffers",
16 "fwded_unicast_cnt",
17 "fwded_bcast_cnt",
Javier Cardona0601e7e2007-05-25 12:12:06 -040018 "drop_blind_table",
19 "tx_failed_cnt"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020020};
21
Holger Schurig10078322007-11-15 18:05:47 -050022static void lbs_ethtool_get_drvinfo(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020023 struct ethtool_drvinfo *info)
24{
Holger Schurig69f90322007-11-23 15:43:44 +010025 struct lbs_private *priv = (struct lbs_private *) dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020026 char fwver[32];
27
Holger Schurig10078322007-11-15 18:05:47 -050028 lbs_get_fwversion(priv->adapter, fwver, sizeof(fwver) - 1);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020029
30 strcpy(info->driver, "libertas");
Holger Schurig10078322007-11-15 18:05:47 -050031 strcpy(info->version, lbs_driver_version);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020032 strcpy(info->fw_version, fwver);
33}
34
35/* All 8388 parts have 16KiB EEPROM size at the time of writing.
36 * In case that changes this needs fixing.
37 */
Holger Schurig10078322007-11-15 18:05:47 -050038#define LBS_EEPROM_LEN 16384
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020039
Holger Schurig10078322007-11-15 18:05:47 -050040static int lbs_ethtool_get_eeprom_len(struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020041{
Holger Schurig10078322007-11-15 18:05:47 -050042 return LBS_EEPROM_LEN;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020043}
44
Holger Schurig10078322007-11-15 18:05:47 -050045static int lbs_ethtool_get_eeprom(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020046 struct ethtool_eeprom *eeprom, u8 * bytes)
47{
Holger Schurig69f90322007-11-23 15:43:44 +010048 struct lbs_private *priv = (struct lbs_private *) dev->priv;
49 struct lbs_adapter *adapter = priv->adapter;
Holger Schurig10078322007-11-15 18:05:47 -050050 struct lbs_ioctl_regrdwr regctrl;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020051 char *ptr;
52 int ret;
53
54 regctrl.action = 0;
55 regctrl.offset = eeprom->offset;
56 regctrl.NOB = eeprom->len;
57
Holger Schurig10078322007-11-15 18:05:47 -050058 if (eeprom->offset + eeprom->len > LBS_EEPROM_LEN)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020059 return -EINVAL;
60
61// mutex_lock(&priv->mutex);
62
Jesper Juhl655b4d12007-08-24 11:48:16 -040063 adapter->prdeeprom = kmalloc(eeprom->len+sizeof(regctrl), GFP_KERNEL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020064 if (!adapter->prdeeprom)
65 return -ENOMEM;
66 memcpy(adapter->prdeeprom, &regctrl, sizeof(regctrl));
67
68 /* +14 is for action, offset, and NOB in
69 * response */
Holger Schurig9012b282007-05-25 11:27:16 -040070 lbs_deb_ethtool("action:%d offset: %x NOB: %02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020071 regctrl.action, regctrl.offset, regctrl.NOB);
72
Holger Schurig10078322007-11-15 18:05:47 -050073 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -040074 CMD_802_11_EEPROM_ACCESS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020075 regctrl.action,
Dan Williams0aef64d2007-08-02 11:31:18 -040076 CMD_OPTION_WAITFORRSP, 0,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020077 &regctrl);
78
79 if (ret) {
80 if (adapter->prdeeprom)
81 kfree(adapter->prdeeprom);
Holger Schurig9012b282007-05-25 11:27:16 -040082 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020083 }
84
85 mdelay(10);
86
87 ptr = (char *)adapter->prdeeprom;
88
89 /* skip the command header, but include the "value" u32 variable */
Holger Schurig10078322007-11-15 18:05:47 -050090 ptr = ptr + sizeof(struct lbs_ioctl_regrdwr) - 4;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020091
92 /*
93 * Return the result back to the user
94 */
95 memcpy(bytes, ptr, eeprom->len);
96
97 if (adapter->prdeeprom)
98 kfree(adapter->prdeeprom);
99// mutex_unlock(&priv->mutex);
100
Holger Schurig9012b282007-05-25 11:27:16 -0400101 ret = 0;
102
103done:
104 lbs_deb_enter_args(LBS_DEB_ETHTOOL, "ret %d", ret);
105 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200106}
107
Holger Schurig10078322007-11-15 18:05:47 -0500108static void lbs_ethtool_get_stats(struct net_device * dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200109 struct ethtool_stats * stats, u64 * data)
110{
Holger Schurig69f90322007-11-23 15:43:44 +0100111 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200112 struct cmd_ds_mesh_access mesh_access;
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700113 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200114
Holger Schurig9012b282007-05-25 11:27:16 -0400115 lbs_deb_enter(LBS_DEB_ETHTOOL);
116
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200117 /* Get Mesh Statistics */
Holger Schurig10078322007-11-15 18:05:47 -0500118 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -0400119 CMD_MESH_ACCESS, CMD_ACT_MESH_GET_STATS,
120 CMD_OPTION_WAITFORRSP, 0, &mesh_access);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200121
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700122 if (ret)
123 return;
124
125 priv->mstats.fwd_drop_rbt = le32_to_cpu(mesh_access.data[0]);
126 priv->mstats.fwd_drop_ttl = le32_to_cpu(mesh_access.data[1]);
127 priv->mstats.fwd_drop_noroute = le32_to_cpu(mesh_access.data[2]);
128 priv->mstats.fwd_drop_nobuf = le32_to_cpu(mesh_access.data[3]);
129 priv->mstats.fwd_unicast_cnt = le32_to_cpu(mesh_access.data[4]);
130 priv->mstats.fwd_bcast_cnt = le32_to_cpu(mesh_access.data[5]);
131 priv->mstats.drop_blind = le32_to_cpu(mesh_access.data[6]);
132 priv->mstats.tx_failed_cnt = le32_to_cpu(mesh_access.data[7]);
133
134 data[0] = priv->mstats.fwd_drop_rbt;
135 data[1] = priv->mstats.fwd_drop_ttl;
136 data[2] = priv->mstats.fwd_drop_noroute;
137 data[3] = priv->mstats.fwd_drop_nobuf;
138 data[4] = priv->mstats.fwd_unicast_cnt;
139 data[5] = priv->mstats.fwd_bcast_cnt;
140 data[6] = priv->mstats.drop_blind;
141 data[7] = priv->mstats.tx_failed_cnt;
142
143 lbs_deb_enter(LBS_DEB_ETHTOOL);
144}
145
Holger Schurig10078322007-11-15 18:05:47 -0500146static int lbs_ethtool_get_sset_count(struct net_device * dev, int sset)
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700147{
148 switch (sset) {
149 case ETH_SS_STATS:
150 return MESH_STATS_NUM;
151 default:
152 return -EOPNOTSUPP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200153 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200154}
155
Holger Schurig10078322007-11-15 18:05:47 -0500156static void lbs_ethtool_get_strings(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200157 u32 stringset,
158 u8 * s)
159{
160 int i;
161
Holger Schurig9012b282007-05-25 11:27:16 -0400162 lbs_deb_enter(LBS_DEB_ETHTOOL);
163
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200164 switch (stringset) {
165 case ETH_SS_STATS:
166 for (i=0; i < MESH_STATS_NUM; i++) {
167 memcpy(s + i * ETH_GSTRING_LEN,
168 mesh_stat_strings[i],
169 ETH_GSTRING_LEN);
170 }
171 break;
172 }
Holger Schurig9012b282007-05-25 11:27:16 -0400173 lbs_deb_enter(LBS_DEB_ETHTOOL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200174}
175
Holger Schurig10078322007-11-15 18:05:47 -0500176struct ethtool_ops lbs_ethtool_ops = {
177 .get_drvinfo = lbs_ethtool_get_drvinfo,
178 .get_eeprom = lbs_ethtool_get_eeprom,
179 .get_eeprom_len = lbs_ethtool_get_eeprom_len,
180 .get_sset_count = lbs_ethtool_get_sset_count,
181 .get_ethtool_stats = lbs_ethtool_get_stats,
182 .get_strings = lbs_ethtool_get_strings,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200183};
184