diff options
Diffstat (limited to 'drivers/net/wireless/libertas/mesh.c')
-rw-r--r-- | drivers/net/wireless/libertas/mesh.c | 441 |
1 files changed, 435 insertions, 6 deletions
diff --git a/drivers/net/wireless/libertas/mesh.c b/drivers/net/wireless/libertas/mesh.c index 871f914a75fc..80c2c7a31c8e 100644 --- a/drivers/net/wireless/libertas/mesh.c +++ b/drivers/net/wireless/libertas/mesh.c | |||
@@ -6,15 +6,444 @@ | |||
6 | #include <linux/kthread.h> | 6 | #include <linux/kthread.h> |
7 | #include <linux/kfifo.h> | 7 | #include <linux/kfifo.h> |
8 | 8 | ||
9 | #include "host.h" | 9 | #include "mesh.h" |
10 | #include "decl.h" | 10 | #include "decl.h" |
11 | #include "dev.h" | ||
12 | #include "wext.h" | ||
13 | #include "debugfs.h" | ||
14 | #include "scan.h" | ||
15 | #include "assoc.h" | ||
16 | #include "cmd.h" | 11 | #include "cmd.h" |
17 | 12 | ||
13 | |||
14 | /*************************************************************************** | ||
15 | * Mesh sysfs support | ||
16 | */ | ||
17 | |||
18 | /** | ||
19 | * Attributes exported through sysfs | ||
20 | */ | ||
21 | |||
22 | /** | ||
23 | * @brief Get function for sysfs attribute anycast_mask | ||
24 | */ | ||
25 | static ssize_t lbs_anycast_get(struct device *dev, | ||
26 | struct device_attribute *attr, char * buf) | ||
27 | { | ||
28 | struct lbs_private *priv = to_net_dev(dev)->ml_priv; | ||
29 | struct cmd_ds_mesh_access mesh_access; | ||
30 | int ret; | ||
31 | |||
32 | memset(&mesh_access, 0, sizeof(mesh_access)); | ||
33 | |||
34 | ret = lbs_mesh_access(priv, CMD_ACT_MESH_GET_ANYCAST, &mesh_access); | ||
35 | if (ret) | ||
36 | return ret; | ||
37 | |||
38 | return snprintf(buf, 12, "0x%X\n", le32_to_cpu(mesh_access.data[0])); | ||
39 | } | ||
40 | |||
41 | /** | ||
42 | * @brief Set function for sysfs attribute anycast_mask | ||
43 | */ | ||
44 | static ssize_t lbs_anycast_set(struct device *dev, | ||
45 | struct device_attribute *attr, const char * buf, size_t count) | ||
46 | { | ||
47 | struct lbs_private *priv = to_net_dev(dev)->ml_priv; | ||
48 | struct cmd_ds_mesh_access mesh_access; | ||
49 | uint32_t datum; | ||
50 | int ret; | ||
51 | |||
52 | memset(&mesh_access, 0, sizeof(mesh_access)); | ||
53 | sscanf(buf, "%x", &datum); | ||
54 | mesh_access.data[0] = cpu_to_le32(datum); | ||
55 | |||
56 | ret = lbs_mesh_access(priv, CMD_ACT_MESH_SET_ANYCAST, &mesh_access); | ||
57 | if (ret) | ||
58 | return ret; | ||
59 | |||
60 | return strlen(buf); | ||
61 | } | ||
62 | |||
63 | /** | ||
64 | * @brief Get function for sysfs attribute prb_rsp_limit | ||
65 | */ | ||
66 | static ssize_t lbs_prb_rsp_limit_get(struct device *dev, | ||
67 | struct device_attribute *attr, char *buf) | ||
68 | { | ||
69 | struct lbs_private *priv = to_net_dev(dev)->ml_priv; | ||
70 | struct cmd_ds_mesh_access mesh_access; | ||
71 | int ret; | ||
72 | u32 retry_limit; | ||
73 | |||
74 | memset(&mesh_access, 0, sizeof(mesh_access)); | ||
75 | mesh_access.data[0] = cpu_to_le32(CMD_ACT_GET); | ||
76 | |||
77 | ret = lbs_mesh_access(priv, CMD_ACT_MESH_SET_GET_PRB_RSP_LIMIT, | ||
78 | &mesh_access); | ||
79 | if (ret) | ||
80 | return ret; | ||
81 | |||
82 | retry_limit = le32_to_cpu(mesh_access.data[1]); | ||
83 | return snprintf(buf, 10, "%d\n", retry_limit); | ||
84 | } | ||
85 | |||
86 | /** | ||
87 | * @brief Set function for sysfs attribute prb_rsp_limit | ||
88 | */ | ||
89 | static ssize_t lbs_prb_rsp_limit_set(struct device *dev, | ||
90 | struct device_attribute *attr, const char *buf, size_t count) | ||
91 | { | ||
92 | struct lbs_private *priv = to_net_dev(dev)->ml_priv; | ||
93 | struct cmd_ds_mesh_access mesh_access; | ||
94 | int ret; | ||
95 | unsigned long retry_limit; | ||
96 | |||
97 | memset(&mesh_access, 0, sizeof(mesh_access)); | ||
98 | mesh_access.data[0] = cpu_to_le32(CMD_ACT_SET); | ||
99 | |||
100 | if (!strict_strtoul(buf, 10, &retry_limit)) | ||
101 | return -ENOTSUPP; | ||
102 | if (retry_limit > 15) | ||
103 | return -ENOTSUPP; | ||
104 | |||
105 | mesh_access.data[1] = cpu_to_le32(retry_limit); | ||
106 | |||
107 | ret = lbs_mesh_access(priv, CMD_ACT_MESH_SET_GET_PRB_RSP_LIMIT, | ||
108 | &mesh_access); | ||
109 | if (ret) | ||
110 | return ret; | ||
111 | |||
112 | return strlen(buf); | ||
113 | } | ||
114 | |||
115 | /** | ||
116 | * Get function for sysfs attribute mesh | ||
117 | */ | ||
118 | static ssize_t lbs_mesh_get(struct device *dev, | ||
119 | struct device_attribute *attr, char * buf) | ||
120 | { | ||
121 | struct lbs_private *priv = to_net_dev(dev)->ml_priv; | ||
122 | return snprintf(buf, 5, "0x%X\n", !!priv->mesh_dev); | ||
123 | } | ||
124 | |||
125 | /** | ||
126 | * Set function for sysfs attribute mesh | ||
127 | */ | ||
128 | static ssize_t lbs_mesh_set(struct device *dev, | ||
129 | struct device_attribute *attr, const char * buf, size_t count) | ||
130 | { | ||
131 | struct lbs_private *priv = to_net_dev(dev)->ml_priv; | ||
132 | int enable; | ||
133 | int ret, action = CMD_ACT_MESH_CONFIG_STOP; | ||
134 | |||
135 | sscanf(buf, "%x", &enable); | ||
136 | enable = !!enable; | ||
137 | if (enable == !!priv->mesh_dev) | ||
138 | return count; | ||
139 | if (enable) | ||
140 | action = CMD_ACT_MESH_CONFIG_START; | ||
141 | ret = lbs_mesh_config(priv, action, priv->channel); | ||
142 | if (ret) | ||
143 | return ret; | ||
144 | |||
145 | if (enable) | ||
146 | lbs_add_mesh(priv); | ||
147 | else | ||
148 | lbs_remove_mesh(priv); | ||
149 | |||
150 | return count; | ||
151 | } | ||
152 | |||
153 | /** | ||
154 | * lbs_mesh attribute to be exported per ethX interface | ||
155 | * through sysfs (/sys/class/net/ethX/lbs_mesh) | ||
156 | */ | ||
157 | static DEVICE_ATTR(lbs_mesh, 0644, lbs_mesh_get, lbs_mesh_set); | ||
158 | |||
159 | /** | ||
160 | * anycast_mask attribute to be exported per mshX interface | ||
161 | * through sysfs (/sys/class/net/mshX/anycast_mask) | ||
162 | */ | ||
163 | static DEVICE_ATTR(anycast_mask, 0644, lbs_anycast_get, lbs_anycast_set); | ||
164 | |||
165 | /** | ||
166 | * prb_rsp_limit attribute to be exported per mshX interface | ||
167 | * through sysfs (/sys/class/net/mshX/prb_rsp_limit) | ||
168 | */ | ||
169 | static DEVICE_ATTR(prb_rsp_limit, 0644, lbs_prb_rsp_limit_get, | ||
170 | lbs_prb_rsp_limit_set); | ||
171 | |||
172 | static struct attribute *lbs_mesh_sysfs_entries[] = { | ||
173 | &dev_attr_anycast_mask.attr, | ||
174 | &dev_attr_prb_rsp_limit.attr, | ||
175 | NULL, | ||
176 | }; | ||
177 | |||
178 | static struct attribute_group lbs_mesh_attr_group = { | ||
179 | .attrs = lbs_mesh_sysfs_entries, | ||
180 | }; | ||
181 | |||
182 | |||
183 | |||
184 | /*************************************************************************** | ||
185 | * Initializing and starting, stopping mesh | ||
186 | */ | ||
187 | |||
188 | /* | ||
189 | * Check mesh FW version and appropriately send the mesh start | ||
190 | * command | ||
191 | */ | ||
192 | int lbs_init_mesh(struct lbs_private *priv) | ||
193 | { | ||
194 | struct net_device *dev = priv->dev; | ||
195 | int ret = 0; | ||
196 | |||
197 | lbs_deb_enter(LBS_DEB_MESH); | ||
198 | |||
199 | if (priv->mesh_fw_ver == MESH_FW_OLD) { | ||
200 | /* Enable mesh, if supported, and work out which TLV it uses. | ||
201 | 0x100 + 291 is an unofficial value used in 5.110.20.pXX | ||
202 | 0x100 + 37 is the official value used in 5.110.21.pXX | ||
203 | but we check them in that order because 20.pXX doesn't | ||
204 | give an error -- it just silently fails. */ | ||
205 | |||
206 | /* 5.110.20.pXX firmware will fail the command if the channel | ||
207 | doesn't match the existing channel. But only if the TLV | ||
208 | is correct. If the channel is wrong, _BOTH_ versions will | ||
209 | give an error to 0x100+291, and allow 0x100+37 to succeed. | ||
210 | It's just that 5.110.20.pXX will not have done anything | ||
211 | useful */ | ||
212 | |||
213 | priv->mesh_tlv = TLV_TYPE_OLD_MESH_ID; | ||
214 | if (lbs_mesh_config(priv, CMD_ACT_MESH_CONFIG_START, | ||
215 | priv->channel)) { | ||
216 | priv->mesh_tlv = TLV_TYPE_MESH_ID; | ||
217 | if (lbs_mesh_config(priv, CMD_ACT_MESH_CONFIG_START, | ||
218 | priv->channel)) | ||
219 | priv->mesh_tlv = 0; | ||
220 | } | ||
221 | } else if (priv->mesh_fw_ver == MESH_FW_NEW) { | ||
222 | /* 10.0.0.pXX new firmwares should succeed with TLV | ||
223 | * 0x100+37; Do not invoke command with old TLV. | ||
224 | */ | ||
225 | priv->mesh_tlv = TLV_TYPE_MESH_ID; | ||
226 | if (lbs_mesh_config(priv, CMD_ACT_MESH_CONFIG_START, | ||
227 | priv->channel)) | ||
228 | priv->mesh_tlv = 0; | ||
229 | } | ||
230 | if (priv->mesh_tlv) { | ||
231 | lbs_add_mesh(priv); | ||
232 | |||
233 | if (device_create_file(&dev->dev, &dev_attr_lbs_mesh)) | ||
234 | lbs_pr_err("cannot register lbs_mesh attribute\n"); | ||
235 | |||
236 | ret = 1; | ||
237 | } | ||
238 | |||
239 | lbs_deb_leave_args(LBS_DEB_MESH, "ret %d", ret); | ||
240 | return ret; | ||
241 | } | ||
242 | |||
243 | |||
244 | int lbs_deinit_mesh(struct lbs_private *priv) | ||
245 | { | ||
246 | struct net_device *dev = priv->dev; | ||
247 | int ret = 0; | ||
248 | |||
249 | lbs_deb_enter(LBS_DEB_MESH); | ||
250 | |||
251 | if (priv->mesh_tlv) { | ||
252 | device_remove_file(&dev->dev, &dev_attr_lbs_mesh); | ||
253 | ret = 1; | ||
254 | } | ||
255 | |||
256 | lbs_deb_leave_args(LBS_DEB_MESH, "ret %d", ret); | ||
257 | return ret; | ||
258 | } | ||
259 | |||
260 | |||
261 | /** | ||
262 | * @brief This function closes the mshX interface | ||
263 | * | ||
264 | * @param dev A pointer to net_device structure | ||
265 | * @return 0 | ||
266 | */ | ||
267 | static int lbs_mesh_stop(struct net_device *dev) | ||
268 | { | ||
269 | struct lbs_private *priv = dev->ml_priv; | ||
270 | |||
271 | lbs_deb_enter(LBS_DEB_MESH); | ||
272 | spin_lock_irq(&priv->driver_lock); | ||
273 | |||
274 | priv->mesh_open = 0; | ||
275 | priv->mesh_connect_status = LBS_DISCONNECTED; | ||
276 | |||
277 | netif_stop_queue(dev); | ||
278 | netif_carrier_off(dev); | ||
279 | |||
280 | spin_unlock_irq(&priv->driver_lock); | ||
281 | |||
282 | schedule_work(&priv->mcast_work); | ||
283 | |||
284 | lbs_deb_leave(LBS_DEB_MESH); | ||
285 | return 0; | ||
286 | } | ||
287 | |||
288 | /** | ||
289 | * @brief This function opens the mshX interface | ||
290 | * | ||
291 | * @param dev A pointer to net_device structure | ||
292 | * @return 0 or -EBUSY if monitor mode active | ||
293 | */ | ||
294 | static int lbs_mesh_dev_open(struct net_device *dev) | ||
295 | { | ||
296 | struct lbs_private *priv = dev->ml_priv; | ||
297 | int ret = 0; | ||
298 | |||
299 | lbs_deb_enter(LBS_DEB_NET); | ||
300 | |||
301 | spin_lock_irq(&priv->driver_lock); | ||
302 | |||
303 | if (priv->monitormode) { | ||
304 | ret = -EBUSY; | ||
305 | goto out; | ||
306 | } | ||
307 | |||
308 | priv->mesh_open = 1; | ||
309 | priv->mesh_connect_status = LBS_CONNECTED; | ||
310 | netif_carrier_on(dev); | ||
311 | |||
312 | if (!priv->tx_pending_len) | ||
313 | netif_wake_queue(dev); | ||
314 | out: | ||
315 | |||
316 | spin_unlock_irq(&priv->driver_lock); | ||
317 | lbs_deb_leave_args(LBS_DEB_NET, "ret %d", ret); | ||
318 | return ret; | ||
319 | } | ||
320 | |||
321 | static const struct net_device_ops mesh_netdev_ops = { | ||
322 | .ndo_open = lbs_mesh_dev_open, | ||
323 | .ndo_stop = lbs_mesh_stop, | ||
324 | .ndo_start_xmit = lbs_hard_start_xmit, | ||
325 | .ndo_set_mac_address = lbs_set_mac_address, | ||
326 | .ndo_set_multicast_list = lbs_set_multicast_list, | ||
327 | }; | ||
328 | |||
329 | /** | ||
330 | * @brief This function adds mshX interface | ||
331 | * | ||
332 | * @param priv A pointer to the struct lbs_private structure | ||
333 | * @return 0 if successful, -X otherwise | ||
334 | */ | ||
335 | int lbs_add_mesh(struct lbs_private *priv) | ||
336 | { | ||
337 | struct net_device *mesh_dev = NULL; | ||
338 | int ret = 0; | ||
339 | |||
340 | lbs_deb_enter(LBS_DEB_MESH); | ||
341 | |||
342 | /* Allocate a virtual mesh device */ | ||
343 | mesh_dev = alloc_netdev(0, "msh%d", ether_setup); | ||
344 | if (!mesh_dev) { | ||
345 | lbs_deb_mesh("init mshX device failed\n"); | ||
346 | ret = -ENOMEM; | ||
347 | goto done; | ||
348 | } | ||
349 | mesh_dev->ml_priv = priv; | ||
350 | priv->mesh_dev = mesh_dev; | ||
351 | |||
352 | mesh_dev->netdev_ops = &mesh_netdev_ops; | ||
353 | mesh_dev->ethtool_ops = &lbs_ethtool_ops; | ||
354 | memcpy(mesh_dev->dev_addr, priv->dev->dev_addr, | ||
355 | sizeof(priv->dev->dev_addr)); | ||
356 | |||
357 | SET_NETDEV_DEV(priv->mesh_dev, priv->dev->dev.parent); | ||
358 | |||
359 | #ifdef WIRELESS_EXT | ||
360 | mesh_dev->wireless_handlers = &mesh_handler_def; | ||
361 | #endif | ||
362 | mesh_dev->flags |= IFF_BROADCAST | IFF_MULTICAST; | ||
363 | /* Register virtual mesh interface */ | ||
364 | ret = register_netdev(mesh_dev); | ||
365 | if (ret) { | ||
366 | lbs_pr_err("cannot register mshX virtual interface\n"); | ||
367 | goto err_free; | ||
368 | } | ||
369 | |||
370 | ret = sysfs_create_group(&(mesh_dev->dev.kobj), &lbs_mesh_attr_group); | ||
371 | if (ret) | ||
372 | goto err_unregister; | ||
373 | |||
374 | lbs_persist_config_init(mesh_dev); | ||
375 | |||
376 | /* Everything successful */ | ||
377 | ret = 0; | ||
378 | goto done; | ||
379 | |||
380 | err_unregister: | ||
381 | unregister_netdev(mesh_dev); | ||
382 | |||
383 | err_free: | ||
384 | free_netdev(mesh_dev); | ||
385 | |||
386 | done: | ||
387 | lbs_deb_leave_args(LBS_DEB_MESH, "ret %d", ret); | ||
388 | return ret; | ||
389 | } | ||
390 | |||
391 | void lbs_remove_mesh(struct lbs_private *priv) | ||
392 | { | ||
393 | struct net_device *mesh_dev; | ||
394 | |||
395 | mesh_dev = priv->mesh_dev; | ||
396 | if (!mesh_dev) | ||
397 | return; | ||
398 | |||
399 | lbs_deb_enter(LBS_DEB_MESH); | ||
400 | netif_stop_queue(mesh_dev); | ||
401 | netif_carrier_off(mesh_dev); | ||
402 | sysfs_remove_group(&(mesh_dev->dev.kobj), &lbs_mesh_attr_group); | ||
403 | lbs_persist_config_remove(mesh_dev); | ||
404 | unregister_netdev(mesh_dev); | ||
405 | priv->mesh_dev = NULL; | ||
406 | free_netdev(mesh_dev); | ||
407 | lbs_deb_leave(LBS_DEB_MESH); | ||
408 | } | ||
409 | |||
410 | |||
411 | |||
412 | /*************************************************************************** | ||
413 | * Sending and receiving | ||
414 | */ | ||
415 | struct net_device *lbs_mesh_set_dev(struct lbs_private *priv, | ||
416 | struct net_device *dev, struct rxpd *rxpd) | ||
417 | { | ||
418 | if (priv->mesh_dev) { | ||
419 | if (priv->mesh_fw_ver == MESH_FW_OLD) { | ||
420 | if (rxpd->rx_control & RxPD_MESH_FRAME) | ||
421 | dev = priv->mesh_dev; | ||
422 | } else if (priv->mesh_fw_ver == MESH_FW_NEW) { | ||
423 | if (rxpd->u.bss.bss_num == MESH_IFACE_ID) | ||
424 | dev = priv->mesh_dev; | ||
425 | } | ||
426 | } | ||
427 | return dev; | ||
428 | } | ||
429 | |||
430 | |||
431 | void lbs_mesh_set_txpd(struct lbs_private *priv, | ||
432 | struct net_device *dev, struct txpd *txpd) | ||
433 | { | ||
434 | if (dev == priv->mesh_dev) { | ||
435 | if (priv->mesh_fw_ver == MESH_FW_OLD) | ||
436 | txpd->tx_control |= cpu_to_le32(TxPD_MESH_FRAME); | ||
437 | else if (priv->mesh_fw_ver == MESH_FW_NEW) | ||
438 | txpd->u.bss.bss_num = MESH_IFACE_ID; | ||
439 | } | ||
440 | } | ||
441 | |||
442 | |||
443 | /*************************************************************************** | ||
444 | * Persistent configuration support | ||
445 | */ | ||
446 | |||
18 | static int mesh_get_default_parameters(struct device *dev, | 447 | static int mesh_get_default_parameters(struct device *dev, |
19 | struct mrvl_mesh_defaults *defs) | 448 | struct mrvl_mesh_defaults *defs) |
20 | { | 449 | { |