wl1251: prevent scan when connected
[pandora-wifi.git] / drivers / net / wireless / wl12xx / wl1251_main.c
1 /*
2  * This file is part of wl1251
3  *
4  * Copyright (C) 2008-2009 Nokia Corporation
5  *
6  * Contact: Kalle Valo <kalle.valo@nokia.com>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * version 2 as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA
21  *
22  */
23
24 #include <linux/module.h>
25 #include <linux/interrupt.h>
26 #include <linux/firmware.h>
27 #include <linux/delay.h>
28 #include <linux/irq.h>
29 #if (LINUX_VERSION_CODE == KERNEL_VERSION(2,6,28))
30 #include <linux/device.h>
31 #endif
32 #include <linux/crc32.h>
33 #include <linux/etherdevice.h>
34 #include <linux/vmalloc.h>
35
36 #include "wl1251.h"
37 #include "wl12xx_80211.h"
38 #include "wl1251_reg.h"
39 #include "wl1251_io.h"
40 #include "wl1251_cmd.h"
41 #include "wl1251_event.h"
42 #include "wl1251_tx.h"
43 #include "wl1251_rx.h"
44 #include "wl1251_ps.h"
45 #include "wl1251_init.h"
46 #include "wl1251_debugfs.h"
47 #include "wl1251_boot.h"
48
49 void wl1251_enable_interrupts(struct wl1251 *wl)
50 {
51         wl->if_ops->enable_irq(wl);
52 }
53
54 void wl1251_disable_interrupts(struct wl1251 *wl)
55 {
56         wl->if_ops->disable_irq(wl);
57 }
58
59 static void wl1251_power_off(struct wl1251 *wl)
60 {
61         wl->set_power(false);
62 }
63
64 static void wl1251_power_on(struct wl1251 *wl)
65 {
66         wl->set_power(true);
67 }
68
69 static int wl1251_fetch_firmware(struct wl1251 *wl)
70 {
71         const struct firmware *fw;
72         struct device *dev = wiphy_dev(wl->hw->wiphy);
73         int ret;
74
75         ret = request_firmware(&fw, WL1251_FW_NAME, dev);
76
77         if (ret < 0) {
78                 wl1251_error("could not get firmware: %d", ret);
79                 return ret;
80         }
81
82         if (fw->size % 4) {
83                 wl1251_error("firmware size is not multiple of 32 bits: %zu",
84                              fw->size);
85                 ret = -EILSEQ;
86                 goto out;
87         }
88
89         wl->fw_len = fw->size;
90         wl->fw = vmalloc(wl->fw_len);
91
92         if (!wl->fw) {
93                 wl1251_error("could not allocate memory for the firmware");
94                 ret = -ENOMEM;
95                 goto out;
96         }
97
98         memcpy(wl->fw, fw->data, wl->fw_len);
99
100         ret = 0;
101
102 out:
103         release_firmware(fw);
104
105         return ret;
106 }
107
108 static int wl1251_fetch_nvs(struct wl1251 *wl)
109 {
110         const struct firmware *fw;
111         struct device *dev = wiphy_dev(wl->hw->wiphy);
112         int ret;
113
114         ret = request_firmware(&fw, WL1251_NVS_NAME, dev);
115
116         if (ret < 0) {
117                 wl1251_error("could not get nvs file: %d", ret);
118                 return ret;
119         }
120
121         if (fw->size % 4) {
122                 wl1251_error("nvs size is not multiple of 32 bits: %zu",
123                              fw->size);
124                 ret = -EILSEQ;
125                 goto out;
126         }
127
128         wl->nvs_len = fw->size;
129         wl->nvs = kmalloc(wl->nvs_len, GFP_KERNEL);
130
131         if (!wl->nvs) {
132                 wl1251_error("could not allocate memory for the nvs file");
133                 ret = -ENOMEM;
134                 goto out;
135         }
136
137         memcpy(wl->nvs, fw->data, wl->nvs_len);
138
139         ret = 0;
140
141 out:
142         release_firmware(fw);
143
144         return ret;
145 }
146
147 static void wl1251_fw_wakeup(struct wl1251 *wl)
148 {
149         u32 elp_reg;
150
151         elp_reg = ELPCTRL_WAKE_UP;
152         wl1251_write_elp(wl, HW_ACCESS_ELP_CTRL_REG_ADDR, elp_reg);
153         elp_reg = wl1251_read_elp(wl, HW_ACCESS_ELP_CTRL_REG_ADDR);
154
155         if (!(elp_reg & ELPCTRL_WLAN_READY))
156                 wl1251_warning("WLAN not ready");
157 }
158
159 static int wl1251_chip_wakeup(struct wl1251 *wl)
160 {
161         int ret = 0;
162
163         wl1251_power_on(wl);
164         msleep(WL1251_POWER_ON_SLEEP);
165         wl->if_ops->reset(wl);
166
167         /* We don't need a real memory partition here, because we only want
168          * to use the registers at this point. */
169         wl1251_set_partition(wl,
170                              0x00000000,
171                              0x00000000,
172                              REGISTERS_BASE,
173                              REGISTERS_DOWN_SIZE);
174
175         /* ELP module wake up */
176         wl1251_fw_wakeup(wl);
177
178         /* whal_FwCtrl_BootSm() */
179
180         /* 0. read chip id from CHIP_ID */
181         wl->chip_id = wl1251_reg_read32(wl, CHIP_ID_B);
182
183         /* 1. check if chip id is valid */
184
185         switch (wl->chip_id) {
186         case CHIP_ID_1251_PG12:
187                 wl1251_debug(DEBUG_BOOT, "chip id 0x%x (1251 PG12)",
188                              wl->chip_id);
189                 break;
190         case CHIP_ID_1251_PG11:
191                 wl1251_debug(DEBUG_BOOT, "chip id 0x%x (1251 PG11)",
192                              wl->chip_id);
193                 break;
194         case CHIP_ID_1251_PG10:
195         default:
196                 wl1251_error("unsupported chip id: 0x%x", wl->chip_id);
197                 ret = -ENODEV;
198                 goto out;
199         }
200
201         if (wl->fw == NULL) {
202                 ret = wl1251_fetch_firmware(wl);
203                 if (ret < 0)
204                         goto out;
205         }
206
207         if (wl->nvs == NULL && !wl->use_eeprom) {
208                 /* No NVS from netlink, try to get it from the filesystem */
209                 ret = wl1251_fetch_nvs(wl);
210                 if (ret < 0)
211                         goto out;
212         }
213
214 out:
215         return ret;
216 }
217
218 #define WL1251_IRQ_LOOP_COUNT 10
219 static void wl1251_irq_work(struct work_struct *work)
220 {
221         u32 intr, ctr = WL1251_IRQ_LOOP_COUNT;
222         struct wl1251 *wl =
223                 container_of(work, struct wl1251, irq_work);
224         int ret;
225
226         mutex_lock(&wl->mutex);
227
228         wl1251_debug(DEBUG_IRQ, "IRQ work");
229
230         if (wl->state == WL1251_STATE_OFF)
231                 goto out;
232
233         ret = wl1251_ps_elp_wakeup(wl);
234         if (ret < 0)
235                 goto out;
236
237         wl1251_reg_write32(wl, ACX_REG_INTERRUPT_MASK, WL1251_ACX_INTR_ALL);
238
239         intr = wl1251_reg_read32(wl, ACX_REG_INTERRUPT_CLEAR);
240         wl1251_debug(DEBUG_IRQ, "intr: 0x%x", intr);
241
242         do {
243                 if (wl->data_path) {
244                         wl->rx_counter = wl1251_mem_read32(
245                                 wl, wl->data_path->rx_control_addr);
246
247                         /* We handle a frmware bug here */
248                         switch ((wl->rx_counter - wl->rx_handled) & 0xf) {
249                         case 0:
250                                 wl1251_debug(DEBUG_IRQ,
251                                              "RX: FW and host in sync");
252                                 intr &= ~WL1251_ACX_INTR_RX0_DATA;
253                                 intr &= ~WL1251_ACX_INTR_RX1_DATA;
254                                 break;
255                         case 1:
256                                 wl1251_debug(DEBUG_IRQ, "RX: FW +1");
257                                 intr |= WL1251_ACX_INTR_RX0_DATA;
258                                 intr &= ~WL1251_ACX_INTR_RX1_DATA;
259                                 break;
260                         case 2:
261                                 wl1251_debug(DEBUG_IRQ, "RX: FW +2");
262                                 intr |= WL1251_ACX_INTR_RX0_DATA;
263                                 intr |= WL1251_ACX_INTR_RX1_DATA;
264                                 break;
265                         default:
266                                 wl1251_warning(
267                                         "RX: FW and host out of sync: %d",
268                                         wl->rx_counter - wl->rx_handled);
269                                 break;
270                         }
271
272                         wl->rx_handled = wl->rx_counter;
273
274                         wl1251_debug(DEBUG_IRQ, "RX counter: %d",
275                                      wl->rx_counter);
276                 }
277
278                 intr &= wl->intr_mask;
279
280                 if (intr == 0) {
281                         wl1251_debug(DEBUG_IRQ, "INTR is 0");
282                         goto out_sleep;
283                 }
284
285                 if (intr & WL1251_ACX_INTR_RX0_DATA) {
286                         wl1251_debug(DEBUG_IRQ, "WL1251_ACX_INTR_RX0_DATA");
287                         wl1251_rx(wl);
288                 }
289
290                 if (intr & WL1251_ACX_INTR_RX1_DATA) {
291                         wl1251_debug(DEBUG_IRQ, "WL1251_ACX_INTR_RX1_DATA");
292                         wl1251_rx(wl);
293                 }
294
295                 if (intr & WL1251_ACX_INTR_TX_RESULT) {
296                         wl1251_debug(DEBUG_IRQ, "WL1251_ACX_INTR_TX_RESULT");
297                         wl1251_tx_complete(wl);
298                 }
299
300                 if (intr & (WL1251_ACX_INTR_EVENT_A |
301                             WL1251_ACX_INTR_EVENT_B)) {
302                         wl1251_debug(DEBUG_IRQ, "WL1251_ACX_INTR_EVENT (0x%x)",
303                                      intr);
304                         if (intr & WL1251_ACX_INTR_EVENT_A)
305                                 wl1251_event_handle(wl, 0);
306                         else
307                                 wl1251_event_handle(wl, 1);
308                 }
309
310                 if (intr & WL1251_ACX_INTR_INIT_COMPLETE)
311                         wl1251_debug(DEBUG_IRQ,
312                                      "WL1251_ACX_INTR_INIT_COMPLETE");
313
314                 if (--ctr == 0)
315                         break;
316
317                 intr = wl1251_reg_read32(wl, ACX_REG_INTERRUPT_CLEAR);
318         } while (intr);
319
320 out_sleep:
321         wl1251_reg_write32(wl, ACX_REG_INTERRUPT_MASK, ~(wl->intr_mask));
322         wl1251_ps_elp_sleep(wl);
323
324 out:
325         mutex_unlock(&wl->mutex);
326 }
327
328 static int wl1251_join(struct wl1251 *wl, u8 bss_type, u8 channel,
329                        u16 beacon_interval, u8 dtim_period)
330 {
331         int ret;
332
333         ret = wl1251_acx_frame_rates(wl, DEFAULT_HW_GEN_TX_RATE,
334                                      DEFAULT_HW_GEN_MODULATION_TYPE,
335                                      wl->tx_mgmt_frm_rate,
336                                      wl->tx_mgmt_frm_mod);
337         if (ret < 0)
338                 goto out;
339
340
341         ret = wl1251_cmd_join(wl, bss_type, channel, beacon_interval,
342                               dtim_period);
343         if (ret < 0)
344                 goto out;
345
346         /*
347          * FIXME: we should wait for JOIN_EVENT_COMPLETE_ID but to simplify
348          * locking we just sleep instead, for now
349          */
350         msleep(10);
351
352 out:
353         return ret;
354 }
355
356 static void wl1251_filter_work(struct work_struct *work)
357 {
358         struct wl1251 *wl =
359                 container_of(work, struct wl1251, filter_work);
360         int ret;
361
362         mutex_lock(&wl->mutex);
363
364         if (wl->state == WL1251_STATE_OFF)
365                 goto out;
366
367         ret = wl1251_ps_elp_wakeup(wl);
368         if (ret < 0)
369                 goto out;
370
371         ret = wl1251_join(wl, wl->bss_type, wl->channel, wl->beacon_int,
372                           wl->dtim_period);
373         if (ret < 0)
374                 goto out_sleep;
375
376 out_sleep:
377         wl1251_ps_elp_sleep(wl);
378
379 out:
380         mutex_unlock(&wl->mutex);
381 }
382
383 static int wl1251_op_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
384 {
385         struct wl1251 *wl = hw->priv;
386
387         skb_queue_tail(&wl->tx_queue, skb);
388
389         /*
390          * The chip specific setup must run before the first TX packet -
391          * before that, the tx_work will not be initialized!
392          */
393
394         ieee80211_queue_work(wl->hw, &wl->tx_work);
395
396         /*
397          * The workqueue is slow to process the tx_queue and we need stop
398          * the queue here, otherwise the queue will get too long.
399          */
400         if (skb_queue_len(&wl->tx_queue) >= WL1251_TX_QUEUE_MAX_LENGTH) {
401                 wl1251_debug(DEBUG_TX, "op_tx: tx_queue full, stop queues");
402                 ieee80211_stop_queues(wl->hw);
403
404                 /*
405                  * FIXME: this is racy, the variable is not properly
406                  * protected. Maybe fix this by removing the stupid
407                  * variable altogether and checking the real queue state?
408                  */
409                 wl->tx_queue_stopped = true;
410         }
411
412         return NETDEV_TX_OK;
413 }
414
415 static int wl1251_op_start(struct ieee80211_hw *hw)
416 {
417         struct wl1251 *wl = hw->priv;
418         int ret = 0;
419
420         wl1251_debug(DEBUG_MAC80211, "mac80211 start");
421
422         mutex_lock(&wl->mutex);
423
424         if (wl->state != WL1251_STATE_OFF) {
425                 wl1251_error("cannot start because not in off state: %d",
426                              wl->state);
427                 ret = -EBUSY;
428                 goto out;
429         }
430
431         ret = wl1251_chip_wakeup(wl);
432         if (ret < 0)
433                 goto out;
434
435         ret = wl1251_boot(wl);
436         if (ret < 0)
437                 goto out;
438
439         ret = wl1251_hw_init(wl);
440         if (ret < 0)
441                 goto out;
442
443         ret = wl1251_acx_station_id(wl);
444         if (ret < 0)
445                 goto out;
446
447         wl->state = WL1251_STATE_ON;
448
449         wl1251_info("firmware booted (%s)", wl->fw_ver);
450
451 out:
452         if (ret < 0)
453                 wl1251_power_off(wl);
454
455         mutex_unlock(&wl->mutex);
456
457         return ret;
458 }
459
460 static void wl1251_op_stop(struct ieee80211_hw *hw)
461 {
462         struct wl1251 *wl = hw->priv;
463
464         wl1251_info("down");
465
466         wl1251_debug(DEBUG_MAC80211, "mac80211 stop");
467
468         mutex_lock(&wl->mutex);
469
470         WARN_ON(wl->state != WL1251_STATE_ON);
471
472         if (wl->scanning) {
473                 mutex_unlock(&wl->mutex);
474                 ieee80211_scan_completed(wl->hw, true);
475                 mutex_lock(&wl->mutex);
476                 wl->scanning = false;
477         }
478
479         wl->state = WL1251_STATE_OFF;
480
481         wl1251_disable_interrupts(wl);
482
483         mutex_unlock(&wl->mutex);
484
485         cancel_work_sync(&wl->irq_work);
486         cancel_work_sync(&wl->tx_work);
487         cancel_work_sync(&wl->filter_work);
488
489         mutex_lock(&wl->mutex);
490
491         /* let's notify MAC80211 about the remaining pending TX frames */
492         wl1251_tx_flush(wl);
493         wl1251_power_off(wl);
494
495         memset(wl->bssid, 0, ETH_ALEN);
496         wl->listen_int = 1;
497         wl->bss_type = MAX_BSS_TYPE;
498
499         wl->data_in_count = 0;
500         wl->rx_counter = 0;
501         wl->rx_handled = 0;
502         wl->rx_current_buffer = 0;
503         wl->rx_last_id = 0;
504         wl->next_tx_complete = 0;
505         wl->elp = false;
506         wl->psm = 0;
507         wl->tx_queue_stopped = false;
508         wl->power_level = WL1251_DEFAULT_POWER_LEVEL;
509         wl->channel = WL1251_DEFAULT_CHANNEL;
510
511         wl1251_debugfs_reset(wl);
512
513         mutex_unlock(&wl->mutex);
514 }
515
516 static int wl1251_op_add_interface(struct ieee80211_hw *hw,
517                                    struct ieee80211_vif *vif)
518 {
519         struct wl1251 *wl = hw->priv;
520         int ret = 0;
521
522         wl1251_debug(DEBUG_MAC80211, "mac80211 add interface type %d mac %pM",
523                      vif->type, vif->addr);
524
525         mutex_lock(&wl->mutex);
526         if (wl->vif) {
527                 ret = -EBUSY;
528                 goto out;
529         }
530
531         wl->vif = vif;
532
533         switch (vif->type) {
534         case NL80211_IFTYPE_STATION:
535                 wl->bss_type = BSS_TYPE_STA_BSS;
536                 break;
537         case NL80211_IFTYPE_ADHOC:
538                 wl->bss_type = BSS_TYPE_IBSS;
539                 break;
540         default:
541                 ret = -EOPNOTSUPP;
542                 goto out;
543         }
544
545         if (memcmp(wl->mac_addr, vif->addr, ETH_ALEN)) {
546                 memcpy(wl->mac_addr, vif->addr, ETH_ALEN);
547                 SET_IEEE80211_PERM_ADDR(wl->hw, wl->mac_addr);
548                 ret = wl1251_acx_station_id(wl);
549                 if (ret < 0)
550                         goto out;
551         }
552
553 out:
554         mutex_unlock(&wl->mutex);
555         return ret;
556 }
557
558 static void wl1251_op_remove_interface(struct ieee80211_hw *hw,
559                                          struct ieee80211_vif *vif)
560 {
561         struct wl1251 *wl = hw->priv;
562
563         mutex_lock(&wl->mutex);
564         wl1251_debug(DEBUG_MAC80211, "mac80211 remove interface");
565         wl->vif = NULL;
566         mutex_unlock(&wl->mutex);
567 }
568
569 static int wl1251_build_qos_null_data(struct wl1251 *wl)
570 {
571         struct ieee80211_qos_hdr template;
572
573         memset(&template, 0, sizeof(template));
574
575         memcpy(template.addr1, wl->bssid, ETH_ALEN);
576         memcpy(template.addr2, wl->mac_addr, ETH_ALEN);
577         memcpy(template.addr3, wl->bssid, ETH_ALEN);
578
579         template.frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
580                                              IEEE80211_STYPE_QOS_NULLFUNC |
581                                              IEEE80211_FCTL_TODS);
582
583         /* FIXME: not sure what priority to use here */
584         template.qos_ctrl = cpu_to_le16(0);
585
586         return wl1251_cmd_template_set(wl, CMD_QOS_NULL_DATA, &template,
587                                        sizeof(template));
588 }
589
590 static int wl1251_op_config(struct ieee80211_hw *hw, u32 changed)
591 {
592         struct wl1251 *wl = hw->priv;
593         struct ieee80211_conf *conf = &hw->conf;
594         int channel, ret = 0;
595
596         channel = ieee80211_frequency_to_channel(conf->channel->center_freq);
597
598         wl1251_debug(DEBUG_MAC80211, "mac80211 config ch %d psm %s power %d",
599                      channel,
600                      conf->flags & IEEE80211_CONF_PS ? "on" : "off",
601                      conf->power_level);
602
603         mutex_lock(&wl->mutex);
604
605         ret = wl1251_ps_elp_wakeup(wl);
606         if (ret < 0)
607                 goto out;
608
609         if (channel != wl->channel) {
610                 wl->channel = channel;
611
612                 ret = wl1251_join(wl, wl->bss_type, wl->channel,
613                                   wl->beacon_int, wl->dtim_period);
614                 if (ret < 0)
615                         goto out_sleep;
616         }
617
618         if (conf->flags & IEEE80211_CONF_PS && !wl->psm_requested) {
619                 wl1251_debug(DEBUG_PSM, "psm enabled");
620
621                 wl->psm_requested = true;
622
623                 wl->dtim_period = conf->ps_dtim_period;
624
625                 ret = wl1251_acx_wr_tbtt_and_dtim(wl, wl->beacon_int,
626                                                   wl->dtim_period);
627
628                 /*
629                  * mac80211 enables PSM only if we're already associated.
630                  */
631                 ret = wl1251_ps_set_mode(wl, STATION_POWER_SAVE_MODE);
632                 if (ret < 0)
633                         goto out_sleep;
634         } else if (!(conf->flags & IEEE80211_CONF_PS) &&
635                    wl->psm_requested) {
636                 wl1251_debug(DEBUG_PSM, "psm disabled");
637
638                 wl->psm_requested = false;
639
640                 if (wl->psm) {
641                         ret = wl1251_ps_set_mode(wl, STATION_ACTIVE_MODE);
642                         if (ret < 0)
643                                 goto out_sleep;
644                 }
645         }
646
647         if (conf->power_level != wl->power_level) {
648                 ret = wl1251_acx_tx_power(wl, conf->power_level);
649                 if (ret < 0)
650                         goto out_sleep;
651
652                 wl->power_level = conf->power_level;
653         }
654
655 out_sleep:
656         wl1251_ps_elp_sleep(wl);
657
658 out:
659         mutex_unlock(&wl->mutex);
660
661         return ret;
662 }
663
664 #define WL1251_SUPPORTED_FILTERS (FIF_PROMISC_IN_BSS | \
665                                   FIF_ALLMULTI | \
666                                   FIF_FCSFAIL | \
667                                   FIF_BCN_PRBRESP_PROMISC | \
668                                   FIF_CONTROL | \
669                                   FIF_OTHER_BSS)
670
671 static void wl1251_op_configure_filter(struct ieee80211_hw *hw,
672                                        unsigned int changed,
673                                        unsigned int *total,u64 multicast)
674 {
675         struct wl1251 *wl = hw->priv;
676
677         wl1251_debug(DEBUG_MAC80211, "mac80211 configure filter");
678
679         *total &= WL1251_SUPPORTED_FILTERS;
680         changed &= WL1251_SUPPORTED_FILTERS;
681
682         if (changed == 0)
683                 /* no filters which we support changed */
684                 return;
685
686         /* FIXME: wl->rx_config and wl->rx_filter are not protected */
687
688         wl->rx_config = WL1251_DEFAULT_RX_CONFIG;
689         wl->rx_filter = WL1251_DEFAULT_RX_FILTER;
690
691         if (*total & FIF_PROMISC_IN_BSS) {
692                 wl->rx_config |= CFG_BSSID_FILTER_EN;
693                 wl->rx_config |= CFG_RX_ALL_GOOD;
694         }
695         if (*total & FIF_ALLMULTI)
696                 /*
697                  * CFG_MC_FILTER_EN in rx_config needs to be 0 to receive
698                  * all multicast frames
699                  */
700                 wl->rx_config &= ~CFG_MC_FILTER_EN;
701         if (*total & FIF_FCSFAIL)
702                 wl->rx_filter |= CFG_RX_FCS_ERROR;
703         if (*total & FIF_BCN_PRBRESP_PROMISC) {
704                 wl->rx_config &= ~CFG_BSSID_FILTER_EN;
705                 wl->rx_config &= ~CFG_SSID_FILTER_EN;
706         }
707         if (*total & FIF_CONTROL)
708                 wl->rx_filter |= CFG_RX_CTL_EN;
709         if (*total & FIF_OTHER_BSS)
710                 wl->rx_filter &= ~CFG_BSSID_FILTER_EN;
711
712         /*
713          * FIXME: workqueues need to be properly cancelled on stop(), for
714          * now let's just disable changing the filter settings. They will
715          * be updated any on config().
716          */
717         /* schedule_work(&wl->filter_work); */
718 }
719
720 /* HW encryption */
721 static int wl1251_set_key_type(struct wl1251 *wl,
722                                struct wl1251_cmd_set_keys *key,
723                                enum set_key_cmd cmd,
724                                struct ieee80211_key_conf *mac80211_key,
725                                const u8 *addr)
726 {
727         switch (mac80211_key->alg) {
728         case ALG_WEP:
729                 if (is_broadcast_ether_addr(addr))
730                         key->key_type = KEY_WEP_DEFAULT;
731                 else
732                         key->key_type = KEY_WEP_ADDR;
733
734                 mac80211_key->hw_key_idx = mac80211_key->keyidx;
735                 break;
736         case ALG_TKIP:
737                 if (is_broadcast_ether_addr(addr))
738                         key->key_type = KEY_TKIP_MIC_GROUP;
739                 else
740                         key->key_type = KEY_TKIP_MIC_PAIRWISE;
741
742                 mac80211_key->hw_key_idx = mac80211_key->keyidx;
743                 break;
744         case ALG_CCMP:
745                 if (is_broadcast_ether_addr(addr))
746                         key->key_type = KEY_AES_GROUP;
747                 else
748                         key->key_type = KEY_AES_PAIRWISE;
749                 mac80211_key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
750                 break;
751         default:
752                 wl1251_error("Unknown key algo 0x%x", mac80211_key->alg);
753                 return -EOPNOTSUPP;
754         }
755
756         return 0;
757 }
758
759 static int wl1251_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
760                              struct ieee80211_vif *vif,
761                              struct ieee80211_sta *sta,
762                              struct ieee80211_key_conf *key)
763 {
764         struct wl1251 *wl = hw->priv;
765         struct wl1251_cmd_set_keys *wl_cmd;
766         const u8 *addr;
767         int ret;
768
769         static const u8 bcast_addr[ETH_ALEN] =
770                 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
771
772         wl1251_debug(DEBUG_MAC80211, "mac80211 set key");
773
774         wl_cmd = kzalloc(sizeof(*wl_cmd), GFP_KERNEL);
775         if (!wl_cmd) {
776                 ret = -ENOMEM;
777                 goto out;
778         }
779
780         addr = sta ? sta->addr : bcast_addr;
781
782         wl1251_debug(DEBUG_CRYPT, "CMD: 0x%x", cmd);
783         wl1251_dump(DEBUG_CRYPT, "ADDR: ", addr, ETH_ALEN);
784         wl1251_debug(DEBUG_CRYPT, "Key: algo:0x%x, id:%d, len:%d flags 0x%x",
785                      key->alg, key->keyidx, key->keylen, key->flags);
786         wl1251_dump(DEBUG_CRYPT, "KEY: ", key->key, key->keylen);
787
788         if (is_zero_ether_addr(addr)) {
789                 /* We dont support TX only encryption */
790                 ret = -EOPNOTSUPP;
791                 goto out;
792         }
793
794         mutex_lock(&wl->mutex);
795
796         ret = wl1251_ps_elp_wakeup(wl);
797         if (ret < 0)
798                 goto out_unlock;
799
800         switch (cmd) {
801         case SET_KEY:
802                 wl_cmd->key_action = KEY_ADD_OR_REPLACE;
803                 break;
804         case DISABLE_KEY:
805                 wl_cmd->key_action = KEY_REMOVE;
806                 break;
807         default:
808                 wl1251_error("Unsupported key cmd 0x%x", cmd);
809                 break;
810         }
811
812         ret = wl1251_set_key_type(wl, wl_cmd, cmd, key, addr);
813         if (ret < 0) {
814                 wl1251_error("Set KEY type failed");
815                 goto out_sleep;
816         }
817
818         if (wl_cmd->key_type != KEY_WEP_DEFAULT)
819                 memcpy(wl_cmd->addr, addr, ETH_ALEN);
820
821         if ((wl_cmd->key_type == KEY_TKIP_MIC_GROUP) ||
822             (wl_cmd->key_type == KEY_TKIP_MIC_PAIRWISE)) {
823                 /*
824                  * We get the key in the following form:
825                  * TKIP (16 bytes) - TX MIC (8 bytes) - RX MIC (8 bytes)
826                  * but the target is expecting:
827                  * TKIP - RX MIC - TX MIC
828                  */
829                 memcpy(wl_cmd->key, key->key, 16);
830                 memcpy(wl_cmd->key + 16, key->key + 24, 8);
831                 memcpy(wl_cmd->key + 24, key->key + 16, 8);
832
833         } else {
834                 memcpy(wl_cmd->key, key->key, key->keylen);
835         }
836         wl_cmd->key_size = key->keylen;
837
838         wl_cmd->id = key->keyidx;
839         wl_cmd->ssid_profile = 0;
840
841         wl1251_dump(DEBUG_CRYPT, "TARGET KEY: ", wl_cmd, sizeof(*wl_cmd));
842
843         ret = wl1251_cmd_send(wl, CMD_SET_KEYS, wl_cmd, sizeof(*wl_cmd));
844         if (ret < 0) {
845                 wl1251_warning("could not set keys");
846                 goto out_sleep;
847         }
848
849 out_sleep:
850         wl1251_ps_elp_sleep(wl);
851
852 out_unlock:
853         mutex_unlock(&wl->mutex);
854
855 out:
856         kfree(wl_cmd);
857
858         return ret;
859 }
860
861 static int wl1251_op_hw_scan(struct ieee80211_hw *hw,
862                              struct cfg80211_scan_request *req)
863 {
864         struct wl1251 *wl = hw->priv;
865         struct sk_buff *skb;
866         size_t ssid_len = 0;
867         u8 *ssid = NULL;
868         int ret;
869
870         wl1251_debug(DEBUG_MAC80211, "mac80211 hw scan");
871
872         /*
873          * FIXME: scanning while associated causes lockups,
874          * so we don't allow that
875          */
876         if (wl->associated)
877                 return -EBUSY;
878
879         if (req->n_ssids) {
880                 ssid = req->ssids[0].ssid;
881                 ssid_len = req->ssids[0].ssid_len;
882         }
883
884         mutex_lock(&wl->mutex);
885
886         if (wl->scanning) {
887                 wl1251_debug(DEBUG_SCAN, "scan already in progress");
888                 ret = -EINVAL;
889                 goto out;
890         }
891
892         ret = wl1251_ps_elp_wakeup(wl);
893         if (ret < 0)
894                 goto out;
895
896         skb = ieee80211_probereq_get(wl->hw, wl->vif, ssid, ssid_len,
897                                      req->ie, req->ie_len);
898         if (!skb) {
899                 ret = -ENOMEM;
900                 goto out;
901         }
902
903         ret = wl1251_cmd_template_set(wl, CMD_PROBE_REQ, skb->data,
904                                       skb->len);
905         dev_kfree_skb(skb);
906         if (ret < 0)
907                 goto out_sleep;
908
909         ret = wl1251_cmd_trigger_scan_to(wl, 0);
910         if (ret < 0)
911                 goto out_sleep;
912
913         wl->scanning = true;
914
915         ret = wl1251_cmd_scan(wl, ssid, ssid_len, req->channels,
916                               req->n_channels, WL1251_SCAN_NUM_PROBES);
917         if (ret < 0) {
918                 wl->scanning = false;
919                 goto out_sleep;
920         }
921
922 out_sleep:
923         wl1251_ps_elp_sleep(wl);
924
925 out:
926         mutex_unlock(&wl->mutex);
927
928         return ret;
929 }
930
931 static int wl1251_op_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
932 {
933         struct wl1251 *wl = hw->priv;
934         int ret;
935
936         mutex_lock(&wl->mutex);
937
938         ret = wl1251_ps_elp_wakeup(wl);
939         if (ret < 0)
940                 goto out;
941
942         ret = wl1251_acx_rts_threshold(wl, (u16) value);
943         if (ret < 0)
944                 wl1251_warning("wl1251_op_set_rts_threshold failed: %d", ret);
945
946         wl1251_ps_elp_sleep(wl);
947
948 out:
949         mutex_unlock(&wl->mutex);
950
951         return ret;
952 }
953
954 static void wl1251_op_bss_info_changed(struct ieee80211_hw *hw,
955                                        struct ieee80211_vif *vif,
956                                        struct ieee80211_bss_conf *bss_conf,
957                                        u32 changed)
958 {
959         struct wl1251 *wl = hw->priv;
960         struct sk_buff *beacon, *skb;
961         int ret;
962
963         wl1251_debug(DEBUG_MAC80211, "mac80211 bss info changed");
964
965         mutex_lock(&wl->mutex);
966
967         ret = wl1251_ps_elp_wakeup(wl);
968         if (ret < 0)
969                 goto out;
970
971         if (changed & BSS_CHANGED_BSSID) {
972                 memcpy(wl->bssid, bss_conf->bssid, ETH_ALEN);
973
974                 skb = ieee80211_nullfunc_get(wl->hw, wl->vif);
975                 if (!skb)
976                         goto out_sleep;
977
978                 ret = wl1251_cmd_template_set(wl, CMD_NULL_DATA,
979                                               skb->data, skb->len);
980                 dev_kfree_skb(skb);
981                 if (ret < 0)
982                         goto out_sleep;
983
984                 ret = wl1251_build_qos_null_data(wl);
985                 if (ret < 0)
986                         goto out;
987
988                 if (wl->bss_type != BSS_TYPE_IBSS) {
989                         ret = wl1251_join(wl, wl->bss_type, wl->channel,
990                                           wl->beacon_int, wl->dtim_period);
991                         if (ret < 0)
992                                 goto out_sleep;
993                 }
994         }
995
996         if (changed & BSS_CHANGED_ASSOC) {
997                 wl->associated = bss_conf->assoc;
998                 if (bss_conf->assoc) {
999                         wl->beacon_int = bss_conf->beacon_int;
1000
1001                         skb = ieee80211_pspoll_get(wl->hw, wl->vif);
1002                         if (!skb)
1003                                 goto out_sleep;
1004
1005                         ret = wl1251_cmd_template_set(wl, CMD_PS_POLL,
1006                                                       skb->data,
1007                                                       skb->len);
1008                         dev_kfree_skb(skb);
1009                         if (ret < 0)
1010                                 goto out_sleep;
1011
1012                         ret = wl1251_acx_aid(wl, bss_conf->aid);
1013                         if (ret < 0)
1014                                 goto out_sleep;
1015                 } else {
1016                         /* use defaults when not associated */
1017                         wl->beacon_int = WL1251_DEFAULT_BEACON_INT;
1018                         wl->dtim_period = WL1251_DEFAULT_DTIM_PERIOD;
1019                 }
1020         }
1021         if (changed & BSS_CHANGED_ERP_SLOT) {
1022                 if (bss_conf->use_short_slot)
1023                         ret = wl1251_acx_slot(wl, SLOT_TIME_SHORT);
1024                 else
1025                         ret = wl1251_acx_slot(wl, SLOT_TIME_LONG);
1026                 if (ret < 0) {
1027                         wl1251_warning("Set slot time failed %d", ret);
1028                         goto out_sleep;
1029                 }
1030         }
1031
1032         if (changed & BSS_CHANGED_ERP_PREAMBLE) {
1033                 if (bss_conf->use_short_preamble)
1034                         wl1251_acx_set_preamble(wl, ACX_PREAMBLE_SHORT);
1035                 else
1036                         wl1251_acx_set_preamble(wl, ACX_PREAMBLE_LONG);
1037         }
1038
1039         if (changed & BSS_CHANGED_ERP_CTS_PROT) {
1040                 if (bss_conf->use_cts_prot)
1041                         ret = wl1251_acx_cts_protect(wl, CTSPROTECT_ENABLE);
1042                 else
1043                         ret = wl1251_acx_cts_protect(wl, CTSPROTECT_DISABLE);
1044                 if (ret < 0) {
1045                         wl1251_warning("Set ctsprotect failed %d", ret);
1046                         goto out_sleep;
1047                 }
1048         }
1049
1050         if (changed & BSS_CHANGED_BEACON) {
1051                 beacon = ieee80211_beacon_get(hw, vif);
1052                 ret = wl1251_cmd_template_set(wl, CMD_BEACON, beacon->data,
1053                                               beacon->len);
1054
1055                 if (ret < 0) {
1056                         dev_kfree_skb(beacon);
1057                         goto out_sleep;
1058                 }
1059
1060                 ret = wl1251_cmd_template_set(wl, CMD_PROBE_RESP, beacon->data,
1061                                               beacon->len);
1062
1063                 dev_kfree_skb(beacon);
1064
1065                 if (ret < 0)
1066                         goto out_sleep;
1067
1068                 ret = wl1251_join(wl, wl->bss_type, wl->beacon_int,
1069                                   wl->channel, wl->dtim_period);
1070
1071                 if (ret < 0)
1072                         goto out_sleep;
1073         }
1074
1075 out_sleep:
1076         wl1251_ps_elp_sleep(wl);
1077
1078 out:
1079         mutex_unlock(&wl->mutex);
1080 }
1081
1082
1083 /* can't be const, mac80211 writes to this */
1084 static struct ieee80211_rate wl1251_rates[] = {
1085         { .bitrate = 10,
1086           .hw_value = 0x1,
1087           .hw_value_short = 0x1, },
1088         { .bitrate = 20,
1089           .hw_value = 0x2,
1090           .hw_value_short = 0x2,
1091           .flags = IEEE80211_RATE_SHORT_PREAMBLE },
1092         { .bitrate = 55,
1093           .hw_value = 0x4,
1094           .hw_value_short = 0x4,
1095           .flags = IEEE80211_RATE_SHORT_PREAMBLE },
1096         { .bitrate = 110,
1097           .hw_value = 0x20,
1098           .hw_value_short = 0x20,
1099           .flags = IEEE80211_RATE_SHORT_PREAMBLE },
1100         { .bitrate = 60,
1101           .hw_value = 0x8,
1102           .hw_value_short = 0x8, },
1103         { .bitrate = 90,
1104           .hw_value = 0x10,
1105           .hw_value_short = 0x10, },
1106         { .bitrate = 120,
1107           .hw_value = 0x40,
1108           .hw_value_short = 0x40, },
1109         { .bitrate = 180,
1110           .hw_value = 0x80,
1111           .hw_value_short = 0x80, },
1112         { .bitrate = 240,
1113           .hw_value = 0x200,
1114           .hw_value_short = 0x200, },
1115         { .bitrate = 360,
1116          .hw_value = 0x400,
1117          .hw_value_short = 0x400, },
1118         { .bitrate = 480,
1119           .hw_value = 0x800,
1120           .hw_value_short = 0x800, },
1121         { .bitrate = 540,
1122           .hw_value = 0x1000,
1123           .hw_value_short = 0x1000, },
1124 };
1125
1126 /* can't be const, mac80211 writes to this */
1127 static struct ieee80211_channel wl1251_channels[] = {
1128         { .hw_value = 1, .center_freq = 2412},
1129         { .hw_value = 2, .center_freq = 2417},
1130         { .hw_value = 3, .center_freq = 2422},
1131         { .hw_value = 4, .center_freq = 2427},
1132         { .hw_value = 5, .center_freq = 2432},
1133         { .hw_value = 6, .center_freq = 2437},
1134         { .hw_value = 7, .center_freq = 2442},
1135         { .hw_value = 8, .center_freq = 2447},
1136         { .hw_value = 9, .center_freq = 2452},
1137         { .hw_value = 10, .center_freq = 2457},
1138         { .hw_value = 11, .center_freq = 2462},
1139         { .hw_value = 12, .center_freq = 2467},
1140         { .hw_value = 13, .center_freq = 2472},
1141 };
1142
1143 static int wl1251_op_conf_tx(struct ieee80211_hw *hw, u16 queue,
1144                              const struct ieee80211_tx_queue_params *params)
1145 {
1146         enum wl1251_acx_ps_scheme ps_scheme;
1147         struct wl1251 *wl = hw->priv;
1148         int ret;
1149
1150         mutex_lock(&wl->mutex);
1151
1152         wl1251_debug(DEBUG_MAC80211, "mac80211 conf tx %d", queue);
1153
1154         ret = wl1251_ps_elp_wakeup(wl);
1155         if (ret < 0)
1156                 goto out;
1157
1158         /* mac80211 uses units of 32 usec */
1159         ret = wl1251_acx_ac_cfg(wl, wl1251_tx_get_queue(queue),
1160                                 params->cw_min, params->cw_max,
1161                                 params->aifs, params->txop * 32);
1162         if (ret < 0)
1163                 goto out_sleep;
1164
1165         if (params->uapsd)
1166                 ps_scheme = WL1251_ACX_PS_SCHEME_UPSD_TRIGGER;
1167         else
1168                 ps_scheme = WL1251_ACX_PS_SCHEME_LEGACY;
1169
1170         ret = wl1251_acx_tid_cfg(wl, wl1251_tx_get_queue(queue),
1171                                  CHANNEL_TYPE_EDCF,
1172                                  wl1251_tx_get_queue(queue), ps_scheme,
1173                                  WL1251_ACX_ACK_POLICY_LEGACY);
1174         if (ret < 0)
1175                 goto out_sleep;
1176
1177 out_sleep:
1178         wl1251_ps_elp_sleep(wl);
1179
1180 out:
1181         mutex_unlock(&wl->mutex);
1182
1183         return ret;
1184 }
1185
1186 /* can't be const, mac80211 writes to this */
1187 static struct ieee80211_supported_band wl1251_band_2ghz = {
1188         .channels = wl1251_channels,
1189         .n_channels = ARRAY_SIZE(wl1251_channels),
1190         .bitrates = wl1251_rates,
1191         .n_bitrates = ARRAY_SIZE(wl1251_rates),
1192 };
1193
1194 static const struct ieee80211_ops wl1251_ops = {
1195         .start = wl1251_op_start,
1196         .stop = wl1251_op_stop,
1197         .add_interface = wl1251_op_add_interface,
1198         .remove_interface = wl1251_op_remove_interface,
1199         .config = wl1251_op_config,
1200         .configure_filter = wl1251_op_configure_filter,
1201         .tx = wl1251_op_tx,
1202         .set_key = wl1251_op_set_key,
1203         .hw_scan = wl1251_op_hw_scan,
1204         .bss_info_changed = wl1251_op_bss_info_changed,
1205         .set_rts_threshold = wl1251_op_set_rts_threshold,
1206         .conf_tx = wl1251_op_conf_tx,
1207 };
1208
1209 static int wl1251_read_eeprom_byte(struct wl1251 *wl, off_t offset, u8 *data)
1210 {
1211         unsigned long timeout;
1212
1213         wl1251_reg_write32(wl, EE_ADDR, offset);
1214         wl1251_reg_write32(wl, EE_CTL, EE_CTL_READ);
1215
1216         /* EE_CTL_READ clears when data is ready */
1217         timeout = jiffies + msecs_to_jiffies(100);
1218         while (1) {
1219                 if (!(wl1251_reg_read32(wl, EE_CTL) & EE_CTL_READ))
1220                         break;
1221
1222                 if (time_after(jiffies, timeout))
1223                         return -ETIMEDOUT;
1224
1225                 msleep(1);
1226         }
1227
1228         *data = wl1251_reg_read32(wl, EE_DATA);
1229         return 0;
1230 }
1231
1232 static int wl1251_read_eeprom(struct wl1251 *wl, off_t offset,
1233                               u8 *data, size_t len)
1234 {
1235         size_t i;
1236         int ret;
1237
1238         wl1251_reg_write32(wl, EE_START, 0);
1239
1240         for (i = 0; i < len; i++) {
1241                 ret = wl1251_read_eeprom_byte(wl, offset + i, &data[i]);
1242                 if (ret < 0)
1243                         return ret;
1244         }
1245
1246         return 0;
1247 }
1248
1249 static int wl1251_read_eeprom_mac(struct wl1251 *wl)
1250 {
1251         u8 mac[ETH_ALEN];
1252         int i, ret;
1253
1254         wl1251_set_partition(wl, 0, 0, REGISTERS_BASE, REGISTERS_DOWN_SIZE);
1255
1256         ret = wl1251_read_eeprom(wl, 0x1c, mac, sizeof(mac));
1257         if (ret < 0) {
1258                 wl1251_warning("failed to read MAC address from EEPROM");
1259                 return ret;
1260         }
1261
1262         /* MAC is stored in reverse order */
1263         for (i = 0; i < ETH_ALEN; i++)
1264                 wl->mac_addr[i] = mac[ETH_ALEN - i - 1];
1265
1266         return 0;
1267 }
1268
1269 static int wl1251_register_hw(struct wl1251 *wl)
1270 {
1271         int ret;
1272
1273         if (wl->mac80211_registered)
1274                 return 0;
1275
1276         SET_IEEE80211_PERM_ADDR(wl->hw, wl->mac_addr);
1277
1278         ret = ieee80211_register_hw(wl->hw);
1279         if (ret < 0) {
1280                 wl1251_error("unable to register mac80211 hw: %d", ret);
1281                 return ret;
1282         }
1283
1284         wl->mac80211_registered = true;
1285
1286         wl1251_notice("loaded");
1287
1288         return 0;
1289 }
1290
1291 int wl1251_init_ieee80211(struct wl1251 *wl)
1292 {
1293         int ret;
1294
1295         /* The tx descriptor buffer and the TKIP space */
1296         wl->hw->extra_tx_headroom = sizeof(struct tx_double_buffer_desc)
1297                 + WL1251_TKIP_IV_SPACE;
1298
1299         /* unit us */
1300         /* FIXME: find a proper value */
1301         wl->hw->channel_change_time = 10000;
1302
1303         wl->hw->flags = IEEE80211_HW_SIGNAL_DBM |
1304                 IEEE80211_HW_NOISE_DBM |
1305                 IEEE80211_HW_SUPPORTS_PS |
1306                 IEEE80211_HW_BEACON_FILTER |
1307                 IEEE80211_HW_SUPPORTS_UAPSD;
1308
1309         wl->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
1310         wl->hw->wiphy->max_scan_ssids = 1;
1311         wl->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &wl1251_band_2ghz;
1312
1313         wl->hw->queues = 4;
1314
1315         if (wl->use_eeprom)
1316                 wl1251_read_eeprom_mac(wl);
1317
1318         ret = wl1251_register_hw(wl);
1319         if (ret)
1320                 goto out;
1321
1322         wl1251_debugfs_init(wl);
1323         wl1251_notice("initialized");
1324
1325         ret = 0;
1326
1327 out:
1328         return ret;
1329 }
1330 EXPORT_SYMBOL_GPL(wl1251_init_ieee80211);
1331
1332 struct ieee80211_hw *wl1251_alloc_hw(void)
1333 {
1334         struct ieee80211_hw *hw;
1335         struct wl1251 *wl;
1336         int i;
1337         static const u8 nokia_oui[3] = {0x00, 0x1f, 0xdf};
1338
1339         hw = ieee80211_alloc_hw(sizeof(*wl), &wl1251_ops);
1340         if (!hw) {
1341                 wl1251_error("could not alloc ieee80211_hw");
1342                 return ERR_PTR(-ENOMEM);
1343         }
1344
1345         wl = hw->priv;
1346         memset(wl, 0, sizeof(*wl));
1347
1348         wl->hw = hw;
1349
1350         wl->data_in_count = 0;
1351
1352         skb_queue_head_init(&wl->tx_queue);
1353
1354         INIT_WORK(&wl->filter_work, wl1251_filter_work);
1355         INIT_DELAYED_WORK(&wl->elp_work, wl1251_elp_work);
1356         wl->channel = WL1251_DEFAULT_CHANNEL;
1357         wl->scanning = false;
1358         wl->default_key = 0;
1359         wl->listen_int = 1;
1360         wl->rx_counter = 0;
1361         wl->rx_handled = 0;
1362         wl->rx_current_buffer = 0;
1363         wl->rx_last_id = 0;
1364         wl->rx_config = WL1251_DEFAULT_RX_CONFIG;
1365         wl->rx_filter = WL1251_DEFAULT_RX_FILTER;
1366         wl->elp = false;
1367         wl->psm = 0;
1368         wl->psm_requested = false;
1369         wl->tx_queue_stopped = false;
1370         wl->power_level = WL1251_DEFAULT_POWER_LEVEL;
1371         wl->beacon_int = WL1251_DEFAULT_BEACON_INT;
1372         wl->dtim_period = WL1251_DEFAULT_DTIM_PERIOD;
1373         wl->vif = NULL;
1374
1375         for (i = 0; i < FW_TX_CMPLT_BLOCK_SIZE; i++)
1376                 wl->tx_frames[i] = NULL;
1377
1378         wl->next_tx_complete = 0;
1379
1380         INIT_WORK(&wl->irq_work, wl1251_irq_work);
1381         INIT_WORK(&wl->tx_work, wl1251_tx_work);
1382
1383         /*
1384          * In case our MAC address is not correctly set,
1385          * we use a random but Nokia MAC.
1386          */
1387         memcpy(wl->mac_addr, nokia_oui, 3);
1388         get_random_bytes(wl->mac_addr + 3, 3);
1389
1390         wl->state = WL1251_STATE_OFF;
1391         mutex_init(&wl->mutex);
1392
1393         wl->tx_mgmt_frm_rate = DEFAULT_HW_GEN_TX_RATE;
1394         wl->tx_mgmt_frm_mod = DEFAULT_HW_GEN_MODULATION_TYPE;
1395
1396         wl->rx_descriptor = kmalloc(sizeof(*wl->rx_descriptor), GFP_KERNEL);
1397         if (!wl->rx_descriptor) {
1398                 wl1251_error("could not allocate memory for rx descriptor");
1399                 ieee80211_free_hw(hw);
1400                 return ERR_PTR(-ENOMEM);
1401         }
1402
1403         return hw;
1404 }
1405 EXPORT_SYMBOL_GPL(wl1251_alloc_hw);
1406
1407 int wl1251_free_hw(struct wl1251 *wl)
1408 {
1409         ieee80211_unregister_hw(wl->hw);
1410
1411         wl1251_debugfs_exit(wl);
1412
1413         kfree(wl->target_mem_map);
1414         kfree(wl->data_path);
1415         vfree(wl->fw);
1416         wl->fw = NULL;
1417         kfree(wl->nvs);
1418         wl->nvs = NULL;
1419
1420         kfree(wl->rx_descriptor);
1421         wl->rx_descriptor = NULL;
1422
1423         ieee80211_free_hw(wl->hw);
1424
1425         return 0;
1426 }
1427 EXPORT_SYMBOL_GPL(wl1251_free_hw);
1428
1429 MODULE_DESCRIPTION("TI wl1251 Wireles LAN Driver Core");
1430 MODULE_LICENSE("GPL");
1431 MODULE_AUTHOR("Kalle Valo <kalle.valo@nokia.com>");
1432 MODULE_ALIAS("spi:wl1251");
1433 MODULE_FIRMWARE(WL1251_FW_NAME);