blob: d62d1fb4177f677c318d8040e7ba3542ee1e29f4 [file] [log] [blame]
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001/*
2 * This file contains the major functions in WLAN
3 * driver. It includes init, exit, open, close and main
4 * thread etc..
5 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02006
Joe Perches0e4e06a2011-05-02 16:49:14 -07007#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
Holger Schuriga46c6412007-05-25 11:32:07 -04009#include <linux/moduleparam.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020010#include <linux/delay.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020011#include <linux/etherdevice.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000012#include <linux/hardirq.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020013#include <linux/netdevice.h>
14#include <linux/if_arp.h>
Dan Williamsfe336152007-08-02 11:32:25 -040015#include <linux/kthread.h>
Holger Schurig7919b892008-04-01 14:50:43 +020016#include <linux/kfifo.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Holger Schurigff9fc792009-10-06 16:31:54 +020018#include <net/cfg80211.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020019
20#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020021#include "decl.h"
22#include "dev.h"
Holger Schurigff9fc792009-10-06 16:31:54 +020023#include "cfg.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020024#include "debugfs.h"
Dan Williams6e66f032007-12-11 12:42:16 -050025#include "cmd.h"
Daniel Drake49fee692011-07-21 20:43:17 +010026#include "mesh.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020027
Dan Williams7856a542007-08-03 09:43:03 -040028#define DRIVER_RELEASE_VERSION "323.p0"
Holger Schurig10078322007-11-15 18:05:47 -050029const char lbs_driver_version[] = "COMM-USB8388-" DRIVER_RELEASE_VERSION
Dan Williams3ce40232007-05-10 23:03:07 -040030#ifdef DEBUG
31 "-dbg"
32#endif
33 "";
34
Holger Schuriga46c6412007-05-25 11:32:07 -040035
36/* Module parameters */
Holger Schurig10078322007-11-15 18:05:47 -050037unsigned int lbs_debug;
38EXPORT_SYMBOL_GPL(lbs_debug);
39module_param_named(libertas_debug, lbs_debug, int, 0644);
Holger Schuriga46c6412007-05-25 11:32:07 -040040
Sascha Silbe6bdbdbf2011-05-11 14:52:34 +020041unsigned int lbs_disablemesh;
42EXPORT_SYMBOL_GPL(lbs_disablemesh);
43module_param_named(libertas_disablemesh, lbs_disablemesh, int, 0644);
44
Holger Schuriga46c6412007-05-25 11:32:07 -040045
Randy Dunlap8973a6e2011-04-26 15:25:29 -070046/*
47 * This global structure is used to send the confirm_sleep command as
48 * fast as possible down to the firmware.
49 */
Holger Schurigf539f2e2008-03-26 13:22:11 +010050struct cmd_confirm_sleep confirm_sleep;
51
52
Randy Dunlap8973a6e2011-04-26 15:25:29 -070053/*
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020054 * the table to keep region code
55 */
Holger Schurig10078322007-11-15 18:05:47 -050056u16 lbs_region_code_to_index[MRVDRV_MAX_REGION_CODE] =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020057 { 0x10, 0x20, 0x30, 0x31, 0x32, 0x40 };
58
Randy Dunlap8973a6e2011-04-26 15:25:29 -070059/*
Dan Williams8c512762007-08-02 11:40:45 -040060 * FW rate table. FW refers to rates by their index in this table, not by the
61 * rate value itself. Values of 0x00 are
62 * reserved positions.
63 */
64static u8 fw_data_rates[MAX_RATES] =
65 { 0x02, 0x04, 0x0B, 0x16, 0x00, 0x0C, 0x12,
66 0x18, 0x24, 0x30, 0x48, 0x60, 0x6C, 0x00
67};
68
69/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070070 * lbs_fw_index_to_data_rate - use index to get the data rate
Dan Williams8c512762007-08-02 11:40:45 -040071 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070072 * @idx: The index of data rate
73 * returns: data rate or 0
Dan Williams8c512762007-08-02 11:40:45 -040074 */
Holger Schurig10078322007-11-15 18:05:47 -050075u32 lbs_fw_index_to_data_rate(u8 idx)
Dan Williams8c512762007-08-02 11:40:45 -040076{
77 if (idx >= sizeof(fw_data_rates))
78 idx = 0;
79 return fw_data_rates[idx];
80}
81
82/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070083 * lbs_data_rate_to_fw_index - use rate to get the index
Dan Williams8c512762007-08-02 11:40:45 -040084 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070085 * @rate: data rate
86 * returns: index or 0
Dan Williams8c512762007-08-02 11:40:45 -040087 */
Holger Schurig10078322007-11-15 18:05:47 -050088u8 lbs_data_rate_to_fw_index(u32 rate)
Dan Williams8c512762007-08-02 11:40:45 -040089{
90 u8 i;
91
92 if (!rate)
93 return 0;
94
95 for (i = 0; i < sizeof(fw_data_rates); i++) {
96 if (rate == fw_data_rates[i])
97 return i;
98 }
99 return 0;
100}
101
Daniel Draked2e7b342011-08-01 16:43:13 +0100102int lbs_start_iface(struct lbs_private *priv)
103{
104 struct cmd_ds_802_11_mac_address cmd;
105 int ret;
106
107 if (priv->power_restore) {
108 ret = priv->power_restore(priv);
109 if (ret)
110 return ret;
111 }
112
113 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
114 cmd.action = cpu_to_le16(CMD_ACT_SET);
115 memcpy(cmd.macadd, priv->current_addr, ETH_ALEN);
116
117 ret = lbs_cmd_with_response(priv, CMD_802_11_MAC_ADDRESS, &cmd);
118 if (ret) {
119 lbs_deb_net("set MAC address failed\n");
120 goto err;
121 }
122
123 lbs_update_channel(priv);
124
125 priv->iface_running = true;
126 return 0;
127
128err:
129 if (priv->power_save)
130 priv->power_save(priv);
131 return ret;
132}
Anna Neal6fb53252008-12-09 13:23:45 -0800133
David Woodhouse23a397a2007-12-11 18:56:42 -0500134/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700135 * lbs_dev_open - open the ethX interface
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200136 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700137 * @dev: A pointer to &net_device structure
138 * returns: 0 or -EBUSY if monitor mode active
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200139 */
Holger Schurig10078322007-11-15 18:05:47 -0500140static int lbs_dev_open(struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200141{
Kiran Divekarab65f642009-02-19 19:32:39 -0500142 struct lbs_private *priv = dev->ml_priv;
David Woodhouse8552855f2007-12-10 16:38:18 -0500143 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200144
Holger Schurig61d30022008-01-16 15:59:52 +0100145 lbs_deb_enter(LBS_DEB_NET);
Daniel Draked2e7b342011-08-01 16:43:13 +0100146 if (!priv->iface_running) {
147 ret = lbs_start_iface(priv);
148 if (ret)
149 goto out;
150 }
Holger Schurig61d30022008-01-16 15:59:52 +0100151
David Woodhouse8552855f2007-12-10 16:38:18 -0500152 spin_lock_irq(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200153
Daniel Draked2e7b342011-08-01 16:43:13 +0100154 netif_carrier_off(dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200155
David Woodhouse8552855f2007-12-10 16:38:18 -0500156 if (!priv->tx_pending_len)
157 netif_wake_queue(dev);
Brajesh Dave01d77d82007-11-20 17:44:14 -0500158
David Woodhouse8552855f2007-12-10 16:38:18 -0500159 spin_unlock_irq(&priv->driver_lock);
Daniel Draked2e7b342011-08-01 16:43:13 +0100160
161out:
Holger Schurig61d30022008-01-16 15:59:52 +0100162 lbs_deb_leave_args(LBS_DEB_NET, "ret %d", ret);
David Woodhouse8552855f2007-12-10 16:38:18 -0500163 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200164}
165
Daniel Draked2e7b342011-08-01 16:43:13 +0100166static bool lbs_command_queue_empty(struct lbs_private *priv)
167{
168 unsigned long flags;
169 bool ret;
170 spin_lock_irqsave(&priv->driver_lock, flags);
171 ret = priv->cur_cmd == NULL && list_empty(&priv->cmdpendingq);
172 spin_unlock_irqrestore(&priv->driver_lock, flags);
173 return ret;
174}
175
176int lbs_stop_iface(struct lbs_private *priv)
177{
178 unsigned long flags;
179 int ret = 0;
180
181 lbs_deb_enter(LBS_DEB_MAIN);
182
183 spin_lock_irqsave(&priv->driver_lock, flags);
184 priv->iface_running = false;
185 kfree_skb(priv->currenttxskb);
186 priv->currenttxskb = NULL;
187 priv->tx_pending_len = 0;
188 spin_unlock_irqrestore(&priv->driver_lock, flags);
189
190 cancel_work_sync(&priv->mcast_work);
191
192 /* Disable command processing, and wait for all commands to complete */
193 lbs_deb_main("waiting for commands to complete\n");
194 wait_event(priv->waitq, lbs_command_queue_empty(priv));
195 lbs_deb_main("all commands completed\n");
196
197 if (priv->power_save)
198 ret = priv->power_save(priv);
199
200 lbs_deb_leave(LBS_DEB_MAIN);
201 return ret;
202}
203
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200204/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700205 * lbs_eth_stop - close the ethX interface
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200206 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700207 * @dev: A pointer to &net_device structure
208 * returns: 0
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200209 */
David Woodhouse8552855f2007-12-10 16:38:18 -0500210static int lbs_eth_stop(struct net_device *dev)
Holger Schurig78523da2007-05-25 11:49:19 -0400211{
Kiran Divekarab65f642009-02-19 19:32:39 -0500212 struct lbs_private *priv = dev->ml_priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200213
Holger Schurig61d30022008-01-16 15:59:52 +0100214 lbs_deb_enter(LBS_DEB_NET);
215
Daniel Draked2e7b342011-08-01 16:43:13 +0100216 if (priv->connect_status == LBS_CONNECTED)
217 lbs_disconnect(priv, WLAN_REASON_DEAUTH_LEAVING);
218
David Woodhouse8552855f2007-12-10 16:38:18 -0500219 spin_lock_irq(&priv->driver_lock);
David Woodhouse8552855f2007-12-10 16:38:18 -0500220 netif_stop_queue(dev);
David Woodhouse8552855f2007-12-10 16:38:18 -0500221 spin_unlock_irq(&priv->driver_lock);
Holger Schurig61d30022008-01-16 15:59:52 +0100222
Daniel Draked2e7b342011-08-01 16:43:13 +0100223 lbs_update_mcast(priv);
Daniel Drake2e301682010-11-04 21:21:52 +0000224 cancel_delayed_work_sync(&priv->scan_work);
225 if (priv->scan_req) {
226 cfg80211_scan_done(priv->scan_req, false);
227 priv->scan_req = NULL;
228 }
David Woodhouse75bf45a2008-05-20 13:32:45 +0100229
Daniel Draked2e7b342011-08-01 16:43:13 +0100230 netif_carrier_off(priv->dev);
231
232 if (!lbs_iface_active(priv))
233 lbs_stop_iface(priv);
234
Holger Schurig61d30022008-01-16 15:59:52 +0100235 lbs_deb_leave(LBS_DEB_NET);
David Woodhouse8552855f2007-12-10 16:38:18 -0500236 return 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200237}
238
David Woodhousee775ed72007-12-06 14:36:11 +0000239void lbs_host_to_card_done(struct lbs_private *priv)
240{
David Woodhousea63b22b2007-12-08 20:56:44 +0000241 unsigned long flags;
242
Holger Schurig61d30022008-01-16 15:59:52 +0100243 lbs_deb_enter(LBS_DEB_THREAD);
244
David Woodhousea63b22b2007-12-08 20:56:44 +0000245 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhousee775ed72007-12-06 14:36:11 +0000246
247 priv->dnld_sent = DNLD_RES_RECEIVED;
248
249 /* Wake main thread if commands are pending */
Amitkumar Karwar49125452009-09-30 20:04:38 -0700250 if (!priv->cur_cmd || priv->tx_pending_len > 0) {
251 if (!priv->wakeup_dev_required)
Daniel Draked2e7b342011-08-01 16:43:13 +0100252 wake_up(&priv->waitq);
Amitkumar Karwar49125452009-09-30 20:04:38 -0700253 }
David Woodhousee775ed72007-12-06 14:36:11 +0000254
David Woodhousea63b22b2007-12-08 20:56:44 +0000255 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig61d30022008-01-16 15:59:52 +0100256 lbs_deb_leave(LBS_DEB_THREAD);
David Woodhousee775ed72007-12-06 14:36:11 +0000257}
258EXPORT_SYMBOL_GPL(lbs_host_to_card_done);
259
Holger Schurige0e42da2009-11-25 13:10:15 +0100260int lbs_set_mac_address(struct net_device *dev, void *addr)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200261{
262 int ret = 0;
Kiran Divekarab65f642009-02-19 19:32:39 -0500263 struct lbs_private *priv = dev->ml_priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200264 struct sockaddr *phwaddr = addr;
265
Holger Schurig9012b282007-05-25 11:27:16 -0400266 lbs_deb_enter(LBS_DEB_NET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200267
Daniel Draked2e7b342011-08-01 16:43:13 +0100268 /*
269 * Can only set MAC address when all interfaces are down, to be written
270 * to the hardware when one of them is brought up.
271 */
272 if (lbs_iface_active(priv))
273 return -EBUSY;
274
Luis Carlos Cobo Rus0a0d08a2007-05-25 23:05:27 -0400275 /* In case it was called from the mesh device */
Holger Schurig2af9f032008-03-26 09:58:32 +0100276 dev = priv->dev;
Luis Carlos Cobo Rus0a0d08a2007-05-25 23:05:27 -0400277
Holger Schurig2af9f032008-03-26 09:58:32 +0100278 memcpy(priv->current_addr, phwaddr->sa_data, ETH_ALEN);
279 memcpy(dev->dev_addr, phwaddr->sa_data, ETH_ALEN);
Holger Schurig78523da2007-05-25 11:49:19 -0400280 if (priv->mesh_dev)
Holger Schurig2af9f032008-03-26 09:58:32 +0100281 memcpy(priv->mesh_dev->dev_addr, phwaddr->sa_data, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200282
Holger Schurig9012b282007-05-25 11:27:16 -0400283 lbs_deb_leave_args(LBS_DEB_NET, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200284 return ret;
285}
286
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200287
David Woodhouse75bf45a2008-05-20 13:32:45 +0100288static inline int mac_in_list(unsigned char *list, int list_len,
289 unsigned char *mac)
290{
291 while (list_len) {
292 if (!memcmp(list, mac, ETH_ALEN))
293 return 1;
294 list += ETH_ALEN;
295 list_len--;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200296 }
David Woodhouse75bf45a2008-05-20 13:32:45 +0100297 return 0;
298}
299
300
301static int lbs_add_mcast_addrs(struct cmd_ds_mac_multicast_adr *cmd,
302 struct net_device *dev, int nr_addrs)
303{
304 int i = nr_addrs;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000305 struct netdev_hw_addr *ha;
Jiri Pirko655ffee2010-02-27 07:35:45 +0000306 int cnt;
David Woodhouse75bf45a2008-05-20 13:32:45 +0100307
308 if ((dev->flags & (IFF_UP|IFF_MULTICAST)) != (IFF_UP|IFF_MULTICAST))
309 return nr_addrs;
310
David S. Millerb9e40852008-07-15 00:15:08 -0700311 netif_addr_lock_bh(dev);
Jiri Pirko655ffee2010-02-27 07:35:45 +0000312 cnt = netdev_mc_count(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000313 netdev_for_each_mc_addr(ha, dev) {
314 if (mac_in_list(cmd->maclist, nr_addrs, ha->addr)) {
Johannes Berge1749612008-10-27 15:59:26 -0700315 lbs_deb_net("mcast address %s:%pM skipped\n", dev->name,
Jiri Pirko22bedad32010-04-01 21:22:57 +0000316 ha->addr);
Jiri Pirko655ffee2010-02-27 07:35:45 +0000317 cnt--;
David Woodhouse75bf45a2008-05-20 13:32:45 +0100318 continue;
319 }
320
321 if (i == MRVDRV_MAX_MULTICAST_LIST_SIZE)
322 break;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000323 memcpy(&cmd->maclist[6*i], ha->addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -0700324 lbs_deb_net("mcast address %s:%pM added to filter\n", dev->name,
Jiri Pirko22bedad32010-04-01 21:22:57 +0000325 ha->addr);
David Woodhouse75bf45a2008-05-20 13:32:45 +0100326 i++;
Jiri Pirko655ffee2010-02-27 07:35:45 +0000327 cnt--;
David Woodhouse75bf45a2008-05-20 13:32:45 +0100328 }
David S. Millerb9e40852008-07-15 00:15:08 -0700329 netif_addr_unlock_bh(dev);
Jiri Pirko655ffee2010-02-27 07:35:45 +0000330 if (cnt)
David Woodhouse75bf45a2008-05-20 13:32:45 +0100331 return -EOVERFLOW;
332
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200333 return i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200334}
335
Daniel Draked2e7b342011-08-01 16:43:13 +0100336void lbs_update_mcast(struct lbs_private *priv)
David Woodhouse75bf45a2008-05-20 13:32:45 +0100337{
David Woodhouse75bf45a2008-05-20 13:32:45 +0100338 struct cmd_ds_mac_multicast_adr mcast_cmd;
Daniel Draked2e7b342011-08-01 16:43:13 +0100339 int dev_flags = 0;
David Woodhouse75bf45a2008-05-20 13:32:45 +0100340 int nr_addrs;
341 int old_mac_control = priv->mac_control;
342
343 lbs_deb_enter(LBS_DEB_NET);
344
Daniel Draked2e7b342011-08-01 16:43:13 +0100345 if (netif_running(priv->dev))
346 dev_flags |= priv->dev->flags;
347 if (priv->mesh_dev && netif_running(priv->mesh_dev))
David Woodhouse75bf45a2008-05-20 13:32:45 +0100348 dev_flags |= priv->mesh_dev->flags;
349
350 if (dev_flags & IFF_PROMISC) {
351 priv->mac_control |= CMD_ACT_MAC_PROMISCUOUS_ENABLE;
352 priv->mac_control &= ~(CMD_ACT_MAC_ALL_MULTICAST_ENABLE |
353 CMD_ACT_MAC_MULTICAST_ENABLE);
354 goto out_set_mac_control;
355 } else if (dev_flags & IFF_ALLMULTI) {
356 do_allmulti:
357 priv->mac_control |= CMD_ACT_MAC_ALL_MULTICAST_ENABLE;
358 priv->mac_control &= ~(CMD_ACT_MAC_PROMISCUOUS_ENABLE |
359 CMD_ACT_MAC_MULTICAST_ENABLE);
360 goto out_set_mac_control;
361 }
362
363 /* Once for priv->dev, again for priv->mesh_dev if it exists */
364 nr_addrs = lbs_add_mcast_addrs(&mcast_cmd, priv->dev, 0);
365 if (nr_addrs >= 0 && priv->mesh_dev)
366 nr_addrs = lbs_add_mcast_addrs(&mcast_cmd, priv->mesh_dev, nr_addrs);
367 if (nr_addrs < 0)
368 goto do_allmulti;
369
370 if (nr_addrs) {
371 int size = offsetof(struct cmd_ds_mac_multicast_adr,
372 maclist[6*nr_addrs]);
373
374 mcast_cmd.action = cpu_to_le16(CMD_ACT_SET);
375 mcast_cmd.hdr.size = cpu_to_le16(size);
376 mcast_cmd.nr_of_adrs = cpu_to_le16(nr_addrs);
377
378 lbs_cmd_async(priv, CMD_MAC_MULTICAST_ADR, &mcast_cmd.hdr, size);
379
380 priv->mac_control |= CMD_ACT_MAC_MULTICAST_ENABLE;
381 } else
382 priv->mac_control &= ~CMD_ACT_MAC_MULTICAST_ENABLE;
383
384 priv->mac_control &= ~(CMD_ACT_MAC_PROMISCUOUS_ENABLE |
385 CMD_ACT_MAC_ALL_MULTICAST_ENABLE);
386 out_set_mac_control:
387 if (priv->mac_control != old_mac_control)
388 lbs_set_mac_control(priv);
389
390 lbs_deb_leave(LBS_DEB_NET);
391}
392
Daniel Draked2e7b342011-08-01 16:43:13 +0100393static void lbs_set_mcast_worker(struct work_struct *work)
394{
395 struct lbs_private *priv = container_of(work, struct lbs_private, mcast_work);
396 lbs_update_mcast(priv);
397}
398
Holger Schurige0e42da2009-11-25 13:10:15 +0100399void lbs_set_multicast_list(struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200400{
Kiran Divekarab65f642009-02-19 19:32:39 -0500401 struct lbs_private *priv = dev->ml_priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200402
David Woodhouse75bf45a2008-05-20 13:32:45 +0100403 schedule_work(&priv->mcast_work);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200404}
405
406/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700407 * lbs_thread - handles the major jobs in the LBS driver.
Holger Schurig9012b282007-05-25 11:27:16 -0400408 * It handles all events generated by firmware, RX data received
409 * from firmware and TX data sent from kernel.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200410 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700411 * @data: A pointer to &lbs_thread structure
412 * returns: 0
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200413 */
Holger Schurig10078322007-11-15 18:05:47 -0500414static int lbs_thread(void *data)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200415{
Dan Williamsfe336152007-08-02 11:32:25 -0400416 struct net_device *dev = data;
Kiran Divekarab65f642009-02-19 19:32:39 -0500417 struct lbs_private *priv = dev->ml_priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200418 wait_queue_t wait;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200419
Holger Schurig9012b282007-05-25 11:27:16 -0400420 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200421
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200422 init_waitqueue_entry(&wait, current);
423
424 for (;;) {
David Woodhouseb8d40bc2007-12-09 23:44:43 -0500425 int shouldsleep;
Holger Schurig7919b892008-04-01 14:50:43 +0200426 u8 resp_idx;
David Woodhouseb8d40bc2007-12-09 23:44:43 -0500427
Holger Schurig7919b892008-04-01 14:50:43 +0200428 lbs_deb_thread("1: currenttxskb %p, dnld_sent %d\n",
429 priv->currenttxskb, priv->dnld_sent);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200430
Dan Williamsfe336152007-08-02 11:32:25 -0400431 add_wait_queue(&priv->waitq, &wait);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200432 set_current_state(TASK_INTERRUPTIBLE);
David Woodhouseaa21c002007-12-08 20:04:36 +0000433 spin_lock_irq(&priv->driver_lock);
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000434
David Woodhoused9f88702007-12-13 21:48:00 -0500435 if (kthread_should_stop())
David Woodhouseb8d40bc2007-12-09 23:44:43 -0500436 shouldsleep = 0; /* Bye */
David Woodhoused9f88702007-12-13 21:48:00 -0500437 else if (priv->surpriseremoved)
438 shouldsleep = 1; /* We need to wait until we're _told_ to die */
David Woodhouseb8d40bc2007-12-09 23:44:43 -0500439 else if (priv->psstate == PS_STATE_SLEEP)
440 shouldsleep = 1; /* Sleep mode. Nothing we can do till it wakes */
David Woodhouse2a345092007-12-15 19:33:43 -0500441 else if (priv->cmd_timed_out)
442 shouldsleep = 0; /* Command timed out. Recover */
David Woodhouseb15152a2007-12-11 11:55:37 -0500443 else if (!priv->fw_ready)
444 shouldsleep = 1; /* Firmware not ready. We're waiting for it */
David Woodhouseb8d40bc2007-12-09 23:44:43 -0500445 else if (priv->dnld_sent)
446 shouldsleep = 1; /* Something is en route to the device already */
David Woodhouse2eb188a2007-12-09 23:54:27 -0500447 else if (priv->tx_pending_len > 0)
448 shouldsleep = 0; /* We've a packet to send */
Holger Schurigef707b82008-05-23 16:04:13 +0200449 else if (priv->resp_len[priv->resp_idx])
450 shouldsleep = 0; /* We have a command response */
David Woodhouseb8d40bc2007-12-09 23:44:43 -0500451 else if (priv->cur_cmd)
452 shouldsleep = 1; /* Can't send a command; one already running */
Amitkumar Karwar49125452009-09-30 20:04:38 -0700453 else if (!list_empty(&priv->cmdpendingq) &&
454 !(priv->wakeup_dev_required))
David Woodhouseb8d40bc2007-12-09 23:44:43 -0500455 shouldsleep = 0; /* We have a command to send */
Stefani Seibolde64c0262009-12-21 14:37:28 -0800456 else if (kfifo_len(&priv->event_fifo))
Holger Schurig7919b892008-04-01 14:50:43 +0200457 shouldsleep = 0; /* We have an event to process */
David Woodhouseb8d40bc2007-12-09 23:44:43 -0500458 else
459 shouldsleep = 1; /* No command */
460
461 if (shouldsleep) {
Holger Schurig7919b892008-04-01 14:50:43 +0200462 lbs_deb_thread("sleeping, connect_status %d, "
Holger Schurig5f505d92008-04-30 10:50:07 +0200463 "psmode %d, psstate %d\n",
Holger Schurig7919b892008-04-01 14:50:43 +0200464 priv->connect_status,
465 priv->psmode, priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +0000466 spin_unlock_irq(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200467 schedule();
468 } else
David Woodhouseaa21c002007-12-08 20:04:36 +0000469 spin_unlock_irq(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200470
Holger Schurig7919b892008-04-01 14:50:43 +0200471 lbs_deb_thread("2: currenttxskb %p, dnld_send %d\n",
472 priv->currenttxskb, priv->dnld_sent);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200473
474 set_current_state(TASK_RUNNING);
Dan Williamsfe336152007-08-02 11:32:25 -0400475 remove_wait_queue(&priv->waitq, &wait);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200476
Holger Schurig7919b892008-04-01 14:50:43 +0200477 lbs_deb_thread("3: currenttxskb %p, dnld_sent %d\n",
478 priv->currenttxskb, priv->dnld_sent);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200479
David Woodhoused9f88702007-12-13 21:48:00 -0500480 if (kthread_should_stop()) {
Holger Schurig7919b892008-04-01 14:50:43 +0200481 lbs_deb_thread("break from main thread\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200482 break;
483 }
484
David Woodhoused9f88702007-12-13 21:48:00 -0500485 if (priv->surpriseremoved) {
486 lbs_deb_thread("adapter removed; waiting to die...\n");
487 continue;
488 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200489
Holger Schurig7919b892008-04-01 14:50:43 +0200490 lbs_deb_thread("4: currenttxskb %p, dnld_sent %d\n",
491 priv->currenttxskb, priv->dnld_sent);
492
Holger Schurig7919b892008-04-01 14:50:43 +0200493 /* Process any pending command response */
Holger Schuriga01f5452008-06-04 11:10:40 +0200494 spin_lock_irq(&priv->driver_lock);
Holger Schurig7919b892008-04-01 14:50:43 +0200495 resp_idx = priv->resp_idx;
496 if (priv->resp_len[resp_idx]) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000497 spin_unlock_irq(&priv->driver_lock);
Holger Schurig7919b892008-04-01 14:50:43 +0200498 lbs_process_command_response(priv,
499 priv->resp_buf[resp_idx],
500 priv->resp_len[resp_idx]);
David Woodhouseaa21c002007-12-08 20:04:36 +0000501 spin_lock_irq(&priv->driver_lock);
Holger Schurig7919b892008-04-01 14:50:43 +0200502 priv->resp_len[resp_idx] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200503 }
Holger Schurig7919b892008-04-01 14:50:43 +0200504 spin_unlock_irq(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200505
Amitkumar Karwar49125452009-09-30 20:04:38 -0700506 /* Process hardware events, e.g. card removed, link lost */
507 spin_lock_irq(&priv->driver_lock);
Stefani Seibolde64c0262009-12-21 14:37:28 -0800508 while (kfifo_len(&priv->event_fifo)) {
Amitkumar Karwar49125452009-09-30 20:04:38 -0700509 u32 event;
Stefani Seibold7acd72e2009-12-21 14:37:28 -0800510
Stefani Seibold9842c382009-12-21 14:37:29 -0800511 if (kfifo_out(&priv->event_fifo,
512 (unsigned char *) &event, sizeof(event)) !=
513 sizeof(event))
514 break;
Amitkumar Karwar49125452009-09-30 20:04:38 -0700515 spin_unlock_irq(&priv->driver_lock);
516 lbs_process_event(priv, event);
517 spin_lock_irq(&priv->driver_lock);
518 }
519 spin_unlock_irq(&priv->driver_lock);
520
521 if (priv->wakeup_dev_required) {
522 lbs_deb_thread("Waking up device...\n");
523 /* Wake up device */
524 if (priv->exit_deep_sleep(priv))
525 lbs_deb_thread("Wakeup device failed\n");
526 continue;
527 }
528
Holger Schurig7919b892008-04-01 14:50:43 +0200529 /* command timeout stuff */
David Woodhouse2a345092007-12-15 19:33:43 -0500530 if (priv->cmd_timed_out && priv->cur_cmd) {
531 struct cmd_ctrl_node *cmdnode = priv->cur_cmd;
532
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700533 netdev_info(dev, "Timeout submitting command 0x%04x\n",
534 le16_to_cpu(cmdnode->cmdbuf->command));
Holger Schurig40e6fa82010-02-04 14:37:45 +0100535 lbs_complete_command(priv, cmdnode, -ETIMEDOUT);
536 if (priv->reset_card)
537 priv->reset_card(priv);
David Woodhouse2a345092007-12-15 19:33:43 -0500538 }
539 priv->cmd_timed_out = 0;
540
David Woodhouseb15152a2007-12-11 11:55:37 -0500541 if (!priv->fw_ready)
542 continue;
543
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200544 /* Check if we need to confirm Sleep Request received previously */
David Woodhouseaa21c002007-12-08 20:04:36 +0000545 if (priv->psstate == PS_STATE_PRE_SLEEP &&
546 !priv->dnld_sent && !priv->cur_cmd) {
547 if (priv->connect_status == LBS_CONNECTED) {
Holger Schurig7919b892008-04-01 14:50:43 +0200548 lbs_deb_thread("pre-sleep, currenttxskb %p, "
549 "dnld_sent %d, cur_cmd %p\n",
550 priv->currenttxskb, priv->dnld_sent,
551 priv->cur_cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200552
Holger Schurigd4ff0ef2008-03-19 14:25:18 +0100553 lbs_ps_confirm_sleep(priv);
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000554 } else {
555 /* workaround for firmware sending
556 * deauth/linkloss event immediately
557 * after sleep request; remove this
558 * after firmware fixes it
559 */
David Woodhouseaa21c002007-12-08 20:04:36 +0000560 priv->psstate = PS_STATE_AWAKE;
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700561 netdev_alert(dev,
562 "ignore PS_SleepConfirm in non-connected state\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200563 }
564 }
565
566 /* The PS state is changed during processing of Sleep Request
567 * event above
568 */
David Woodhouseaa21c002007-12-08 20:04:36 +0000569 if ((priv->psstate == PS_STATE_SLEEP) ||
570 (priv->psstate == PS_STATE_PRE_SLEEP))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200571 continue;
572
Amitkumar Karwar49125452009-09-30 20:04:38 -0700573 if (priv->is_deep_sleep)
574 continue;
575
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200576 /* Execute the next command */
David Woodhouseaa21c002007-12-08 20:04:36 +0000577 if (!priv->dnld_sent && !priv->cur_cmd)
Holger Schurig10078322007-11-15 18:05:47 -0500578 lbs_execute_next_command(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200579
David Woodhouse2eb188a2007-12-09 23:54:27 -0500580 spin_lock_irq(&priv->driver_lock);
581 if (!priv->dnld_sent && priv->tx_pending_len > 0) {
582 int ret = priv->hw_host_to_card(priv, MVMS_DAT,
583 priv->tx_pending_buf,
584 priv->tx_pending_len);
585 if (ret) {
586 lbs_deb_tx("host_to_card failed %d\n", ret);
587 priv->dnld_sent = DNLD_RES_RECEIVED;
588 }
589 priv->tx_pending_len = 0;
590 if (!priv->currenttxskb) {
591 /* We can wake the queues immediately if we aren't
592 waiting for TX feedback */
593 if (priv->connect_status == LBS_CONNECTED)
594 netif_wake_queue(priv->dev);
595 if (priv->mesh_dev &&
Daniel Draked9319982011-07-20 17:53:56 +0100596 netif_running(priv->mesh_dev))
David Woodhouse2eb188a2007-12-09 23:54:27 -0500597 netif_wake_queue(priv->mesh_dev);
598 }
599 }
600 spin_unlock_irq(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200601 }
602
David Woodhouseaa21c002007-12-08 20:04:36 +0000603 del_timer(&priv->command_timer);
Amitkumar Karwar49125452009-09-30 20:04:38 -0700604 del_timer(&priv->auto_deepsleep_timer);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200605
Holger Schurig9012b282007-05-25 11:27:16 -0400606 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200607 return 0;
608}
609
Vasily Khoruzhick75abde42011-01-21 22:44:49 +0200610/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700611 * lbs_setup_firmware - gets the HW spec from the firmware and sets
612 * some basic parameters
Vasily Khoruzhick75abde42011-01-21 22:44:49 +0200613 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700614 * @priv: A pointer to &struct lbs_private structure
615 * returns: 0 or -1
Vasily Khoruzhick75abde42011-01-21 22:44:49 +0200616 */
617static int lbs_setup_firmware(struct lbs_private *priv)
618{
619 int ret = -1;
620 s16 curlevel = 0, minlevel = 0, maxlevel = 0;
621
622 lbs_deb_enter(LBS_DEB_FW);
623
624 /* Read MAC address from firmware */
625 memset(priv->current_addr, 0xff, ETH_ALEN);
626 ret = lbs_update_hw_spec(priv);
627 if (ret)
628 goto done;
629
630 /* Read power levels if available */
631 ret = lbs_get_tx_power(priv, &curlevel, &minlevel, &maxlevel);
632 if (ret == 0) {
633 priv->txpower_cur = curlevel;
634 priv->txpower_min = minlevel;
635 priv->txpower_max = maxlevel;
636 }
637
638 /* Send cmd to FW to enable 11D function */
639 ret = lbs_set_snmp_mib(priv, SNMP_MIB_OID_11D_ENABLE, 1);
640
641 lbs_set_mac_control(priv);
642done:
643 lbs_deb_leave_args(LBS_DEB_FW, "ret %d", ret);
644 return ret;
645}
646
David Woodhouseab25eca2007-12-12 17:38:56 -0500647int lbs_suspend(struct lbs_private *priv)
648{
David Woodhouseab25eca2007-12-12 17:38:56 -0500649 int ret;
650
Holger Schurig61d30022008-01-16 15:59:52 +0100651 lbs_deb_enter(LBS_DEB_FW);
652
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700653 if (priv->is_deep_sleep) {
654 ret = lbs_set_deep_sleep(priv, 0);
655 if (ret) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700656 netdev_err(priv->dev,
657 "deep sleep cancellation failed: %d\n", ret);
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700658 return ret;
659 }
660 priv->deep_sleep_required = 1;
David Woodhouse506e9022007-12-12 20:06:06 -0500661 }
662
Amitkumar Karwar13118432010-07-08 06:43:48 +0530663 ret = lbs_set_host_sleep(priv, 1);
David Woodhouse7e226272007-12-14 22:53:41 -0500664
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700665 netif_device_detach(priv->dev);
666 if (priv->mesh_dev)
667 netif_device_detach(priv->mesh_dev);
David Woodhouseab25eca2007-12-12 17:38:56 -0500668
Holger Schurig61d30022008-01-16 15:59:52 +0100669 lbs_deb_leave_args(LBS_DEB_FW, "ret %d", ret);
David Woodhouseab25eca2007-12-12 17:38:56 -0500670 return ret;
671}
672EXPORT_SYMBOL_GPL(lbs_suspend);
673
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700674int lbs_resume(struct lbs_private *priv)
David Woodhouseab25eca2007-12-12 17:38:56 -0500675{
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700676 int ret;
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700677
Holger Schurig61d30022008-01-16 15:59:52 +0100678 lbs_deb_enter(LBS_DEB_FW);
679
Amitkumar Karwar13118432010-07-08 06:43:48 +0530680 ret = lbs_set_host_sleep(priv, 0);
David Woodhouseab25eca2007-12-12 17:38:56 -0500681
682 netif_device_attach(priv->dev);
683 if (priv->mesh_dev)
684 netif_device_attach(priv->mesh_dev);
685
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700686 if (priv->deep_sleep_required) {
687 priv->deep_sleep_required = 0;
688 ret = lbs_set_deep_sleep(priv, 1);
689 if (ret)
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700690 netdev_err(priv->dev,
691 "deep sleep activation failed: %d\n", ret);
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700692 }
693
Vasily Khoruzhick75abde42011-01-21 22:44:49 +0200694 if (priv->setup_fw_on_resume)
695 ret = lbs_setup_firmware(priv);
696
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700697 lbs_deb_leave_args(LBS_DEB_FW, "ret %d", ret);
698 return ret;
David Woodhouseab25eca2007-12-12 17:38:56 -0500699}
700EXPORT_SYMBOL_GPL(lbs_resume);
701
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200702/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700703 * lbs_cmd_timeout_handler - handles the timeout of command sending.
704 * It will re-send the same command again.
705 *
706 * @data: &struct lbs_private pointer
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400707 */
Holger Schurig40e6fa82010-02-04 14:37:45 +0100708static void lbs_cmd_timeout_handler(unsigned long data)
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400709{
Holger Schurig69f90322007-11-23 15:43:44 +0100710 struct lbs_private *priv = (struct lbs_private *)data;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400711 unsigned long flags;
712
Holger Schurig61d30022008-01-16 15:59:52 +0100713 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouseaa21c002007-12-08 20:04:36 +0000714 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400715
Holger Schurig57962f02008-05-14 16:30:28 +0200716 if (!priv->cur_cmd)
David Woodhouse2a345092007-12-15 19:33:43 -0500717 goto out;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400718
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700719 netdev_info(priv->dev, "command 0x%04x timed out\n",
720 le16_to_cpu(priv->cur_cmd->cmdbuf->command));
David Woodhouse2a345092007-12-15 19:33:43 -0500721
722 priv->cmd_timed_out = 1;
Daniel Drakedf90d842011-07-09 15:41:25 +0100723
724 /*
725 * If the device didn't even acknowledge the command, reset the state
726 * so that we don't block all future commands due to this one timeout.
727 */
728 if (priv->dnld_sent == DNLD_CMD_SENT)
729 priv->dnld_sent = DNLD_RES_RECEIVED;
730
Daniel Draked2e7b342011-08-01 16:43:13 +0100731 wake_up(&priv->waitq);
Holger Schurig61d30022008-01-16 15:59:52 +0100732out:
David Woodhouse2a345092007-12-15 19:33:43 -0500733 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig61d30022008-01-16 15:59:52 +0100734 lbs_deb_leave(LBS_DEB_CMD);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400735}
736
Amitkumar Karwar49125452009-09-30 20:04:38 -0700737/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700738 * auto_deepsleep_timer_fn - put the device back to deep sleep mode when
739 * timer expires and no activity (command, event, data etc.) is detected.
740 * @data: &struct lbs_private pointer
741 * returns: N/A
Amitkumar Karwar49125452009-09-30 20:04:38 -0700742 */
743static void auto_deepsleep_timer_fn(unsigned long data)
744{
745 struct lbs_private *priv = (struct lbs_private *)data;
Amitkumar Karwar49125452009-09-30 20:04:38 -0700746
747 lbs_deb_enter(LBS_DEB_CMD);
748
749 if (priv->is_activity_detected) {
750 priv->is_activity_detected = 0;
751 } else {
752 if (priv->is_auto_deep_sleep_enabled &&
Dan Williams53800f52010-07-27 13:15:01 -0700753 (!priv->wakeup_dev_required) &&
754 (priv->connect_status != LBS_CONNECTED)) {
755 struct cmd_header cmd;
756
Amitkumar Karwar49125452009-09-30 20:04:38 -0700757 lbs_deb_main("Entering auto deep sleep mode...\n");
Dan Williams53800f52010-07-27 13:15:01 -0700758 memset(&cmd, 0, sizeof(cmd));
759 cmd.size = cpu_to_le16(sizeof(cmd));
760 lbs_cmd_async(priv, CMD_802_11_DEEP_SLEEP, &cmd,
761 sizeof(cmd));
Amitkumar Karwar49125452009-09-30 20:04:38 -0700762 }
763 }
764 mod_timer(&priv->auto_deepsleep_timer , jiffies +
765 (priv->auto_deep_sleep_timeout * HZ)/1000);
766 lbs_deb_leave(LBS_DEB_CMD);
767}
768
769int lbs_enter_auto_deep_sleep(struct lbs_private *priv)
770{
771 lbs_deb_enter(LBS_DEB_SDIO);
772
773 priv->is_auto_deep_sleep_enabled = 1;
774 if (priv->is_deep_sleep)
775 priv->wakeup_dev_required = 1;
776 mod_timer(&priv->auto_deepsleep_timer ,
777 jiffies + (priv->auto_deep_sleep_timeout * HZ)/1000);
778
779 lbs_deb_leave(LBS_DEB_SDIO);
780 return 0;
781}
782
783int lbs_exit_auto_deep_sleep(struct lbs_private *priv)
784{
785 lbs_deb_enter(LBS_DEB_SDIO);
786
787 priv->is_auto_deep_sleep_enabled = 0;
788 priv->auto_deep_sleep_timeout = 0;
789 del_timer(&priv->auto_deepsleep_timer);
790
791 lbs_deb_leave(LBS_DEB_SDIO);
792 return 0;
793}
794
Holger Schurig69f90322007-11-23 15:43:44 +0100795static int lbs_init_adapter(struct lbs_private *priv)
Dan Williams954ee162007-08-20 11:43:25 -0400796{
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530797 int ret;
Dan Williams954ee162007-08-20 11:43:25 -0400798
Holger Schurig61d30022008-01-16 15:59:52 +0100799 lbs_deb_enter(LBS_DEB_MAIN);
800
David Woodhouseaa21c002007-12-08 20:04:36 +0000801 memset(priv->current_addr, 0xff, ETH_ALEN);
Dan Williams954ee162007-08-20 11:43:25 -0400802
David Woodhouseaa21c002007-12-08 20:04:36 +0000803 priv->connect_status = LBS_DISCONNECTED;
Holger Schurigc14951f2009-10-22 15:30:50 +0200804 priv->channel = DEFAULT_AD_HOC_CHANNEL;
Holger Schurigd9e97782008-03-12 16:06:43 +0100805 priv->mac_control = CMD_ACT_MAC_RX_ON | CMD_ACT_MAC_TX_ON;
Dan Williamsd5db2df2008-08-21 17:51:07 -0400806 priv->radio_on = 1;
David Woodhouseaa21c002007-12-08 20:04:36 +0000807 priv->psmode = LBS802_11POWERMODECAM;
808 priv->psstate = PS_STATE_FULL_POWER;
Amitkumar Karwar49125452009-09-30 20:04:38 -0700809 priv->is_deep_sleep = 0;
810 priv->is_auto_deep_sleep_enabled = 0;
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700811 priv->deep_sleep_required = 0;
Amitkumar Karwar49125452009-09-30 20:04:38 -0700812 priv->wakeup_dev_required = 0;
813 init_waitqueue_head(&priv->ds_awake_q);
Dan Williamscc026812010-08-04 00:43:47 -0500814 init_waitqueue_head(&priv->scan_q);
Amitkumar Karwar921ca032010-02-25 17:16:36 -0800815 priv->authtype_auto = 1;
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700816 priv->is_host_sleep_configured = 0;
817 priv->is_host_sleep_activated = 0;
818 init_waitqueue_head(&priv->host_sleep_q);
David Woodhouseaa21c002007-12-08 20:04:36 +0000819 mutex_init(&priv->lock);
Dan Williams954ee162007-08-20 11:43:25 -0400820
Holger Schurig40e6fa82010-02-04 14:37:45 +0100821 setup_timer(&priv->command_timer, lbs_cmd_timeout_handler,
Holger Schurig61d30022008-01-16 15:59:52 +0100822 (unsigned long)priv);
Amitkumar Karwar49125452009-09-30 20:04:38 -0700823 setup_timer(&priv->auto_deepsleep_timer, auto_deepsleep_timer_fn,
824 (unsigned long)priv);
Dan Williams954ee162007-08-20 11:43:25 -0400825
David Woodhouseaa21c002007-12-08 20:04:36 +0000826 INIT_LIST_HEAD(&priv->cmdfreeq);
827 INIT_LIST_HEAD(&priv->cmdpendingq);
Dan Williams954ee162007-08-20 11:43:25 -0400828
David Woodhouseaa21c002007-12-08 20:04:36 +0000829 spin_lock_init(&priv->driver_lock);
Dan Williams954ee162007-08-20 11:43:25 -0400830
831 /* Allocate the command buffers */
Holger Schurig10078322007-11-15 18:05:47 -0500832 if (lbs_allocate_cmd_buffer(priv)) {
Joe Perches0e4e06a2011-05-02 16:49:14 -0700833 pr_err("Out of memory allocating command buffers\n");
Holger Schurig7919b892008-04-01 14:50:43 +0200834 ret = -ENOMEM;
835 goto out;
836 }
837 priv->resp_idx = 0;
838 priv->resp_len[0] = priv->resp_len[1] = 0;
839
840 /* Create the event FIFO */
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800841 ret = kfifo_alloc(&priv->event_fifo, sizeof(u32) * 16, GFP_KERNEL);
Stefani Seibold45465482009-12-21 14:37:26 -0800842 if (ret) {
Joe Perches0e4e06a2011-05-02 16:49:14 -0700843 pr_err("Out of memory allocating event FIFO buffer\n");
Holger Schurig7919b892008-04-01 14:50:43 +0200844 goto out;
Dan Williams954ee162007-08-20 11:43:25 -0400845 }
846
847out:
Holger Schurig61d30022008-01-16 15:59:52 +0100848 lbs_deb_leave_args(LBS_DEB_MAIN, "ret %d", ret);
849
Dan Williams954ee162007-08-20 11:43:25 -0400850 return ret;
851}
852
Holger Schurig69f90322007-11-23 15:43:44 +0100853static void lbs_free_adapter(struct lbs_private *priv)
Holger Schurigac558ca2007-08-02 11:49:06 -0400854{
Holger Schurig61d30022008-01-16 15:59:52 +0100855 lbs_deb_enter(LBS_DEB_MAIN);
856
Holger Schurig10078322007-11-15 18:05:47 -0500857 lbs_free_cmd_buffer(priv);
Stefani Seibold45465482009-12-21 14:37:26 -0800858 kfifo_free(&priv->event_fifo);
David Woodhouseaa21c002007-12-08 20:04:36 +0000859 del_timer(&priv->command_timer);
Amitkumar Karwar49125452009-09-30 20:04:38 -0700860 del_timer(&priv->auto_deepsleep_timer);
Holger Schurig61d30022008-01-16 15:59:52 +0100861
862 lbs_deb_leave(LBS_DEB_MAIN);
Holger Schurigac558ca2007-08-02 11:49:06 -0400863}
864
Stephen Hemmingerf02abf12009-03-20 19:36:37 +0000865static const struct net_device_ops lbs_netdev_ops = {
866 .ndo_open = lbs_dev_open,
867 .ndo_stop = lbs_eth_stop,
868 .ndo_start_xmit = lbs_hard_start_xmit,
869 .ndo_set_mac_address = lbs_set_mac_address,
Stephen Hemmingerf02abf12009-03-20 19:36:37 +0000870 .ndo_set_multicast_list = lbs_set_multicast_list,
871 .ndo_change_mtu = eth_change_mtu,
872 .ndo_validate_addr = eth_validate_addr,
873};
874
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400875/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700876 * lbs_add_card - adds the card. It will probe the
Holger Schurig10078322007-11-15 18:05:47 -0500877 * card, allocate the lbs_priv and initialize the device.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200878 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700879 * @card: A pointer to card
880 * @dmdev: A pointer to &struct device
881 * returns: A pointer to &struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200882 */
Holger Schurig69f90322007-11-23 15:43:44 +0100883struct lbs_private *lbs_add_card(void *card, struct device *dmdev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200884{
Holger Schurigff9fc792009-10-06 16:31:54 +0200885 struct net_device *dev;
886 struct wireless_dev *wdev;
Holger Schurig69f90322007-11-23 15:43:44 +0100887 struct lbs_private *priv = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200888
Holger Schurig61d30022008-01-16 15:59:52 +0100889 lbs_deb_enter(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200890
891 /* Allocate an Ethernet device and register it */
Holger Schurigff9fc792009-10-06 16:31:54 +0200892 wdev = lbs_cfg_alloc(dmdev);
893 if (IS_ERR(wdev)) {
Joe Perches0e4e06a2011-05-02 16:49:14 -0700894 pr_err("cfg80211 init failed\n");
Dan Williams954ee162007-08-20 11:43:25 -0400895 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200896 }
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530897
Holger Schurigff9fc792009-10-06 16:31:54 +0200898 wdev->iftype = NL80211_IFTYPE_STATION;
899 priv = wdev_priv(wdev);
900 priv->wdev = wdev;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200901
Holger Schurig10078322007-11-15 18:05:47 -0500902 if (lbs_init_adapter(priv)) {
Joe Perches0e4e06a2011-05-02 16:49:14 -0700903 pr_err("failed to initialize adapter structure\n");
Holger Schurigff9fc792009-10-06 16:31:54 +0200904 goto err_wdev;
Dan Williams954ee162007-08-20 11:43:25 -0400905 }
906
Holger Schurigff9fc792009-10-06 16:31:54 +0200907 dev = alloc_netdev(0, "wlan%d", ether_setup);
908 if (!dev) {
909 dev_err(dmdev, "no memory for network device instance\n");
910 goto err_adapter;
911 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200912
Holger Schurigff9fc792009-10-06 16:31:54 +0200913 dev->ieee80211_ptr = wdev;
914 dev->ml_priv = priv;
915 SET_NETDEV_DEV(dev, dmdev);
916 wdev->netdev = dev;
917 priv->dev = dev;
918
Stephen Hemmingerf02abf12009-03-20 19:36:37 +0000919 dev->netdev_ops = &lbs_netdev_ops;
Holger Schurigfb3dddf2007-05-25 11:58:22 -0400920 dev->watchdog_timeo = 5 * HZ;
Holger Schurig10078322007-11-15 18:05:47 -0500921 dev->ethtool_ops = &lbs_ethtool_ops;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200922 dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200923
Holger Schurigff9fc792009-10-06 16:31:54 +0200924 priv->card = card;
Holger Schurigff9fc792009-10-06 16:31:54 +0200925
Daniel Mackc00552c2009-08-11 16:09:34 +0200926 strcpy(dev->name, "wlan%d");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200927
Dan Williamsfe336152007-08-02 11:32:25 -0400928 lbs_deb_thread("Starting main thread...\n");
929 init_waitqueue_head(&priv->waitq);
Holger Schurig10078322007-11-15 18:05:47 -0500930 priv->main_thread = kthread_run(lbs_thread, dev, "lbs_main");
Dan Williamsfe336152007-08-02 11:32:25 -0400931 if (IS_ERR(priv->main_thread)) {
932 lbs_deb_thread("Error creating main thread.\n");
Holger Schurigff9fc792009-10-06 16:31:54 +0200933 goto err_ndev;
Dan Williamsfe336152007-08-02 11:32:25 -0400934 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200935
Holger Schurig10078322007-11-15 18:05:47 -0500936 priv->work_thread = create_singlethread_workqueue("lbs_worker");
David Woodhouse75bf45a2008-05-20 13:32:45 +0100937 INIT_WORK(&priv->mcast_work, lbs_set_mcast_worker);
David Woodhouse23a397a2007-12-11 18:56:42 -0500938
Deepak Saxenaae63a332010-10-31 13:40:33 +0000939 priv->wol_criteria = EHS_REMOVE_WAKEUP;
David Woodhouse506e9022007-12-12 20:06:06 -0500940 priv->wol_gpio = 0xff;
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700941 priv->wol_gap = 20;
Deepak Saxenaae63a332010-10-31 13:40:33 +0000942 priv->ehs_remove_supported = true;
David Woodhouse506e9022007-12-12 20:06:06 -0500943
Dan Williams954ee162007-08-20 11:43:25 -0400944 goto done;
945
Holger Schurigff9fc792009-10-06 16:31:54 +0200946 err_ndev:
Dan Williams954ee162007-08-20 11:43:25 -0400947 free_netdev(dev);
Holger Schurigff9fc792009-10-06 16:31:54 +0200948
949 err_adapter:
950 lbs_free_adapter(priv);
951
952 err_wdev:
953 lbs_cfg_free(priv);
954
Dan Williams954ee162007-08-20 11:43:25 -0400955 priv = NULL;
956
957done:
Holger Schurig61d30022008-01-16 15:59:52 +0100958 lbs_deb_leave_args(LBS_DEB_MAIN, "priv %p", priv);
Dan Williams954ee162007-08-20 11:43:25 -0400959 return priv;
960}
Holger Schurig10078322007-11-15 18:05:47 -0500961EXPORT_SYMBOL_GPL(lbs_add_card);
Dan Williams954ee162007-08-20 11:43:25 -0400962
963
Holger Schuriga63e5cb2008-04-30 10:50:39 +0200964void lbs_remove_card(struct lbs_private *priv)
Dan Williams954ee162007-08-20 11:43:25 -0400965{
Dan Williams954ee162007-08-20 11:43:25 -0400966 struct net_device *dev = priv->dev;
Dan Williams954ee162007-08-20 11:43:25 -0400967
968 lbs_deb_enter(LBS_DEB_MAIN);
969
David Woodhouse23a397a2007-12-11 18:56:42 -0500970 lbs_remove_mesh(priv);
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530971 lbs_scan_deinit(priv);
Dan Williams954ee162007-08-20 11:43:25 -0400972
Dan Williams71b35f32008-09-08 16:34:40 -0400973 /* worker thread destruction blocks on the in-flight command which
974 * should have been cleared already in lbs_stop_card().
975 */
976 lbs_deb_main("destroying worker thread\n");
Dan Williams954ee162007-08-20 11:43:25 -0400977 destroy_workqueue(priv->work_thread);
Dan Williams71b35f32008-09-08 16:34:40 -0400978 lbs_deb_main("done destroying worker thread\n");
Dan Williams954ee162007-08-20 11:43:25 -0400979
David Woodhouseaa21c002007-12-08 20:04:36 +0000980 if (priv->psmode == LBS802_11POWERMODEMAX_PSP) {
981 priv->psmode = LBS802_11POWERMODECAM;
Dan Williams0bb64082010-07-27 13:08:08 -0700982 lbs_set_ps_mode(priv, PS_MODE_ACTION_EXIT_PS, true);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200983 }
984
Amitkumar Karwar49125452009-09-30 20:04:38 -0700985 if (priv->is_deep_sleep) {
986 priv->is_deep_sleep = 0;
987 wake_up_interruptible(&priv->ds_awake_q);
988 }
989
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700990 priv->is_host_sleep_configured = 0;
991 priv->is_host_sleep_activated = 0;
992 wake_up_interruptible(&priv->host_sleep_q);
993
Dan Williams954ee162007-08-20 11:43:25 -0400994 /* Stop the thread servicing the interrupts */
David Woodhouseaa21c002007-12-08 20:04:36 +0000995 priv->surpriseremoved = 1;
Dan Williams954ee162007-08-20 11:43:25 -0400996 kthread_stop(priv->main_thread);
997
Holger Schurig10078322007-11-15 18:05:47 -0500998 lbs_free_adapter(priv);
Holger Schurigff9fc792009-10-06 16:31:54 +0200999 lbs_cfg_free(priv);
Dan Williams954ee162007-08-20 11:43:25 -04001000 free_netdev(dev);
1001
1002 lbs_deb_leave(LBS_DEB_MAIN);
Dan Williams954ee162007-08-20 11:43:25 -04001003}
Holger Schurig10078322007-11-15 18:05:47 -05001004EXPORT_SYMBOL_GPL(lbs_remove_card);
Dan Williams954ee162007-08-20 11:43:25 -04001005
1006
Kiran Divekare86dc1c2010-06-14 22:01:26 +05301007int lbs_rtap_supported(struct lbs_private *priv)
Holger Schurigcd744682009-12-02 15:25:59 +01001008{
1009 if (MRVL_FW_MAJOR_REV(priv->fwrelease) == MRVL_FW_V5)
1010 return 1;
1011
1012 /* newer firmware use a capability mask */
1013 return ((MRVL_FW_MAJOR_REV(priv->fwrelease) >= MRVL_FW_V10) &&
1014 (priv->fwcapinfo & MESH_CAPINFO_ENABLE_MASK));
1015}
1016
1017
Holger Schurig69f90322007-11-23 15:43:44 +01001018int lbs_start_card(struct lbs_private *priv)
Dan Williams954ee162007-08-20 11:43:25 -04001019{
1020 struct net_device *dev = priv->dev;
1021 int ret = -1;
1022
1023 lbs_deb_enter(LBS_DEB_MAIN);
1024
1025 /* poke the firmware */
Holger Schurig10078322007-11-15 18:05:47 -05001026 ret = lbs_setup_firmware(priv);
Dan Williams954ee162007-08-20 11:43:25 -04001027 if (ret)
1028 goto done;
1029
Daniel Drake49fee692011-07-21 20:43:17 +01001030 if (!lbs_disablemesh)
1031 lbs_init_mesh(priv);
1032 else
1033 pr_info("%s: mesh disabled\n", dev->name);
1034
Holger Schurigff9fc792009-10-06 16:31:54 +02001035 if (lbs_cfg_register(priv)) {
Joe Perches0e4e06a2011-05-02 16:49:14 -07001036 pr_err("cannot register device\n");
Dan Williams954ee162007-08-20 11:43:25 -04001037 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001038 }
David Woodhouse020f3d02007-12-12 23:29:13 -05001039
Daniel Drake49fee692011-07-21 20:43:17 +01001040 if (lbs_mesh_activated(priv))
1041 lbs_start_mesh(priv);
David Woodhouse020f3d02007-12-12 23:29:13 -05001042
Holger Schurig10078322007-11-15 18:05:47 -05001043 lbs_debugfs_init_one(priv, dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001044
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001045 netdev_info(dev, "Marvell WLAN 802.11 adapter\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001046
Dan Williams954ee162007-08-20 11:43:25 -04001047 ret = 0;
1048
Holger Schurig32a74b72007-05-25 12:04:31 -04001049done:
Dan Williams954ee162007-08-20 11:43:25 -04001050 lbs_deb_leave_args(LBS_DEB_MAIN, "ret %d", ret);
Holger Schurig32a74b72007-05-25 12:04:31 -04001051 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001052}
Holger Schurig10078322007-11-15 18:05:47 -05001053EXPORT_SYMBOL_GPL(lbs_start_card);
Dan Williams954ee162007-08-20 11:43:25 -04001054
1055
Holger Schuriga63e5cb2008-04-30 10:50:39 +02001056void lbs_stop_card(struct lbs_private *priv)
Dan Williams954ee162007-08-20 11:43:25 -04001057{
Julia Lawall43baa5b2009-01-09 10:23:10 +00001058 struct net_device *dev;
Dan Williams954ee162007-08-20 11:43:25 -04001059
1060 lbs_deb_enter(LBS_DEB_MAIN);
1061
Holger Schurig652e3f22008-04-30 10:51:15 +02001062 if (!priv)
1063 goto out;
Julia Lawall43baa5b2009-01-09 10:23:10 +00001064 dev = priv->dev;
Holger Schurig652e3f22008-04-30 10:51:15 +02001065
Julia Lawall43baa5b2009-01-09 10:23:10 +00001066 netif_stop_queue(dev);
1067 netif_carrier_off(dev);
Dan Williams954ee162007-08-20 11:43:25 -04001068
Holger Schurig10078322007-11-15 18:05:47 -05001069 lbs_debugfs_remove_one(priv);
Holger Schurigcd744682009-12-02 15:25:59 +01001070 lbs_deinit_mesh(priv);
Dan Williams954ee162007-08-20 11:43:25 -04001071 unregister_netdev(dev);
1072
Holger Schurig652e3f22008-04-30 10:51:15 +02001073out:
Holger Schuriga63e5cb2008-04-30 10:50:39 +02001074 lbs_deb_leave(LBS_DEB_MAIN);
Dan Williams954ee162007-08-20 11:43:25 -04001075}
Holger Schurig10078322007-11-15 18:05:47 -05001076EXPORT_SYMBOL_GPL(lbs_stop_card);
Holger Schurig084708b2007-05-25 12:37:58 -04001077
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001078
Holger Schurig7919b892008-04-01 14:50:43 +02001079void lbs_queue_event(struct lbs_private *priv, u32 event)
1080{
1081 unsigned long flags;
1082
1083 lbs_deb_enter(LBS_DEB_THREAD);
1084 spin_lock_irqsave(&priv->driver_lock, flags);
1085
1086 if (priv->psstate == PS_STATE_SLEEP)
1087 priv->psstate = PS_STATE_AWAKE;
1088
Stefani Seibold7acd72e2009-12-21 14:37:28 -08001089 kfifo_in(&priv->event_fifo, (unsigned char *) &event, sizeof(u32));
Holger Schurig7919b892008-04-01 14:50:43 +02001090
Daniel Draked2e7b342011-08-01 16:43:13 +01001091 wake_up(&priv->waitq);
Holger Schurig7919b892008-04-01 14:50:43 +02001092
1093 spin_unlock_irqrestore(&priv->driver_lock, flags);
1094 lbs_deb_leave(LBS_DEB_THREAD);
1095}
1096EXPORT_SYMBOL_GPL(lbs_queue_event);
1097
1098void lbs_notify_command_response(struct lbs_private *priv, u8 resp_idx)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001099{
Holger Schuriged37b512007-05-25 11:52:42 -04001100 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001101
David Woodhouse4f679492007-12-10 14:58:37 -05001102 if (priv->psstate == PS_STATE_SLEEP)
David Woodhouseaa21c002007-12-08 20:04:36 +00001103 priv->psstate = PS_STATE_AWAKE;
Holger Schurig7919b892008-04-01 14:50:43 +02001104
1105 /* Swap buffers by flipping the response index */
1106 BUG_ON(resp_idx > 1);
1107 priv->resp_idx = resp_idx;
1108
Daniel Draked2e7b342011-08-01 16:43:13 +01001109 wake_up(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001110
Holger Schuriged37b512007-05-25 11:52:42 -04001111 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001112}
Holger Schurig7919b892008-04-01 14:50:43 +02001113EXPORT_SYMBOL_GPL(lbs_notify_command_response);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001114
Dan Williams72f7a662010-08-07 21:14:33 -05001115/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001116 * lbs_get_firmware - Retrieves two-stage firmware
Dan Williams72f7a662010-08-07 21:14:33 -05001117 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001118 * @dev: A pointer to &device structure
1119 * @user_helper: User-defined helper firmware file
1120 * @user_mainfw: User-defined main firmware file
1121 * @card_model: Bus-specific card model ID used to filter firmware table
1122 * elements
1123 * @fw_table: Table of firmware file names and device model numbers
1124 * terminated by an entry with a NULL helper name
1125 * @helper: On success, the helper firmware; caller must free
1126 * @mainfw: On success, the main firmware; caller must free
Dan Williams72f7a662010-08-07 21:14:33 -05001127 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001128 * returns: 0 on success, non-zero on failure
Dan Williams72f7a662010-08-07 21:14:33 -05001129 */
1130int lbs_get_firmware(struct device *dev, const char *user_helper,
1131 const char *user_mainfw, u32 card_model,
1132 const struct lbs_fw_table *fw_table,
1133 const struct firmware **helper,
1134 const struct firmware **mainfw)
1135{
1136 const struct lbs_fw_table *iter;
1137 int ret;
1138
1139 BUG_ON(helper == NULL);
1140 BUG_ON(mainfw == NULL);
1141
1142 /* Try user-specified firmware first */
1143 if (user_helper) {
1144 ret = request_firmware(helper, user_helper, dev);
1145 if (ret) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001146 dev_err(dev, "couldn't find helper firmware %s\n",
1147 user_helper);
Dan Williams72f7a662010-08-07 21:14:33 -05001148 goto fail;
1149 }
1150 }
1151 if (user_mainfw) {
1152 ret = request_firmware(mainfw, user_mainfw, dev);
1153 if (ret) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001154 dev_err(dev, "couldn't find main firmware %s\n",
1155 user_mainfw);
Dan Williams72f7a662010-08-07 21:14:33 -05001156 goto fail;
1157 }
1158 }
1159
1160 if (*helper && *mainfw)
1161 return 0;
1162
1163 /* Otherwise search for firmware to use. If neither the helper or
1164 * the main firmware were specified by the user, then we need to
1165 * make sure that found helper & main are from the same entry in
1166 * fw_table.
1167 */
1168 iter = fw_table;
1169 while (iter && iter->helper) {
1170 if (iter->model != card_model)
1171 goto next;
1172
1173 if (*helper == NULL) {
1174 ret = request_firmware(helper, iter->helper, dev);
1175 if (ret)
1176 goto next;
1177
1178 /* If the device has one-stage firmware (ie cf8305) and
1179 * we've got it then we don't need to bother with the
1180 * main firmware.
1181 */
1182 if (iter->fwname == NULL)
1183 return 0;
1184 }
1185
1186 if (*mainfw == NULL) {
1187 ret = request_firmware(mainfw, iter->fwname, dev);
1188 if (ret && !user_helper) {
1189 /* Clear the helper if it wasn't user-specified
1190 * and the main firmware load failed, to ensure
1191 * we don't have mismatched firmware pairs.
1192 */
1193 release_firmware(*helper);
1194 *helper = NULL;
1195 }
1196 }
1197
1198 if (*helper && *mainfw)
1199 return 0;
1200
1201 next:
1202 iter++;
1203 }
1204
1205 fail:
1206 /* Failed */
1207 if (*helper) {
1208 release_firmware(*helper);
1209 *helper = NULL;
1210 }
1211 if (*mainfw) {
1212 release_firmware(*mainfw);
1213 *mainfw = NULL;
1214 }
1215
1216 return -ENOENT;
1217}
1218EXPORT_SYMBOL_GPL(lbs_get_firmware);
1219
Andres Salomon4fb910f2007-11-20 17:43:45 -05001220static int __init lbs_init_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001221{
Holger Schurig9012b282007-05-25 11:27:16 -04001222 lbs_deb_enter(LBS_DEB_MAIN);
Holger Schurigf539f2e2008-03-26 13:22:11 +01001223 memset(&confirm_sleep, 0, sizeof(confirm_sleep));
1224 confirm_sleep.hdr.command = cpu_to_le16(CMD_802_11_PS_MODE);
1225 confirm_sleep.hdr.size = cpu_to_le16(sizeof(confirm_sleep));
Dan Williams0bb64082010-07-27 13:08:08 -07001226 confirm_sleep.action = cpu_to_le16(PS_MODE_ACTION_SLEEP_CONFIRMED);
Holger Schurig10078322007-11-15 18:05:47 -05001227 lbs_debugfs_init();
Holger Schurig084708b2007-05-25 12:37:58 -04001228 lbs_deb_leave(LBS_DEB_MAIN);
1229 return 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001230}
1231
Andres Salomon4fb910f2007-11-20 17:43:45 -05001232static void __exit lbs_exit_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001233{
Holger Schurig9012b282007-05-25 11:27:16 -04001234 lbs_deb_enter(LBS_DEB_MAIN);
Holger Schurig10078322007-11-15 18:05:47 -05001235 lbs_debugfs_remove();
Holger Schurig9012b282007-05-25 11:27:16 -04001236 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001237}
1238
Holger Schurig10078322007-11-15 18:05:47 -05001239module_init(lbs_init_module);
1240module_exit(lbs_exit_module);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001241
Holger Schurig084708b2007-05-25 12:37:58 -04001242MODULE_DESCRIPTION("Libertas WLAN Driver Library");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001243MODULE_AUTHOR("Marvell International Ltd.");
1244MODULE_LICENSE("GPL");