wireless: remove print_mac uses
[pandora-kernel.git] / drivers / net / wireless / mwl8k.c
1 /*
2  * drivers/net/wireless/mwl8k.c driver for Marvell TOPDOG 802.11 Wireless cards
3  *
4  * Copyright (C) 2008 Marvell Semiconductor Inc.
5  *
6  * This file is licensed under the terms of the GNU General Public
7  * License version 2.  This program is licensed "as is" without any
8  * warranty of any kind, whether express or implied.
9  */
10
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/spinlock.h>
15 #include <linux/list.h>
16 #include <linux/pci.h>
17 #include <linux/delay.h>
18 #include <linux/completion.h>
19 #include <linux/etherdevice.h>
20 #include <net/mac80211.h>
21 #include <linux/moduleparam.h>
22 #include <linux/firmware.h>
23 #include <linux/workqueue.h>
24
25 #define MWL8K_DESC      "Marvell TOPDOG(R) 802.11 Wireless Network Driver"
26 #define MWL8K_NAME      KBUILD_MODNAME
27 #define MWL8K_VERSION   "0.9.1"
28
29 MODULE_DESCRIPTION(MWL8K_DESC);
30 MODULE_VERSION(MWL8K_VERSION);
31 MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
32 MODULE_LICENSE("GPL");
33
34 static DEFINE_PCI_DEVICE_TABLE(mwl8k_table) = {
35         { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = 8687, },
36         { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = 8687, },
37         { }
38 };
39 MODULE_DEVICE_TABLE(pci, mwl8k_table);
40
41 #define IEEE80211_ADDR_LEN                      ETH_ALEN
42
43 /* Register definitions */
44 #define MWL8K_HIU_GEN_PTR                       0x00000c10
45 #define  MWL8K_MODE_STA                         0x0000005a
46 #define  MWL8K_MODE_AP                          0x000000a5
47 #define MWL8K_HIU_INT_CODE                      0x00000c14
48 #define  MWL8K_FWSTA_READY                      0xf0f1f2f4
49 #define  MWL8K_FWAP_READY                       0xf1f2f4a5
50 #define  MWL8K_INT_CODE_CMD_FINISHED            0x00000005
51 #define MWL8K_HIU_SCRATCH                       0x00000c40
52
53 /* Host->device communications */
54 #define MWL8K_HIU_H2A_INTERRUPT_EVENTS          0x00000c18
55 #define MWL8K_HIU_H2A_INTERRUPT_STATUS          0x00000c1c
56 #define MWL8K_HIU_H2A_INTERRUPT_MASK            0x00000c20
57 #define MWL8K_HIU_H2A_INTERRUPT_CLEAR_SEL       0x00000c24
58 #define MWL8K_HIU_H2A_INTERRUPT_STATUS_MASK     0x00000c28
59 #define  MWL8K_H2A_INT_DUMMY                    (1 << 20)
60 #define  MWL8K_H2A_INT_RESET                    (1 << 15)
61 #define  MWL8K_H2A_INT_PS                       (1 << 2)
62 #define  MWL8K_H2A_INT_DOORBELL                 (1 << 1)
63 #define  MWL8K_H2A_INT_PPA_READY                (1 << 0)
64
65 /* Device->host communications */
66 #define MWL8K_HIU_A2H_INTERRUPT_EVENTS          0x00000c2c
67 #define MWL8K_HIU_A2H_INTERRUPT_STATUS          0x00000c30
68 #define MWL8K_HIU_A2H_INTERRUPT_MASK            0x00000c34
69 #define MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL       0x00000c38
70 #define MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK     0x00000c3c
71 #define  MWL8K_A2H_INT_DUMMY                    (1 << 20)
72 #define  MWL8K_A2H_INT_CHNL_SWITCHED            (1 << 11)
73 #define  MWL8K_A2H_INT_QUEUE_EMPTY              (1 << 10)
74 #define  MWL8K_A2H_INT_RADAR_DETECT             (1 << 7)
75 #define  MWL8K_A2H_INT_RADIO_ON                 (1 << 6)
76 #define  MWL8K_A2H_INT_RADIO_OFF                (1 << 5)
77 #define  MWL8K_A2H_INT_MAC_EVENT                (1 << 3)
78 #define  MWL8K_A2H_INT_OPC_DONE                 (1 << 2)
79 #define  MWL8K_A2H_INT_RX_READY                 (1 << 1)
80 #define  MWL8K_A2H_INT_TX_DONE                  (1 << 0)
81
82 #define MWL8K_A2H_EVENTS        (MWL8K_A2H_INT_DUMMY | \
83                                  MWL8K_A2H_INT_CHNL_SWITCHED | \
84                                  MWL8K_A2H_INT_QUEUE_EMPTY | \
85                                  MWL8K_A2H_INT_RADAR_DETECT | \
86                                  MWL8K_A2H_INT_RADIO_ON | \
87                                  MWL8K_A2H_INT_RADIO_OFF | \
88                                  MWL8K_A2H_INT_MAC_EVENT | \
89                                  MWL8K_A2H_INT_OPC_DONE | \
90                                  MWL8K_A2H_INT_RX_READY | \
91                                  MWL8K_A2H_INT_TX_DONE)
92
93 /* WME stream classes */
94 #define WME_AC_BE       0               /* best effort */
95 #define WME_AC_BK       1               /* background */
96 #define WME_AC_VI       2               /* video */
97 #define WME_AC_VO       3               /* voice */
98
99 #define MWL8K_RX_QUEUES         1
100 #define MWL8K_TX_QUEUES         4
101
102 struct mwl8k_rx_queue {
103         int rx_desc_count;
104
105         /* hw receives here */
106         int rx_head;
107
108         /* refill descs here */
109         int rx_tail;
110
111         struct mwl8k_rx_desc *rx_desc_area;
112         dma_addr_t rx_desc_dma;
113         struct sk_buff **rx_skb;
114 };
115
116 struct mwl8k_skb {
117         /*
118          * The DMA engine requires a modification to the payload.
119          * If the skbuff is shared/cloned, it needs to be unshared.
120          * This method is used to ensure the stack always gets back
121          * the skbuff it sent for transmission.
122          */
123         struct sk_buff *clone;
124         struct sk_buff *skb;
125 };
126
127 struct mwl8k_tx_queue {
128         /* hw transmits here */
129         int tx_head;
130
131         /* sw appends here */
132         int tx_tail;
133
134         struct ieee80211_tx_queue_stats tx_stats;
135         struct mwl8k_tx_desc *tx_desc_area;
136         dma_addr_t tx_desc_dma;
137         struct mwl8k_skb *tx_skb;
138 };
139
140 /* Pointers to the firmware data and meta information about it.  */
141 struct mwl8k_firmware {
142         /* Microcode */
143         struct firmware *ucode;
144
145         /* Boot helper code */
146         struct firmware *helper;
147 };
148
149 struct mwl8k_priv {
150         void __iomem *regs;
151         struct ieee80211_hw *hw;
152
153         struct pci_dev *pdev;
154         u8 name[16];
155         /* firmware access lock */
156         spinlock_t fw_lock;
157
158         /* firmware files and meta data */
159         struct mwl8k_firmware fw;
160         u32 part_num;
161
162         /* lock held over TX and TX reap */
163         spinlock_t tx_lock;
164         u32 int_mask;
165
166         struct ieee80211_vif *vif;
167         struct list_head vif_list;
168
169         struct ieee80211_channel *current_channel;
170
171         /* power management status cookie from firmware */
172         u32 *cookie;
173         dma_addr_t cookie_dma;
174
175         u16 num_mcaddrs;
176         u16 region_code;
177         u8 hw_rev;
178         __le32 fw_rev;
179         u32 wep_enabled;
180
181         /*
182          * Running count of TX packets in flight, to avoid
183          * iterating over the transmit rings each time.
184          */
185         int pending_tx_pkts;
186
187         struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES];
188         struct mwl8k_tx_queue txq[MWL8K_TX_QUEUES];
189
190         /* PHY parameters */
191         struct ieee80211_supported_band band;
192         struct ieee80211_channel channels[14];
193         struct ieee80211_rate rates[12];
194
195         /* RF preamble: Short, Long or Auto */
196         u8      radio_preamble;
197         u8      radio_state;
198
199         /* WMM MODE 1 for enabled; 0 for disabled */
200         bool wmm_mode;
201
202         /* Set if PHY config is in progress */
203         bool inconfig;
204
205         /* XXX need to convert this to handle multiple interfaces */
206         bool capture_beacon;
207         u8 capture_bssid[IEEE80211_ADDR_LEN];
208         struct sk_buff *beacon_skb;
209
210         /*
211          * This FJ worker has to be global as it is scheduled from the
212          * RX handler.  At this point we don't know which interface it
213          * belongs to until the list of bssids waiting to complete join
214          * is checked.
215          */
216         struct work_struct finalize_join_worker;
217
218         /* Tasklet to reclaim TX descriptors and buffers after tx */
219         struct tasklet_struct tx_reclaim_task;
220
221         /* Work thread to serialize configuration requests */
222         struct workqueue_struct *config_wq;
223         struct completion *hostcmd_wait;
224         struct completion *tx_wait;
225 };
226
227 /* Per interface specific private data */
228 struct mwl8k_vif {
229         struct list_head node;
230
231         /* backpointer to parent config block */
232         struct mwl8k_priv *priv;
233
234         /* BSS config of AP or IBSS from mac80211*/
235         struct ieee80211_bss_conf bss_info;
236
237         /* BSSID of AP or IBSS */
238         u8      bssid[IEEE80211_ADDR_LEN];
239         u8      mac_addr[IEEE80211_ADDR_LEN];
240
241         /*
242          * Subset of supported legacy rates.
243          * Intersection of AP and STA supported rates.
244          */
245         struct ieee80211_rate legacy_rates[12];
246
247         /* number of supported legacy rates */
248         u8      legacy_nrates;
249
250         /* Number of supported MCS rates. Work in progress */
251         u8      mcs_nrates;
252
253          /* Index into station database.Returned by update_sta_db call */
254         u8      peer_id;
255
256         /* Non AMPDU sequence number assigned by driver */
257         u16     seqno;
258
259         /* Note:There is no channel info,
260          * refer to the master channel info in priv
261          */
262 };
263
264 #define MWL8K_VIF(_vif) (struct mwl8k_vif *)(&((_vif)->drv_priv))
265
266 static const struct ieee80211_channel mwl8k_channels[] = {
267         { .center_freq = 2412, .hw_value = 1, },
268         { .center_freq = 2417, .hw_value = 2, },
269         { .center_freq = 2422, .hw_value = 3, },
270         { .center_freq = 2427, .hw_value = 4, },
271         { .center_freq = 2432, .hw_value = 5, },
272         { .center_freq = 2437, .hw_value = 6, },
273         { .center_freq = 2442, .hw_value = 7, },
274         { .center_freq = 2447, .hw_value = 8, },
275         { .center_freq = 2452, .hw_value = 9, },
276         { .center_freq = 2457, .hw_value = 10, },
277         { .center_freq = 2462, .hw_value = 11, },
278 };
279
280 static const struct ieee80211_rate mwl8k_rates[] = {
281         { .bitrate = 10, .hw_value = 2, },
282         { .bitrate = 20, .hw_value = 4, },
283         { .bitrate = 55, .hw_value = 11, },
284         { .bitrate = 60, .hw_value = 12, },
285         { .bitrate = 90, .hw_value = 18, },
286         { .bitrate = 110, .hw_value = 22, },
287         { .bitrate = 120, .hw_value = 24, },
288         { .bitrate = 180, .hw_value = 36, },
289         { .bitrate = 240, .hw_value = 48, },
290         { .bitrate = 360, .hw_value = 72, },
291         { .bitrate = 480, .hw_value = 96, },
292         { .bitrate = 540, .hw_value = 108, },
293 };
294
295 /* Radio settings */
296 #define MWL8K_RADIO_FORCE               0x2
297 #define MWL8K_RADIO_ENABLE              0x1
298 #define MWL8K_RADIO_DISABLE             0x0
299 #define MWL8K_RADIO_AUTO_PREAMBLE       0x0005
300 #define MWL8K_RADIO_SHORT_PREAMBLE      0x0003
301 #define MWL8K_RADIO_LONG_PREAMBLE       0x0001
302
303 /* WMM */
304 #define MWL8K_WMM_ENABLE                1
305 #define MWL8K_WMM_DISABLE               0
306
307 #define MWL8K_RADIO_DEFAULT_PREAMBLE    MWL8K_RADIO_LONG_PREAMBLE
308
309 /* Slot time */
310
311 /* Short Slot: 9us slot time */
312 #define MWL8K_SHORT_SLOTTIME            1
313
314 /* Long slot: 20us slot time */
315 #define MWL8K_LONG_SLOTTIME             0
316
317 /* Set or get info from Firmware */
318 #define MWL8K_CMD_SET                   0x0001
319 #define MWL8K_CMD_GET                   0x0000
320
321 /* Firmware command codes */
322 #define MWL8K_CMD_CODE_DNLD             0x0001
323 #define MWL8K_CMD_GET_HW_SPEC           0x0003
324 #define MWL8K_CMD_MAC_MULTICAST_ADR     0x0010
325 #define MWL8K_CMD_GET_STAT              0x0014
326 #define MWL8K_CMD_RADIO_CONTROL         0x001C
327 #define MWL8K_CMD_RF_TX_POWER           0x001E
328 #define MWL8K_CMD_SET_PRE_SCAN          0x0107
329 #define MWL8K_CMD_SET_POST_SCAN         0x0108
330 #define MWL8K_CMD_SET_RF_CHANNEL        0x010A
331 #define MWL8K_CMD_SET_SLOT              0x0114
332 #define MWL8K_CMD_MIMO_CONFIG           0x0125
333 #define MWL8K_CMD_ENABLE_SNIFFER        0x0150
334 #define MWL8K_CMD_SET_WMM_MODE          0x0123
335 #define MWL8K_CMD_SET_EDCA_PARAMS       0x0115
336 #define MWL8K_CMD_SET_FINALIZE_JOIN     0x0111
337 #define MWL8K_CMD_UPDATE_STADB          0x1123
338 #define MWL8K_CMD_SET_RATEADAPT_MODE    0x0203
339 #define MWL8K_CMD_SET_LINKADAPT_MODE    0x0129
340 #define MWL8K_CMD_SET_AID               0x010d
341 #define MWL8K_CMD_SET_RATE              0x0110
342 #define MWL8K_CMD_USE_FIXED_RATE        0x0126
343 #define MWL8K_CMD_RTS_THRESHOLD         0x0113
344 #define MWL8K_CMD_ENCRYPTION            0x1122
345
346 static const char *mwl8k_cmd_name(u16 cmd, char *buf, int bufsize)
347 {
348 #define MWL8K_CMDNAME(x)        case MWL8K_CMD_##x: do {\
349                                         snprintf(buf, bufsize, "%s", #x);\
350                                         return buf;\
351                                         } while (0)
352         switch (cmd & (~0x8000)) {
353                 MWL8K_CMDNAME(CODE_DNLD);
354                 MWL8K_CMDNAME(GET_HW_SPEC);
355                 MWL8K_CMDNAME(MAC_MULTICAST_ADR);
356                 MWL8K_CMDNAME(GET_STAT);
357                 MWL8K_CMDNAME(RADIO_CONTROL);
358                 MWL8K_CMDNAME(RF_TX_POWER);
359                 MWL8K_CMDNAME(SET_PRE_SCAN);
360                 MWL8K_CMDNAME(SET_POST_SCAN);
361                 MWL8K_CMDNAME(SET_RF_CHANNEL);
362                 MWL8K_CMDNAME(SET_SLOT);
363                 MWL8K_CMDNAME(MIMO_CONFIG);
364                 MWL8K_CMDNAME(ENABLE_SNIFFER);
365                 MWL8K_CMDNAME(SET_WMM_MODE);
366                 MWL8K_CMDNAME(SET_EDCA_PARAMS);
367                 MWL8K_CMDNAME(SET_FINALIZE_JOIN);
368                 MWL8K_CMDNAME(UPDATE_STADB);
369                 MWL8K_CMDNAME(SET_RATEADAPT_MODE);
370                 MWL8K_CMDNAME(SET_LINKADAPT_MODE);
371                 MWL8K_CMDNAME(SET_AID);
372                 MWL8K_CMDNAME(SET_RATE);
373                 MWL8K_CMDNAME(USE_FIXED_RATE);
374                 MWL8K_CMDNAME(RTS_THRESHOLD);
375                 MWL8K_CMDNAME(ENCRYPTION);
376         default:
377                 snprintf(buf, bufsize, "0x%x", cmd);
378         }
379 #undef MWL8K_CMDNAME
380
381         return buf;
382 }
383
384 /* Hardware and firmware reset */
385 static void mwl8k_hw_reset(struct mwl8k_priv *priv)
386 {
387         iowrite32(MWL8K_H2A_INT_RESET,
388                 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
389         iowrite32(MWL8K_H2A_INT_RESET,
390                 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
391         msleep(20);
392 }
393
394 /* Release fw image */
395 static void mwl8k_release_fw(struct firmware **fw)
396 {
397         if (*fw == NULL)
398                 return;
399         release_firmware(*fw);
400         *fw = NULL;
401 }
402
403 static void mwl8k_release_firmware(struct mwl8k_priv *priv)
404 {
405         mwl8k_release_fw(&priv->fw.ucode);
406         mwl8k_release_fw(&priv->fw.helper);
407 }
408
409 /* Request fw image */
410 static int mwl8k_request_fw(struct mwl8k_priv *priv,
411                                 const char *fname, struct firmware **fw)
412 {
413         /* release current image */
414         if (*fw != NULL)
415                 mwl8k_release_fw(fw);
416
417         return request_firmware((const struct firmware **)fw,
418                                                 fname, &priv->pdev->dev);
419 }
420
421 static int mwl8k_request_firmware(struct mwl8k_priv *priv, u32 part_num)
422 {
423         u8 filename[64];
424         int rc;
425
426         priv->part_num = part_num;
427
428         snprintf(filename, sizeof(filename),
429                  "mwl8k/helper_%u.fw", priv->part_num);
430
431         rc = mwl8k_request_fw(priv, filename, &priv->fw.helper);
432         if (rc) {
433                 printk(KERN_ERR
434                         "%s Error requesting helper firmware file %s\n",
435                         pci_name(priv->pdev), filename);
436                 return rc;
437         }
438
439         snprintf(filename, sizeof(filename),
440                  "mwl8k/fmimage_%u.fw", priv->part_num);
441
442         rc = mwl8k_request_fw(priv, filename, &priv->fw.ucode);
443         if (rc) {
444                 printk(KERN_ERR "%s Error requesting firmware file %s\n",
445                                         pci_name(priv->pdev), filename);
446                 mwl8k_release_fw(&priv->fw.helper);
447                 return rc;
448         }
449
450         return 0;
451 }
452
453 struct mwl8k_cmd_pkt {
454         __le16  code;
455         __le16  length;
456         __le16  seq_num;
457         __le16  result;
458         char    payload[0];
459 } __attribute__((packed));
460
461 /*
462  * Firmware loading.
463  */
464 static int
465 mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length)
466 {
467         void __iomem *regs = priv->regs;
468         dma_addr_t dma_addr;
469         int rc;
470         int loops;
471
472         dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE);
473         if (pci_dma_mapping_error(priv->pdev, dma_addr))
474                 return -ENOMEM;
475
476         iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
477         iowrite32(0, regs + MWL8K_HIU_INT_CODE);
478         iowrite32(MWL8K_H2A_INT_DOORBELL,
479                 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
480         iowrite32(MWL8K_H2A_INT_DUMMY,
481                 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
482
483         rc = -ETIMEDOUT;
484         loops = 1000;
485         do {
486                 u32 int_code;
487
488                 int_code = ioread32(regs + MWL8K_HIU_INT_CODE);
489                 if (int_code == MWL8K_INT_CODE_CMD_FINISHED) {
490                         iowrite32(0, regs + MWL8K_HIU_INT_CODE);
491                         rc = 0;
492                         break;
493                 }
494
495                 udelay(1);
496         } while (--loops);
497
498         pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE);
499
500         /*
501          * Clear 'command done' interrupt bit.
502          */
503         loops = 1000;
504         do {
505                 u32 status;
506
507                 status = ioread32(priv->regs +
508                                 MWL8K_HIU_A2H_INTERRUPT_STATUS);
509                 if (status & MWL8K_A2H_INT_OPC_DONE) {
510                         iowrite32(~MWL8K_A2H_INT_OPC_DONE,
511                                 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
512                         ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
513                         break;
514                 }
515
516                 udelay(1);
517         } while (--loops);
518
519         return rc;
520 }
521
522 static int mwl8k_load_fw_image(struct mwl8k_priv *priv,
523                                 const u8 *data, size_t length)
524 {
525         struct mwl8k_cmd_pkt *cmd;
526         int done;
527         int rc = 0;
528
529         cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL);
530         if (cmd == NULL)
531                 return -ENOMEM;
532
533         cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD);
534         cmd->seq_num = 0;
535         cmd->result = 0;
536
537         done = 0;
538         while (length) {
539                 int block_size = length > 256 ? 256 : length;
540
541                 memcpy(cmd->payload, data + done, block_size);
542                 cmd->length = cpu_to_le16(block_size);
543
544                 rc = mwl8k_send_fw_load_cmd(priv, cmd,
545                                                 sizeof(*cmd) + block_size);
546                 if (rc)
547                         break;
548
549                 done += block_size;
550                 length -= block_size;
551         }
552
553         if (!rc) {
554                 cmd->length = 0;
555                 rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd));
556         }
557
558         kfree(cmd);
559
560         return rc;
561 }
562
563 static int mwl8k_feed_fw_image(struct mwl8k_priv *priv,
564                                 const u8 *data, size_t length)
565 {
566         unsigned char *buffer;
567         int may_continue, rc = 0;
568         u32 done, prev_block_size;
569
570         buffer = kmalloc(1024, GFP_KERNEL);
571         if (buffer == NULL)
572                 return -ENOMEM;
573
574         done = 0;
575         prev_block_size = 0;
576         may_continue = 1000;
577         while (may_continue > 0) {
578                 u32 block_size;
579
580                 block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH);
581                 if (block_size & 1) {
582                         block_size &= ~1;
583                         may_continue--;
584                 } else {
585                         done += prev_block_size;
586                         length -= prev_block_size;
587                 }
588
589                 if (block_size > 1024 || block_size > length) {
590                         rc = -EOVERFLOW;
591                         break;
592                 }
593
594                 if (length == 0) {
595                         rc = 0;
596                         break;
597                 }
598
599                 if (block_size == 0) {
600                         rc = -EPROTO;
601                         may_continue--;
602                         udelay(1);
603                         continue;
604                 }
605
606                 prev_block_size = block_size;
607                 memcpy(buffer, data + done, block_size);
608
609                 rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size);
610                 if (rc)
611                         break;
612         }
613
614         if (!rc && length != 0)
615                 rc = -EREMOTEIO;
616
617         kfree(buffer);
618
619         return rc;
620 }
621
622 static int mwl8k_load_firmware(struct mwl8k_priv *priv)
623 {
624         int loops, rc;
625
626         const u8 *ucode = priv->fw.ucode->data;
627         size_t ucode_len = priv->fw.ucode->size;
628         const u8 *helper = priv->fw.helper->data;
629         size_t helper_len = priv->fw.helper->size;
630
631         if (!memcmp(ucode, "\x01\x00\x00\x00", 4)) {
632                 rc = mwl8k_load_fw_image(priv, helper, helper_len);
633                 if (rc) {
634                         printk(KERN_ERR "%s: unable to load firmware "
635                                 "helper image\n", pci_name(priv->pdev));
636                         return rc;
637                 }
638                 msleep(1);
639
640                 rc = mwl8k_feed_fw_image(priv, ucode, ucode_len);
641         } else {
642                 rc = mwl8k_load_fw_image(priv, ucode, ucode_len);
643         }
644
645         if (rc) {
646                 printk(KERN_ERR "%s: unable to load firmware data\n",
647                         pci_name(priv->pdev));
648                 return rc;
649         }
650
651         iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR);
652         msleep(1);
653
654         loops = 200000;
655         do {
656                 if (ioread32(priv->regs + MWL8K_HIU_INT_CODE)
657                                                 == MWL8K_FWSTA_READY)
658                         break;
659                 udelay(1);
660         } while (--loops);
661
662         return loops ? 0 : -ETIMEDOUT;
663 }
664
665
666 /*
667  * Defines shared between transmission and reception.
668  */
669 /* HT control fields for firmware */
670 struct ewc_ht_info {
671         __le16  control1;
672         __le16  control2;
673         __le16  control3;
674 } __attribute__((packed));
675
676 /* Firmware Station database operations */
677 #define MWL8K_STA_DB_ADD_ENTRY          0
678 #define MWL8K_STA_DB_MODIFY_ENTRY       1
679 #define MWL8K_STA_DB_DEL_ENTRY          2
680 #define MWL8K_STA_DB_FLUSH              3
681
682 /* Peer Entry flags - used to define the type of the peer node */
683 #define MWL8K_PEER_TYPE_ACCESSPOINT     2
684 #define MWL8K_PEER_TYPE_ADHOC_STATION   4
685
686 #define MWL8K_IEEE_LEGACY_DATA_RATES    12
687 #define MWL8K_MCS_BITMAP_SIZE           16
688 #define pad_size                        16
689
690 struct peer_capability_info {
691         /* Peer type - AP vs. STA.  */
692         __u8    peer_type;
693
694         /* Basic 802.11 capabilities from assoc resp.  */
695         __le16  basic_caps;
696
697         /* Set if peer supports 802.11n high throughput (HT).  */
698         __u8    ht_support;
699
700         /* Valid if HT is supported.  */
701         __le16  ht_caps;
702         __u8    extended_ht_caps;
703         struct ewc_ht_info      ewc_info;
704
705         /* Legacy rate table. Intersection of our rates and peer rates.  */
706         __u8    legacy_rates[MWL8K_IEEE_LEGACY_DATA_RATES];
707
708         /* HT rate table. Intersection of our rates and peer rates.  */
709         __u8    ht_rates[MWL8K_MCS_BITMAP_SIZE];
710         __u8    pad[pad_size];
711
712         /* If set, interoperability mode, no proprietary extensions.  */
713         __u8    interop;
714         __u8    pad2;
715         __u8    station_id;
716         __le16  amsdu_enabled;
717 } __attribute__((packed));
718
719 /* Inline functions to manipulate QoS field in data descriptor.  */
720 static inline u16 mwl8k_qos_setbit_tid(u16 qos, u8 tid)
721 {
722         u16 val_mask = 0x000f;
723         u16 qos_mask = ~val_mask;
724
725         /* TID bits 0-3 */
726         return (qos & qos_mask) | (tid & val_mask);
727 }
728
729 static inline u16 mwl8k_qos_setbit_eosp(u16 qos)
730 {
731         u16 val_mask = 1 << 4;
732
733         /* End of Service Period Bit 4 */
734         return qos | val_mask;
735 }
736
737 static inline u16 mwl8k_qos_setbit_ack(u16 qos, u8 ack_policy)
738 {
739         u16 val_mask = 0x3;
740         u8      shift = 5;
741         u16 qos_mask = ~(val_mask << shift);
742
743         /* Ack Policy Bit 5-6 */
744         return (qos & qos_mask) | ((ack_policy & val_mask) << shift);
745 }
746
747 static inline u16 mwl8k_qos_setbit_amsdu(u16 qos)
748 {
749         u16 val_mask = 1 << 7;
750
751         /* AMSDU present Bit 7 */
752         return qos | val_mask;
753 }
754
755 static inline u16 mwl8k_qos_setbit_qlen(u16 qos, u8 len)
756 {
757         u16 val_mask = 0xff;
758         u8      shift = 8;
759         u16 qos_mask = ~(val_mask << shift);
760
761         /* Queue Length Bits 8-15 */
762         return (qos & qos_mask) | ((len & val_mask) << shift);
763 }
764
765 /* DMA header used by firmware and hardware.  */
766 struct mwl8k_dma_data {
767         __le16 fwlen;
768         struct ieee80211_hdr wh;
769 } __attribute__((packed));
770
771 /* Routines to add/remove DMA header from skb.  */
772 static inline int mwl8k_remove_dma_header(struct sk_buff *skb)
773 {
774         struct mwl8k_dma_data *tr = (struct mwl8k_dma_data *)(skb->data);
775         void *dst, *src = &tr->wh;
776         __le16 fc = tr->wh.frame_control;
777         int hdrlen = ieee80211_hdrlen(fc);
778         u16 space = sizeof(struct mwl8k_dma_data) - hdrlen;
779
780         dst = (void *)tr + space;
781         if (dst != src) {
782                 memmove(dst, src, hdrlen);
783                 skb_pull(skb, space);
784         }
785
786         return 0;
787 }
788
789 static inline struct sk_buff *mwl8k_add_dma_header(struct sk_buff *skb)
790 {
791         struct ieee80211_hdr *wh;
792         u32 hdrlen, pktlen;
793         struct mwl8k_dma_data *tr;
794
795         wh = (struct ieee80211_hdr *)skb->data;
796         hdrlen = ieee80211_hdrlen(wh->frame_control);
797         pktlen = skb->len;
798
799         /*
800          * Copy up/down the 802.11 header; the firmware requires
801          * we present a 2-byte payload length followed by a
802          * 4-address header (w/o QoS), followed (optionally) by
803          * any WEP/ExtIV header (but only filled in for CCMP).
804          */
805         if (hdrlen != sizeof(struct mwl8k_dma_data))
806                 skb_push(skb, sizeof(struct mwl8k_dma_data) - hdrlen);
807
808         tr = (struct mwl8k_dma_data *)skb->data;
809         if (wh != &tr->wh)
810                 memmove(&tr->wh, wh, hdrlen);
811
812         /* Clear addr4 */
813         memset(tr->wh.addr4, 0, IEEE80211_ADDR_LEN);
814
815         /*
816          * Firmware length is the length of the fully formed "802.11
817          * payload".  That is, everything except for the 802.11 header.
818          * This includes all crypto material including the MIC.
819          */
820         tr->fwlen = cpu_to_le16(pktlen - hdrlen);
821
822         return skb;
823 }
824
825
826 /*
827  * Packet reception.
828  */
829 #define MWL8K_RX_CTRL_KEY_INDEX_MASK    0x30
830 #define MWL8K_RX_CTRL_OWNED_BY_HOST     0x02
831 #define MWL8K_RX_CTRL_AMPDU             0x01
832
833 struct mwl8k_rx_desc {
834         __le16 pkt_len;
835         __u8 link_quality;
836         __u8 noise_level;
837         __le32 pkt_phys_addr;
838         __le32 next_rx_desc_phys_addr;
839         __le16 qos_control;
840         __le16 rate_info;
841         __le32 pad0[4];
842         __u8 rssi;
843         __u8 channel;
844         __le16 pad1;
845         __u8 rx_ctrl;
846         __u8 rx_status;
847         __u8 pad2[2];
848 } __attribute__((packed));
849
850 #define MWL8K_RX_DESCS          256
851 #define MWL8K_RX_MAXSZ          3800
852
853 static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
854 {
855         struct mwl8k_priv *priv = hw->priv;
856         struct mwl8k_rx_queue *rxq = priv->rxq + index;
857         int size;
858         int i;
859
860         rxq->rx_desc_count = 0;
861         rxq->rx_head = 0;
862         rxq->rx_tail = 0;
863
864         size = MWL8K_RX_DESCS * sizeof(struct mwl8k_rx_desc);
865
866         rxq->rx_desc_area =
867                 pci_alloc_consistent(priv->pdev, size, &rxq->rx_desc_dma);
868         if (rxq->rx_desc_area == NULL) {
869                 printk(KERN_ERR "%s: failed to alloc RX descriptors\n",
870                        priv->name);
871                 return -ENOMEM;
872         }
873         memset(rxq->rx_desc_area, 0, size);
874
875         rxq->rx_skb = kmalloc(MWL8K_RX_DESCS *
876                                 sizeof(*rxq->rx_skb), GFP_KERNEL);
877         if (rxq->rx_skb == NULL) {
878                 printk(KERN_ERR "%s: failed to alloc RX skbuff list\n",
879                         priv->name);
880                 pci_free_consistent(priv->pdev, size,
881                                     rxq->rx_desc_area, rxq->rx_desc_dma);
882                 return -ENOMEM;
883         }
884         memset(rxq->rx_skb, 0, MWL8K_RX_DESCS * sizeof(*rxq->rx_skb));
885
886         for (i = 0; i < MWL8K_RX_DESCS; i++) {
887                 struct mwl8k_rx_desc *rx_desc;
888                 int nexti;
889
890                 rx_desc = rxq->rx_desc_area + i;
891                 nexti = (i + 1) % MWL8K_RX_DESCS;
892
893                 rx_desc->next_rx_desc_phys_addr =
894                         cpu_to_le32(rxq->rx_desc_dma
895                                                 + nexti * sizeof(*rx_desc));
896                 rx_desc->rx_ctrl = MWL8K_RX_CTRL_OWNED_BY_HOST;
897         }
898
899         return 0;
900 }
901
902 static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
903 {
904         struct mwl8k_priv *priv = hw->priv;
905         struct mwl8k_rx_queue *rxq = priv->rxq + index;
906         int refilled;
907
908         refilled = 0;
909         while (rxq->rx_desc_count < MWL8K_RX_DESCS && limit--) {
910                 struct sk_buff *skb;
911                 int rx;
912
913                 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
914                 if (skb == NULL)
915                         break;
916
917                 rxq->rx_desc_count++;
918
919                 rx = rxq->rx_tail;
920                 rxq->rx_tail = (rx + 1) % MWL8K_RX_DESCS;
921
922                 rxq->rx_desc_area[rx].pkt_phys_addr =
923                         cpu_to_le32(pci_map_single(priv->pdev, skb->data,
924                                         MWL8K_RX_MAXSZ, DMA_FROM_DEVICE));
925
926                 rxq->rx_desc_area[rx].pkt_len = cpu_to_le16(MWL8K_RX_MAXSZ);
927                 rxq->rx_skb[rx] = skb;
928                 wmb();
929                 rxq->rx_desc_area[rx].rx_ctrl = 0;
930
931                 refilled++;
932         }
933
934         return refilled;
935 }
936
937 /* Must be called only when the card's reception is completely halted */
938 static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
939 {
940         struct mwl8k_priv *priv = hw->priv;
941         struct mwl8k_rx_queue *rxq = priv->rxq + index;
942         int i;
943
944         for (i = 0; i < MWL8K_RX_DESCS; i++) {
945                 if (rxq->rx_skb[i] != NULL) {
946                         unsigned long addr;
947
948                         addr = le32_to_cpu(rxq->rx_desc_area[i].pkt_phys_addr);
949                         pci_unmap_single(priv->pdev, addr, MWL8K_RX_MAXSZ,
950                                          PCI_DMA_FROMDEVICE);
951                         kfree_skb(rxq->rx_skb[i]);
952                         rxq->rx_skb[i] = NULL;
953                 }
954         }
955
956         kfree(rxq->rx_skb);
957         rxq->rx_skb = NULL;
958
959         pci_free_consistent(priv->pdev,
960                             MWL8K_RX_DESCS * sizeof(struct mwl8k_rx_desc),
961                             rxq->rx_desc_area, rxq->rx_desc_dma);
962         rxq->rx_desc_area = NULL;
963 }
964
965
966 /*
967  * Scan a list of BSSIDs to process for finalize join.
968  * Allows for extension to process multiple BSSIDs.
969  */
970 static inline int
971 mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
972 {
973         return priv->capture_beacon &&
974                 ieee80211_is_beacon(wh->frame_control) &&
975                 !compare_ether_addr(wh->addr3, priv->capture_bssid);
976 }
977
978 static inline void mwl8k_save_beacon(struct mwl8k_priv *priv,
979                                                         struct sk_buff *skb)
980 {
981         priv->capture_beacon = false;
982         memset(priv->capture_bssid, 0, IEEE80211_ADDR_LEN);
983
984         /*
985          * Use GFP_ATOMIC as rxq_process is called from
986          * the primary interrupt handler, memory allocation call
987          * must not sleep.
988          */
989         priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
990         if (priv->beacon_skb != NULL)
991                 queue_work(priv->config_wq,
992                                 &priv->finalize_join_worker);
993 }
994
995 static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
996 {
997         struct mwl8k_priv *priv = hw->priv;
998         struct mwl8k_rx_queue *rxq = priv->rxq + index;
999         int processed;
1000
1001         processed = 0;
1002         while (rxq->rx_desc_count && limit--) {
1003                 struct mwl8k_rx_desc *rx_desc;
1004                 struct sk_buff *skb;
1005                 struct ieee80211_rx_status status;
1006                 unsigned long addr;
1007                 struct ieee80211_hdr *wh;
1008
1009                 rx_desc = rxq->rx_desc_area + rxq->rx_head;
1010                 if (!(rx_desc->rx_ctrl & MWL8K_RX_CTRL_OWNED_BY_HOST))
1011                         break;
1012                 rmb();
1013
1014                 skb = rxq->rx_skb[rxq->rx_head];
1015                 rxq->rx_skb[rxq->rx_head] = NULL;
1016
1017                 rxq->rx_head = (rxq->rx_head + 1) % MWL8K_RX_DESCS;
1018                 rxq->rx_desc_count--;
1019
1020                 addr = le32_to_cpu(rx_desc->pkt_phys_addr);
1021                 pci_unmap_single(priv->pdev, addr,
1022                                         MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
1023
1024                 skb_put(skb, le16_to_cpu(rx_desc->pkt_len));
1025                 if (mwl8k_remove_dma_header(skb)) {
1026                         dev_kfree_skb(skb);
1027                         continue;
1028                 }
1029
1030                 wh = (struct ieee80211_hdr *)skb->data;
1031
1032                 /*
1033                  * Check for pending join operation. save a copy of
1034                  * the beacon and schedule a tasklet to send finalize
1035                  * join command to the firmware.
1036                  */
1037                 if (mwl8k_capture_bssid(priv, wh))
1038                         mwl8k_save_beacon(priv, skb);
1039
1040                 memset(&status, 0, sizeof(status));
1041                 status.mactime = 0;
1042                 status.signal = -rx_desc->rssi;
1043                 status.noise = -rx_desc->noise_level;
1044                 status.qual = rx_desc->link_quality;
1045                 status.antenna = 1;
1046                 status.rate_idx = 1;
1047                 status.flag = 0;
1048                 status.band = IEEE80211_BAND_2GHZ;
1049                 status.freq = ieee80211_channel_to_frequency(rx_desc->channel);
1050                 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
1051                 ieee80211_rx_irqsafe(hw, skb);
1052
1053                 processed++;
1054         }
1055
1056         return processed;
1057 }
1058
1059
1060 /*
1061  * Packet transmission.
1062  */
1063
1064 /* Transmit queue assignment.  */
1065 enum {
1066         MWL8K_WME_AC_BK = 0,            /* background access */
1067         MWL8K_WME_AC_BE = 1,            /* best effort access */
1068         MWL8K_WME_AC_VI = 2,            /* video access */
1069         MWL8K_WME_AC_VO = 3,            /* voice access */
1070 };
1071
1072 /* Transmit packet ACK policy */
1073 #define MWL8K_TXD_ACK_POLICY_NORMAL             0
1074 #define MWL8K_TXD_ACK_POLICY_NONE               1
1075 #define MWL8K_TXD_ACK_POLICY_NO_EXPLICIT        2
1076 #define MWL8K_TXD_ACK_POLICY_BLOCKACK           3
1077
1078 #define GET_TXQ(_ac) (\
1079                 ((_ac) == WME_AC_VO) ? MWL8K_WME_AC_VO : \
1080                 ((_ac) == WME_AC_VI) ? MWL8K_WME_AC_VI : \
1081                 ((_ac) == WME_AC_BK) ? MWL8K_WME_AC_BK : \
1082                 MWL8K_WME_AC_BE)
1083
1084 #define MWL8K_TXD_STATUS_IDLE                   0x00000000
1085 #define MWL8K_TXD_STATUS_USED                   0x00000001
1086 #define MWL8K_TXD_STATUS_OK                     0x00000001
1087 #define MWL8K_TXD_STATUS_OK_RETRY               0x00000002
1088 #define MWL8K_TXD_STATUS_OK_MORE_RETRY          0x00000004
1089 #define MWL8K_TXD_STATUS_MULTICAST_TX           0x00000008
1090 #define MWL8K_TXD_STATUS_BROADCAST_TX           0x00000010
1091 #define MWL8K_TXD_STATUS_FAILED_LINK_ERROR      0x00000020
1092 #define MWL8K_TXD_STATUS_FAILED_EXCEED_LIMIT    0x00000040
1093 #define MWL8K_TXD_STATUS_FAILED_AGING           0x00000080
1094 #define MWL8K_TXD_STATUS_HOST_CMD               0x40000000
1095 #define MWL8K_TXD_STATUS_FW_OWNED               0x80000000
1096 #define  MWL8K_TXD_SOFTSTALE                            0x80
1097 #define  MWL8K_TXD_SOFTSTALE_MGMT_RETRY                 0x01
1098
1099 struct mwl8k_tx_desc {
1100         __le32 status;
1101         __u8 data_rate;
1102         __u8 tx_priority;
1103         __le16 qos_control;
1104         __le32 pkt_phys_addr;
1105         __le16 pkt_len;
1106         __u8 dest_MAC_addr[IEEE80211_ADDR_LEN];
1107         __le32 next_tx_desc_phys_addr;
1108         __le32 reserved;
1109         __le16 rate_info;
1110         __u8 peer_id;
1111         __u8 tx_frag_cnt;
1112 } __attribute__((packed));
1113
1114 #define MWL8K_TX_DESCS          128
1115
1116 static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1117 {
1118         struct mwl8k_priv *priv = hw->priv;
1119         struct mwl8k_tx_queue *txq = priv->txq + index;
1120         int size;
1121         int i;
1122
1123         memset(&txq->tx_stats, 0,
1124                 sizeof(struct ieee80211_tx_queue_stats));
1125         txq->tx_stats.limit = MWL8K_TX_DESCS;
1126         txq->tx_head = 0;
1127         txq->tx_tail = 0;
1128
1129         size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1130
1131         txq->tx_desc_area =
1132                 pci_alloc_consistent(priv->pdev, size, &txq->tx_desc_dma);
1133         if (txq->tx_desc_area == NULL) {
1134                 printk(KERN_ERR "%s: failed to alloc TX descriptors\n",
1135                        priv->name);
1136                 return -ENOMEM;
1137         }
1138         memset(txq->tx_desc_area, 0, size);
1139
1140         txq->tx_skb = kmalloc(MWL8K_TX_DESCS * sizeof(*txq->tx_skb),
1141                                                                 GFP_KERNEL);
1142         if (txq->tx_skb == NULL) {
1143                 printk(KERN_ERR "%s: failed to alloc TX skbuff list\n",
1144                        priv->name);
1145                 pci_free_consistent(priv->pdev, size,
1146                                     txq->tx_desc_area, txq->tx_desc_dma);
1147                 return -ENOMEM;
1148         }
1149         memset(txq->tx_skb, 0, MWL8K_TX_DESCS * sizeof(*txq->tx_skb));
1150
1151         for (i = 0; i < MWL8K_TX_DESCS; i++) {
1152                 struct mwl8k_tx_desc *tx_desc;
1153                 int nexti;
1154
1155                 tx_desc = txq->tx_desc_area + i;
1156                 nexti = (i + 1) % MWL8K_TX_DESCS;
1157
1158                 tx_desc->status = 0;
1159                 tx_desc->next_tx_desc_phys_addr =
1160                         cpu_to_le32(txq->tx_desc_dma +
1161                                                 nexti * sizeof(*tx_desc));
1162         }
1163
1164         return 0;
1165 }
1166
1167 static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1168 {
1169         iowrite32(MWL8K_H2A_INT_PPA_READY,
1170                 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1171         iowrite32(MWL8K_H2A_INT_DUMMY,
1172                 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1173         ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1174 }
1175
1176 static inline int mwl8k_txq_busy(struct mwl8k_priv *priv)
1177 {
1178         return priv->pending_tx_pkts;
1179 }
1180
1181 struct mwl8k_txq_info {
1182         u32 fw_owned;
1183         u32 drv_owned;
1184         u32 unused;
1185         u32 len;
1186         u32 head;
1187         u32 tail;
1188 };
1189
1190 static int mwl8k_scan_tx_ring(struct mwl8k_priv *priv,
1191                                 struct mwl8k_txq_info txinfo[],
1192                                 u32 num_queues)
1193 {
1194         int count, desc, status;
1195         struct mwl8k_tx_queue *txq;
1196         struct mwl8k_tx_desc *tx_desc;
1197         int ndescs = 0;
1198
1199         memset(txinfo, 0, num_queues * sizeof(struct mwl8k_txq_info));
1200         spin_lock_bh(&priv->tx_lock);
1201         for (count = 0; count < num_queues; count++) {
1202                 txq = priv->txq + count;
1203                 txinfo[count].len = txq->tx_stats.len;
1204                 txinfo[count].head = txq->tx_head;
1205                 txinfo[count].tail = txq->tx_tail;
1206                 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
1207                         tx_desc = txq->tx_desc_area + desc;
1208                         status = le32_to_cpu(tx_desc->status);
1209
1210                         if (status & MWL8K_TXD_STATUS_FW_OWNED)
1211                                 txinfo[count].fw_owned++;
1212                         else
1213                                 txinfo[count].drv_owned++;
1214
1215                         if (tx_desc->pkt_len == 0)
1216                                 txinfo[count].unused++;
1217                 }
1218         }
1219         spin_unlock_bh(&priv->tx_lock);
1220
1221         return ndescs;
1222 }
1223
1224 static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw, u32 delay_ms)
1225 {
1226         u32 count = 0;
1227         unsigned long timeout = 0;
1228         struct mwl8k_priv *priv = hw->priv;
1229         DECLARE_COMPLETION_ONSTACK(cmd_wait);
1230
1231         might_sleep();
1232
1233         if (priv->tx_wait != NULL)
1234                 printk(KERN_ERR "WARNING Previous TXWaitEmpty instance\n");
1235
1236         spin_lock_bh(&priv->tx_lock);
1237         count = mwl8k_txq_busy(priv);
1238         if (count) {
1239                 priv->tx_wait = &cmd_wait;
1240                 if (priv->radio_state)
1241                         mwl8k_tx_start(priv);
1242         }
1243         spin_unlock_bh(&priv->tx_lock);
1244
1245         if (count) {
1246                 struct mwl8k_txq_info txinfo[4];
1247                 int index;
1248                 int newcount;
1249
1250                 timeout = wait_for_completion_timeout(&cmd_wait,
1251                                         msecs_to_jiffies(delay_ms));
1252                 if (timeout)
1253                         return 0;
1254
1255                 spin_lock_bh(&priv->tx_lock);
1256                 priv->tx_wait = NULL;
1257                 newcount = mwl8k_txq_busy(priv);
1258                 spin_unlock_bh(&priv->tx_lock);
1259
1260                 printk(KERN_ERR "%s(%u) TIMEDOUT:%ums Pend:%u-->%u\n",
1261                        __func__, __LINE__, delay_ms, count, newcount);
1262
1263                 mwl8k_scan_tx_ring(priv, txinfo, 4);
1264                 for (index = 0 ; index < 4; index++)
1265                         printk(KERN_ERR
1266                                 "TXQ:%u L:%u H:%u T:%u FW:%u DRV:%u U:%u\n",
1267                                         index,
1268                                         txinfo[index].len,
1269                                         txinfo[index].head,
1270                                         txinfo[index].tail,
1271                                         txinfo[index].fw_owned,
1272                                         txinfo[index].drv_owned,
1273                                         txinfo[index].unused);
1274                 return -ETIMEDOUT;
1275         }
1276
1277         return 0;
1278 }
1279
1280 #define MWL8K_TXD_OK    (MWL8K_TXD_STATUS_OK | \
1281                          MWL8K_TXD_STATUS_OK_RETRY | \
1282                          MWL8K_TXD_STATUS_OK_MORE_RETRY)
1283 #define MWL8K_TXD_SUCCESS(stat)         ((stat) & MWL8K_TXD_OK)
1284 #define MWL8K_TXD_FAIL_RETRY(stat)      \
1285         ((stat) & (MWL8K_TXD_STATUS_FAILED_EXCEED_LIMIT))
1286
1287 static void mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int force)
1288 {
1289         struct mwl8k_priv *priv = hw->priv;
1290         struct mwl8k_tx_queue *txq = priv->txq + index;
1291         int wake = 0;
1292
1293         while (txq->tx_stats.len > 0) {
1294                 int tx;
1295                 int rc;
1296                 struct mwl8k_tx_desc *tx_desc;
1297                 unsigned long addr;
1298                 size_t size;
1299                 struct sk_buff *skb;
1300                 struct ieee80211_tx_info *info;
1301                 u32 status;
1302
1303                 rc = 0;
1304                 tx = txq->tx_head;
1305                 tx_desc = txq->tx_desc_area + tx;
1306
1307                 status = le32_to_cpu(tx_desc->status);
1308
1309                 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1310                         if (!force)
1311                                 break;
1312                         tx_desc->status &=
1313                                 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1314                 }
1315
1316                 txq->tx_head = (tx + 1) % MWL8K_TX_DESCS;
1317                 BUG_ON(txq->tx_stats.len == 0);
1318                 txq->tx_stats.len--;
1319                 priv->pending_tx_pkts--;
1320
1321                 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
1322                 size = (u32)(le16_to_cpu(tx_desc->pkt_len));
1323                 skb = txq->tx_skb[tx].skb;
1324                 txq->tx_skb[tx].skb = NULL;
1325
1326                 BUG_ON(skb == NULL);
1327                 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1328
1329                 rc = mwl8k_remove_dma_header(skb);
1330
1331                 /* Mark descriptor as unused */
1332                 tx_desc->pkt_phys_addr = 0;
1333                 tx_desc->pkt_len = 0;
1334
1335                 if (txq->tx_skb[tx].clone) {
1336                         /* Replace with original skb
1337                          * before returning to stack
1338                          * as buffer has been cloned
1339                          */
1340                         dev_kfree_skb(skb);
1341                         skb = txq->tx_skb[tx].clone;
1342                         txq->tx_skb[tx].clone = NULL;
1343                 }
1344
1345                 if (rc) {
1346                         /* Something has gone wrong here.
1347                          * Failed to remove DMA header.
1348                          * Print error message and drop packet.
1349                          */
1350                         printk(KERN_ERR "%s: Error removing DMA header from "
1351                                         "tx skb 0x%p.\n", priv->name, skb);
1352
1353                         dev_kfree_skb(skb);
1354                         continue;
1355                 }
1356
1357                 info = IEEE80211_SKB_CB(skb);
1358                 ieee80211_tx_info_clear_status(info);
1359
1360                 /* Convert firmware status stuff into tx_status */
1361                 if (MWL8K_TXD_SUCCESS(status)) {
1362                         /* Transmit OK */
1363                         info->flags |= IEEE80211_TX_STAT_ACK;
1364                 }
1365
1366                 ieee80211_tx_status_irqsafe(hw, skb);
1367
1368                 wake = !priv->inconfig && priv->radio_state;
1369         }
1370
1371         if (wake)
1372                 ieee80211_wake_queue(hw, index);
1373 }
1374
1375 /* must be called only when the card's transmit is completely halted */
1376 static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1377 {
1378         struct mwl8k_priv *priv = hw->priv;
1379         struct mwl8k_tx_queue *txq = priv->txq + index;
1380
1381         mwl8k_txq_reclaim(hw, index, 1);
1382
1383         kfree(txq->tx_skb);
1384         txq->tx_skb = NULL;
1385
1386         pci_free_consistent(priv->pdev,
1387                             MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
1388                             txq->tx_desc_area, txq->tx_desc_dma);
1389         txq->tx_desc_area = NULL;
1390 }
1391
1392 static int
1393 mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb)
1394 {
1395         struct mwl8k_priv *priv = hw->priv;
1396         struct ieee80211_tx_info *tx_info;
1397         struct ieee80211_hdr *wh;
1398         struct mwl8k_tx_queue *txq;
1399         struct mwl8k_tx_desc *tx;
1400         struct mwl8k_dma_data *tr;
1401         struct mwl8k_vif *mwl8k_vif;
1402         struct sk_buff *org_skb = skb;
1403         dma_addr_t dma;
1404         u16 qos = 0;
1405         bool qosframe = false, ampduframe = false;
1406         bool mcframe = false, eapolframe = false;
1407         bool amsduframe = false;
1408         __le16 fc;
1409
1410         txq = priv->txq + index;
1411         tx = txq->tx_desc_area + txq->tx_tail;
1412
1413         BUG_ON(txq->tx_skb[txq->tx_tail].skb != NULL);
1414
1415         /*
1416          * Append HW DMA header to start of packet.  Drop packet if
1417          * there is not enough space or a failure to unshare/unclone
1418          * the skb.
1419          */
1420         skb = mwl8k_add_dma_header(skb);
1421
1422         if (skb == NULL) {
1423                 printk(KERN_DEBUG "%s: failed to prepend HW DMA "
1424                         "header, dropping TX frame.\n", priv->name);
1425                 dev_kfree_skb(org_skb);
1426                 return NETDEV_TX_OK;
1427         }
1428
1429         tx_info = IEEE80211_SKB_CB(skb);
1430         mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
1431         tr = (struct mwl8k_dma_data *)skb->data;
1432         wh = &tr->wh;
1433         fc = wh->frame_control;
1434         qosframe = ieee80211_is_data_qos(fc);
1435         mcframe = is_multicast_ether_addr(wh->addr1);
1436         ampduframe = !!(tx_info->flags & IEEE80211_TX_CTL_AMPDU);
1437
1438         if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1439                 u16 seqno = mwl8k_vif->seqno;
1440                 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
1441                 wh->seq_ctrl |= cpu_to_le16(seqno << 4);
1442                 mwl8k_vif->seqno = seqno++ % 4096;
1443         }
1444
1445         if (qosframe)
1446                 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1447
1448         dma = pci_map_single(priv->pdev, skb->data,
1449                                 skb->len, PCI_DMA_TODEVICE);
1450
1451         if (pci_dma_mapping_error(priv->pdev, dma)) {
1452                 printk(KERN_DEBUG "%s: failed to dma map skb, "
1453                         "dropping TX frame.\n", priv->name);
1454
1455                 if (org_skb != NULL)
1456                         dev_kfree_skb(org_skb);
1457                 if (skb != NULL)
1458                         dev_kfree_skb(skb);
1459                 return NETDEV_TX_OK;
1460         }
1461
1462         /* Set desc header, cpu bit order.  */
1463         tx->status = 0;
1464         tx->data_rate = 0;
1465         tx->tx_priority = index;
1466         tx->qos_control = 0;
1467         tx->rate_info = 0;
1468         tx->peer_id = mwl8k_vif->peer_id;
1469
1470         amsduframe = !!(qos & IEEE80211_QOS_CONTROL_A_MSDU_PRESENT);
1471
1472         /* Setup firmware control bit fields for each frame type.  */
1473         if (ieee80211_is_mgmt(fc) || ieee80211_is_ctl(fc)) {
1474                 tx->data_rate = 0;
1475                 qos = mwl8k_qos_setbit_eosp(qos);
1476                 /* Set Queue size to unspecified */
1477                 qos = mwl8k_qos_setbit_qlen(qos, 0xff);
1478         } else if (ieee80211_is_data(fc)) {
1479                 tx->data_rate = 1;
1480                 if (mcframe)
1481                         tx->status |= MWL8K_TXD_STATUS_MULTICAST_TX;
1482
1483                 /*
1484                  * Tell firmware to not send EAPOL pkts in an
1485                  * aggregate.  Verify against mac80211 tx path.  If
1486                  * stack turns off AMPDU for an EAPOL frame this
1487                  * check will be removed.
1488                  */
1489                 if (eapolframe) {
1490                         qos = mwl8k_qos_setbit_ack(qos,
1491                                 MWL8K_TXD_ACK_POLICY_NORMAL);
1492                 } else {
1493                         /* Send pkt in an aggregate if AMPDU frame.  */
1494                         if (ampduframe)
1495                                 qos = mwl8k_qos_setbit_ack(qos,
1496                                         MWL8K_TXD_ACK_POLICY_BLOCKACK);
1497                         else
1498                                 qos = mwl8k_qos_setbit_ack(qos,
1499                                         MWL8K_TXD_ACK_POLICY_NORMAL);
1500
1501                         if (amsduframe)
1502                                 qos = mwl8k_qos_setbit_amsdu(qos);
1503                 }
1504         }
1505
1506         /* Convert to little endian */
1507         tx->qos_control = cpu_to_le16(qos);
1508         tx->status = cpu_to_le32(tx->status);
1509         tx->pkt_phys_addr = cpu_to_le32(dma);
1510         tx->pkt_len = cpu_to_le16(skb->len);
1511
1512         txq->tx_skb[txq->tx_tail].skb = skb;
1513         txq->tx_skb[txq->tx_tail].clone =
1514                 skb == org_skb ? NULL : org_skb;
1515
1516         spin_lock_bh(&priv->tx_lock);
1517
1518         tx->status = cpu_to_le32(MWL8K_TXD_STATUS_OK |
1519                                         MWL8K_TXD_STATUS_FW_OWNED);
1520         wmb();
1521         txq->tx_stats.len++;
1522         priv->pending_tx_pkts++;
1523         txq->tx_stats.count++;
1524         txq->tx_tail++;
1525
1526         if (txq->tx_tail == MWL8K_TX_DESCS)
1527                 txq->tx_tail = 0;
1528         if (txq->tx_head == txq->tx_tail)
1529                 ieee80211_stop_queue(hw, index);
1530
1531         if (priv->inconfig) {
1532                 /*
1533                  * Silently queue packet when we are in the middle of
1534                  * a config cycle.  Notify firmware only if we are
1535                  * waiting for TXQs to empty.  If a packet is sent
1536                  * before .config() is complete, perhaps it is better
1537                  * to drop the packet, as the channel is being changed
1538                  * and the packet will end up on the wrong channel.
1539                  */
1540                 printk(KERN_ERR "%s(): WARNING TX activity while "
1541                         "in config\n", __func__);
1542
1543                 if (priv->tx_wait != NULL)
1544                         mwl8k_tx_start(priv);
1545         } else
1546                 mwl8k_tx_start(priv);
1547
1548         spin_unlock_bh(&priv->tx_lock);
1549
1550         return NETDEV_TX_OK;
1551 }
1552
1553
1554 /*
1555  * Command processing.
1556  */
1557
1558 /* Timeout firmware commands after 2000ms */
1559 #define MWL8K_CMD_TIMEOUT_MS    2000
1560
1561 static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
1562 {
1563         DECLARE_COMPLETION_ONSTACK(cmd_wait);
1564         struct mwl8k_priv *priv = hw->priv;
1565         void __iomem *regs = priv->regs;
1566         dma_addr_t dma_addr;
1567         unsigned int dma_size;
1568         int rc;
1569         u16 __iomem *result;
1570         unsigned long timeout = 0;
1571         u8 buf[32];
1572
1573         cmd->result = 0xFFFF;
1574         dma_size = le16_to_cpu(cmd->length);
1575         dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
1576                                   PCI_DMA_BIDIRECTIONAL);
1577         if (pci_dma_mapping_error(priv->pdev, dma_addr))
1578                 return -ENOMEM;
1579
1580         if (priv->hostcmd_wait != NULL)
1581                 printk(KERN_ERR "WARNING host command in progress\n");
1582
1583         spin_lock_irq(&priv->fw_lock);
1584         priv->hostcmd_wait = &cmd_wait;
1585         iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
1586         iowrite32(MWL8K_H2A_INT_DOORBELL,
1587                 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1588         iowrite32(MWL8K_H2A_INT_DUMMY,
1589                 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1590         spin_unlock_irq(&priv->fw_lock);
1591
1592         timeout = wait_for_completion_timeout(&cmd_wait,
1593                                 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
1594
1595         result = &cmd->result;
1596         if (!timeout) {
1597                 spin_lock_irq(&priv->fw_lock);
1598                 priv->hostcmd_wait = NULL;
1599                 spin_unlock_irq(&priv->fw_lock);
1600                 printk(KERN_ERR "%s: Command %s timeout after %u ms\n",
1601                        priv->name,
1602                        mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
1603                        MWL8K_CMD_TIMEOUT_MS);
1604                 rc = -ETIMEDOUT;
1605         } else {
1606                 rc = *result ? -EINVAL : 0;
1607                 if (rc)
1608                         printk(KERN_ERR "%s: Command %s error 0x%x\n",
1609                                priv->name,
1610                                mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
1611                                *result);
1612         }
1613
1614         pci_unmap_single(priv->pdev, dma_addr, dma_size,
1615                                         PCI_DMA_BIDIRECTIONAL);
1616         return rc;
1617 }
1618
1619 /*
1620  * GET_HW_SPEC.
1621  */
1622 struct mwl8k_cmd_get_hw_spec {
1623         struct mwl8k_cmd_pkt header;
1624         __u8 hw_rev;
1625         __u8 host_interface;
1626         __le16 num_mcaddrs;
1627         __u8 perm_addr[IEEE80211_ADDR_LEN];
1628         __le16 region_code;
1629         __le32 fw_rev;
1630         __le32 ps_cookie;
1631         __le32 caps;
1632         __u8 mcs_bitmap[16];
1633         __le32 rx_queue_ptr;
1634         __le32 num_tx_queues;
1635         __le32 tx_queue_ptrs[MWL8K_TX_QUEUES];
1636         __le32 caps2;
1637         __le32 num_tx_desc_per_queue;
1638         __le32 total_rx_desc;
1639 } __attribute__((packed));
1640
1641 static int mwl8k_cmd_get_hw_spec(struct ieee80211_hw *hw)
1642 {
1643         struct mwl8k_priv *priv = hw->priv;
1644         struct mwl8k_cmd_get_hw_spec *cmd;
1645         int rc;
1646         int i;
1647
1648         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1649         if (cmd == NULL)
1650                 return -ENOMEM;
1651
1652         cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
1653         cmd->header.length = cpu_to_le16(sizeof(*cmd));
1654
1655         memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
1656         cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
1657         cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rx_desc_dma);
1658         cmd->num_tx_queues = MWL8K_TX_QUEUES;
1659         for (i = 0; i < MWL8K_TX_QUEUES; i++)
1660                 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].tx_desc_dma);
1661         cmd->num_tx_desc_per_queue = MWL8K_TX_DESCS;
1662         cmd->total_rx_desc = MWL8K_RX_DESCS;
1663
1664         rc = mwl8k_post_cmd(hw, &cmd->header);
1665
1666         if (!rc) {
1667                 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
1668                 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
1669                 priv->fw_rev = cmd->fw_rev;
1670                 priv->hw_rev = cmd->hw_rev;
1671                 priv->region_code = le16_to_cpu(cmd->region_code);
1672         }
1673
1674         kfree(cmd);
1675         return rc;
1676 }
1677
1678 /*
1679  * CMD_MAC_MULTICAST_ADR.
1680  */
1681 struct mwl8k_cmd_mac_multicast_adr {
1682         struct mwl8k_cmd_pkt header;
1683         __le16 action;
1684         __le16 numaddr;
1685         __u8 addr[1][IEEE80211_ADDR_LEN];
1686 };
1687
1688 #define MWL8K_ENABLE_RX_MULTICAST 0x000F
1689 static int mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw,
1690                                         int mc_count,
1691                                         struct dev_addr_list *mclist)
1692 {
1693         struct mwl8k_cmd_mac_multicast_adr *cmd;
1694         int index = 0;
1695         int rc;
1696         int size = sizeof(*cmd) + ((mc_count - 1) * IEEE80211_ADDR_LEN);
1697         cmd = kzalloc(size, GFP_KERNEL);
1698         if (cmd == NULL)
1699                 return -ENOMEM;
1700
1701         cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
1702         cmd->header.length = cpu_to_le16(size);
1703         cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
1704         cmd->numaddr = cpu_to_le16(mc_count);
1705         while ((index < mc_count) && mclist) {
1706                 if (mclist->da_addrlen != IEEE80211_ADDR_LEN) {
1707                         rc = -EINVAL;
1708                         goto mwl8k_cmd_mac_multicast_adr_exit;
1709                 }
1710                 memcpy(cmd->addr[index], mclist->da_addr, IEEE80211_ADDR_LEN);
1711                 index++;
1712                 mclist = mclist->next;
1713         }
1714
1715         rc = mwl8k_post_cmd(hw, &cmd->header);
1716
1717 mwl8k_cmd_mac_multicast_adr_exit:
1718         kfree(cmd);
1719         return rc;
1720 }
1721
1722 /*
1723  * CMD_802_11_GET_STAT.
1724  */
1725 struct mwl8k_cmd_802_11_get_stat {
1726         struct mwl8k_cmd_pkt header;
1727         __le16 action;
1728         __le32 stats[64];
1729 } __attribute__((packed));
1730
1731 #define MWL8K_STAT_ACK_FAILURE  9
1732 #define MWL8K_STAT_RTS_FAILURE  12
1733 #define MWL8K_STAT_FCS_ERROR    24
1734 #define MWL8K_STAT_RTS_SUCCESS  11
1735
1736 static int mwl8k_cmd_802_11_get_stat(struct ieee80211_hw *hw,
1737                                 struct ieee80211_low_level_stats *stats)
1738 {
1739         struct mwl8k_cmd_802_11_get_stat *cmd;
1740         int rc;
1741
1742         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1743         if (cmd == NULL)
1744                 return -ENOMEM;
1745
1746         cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
1747         cmd->header.length = cpu_to_le16(sizeof(*cmd));
1748         cmd->action = cpu_to_le16(MWL8K_CMD_GET);
1749
1750         rc = mwl8k_post_cmd(hw, &cmd->header);
1751         if (!rc) {
1752                 stats->dot11ACKFailureCount =
1753                         le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
1754                 stats->dot11RTSFailureCount =
1755                         le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
1756                 stats->dot11FCSErrorCount =
1757                         le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
1758                 stats->dot11RTSSuccessCount =
1759                         le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
1760         }
1761         kfree(cmd);
1762
1763         return rc;
1764 }
1765
1766 /*
1767  * CMD_802_11_RADIO_CONTROL.
1768  */
1769 struct mwl8k_cmd_802_11_radio_control {
1770         struct mwl8k_cmd_pkt header;
1771         __le16 action;
1772         __le16 control;
1773         __le16 radio_on;
1774 } __attribute__((packed));
1775
1776 static int mwl8k_cmd_802_11_radio_control(struct ieee80211_hw *hw, int enable)
1777 {
1778         struct mwl8k_priv *priv = hw->priv;
1779         struct mwl8k_cmd_802_11_radio_control *cmd;
1780         int rc;
1781
1782         if (((enable & MWL8K_RADIO_ENABLE) == priv->radio_state) &&
1783             !(enable & MWL8K_RADIO_FORCE))
1784                 return 0;
1785
1786         enable &= MWL8K_RADIO_ENABLE;
1787
1788         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1789         if (cmd == NULL)
1790                 return -ENOMEM;
1791
1792         cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
1793         cmd->header.length = cpu_to_le16(sizeof(*cmd));
1794         cmd->action = cpu_to_le16(MWL8K_CMD_SET);
1795         cmd->control = cpu_to_le16(priv->radio_preamble);
1796         cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
1797
1798         rc = mwl8k_post_cmd(hw, &cmd->header);
1799         kfree(cmd);
1800
1801         if (!rc)
1802                 priv->radio_state = enable;
1803
1804         return rc;
1805 }
1806
1807 static int
1808 mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
1809 {
1810         struct mwl8k_priv *priv;
1811
1812         if (hw == NULL || hw->priv == NULL)
1813                 return -EINVAL;
1814         priv = hw->priv;
1815
1816         priv->radio_preamble = (short_preamble ?
1817                 MWL8K_RADIO_SHORT_PREAMBLE :
1818                 MWL8K_RADIO_LONG_PREAMBLE);
1819
1820         return mwl8k_cmd_802_11_radio_control(hw,
1821                         MWL8K_RADIO_ENABLE | MWL8K_RADIO_FORCE);
1822 }
1823
1824 /*
1825  * CMD_802_11_RF_TX_POWER.
1826  */
1827 #define MWL8K_TX_POWER_LEVEL_TOTAL      8
1828
1829 struct mwl8k_cmd_802_11_rf_tx_power {
1830         struct mwl8k_cmd_pkt header;
1831         __le16 action;
1832         __le16 support_level;
1833         __le16 current_level;
1834         __le16 reserved;
1835         __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
1836 } __attribute__((packed));
1837
1838 static int mwl8k_cmd_802_11_rf_tx_power(struct ieee80211_hw *hw, int dBm)
1839 {
1840         struct mwl8k_cmd_802_11_rf_tx_power *cmd;
1841         int rc;
1842
1843         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1844         if (cmd == NULL)
1845                 return -ENOMEM;
1846
1847         cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
1848         cmd->header.length = cpu_to_le16(sizeof(*cmd));
1849         cmd->action = cpu_to_le16(MWL8K_CMD_SET);
1850         cmd->support_level = cpu_to_le16(dBm);
1851
1852         rc = mwl8k_post_cmd(hw, &cmd->header);
1853         kfree(cmd);
1854
1855         return rc;
1856 }
1857
1858 /*
1859  * CMD_SET_PRE_SCAN.
1860  */
1861 struct mwl8k_cmd_set_pre_scan {
1862         struct mwl8k_cmd_pkt header;
1863 } __attribute__((packed));
1864
1865 static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
1866 {
1867         struct mwl8k_cmd_set_pre_scan *cmd;
1868         int rc;
1869
1870         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1871         if (cmd == NULL)
1872                 return -ENOMEM;
1873
1874         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
1875         cmd->header.length = cpu_to_le16(sizeof(*cmd));
1876
1877         rc = mwl8k_post_cmd(hw, &cmd->header);
1878         kfree(cmd);
1879
1880         return rc;
1881 }
1882
1883 /*
1884  * CMD_SET_POST_SCAN.
1885  */
1886 struct mwl8k_cmd_set_post_scan {
1887         struct mwl8k_cmd_pkt header;
1888         __le32 isibss;
1889         __u8 bssid[IEEE80211_ADDR_LEN];
1890 } __attribute__((packed));
1891
1892 static int
1893 mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, __u8 mac[IEEE80211_ADDR_LEN])
1894 {
1895         struct mwl8k_cmd_set_post_scan *cmd;
1896         int rc;
1897
1898         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1899         if (cmd == NULL)
1900                 return -ENOMEM;
1901
1902         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
1903         cmd->header.length = cpu_to_le16(sizeof(*cmd));
1904         cmd->isibss = 0;
1905         memcpy(cmd->bssid, mac, IEEE80211_ADDR_LEN);
1906
1907         rc = mwl8k_post_cmd(hw, &cmd->header);
1908         kfree(cmd);
1909
1910         return rc;
1911 }
1912
1913 /*
1914  * CMD_SET_RF_CHANNEL.
1915  */
1916 struct mwl8k_cmd_set_rf_channel {
1917         struct mwl8k_cmd_pkt header;
1918         __le16 action;
1919         __u8 current_channel;
1920         __le32 channel_flags;
1921 } __attribute__((packed));
1922
1923 static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
1924                                     struct ieee80211_channel *channel)
1925 {
1926         struct mwl8k_cmd_set_rf_channel *cmd;
1927         int rc;
1928
1929         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1930         if (cmd == NULL)
1931                 return -ENOMEM;
1932
1933         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
1934         cmd->header.length = cpu_to_le16(sizeof(*cmd));
1935         cmd->action = cpu_to_le16(MWL8K_CMD_SET);
1936         cmd->current_channel = channel->hw_value;
1937         if (channel->band == IEEE80211_BAND_2GHZ)
1938                 cmd->channel_flags = cpu_to_le32(0x00000081);
1939         else
1940                 cmd->channel_flags = cpu_to_le32(0x00000000);
1941
1942         rc = mwl8k_post_cmd(hw, &cmd->header);
1943         kfree(cmd);
1944
1945         return rc;
1946 }
1947
1948 /*
1949  * CMD_SET_SLOT.
1950  */
1951 struct mwl8k_cmd_set_slot {
1952         struct mwl8k_cmd_pkt header;
1953         __le16 action;
1954         __u8 short_slot;
1955 } __attribute__((packed));
1956
1957 static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, int slot_time)
1958 {
1959         struct mwl8k_cmd_set_slot *cmd;
1960         int rc;
1961
1962         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1963         if (cmd == NULL)
1964                 return -ENOMEM;
1965
1966         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
1967         cmd->header.length = cpu_to_le16(sizeof(*cmd));
1968         cmd->action = cpu_to_le16(MWL8K_CMD_SET);
1969         cmd->short_slot = slot_time == MWL8K_SHORT_SLOTTIME ? 1 : 0;
1970
1971         rc = mwl8k_post_cmd(hw, &cmd->header);
1972         kfree(cmd);
1973
1974         return rc;
1975 }
1976
1977 /*
1978  * CMD_MIMO_CONFIG.
1979  */
1980 struct mwl8k_cmd_mimo_config {
1981         struct mwl8k_cmd_pkt header;
1982         __le32 action;
1983         __u8 rx_antenna_map;
1984         __u8 tx_antenna_map;
1985 } __attribute__((packed));
1986
1987 static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
1988 {
1989         struct mwl8k_cmd_mimo_config *cmd;
1990         int rc;
1991
1992         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1993         if (cmd == NULL)
1994                 return -ENOMEM;
1995
1996         cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG);
1997         cmd->header.length = cpu_to_le16(sizeof(*cmd));
1998         cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET);
1999         cmd->rx_antenna_map = rx;
2000         cmd->tx_antenna_map = tx;
2001
2002         rc = mwl8k_post_cmd(hw, &cmd->header);
2003         kfree(cmd);
2004
2005         return rc;
2006 }
2007
2008 /*
2009  * CMD_ENABLE_SNIFFER.
2010  */
2011 struct mwl8k_cmd_enable_sniffer {
2012         struct mwl8k_cmd_pkt header;
2013         __le32 action;
2014 } __attribute__((packed));
2015
2016 static int mwl8k_enable_sniffer(struct ieee80211_hw *hw, bool enable)
2017 {
2018         struct mwl8k_cmd_enable_sniffer *cmd;
2019         int rc;
2020
2021         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2022         if (cmd == NULL)
2023                 return -ENOMEM;
2024
2025         cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
2026         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2027         cmd->action = enable ? cpu_to_le32((u32)MWL8K_CMD_SET) : 0;
2028
2029         rc = mwl8k_post_cmd(hw, &cmd->header);
2030         kfree(cmd);
2031
2032         return rc;
2033 }
2034
2035 /*
2036  * CMD_SET_RATE_ADAPT_MODE.
2037  */
2038 struct mwl8k_cmd_set_rate_adapt_mode {
2039         struct mwl8k_cmd_pkt header;
2040         __le16 action;
2041         __le16 mode;
2042 } __attribute__((packed));
2043
2044 static int mwl8k_cmd_setrateadaptmode(struct ieee80211_hw *hw, __u16 mode)
2045 {
2046         struct mwl8k_cmd_set_rate_adapt_mode *cmd;
2047         int rc;
2048
2049         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2050         if (cmd == NULL)
2051                 return -ENOMEM;
2052
2053         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
2054         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2055         cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2056         cmd->mode = cpu_to_le16(mode);
2057
2058         rc = mwl8k_post_cmd(hw, &cmd->header);
2059         kfree(cmd);
2060
2061         return rc;
2062 }
2063
2064 /*
2065  * CMD_SET_WMM_MODE.
2066  */
2067 struct mwl8k_cmd_set_wmm {
2068         struct mwl8k_cmd_pkt header;
2069         __le16 action;
2070 } __attribute__((packed));
2071
2072 static int mwl8k_set_wmm(struct ieee80211_hw *hw, bool enable)
2073 {
2074         struct mwl8k_priv *priv = hw->priv;
2075         struct mwl8k_cmd_set_wmm *cmd;
2076         int rc;
2077
2078         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2079         if (cmd == NULL)
2080                 return -ENOMEM;
2081
2082         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
2083         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2084         cmd->action = enable ? cpu_to_le16(MWL8K_CMD_SET) : 0;
2085
2086         rc = mwl8k_post_cmd(hw, &cmd->header);
2087         kfree(cmd);
2088
2089         if (!rc)
2090                 priv->wmm_mode = enable;
2091
2092         return rc;
2093 }
2094
2095 /*
2096  * CMD_SET_RTS_THRESHOLD.
2097  */
2098 struct mwl8k_cmd_rts_threshold {
2099         struct mwl8k_cmd_pkt header;
2100         __le16 action;
2101         __le16 threshold;
2102 } __attribute__((packed));
2103
2104 static int mwl8k_rts_threshold(struct ieee80211_hw *hw,
2105                                u16 action, u16 *threshold)
2106 {
2107         struct mwl8k_cmd_rts_threshold *cmd;
2108         int rc;
2109
2110         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2111         if (cmd == NULL)
2112                 return -ENOMEM;
2113
2114         cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
2115         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2116         cmd->action = cpu_to_le16(action);
2117         cmd->threshold = cpu_to_le16(*threshold);
2118
2119         rc = mwl8k_post_cmd(hw, &cmd->header);
2120         kfree(cmd);
2121
2122         return rc;
2123 }
2124
2125 /*
2126  * CMD_SET_EDCA_PARAMS.
2127  */
2128 struct mwl8k_cmd_set_edca_params {
2129         struct mwl8k_cmd_pkt header;
2130
2131         /* See MWL8K_SET_EDCA_XXX below */
2132         __le16 action;
2133
2134         /* TX opportunity in units of 32 us */
2135         __le16 txop;
2136
2137         /* Log exponent of max contention period: 0...15*/
2138         __u8 log_cw_max;
2139
2140         /* Log exponent of min contention period: 0...15 */
2141         __u8 log_cw_min;
2142
2143         /* Adaptive interframe spacing in units of 32us */
2144         __u8 aifs;
2145
2146         /* TX queue to configure */
2147         __u8 txq;
2148 } __attribute__((packed));
2149
2150 #define MWL8K_GET_EDCA_ALL      0
2151 #define MWL8K_SET_EDCA_CW       0x01
2152 #define MWL8K_SET_EDCA_TXOP     0x02
2153 #define MWL8K_SET_EDCA_AIFS     0x04
2154
2155 #define MWL8K_SET_EDCA_ALL      (MWL8K_SET_EDCA_CW | \
2156                                  MWL8K_SET_EDCA_TXOP | \
2157                                  MWL8K_SET_EDCA_AIFS)
2158
2159 static int
2160 mwl8k_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
2161                 __u16 cw_min, __u16 cw_max,
2162                 __u8 aifs, __u16 txop)
2163 {
2164         struct mwl8k_cmd_set_edca_params *cmd;
2165         u32 log_cw_min, log_cw_max;
2166         int rc;
2167
2168         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2169         if (cmd == NULL)
2170                 return -ENOMEM;
2171
2172         log_cw_min = ilog2(cw_min+1);
2173         log_cw_max = ilog2(cw_max+1);
2174         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
2175         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2176
2177         cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
2178         cmd->txop = cpu_to_le16(txop);
2179         cmd->log_cw_max = (u8)log_cw_max;
2180         cmd->log_cw_min = (u8)log_cw_min;
2181         cmd->aifs = aifs;
2182         cmd->txq = qnum;
2183
2184         rc = mwl8k_post_cmd(hw, &cmd->header);
2185         kfree(cmd);
2186
2187         return rc;
2188 }
2189
2190 /*
2191  * CMD_FINALIZE_JOIN.
2192  */
2193
2194 /* FJ beacon buffer size is compiled into the firmware.  */
2195 #define MWL8K_FJ_BEACON_MAXLEN  128
2196
2197 struct mwl8k_cmd_finalize_join {
2198         struct mwl8k_cmd_pkt header;
2199         __le32 sleep_interval;  /* Number of beacon periods to sleep */
2200         __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
2201 } __attribute__((packed));
2202
2203 static int mwl8k_finalize_join(struct ieee80211_hw *hw, void *frame,
2204                                 __u16 framelen, __u16 dtim)
2205 {
2206         struct mwl8k_cmd_finalize_join *cmd;
2207         struct ieee80211_mgmt *payload = frame;
2208         u16 hdrlen;
2209         u32 payload_len;
2210         int rc;
2211
2212         if (frame == NULL)
2213                 return -EINVAL;
2214
2215         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2216         if (cmd == NULL)
2217                 return -ENOMEM;
2218
2219         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN);
2220         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2221
2222         if (dtim)
2223                 cmd->sleep_interval = cpu_to_le32(dtim);
2224         else
2225                 cmd->sleep_interval = cpu_to_le32(1);
2226
2227         hdrlen = ieee80211_hdrlen(payload->frame_control);
2228
2229         payload_len = framelen > hdrlen ? framelen - hdrlen : 0;
2230
2231         /* XXX TBD Might just have to abort and return an error */
2232         if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
2233                 printk(KERN_ERR "%s(): WARNING: Incomplete beacon "
2234                         "sent to firmware. Sz=%u MAX=%u\n", __func__,
2235                         payload_len, MWL8K_FJ_BEACON_MAXLEN);
2236
2237         payload_len = payload_len > MWL8K_FJ_BEACON_MAXLEN ?
2238                                 MWL8K_FJ_BEACON_MAXLEN : payload_len;
2239
2240         if (payload && payload_len)
2241                 memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
2242
2243         rc = mwl8k_post_cmd(hw, &cmd->header);
2244         kfree(cmd);
2245         return rc;
2246 }
2247
2248 /*
2249  * CMD_UPDATE_STADB.
2250  */
2251 struct mwl8k_cmd_update_sta_db {
2252         struct mwl8k_cmd_pkt header;
2253
2254         /* See STADB_ACTION_TYPE */
2255         __le32  action;
2256
2257         /* Peer MAC address */
2258         __u8    peer_addr[IEEE80211_ADDR_LEN];
2259
2260         __le32  reserved;
2261
2262         /* Peer info - valid during add/update.  */
2263         struct peer_capability_info     peer_info;
2264 } __attribute__((packed));
2265
2266 static int mwl8k_cmd_update_sta_db(struct ieee80211_hw *hw,
2267                 struct ieee80211_vif *vif, __u32 action)
2268 {
2269         struct mwl8k_vif *mv_vif = MWL8K_VIF(vif);
2270         struct ieee80211_bss_conf *info = &mv_vif->bss_info;
2271         struct mwl8k_cmd_update_sta_db *cmd;
2272         struct peer_capability_info *peer_info;
2273         struct ieee80211_rate *bitrates = mv_vif->legacy_rates;
2274         int rc;
2275         __u8 count, *rates;
2276
2277         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2278         if (cmd == NULL)
2279                 return -ENOMEM;
2280
2281         cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
2282         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2283
2284         cmd->action = cpu_to_le32(action);
2285         peer_info = &cmd->peer_info;
2286         memcpy(cmd->peer_addr, mv_vif->bssid, IEEE80211_ADDR_LEN);
2287
2288         switch (action) {
2289         case MWL8K_STA_DB_ADD_ENTRY:
2290         case MWL8K_STA_DB_MODIFY_ENTRY:
2291                 /* Build peer_info block */
2292                 peer_info->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
2293                 peer_info->basic_caps = cpu_to_le16(info->assoc_capability);
2294                 peer_info->interop = 1;
2295                 peer_info->amsdu_enabled = 0;
2296
2297                 rates = peer_info->legacy_rates;
2298                 for (count = 0 ; count < mv_vif->legacy_nrates; count++)
2299                         rates[count] = bitrates[count].hw_value;
2300
2301                 rc = mwl8k_post_cmd(hw, &cmd->header);
2302                 if (rc == 0)
2303                         mv_vif->peer_id = peer_info->station_id;
2304
2305                 break;
2306
2307         case MWL8K_STA_DB_DEL_ENTRY:
2308         case MWL8K_STA_DB_FLUSH:
2309         default:
2310                 rc = mwl8k_post_cmd(hw, &cmd->header);
2311                 if (rc == 0)
2312                         mv_vif->peer_id = 0;
2313                 break;
2314         }
2315         kfree(cmd);
2316
2317         return rc;
2318 }
2319
2320 /*
2321  * CMD_SET_AID.
2322  */
2323 #define IEEE80211_OPMODE_DISABLED                       0x00
2324 #define IEEE80211_OPMODE_NON_MEMBER_PROT_MODE           0x01
2325 #define IEEE80211_OPMODE_ONE_20MHZ_STA_PROT_MODE        0x02
2326 #define IEEE80211_OPMODE_HTMIXED_PROT_MODE              0x03
2327
2328 #define MWL8K_RATE_INDEX_MAX_ARRAY                      14
2329
2330 #define MWL8K_FRAME_PROT_DISABLED                       0x00
2331 #define MWL8K_FRAME_PROT_11G                            0x07
2332 #define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY              0x02
2333 #define MWL8K_FRAME_PROT_11N_HT_ALL                     0x06
2334 #define MWL8K_FRAME_PROT_MASK                           0x07
2335
2336 struct mwl8k_cmd_update_set_aid {
2337         struct  mwl8k_cmd_pkt header;
2338         __le16  aid;
2339
2340          /* AP's MAC address (BSSID) */
2341         __u8    bssid[IEEE80211_ADDR_LEN];
2342         __le16  protection_mode;
2343         __u8    supp_rates[MWL8K_RATE_INDEX_MAX_ARRAY];
2344 } __attribute__((packed));
2345
2346 static int mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
2347                                         struct ieee80211_vif *vif)
2348 {
2349         struct mwl8k_vif *mv_vif = MWL8K_VIF(vif);
2350         struct ieee80211_bss_conf *info = &mv_vif->bss_info;
2351         struct mwl8k_cmd_update_set_aid *cmd;
2352         struct ieee80211_rate *bitrates = mv_vif->legacy_rates;
2353         int count;
2354         u16 prot_mode;
2355         int rc;
2356
2357         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2358         if (cmd == NULL)
2359                 return -ENOMEM;
2360
2361         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
2362         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2363         cmd->aid = cpu_to_le16(info->aid);
2364
2365         memcpy(cmd->bssid, mv_vif->bssid, IEEE80211_ADDR_LEN);
2366
2367         prot_mode = MWL8K_FRAME_PROT_DISABLED;
2368
2369         if (info->use_cts_prot) {
2370                 prot_mode = MWL8K_FRAME_PROT_11G;
2371         } else {
2372                 switch (info->ht_operation_mode &
2373                         IEEE80211_HT_OP_MODE_PROTECTION) {
2374                 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
2375                         prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
2376                         break;
2377                 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
2378                         prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
2379                         break;
2380                 default:
2381                         prot_mode = MWL8K_FRAME_PROT_DISABLED;
2382                         break;
2383                 }
2384         }
2385
2386         cmd->protection_mode = cpu_to_le16(prot_mode);
2387
2388         for (count = 0; count < mv_vif->legacy_nrates; count++)
2389                 cmd->supp_rates[count] = bitrates[count].hw_value;
2390
2391         rc = mwl8k_post_cmd(hw, &cmd->header);
2392         kfree(cmd);
2393
2394         return rc;
2395 }
2396
2397 /*
2398  * CMD_SET_RATE.
2399  */
2400 struct mwl8k_cmd_update_rateset {
2401         struct  mwl8k_cmd_pkt header;
2402         __u8    legacy_rates[MWL8K_RATE_INDEX_MAX_ARRAY];
2403
2404         /* Bitmap for supported MCS codes.  */
2405         __u8    mcs_set[MWL8K_IEEE_LEGACY_DATA_RATES];
2406         __u8    reserved[MWL8K_IEEE_LEGACY_DATA_RATES];
2407 } __attribute__((packed));
2408
2409 static int mwl8k_update_rateset(struct ieee80211_hw *hw,
2410                 struct ieee80211_vif *vif)
2411 {
2412         struct mwl8k_vif *mv_vif = MWL8K_VIF(vif);
2413         struct mwl8k_cmd_update_rateset *cmd;
2414         struct ieee80211_rate *bitrates = mv_vif->legacy_rates;
2415         int count;
2416         int rc;
2417
2418         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2419         if (cmd == NULL)
2420                 return -ENOMEM;
2421
2422         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE);
2423         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2424
2425         for (count = 0; count < mv_vif->legacy_nrates; count++)
2426                 cmd->legacy_rates[count] = bitrates[count].hw_value;
2427
2428         rc = mwl8k_post_cmd(hw, &cmd->header);
2429         kfree(cmd);
2430
2431         return rc;
2432 }
2433
2434 /*
2435  * CMD_USE_FIXED_RATE.
2436  */
2437 #define MWL8K_RATE_TABLE_SIZE   8
2438 #define MWL8K_UCAST_RATE        0
2439 #define MWL8K_MCAST_RATE        1
2440 #define MWL8K_BCAST_RATE        2
2441
2442 #define MWL8K_USE_FIXED_RATE    0x0001
2443 #define MWL8K_USE_AUTO_RATE     0x0002
2444
2445 struct mwl8k_rate_entry {
2446         /* Set to 1 if HT rate, 0 if legacy.  */
2447         __le32  is_ht_rate;
2448
2449         /* Set to 1 to use retry_count field.  */
2450         __le32  enable_retry;
2451
2452         /* Specified legacy rate or MCS.  */
2453         __le32  rate;
2454
2455         /* Number of allowed retries.  */
2456         __le32  retry_count;
2457 } __attribute__((packed));
2458
2459 struct mwl8k_rate_table {
2460         /* 1 to allow specified rate and below */
2461         __le32  allow_rate_drop;
2462         __le32  num_rates;
2463         struct mwl8k_rate_entry rate_entry[MWL8K_RATE_TABLE_SIZE];
2464 } __attribute__((packed));
2465
2466 struct mwl8k_cmd_use_fixed_rate {
2467         struct  mwl8k_cmd_pkt header;
2468         __le32  action;
2469         struct mwl8k_rate_table rate_table;
2470
2471         /* Unicast, Broadcast or Multicast */
2472         __le32  rate_type;
2473         __le32  reserved1;
2474         __le32  reserved2;
2475 } __attribute__((packed));
2476
2477 static int mwl8k_cmd_use_fixed_rate(struct ieee80211_hw *hw,
2478         u32 action, u32 rate_type, struct mwl8k_rate_table *rate_table)
2479 {
2480         struct mwl8k_cmd_use_fixed_rate *cmd;
2481         int count;
2482         int rc;
2483
2484         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2485         if (cmd == NULL)
2486                 return -ENOMEM;
2487
2488         cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
2489         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2490
2491         cmd->action = cpu_to_le32(action);
2492         cmd->rate_type = cpu_to_le32(rate_type);
2493
2494         if (rate_table != NULL) {
2495                 /* Copy over each field manually so
2496                 * that bitflipping can be done
2497                 */
2498                 cmd->rate_table.allow_rate_drop =
2499                                 cpu_to_le32(rate_table->allow_rate_drop);
2500                 cmd->rate_table.num_rates =
2501                                 cpu_to_le32(rate_table->num_rates);
2502
2503                 for (count = 0; count < rate_table->num_rates; count++) {
2504                         struct mwl8k_rate_entry *dst =
2505                                 &cmd->rate_table.rate_entry[count];
2506                         struct mwl8k_rate_entry *src =
2507                                 &rate_table->rate_entry[count];
2508
2509                         dst->is_ht_rate = cpu_to_le32(src->is_ht_rate);
2510                         dst->enable_retry = cpu_to_le32(src->enable_retry);
2511                         dst->rate = cpu_to_le32(src->rate);
2512                         dst->retry_count = cpu_to_le32(src->retry_count);
2513                 }
2514         }
2515
2516         rc = mwl8k_post_cmd(hw, &cmd->header);
2517         kfree(cmd);
2518
2519         return rc;
2520 }
2521
2522
2523 /*
2524  * Interrupt handling.
2525  */
2526 static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
2527 {
2528         struct ieee80211_hw *hw = dev_id;
2529         struct mwl8k_priv *priv = hw->priv;
2530         u32 status;
2531
2532         status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
2533         iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
2534
2535         status &= priv->int_mask;
2536         if (!status)
2537                 return IRQ_NONE;
2538
2539         if (status & MWL8K_A2H_INT_TX_DONE)
2540                 tasklet_schedule(&priv->tx_reclaim_task);
2541
2542         if (status & MWL8K_A2H_INT_RX_READY) {
2543                 while (rxq_process(hw, 0, 1))
2544                         rxq_refill(hw, 0, 1);
2545         }
2546
2547         if (status & MWL8K_A2H_INT_OPC_DONE) {
2548                 if (priv->hostcmd_wait != NULL) {
2549                         complete(priv->hostcmd_wait);
2550                         priv->hostcmd_wait = NULL;
2551                 }
2552         }
2553
2554         if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
2555                 if (!priv->inconfig &&
2556                         priv->radio_state &&
2557                         mwl8k_txq_busy(priv))
2558                                 mwl8k_tx_start(priv);
2559         }
2560
2561         return IRQ_HANDLED;
2562 }
2563
2564
2565 /*
2566  * Core driver operations.
2567  */
2568 static int mwl8k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
2569 {
2570         struct mwl8k_priv *priv = hw->priv;
2571         int index = skb_get_queue_mapping(skb);
2572         int rc;
2573
2574         if (priv->current_channel == NULL) {
2575                 printk(KERN_DEBUG "%s: dropped TX frame since radio "
2576                        "disabled\n", priv->name);
2577                 dev_kfree_skb(skb);
2578                 return NETDEV_TX_OK;
2579         }
2580
2581         rc = mwl8k_txq_xmit(hw, index, skb);
2582
2583         return rc;
2584 }
2585
2586 struct mwl8k_work_struct {
2587         /* Initialized by mwl8k_queue_work().  */
2588         struct work_struct wt;
2589
2590         /* Required field passed in to mwl8k_queue_work().  */
2591         struct ieee80211_hw *hw;
2592
2593         /* Required field passed in to mwl8k_queue_work().  */
2594         int (*wfunc)(struct work_struct *w);
2595
2596         /* Initialized by mwl8k_queue_work().  */
2597         struct completion *cmd_wait;
2598
2599         /* Result code.  */
2600         int rc;
2601
2602         /*
2603          * Optional field. Refer to explanation of MWL8K_WQ_XXX_XXX
2604          * flags for explanation.  Defaults to MWL8K_WQ_DEFAULT_OPTIONS.
2605          */
2606         u32 options;
2607
2608         /* Optional field.  Defaults to MWL8K_CONFIG_TIMEOUT_MS.  */
2609         unsigned long timeout_ms;
2610
2611         /* Optional field.  Defaults to MWL8K_WQ_TXWAIT_ATTEMPTS.  */
2612         u32 txwait_attempts;
2613
2614         /* Optional field.  Defaults to MWL8K_TXWAIT_MS.  */
2615         u32 tx_timeout_ms;
2616         u32 step;
2617 };
2618
2619 /* Flags controlling behavior of config queue requests */
2620
2621 /* Caller spins while waiting for completion.  */
2622 #define MWL8K_WQ_SPIN                   0x00000001
2623
2624 /* Wait for TX queues to empty before proceeding with configuration.  */
2625 #define MWL8K_WQ_TX_WAIT_EMPTY          0x00000002
2626
2627 /* Queue request and return immediately.  */
2628 #define MWL8K_WQ_POST_REQUEST           0x00000004
2629
2630 /*
2631  * Caller sleeps and waits for task complete notification.
2632  * Do not use in atomic context.
2633  */
2634 #define MWL8K_WQ_SLEEP                  0x00000008
2635
2636 /* Free work struct when task is done.  */
2637 #define MWL8K_WQ_FREE_WORKSTRUCT        0x00000010
2638
2639 /*
2640  * Config request is queued and returns to caller imediately.  Use
2641  * this in atomic context. Work struct is freed by mwl8k_queue_work()
2642  * when this flag is set.
2643  */
2644 #define MWL8K_WQ_QUEUE_ONLY     (MWL8K_WQ_POST_REQUEST | \
2645                                  MWL8K_WQ_FREE_WORKSTRUCT)
2646
2647 /* Default work queue behavior is to sleep and wait for tx completion.  */
2648 #define MWL8K_WQ_DEFAULT_OPTIONS (MWL8K_WQ_SLEEP | MWL8K_WQ_TX_WAIT_EMPTY)
2649
2650 /*
2651  * Default config request timeout.  Add adjustments to make sure the
2652  * config thread waits long enough for both tx wait and cmd wait before
2653  * timing out.
2654  */
2655
2656 /* Time to wait for all TXQs to drain.  TX Doorbell is pressed each time.  */
2657 #define MWL8K_TXWAIT_TIMEOUT_MS         1000
2658
2659 /* Default number of TX wait attempts.  */
2660 #define MWL8K_WQ_TXWAIT_ATTEMPTS        4
2661
2662 /* Total time to wait for TXQ to drain.  */
2663 #define MWL8K_TXWAIT_MS                 (MWL8K_TXWAIT_TIMEOUT_MS * \
2664                                                 MWL8K_WQ_TXWAIT_ATTEMPTS)
2665
2666 /* Scheduling slop.  */
2667 #define MWL8K_OS_SCHEDULE_OVERHEAD_MS   200
2668
2669 #define MWL8K_CONFIG_TIMEOUT_MS (MWL8K_CMD_TIMEOUT_MS + \
2670                                  MWL8K_TXWAIT_MS + \
2671                                  MWL8K_OS_SCHEDULE_OVERHEAD_MS)
2672
2673 static void mwl8k_config_thread(struct work_struct *wt)
2674 {
2675         struct mwl8k_work_struct *worker = (struct mwl8k_work_struct *)wt;
2676         struct ieee80211_hw *hw = worker->hw;
2677         struct mwl8k_priv *priv = hw->priv;
2678         int rc = 0;
2679
2680         spin_lock_irq(&priv->tx_lock);
2681         priv->inconfig = true;
2682         spin_unlock_irq(&priv->tx_lock);
2683
2684         ieee80211_stop_queues(hw);
2685
2686         /*
2687          * Wait for host queues to drain before doing PHY
2688          * reconfiguration. This avoids interrupting any in-flight
2689          * DMA transfers to the hardware.
2690          */
2691         if (worker->options & MWL8K_WQ_TX_WAIT_EMPTY) {
2692                 u32 timeout;
2693                 u32 time_remaining;
2694                 u32 iter;
2695                 u32 tx_wait_attempts = worker->txwait_attempts;
2696
2697                 time_remaining = worker->tx_timeout_ms;
2698                 if (!tx_wait_attempts)
2699                         tx_wait_attempts = 1;
2700
2701                 timeout = worker->tx_timeout_ms/tx_wait_attempts;
2702                 if (!timeout)
2703                         timeout = 1;
2704
2705                 iter = tx_wait_attempts;
2706                 do {
2707                         int wait_time;
2708
2709                         if (time_remaining > timeout) {
2710                                 time_remaining -= timeout;
2711                                 wait_time = timeout;
2712                         } else
2713                                 wait_time = time_remaining;
2714
2715                         if (!wait_time)
2716                                 wait_time = 1;
2717
2718                         rc = mwl8k_tx_wait_empty(hw, wait_time);
2719                         if (rc)
2720                                 printk(KERN_ERR "%s() txwait timeout=%ums "
2721                                         "Retry:%u/%u\n", __func__, timeout,
2722                                         tx_wait_attempts - iter + 1,
2723                                         tx_wait_attempts);
2724
2725                 } while (rc && --iter);
2726
2727                 rc = iter ? 0 : -ETIMEDOUT;
2728         }
2729         if (!rc)
2730                 rc = worker->wfunc(wt);
2731
2732         spin_lock_irq(&priv->tx_lock);
2733         priv->inconfig = false;
2734         if (priv->pending_tx_pkts && priv->radio_state)
2735                 mwl8k_tx_start(priv);
2736         spin_unlock_irq(&priv->tx_lock);
2737         ieee80211_wake_queues(hw);
2738
2739         worker->rc = rc;
2740         if (worker->options & MWL8K_WQ_SLEEP)
2741                 complete(worker->cmd_wait);
2742
2743         if (worker->options & MWL8K_WQ_FREE_WORKSTRUCT)
2744                 kfree(wt);
2745 }
2746
2747 static int mwl8k_queue_work(struct ieee80211_hw *hw,
2748                                 struct mwl8k_work_struct *worker,
2749                                 struct workqueue_struct *wqueue,
2750                                 int (*wfunc)(struct work_struct *w))
2751 {
2752         unsigned long timeout = 0;
2753         int rc = 0;
2754
2755         DECLARE_COMPLETION_ONSTACK(cmd_wait);
2756
2757         if (!worker->timeout_ms)
2758                 worker->timeout_ms = MWL8K_CONFIG_TIMEOUT_MS;
2759
2760         if (!worker->options)
2761                 worker->options = MWL8K_WQ_DEFAULT_OPTIONS;
2762
2763         if (!worker->txwait_attempts)
2764                 worker->txwait_attempts = MWL8K_WQ_TXWAIT_ATTEMPTS;
2765
2766         if (!worker->tx_timeout_ms)
2767                 worker->tx_timeout_ms = MWL8K_TXWAIT_MS;
2768
2769         worker->hw = hw;
2770         worker->cmd_wait = &cmd_wait;
2771         worker->rc = 1;
2772         worker->wfunc = wfunc;
2773
2774         INIT_WORK(&worker->wt, mwl8k_config_thread);
2775         queue_work(wqueue, &worker->wt);
2776
2777         if (worker->options & MWL8K_WQ_POST_REQUEST) {
2778                 rc = 0;
2779         } else {
2780                 if (worker->options & MWL8K_WQ_SPIN) {
2781                         timeout = worker->timeout_ms;
2782                         while (timeout && (worker->rc > 0)) {
2783                                 mdelay(1);
2784                                 timeout--;
2785                         }
2786                 } else if (worker->options & MWL8K_WQ_SLEEP)
2787                         timeout = wait_for_completion_timeout(&cmd_wait,
2788                                 msecs_to_jiffies(worker->timeout_ms));
2789
2790                 if (timeout)
2791                         rc = worker->rc;
2792                 else {
2793                         cancel_work_sync(&worker->wt);
2794                         rc = -ETIMEDOUT;
2795                 }
2796         }
2797
2798         return rc;
2799 }
2800
2801 struct mwl8k_start_worker {
2802         struct mwl8k_work_struct header;
2803 };
2804
2805 static int mwl8k_start_wt(struct work_struct *wt)
2806 {
2807         struct mwl8k_start_worker *worker = (struct mwl8k_start_worker *)wt;
2808         struct ieee80211_hw *hw = worker->header.hw;
2809         struct mwl8k_priv *priv = hw->priv;
2810         int rc = 0;
2811
2812         if (priv->vif != NULL) {
2813                 rc = -EIO;
2814                 goto mwl8k_start_exit;
2815         }
2816
2817         /* Turn on radio */
2818         if (mwl8k_cmd_802_11_radio_control(hw, MWL8K_RADIO_ENABLE)) {
2819                 rc = -EIO;
2820                 goto mwl8k_start_exit;
2821         }
2822
2823         /* Purge TX/RX HW queues */
2824         if (mwl8k_cmd_set_pre_scan(hw)) {
2825                 rc = -EIO;
2826                 goto mwl8k_start_exit;
2827         }
2828
2829         if (mwl8k_cmd_set_post_scan(hw, "\x00\x00\x00\x00\x00\x00")) {
2830                 rc = -EIO;
2831                 goto mwl8k_start_exit;
2832         }
2833
2834         /* Enable firmware rate adaptation */
2835         if (mwl8k_cmd_setrateadaptmode(hw, 0)) {
2836                 rc = -EIO;
2837                 goto mwl8k_start_exit;
2838         }
2839
2840         /* Disable WMM. WMM gets enabled when stack sends WMM parms */
2841         if (mwl8k_set_wmm(hw, MWL8K_WMM_DISABLE)) {
2842                 rc = -EIO;
2843                 goto mwl8k_start_exit;
2844         }
2845
2846         /* Disable sniffer mode */
2847         if (mwl8k_enable_sniffer(hw, 0))
2848                 rc = -EIO;
2849
2850 mwl8k_start_exit:
2851         return rc;
2852 }
2853
2854 static int mwl8k_start(struct ieee80211_hw *hw)
2855 {
2856         struct mwl8k_start_worker *worker;
2857         struct mwl8k_priv *priv = hw->priv;
2858         int rc;
2859
2860         /* Enable tx reclaim tasklet */
2861         tasklet_enable(&priv->tx_reclaim_task);
2862
2863         rc = request_irq(priv->pdev->irq, &mwl8k_interrupt,
2864                          IRQF_SHARED, MWL8K_NAME, hw);
2865         if (rc) {
2866                 printk(KERN_ERR "%s: failed to register IRQ handler\n",
2867                        priv->name);
2868                 rc = -EIO;
2869                 goto mwl8k_start_disable_tasklet;
2870         }
2871
2872         /* Enable interrupts */
2873         iowrite32(priv->int_mask, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
2874
2875         worker = kzalloc(sizeof(*worker), GFP_KERNEL);
2876         if (worker == NULL) {
2877                 rc = -ENOMEM;
2878                 goto mwl8k_start_disable_irq;
2879         }
2880
2881         rc = mwl8k_queue_work(hw, &worker->header,
2882                               priv->config_wq, mwl8k_start_wt);
2883         kfree(worker);
2884         if (!rc)
2885                 return rc;
2886
2887         if (rc == -ETIMEDOUT)
2888                 printk(KERN_ERR "%s() timed out\n", __func__);
2889
2890         rc = -EIO;
2891
2892 mwl8k_start_disable_irq:
2893         spin_lock_irq(&priv->tx_lock);
2894         iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
2895         spin_unlock_irq(&priv->tx_lock);
2896         free_irq(priv->pdev->irq, hw);
2897
2898 mwl8k_start_disable_tasklet:
2899         tasklet_disable(&priv->tx_reclaim_task);
2900
2901         return rc;
2902 }
2903
2904 struct mwl8k_stop_worker {
2905         struct mwl8k_work_struct header;
2906 };
2907
2908 static int mwl8k_stop_wt(struct work_struct *wt)
2909 {
2910         struct mwl8k_stop_worker *worker = (struct mwl8k_stop_worker *)wt;
2911         struct ieee80211_hw *hw = worker->header.hw;
2912         int rc;
2913
2914         rc = mwl8k_cmd_802_11_radio_control(hw, MWL8K_RADIO_DISABLE);
2915
2916         return rc;
2917 }
2918
2919 static void mwl8k_stop(struct ieee80211_hw *hw)
2920 {
2921         int rc;
2922         struct mwl8k_stop_worker *worker;
2923         struct mwl8k_priv *priv = hw->priv;
2924         int i;
2925
2926         if (priv->vif != NULL)
2927                 return;
2928
2929         ieee80211_stop_queues(hw);
2930
2931         worker = kzalloc(sizeof(*worker), GFP_KERNEL);
2932         if (worker == NULL)
2933                 return;
2934
2935         rc = mwl8k_queue_work(hw, &worker->header,
2936                               priv->config_wq, mwl8k_stop_wt);
2937         kfree(worker);
2938         if (rc == -ETIMEDOUT)
2939                 printk(KERN_ERR "%s() timed out\n", __func__);
2940
2941         /* Disable interrupts */
2942         spin_lock_irq(&priv->tx_lock);
2943         iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
2944         spin_unlock_irq(&priv->tx_lock);
2945         free_irq(priv->pdev->irq, hw);
2946
2947         /* Stop finalize join worker */
2948         cancel_work_sync(&priv->finalize_join_worker);
2949         if (priv->beacon_skb != NULL)
2950                 dev_kfree_skb(priv->beacon_skb);
2951
2952         /* Stop tx reclaim tasklet */
2953         tasklet_disable(&priv->tx_reclaim_task);
2954
2955         /* Stop config thread */
2956         flush_workqueue(priv->config_wq);
2957
2958         /* Return all skbs to mac80211 */
2959         for (i = 0; i < MWL8K_TX_QUEUES; i++)
2960                 mwl8k_txq_reclaim(hw, i, 1);
2961 }
2962
2963 static int mwl8k_add_interface(struct ieee80211_hw *hw,
2964                                 struct ieee80211_if_init_conf *conf)
2965 {
2966         struct mwl8k_priv *priv = hw->priv;
2967         struct mwl8k_vif *mwl8k_vif;
2968
2969         /*
2970          * We only support one active interface at a time.
2971          */
2972         if (priv->vif != NULL)
2973                 return -EBUSY;
2974
2975         /*
2976          * We only support managed interfaces for now.
2977          */
2978         if (conf->type != NL80211_IFTYPE_STATION &&
2979             conf->type != NL80211_IFTYPE_MONITOR)
2980                 return -EINVAL;
2981
2982         /* Clean out driver private area */
2983         mwl8k_vif = MWL8K_VIF(conf->vif);
2984         memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
2985
2986         /* Save the mac address */
2987         memcpy(mwl8k_vif->mac_addr, conf->mac_addr, IEEE80211_ADDR_LEN);
2988
2989         /* Back pointer to parent config block */
2990         mwl8k_vif->priv = priv;
2991
2992         /* Setup initial PHY parameters */
2993         memcpy(mwl8k_vif->legacy_rates ,
2994                 priv->rates, sizeof(mwl8k_vif->legacy_rates));
2995         mwl8k_vif->legacy_nrates = ARRAY_SIZE(priv->rates);
2996
2997         /* Set Initial sequence number to zero */
2998         mwl8k_vif->seqno = 0;
2999
3000         priv->vif = conf->vif;
3001         priv->current_channel = NULL;
3002
3003         return 0;
3004 }
3005
3006 static void mwl8k_remove_interface(struct ieee80211_hw *hw,
3007                                    struct ieee80211_if_init_conf *conf)
3008 {
3009         struct mwl8k_priv *priv = hw->priv;
3010
3011         if (priv->vif == NULL)
3012                 return;
3013
3014         priv->vif = NULL;
3015 }
3016
3017 struct mwl8k_config_worker {
3018         struct mwl8k_work_struct header;
3019         u32 changed;
3020 };
3021
3022 static int mwl8k_config_wt(struct work_struct *wt)
3023 {
3024         struct mwl8k_config_worker *worker =
3025                 (struct mwl8k_config_worker *)wt;
3026         struct ieee80211_hw *hw = worker->header.hw;
3027         struct ieee80211_conf *conf = &hw->conf;
3028         struct mwl8k_priv *priv = hw->priv;
3029         int rc = 0;
3030
3031         if (!conf->radio_enabled) {
3032                 mwl8k_cmd_802_11_radio_control(hw, MWL8K_RADIO_DISABLE);
3033                 priv->current_channel = NULL;
3034                 rc = 0;
3035                 goto mwl8k_config_exit;
3036         }
3037
3038         if (mwl8k_cmd_802_11_radio_control(hw, MWL8K_RADIO_ENABLE)) {
3039                 rc = -EINVAL;
3040                 goto mwl8k_config_exit;
3041         }
3042
3043         priv->current_channel = conf->channel;
3044
3045         if (mwl8k_cmd_set_rf_channel(hw, conf->channel)) {
3046                 rc = -EINVAL;
3047                 goto mwl8k_config_exit;
3048         }
3049
3050         if (conf->power_level > 18)
3051                 conf->power_level = 18;
3052         if (mwl8k_cmd_802_11_rf_tx_power(hw, conf->power_level)) {
3053                 rc = -EINVAL;
3054                 goto mwl8k_config_exit;
3055         }
3056
3057         if (mwl8k_cmd_mimo_config(hw, 0x7, 0x7))
3058                 rc = -EINVAL;
3059
3060 mwl8k_config_exit:
3061         return rc;
3062 }
3063
3064 static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
3065 {
3066         int rc = 0;
3067         struct mwl8k_config_worker *worker;
3068         struct mwl8k_priv *priv = hw->priv;
3069
3070         worker = kzalloc(sizeof(*worker), GFP_KERNEL);
3071         if (worker == NULL)
3072                 return -ENOMEM;
3073
3074         worker->changed = changed;
3075         rc = mwl8k_queue_work(hw, &worker->header,
3076                               priv->config_wq, mwl8k_config_wt);
3077         if (rc == -ETIMEDOUT) {
3078                 printk(KERN_ERR "%s() timed out.\n", __func__);
3079                 rc = -EINVAL;
3080         }
3081
3082         kfree(worker);
3083
3084         /*
3085          * mac80211 will crash on anything other than -EINVAL on
3086          * error. Looks like wireless extensions which calls mac80211
3087          * may be the actual culprit...
3088          */
3089         return rc ? -EINVAL : 0;
3090 }
3091
3092 struct mwl8k_bss_info_changed_worker {
3093         struct mwl8k_work_struct header;
3094         struct ieee80211_vif *vif;
3095         struct ieee80211_bss_conf *info;
3096         u32 changed;
3097 };
3098
3099 static int mwl8k_bss_info_changed_wt(struct work_struct *wt)
3100 {
3101         struct mwl8k_bss_info_changed_worker *worker =
3102                 (struct mwl8k_bss_info_changed_worker *)wt;
3103         struct ieee80211_hw *hw = worker->header.hw;
3104         struct ieee80211_vif *vif = worker->vif;
3105         struct ieee80211_bss_conf *info = worker->info;
3106         u32 changed;
3107         int rc;
3108
3109         struct mwl8k_priv *priv = hw->priv;
3110         struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
3111
3112         changed = worker->changed;
3113         priv->capture_beacon = false;
3114
3115         if (info->assoc) {
3116                 memcpy(&mwl8k_vif->bss_info, info,
3117                         sizeof(struct ieee80211_bss_conf));
3118
3119                 /* Install rates */
3120                 if (mwl8k_update_rateset(hw, vif))
3121                         goto mwl8k_bss_info_changed_exit;
3122
3123                 /* Turn on rate adaptation */
3124                 if (mwl8k_cmd_use_fixed_rate(hw, MWL8K_USE_AUTO_RATE,
3125                         MWL8K_UCAST_RATE, NULL))
3126                         goto mwl8k_bss_info_changed_exit;
3127
3128                 /* Set radio preamble */
3129                 if (mwl8k_set_radio_preamble(hw,
3130                                 info->use_short_preamble))
3131                         goto mwl8k_bss_info_changed_exit;
3132
3133                 /* Set slot time */
3134                 if (mwl8k_cmd_set_slot(hw, info->use_short_slot ?
3135                                 MWL8K_SHORT_SLOTTIME : MWL8K_LONG_SLOTTIME))
3136                         goto mwl8k_bss_info_changed_exit;
3137
3138                 /* Update peer rate info */
3139                 if (mwl8k_cmd_update_sta_db(hw, vif,
3140                                 MWL8K_STA_DB_MODIFY_ENTRY))
3141                         goto mwl8k_bss_info_changed_exit;
3142
3143                 /* Set AID */
3144                 if (mwl8k_cmd_set_aid(hw, vif))
3145                         goto mwl8k_bss_info_changed_exit;
3146
3147                 /*
3148                  * Finalize the join.  Tell rx handler to process
3149                  * next beacon from our BSSID.
3150                  */
3151                 memcpy(priv->capture_bssid,
3152                                 mwl8k_vif->bssid, IEEE80211_ADDR_LEN);
3153                 priv->capture_beacon = true;
3154         } else {
3155                 mwl8k_cmd_update_sta_db(hw, vif, MWL8K_STA_DB_DEL_ENTRY);
3156                 memset(&mwl8k_vif->bss_info, 0,
3157                         sizeof(struct ieee80211_bss_conf));
3158                 memset(mwl8k_vif->bssid, 0, IEEE80211_ADDR_LEN);
3159         }
3160
3161 mwl8k_bss_info_changed_exit:
3162         rc = 0;
3163         return rc;
3164 }
3165
3166 static void mwl8k_bss_info_changed(struct ieee80211_hw *hw,
3167                                    struct ieee80211_vif *vif,
3168                                    struct ieee80211_bss_conf *info,
3169                                    u32 changed)
3170 {
3171         struct mwl8k_bss_info_changed_worker *worker;
3172         struct mwl8k_priv *priv = hw->priv;
3173         struct mwl8k_vif *mv_vif = MWL8K_VIF(vif);
3174         int rc;
3175
3176         if (changed & BSS_CHANGED_BSSID)
3177                 memcpy(mv_vif->bssid, info->bssid, IEEE80211_ADDR_LEN);
3178
3179         if ((changed & BSS_CHANGED_ASSOC) == 0)
3180                 return;
3181
3182         worker = kzalloc(sizeof(*worker), GFP_KERNEL);
3183         if (worker == NULL)
3184                 return;
3185
3186         worker->vif = vif;
3187         worker->info = info;
3188         worker->changed = changed;
3189         rc = mwl8k_queue_work(hw, &worker->header,
3190                               priv->config_wq,
3191                               mwl8k_bss_info_changed_wt);
3192         kfree(worker);
3193         if (rc == -ETIMEDOUT)
3194                 printk(KERN_ERR "%s() timed out\n", __func__);
3195 }
3196
3197 struct mwl8k_configure_filter_worker {
3198         struct mwl8k_work_struct header;
3199         unsigned int changed_flags;
3200         unsigned int *total_flags;
3201         int mc_count;
3202         struct dev_addr_list *mclist;
3203 };
3204
3205 #define MWL8K_SUPPORTED_IF_FLAGS        FIF_BCN_PRBRESP_PROMISC
3206
3207 static int mwl8k_configure_filter_wt(struct work_struct *wt)
3208 {
3209         struct mwl8k_configure_filter_worker *worker =
3210                 (struct mwl8k_configure_filter_worker *)wt;
3211
3212         struct ieee80211_hw *hw = worker->header.hw;
3213         unsigned int changed_flags = worker->changed_flags;
3214         unsigned int *total_flags = worker->total_flags;
3215         int mc_count = worker->mc_count;
3216         struct dev_addr_list *mclist = worker->mclist;
3217
3218         struct mwl8k_priv *priv = hw->priv;
3219         struct mwl8k_vif *mv_vif;
3220         int rc = 0;
3221
3222         if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
3223                 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
3224                         rc = mwl8k_cmd_set_pre_scan(hw);
3225                 else {
3226                         mv_vif = MWL8K_VIF(priv->vif);
3227                         rc = mwl8k_cmd_set_post_scan(hw, mv_vif->bssid);
3228                 }
3229         }
3230
3231         if (rc)
3232                 goto mwl8k_configure_filter_exit;
3233         if (mc_count) {
3234                 mc_count = mc_count < priv->num_mcaddrs ?
3235                                 mc_count : priv->num_mcaddrs;
3236                 rc = mwl8k_cmd_mac_multicast_adr(hw, mc_count, mclist);
3237                 if (rc)
3238                         printk(KERN_ERR
3239                         "%s()Error setting multicast addresses\n",
3240                         __func__);
3241         }
3242
3243 mwl8k_configure_filter_exit:
3244         return rc;
3245 }
3246
3247 static void mwl8k_configure_filter(struct ieee80211_hw *hw,
3248                                    unsigned int changed_flags,
3249                                    unsigned int *total_flags,
3250                                    int mc_count,
3251                                    struct dev_addr_list *mclist)
3252 {
3253
3254         struct mwl8k_configure_filter_worker *worker;
3255         struct mwl8k_priv *priv = hw->priv;
3256
3257         /* Clear unsupported feature flags */
3258         *total_flags &= MWL8K_SUPPORTED_IF_FLAGS;
3259
3260         if (!(changed_flags & MWL8K_SUPPORTED_IF_FLAGS) && !mc_count)
3261                 return;
3262
3263         worker = kzalloc(sizeof(*worker), GFP_ATOMIC);
3264         if (worker == NULL)
3265                 return;
3266
3267         worker->header.options = MWL8K_WQ_QUEUE_ONLY | MWL8K_WQ_TX_WAIT_EMPTY;
3268         worker->changed_flags = changed_flags;
3269         worker->total_flags = total_flags;
3270         worker->mc_count = mc_count;
3271         worker->mclist = mclist;
3272
3273         mwl8k_queue_work(hw, &worker->header, priv->config_wq,
3274                          mwl8k_configure_filter_wt);
3275 }
3276
3277 struct mwl8k_set_rts_threshold_worker {
3278         struct mwl8k_work_struct header;
3279         u32 value;
3280 };
3281
3282 static int mwl8k_set_rts_threshold_wt(struct work_struct *wt)
3283 {
3284         struct mwl8k_set_rts_threshold_worker *worker =
3285                 (struct mwl8k_set_rts_threshold_worker *)wt;
3286
3287         struct ieee80211_hw *hw = worker->header.hw;
3288         u16 threshold = (u16)(worker->value);
3289         int rc;
3290
3291         rc = mwl8k_rts_threshold(hw, MWL8K_CMD_SET, &threshold);
3292
3293         return rc;
3294 }
3295
3296 static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
3297 {
3298         int rc;
3299         struct mwl8k_set_rts_threshold_worker *worker;
3300         struct mwl8k_priv *priv = hw->priv;
3301
3302         worker = kzalloc(sizeof(*worker), GFP_KERNEL);
3303         if (worker == NULL)
3304                 return -ENOMEM;
3305
3306         worker->value = value;
3307
3308         rc = mwl8k_queue_work(hw, &worker->header,
3309                               priv->config_wq,
3310                               mwl8k_set_rts_threshold_wt);
3311         kfree(worker);
3312
3313         if (rc == -ETIMEDOUT) {
3314                 printk(KERN_ERR "%s() timed out\n", __func__);
3315                 rc = -EINVAL;
3316         }
3317
3318         return rc;
3319 }
3320
3321 struct mwl8k_conf_tx_worker {
3322         struct mwl8k_work_struct header;
3323         u16 queue;
3324         const struct ieee80211_tx_queue_params *params;
3325 };
3326
3327 static int mwl8k_conf_tx_wt(struct work_struct *wt)
3328 {
3329         struct mwl8k_conf_tx_worker *worker =
3330         (struct mwl8k_conf_tx_worker *)wt;
3331
3332         struct ieee80211_hw *hw = worker->header.hw;
3333         u16 queue = worker->queue;
3334         const struct ieee80211_tx_queue_params *params = worker->params;
3335
3336         struct mwl8k_priv *priv = hw->priv;
3337         int rc = 0;
3338
3339         if (priv->wmm_mode == MWL8K_WMM_DISABLE)
3340                 if (mwl8k_set_wmm(hw, MWL8K_WMM_ENABLE)) {
3341                         rc = -EINVAL;
3342                         goto mwl8k_conf_tx_exit;
3343         }
3344
3345         if (mwl8k_set_edca_params(hw, GET_TXQ(queue), params->cw_min,
3346                 params->cw_max, params->aifs, params->txop))
3347                         rc = -EINVAL;
3348 mwl8k_conf_tx_exit:
3349         return rc;
3350 }
3351
3352 static int mwl8k_conf_tx(struct ieee80211_hw *hw, u16 queue,
3353                          const struct ieee80211_tx_queue_params *params)
3354 {
3355         int rc;
3356         struct mwl8k_conf_tx_worker *worker;
3357         struct mwl8k_priv *priv = hw->priv;
3358
3359         worker = kzalloc(sizeof(*worker), GFP_KERNEL);
3360         if (worker == NULL)
3361                 return -ENOMEM;
3362
3363         worker->queue = queue;
3364         worker->params = params;
3365         rc = mwl8k_queue_work(hw, &worker->header,
3366                               priv->config_wq, mwl8k_conf_tx_wt);
3367         kfree(worker);
3368         if (rc == -ETIMEDOUT) {
3369                 printk(KERN_ERR "%s() timed out\n", __func__);
3370                 rc = -EINVAL;
3371         }
3372         return rc;
3373 }
3374
3375 static int mwl8k_get_tx_stats(struct ieee80211_hw *hw,
3376                               struct ieee80211_tx_queue_stats *stats)
3377 {
3378         struct mwl8k_priv *priv = hw->priv;
3379         struct mwl8k_tx_queue *txq;
3380         int index;
3381
3382         spin_lock_bh(&priv->tx_lock);
3383         for (index = 0; index < MWL8K_TX_QUEUES; index++) {
3384                 txq = priv->txq + index;
3385                 memcpy(&stats[index], &txq->tx_stats,
3386                         sizeof(struct ieee80211_tx_queue_stats));
3387         }
3388         spin_unlock_bh(&priv->tx_lock);
3389         return 0;
3390 }
3391
3392 struct mwl8k_get_stats_worker {
3393         struct mwl8k_work_struct header;
3394         struct ieee80211_low_level_stats *stats;
3395 };
3396
3397 static int mwl8k_get_stats_wt(struct work_struct *wt)
3398 {
3399         struct mwl8k_get_stats_worker *worker =
3400                 (struct mwl8k_get_stats_worker *)wt;
3401
3402         return mwl8k_cmd_802_11_get_stat(worker->header.hw, worker->stats);
3403 }
3404
3405 static int mwl8k_get_stats(struct ieee80211_hw *hw,
3406                            struct ieee80211_low_level_stats *stats)
3407 {
3408         int rc;
3409         struct mwl8k_get_stats_worker *worker;
3410         struct mwl8k_priv *priv = hw->priv;
3411
3412         worker = kzalloc(sizeof(*worker), GFP_KERNEL);
3413         if (worker == NULL)
3414                 return -ENOMEM;
3415
3416         worker->stats = stats;
3417         rc = mwl8k_queue_work(hw, &worker->header,
3418                               priv->config_wq, mwl8k_get_stats_wt);
3419
3420         kfree(worker);
3421         if (rc == -ETIMEDOUT) {
3422                 printk(KERN_ERR "%s() timed out\n", __func__);
3423                 rc = -EINVAL;
3424         }
3425
3426         return rc;
3427 }
3428
3429 static const struct ieee80211_ops mwl8k_ops = {
3430         .tx                     = mwl8k_tx,
3431         .start                  = mwl8k_start,
3432         .stop                   = mwl8k_stop,
3433         .add_interface          = mwl8k_add_interface,
3434         .remove_interface       = mwl8k_remove_interface,
3435         .config                 = mwl8k_config,
3436         .bss_info_changed       = mwl8k_bss_info_changed,
3437         .configure_filter       = mwl8k_configure_filter,
3438         .set_rts_threshold      = mwl8k_set_rts_threshold,
3439         .conf_tx                = mwl8k_conf_tx,
3440         .get_tx_stats           = mwl8k_get_tx_stats,
3441         .get_stats              = mwl8k_get_stats,
3442 };
3443
3444 static void mwl8k_tx_reclaim_handler(unsigned long data)
3445 {
3446         int i;
3447         struct ieee80211_hw *hw = (struct ieee80211_hw *) data;
3448         struct mwl8k_priv *priv = hw->priv;
3449
3450         spin_lock_bh(&priv->tx_lock);
3451         for (i = 0; i < MWL8K_TX_QUEUES; i++)
3452                 mwl8k_txq_reclaim(hw, i, 0);
3453
3454         if (priv->tx_wait != NULL) {
3455                 int count = mwl8k_txq_busy(priv);
3456                 if (count == 0) {
3457                         complete(priv->tx_wait);
3458                         priv->tx_wait = NULL;
3459                 }
3460         }
3461         spin_unlock_bh(&priv->tx_lock);
3462 }
3463
3464 static void mwl8k_finalize_join_worker(struct work_struct *work)
3465 {
3466         struct mwl8k_priv *priv =
3467                 container_of(work, struct mwl8k_priv, finalize_join_worker);
3468         struct sk_buff *skb = priv->beacon_skb;
3469         u8 dtim = (MWL8K_VIF(priv->vif))->bss_info.dtim_period;
3470
3471         mwl8k_finalize_join(priv->hw, skb->data, skb->len, dtim);
3472         dev_kfree_skb(skb);
3473
3474         priv->beacon_skb = NULL;
3475 }
3476
3477 static int __devinit mwl8k_probe(struct pci_dev *pdev,
3478                                  const struct pci_device_id *id)
3479 {
3480         struct ieee80211_hw *hw;
3481         struct mwl8k_priv *priv;
3482         int rc;
3483         int i;
3484         u8 *fw;
3485
3486         rc = pci_enable_device(pdev);
3487         if (rc) {
3488                 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
3489                        MWL8K_NAME);
3490                 return rc;
3491         }
3492
3493         rc = pci_request_regions(pdev, MWL8K_NAME);
3494         if (rc) {
3495                 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
3496                        MWL8K_NAME);
3497                 return rc;
3498         }
3499
3500         pci_set_master(pdev);
3501
3502         hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
3503         if (hw == NULL) {
3504                 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
3505                 rc = -ENOMEM;
3506                 goto err_free_reg;
3507         }
3508
3509         priv = hw->priv;
3510         priv->hw = hw;
3511         priv->pdev = pdev;
3512         priv->hostcmd_wait = NULL;
3513         priv->tx_wait = NULL;
3514         priv->inconfig = false;
3515         priv->wep_enabled = 0;
3516         priv->wmm_mode = false;
3517         priv->pending_tx_pkts = 0;
3518         strncpy(priv->name, MWL8K_NAME, sizeof(priv->name));
3519
3520         spin_lock_init(&priv->fw_lock);
3521
3522         SET_IEEE80211_DEV(hw, &pdev->dev);
3523         pci_set_drvdata(pdev, hw);
3524
3525         priv->regs = pci_iomap(pdev, 1, 0x10000);
3526         if (priv->regs == NULL) {
3527                 printk(KERN_ERR "%s: Cannot map device memory\n", priv->name);
3528                 goto err_iounmap;
3529         }
3530
3531         memcpy(priv->channels, mwl8k_channels, sizeof(mwl8k_channels));
3532         priv->band.band = IEEE80211_BAND_2GHZ;
3533         priv->band.channels = priv->channels;
3534         priv->band.n_channels = ARRAY_SIZE(mwl8k_channels);
3535         priv->band.bitrates = priv->rates;
3536         priv->band.n_bitrates = ARRAY_SIZE(mwl8k_rates);
3537         hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band;
3538
3539         BUILD_BUG_ON(sizeof(priv->rates) != sizeof(mwl8k_rates));
3540         memcpy(priv->rates, mwl8k_rates, sizeof(mwl8k_rates));
3541
3542         /*
3543          * Extra headroom is the size of the required DMA header
3544          * minus the size of the smallest 802.11 frame (CTS frame).
3545          */
3546         hw->extra_tx_headroom =
3547                 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
3548
3549         hw->channel_change_time = 10;
3550
3551         hw->queues = MWL8K_TX_QUEUES;
3552
3553         hw->wiphy->interface_modes =
3554                 BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_MONITOR);
3555
3556         /* Set rssi and noise values to dBm */
3557         hw->flags |= (IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_NOISE_DBM);
3558         hw->vif_data_size = sizeof(struct mwl8k_vif);
3559         priv->vif = NULL;
3560
3561         /* Set default radio state and preamble */
3562         priv->radio_preamble = MWL8K_RADIO_DEFAULT_PREAMBLE;
3563         priv->radio_state = MWL8K_RADIO_DISABLE;
3564
3565         /* Finalize join worker */
3566         INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
3567
3568         /* TX reclaim tasklet */
3569         tasklet_init(&priv->tx_reclaim_task,
3570                         mwl8k_tx_reclaim_handler, (unsigned long)hw);
3571         tasklet_disable(&priv->tx_reclaim_task);
3572
3573         /* Config workthread */
3574         priv->config_wq = create_singlethread_workqueue("mwl8k_config");
3575         if (priv->config_wq == NULL)
3576                 goto err_iounmap;
3577
3578         /* Power management cookie */
3579         priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
3580         if (priv->cookie == NULL)
3581                 goto err_iounmap;
3582
3583         rc = mwl8k_rxq_init(hw, 0);
3584         if (rc)
3585                 goto err_iounmap;
3586         rxq_refill(hw, 0, INT_MAX);
3587
3588         spin_lock_init(&priv->tx_lock);
3589
3590         for (i = 0; i < MWL8K_TX_QUEUES; i++) {
3591                 rc = mwl8k_txq_init(hw, i);
3592                 if (rc)
3593                         goto err_free_queues;
3594         }
3595
3596         iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
3597         priv->int_mask = 0;
3598         iowrite32(priv->int_mask, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
3599         iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
3600         iowrite32(0xffffffff, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3601
3602         rc = request_irq(priv->pdev->irq, &mwl8k_interrupt,
3603                          IRQF_SHARED, MWL8K_NAME, hw);
3604         if (rc) {
3605                 printk(KERN_ERR "%s: failed to register IRQ handler\n",
3606                        priv->name);
3607                 goto err_free_queues;
3608         }
3609
3610         /* Reset firmware and hardware */
3611         mwl8k_hw_reset(priv);
3612
3613         /* Ask userland hotplug daemon for the device firmware */
3614         rc = mwl8k_request_firmware(priv, (u32)id->driver_data);
3615         if (rc) {
3616                 printk(KERN_ERR "%s: Firmware files not found\n", priv->name);
3617                 goto err_free_irq;
3618         }
3619
3620         /* Load firmware into hardware */
3621         rc = mwl8k_load_firmware(priv);
3622         if (rc) {
3623                 printk(KERN_ERR "%s: Cannot start firmware\n", priv->name);
3624                 goto err_stop_firmware;
3625         }
3626
3627         /* Reclaim memory once firmware is successfully loaded */
3628         mwl8k_release_firmware(priv);
3629
3630         /*
3631          * Temporarily enable interrupts.  Initial firmware host
3632          * commands use interrupts and avoids polling.  Disable
3633          * interrupts when done.
3634          */
3635         priv->int_mask |= MWL8K_A2H_EVENTS;
3636
3637         iowrite32(priv->int_mask, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
3638
3639         /* Get config data, mac addrs etc */
3640         rc = mwl8k_cmd_get_hw_spec(hw);
3641         if (rc) {
3642                 printk(KERN_ERR "%s: Cannot initialise firmware\n", priv->name);
3643                 goto err_stop_firmware;
3644         }
3645
3646         /* Turn radio off */
3647         rc = mwl8k_cmd_802_11_radio_control(hw, MWL8K_RADIO_DISABLE);
3648         if (rc) {
3649                 printk(KERN_ERR "%s: Cannot disable\n", priv->name);
3650                 goto err_stop_firmware;
3651         }
3652
3653         /* Disable interrupts */
3654         spin_lock_irq(&priv->tx_lock);
3655         iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
3656         spin_unlock_irq(&priv->tx_lock);
3657         free_irq(priv->pdev->irq, hw);
3658
3659         rc = ieee80211_register_hw(hw);
3660         if (rc) {
3661                 printk(KERN_ERR "%s: Cannot register device\n", priv->name);
3662                 goto err_stop_firmware;
3663         }
3664
3665         fw = (u8 *)&priv->fw_rev;
3666         printk(KERN_INFO "%s: 88W%u %s\n", priv->name, priv->part_num,
3667                 MWL8K_DESC);
3668         printk(KERN_INFO "%s: Driver Ver:%s  Firmware Ver:%u.%u.%u.%u\n",
3669                 priv->name, MWL8K_VERSION, fw[3], fw[2], fw[1], fw[0]);
3670         printk(KERN_INFO "%s: MAC Address: %pM\n", priv->name,
3671                 hw->wiphy->perm_addr);
3672
3673         return 0;
3674
3675 err_stop_firmware:
3676         mwl8k_hw_reset(priv);
3677         mwl8k_release_firmware(priv);
3678
3679 err_free_irq:
3680         spin_lock_irq(&priv->tx_lock);
3681         iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
3682         spin_unlock_irq(&priv->tx_lock);
3683         free_irq(priv->pdev->irq, hw);
3684
3685 err_free_queues:
3686         for (i = 0; i < MWL8K_TX_QUEUES; i++)
3687                 mwl8k_txq_deinit(hw, i);
3688         mwl8k_rxq_deinit(hw, 0);
3689
3690 err_iounmap:
3691         if (priv->cookie != NULL)
3692                 pci_free_consistent(priv->pdev, 4,
3693                                 priv->cookie, priv->cookie_dma);
3694
3695         if (priv->regs != NULL)
3696                 pci_iounmap(pdev, priv->regs);
3697
3698         if (priv->config_wq != NULL)
3699                 destroy_workqueue(priv->config_wq);
3700
3701         pci_set_drvdata(pdev, NULL);
3702         ieee80211_free_hw(hw);
3703
3704 err_free_reg:
3705         pci_release_regions(pdev);
3706         pci_disable_device(pdev);
3707
3708         return rc;
3709 }
3710
3711 static void __devexit mwl8k_shutdown(struct pci_dev *pdev)
3712 {
3713         printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__);
3714 }
3715
3716 static void __devexit mwl8k_remove(struct pci_dev *pdev)
3717 {
3718         struct ieee80211_hw *hw = pci_get_drvdata(pdev);
3719         struct mwl8k_priv *priv;
3720         int i;
3721
3722         if (hw == NULL)
3723                 return;
3724         priv = hw->priv;
3725
3726         ieee80211_stop_queues(hw);
3727
3728         /* Remove tx reclaim tasklet */
3729         tasklet_kill(&priv->tx_reclaim_task);
3730
3731         /* Stop config thread */
3732         destroy_workqueue(priv->config_wq);
3733
3734         /* Stop hardware */
3735         mwl8k_hw_reset(priv);
3736
3737         /* Return all skbs to mac80211 */
3738         for (i = 0; i < MWL8K_TX_QUEUES; i++)
3739                 mwl8k_txq_reclaim(hw, i, 1);
3740
3741         ieee80211_unregister_hw(hw);
3742
3743         for (i = 0; i < MWL8K_TX_QUEUES; i++)
3744                 mwl8k_txq_deinit(hw, i);
3745
3746         mwl8k_rxq_deinit(hw, 0);
3747
3748         pci_free_consistent(priv->pdev, 4,
3749                                 priv->cookie, priv->cookie_dma);
3750
3751         pci_iounmap(pdev, priv->regs);
3752         pci_set_drvdata(pdev, NULL);
3753         ieee80211_free_hw(hw);
3754         pci_release_regions(pdev);
3755         pci_disable_device(pdev);
3756 }
3757
3758 static struct pci_driver mwl8k_driver = {
3759         .name           = MWL8K_NAME,
3760         .id_table       = mwl8k_table,
3761         .probe          = mwl8k_probe,
3762         .remove         = __devexit_p(mwl8k_remove),
3763         .shutdown       = __devexit_p(mwl8k_shutdown),
3764 };
3765
3766 static int __init mwl8k_init(void)
3767 {
3768         return pci_register_driver(&mwl8k_driver);
3769 }
3770
3771 static void __exit mwl8k_exit(void)
3772 {
3773         pci_unregister_driver(&mwl8k_driver);
3774 }
3775
3776 module_init(mwl8k_init);
3777 module_exit(mwl8k_exit);