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