net: remove interrupt.h inclusion from netdevice.h
[linux-2.6-block.git] / drivers / net / wireless / mwl8k.c
1 /*
2  * drivers/net/wireless/mwl8k.c
3  * Driver for Marvell TOPDOG 802.11 Wireless cards
4  *
5  * Copyright (C) 2008, 2009, 2010 Marvell Semiconductor Inc.
6  *
7  * This file is licensed under the terms of the GNU General Public
8  * License version 2.  This program is licensed "as is" without any
9  * warranty of any kind, whether express or implied.
10  */
11
12 #include <linux/init.h>
13 #include <linux/interrupt.h>
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/sched.h>
17 #include <linux/spinlock.h>
18 #include <linux/list.h>
19 #include <linux/pci.h>
20 #include <linux/delay.h>
21 #include <linux/completion.h>
22 #include <linux/etherdevice.h>
23 #include <linux/slab.h>
24 #include <net/mac80211.h>
25 #include <linux/moduleparam.h>
26 #include <linux/firmware.h>
27 #include <linux/workqueue.h>
28
29 #define MWL8K_DESC      "Marvell TOPDOG(R) 802.11 Wireless Network Driver"
30 #define MWL8K_NAME      KBUILD_MODNAME
31 #define MWL8K_VERSION   "0.12"
32
33 /* Module parameters */
34 static unsigned ap_mode_default;
35 module_param(ap_mode_default, bool, 0);
36 MODULE_PARM_DESC(ap_mode_default,
37                  "Set to 1 to make ap mode the default instead of sta mode");
38
39 /* Register definitions */
40 #define MWL8K_HIU_GEN_PTR                       0x00000c10
41 #define  MWL8K_MODE_STA                          0x0000005a
42 #define  MWL8K_MODE_AP                           0x000000a5
43 #define MWL8K_HIU_INT_CODE                      0x00000c14
44 #define  MWL8K_FWSTA_READY                       0xf0f1f2f4
45 #define  MWL8K_FWAP_READY                        0xf1f2f4a5
46 #define  MWL8K_INT_CODE_CMD_FINISHED             0x00000005
47 #define MWL8K_HIU_SCRATCH                       0x00000c40
48
49 /* Host->device communications */
50 #define MWL8K_HIU_H2A_INTERRUPT_EVENTS          0x00000c18
51 #define MWL8K_HIU_H2A_INTERRUPT_STATUS          0x00000c1c
52 #define MWL8K_HIU_H2A_INTERRUPT_MASK            0x00000c20
53 #define MWL8K_HIU_H2A_INTERRUPT_CLEAR_SEL       0x00000c24
54 #define MWL8K_HIU_H2A_INTERRUPT_STATUS_MASK     0x00000c28
55 #define  MWL8K_H2A_INT_DUMMY                     (1 << 20)
56 #define  MWL8K_H2A_INT_RESET                     (1 << 15)
57 #define  MWL8K_H2A_INT_DOORBELL                  (1 << 1)
58 #define  MWL8K_H2A_INT_PPA_READY                 (1 << 0)
59
60 /* Device->host communications */
61 #define MWL8K_HIU_A2H_INTERRUPT_EVENTS          0x00000c2c
62 #define MWL8K_HIU_A2H_INTERRUPT_STATUS          0x00000c30
63 #define MWL8K_HIU_A2H_INTERRUPT_MASK            0x00000c34
64 #define MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL       0x00000c38
65 #define MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK     0x00000c3c
66 #define  MWL8K_A2H_INT_DUMMY                     (1 << 20)
67 #define  MWL8K_A2H_INT_BA_WATCHDOG               (1 << 14)
68 #define  MWL8K_A2H_INT_CHNL_SWITCHED             (1 << 11)
69 #define  MWL8K_A2H_INT_QUEUE_EMPTY               (1 << 10)
70 #define  MWL8K_A2H_INT_RADAR_DETECT              (1 << 7)
71 #define  MWL8K_A2H_INT_RADIO_ON                  (1 << 6)
72 #define  MWL8K_A2H_INT_RADIO_OFF                 (1 << 5)
73 #define  MWL8K_A2H_INT_MAC_EVENT                 (1 << 3)
74 #define  MWL8K_A2H_INT_OPC_DONE                  (1 << 2)
75 #define  MWL8K_A2H_INT_RX_READY                  (1 << 1)
76 #define  MWL8K_A2H_INT_TX_DONE                   (1 << 0)
77
78 /* HW micro second timer register
79  * located at offset 0xA600. This
80  * will be used to timestamp tx
81  * packets.
82  */
83
84 #define MWL8K_HW_TIMER_REGISTER                 0x0000a600
85
86 #define MWL8K_A2H_EVENTS        (MWL8K_A2H_INT_DUMMY | \
87                                  MWL8K_A2H_INT_CHNL_SWITCHED | \
88                                  MWL8K_A2H_INT_QUEUE_EMPTY | \
89                                  MWL8K_A2H_INT_RADAR_DETECT | \
90                                  MWL8K_A2H_INT_RADIO_ON | \
91                                  MWL8K_A2H_INT_RADIO_OFF | \
92                                  MWL8K_A2H_INT_MAC_EVENT | \
93                                  MWL8K_A2H_INT_OPC_DONE | \
94                                  MWL8K_A2H_INT_RX_READY | \
95                                  MWL8K_A2H_INT_TX_DONE | \
96                                  MWL8K_A2H_INT_BA_WATCHDOG)
97
98 #define MWL8K_RX_QUEUES         1
99 #define MWL8K_TX_WMM_QUEUES     4
100 #define MWL8K_MAX_AMPDU_QUEUES  8
101 #define MWL8K_MAX_TX_QUEUES     (MWL8K_TX_WMM_QUEUES + MWL8K_MAX_AMPDU_QUEUES)
102 #define mwl8k_tx_queues(priv)   (MWL8K_TX_WMM_QUEUES + (priv)->num_ampdu_queues)
103
104 struct rxd_ops {
105         int rxd_size;
106         void (*rxd_init)(void *rxd, dma_addr_t next_dma_addr);
107         void (*rxd_refill)(void *rxd, dma_addr_t addr, int len);
108         int (*rxd_process)(void *rxd, struct ieee80211_rx_status *status,
109                            __le16 *qos, s8 *noise);
110 };
111
112 struct mwl8k_device_info {
113         char *part_name;
114         char *helper_image;
115         char *fw_image_sta;
116         char *fw_image_ap;
117         struct rxd_ops *ap_rxd_ops;
118         u32 fw_api_ap;
119 };
120
121 struct mwl8k_rx_queue {
122         int rxd_count;
123
124         /* hw receives here */
125         int head;
126
127         /* refill descs here */
128         int tail;
129
130         void *rxd;
131         dma_addr_t rxd_dma;
132         struct {
133                 struct sk_buff *skb;
134                 DEFINE_DMA_UNMAP_ADDR(dma);
135         } *buf;
136 };
137
138 struct mwl8k_tx_queue {
139         /* hw transmits here */
140         int head;
141
142         /* sw appends here */
143         int tail;
144
145         unsigned int len;
146         struct mwl8k_tx_desc *txd;
147         dma_addr_t txd_dma;
148         struct sk_buff **skb;
149 };
150
151 enum {
152         AMPDU_NO_STREAM,
153         AMPDU_STREAM_NEW,
154         AMPDU_STREAM_IN_PROGRESS,
155         AMPDU_STREAM_ACTIVE,
156 };
157
158 struct mwl8k_ampdu_stream {
159         struct ieee80211_sta *sta;
160         u8 tid;
161         u8 state;
162         u8 idx;
163         u8 txq_idx; /* index of this stream in priv->txq */
164 };
165
166 struct mwl8k_priv {
167         struct ieee80211_hw *hw;
168         struct pci_dev *pdev;
169         int irq;
170
171         struct mwl8k_device_info *device_info;
172
173         void __iomem *sram;
174         void __iomem *regs;
175
176         /* firmware */
177         const struct firmware *fw_helper;
178         const struct firmware *fw_ucode;
179
180         /* hardware/firmware parameters */
181         bool ap_fw;
182         struct rxd_ops *rxd_ops;
183         struct ieee80211_supported_band band_24;
184         struct ieee80211_channel channels_24[14];
185         struct ieee80211_rate rates_24[14];
186         struct ieee80211_supported_band band_50;
187         struct ieee80211_channel channels_50[4];
188         struct ieee80211_rate rates_50[9];
189         u32 ap_macids_supported;
190         u32 sta_macids_supported;
191
192         /* Ampdu stream information */
193         u8 num_ampdu_queues;
194         spinlock_t stream_lock;
195         struct mwl8k_ampdu_stream ampdu[MWL8K_MAX_AMPDU_QUEUES];
196         struct work_struct watchdog_ba_handle;
197
198         /* firmware access */
199         struct mutex fw_mutex;
200         struct task_struct *fw_mutex_owner;
201         int fw_mutex_depth;
202         struct completion *hostcmd_wait;
203
204         /* lock held over TX and TX reap */
205         spinlock_t tx_lock;
206
207         /* TX quiesce completion, protected by fw_mutex and tx_lock */
208         struct completion *tx_wait;
209
210         /* List of interfaces.  */
211         u32 macids_used;
212         struct list_head vif_list;
213
214         /* power management status cookie from firmware */
215         u32 *cookie;
216         dma_addr_t cookie_dma;
217
218         u16 num_mcaddrs;
219         u8 hw_rev;
220         u32 fw_rev;
221
222         /*
223          * Running count of TX packets in flight, to avoid
224          * iterating over the transmit rings each time.
225          */
226         int pending_tx_pkts;
227
228         struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES];
229         struct mwl8k_tx_queue txq[MWL8K_MAX_TX_QUEUES];
230         u32 txq_offset[MWL8K_MAX_TX_QUEUES];
231
232         bool radio_on;
233         bool radio_short_preamble;
234         bool sniffer_enabled;
235         bool wmm_enabled;
236
237         /* XXX need to convert this to handle multiple interfaces */
238         bool capture_beacon;
239         u8 capture_bssid[ETH_ALEN];
240         struct sk_buff *beacon_skb;
241
242         /*
243          * This FJ worker has to be global as it is scheduled from the
244          * RX handler.  At this point we don't know which interface it
245          * belongs to until the list of bssids waiting to complete join
246          * is checked.
247          */
248         struct work_struct finalize_join_worker;
249
250         /* Tasklet to perform TX reclaim.  */
251         struct tasklet_struct poll_tx_task;
252
253         /* Tasklet to perform RX.  */
254         struct tasklet_struct poll_rx_task;
255
256         /* Most recently reported noise in dBm */
257         s8 noise;
258
259         /*
260          * preserve the queue configurations so they can be restored if/when
261          * the firmware image is swapped.
262          */
263         struct ieee80211_tx_queue_params wmm_params[MWL8K_TX_WMM_QUEUES];
264
265         /* async firmware loading state */
266         unsigned fw_state;
267         char *fw_pref;
268         char *fw_alt;
269         struct completion firmware_loading_complete;
270 };
271
272 #define MAX_WEP_KEY_LEN         13
273 #define NUM_WEP_KEYS            4
274
275 /* Per interface specific private data */
276 struct mwl8k_vif {
277         struct list_head list;
278         struct ieee80211_vif *vif;
279
280         /* Firmware macid for this vif.  */
281         int macid;
282
283         /* Non AMPDU sequence number assigned by driver.  */
284         u16 seqno;
285
286         /* Saved WEP keys */
287         struct {
288                 u8 enabled;
289                 u8 key[sizeof(struct ieee80211_key_conf) + MAX_WEP_KEY_LEN];
290         } wep_key_conf[NUM_WEP_KEYS];
291
292         /* BSSID */
293         u8 bssid[ETH_ALEN];
294
295         /* A flag to indicate is HW crypto is enabled for this bssid */
296         bool is_hw_crypto_enabled;
297 };
298 #define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv))
299 #define IEEE80211_KEY_CONF(_u8) ((struct ieee80211_key_conf *)(_u8))
300
301 struct tx_traffic_info {
302         u32 start_time;
303         u32 pkts;
304 };
305
306 #define MWL8K_MAX_TID 8
307 struct mwl8k_sta {
308         /* Index into station database. Returned by UPDATE_STADB.  */
309         u8 peer_id;
310         u8 is_ampdu_allowed;
311         struct tx_traffic_info tx_stats[MWL8K_MAX_TID];
312 };
313 #define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv))
314
315 static const struct ieee80211_channel mwl8k_channels_24[] = {
316         { .center_freq = 2412, .hw_value = 1, },
317         { .center_freq = 2417, .hw_value = 2, },
318         { .center_freq = 2422, .hw_value = 3, },
319         { .center_freq = 2427, .hw_value = 4, },
320         { .center_freq = 2432, .hw_value = 5, },
321         { .center_freq = 2437, .hw_value = 6, },
322         { .center_freq = 2442, .hw_value = 7, },
323         { .center_freq = 2447, .hw_value = 8, },
324         { .center_freq = 2452, .hw_value = 9, },
325         { .center_freq = 2457, .hw_value = 10, },
326         { .center_freq = 2462, .hw_value = 11, },
327         { .center_freq = 2467, .hw_value = 12, },
328         { .center_freq = 2472, .hw_value = 13, },
329         { .center_freq = 2484, .hw_value = 14, },
330 };
331
332 static const struct ieee80211_rate mwl8k_rates_24[] = {
333         { .bitrate = 10, .hw_value = 2, },
334         { .bitrate = 20, .hw_value = 4, },
335         { .bitrate = 55, .hw_value = 11, },
336         { .bitrate = 110, .hw_value = 22, },
337         { .bitrate = 220, .hw_value = 44, },
338         { .bitrate = 60, .hw_value = 12, },
339         { .bitrate = 90, .hw_value = 18, },
340         { .bitrate = 120, .hw_value = 24, },
341         { .bitrate = 180, .hw_value = 36, },
342         { .bitrate = 240, .hw_value = 48, },
343         { .bitrate = 360, .hw_value = 72, },
344         { .bitrate = 480, .hw_value = 96, },
345         { .bitrate = 540, .hw_value = 108, },
346         { .bitrate = 720, .hw_value = 144, },
347 };
348
349 static const struct ieee80211_channel mwl8k_channels_50[] = {
350         { .center_freq = 5180, .hw_value = 36, },
351         { .center_freq = 5200, .hw_value = 40, },
352         { .center_freq = 5220, .hw_value = 44, },
353         { .center_freq = 5240, .hw_value = 48, },
354 };
355
356 static const struct ieee80211_rate mwl8k_rates_50[] = {
357         { .bitrate = 60, .hw_value = 12, },
358         { .bitrate = 90, .hw_value = 18, },
359         { .bitrate = 120, .hw_value = 24, },
360         { .bitrate = 180, .hw_value = 36, },
361         { .bitrate = 240, .hw_value = 48, },
362         { .bitrate = 360, .hw_value = 72, },
363         { .bitrate = 480, .hw_value = 96, },
364         { .bitrate = 540, .hw_value = 108, },
365         { .bitrate = 720, .hw_value = 144, },
366 };
367
368 /* Set or get info from Firmware */
369 #define MWL8K_CMD_GET                   0x0000
370 #define MWL8K_CMD_SET                   0x0001
371 #define MWL8K_CMD_SET_LIST              0x0002
372
373 /* Firmware command codes */
374 #define MWL8K_CMD_CODE_DNLD             0x0001
375 #define MWL8K_CMD_GET_HW_SPEC           0x0003
376 #define MWL8K_CMD_SET_HW_SPEC           0x0004
377 #define MWL8K_CMD_MAC_MULTICAST_ADR     0x0010
378 #define MWL8K_CMD_GET_STAT              0x0014
379 #define MWL8K_CMD_RADIO_CONTROL         0x001c
380 #define MWL8K_CMD_RF_TX_POWER           0x001e
381 #define MWL8K_CMD_TX_POWER              0x001f
382 #define MWL8K_CMD_RF_ANTENNA            0x0020
383 #define MWL8K_CMD_SET_BEACON            0x0100          /* per-vif */
384 #define MWL8K_CMD_SET_PRE_SCAN          0x0107
385 #define MWL8K_CMD_SET_POST_SCAN         0x0108
386 #define MWL8K_CMD_SET_RF_CHANNEL        0x010a
387 #define MWL8K_CMD_SET_AID               0x010d
388 #define MWL8K_CMD_SET_RATE              0x0110
389 #define MWL8K_CMD_SET_FINALIZE_JOIN     0x0111
390 #define MWL8K_CMD_RTS_THRESHOLD         0x0113
391 #define MWL8K_CMD_SET_SLOT              0x0114
392 #define MWL8K_CMD_SET_EDCA_PARAMS       0x0115
393 #define MWL8K_CMD_SET_WMM_MODE          0x0123
394 #define MWL8K_CMD_MIMO_CONFIG           0x0125
395 #define MWL8K_CMD_USE_FIXED_RATE        0x0126
396 #define MWL8K_CMD_ENABLE_SNIFFER        0x0150
397 #define MWL8K_CMD_SET_MAC_ADDR          0x0202          /* per-vif */
398 #define MWL8K_CMD_SET_RATEADAPT_MODE    0x0203
399 #define MWL8K_CMD_GET_WATCHDOG_BITMAP   0x0205
400 #define MWL8K_CMD_BSS_START             0x1100          /* per-vif */
401 #define MWL8K_CMD_SET_NEW_STN           0x1111          /* per-vif */
402 #define MWL8K_CMD_UPDATE_ENCRYPTION     0x1122          /* per-vif */
403 #define MWL8K_CMD_UPDATE_STADB          0x1123
404 #define MWL8K_CMD_BASTREAM              0x1125
405
406 static const char *mwl8k_cmd_name(__le16 cmd, char *buf, int bufsize)
407 {
408         u16 command = le16_to_cpu(cmd);
409
410 #define MWL8K_CMDNAME(x)        case MWL8K_CMD_##x: do {\
411                                         snprintf(buf, bufsize, "%s", #x);\
412                                         return buf;\
413                                         } while (0)
414         switch (command & ~0x8000) {
415                 MWL8K_CMDNAME(CODE_DNLD);
416                 MWL8K_CMDNAME(GET_HW_SPEC);
417                 MWL8K_CMDNAME(SET_HW_SPEC);
418                 MWL8K_CMDNAME(MAC_MULTICAST_ADR);
419                 MWL8K_CMDNAME(GET_STAT);
420                 MWL8K_CMDNAME(RADIO_CONTROL);
421                 MWL8K_CMDNAME(RF_TX_POWER);
422                 MWL8K_CMDNAME(TX_POWER);
423                 MWL8K_CMDNAME(RF_ANTENNA);
424                 MWL8K_CMDNAME(SET_BEACON);
425                 MWL8K_CMDNAME(SET_PRE_SCAN);
426                 MWL8K_CMDNAME(SET_POST_SCAN);
427                 MWL8K_CMDNAME(SET_RF_CHANNEL);
428                 MWL8K_CMDNAME(SET_AID);
429                 MWL8K_CMDNAME(SET_RATE);
430                 MWL8K_CMDNAME(SET_FINALIZE_JOIN);
431                 MWL8K_CMDNAME(RTS_THRESHOLD);
432                 MWL8K_CMDNAME(SET_SLOT);
433                 MWL8K_CMDNAME(SET_EDCA_PARAMS);
434                 MWL8K_CMDNAME(SET_WMM_MODE);
435                 MWL8K_CMDNAME(MIMO_CONFIG);
436                 MWL8K_CMDNAME(USE_FIXED_RATE);
437                 MWL8K_CMDNAME(ENABLE_SNIFFER);
438                 MWL8K_CMDNAME(SET_MAC_ADDR);
439                 MWL8K_CMDNAME(SET_RATEADAPT_MODE);
440                 MWL8K_CMDNAME(BSS_START);
441                 MWL8K_CMDNAME(SET_NEW_STN);
442                 MWL8K_CMDNAME(UPDATE_ENCRYPTION);
443                 MWL8K_CMDNAME(UPDATE_STADB);
444                 MWL8K_CMDNAME(BASTREAM);
445                 MWL8K_CMDNAME(GET_WATCHDOG_BITMAP);
446         default:
447                 snprintf(buf, bufsize, "0x%x", cmd);
448         }
449 #undef MWL8K_CMDNAME
450
451         return buf;
452 }
453
454 /* Hardware and firmware reset */
455 static void mwl8k_hw_reset(struct mwl8k_priv *priv)
456 {
457         iowrite32(MWL8K_H2A_INT_RESET,
458                 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
459         iowrite32(MWL8K_H2A_INT_RESET,
460                 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
461         msleep(20);
462 }
463
464 /* Release fw image */
465 static void mwl8k_release_fw(const struct firmware **fw)
466 {
467         if (*fw == NULL)
468                 return;
469         release_firmware(*fw);
470         *fw = NULL;
471 }
472
473 static void mwl8k_release_firmware(struct mwl8k_priv *priv)
474 {
475         mwl8k_release_fw(&priv->fw_ucode);
476         mwl8k_release_fw(&priv->fw_helper);
477 }
478
479 /* states for asynchronous f/w loading */
480 static void mwl8k_fw_state_machine(const struct firmware *fw, void *context);
481 enum {
482         FW_STATE_INIT = 0,
483         FW_STATE_LOADING_PREF,
484         FW_STATE_LOADING_ALT,
485         FW_STATE_ERROR,
486 };
487
488 /* Request fw image */
489 static int mwl8k_request_fw(struct mwl8k_priv *priv,
490                             const char *fname, const struct firmware **fw,
491                             bool nowait)
492 {
493         /* release current image */
494         if (*fw != NULL)
495                 mwl8k_release_fw(fw);
496
497         if (nowait)
498                 return request_firmware_nowait(THIS_MODULE, 1, fname,
499                                                &priv->pdev->dev, GFP_KERNEL,
500                                                priv, mwl8k_fw_state_machine);
501         else
502                 return request_firmware(fw, fname, &priv->pdev->dev);
503 }
504
505 static int mwl8k_request_firmware(struct mwl8k_priv *priv, char *fw_image,
506                                   bool nowait)
507 {
508         struct mwl8k_device_info *di = priv->device_info;
509         int rc;
510
511         if (di->helper_image != NULL) {
512                 if (nowait)
513                         rc = mwl8k_request_fw(priv, di->helper_image,
514                                               &priv->fw_helper, true);
515                 else
516                         rc = mwl8k_request_fw(priv, di->helper_image,
517                                               &priv->fw_helper, false);
518                 if (rc)
519                         printk(KERN_ERR "%s: Error requesting helper fw %s\n",
520                                pci_name(priv->pdev), di->helper_image);
521
522                 if (rc || nowait)
523                         return rc;
524         }
525
526         if (nowait) {
527                 /*
528                  * if we get here, no helper image is needed.  Skip the
529                  * FW_STATE_INIT state.
530                  */
531                 priv->fw_state = FW_STATE_LOADING_PREF;
532                 rc = mwl8k_request_fw(priv, fw_image,
533                                       &priv->fw_ucode,
534                                       true);
535         } else
536                 rc = mwl8k_request_fw(priv, fw_image,
537                                       &priv->fw_ucode, false);
538         if (rc) {
539                 printk(KERN_ERR "%s: Error requesting firmware file %s\n",
540                        pci_name(priv->pdev), fw_image);
541                 mwl8k_release_fw(&priv->fw_helper);
542                 return rc;
543         }
544
545         return 0;
546 }
547
548 struct mwl8k_cmd_pkt {
549         __le16  code;
550         __le16  length;
551         __u8    seq_num;
552         __u8    macid;
553         __le16  result;
554         char    payload[0];
555 } __packed;
556
557 /*
558  * Firmware loading.
559  */
560 static int
561 mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length)
562 {
563         void __iomem *regs = priv->regs;
564         dma_addr_t dma_addr;
565         int loops;
566
567         dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE);
568         if (pci_dma_mapping_error(priv->pdev, dma_addr))
569                 return -ENOMEM;
570
571         iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
572         iowrite32(0, regs + MWL8K_HIU_INT_CODE);
573         iowrite32(MWL8K_H2A_INT_DOORBELL,
574                 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
575         iowrite32(MWL8K_H2A_INT_DUMMY,
576                 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
577
578         loops = 1000;
579         do {
580                 u32 int_code;
581
582                 int_code = ioread32(regs + MWL8K_HIU_INT_CODE);
583                 if (int_code == MWL8K_INT_CODE_CMD_FINISHED) {
584                         iowrite32(0, regs + MWL8K_HIU_INT_CODE);
585                         break;
586                 }
587
588                 cond_resched();
589                 udelay(1);
590         } while (--loops);
591
592         pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE);
593
594         return loops ? 0 : -ETIMEDOUT;
595 }
596
597 static int mwl8k_load_fw_image(struct mwl8k_priv *priv,
598                                 const u8 *data, size_t length)
599 {
600         struct mwl8k_cmd_pkt *cmd;
601         int done;
602         int rc = 0;
603
604         cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL);
605         if (cmd == NULL)
606                 return -ENOMEM;
607
608         cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD);
609         cmd->seq_num = 0;
610         cmd->macid = 0;
611         cmd->result = 0;
612
613         done = 0;
614         while (length) {
615                 int block_size = length > 256 ? 256 : length;
616
617                 memcpy(cmd->payload, data + done, block_size);
618                 cmd->length = cpu_to_le16(block_size);
619
620                 rc = mwl8k_send_fw_load_cmd(priv, cmd,
621                                                 sizeof(*cmd) + block_size);
622                 if (rc)
623                         break;
624
625                 done += block_size;
626                 length -= block_size;
627         }
628
629         if (!rc) {
630                 cmd->length = 0;
631                 rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd));
632         }
633
634         kfree(cmd);
635
636         return rc;
637 }
638
639 static int mwl8k_feed_fw_image(struct mwl8k_priv *priv,
640                                 const u8 *data, size_t length)
641 {
642         unsigned char *buffer;
643         int may_continue, rc = 0;
644         u32 done, prev_block_size;
645
646         buffer = kmalloc(1024, GFP_KERNEL);
647         if (buffer == NULL)
648                 return -ENOMEM;
649
650         done = 0;
651         prev_block_size = 0;
652         may_continue = 1000;
653         while (may_continue > 0) {
654                 u32 block_size;
655
656                 block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH);
657                 if (block_size & 1) {
658                         block_size &= ~1;
659                         may_continue--;
660                 } else {
661                         done += prev_block_size;
662                         length -= prev_block_size;
663                 }
664
665                 if (block_size > 1024 || block_size > length) {
666                         rc = -EOVERFLOW;
667                         break;
668                 }
669
670                 if (length == 0) {
671                         rc = 0;
672                         break;
673                 }
674
675                 if (block_size == 0) {
676                         rc = -EPROTO;
677                         may_continue--;
678                         udelay(1);
679                         continue;
680                 }
681
682                 prev_block_size = block_size;
683                 memcpy(buffer, data + done, block_size);
684
685                 rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size);
686                 if (rc)
687                         break;
688         }
689
690         if (!rc && length != 0)
691                 rc = -EREMOTEIO;
692
693         kfree(buffer);
694
695         return rc;
696 }
697
698 static int mwl8k_load_firmware(struct ieee80211_hw *hw)
699 {
700         struct mwl8k_priv *priv = hw->priv;
701         const struct firmware *fw = priv->fw_ucode;
702         int rc;
703         int loops;
704
705         if (!memcmp(fw->data, "\x01\x00\x00\x00", 4)) {
706                 const struct firmware *helper = priv->fw_helper;
707
708                 if (helper == NULL) {
709                         printk(KERN_ERR "%s: helper image needed but none "
710                                "given\n", pci_name(priv->pdev));
711                         return -EINVAL;
712                 }
713
714                 rc = mwl8k_load_fw_image(priv, helper->data, helper->size);
715                 if (rc) {
716                         printk(KERN_ERR "%s: unable to load firmware "
717                                "helper image\n", pci_name(priv->pdev));
718                         return rc;
719                 }
720                 msleep(20);
721
722                 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
723         } else {
724                 rc = mwl8k_load_fw_image(priv, fw->data, fw->size);
725         }
726
727         if (rc) {
728                 printk(KERN_ERR "%s: unable to load firmware image\n",
729                        pci_name(priv->pdev));
730                 return rc;
731         }
732
733         iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR);
734
735         loops = 500000;
736         do {
737                 u32 ready_code;
738
739                 ready_code = ioread32(priv->regs + MWL8K_HIU_INT_CODE);
740                 if (ready_code == MWL8K_FWAP_READY) {
741                         priv->ap_fw = 1;
742                         break;
743                 } else if (ready_code == MWL8K_FWSTA_READY) {
744                         priv->ap_fw = 0;
745                         break;
746                 }
747
748                 cond_resched();
749                 udelay(1);
750         } while (--loops);
751
752         return loops ? 0 : -ETIMEDOUT;
753 }
754
755
756 /* DMA header used by firmware and hardware.  */
757 struct mwl8k_dma_data {
758         __le16 fwlen;
759         struct ieee80211_hdr wh;
760         char data[0];
761 } __packed;
762
763 /* Routines to add/remove DMA header from skb.  */
764 static inline void mwl8k_remove_dma_header(struct sk_buff *skb, __le16 qos)
765 {
766         struct mwl8k_dma_data *tr;
767         int hdrlen;
768
769         tr = (struct mwl8k_dma_data *)skb->data;
770         hdrlen = ieee80211_hdrlen(tr->wh.frame_control);
771
772         if (hdrlen != sizeof(tr->wh)) {
773                 if (ieee80211_is_data_qos(tr->wh.frame_control)) {
774                         memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2);
775                         *((__le16 *)(tr->data - 2)) = qos;
776                 } else {
777                         memmove(tr->data - hdrlen, &tr->wh, hdrlen);
778                 }
779         }
780
781         if (hdrlen != sizeof(*tr))
782                 skb_pull(skb, sizeof(*tr) - hdrlen);
783 }
784
785 #define REDUCED_TX_HEADROOM     8
786
787 static void
788 mwl8k_add_dma_header(struct mwl8k_priv *priv, struct sk_buff *skb,
789                                                 int head_pad, int tail_pad)
790 {
791         struct ieee80211_hdr *wh;
792         int hdrlen;
793         int reqd_hdrlen;
794         struct mwl8k_dma_data *tr;
795
796         /*
797          * Add a firmware DMA header; the firmware requires that we
798          * present a 2-byte payload length followed by a 4-address
799          * header (without QoS field), followed (optionally) by any
800          * WEP/ExtIV header (but only filled in for CCMP).
801          */
802         wh = (struct ieee80211_hdr *)skb->data;
803
804         hdrlen = ieee80211_hdrlen(wh->frame_control);
805
806         /*
807          * Check if skb_resize is required because of
808          * tx_headroom adjustment.
809          */
810         if (priv->ap_fw && (hdrlen < (sizeof(struct ieee80211_cts)
811                                                 + REDUCED_TX_HEADROOM))) {
812                 if (pskb_expand_head(skb, REDUCED_TX_HEADROOM, 0, GFP_ATOMIC)) {
813
814                         wiphy_err(priv->hw->wiphy,
815                                         "Failed to reallocate TX buffer\n");
816                         return;
817                 }
818                 skb->truesize += REDUCED_TX_HEADROOM;
819         }
820
821         reqd_hdrlen = sizeof(*tr) + head_pad;
822
823         if (hdrlen != reqd_hdrlen)
824                 skb_push(skb, reqd_hdrlen - hdrlen);
825
826         if (ieee80211_is_data_qos(wh->frame_control))
827                 hdrlen -= IEEE80211_QOS_CTL_LEN;
828
829         tr = (struct mwl8k_dma_data *)skb->data;
830         if (wh != &tr->wh)
831                 memmove(&tr->wh, wh, hdrlen);
832         if (hdrlen != sizeof(tr->wh))
833                 memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen);
834
835         /*
836          * Firmware length is the length of the fully formed "802.11
837          * payload".  That is, everything except for the 802.11 header.
838          * This includes all crypto material including the MIC.
839          */
840         tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr) + tail_pad);
841 }
842
843 static void mwl8k_encapsulate_tx_frame(struct mwl8k_priv *priv,
844                 struct sk_buff *skb)
845 {
846         struct ieee80211_hdr *wh;
847         struct ieee80211_tx_info *tx_info;
848         struct ieee80211_key_conf *key_conf;
849         int data_pad;
850         int head_pad = 0;
851
852         wh = (struct ieee80211_hdr *)skb->data;
853
854         tx_info = IEEE80211_SKB_CB(skb);
855
856         key_conf = NULL;
857         if (ieee80211_is_data(wh->frame_control))
858                 key_conf = tx_info->control.hw_key;
859
860         /*
861          * Make sure the packet header is in the DMA header format (4-address
862          * without QoS), and add head & tail padding when HW crypto is enabled.
863          *
864          * We have the following trailer padding requirements:
865          * - WEP: 4 trailer bytes (ICV)
866          * - TKIP: 12 trailer bytes (8 MIC + 4 ICV)
867          * - CCMP: 8 trailer bytes (MIC)
868          */
869         data_pad = 0;
870         if (key_conf != NULL) {
871                 head_pad = key_conf->iv_len;
872                 switch (key_conf->cipher) {
873                 case WLAN_CIPHER_SUITE_WEP40:
874                 case WLAN_CIPHER_SUITE_WEP104:
875                         data_pad = 4;
876                         break;
877                 case WLAN_CIPHER_SUITE_TKIP:
878                         data_pad = 12;
879                         break;
880                 case WLAN_CIPHER_SUITE_CCMP:
881                         data_pad = 8;
882                         break;
883                 }
884         }
885         mwl8k_add_dma_header(priv, skb, head_pad, data_pad);
886 }
887
888 /*
889  * Packet reception for 88w8366 AP firmware.
890  */
891 struct mwl8k_rxd_8366_ap {
892         __le16 pkt_len;
893         __u8 sq2;
894         __u8 rate;
895         __le32 pkt_phys_addr;
896         __le32 next_rxd_phys_addr;
897         __le16 qos_control;
898         __le16 htsig2;
899         __le32 hw_rssi_info;
900         __le32 hw_noise_floor_info;
901         __u8 noise_floor;
902         __u8 pad0[3];
903         __u8 rssi;
904         __u8 rx_status;
905         __u8 channel;
906         __u8 rx_ctrl;
907 } __packed;
908
909 #define MWL8K_8366_AP_RATE_INFO_MCS_FORMAT      0x80
910 #define MWL8K_8366_AP_RATE_INFO_40MHZ           0x40
911 #define MWL8K_8366_AP_RATE_INFO_RATEID(x)       ((x) & 0x3f)
912
913 #define MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST     0x80
914
915 /* 8366 AP rx_status bits */
916 #define MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK           0x80
917 #define MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR        0xFF
918 #define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR       0x02
919 #define MWL8K_8366_AP_RXSTAT_WEP_DECRYPT_ICV_ERR        0x04
920 #define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_ICV_ERR       0x08
921
922 static void mwl8k_rxd_8366_ap_init(void *_rxd, dma_addr_t next_dma_addr)
923 {
924         struct mwl8k_rxd_8366_ap *rxd = _rxd;
925
926         rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
927         rxd->rx_ctrl = MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST;
928 }
929
930 static void mwl8k_rxd_8366_ap_refill(void *_rxd, dma_addr_t addr, int len)
931 {
932         struct mwl8k_rxd_8366_ap *rxd = _rxd;
933
934         rxd->pkt_len = cpu_to_le16(len);
935         rxd->pkt_phys_addr = cpu_to_le32(addr);
936         wmb();
937         rxd->rx_ctrl = 0;
938 }
939
940 static int
941 mwl8k_rxd_8366_ap_process(void *_rxd, struct ieee80211_rx_status *status,
942                           __le16 *qos, s8 *noise)
943 {
944         struct mwl8k_rxd_8366_ap *rxd = _rxd;
945
946         if (!(rxd->rx_ctrl & MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST))
947                 return -1;
948         rmb();
949
950         memset(status, 0, sizeof(*status));
951
952         status->signal = -rxd->rssi;
953         *noise = -rxd->noise_floor;
954
955         if (rxd->rate & MWL8K_8366_AP_RATE_INFO_MCS_FORMAT) {
956                 status->flag |= RX_FLAG_HT;
957                 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_40MHZ)
958                         status->flag |= RX_FLAG_40MHZ;
959                 status->rate_idx = MWL8K_8366_AP_RATE_INFO_RATEID(rxd->rate);
960         } else {
961                 int i;
962
963                 for (i = 0; i < ARRAY_SIZE(mwl8k_rates_24); i++) {
964                         if (mwl8k_rates_24[i].hw_value == rxd->rate) {
965                                 status->rate_idx = i;
966                                 break;
967                         }
968                 }
969         }
970
971         if (rxd->channel > 14) {
972                 status->band = IEEE80211_BAND_5GHZ;
973                 if (!(status->flag & RX_FLAG_HT))
974                         status->rate_idx -= 5;
975         } else {
976                 status->band = IEEE80211_BAND_2GHZ;
977         }
978         status->freq = ieee80211_channel_to_frequency(rxd->channel,
979                                                       status->band);
980
981         *qos = rxd->qos_control;
982
983         if ((rxd->rx_status != MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR) &&
984             (rxd->rx_status & MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK) &&
985             (rxd->rx_status & MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR))
986                 status->flag |= RX_FLAG_MMIC_ERROR;
987
988         return le16_to_cpu(rxd->pkt_len);
989 }
990
991 static struct rxd_ops rxd_8366_ap_ops = {
992         .rxd_size       = sizeof(struct mwl8k_rxd_8366_ap),
993         .rxd_init       = mwl8k_rxd_8366_ap_init,
994         .rxd_refill     = mwl8k_rxd_8366_ap_refill,
995         .rxd_process    = mwl8k_rxd_8366_ap_process,
996 };
997
998 /*
999  * Packet reception for STA firmware.
1000  */
1001 struct mwl8k_rxd_sta {
1002         __le16 pkt_len;
1003         __u8 link_quality;
1004         __u8 noise_level;
1005         __le32 pkt_phys_addr;
1006         __le32 next_rxd_phys_addr;
1007         __le16 qos_control;
1008         __le16 rate_info;
1009         __le32 pad0[4];
1010         __u8 rssi;
1011         __u8 channel;
1012         __le16 pad1;
1013         __u8 rx_ctrl;
1014         __u8 rx_status;
1015         __u8 pad2[2];
1016 } __packed;
1017
1018 #define MWL8K_STA_RATE_INFO_SHORTPRE            0x8000
1019 #define MWL8K_STA_RATE_INFO_ANTSELECT(x)        (((x) >> 11) & 0x3)
1020 #define MWL8K_STA_RATE_INFO_RATEID(x)           (((x) >> 3) & 0x3f)
1021 #define MWL8K_STA_RATE_INFO_40MHZ               0x0004
1022 #define MWL8K_STA_RATE_INFO_SHORTGI             0x0002
1023 #define MWL8K_STA_RATE_INFO_MCS_FORMAT          0x0001
1024
1025 #define MWL8K_STA_RX_CTRL_OWNED_BY_HOST         0x02
1026 #define MWL8K_STA_RX_CTRL_DECRYPT_ERROR         0x04
1027 /* ICV=0 or MIC=1 */
1028 #define MWL8K_STA_RX_CTRL_DEC_ERR_TYPE          0x08
1029 /* Key is uploaded only in failure case */
1030 #define MWL8K_STA_RX_CTRL_KEY_INDEX                     0x30
1031
1032 static void mwl8k_rxd_sta_init(void *_rxd, dma_addr_t next_dma_addr)
1033 {
1034         struct mwl8k_rxd_sta *rxd = _rxd;
1035
1036         rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
1037         rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST;
1038 }
1039
1040 static void mwl8k_rxd_sta_refill(void *_rxd, dma_addr_t addr, int len)
1041 {
1042         struct mwl8k_rxd_sta *rxd = _rxd;
1043
1044         rxd->pkt_len = cpu_to_le16(len);
1045         rxd->pkt_phys_addr = cpu_to_le32(addr);
1046         wmb();
1047         rxd->rx_ctrl = 0;
1048 }
1049
1050 static int
1051 mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status,
1052                        __le16 *qos, s8 *noise)
1053 {
1054         struct mwl8k_rxd_sta *rxd = _rxd;
1055         u16 rate_info;
1056
1057         if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST))
1058                 return -1;
1059         rmb();
1060
1061         rate_info = le16_to_cpu(rxd->rate_info);
1062
1063         memset(status, 0, sizeof(*status));
1064
1065         status->signal = -rxd->rssi;
1066         *noise = -rxd->noise_level;
1067         status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info);
1068         status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info);
1069
1070         if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE)
1071                 status->flag |= RX_FLAG_SHORTPRE;
1072         if (rate_info & MWL8K_STA_RATE_INFO_40MHZ)
1073                 status->flag |= RX_FLAG_40MHZ;
1074         if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI)
1075                 status->flag |= RX_FLAG_SHORT_GI;
1076         if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT)
1077                 status->flag |= RX_FLAG_HT;
1078
1079         if (rxd->channel > 14) {
1080                 status->band = IEEE80211_BAND_5GHZ;
1081                 if (!(status->flag & RX_FLAG_HT))
1082                         status->rate_idx -= 5;
1083         } else {
1084                 status->band = IEEE80211_BAND_2GHZ;
1085         }
1086         status->freq = ieee80211_channel_to_frequency(rxd->channel,
1087                                                       status->band);
1088
1089         *qos = rxd->qos_control;
1090         if ((rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DECRYPT_ERROR) &&
1091             (rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DEC_ERR_TYPE))
1092                 status->flag |= RX_FLAG_MMIC_ERROR;
1093
1094         return le16_to_cpu(rxd->pkt_len);
1095 }
1096
1097 static struct rxd_ops rxd_sta_ops = {
1098         .rxd_size       = sizeof(struct mwl8k_rxd_sta),
1099         .rxd_init       = mwl8k_rxd_sta_init,
1100         .rxd_refill     = mwl8k_rxd_sta_refill,
1101         .rxd_process    = mwl8k_rxd_sta_process,
1102 };
1103
1104
1105 #define MWL8K_RX_DESCS          256
1106 #define MWL8K_RX_MAXSZ          3800
1107
1108 static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
1109 {
1110         struct mwl8k_priv *priv = hw->priv;
1111         struct mwl8k_rx_queue *rxq = priv->rxq + index;
1112         int size;
1113         int i;
1114
1115         rxq->rxd_count = 0;
1116         rxq->head = 0;
1117         rxq->tail = 0;
1118
1119         size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size;
1120
1121         rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma);
1122         if (rxq->rxd == NULL) {
1123                 wiphy_err(hw->wiphy, "failed to alloc RX descriptors\n");
1124                 return -ENOMEM;
1125         }
1126         memset(rxq->rxd, 0, size);
1127
1128         rxq->buf = kcalloc(MWL8K_RX_DESCS, sizeof(*rxq->buf), GFP_KERNEL);
1129         if (rxq->buf == NULL) {
1130                 wiphy_err(hw->wiphy, "failed to alloc RX skbuff list\n");
1131                 pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma);
1132                 return -ENOMEM;
1133         }
1134
1135         for (i = 0; i < MWL8K_RX_DESCS; i++) {
1136                 int desc_size;
1137                 void *rxd;
1138                 int nexti;
1139                 dma_addr_t next_dma_addr;
1140
1141                 desc_size = priv->rxd_ops->rxd_size;
1142                 rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size);
1143
1144                 nexti = i + 1;
1145                 if (nexti == MWL8K_RX_DESCS)
1146                         nexti = 0;
1147                 next_dma_addr = rxq->rxd_dma + (nexti * desc_size);
1148
1149                 priv->rxd_ops->rxd_init(rxd, next_dma_addr);
1150         }
1151
1152         return 0;
1153 }
1154
1155 static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
1156 {
1157         struct mwl8k_priv *priv = hw->priv;
1158         struct mwl8k_rx_queue *rxq = priv->rxq + index;
1159         int refilled;
1160
1161         refilled = 0;
1162         while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) {
1163                 struct sk_buff *skb;
1164                 dma_addr_t addr;
1165                 int rx;
1166                 void *rxd;
1167
1168                 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
1169                 if (skb == NULL)
1170                         break;
1171
1172                 addr = pci_map_single(priv->pdev, skb->data,
1173                                       MWL8K_RX_MAXSZ, DMA_FROM_DEVICE);
1174
1175                 rxq->rxd_count++;
1176                 rx = rxq->tail++;
1177                 if (rxq->tail == MWL8K_RX_DESCS)
1178                         rxq->tail = 0;
1179                 rxq->buf[rx].skb = skb;
1180                 dma_unmap_addr_set(&rxq->buf[rx], dma, addr);
1181
1182                 rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size);
1183                 priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ);
1184
1185                 refilled++;
1186         }
1187
1188         return refilled;
1189 }
1190
1191 /* Must be called only when the card's reception is completely halted */
1192 static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
1193 {
1194         struct mwl8k_priv *priv = hw->priv;
1195         struct mwl8k_rx_queue *rxq = priv->rxq + index;
1196         int i;
1197
1198         if (rxq->rxd == NULL)
1199                 return;
1200
1201         for (i = 0; i < MWL8K_RX_DESCS; i++) {
1202                 if (rxq->buf[i].skb != NULL) {
1203                         pci_unmap_single(priv->pdev,
1204                                          dma_unmap_addr(&rxq->buf[i], dma),
1205                                          MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
1206                         dma_unmap_addr_set(&rxq->buf[i], dma, 0);
1207
1208                         kfree_skb(rxq->buf[i].skb);
1209                         rxq->buf[i].skb = NULL;
1210                 }
1211         }
1212
1213         kfree(rxq->buf);
1214         rxq->buf = NULL;
1215
1216         pci_free_consistent(priv->pdev,
1217                             MWL8K_RX_DESCS * priv->rxd_ops->rxd_size,
1218                             rxq->rxd, rxq->rxd_dma);
1219         rxq->rxd = NULL;
1220 }
1221
1222
1223 /*
1224  * Scan a list of BSSIDs to process for finalize join.
1225  * Allows for extension to process multiple BSSIDs.
1226  */
1227 static inline int
1228 mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
1229 {
1230         return priv->capture_beacon &&
1231                 ieee80211_is_beacon(wh->frame_control) &&
1232                 !compare_ether_addr(wh->addr3, priv->capture_bssid);
1233 }
1234
1235 static inline void mwl8k_save_beacon(struct ieee80211_hw *hw,
1236                                      struct sk_buff *skb)
1237 {
1238         struct mwl8k_priv *priv = hw->priv;
1239
1240         priv->capture_beacon = false;
1241         memset(priv->capture_bssid, 0, ETH_ALEN);
1242
1243         /*
1244          * Use GFP_ATOMIC as rxq_process is called from
1245          * the primary interrupt handler, memory allocation call
1246          * must not sleep.
1247          */
1248         priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
1249         if (priv->beacon_skb != NULL)
1250                 ieee80211_queue_work(hw, &priv->finalize_join_worker);
1251 }
1252
1253 static inline struct mwl8k_vif *mwl8k_find_vif_bss(struct list_head *vif_list,
1254                                                    u8 *bssid)
1255 {
1256         struct mwl8k_vif *mwl8k_vif;
1257
1258         list_for_each_entry(mwl8k_vif,
1259                             vif_list, list) {
1260                 if (memcmp(bssid, mwl8k_vif->bssid,
1261                            ETH_ALEN) == 0)
1262                         return mwl8k_vif;
1263         }
1264
1265         return NULL;
1266 }
1267
1268 static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
1269 {
1270         struct mwl8k_priv *priv = hw->priv;
1271         struct mwl8k_vif *mwl8k_vif = NULL;
1272         struct mwl8k_rx_queue *rxq = priv->rxq + index;
1273         int processed;
1274
1275         processed = 0;
1276         while (rxq->rxd_count && limit--) {
1277                 struct sk_buff *skb;
1278                 void *rxd;
1279                 int pkt_len;
1280                 struct ieee80211_rx_status status;
1281                 struct ieee80211_hdr *wh;
1282                 __le16 qos;
1283
1284                 skb = rxq->buf[rxq->head].skb;
1285                 if (skb == NULL)
1286                         break;
1287
1288                 rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size);
1289
1290                 pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos,
1291                                                         &priv->noise);
1292                 if (pkt_len < 0)
1293                         break;
1294
1295                 rxq->buf[rxq->head].skb = NULL;
1296
1297                 pci_unmap_single(priv->pdev,
1298                                  dma_unmap_addr(&rxq->buf[rxq->head], dma),
1299                                  MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
1300                 dma_unmap_addr_set(&rxq->buf[rxq->head], dma, 0);
1301
1302                 rxq->head++;
1303                 if (rxq->head == MWL8K_RX_DESCS)
1304                         rxq->head = 0;
1305
1306                 rxq->rxd_count--;
1307
1308                 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
1309
1310                 /*
1311                  * Check for a pending join operation.  Save a
1312                  * copy of the beacon and schedule a tasklet to
1313                  * send a FINALIZE_JOIN command to the firmware.
1314                  */
1315                 if (mwl8k_capture_bssid(priv, (void *)skb->data))
1316                         mwl8k_save_beacon(hw, skb);
1317
1318                 if (ieee80211_has_protected(wh->frame_control)) {
1319
1320                         /* Check if hw crypto has been enabled for
1321                          * this bss. If yes, set the status flags
1322                          * accordingly
1323                          */
1324                         mwl8k_vif = mwl8k_find_vif_bss(&priv->vif_list,
1325                                                                 wh->addr1);
1326
1327                         if (mwl8k_vif != NULL &&
1328                             mwl8k_vif->is_hw_crypto_enabled == true) {
1329                                 /*
1330                                  * When MMIC ERROR is encountered
1331                                  * by the firmware, payload is
1332                                  * dropped and only 32 bytes of
1333                                  * mwl8k Firmware header is sent
1334                                  * to the host.
1335                                  *
1336                                  * We need to add four bytes of
1337                                  * key information.  In it
1338                                  * MAC80211 expects keyidx set to
1339                                  * 0 for triggering Counter
1340                                  * Measure of MMIC failure.
1341                                  */
1342                                 if (status.flag & RX_FLAG_MMIC_ERROR) {
1343                                         struct mwl8k_dma_data *tr;
1344                                         tr = (struct mwl8k_dma_data *)skb->data;
1345                                         memset((void *)&(tr->data), 0, 4);
1346                                         pkt_len += 4;
1347                                 }
1348
1349                                 if (!ieee80211_is_auth(wh->frame_control))
1350                                         status.flag |= RX_FLAG_IV_STRIPPED |
1351                                                        RX_FLAG_DECRYPTED |
1352                                                        RX_FLAG_MMIC_STRIPPED;
1353                         }
1354                 }
1355
1356                 skb_put(skb, pkt_len);
1357                 mwl8k_remove_dma_header(skb, qos);
1358                 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
1359                 ieee80211_rx_irqsafe(hw, skb);
1360
1361                 processed++;
1362         }
1363
1364         return processed;
1365 }
1366
1367
1368 /*
1369  * Packet transmission.
1370  */
1371
1372 #define MWL8K_TXD_STATUS_OK                     0x00000001
1373 #define MWL8K_TXD_STATUS_OK_RETRY               0x00000002
1374 #define MWL8K_TXD_STATUS_OK_MORE_RETRY          0x00000004
1375 #define MWL8K_TXD_STATUS_MULTICAST_TX           0x00000008
1376 #define MWL8K_TXD_STATUS_FW_OWNED               0x80000000
1377
1378 #define MWL8K_QOS_QLEN_UNSPEC                   0xff00
1379 #define MWL8K_QOS_ACK_POLICY_MASK               0x0060
1380 #define MWL8K_QOS_ACK_POLICY_NORMAL             0x0000
1381 #define MWL8K_QOS_ACK_POLICY_BLOCKACK           0x0060
1382 #define MWL8K_QOS_EOSP                          0x0010
1383
1384 struct mwl8k_tx_desc {
1385         __le32 status;
1386         __u8 data_rate;
1387         __u8 tx_priority;
1388         __le16 qos_control;
1389         __le32 pkt_phys_addr;
1390         __le16 pkt_len;
1391         __u8 dest_MAC_addr[ETH_ALEN];
1392         __le32 next_txd_phys_addr;
1393         __le32 timestamp;
1394         __le16 rate_info;
1395         __u8 peer_id;
1396         __u8 tx_frag_cnt;
1397 } __packed;
1398
1399 #define MWL8K_TX_DESCS          128
1400
1401 static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1402 {
1403         struct mwl8k_priv *priv = hw->priv;
1404         struct mwl8k_tx_queue *txq = priv->txq + index;
1405         int size;
1406         int i;
1407
1408         txq->len = 0;
1409         txq->head = 0;
1410         txq->tail = 0;
1411
1412         size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1413
1414         txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma);
1415         if (txq->txd == NULL) {
1416                 wiphy_err(hw->wiphy, "failed to alloc TX descriptors\n");
1417                 return -ENOMEM;
1418         }
1419         memset(txq->txd, 0, size);
1420
1421         txq->skb = kcalloc(MWL8K_TX_DESCS, sizeof(*txq->skb), GFP_KERNEL);
1422         if (txq->skb == NULL) {
1423                 wiphy_err(hw->wiphy, "failed to alloc TX skbuff list\n");
1424                 pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma);
1425                 return -ENOMEM;
1426         }
1427
1428         for (i = 0; i < MWL8K_TX_DESCS; i++) {
1429                 struct mwl8k_tx_desc *tx_desc;
1430                 int nexti;
1431
1432                 tx_desc = txq->txd + i;
1433                 nexti = (i + 1) % MWL8K_TX_DESCS;
1434
1435                 tx_desc->status = 0;
1436                 tx_desc->next_txd_phys_addr =
1437                         cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc));
1438         }
1439
1440         return 0;
1441 }
1442
1443 static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1444 {
1445         iowrite32(MWL8K_H2A_INT_PPA_READY,
1446                 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1447         iowrite32(MWL8K_H2A_INT_DUMMY,
1448                 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1449         ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1450 }
1451
1452 static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw)
1453 {
1454         struct mwl8k_priv *priv = hw->priv;
1455         int i;
1456
1457         for (i = 0; i < mwl8k_tx_queues(priv); i++) {
1458                 struct mwl8k_tx_queue *txq = priv->txq + i;
1459                 int fw_owned = 0;
1460                 int drv_owned = 0;
1461                 int unused = 0;
1462                 int desc;
1463
1464                 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
1465                         struct mwl8k_tx_desc *tx_desc = txq->txd + desc;
1466                         u32 status;
1467
1468                         status = le32_to_cpu(tx_desc->status);
1469                         if (status & MWL8K_TXD_STATUS_FW_OWNED)
1470                                 fw_owned++;
1471                         else
1472                                 drv_owned++;
1473
1474                         if (tx_desc->pkt_len == 0)
1475                                 unused++;
1476                 }
1477
1478                 wiphy_err(hw->wiphy,
1479                           "txq[%d] len=%d head=%d tail=%d "
1480                           "fw_owned=%d drv_owned=%d unused=%d\n",
1481                           i,
1482                           txq->len, txq->head, txq->tail,
1483                           fw_owned, drv_owned, unused);
1484         }
1485 }
1486
1487 /*
1488  * Must be called with priv->fw_mutex held and tx queues stopped.
1489  */
1490 #define MWL8K_TX_WAIT_TIMEOUT_MS        5000
1491
1492 static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw)
1493 {
1494         struct mwl8k_priv *priv = hw->priv;
1495         DECLARE_COMPLETION_ONSTACK(tx_wait);
1496         int retry;
1497         int rc;
1498
1499         might_sleep();
1500
1501         /*
1502          * The TX queues are stopped at this point, so this test
1503          * doesn't need to take ->tx_lock.
1504          */
1505         if (!priv->pending_tx_pkts)
1506                 return 0;
1507
1508         retry = 0;
1509         rc = 0;
1510
1511         spin_lock_bh(&priv->tx_lock);
1512         priv->tx_wait = &tx_wait;
1513         while (!rc) {
1514                 int oldcount;
1515                 unsigned long timeout;
1516
1517                 oldcount = priv->pending_tx_pkts;
1518
1519                 spin_unlock_bh(&priv->tx_lock);
1520                 timeout = wait_for_completion_timeout(&tx_wait,
1521                             msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS));
1522                 spin_lock_bh(&priv->tx_lock);
1523
1524                 if (timeout) {
1525                         WARN_ON(priv->pending_tx_pkts);
1526                         if (retry)
1527                                 wiphy_notice(hw->wiphy, "tx rings drained\n");
1528                         break;
1529                 }
1530
1531                 if (priv->pending_tx_pkts < oldcount) {
1532                         wiphy_notice(hw->wiphy,
1533                                      "waiting for tx rings to drain (%d -> %d pkts)\n",
1534                                      oldcount, priv->pending_tx_pkts);
1535                         retry = 1;
1536                         continue;
1537                 }
1538
1539                 priv->tx_wait = NULL;
1540
1541                 wiphy_err(hw->wiphy, "tx rings stuck for %d ms\n",
1542                           MWL8K_TX_WAIT_TIMEOUT_MS);
1543                 mwl8k_dump_tx_rings(hw);
1544
1545                 rc = -ETIMEDOUT;
1546         }
1547         spin_unlock_bh(&priv->tx_lock);
1548
1549         return rc;
1550 }
1551
1552 #define MWL8K_TXD_SUCCESS(status)                               \
1553         ((status) & (MWL8K_TXD_STATUS_OK |                      \
1554                      MWL8K_TXD_STATUS_OK_RETRY |                \
1555                      MWL8K_TXD_STATUS_OK_MORE_RETRY))
1556
1557 static int mwl8k_tid_queue_mapping(u8 tid)
1558 {
1559         BUG_ON(tid > 7);
1560
1561         switch (tid) {
1562         case 0:
1563         case 3:
1564                 return IEEE80211_AC_BE;
1565                 break;
1566         case 1:
1567         case 2:
1568                 return IEEE80211_AC_BK;
1569                 break;
1570         case 4:
1571         case 5:
1572                 return IEEE80211_AC_VI;
1573                 break;
1574         case 6:
1575         case 7:
1576                 return IEEE80211_AC_VO;
1577                 break;
1578         default:
1579                 return -1;
1580                 break;
1581         }
1582 }
1583
1584 /* The firmware will fill in the rate information
1585  * for each packet that gets queued in the hardware
1586  * and these macros will interpret that info.
1587  */
1588
1589 #define RI_FORMAT(a)              (a & 0x0001)
1590 #define RI_RATE_ID_MCS(a)        ((a & 0x01f8) >> 3)
1591
1592 static int
1593 mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force)
1594 {
1595         struct mwl8k_priv *priv = hw->priv;
1596         struct mwl8k_tx_queue *txq = priv->txq + index;
1597         int processed;
1598
1599         processed = 0;
1600         while (txq->len > 0 && limit--) {
1601                 int tx;
1602                 struct mwl8k_tx_desc *tx_desc;
1603                 unsigned long addr;
1604                 int size;
1605                 struct sk_buff *skb;
1606                 struct ieee80211_tx_info *info;
1607                 u32 status;
1608                 struct ieee80211_sta *sta;
1609                 struct mwl8k_sta *sta_info = NULL;
1610                 u16 rate_info;
1611                 struct ieee80211_hdr *wh;
1612
1613                 tx = txq->head;
1614                 tx_desc = txq->txd + tx;
1615
1616                 status = le32_to_cpu(tx_desc->status);
1617
1618                 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1619                         if (!force)
1620                                 break;
1621                         tx_desc->status &=
1622                                 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1623                 }
1624
1625                 txq->head = (tx + 1) % MWL8K_TX_DESCS;
1626                 BUG_ON(txq->len == 0);
1627                 txq->len--;
1628                 priv->pending_tx_pkts--;
1629
1630                 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
1631                 size = le16_to_cpu(tx_desc->pkt_len);
1632                 skb = txq->skb[tx];
1633                 txq->skb[tx] = NULL;
1634
1635                 BUG_ON(skb == NULL);
1636                 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1637
1638                 mwl8k_remove_dma_header(skb, tx_desc->qos_control);
1639
1640                 wh = (struct ieee80211_hdr *) skb->data;
1641
1642                 /* Mark descriptor as unused */
1643                 tx_desc->pkt_phys_addr = 0;
1644                 tx_desc->pkt_len = 0;
1645
1646                 info = IEEE80211_SKB_CB(skb);
1647                 if (ieee80211_is_data(wh->frame_control)) {
1648                         sta = info->control.sta;
1649                         if (sta) {
1650                                 sta_info = MWL8K_STA(sta);
1651                                 BUG_ON(sta_info == NULL);
1652                                 rate_info = le16_to_cpu(tx_desc->rate_info);
1653                                 /* If rate is < 6.5 Mpbs for an ht station
1654                                  * do not form an ampdu. If the station is a
1655                                  * legacy station (format = 0), do not form an
1656                                  * ampdu
1657                                  */
1658                                 if (RI_RATE_ID_MCS(rate_info) < 1 ||
1659                                     RI_FORMAT(rate_info) == 0) {
1660                                         sta_info->is_ampdu_allowed = false;
1661                                 } else {
1662                                         sta_info->is_ampdu_allowed = true;
1663                                 }
1664                         }
1665                 }
1666
1667                 ieee80211_tx_info_clear_status(info);
1668
1669                 /* Rate control is happening in the firmware.
1670                  * Ensure no tx rate is being reported.
1671                  */
1672                 info->status.rates[0].idx = -1;
1673                 info->status.rates[0].count = 1;
1674
1675                 if (MWL8K_TXD_SUCCESS(status))
1676                         info->flags |= IEEE80211_TX_STAT_ACK;
1677
1678                 ieee80211_tx_status_irqsafe(hw, skb);
1679
1680                 processed++;
1681         }
1682
1683         return processed;
1684 }
1685
1686 /* must be called only when the card's transmit is completely halted */
1687 static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1688 {
1689         struct mwl8k_priv *priv = hw->priv;
1690         struct mwl8k_tx_queue *txq = priv->txq + index;
1691
1692         if (txq->txd == NULL)
1693                 return;
1694
1695         mwl8k_txq_reclaim(hw, index, INT_MAX, 1);
1696
1697         kfree(txq->skb);
1698         txq->skb = NULL;
1699
1700         pci_free_consistent(priv->pdev,
1701                             MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
1702                             txq->txd, txq->txd_dma);
1703         txq->txd = NULL;
1704 }
1705
1706 /* caller must hold priv->stream_lock when calling the stream functions */
1707 static struct mwl8k_ampdu_stream *
1708 mwl8k_add_stream(struct ieee80211_hw *hw, struct ieee80211_sta *sta, u8 tid)
1709 {
1710         struct mwl8k_ampdu_stream *stream;
1711         struct mwl8k_priv *priv = hw->priv;
1712         int i;
1713
1714         for (i = 0; i < priv->num_ampdu_queues; i++) {
1715                 stream = &priv->ampdu[i];
1716                 if (stream->state == AMPDU_NO_STREAM) {
1717                         stream->sta = sta;
1718                         stream->state = AMPDU_STREAM_NEW;
1719                         stream->tid = tid;
1720                         stream->idx = i;
1721                         stream->txq_idx = MWL8K_TX_WMM_QUEUES + i;
1722                         wiphy_debug(hw->wiphy, "Added a new stream for %pM %d",
1723                                     sta->addr, tid);
1724                         return stream;
1725                 }
1726         }
1727         return NULL;
1728 }
1729
1730 static int
1731 mwl8k_start_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1732 {
1733         int ret;
1734
1735         /* if the stream has already been started, don't start it again */
1736         if (stream->state != AMPDU_STREAM_NEW)
1737                 return 0;
1738         ret = ieee80211_start_tx_ba_session(stream->sta, stream->tid, 0);
1739         if (ret)
1740                 wiphy_debug(hw->wiphy, "Failed to start stream for %pM %d: "
1741                             "%d\n", stream->sta->addr, stream->tid, ret);
1742         else
1743                 wiphy_debug(hw->wiphy, "Started stream for %pM %d\n",
1744                             stream->sta->addr, stream->tid);
1745         return ret;
1746 }
1747
1748 static void
1749 mwl8k_remove_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1750 {
1751         wiphy_debug(hw->wiphy, "Remove stream for %pM %d\n", stream->sta->addr,
1752                     stream->tid);
1753         memset(stream, 0, sizeof(*stream));
1754 }
1755
1756 static struct mwl8k_ampdu_stream *
1757 mwl8k_lookup_stream(struct ieee80211_hw *hw, u8 *addr, u8 tid)
1758 {
1759         struct mwl8k_priv *priv = hw->priv;
1760         int i;
1761
1762         for (i = 0 ; i < priv->num_ampdu_queues; i++) {
1763                 struct mwl8k_ampdu_stream *stream;
1764                 stream = &priv->ampdu[i];
1765                 if (stream->state == AMPDU_NO_STREAM)
1766                         continue;
1767                 if (!memcmp(stream->sta->addr, addr, ETH_ALEN) &&
1768                     stream->tid == tid)
1769                         return stream;
1770         }
1771         return NULL;
1772 }
1773
1774 #define MWL8K_AMPDU_PACKET_THRESHOLD 64
1775 static inline bool mwl8k_ampdu_allowed(struct ieee80211_sta *sta, u8 tid)
1776 {
1777         struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1778         struct tx_traffic_info *tx_stats;
1779
1780         BUG_ON(tid >= MWL8K_MAX_TID);
1781         tx_stats = &sta_info->tx_stats[tid];
1782
1783         return sta_info->is_ampdu_allowed &&
1784                 tx_stats->pkts > MWL8K_AMPDU_PACKET_THRESHOLD;
1785 }
1786
1787 static inline void mwl8k_tx_count_packet(struct ieee80211_sta *sta, u8 tid)
1788 {
1789         struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1790         struct tx_traffic_info *tx_stats;
1791
1792         BUG_ON(tid >= MWL8K_MAX_TID);
1793         tx_stats = &sta_info->tx_stats[tid];
1794
1795         if (tx_stats->start_time == 0)
1796                 tx_stats->start_time = jiffies;
1797
1798         /* reset the packet count after each second elapses.  If the number of
1799          * packets ever exceeds the ampdu_min_traffic threshold, we will allow
1800          * an ampdu stream to be started.
1801          */
1802         if (jiffies - tx_stats->start_time > HZ) {
1803                 tx_stats->pkts = 0;
1804                 tx_stats->start_time = 0;
1805         } else
1806                 tx_stats->pkts++;
1807 }
1808
1809 static void
1810 mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb)
1811 {
1812         struct mwl8k_priv *priv = hw->priv;
1813         struct ieee80211_tx_info *tx_info;
1814         struct mwl8k_vif *mwl8k_vif;
1815         struct ieee80211_sta *sta;
1816         struct ieee80211_hdr *wh;
1817         struct mwl8k_tx_queue *txq;
1818         struct mwl8k_tx_desc *tx;
1819         dma_addr_t dma;
1820         u32 txstatus;
1821         u8 txdatarate;
1822         u16 qos;
1823         int txpriority;
1824         u8 tid = 0;
1825         struct mwl8k_ampdu_stream *stream = NULL;
1826         bool start_ba_session = false;
1827         bool mgmtframe = false;
1828         struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
1829
1830         wh = (struct ieee80211_hdr *)skb->data;
1831         if (ieee80211_is_data_qos(wh->frame_control))
1832                 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1833         else
1834                 qos = 0;
1835
1836         if (ieee80211_is_mgmt(wh->frame_control))
1837                 mgmtframe = true;
1838
1839         if (priv->ap_fw)
1840                 mwl8k_encapsulate_tx_frame(priv, skb);
1841         else
1842                 mwl8k_add_dma_header(priv, skb, 0, 0);
1843
1844         wh = &((struct mwl8k_dma_data *)skb->data)->wh;
1845
1846         tx_info = IEEE80211_SKB_CB(skb);
1847         sta = tx_info->control.sta;
1848         mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
1849
1850         if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1851                 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
1852                 wh->seq_ctrl |= cpu_to_le16(mwl8k_vif->seqno);
1853                 mwl8k_vif->seqno += 0x10;
1854         }
1855
1856         /* Setup firmware control bit fields for each frame type.  */
1857         txstatus = 0;
1858         txdatarate = 0;
1859         if (ieee80211_is_mgmt(wh->frame_control) ||
1860             ieee80211_is_ctl(wh->frame_control)) {
1861                 txdatarate = 0;
1862                 qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP;
1863         } else if (ieee80211_is_data(wh->frame_control)) {
1864                 txdatarate = 1;
1865                 if (is_multicast_ether_addr(wh->addr1))
1866                         txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX;
1867
1868                 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
1869                 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
1870                         qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK;
1871                 else
1872                         qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
1873         }
1874
1875         /* Queue ADDBA request in the respective data queue.  While setting up
1876          * the ampdu stream, mac80211 queues further packets for that
1877          * particular ra/tid pair.  However, packets piled up in the hardware
1878          * for that ra/tid pair will still go out. ADDBA request and the
1879          * related data packets going out from different queues asynchronously
1880          * will cause a shift in the receiver window which might result in
1881          * ampdu packets getting dropped at the receiver after the stream has
1882          * been setup.
1883          */
1884         if (unlikely(ieee80211_is_action(wh->frame_control) &&
1885             mgmt->u.action.category == WLAN_CATEGORY_BACK &&
1886             mgmt->u.action.u.addba_req.action_code == WLAN_ACTION_ADDBA_REQ &&
1887             priv->ap_fw)) {
1888                 u16 capab = le16_to_cpu(mgmt->u.action.u.addba_req.capab);
1889                 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
1890                 index = mwl8k_tid_queue_mapping(tid);
1891         }
1892
1893         txpriority = index;
1894
1895         if (ieee80211_is_data_qos(wh->frame_control) &&
1896             skb->protocol != cpu_to_be16(ETH_P_PAE) &&
1897             sta->ht_cap.ht_supported && priv->ap_fw) {
1898                 tid = qos & 0xf;
1899                 mwl8k_tx_count_packet(sta, tid);
1900                 spin_lock(&priv->stream_lock);
1901                 stream = mwl8k_lookup_stream(hw, sta->addr, tid);
1902                 if (stream != NULL) {
1903                         if (stream->state == AMPDU_STREAM_ACTIVE) {
1904                                 txpriority = stream->txq_idx;
1905                                 index = stream->txq_idx;
1906                         } else if (stream->state == AMPDU_STREAM_NEW) {
1907                                 /* We get here if the driver sends us packets
1908                                  * after we've initiated a stream, but before
1909                                  * our ampdu_action routine has been called
1910                                  * with IEEE80211_AMPDU_TX_START to get the SSN
1911                                  * for the ADDBA request.  So this packet can
1912                                  * go out with no risk of sequence number
1913                                  * mismatch.  No special handling is required.
1914                                  */
1915                         } else {
1916                                 /* Drop packets that would go out after the
1917                                  * ADDBA request was sent but before the ADDBA
1918                                  * response is received.  If we don't do this,
1919                                  * the recipient would probably receive it
1920                                  * after the ADDBA request with SSN 0.  This
1921                                  * will cause the recipient's BA receive window
1922                                  * to shift, which would cause the subsequent
1923                                  * packets in the BA stream to be discarded.
1924                                  * mac80211 queues our packets for us in this
1925                                  * case, so this is really just a safety check.
1926                                  */
1927                                 wiphy_warn(hw->wiphy,
1928                                            "Cannot send packet while ADDBA "
1929                                            "dialog is underway.\n");
1930                                 spin_unlock(&priv->stream_lock);
1931                                 dev_kfree_skb(skb);
1932                                 return;
1933                         }
1934                 } else {
1935                         /* Defer calling mwl8k_start_stream so that the current
1936                          * skb can go out before the ADDBA request.  This
1937                          * prevents sequence number mismatch at the recepient
1938                          * as described above.
1939                          */
1940                         if (mwl8k_ampdu_allowed(sta, tid)) {
1941                                 stream = mwl8k_add_stream(hw, sta, tid);
1942                                 if (stream != NULL)
1943                                         start_ba_session = true;
1944                         }
1945                 }
1946                 spin_unlock(&priv->stream_lock);
1947         }
1948
1949         dma = pci_map_single(priv->pdev, skb->data,
1950                                 skb->len, PCI_DMA_TODEVICE);
1951
1952         if (pci_dma_mapping_error(priv->pdev, dma)) {
1953                 wiphy_debug(hw->wiphy,
1954                             "failed to dma map skb, dropping TX frame.\n");
1955                 if (start_ba_session) {
1956                         spin_lock(&priv->stream_lock);
1957                         mwl8k_remove_stream(hw, stream);
1958                         spin_unlock(&priv->stream_lock);
1959                 }
1960                 dev_kfree_skb(skb);
1961                 return;
1962         }
1963
1964         spin_lock_bh(&priv->tx_lock);
1965
1966         txq = priv->txq + index;
1967
1968         /* Mgmt frames that go out frequently are probe
1969          * responses. Other mgmt frames got out relatively
1970          * infrequently. Hence reserve 2 buffers so that
1971          * other mgmt frames do not get dropped due to an
1972          * already queued probe response in one of the
1973          * reserved buffers.
1974          */
1975
1976         if (txq->len >= MWL8K_TX_DESCS - 2) {
1977                 if (mgmtframe == false ||
1978                         txq->len == MWL8K_TX_DESCS) {
1979                         if (start_ba_session) {
1980                                 spin_lock(&priv->stream_lock);
1981                                 mwl8k_remove_stream(hw, stream);
1982                                 spin_unlock(&priv->stream_lock);
1983                         }
1984                         spin_unlock_bh(&priv->tx_lock);
1985                         dev_kfree_skb(skb);
1986                         return;
1987                 }
1988         }
1989
1990         BUG_ON(txq->skb[txq->tail] != NULL);
1991         txq->skb[txq->tail] = skb;
1992
1993         tx = txq->txd + txq->tail;
1994         tx->data_rate = txdatarate;
1995         tx->tx_priority = txpriority;
1996         tx->qos_control = cpu_to_le16(qos);
1997         tx->pkt_phys_addr = cpu_to_le32(dma);
1998         tx->pkt_len = cpu_to_le16(skb->len);
1999         tx->rate_info = 0;
2000         if (!priv->ap_fw && tx_info->control.sta != NULL)
2001                 tx->peer_id = MWL8K_STA(tx_info->control.sta)->peer_id;
2002         else
2003                 tx->peer_id = 0;
2004
2005         if (priv->ap_fw)
2006                 tx->timestamp = cpu_to_le32(ioread32(priv->regs +
2007                                                 MWL8K_HW_TIMER_REGISTER));
2008
2009         wmb();
2010         tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
2011
2012         txq->len++;
2013         priv->pending_tx_pkts++;
2014
2015         txq->tail++;
2016         if (txq->tail == MWL8K_TX_DESCS)
2017                 txq->tail = 0;
2018
2019         mwl8k_tx_start(priv);
2020
2021         spin_unlock_bh(&priv->tx_lock);
2022
2023         /* Initiate the ampdu session here */
2024         if (start_ba_session) {
2025                 spin_lock(&priv->stream_lock);
2026                 if (mwl8k_start_stream(hw, stream))
2027                         mwl8k_remove_stream(hw, stream);
2028                 spin_unlock(&priv->stream_lock);
2029         }
2030 }
2031
2032
2033 /*
2034  * Firmware access.
2035  *
2036  * We have the following requirements for issuing firmware commands:
2037  * - Some commands require that the packet transmit path is idle when
2038  *   the command is issued.  (For simplicity, we'll just quiesce the
2039  *   transmit path for every command.)
2040  * - There are certain sequences of commands that need to be issued to
2041  *   the hardware sequentially, with no other intervening commands.
2042  *
2043  * This leads to an implementation of a "firmware lock" as a mutex that
2044  * can be taken recursively, and which is taken by both the low-level
2045  * command submission function (mwl8k_post_cmd) as well as any users of
2046  * that function that require issuing of an atomic sequence of commands,
2047  * and quiesces the transmit path whenever it's taken.
2048  */
2049 static int mwl8k_fw_lock(struct ieee80211_hw *hw)
2050 {
2051         struct mwl8k_priv *priv = hw->priv;
2052
2053         if (priv->fw_mutex_owner != current) {
2054                 int rc;
2055
2056                 mutex_lock(&priv->fw_mutex);
2057                 ieee80211_stop_queues(hw);
2058
2059                 rc = mwl8k_tx_wait_empty(hw);
2060                 if (rc) {
2061                         ieee80211_wake_queues(hw);
2062                         mutex_unlock(&priv->fw_mutex);
2063
2064                         return rc;
2065                 }
2066
2067                 priv->fw_mutex_owner = current;
2068         }
2069
2070         priv->fw_mutex_depth++;
2071
2072         return 0;
2073 }
2074
2075 static void mwl8k_fw_unlock(struct ieee80211_hw *hw)
2076 {
2077         struct mwl8k_priv *priv = hw->priv;
2078
2079         if (!--priv->fw_mutex_depth) {
2080                 ieee80211_wake_queues(hw);
2081                 priv->fw_mutex_owner = NULL;
2082                 mutex_unlock(&priv->fw_mutex);
2083         }
2084 }
2085
2086
2087 /*
2088  * Command processing.
2089  */
2090
2091 /* Timeout firmware commands after 10s */
2092 #define MWL8K_CMD_TIMEOUT_MS    10000
2093
2094 static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
2095 {
2096         DECLARE_COMPLETION_ONSTACK(cmd_wait);
2097         struct mwl8k_priv *priv = hw->priv;
2098         void __iomem *regs = priv->regs;
2099         dma_addr_t dma_addr;
2100         unsigned int dma_size;
2101         int rc;
2102         unsigned long timeout = 0;
2103         u8 buf[32];
2104
2105         cmd->result = (__force __le16) 0xffff;
2106         dma_size = le16_to_cpu(cmd->length);
2107         dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
2108                                   PCI_DMA_BIDIRECTIONAL);
2109         if (pci_dma_mapping_error(priv->pdev, dma_addr))
2110                 return -ENOMEM;
2111
2112         rc = mwl8k_fw_lock(hw);
2113         if (rc) {
2114                 pci_unmap_single(priv->pdev, dma_addr, dma_size,
2115                                                 PCI_DMA_BIDIRECTIONAL);
2116                 return rc;
2117         }
2118
2119         priv->hostcmd_wait = &cmd_wait;
2120         iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
2121         iowrite32(MWL8K_H2A_INT_DOORBELL,
2122                 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
2123         iowrite32(MWL8K_H2A_INT_DUMMY,
2124                 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
2125
2126         timeout = wait_for_completion_timeout(&cmd_wait,
2127                                 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
2128
2129         priv->hostcmd_wait = NULL;
2130
2131         mwl8k_fw_unlock(hw);
2132
2133         pci_unmap_single(priv->pdev, dma_addr, dma_size,
2134                                         PCI_DMA_BIDIRECTIONAL);
2135
2136         if (!timeout) {
2137                 wiphy_err(hw->wiphy, "Command %s timeout after %u ms\n",
2138                           mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2139                           MWL8K_CMD_TIMEOUT_MS);
2140                 rc = -ETIMEDOUT;
2141         } else {
2142                 int ms;
2143
2144                 ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout);
2145
2146                 rc = cmd->result ? -EINVAL : 0;
2147                 if (rc)
2148                         wiphy_err(hw->wiphy, "Command %s error 0x%x\n",
2149                                   mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2150                                   le16_to_cpu(cmd->result));
2151                 else if (ms > 2000)
2152                         wiphy_notice(hw->wiphy, "Command %s took %d ms\n",
2153                                      mwl8k_cmd_name(cmd->code,
2154                                                     buf, sizeof(buf)),
2155                                      ms);
2156         }
2157
2158         return rc;
2159 }
2160
2161 static int mwl8k_post_pervif_cmd(struct ieee80211_hw *hw,
2162                                  struct ieee80211_vif *vif,
2163                                  struct mwl8k_cmd_pkt *cmd)
2164 {
2165         if (vif != NULL)
2166                 cmd->macid = MWL8K_VIF(vif)->macid;
2167         return mwl8k_post_cmd(hw, cmd);
2168 }
2169
2170 /*
2171  * Setup code shared between STA and AP firmware images.
2172  */
2173 static void mwl8k_setup_2ghz_band(struct ieee80211_hw *hw)
2174 {
2175         struct mwl8k_priv *priv = hw->priv;
2176
2177         BUILD_BUG_ON(sizeof(priv->channels_24) != sizeof(mwl8k_channels_24));
2178         memcpy(priv->channels_24, mwl8k_channels_24, sizeof(mwl8k_channels_24));
2179
2180         BUILD_BUG_ON(sizeof(priv->rates_24) != sizeof(mwl8k_rates_24));
2181         memcpy(priv->rates_24, mwl8k_rates_24, sizeof(mwl8k_rates_24));
2182
2183         priv->band_24.band = IEEE80211_BAND_2GHZ;
2184         priv->band_24.channels = priv->channels_24;
2185         priv->band_24.n_channels = ARRAY_SIZE(mwl8k_channels_24);
2186         priv->band_24.bitrates = priv->rates_24;
2187         priv->band_24.n_bitrates = ARRAY_SIZE(mwl8k_rates_24);
2188
2189         hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band_24;
2190 }
2191
2192 static void mwl8k_setup_5ghz_band(struct ieee80211_hw *hw)
2193 {
2194         struct mwl8k_priv *priv = hw->priv;
2195
2196         BUILD_BUG_ON(sizeof(priv->channels_50) != sizeof(mwl8k_channels_50));
2197         memcpy(priv->channels_50, mwl8k_channels_50, sizeof(mwl8k_channels_50));
2198
2199         BUILD_BUG_ON(sizeof(priv->rates_50) != sizeof(mwl8k_rates_50));
2200         memcpy(priv->rates_50, mwl8k_rates_50, sizeof(mwl8k_rates_50));
2201
2202         priv->band_50.band = IEEE80211_BAND_5GHZ;
2203         priv->band_50.channels = priv->channels_50;
2204         priv->band_50.n_channels = ARRAY_SIZE(mwl8k_channels_50);
2205         priv->band_50.bitrates = priv->rates_50;
2206         priv->band_50.n_bitrates = ARRAY_SIZE(mwl8k_rates_50);
2207
2208         hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &priv->band_50;
2209 }
2210
2211 /*
2212  * CMD_GET_HW_SPEC (STA version).
2213  */
2214 struct mwl8k_cmd_get_hw_spec_sta {
2215         struct mwl8k_cmd_pkt header;
2216         __u8 hw_rev;
2217         __u8 host_interface;
2218         __le16 num_mcaddrs;
2219         __u8 perm_addr[ETH_ALEN];
2220         __le16 region_code;
2221         __le32 fw_rev;
2222         __le32 ps_cookie;
2223         __le32 caps;
2224         __u8 mcs_bitmap[16];
2225         __le32 rx_queue_ptr;
2226         __le32 num_tx_queues;
2227         __le32 tx_queue_ptrs[MWL8K_TX_WMM_QUEUES];
2228         __le32 caps2;
2229         __le32 num_tx_desc_per_queue;
2230         __le32 total_rxd;
2231 } __packed;
2232
2233 #define MWL8K_CAP_MAX_AMSDU             0x20000000
2234 #define MWL8K_CAP_GREENFIELD            0x08000000
2235 #define MWL8K_CAP_AMPDU                 0x04000000
2236 #define MWL8K_CAP_RX_STBC               0x01000000
2237 #define MWL8K_CAP_TX_STBC               0x00800000
2238 #define MWL8K_CAP_SHORTGI_40MHZ         0x00400000
2239 #define MWL8K_CAP_SHORTGI_20MHZ         0x00200000
2240 #define MWL8K_CAP_RX_ANTENNA_MASK       0x000e0000
2241 #define MWL8K_CAP_TX_ANTENNA_MASK       0x0001c000
2242 #define MWL8K_CAP_DELAY_BA              0x00003000
2243 #define MWL8K_CAP_MIMO                  0x00000200
2244 #define MWL8K_CAP_40MHZ                 0x00000100
2245 #define MWL8K_CAP_BAND_MASK             0x00000007
2246 #define MWL8K_CAP_5GHZ                  0x00000004
2247 #define MWL8K_CAP_2GHZ4                 0x00000001
2248
2249 static void
2250 mwl8k_set_ht_caps(struct ieee80211_hw *hw,
2251                   struct ieee80211_supported_band *band, u32 cap)
2252 {
2253         int rx_streams;
2254         int tx_streams;
2255
2256         band->ht_cap.ht_supported = 1;
2257
2258         if (cap & MWL8K_CAP_MAX_AMSDU)
2259                 band->ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
2260         if (cap & MWL8K_CAP_GREENFIELD)
2261                 band->ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD;
2262         if (cap & MWL8K_CAP_AMPDU) {
2263                 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
2264                 band->ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
2265                 band->ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
2266         }
2267         if (cap & MWL8K_CAP_RX_STBC)
2268                 band->ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC;
2269         if (cap & MWL8K_CAP_TX_STBC)
2270                 band->ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
2271         if (cap & MWL8K_CAP_SHORTGI_40MHZ)
2272                 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
2273         if (cap & MWL8K_CAP_SHORTGI_20MHZ)
2274                 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
2275         if (cap & MWL8K_CAP_DELAY_BA)
2276                 band->ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA;
2277         if (cap & MWL8K_CAP_40MHZ)
2278                 band->ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
2279
2280         rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK);
2281         tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK);
2282
2283         band->ht_cap.mcs.rx_mask[0] = 0xff;
2284         if (rx_streams >= 2)
2285                 band->ht_cap.mcs.rx_mask[1] = 0xff;
2286         if (rx_streams >= 3)
2287                 band->ht_cap.mcs.rx_mask[2] = 0xff;
2288         band->ht_cap.mcs.rx_mask[4] = 0x01;
2289         band->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
2290
2291         if (rx_streams != tx_streams) {
2292                 band->ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
2293                 band->ht_cap.mcs.tx_params |= (tx_streams - 1) <<
2294                                 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
2295         }
2296 }
2297
2298 static void
2299 mwl8k_set_caps(struct ieee80211_hw *hw, u32 caps)
2300 {
2301         struct mwl8k_priv *priv = hw->priv;
2302
2303         if ((caps & MWL8K_CAP_2GHZ4) || !(caps & MWL8K_CAP_BAND_MASK)) {
2304                 mwl8k_setup_2ghz_band(hw);
2305                 if (caps & MWL8K_CAP_MIMO)
2306                         mwl8k_set_ht_caps(hw, &priv->band_24, caps);
2307         }
2308
2309         if (caps & MWL8K_CAP_5GHZ) {
2310                 mwl8k_setup_5ghz_band(hw);
2311                 if (caps & MWL8K_CAP_MIMO)
2312                         mwl8k_set_ht_caps(hw, &priv->band_50, caps);
2313         }
2314 }
2315
2316 static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw)
2317 {
2318         struct mwl8k_priv *priv = hw->priv;
2319         struct mwl8k_cmd_get_hw_spec_sta *cmd;
2320         int rc;
2321         int i;
2322
2323         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2324         if (cmd == NULL)
2325                 return -ENOMEM;
2326
2327         cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2328         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2329
2330         memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2331         cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2332         cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
2333         cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
2334         for (i = 0; i < mwl8k_tx_queues(priv); i++)
2335                 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
2336         cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
2337         cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
2338
2339         rc = mwl8k_post_cmd(hw, &cmd->header);
2340
2341         if (!rc) {
2342                 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2343                 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
2344                 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
2345                 priv->hw_rev = cmd->hw_rev;
2346                 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
2347                 priv->ap_macids_supported = 0x00000000;
2348                 priv->sta_macids_supported = 0x00000001;
2349         }
2350
2351         kfree(cmd);
2352         return rc;
2353 }
2354
2355 /*
2356  * CMD_GET_HW_SPEC (AP version).
2357  */
2358 struct mwl8k_cmd_get_hw_spec_ap {
2359         struct mwl8k_cmd_pkt header;
2360         __u8 hw_rev;
2361         __u8 host_interface;
2362         __le16 num_wcb;
2363         __le16 num_mcaddrs;
2364         __u8 perm_addr[ETH_ALEN];
2365         __le16 region_code;
2366         __le16 num_antenna;
2367         __le32 fw_rev;
2368         __le32 wcbbase0;
2369         __le32 rxwrptr;
2370         __le32 rxrdptr;
2371         __le32 ps_cookie;
2372         __le32 wcbbase1;
2373         __le32 wcbbase2;
2374         __le32 wcbbase3;
2375         __le32 fw_api_version;
2376         __le32 caps;
2377         __le32 num_of_ampdu_queues;
2378         __le32 wcbbase_ampdu[MWL8K_MAX_AMPDU_QUEUES];
2379 } __packed;
2380
2381 static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw)
2382 {
2383         struct mwl8k_priv *priv = hw->priv;
2384         struct mwl8k_cmd_get_hw_spec_ap *cmd;
2385         int rc, i;
2386         u32 api_version;
2387
2388         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2389         if (cmd == NULL)
2390                 return -ENOMEM;
2391
2392         cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2393         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2394
2395         memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2396         cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2397
2398         rc = mwl8k_post_cmd(hw, &cmd->header);
2399
2400         if (!rc) {
2401                 int off;
2402
2403                 api_version = le32_to_cpu(cmd->fw_api_version);
2404                 if (priv->device_info->fw_api_ap != api_version) {
2405                         printk(KERN_ERR "%s: Unsupported fw API version for %s."
2406                                "  Expected %d got %d.\n", MWL8K_NAME,
2407                                priv->device_info->part_name,
2408                                priv->device_info->fw_api_ap,
2409                                api_version);
2410                         rc = -EINVAL;
2411                         goto done;
2412                 }
2413                 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2414                 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
2415                 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
2416                 priv->hw_rev = cmd->hw_rev;
2417                 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
2418                 priv->ap_macids_supported = 0x000000ff;
2419                 priv->sta_macids_supported = 0x00000000;
2420                 priv->num_ampdu_queues = le32_to_cpu(cmd->num_of_ampdu_queues);
2421                 if (priv->num_ampdu_queues > MWL8K_MAX_AMPDU_QUEUES) {
2422                         wiphy_warn(hw->wiphy, "fw reported %d ampdu queues"
2423                                    " but we only support %d.\n",
2424                                    priv->num_ampdu_queues,
2425                                    MWL8K_MAX_AMPDU_QUEUES);
2426                         priv->num_ampdu_queues = MWL8K_MAX_AMPDU_QUEUES;
2427                 }
2428                 off = le32_to_cpu(cmd->rxwrptr) & 0xffff;
2429                 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
2430
2431                 off = le32_to_cpu(cmd->rxrdptr) & 0xffff;
2432                 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
2433
2434                 priv->txq_offset[0] = le32_to_cpu(cmd->wcbbase0) & 0xffff;
2435                 priv->txq_offset[1] = le32_to_cpu(cmd->wcbbase1) & 0xffff;
2436                 priv->txq_offset[2] = le32_to_cpu(cmd->wcbbase2) & 0xffff;
2437                 priv->txq_offset[3] = le32_to_cpu(cmd->wcbbase3) & 0xffff;
2438
2439                 for (i = 0; i < priv->num_ampdu_queues; i++)
2440                         priv->txq_offset[i + MWL8K_TX_WMM_QUEUES] =
2441                                 le32_to_cpu(cmd->wcbbase_ampdu[i]) & 0xffff;
2442         }
2443
2444 done:
2445         kfree(cmd);
2446         return rc;
2447 }
2448
2449 /*
2450  * CMD_SET_HW_SPEC.
2451  */
2452 struct mwl8k_cmd_set_hw_spec {
2453         struct mwl8k_cmd_pkt header;
2454         __u8 hw_rev;
2455         __u8 host_interface;
2456         __le16 num_mcaddrs;
2457         __u8 perm_addr[ETH_ALEN];
2458         __le16 region_code;
2459         __le32 fw_rev;
2460         __le32 ps_cookie;
2461         __le32 caps;
2462         __le32 rx_queue_ptr;
2463         __le32 num_tx_queues;
2464         __le32 tx_queue_ptrs[MWL8K_MAX_TX_QUEUES];
2465         __le32 flags;
2466         __le32 num_tx_desc_per_queue;
2467         __le32 total_rxd;
2468 } __packed;
2469
2470 /* If enabled, MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY will cause
2471  * packets to expire 500 ms after the timestamp in the tx descriptor.  That is,
2472  * the packets that are queued for more than 500ms, will be dropped in the
2473  * hardware. This helps minimizing the issues caused due to head-of-line
2474  * blocking where a slow client can hog the bandwidth and affect traffic to a
2475  * faster client.
2476  */
2477 #define MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY  0x00000400
2478 #define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT           0x00000080
2479 #define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP       0x00000020
2480 #define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON          0x00000010
2481
2482 static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw)
2483 {
2484         struct mwl8k_priv *priv = hw->priv;
2485         struct mwl8k_cmd_set_hw_spec *cmd;
2486         int rc;
2487         int i;
2488
2489         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2490         if (cmd == NULL)
2491                 return -ENOMEM;
2492
2493         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC);
2494         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2495
2496         cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2497         cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
2498         cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
2499
2500         /*
2501          * Mac80211 stack has Q0 as highest priority and Q3 as lowest in
2502          * that order. Firmware has Q3 as highest priority and Q0 as lowest
2503          * in that order. Map Q3 of mac80211 to Q0 of firmware so that the
2504          * priority is interpreted the right way in firmware.
2505          */
2506         for (i = 0; i < mwl8k_tx_queues(priv); i++) {
2507                 int j = mwl8k_tx_queues(priv) - 1 - i;
2508                 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[j].txd_dma);
2509         }
2510
2511         cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT |
2512                                  MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP |
2513                                  MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON |
2514                                  MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY);
2515         cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
2516         cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
2517
2518         rc = mwl8k_post_cmd(hw, &cmd->header);
2519         kfree(cmd);
2520
2521         return rc;
2522 }
2523
2524 /*
2525  * CMD_MAC_MULTICAST_ADR.
2526  */
2527 struct mwl8k_cmd_mac_multicast_adr {
2528         struct mwl8k_cmd_pkt header;
2529         __le16 action;
2530         __le16 numaddr;
2531         __u8 addr[0][ETH_ALEN];
2532 };
2533
2534 #define MWL8K_ENABLE_RX_DIRECTED        0x0001
2535 #define MWL8K_ENABLE_RX_MULTICAST       0x0002
2536 #define MWL8K_ENABLE_RX_ALL_MULTICAST   0x0004
2537 #define MWL8K_ENABLE_RX_BROADCAST       0x0008
2538
2539 static struct mwl8k_cmd_pkt *
2540 __mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti,
2541                               struct netdev_hw_addr_list *mc_list)
2542 {
2543         struct mwl8k_priv *priv = hw->priv;
2544         struct mwl8k_cmd_mac_multicast_adr *cmd;
2545         int size;
2546         int mc_count = 0;
2547
2548         if (mc_list)
2549                 mc_count = netdev_hw_addr_list_count(mc_list);
2550
2551         if (allmulti || mc_count > priv->num_mcaddrs) {
2552                 allmulti = 1;
2553                 mc_count = 0;
2554         }
2555
2556         size = sizeof(*cmd) + mc_count * ETH_ALEN;
2557
2558         cmd = kzalloc(size, GFP_ATOMIC);
2559         if (cmd == NULL)
2560                 return NULL;
2561
2562         cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
2563         cmd->header.length = cpu_to_le16(size);
2564         cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED |
2565                                   MWL8K_ENABLE_RX_BROADCAST);
2566
2567         if (allmulti) {
2568                 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST);
2569         } else if (mc_count) {
2570                 struct netdev_hw_addr *ha;
2571                 int i = 0;
2572
2573                 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
2574                 cmd->numaddr = cpu_to_le16(mc_count);
2575                 netdev_hw_addr_list_for_each(ha, mc_list) {
2576                         memcpy(cmd->addr[i], ha->addr, ETH_ALEN);
2577                 }
2578         }
2579
2580         return &cmd->header;
2581 }
2582
2583 /*
2584  * CMD_GET_STAT.
2585  */
2586 struct mwl8k_cmd_get_stat {
2587         struct mwl8k_cmd_pkt header;
2588         __le32 stats[64];
2589 } __packed;
2590
2591 #define MWL8K_STAT_ACK_FAILURE  9
2592 #define MWL8K_STAT_RTS_FAILURE  12
2593 #define MWL8K_STAT_FCS_ERROR    24
2594 #define MWL8K_STAT_RTS_SUCCESS  11
2595
2596 static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw,
2597                               struct ieee80211_low_level_stats *stats)
2598 {
2599         struct mwl8k_cmd_get_stat *cmd;
2600         int rc;
2601
2602         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2603         if (cmd == NULL)
2604                 return -ENOMEM;
2605
2606         cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
2607         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2608
2609         rc = mwl8k_post_cmd(hw, &cmd->header);
2610         if (!rc) {
2611                 stats->dot11ACKFailureCount =
2612                         le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
2613                 stats->dot11RTSFailureCount =
2614                         le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
2615                 stats->dot11FCSErrorCount =
2616                         le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
2617                 stats->dot11RTSSuccessCount =
2618                         le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
2619         }
2620         kfree(cmd);
2621
2622         return rc;
2623 }
2624
2625 /*
2626  * CMD_RADIO_CONTROL.
2627  */
2628 struct mwl8k_cmd_radio_control {
2629         struct mwl8k_cmd_pkt header;
2630         __le16 action;
2631         __le16 control;
2632         __le16 radio_on;
2633 } __packed;
2634
2635 static int
2636 mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force)
2637 {
2638         struct mwl8k_priv *priv = hw->priv;
2639         struct mwl8k_cmd_radio_control *cmd;
2640         int rc;
2641
2642         if (enable == priv->radio_on && !force)
2643                 return 0;
2644
2645         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2646         if (cmd == NULL)
2647                 return -ENOMEM;
2648
2649         cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
2650         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2651         cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2652         cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1);
2653         cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
2654
2655         rc = mwl8k_post_cmd(hw, &cmd->header);
2656         kfree(cmd);
2657
2658         if (!rc)
2659                 priv->radio_on = enable;
2660
2661         return rc;
2662 }
2663
2664 static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw)
2665 {
2666         return mwl8k_cmd_radio_control(hw, 0, 0);
2667 }
2668
2669 static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw)
2670 {
2671         return mwl8k_cmd_radio_control(hw, 1, 0);
2672 }
2673
2674 static int
2675 mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
2676 {
2677         struct mwl8k_priv *priv = hw->priv;
2678
2679         priv->radio_short_preamble = short_preamble;
2680
2681         return mwl8k_cmd_radio_control(hw, 1, 1);
2682 }
2683
2684 /*
2685  * CMD_RF_TX_POWER.
2686  */
2687 #define MWL8K_RF_TX_POWER_LEVEL_TOTAL   8
2688
2689 struct mwl8k_cmd_rf_tx_power {
2690         struct mwl8k_cmd_pkt header;
2691         __le16 action;
2692         __le16 support_level;
2693         __le16 current_level;
2694         __le16 reserved;
2695         __le16 power_level_list[MWL8K_RF_TX_POWER_LEVEL_TOTAL];
2696 } __packed;
2697
2698 static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw *hw, int dBm)
2699 {
2700         struct mwl8k_cmd_rf_tx_power *cmd;
2701         int rc;
2702
2703         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2704         if (cmd == NULL)
2705                 return -ENOMEM;
2706
2707         cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
2708         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2709         cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2710         cmd->support_level = cpu_to_le16(dBm);
2711
2712         rc = mwl8k_post_cmd(hw, &cmd->header);
2713         kfree(cmd);
2714
2715         return rc;
2716 }
2717
2718 /*
2719  * CMD_TX_POWER.
2720  */
2721 #define MWL8K_TX_POWER_LEVEL_TOTAL      12
2722
2723 struct mwl8k_cmd_tx_power {
2724         struct mwl8k_cmd_pkt header;
2725         __le16 action;
2726         __le16 band;
2727         __le16 channel;
2728         __le16 bw;
2729         __le16 sub_ch;
2730         __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
2731 } __packed;
2732
2733 static int mwl8k_cmd_tx_power(struct ieee80211_hw *hw,
2734                                      struct ieee80211_conf *conf,
2735                                      unsigned short pwr)
2736 {
2737         struct ieee80211_channel *channel = conf->channel;
2738         struct mwl8k_cmd_tx_power *cmd;
2739         int rc;
2740         int i;
2741
2742         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2743         if (cmd == NULL)
2744                 return -ENOMEM;
2745
2746         cmd->header.code = cpu_to_le16(MWL8K_CMD_TX_POWER);
2747         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2748         cmd->action = cpu_to_le16(MWL8K_CMD_SET_LIST);
2749
2750         if (channel->band == IEEE80211_BAND_2GHZ)
2751                 cmd->band = cpu_to_le16(0x1);
2752         else if (channel->band == IEEE80211_BAND_5GHZ)
2753                 cmd->band = cpu_to_le16(0x4);
2754
2755         cmd->channel = channel->hw_value;
2756
2757         if (conf->channel_type == NL80211_CHAN_NO_HT ||
2758             conf->channel_type == NL80211_CHAN_HT20) {
2759                 cmd->bw = cpu_to_le16(0x2);
2760         } else {
2761                 cmd->bw = cpu_to_le16(0x4);
2762                 if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2763                         cmd->sub_ch = cpu_to_le16(0x3);
2764                 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2765                         cmd->sub_ch = cpu_to_le16(0x1);
2766         }
2767
2768         for (i = 0; i < MWL8K_TX_POWER_LEVEL_TOTAL; i++)
2769                 cmd->power_level_list[i] = cpu_to_le16(pwr);
2770
2771         rc = mwl8k_post_cmd(hw, &cmd->header);
2772         kfree(cmd);
2773
2774         return rc;
2775 }
2776
2777 /*
2778  * CMD_RF_ANTENNA.
2779  */
2780 struct mwl8k_cmd_rf_antenna {
2781         struct mwl8k_cmd_pkt header;
2782         __le16 antenna;
2783         __le16 mode;
2784 } __packed;
2785
2786 #define MWL8K_RF_ANTENNA_RX             1
2787 #define MWL8K_RF_ANTENNA_TX             2
2788
2789 static int
2790 mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask)
2791 {
2792         struct mwl8k_cmd_rf_antenna *cmd;
2793         int rc;
2794
2795         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2796         if (cmd == NULL)
2797                 return -ENOMEM;
2798
2799         cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA);
2800         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2801         cmd->antenna = cpu_to_le16(antenna);
2802         cmd->mode = cpu_to_le16(mask);
2803
2804         rc = mwl8k_post_cmd(hw, &cmd->header);
2805         kfree(cmd);
2806
2807         return rc;
2808 }
2809
2810 /*
2811  * CMD_SET_BEACON.
2812  */
2813 struct mwl8k_cmd_set_beacon {
2814         struct mwl8k_cmd_pkt header;
2815         __le16 beacon_len;
2816         __u8 beacon[0];
2817 };
2818
2819 static int mwl8k_cmd_set_beacon(struct ieee80211_hw *hw,
2820                                 struct ieee80211_vif *vif, u8 *beacon, int len)
2821 {
2822         struct mwl8k_cmd_set_beacon *cmd;
2823         int rc;
2824
2825         cmd = kzalloc(sizeof(*cmd) + len, GFP_KERNEL);
2826         if (cmd == NULL)
2827                 return -ENOMEM;
2828
2829         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_BEACON);
2830         cmd->header.length = cpu_to_le16(sizeof(*cmd) + len);
2831         cmd->beacon_len = cpu_to_le16(len);
2832         memcpy(cmd->beacon, beacon, len);
2833
2834         rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
2835         kfree(cmd);
2836
2837         return rc;
2838 }
2839
2840 /*
2841  * CMD_SET_PRE_SCAN.
2842  */
2843 struct mwl8k_cmd_set_pre_scan {
2844         struct mwl8k_cmd_pkt header;
2845 } __packed;
2846
2847 static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
2848 {
2849         struct mwl8k_cmd_set_pre_scan *cmd;
2850         int rc;
2851
2852         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2853         if (cmd == NULL)
2854                 return -ENOMEM;
2855
2856         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
2857         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2858
2859         rc = mwl8k_post_cmd(hw, &cmd->header);
2860         kfree(cmd);
2861
2862         return rc;
2863 }
2864
2865 /*
2866  * CMD_SET_POST_SCAN.
2867  */
2868 struct mwl8k_cmd_set_post_scan {
2869         struct mwl8k_cmd_pkt header;
2870         __le32 isibss;
2871         __u8 bssid[ETH_ALEN];
2872 } __packed;
2873
2874 static int
2875 mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac)
2876 {
2877         struct mwl8k_cmd_set_post_scan *cmd;
2878         int rc;
2879
2880         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2881         if (cmd == NULL)
2882                 return -ENOMEM;
2883
2884         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
2885         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2886         cmd->isibss = 0;
2887         memcpy(cmd->bssid, mac, ETH_ALEN);
2888
2889         rc = mwl8k_post_cmd(hw, &cmd->header);
2890         kfree(cmd);
2891
2892         return rc;
2893 }
2894
2895 /*
2896  * CMD_SET_RF_CHANNEL.
2897  */
2898 struct mwl8k_cmd_set_rf_channel {
2899         struct mwl8k_cmd_pkt header;
2900         __le16 action;
2901         __u8 current_channel;
2902         __le32 channel_flags;
2903 } __packed;
2904
2905 static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
2906                                     struct ieee80211_conf *conf)
2907 {
2908         struct ieee80211_channel *channel = conf->channel;
2909         struct mwl8k_cmd_set_rf_channel *cmd;
2910         int rc;
2911
2912         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2913         if (cmd == NULL)
2914                 return -ENOMEM;
2915
2916         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
2917         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2918         cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2919         cmd->current_channel = channel->hw_value;
2920
2921         if (channel->band == IEEE80211_BAND_2GHZ)
2922                 cmd->channel_flags |= cpu_to_le32(0x00000001);
2923         else if (channel->band == IEEE80211_BAND_5GHZ)
2924                 cmd->channel_flags |= cpu_to_le32(0x00000004);
2925
2926         if (conf->channel_type == NL80211_CHAN_NO_HT ||
2927             conf->channel_type == NL80211_CHAN_HT20)
2928                 cmd->channel_flags |= cpu_to_le32(0x00000080);
2929         else if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2930                 cmd->channel_flags |= cpu_to_le32(0x000001900);
2931         else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2932                 cmd->channel_flags |= cpu_to_le32(0x000000900);
2933
2934         rc = mwl8k_post_cmd(hw, &cmd->header);
2935         kfree(cmd);
2936
2937         return rc;
2938 }
2939
2940 /*
2941  * CMD_SET_AID.
2942  */
2943 #define MWL8K_FRAME_PROT_DISABLED                       0x00
2944 #define MWL8K_FRAME_PROT_11G                            0x07
2945 #define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY              0x02
2946 #define MWL8K_FRAME_PROT_11N_HT_ALL                     0x06
2947
2948 struct mwl8k_cmd_update_set_aid {
2949         struct  mwl8k_cmd_pkt header;
2950         __le16  aid;
2951
2952          /* AP's MAC address (BSSID) */
2953         __u8    bssid[ETH_ALEN];
2954         __le16  protection_mode;
2955         __u8    supp_rates[14];
2956 } __packed;
2957
2958 static void legacy_rate_mask_to_array(u8 *rates, u32 mask)
2959 {
2960         int i;
2961         int j;
2962
2963         /*
2964          * Clear nonstandard rates 4 and 13.
2965          */
2966         mask &= 0x1fef;
2967
2968         for (i = 0, j = 0; i < 14; i++) {
2969                 if (mask & (1 << i))
2970                         rates[j++] = mwl8k_rates_24[i].hw_value;
2971         }
2972 }
2973
2974 static int
2975 mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
2976                   struct ieee80211_vif *vif, u32 legacy_rate_mask)
2977 {
2978         struct mwl8k_cmd_update_set_aid *cmd;
2979         u16 prot_mode;
2980         int rc;
2981
2982         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2983         if (cmd == NULL)
2984                 return -ENOMEM;
2985
2986         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
2987         cmd->header.length = cpu_to_le16(sizeof(*cmd));
2988         cmd->aid = cpu_to_le16(vif->bss_conf.aid);
2989         memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
2990
2991         if (vif->bss_conf.use_cts_prot) {
2992                 prot_mode = MWL8K_FRAME_PROT_11G;
2993         } else {
2994                 switch (vif->bss_conf.ht_operation_mode &
2995                         IEEE80211_HT_OP_MODE_PROTECTION) {
2996                 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
2997                         prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
2998                         break;
2999                 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
3000                         prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
3001                         break;
3002                 default:
3003                         prot_mode = MWL8K_FRAME_PROT_DISABLED;
3004                         break;
3005                 }
3006         }
3007         cmd->protection_mode = cpu_to_le16(prot_mode);
3008
3009         legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask);
3010
3011         rc = mwl8k_post_cmd(hw, &cmd->header);
3012         kfree(cmd);
3013
3014         return rc;
3015 }
3016
3017 /*
3018  * CMD_SET_RATE.
3019  */
3020 struct mwl8k_cmd_set_rate {
3021         struct  mwl8k_cmd_pkt header;
3022         __u8    legacy_rates[14];
3023
3024         /* Bitmap for supported MCS codes.  */
3025         __u8    mcs_set[16];
3026         __u8    reserved[16];
3027 } __packed;
3028
3029 static int
3030 mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
3031                    u32 legacy_rate_mask, u8 *mcs_rates)
3032 {
3033         struct mwl8k_cmd_set_rate *cmd;
3034         int rc;
3035
3036         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3037         if (cmd == NULL)
3038                 return -ENOMEM;
3039
3040         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE);
3041         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3042         legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask);
3043         memcpy(cmd->mcs_set, mcs_rates, 16);
3044
3045         rc = mwl8k_post_cmd(hw, &cmd->header);
3046         kfree(cmd);
3047
3048         return rc;
3049 }
3050
3051 /*
3052  * CMD_FINALIZE_JOIN.
3053  */
3054 #define MWL8K_FJ_BEACON_MAXLEN  128
3055
3056 struct mwl8k_cmd_finalize_join {
3057         struct mwl8k_cmd_pkt header;
3058         __le32 sleep_interval;  /* Number of beacon periods to sleep */
3059         __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
3060 } __packed;
3061
3062 static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame,
3063                                    int framelen, int dtim)
3064 {
3065         struct mwl8k_cmd_finalize_join *cmd;
3066         struct ieee80211_mgmt *payload = frame;
3067         int payload_len;
3068         int rc;
3069
3070         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3071         if (cmd == NULL)
3072                 return -ENOMEM;
3073
3074         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN);
3075         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3076         cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
3077
3078         payload_len = framelen - ieee80211_hdrlen(payload->frame_control);
3079         if (payload_len < 0)
3080                 payload_len = 0;
3081         else if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
3082                 payload_len = MWL8K_FJ_BEACON_MAXLEN;
3083
3084         memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
3085
3086         rc = mwl8k_post_cmd(hw, &cmd->header);
3087         kfree(cmd);
3088
3089         return rc;
3090 }
3091
3092 /*
3093  * CMD_SET_RTS_THRESHOLD.
3094  */
3095 struct mwl8k_cmd_set_rts_threshold {
3096         struct mwl8k_cmd_pkt header;
3097         __le16 action;
3098         __le16 threshold;
3099 } __packed;
3100
3101 static int
3102 mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw, int rts_thresh)
3103 {
3104         struct mwl8k_cmd_set_rts_threshold *cmd;
3105         int rc;
3106
3107         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3108         if (cmd == NULL)
3109                 return -ENOMEM;
3110
3111         cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
3112         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3113         cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3114         cmd->threshold = cpu_to_le16(rts_thresh);
3115
3116         rc = mwl8k_post_cmd(hw, &cmd->header);
3117         kfree(cmd);
3118
3119         return rc;
3120 }
3121
3122 /*
3123  * CMD_SET_SLOT.
3124  */
3125 struct mwl8k_cmd_set_slot {
3126         struct mwl8k_cmd_pkt header;
3127         __le16 action;
3128         __u8 short_slot;
3129 } __packed;
3130
3131 static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time)
3132 {
3133         struct mwl8k_cmd_set_slot *cmd;
3134         int rc;
3135
3136         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3137         if (cmd == NULL)
3138                 return -ENOMEM;
3139
3140         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
3141         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3142         cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3143         cmd->short_slot = short_slot_time;
3144
3145         rc = mwl8k_post_cmd(hw, &cmd->header);
3146         kfree(cmd);
3147
3148         return rc;
3149 }
3150
3151 /*
3152  * CMD_SET_EDCA_PARAMS.
3153  */
3154 struct mwl8k_cmd_set_edca_params {
3155         struct mwl8k_cmd_pkt header;
3156
3157         /* See MWL8K_SET_EDCA_XXX below */
3158         __le16 action;
3159
3160         /* TX opportunity in units of 32 us */
3161         __le16 txop;
3162
3163         union {
3164                 struct {
3165                         /* Log exponent of max contention period: 0...15 */
3166                         __le32 log_cw_max;
3167
3168                         /* Log exponent of min contention period: 0...15 */
3169                         __le32 log_cw_min;
3170
3171                         /* Adaptive interframe spacing in units of 32us */
3172                         __u8 aifs;
3173
3174                         /* TX queue to configure */
3175                         __u8 txq;
3176                 } ap;
3177                 struct {
3178                         /* Log exponent of max contention period: 0...15 */
3179                         __u8 log_cw_max;
3180
3181                         /* Log exponent of min contention period: 0...15 */
3182                         __u8 log_cw_min;
3183
3184                         /* Adaptive interframe spacing in units of 32us */
3185                         __u8 aifs;
3186
3187                         /* TX queue to configure */
3188                         __u8 txq;
3189                 } sta;
3190         };
3191 } __packed;
3192
3193 #define MWL8K_SET_EDCA_CW       0x01
3194 #define MWL8K_SET_EDCA_TXOP     0x02
3195 #define MWL8K_SET_EDCA_AIFS     0x04
3196
3197 #define MWL8K_SET_EDCA_ALL      (MWL8K_SET_EDCA_CW | \
3198                                  MWL8K_SET_EDCA_TXOP | \
3199                                  MWL8K_SET_EDCA_AIFS)
3200
3201 static int
3202 mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
3203                           __u16 cw_min, __u16 cw_max,
3204                           __u8 aifs, __u16 txop)
3205 {
3206         struct mwl8k_priv *priv = hw->priv;
3207         struct mwl8k_cmd_set_edca_params *cmd;
3208         int rc;
3209
3210         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3211         if (cmd == NULL)
3212                 return -ENOMEM;
3213
3214         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
3215         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3216         cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
3217         cmd->txop = cpu_to_le16(txop);
3218         if (priv->ap_fw) {
3219                 cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1));
3220                 cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1));
3221                 cmd->ap.aifs = aifs;
3222                 cmd->ap.txq = qnum;
3223         } else {
3224                 cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1);
3225                 cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1);
3226                 cmd->sta.aifs = aifs;
3227                 cmd->sta.txq = qnum;
3228         }
3229
3230         rc = mwl8k_post_cmd(hw, &cmd->header);
3231         kfree(cmd);
3232
3233         return rc;
3234 }
3235
3236 /*
3237  * CMD_SET_WMM_MODE.
3238  */
3239 struct mwl8k_cmd_set_wmm_mode {
3240         struct mwl8k_cmd_pkt header;
3241         __le16 action;
3242 } __packed;
3243
3244 static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw *hw, bool enable)
3245 {
3246         struct mwl8k_priv *priv = hw->priv;
3247         struct mwl8k_cmd_set_wmm_mode *cmd;
3248         int rc;
3249
3250         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3251         if (cmd == NULL)
3252                 return -ENOMEM;
3253
3254         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
3255         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3256         cmd->action = cpu_to_le16(!!enable);
3257
3258         rc = mwl8k_post_cmd(hw, &cmd->header);
3259         kfree(cmd);
3260
3261         if (!rc)
3262                 priv->wmm_enabled = enable;
3263
3264         return rc;
3265 }
3266
3267 /*
3268  * CMD_MIMO_CONFIG.
3269  */
3270 struct mwl8k_cmd_mimo_config {
3271         struct mwl8k_cmd_pkt header;
3272         __le32 action;
3273         __u8 rx_antenna_map;
3274         __u8 tx_antenna_map;
3275 } __packed;
3276
3277 static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
3278 {
3279         struct mwl8k_cmd_mimo_config *cmd;
3280         int rc;
3281
3282         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3283         if (cmd == NULL)
3284                 return -ENOMEM;
3285
3286         cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG);
3287         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3288         cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET);
3289         cmd->rx_antenna_map = rx;
3290         cmd->tx_antenna_map = tx;
3291
3292         rc = mwl8k_post_cmd(hw, &cmd->header);
3293         kfree(cmd);
3294
3295         return rc;
3296 }
3297
3298 /*
3299  * CMD_USE_FIXED_RATE (STA version).
3300  */
3301 struct mwl8k_cmd_use_fixed_rate_sta {
3302         struct mwl8k_cmd_pkt header;
3303         __le32 action;
3304         __le32 allow_rate_drop;
3305         __le32 num_rates;
3306         struct {
3307                 __le32 is_ht_rate;
3308                 __le32 enable_retry;
3309                 __le32 rate;
3310                 __le32 retry_count;
3311         } rate_entry[8];
3312         __le32 rate_type;
3313         __le32 reserved1;
3314         __le32 reserved2;
3315 } __packed;
3316
3317 #define MWL8K_USE_AUTO_RATE     0x0002
3318 #define MWL8K_UCAST_RATE        0
3319
3320 static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw *hw)
3321 {
3322         struct mwl8k_cmd_use_fixed_rate_sta *cmd;
3323         int rc;
3324
3325         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3326         if (cmd == NULL)
3327                 return -ENOMEM;
3328
3329         cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3330         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3331         cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3332         cmd->rate_type = cpu_to_le32(MWL8K_UCAST_RATE);
3333
3334         rc = mwl8k_post_cmd(hw, &cmd->header);
3335         kfree(cmd);
3336
3337         return rc;
3338 }
3339
3340 /*
3341  * CMD_USE_FIXED_RATE (AP version).
3342  */
3343 struct mwl8k_cmd_use_fixed_rate_ap {
3344         struct mwl8k_cmd_pkt header;
3345         __le32 action;
3346         __le32 allow_rate_drop;
3347         __le32 num_rates;
3348         struct mwl8k_rate_entry_ap {
3349                 __le32 is_ht_rate;
3350                 __le32 enable_retry;
3351                 __le32 rate;
3352                 __le32 retry_count;
3353         } rate_entry[4];
3354         u8 multicast_rate;
3355         u8 multicast_rate_type;
3356         u8 management_rate;
3357 } __packed;
3358
3359 static int
3360 mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw *hw, int mcast, int mgmt)
3361 {
3362         struct mwl8k_cmd_use_fixed_rate_ap *cmd;
3363         int rc;
3364
3365         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3366         if (cmd == NULL)
3367                 return -ENOMEM;
3368
3369         cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3370         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3371         cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3372         cmd->multicast_rate = mcast;
3373         cmd->management_rate = mgmt;
3374
3375         rc = mwl8k_post_cmd(hw, &cmd->header);
3376         kfree(cmd);
3377
3378         return rc;
3379 }
3380
3381 /*
3382  * CMD_ENABLE_SNIFFER.
3383  */
3384 struct mwl8k_cmd_enable_sniffer {
3385         struct mwl8k_cmd_pkt header;
3386         __le32 action;
3387 } __packed;
3388
3389 static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable)
3390 {
3391         struct mwl8k_cmd_enable_sniffer *cmd;
3392         int rc;
3393
3394         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3395         if (cmd == NULL)
3396                 return -ENOMEM;
3397
3398         cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
3399         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3400         cmd->action = cpu_to_le32(!!enable);
3401
3402         rc = mwl8k_post_cmd(hw, &cmd->header);
3403         kfree(cmd);
3404
3405         return rc;
3406 }
3407
3408 /*
3409  * CMD_SET_MAC_ADDR.
3410  */
3411 struct mwl8k_cmd_set_mac_addr {
3412         struct mwl8k_cmd_pkt header;
3413         union {
3414                 struct {
3415                         __le16 mac_type;
3416                         __u8 mac_addr[ETH_ALEN];
3417                 } mbss;
3418                 __u8 mac_addr[ETH_ALEN];
3419         };
3420 } __packed;
3421
3422 #define MWL8K_MAC_TYPE_PRIMARY_CLIENT           0
3423 #define MWL8K_MAC_TYPE_SECONDARY_CLIENT         1
3424 #define MWL8K_MAC_TYPE_PRIMARY_AP               2
3425 #define MWL8K_MAC_TYPE_SECONDARY_AP             3
3426
3427 static int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw,
3428                                   struct ieee80211_vif *vif, u8 *mac)
3429 {
3430         struct mwl8k_priv *priv = hw->priv;
3431         struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
3432         struct mwl8k_cmd_set_mac_addr *cmd;
3433         int mac_type;
3434         int rc;
3435
3436         mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3437         if (vif != NULL && vif->type == NL80211_IFTYPE_STATION) {
3438                 if (mwl8k_vif->macid + 1 == ffs(priv->sta_macids_supported))
3439                         mac_type = MWL8K_MAC_TYPE_PRIMARY_CLIENT;
3440                 else
3441                         mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
3442         } else if (vif != NULL && vif->type == NL80211_IFTYPE_AP) {
3443                 if (mwl8k_vif->macid + 1 == ffs(priv->ap_macids_supported))
3444                         mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3445                 else
3446                         mac_type = MWL8K_MAC_TYPE_SECONDARY_AP;
3447         }
3448
3449         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3450         if (cmd == NULL)
3451                 return -ENOMEM;
3452
3453         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR);
3454         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3455         if (priv->ap_fw) {
3456                 cmd->mbss.mac_type = cpu_to_le16(mac_type);
3457                 memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN);
3458         } else {
3459                 memcpy(cmd->mac_addr, mac, ETH_ALEN);
3460         }
3461
3462         rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
3463         kfree(cmd);
3464
3465         return rc;
3466 }
3467
3468 /*
3469  * CMD_SET_RATEADAPT_MODE.
3470  */
3471 struct mwl8k_cmd_set_rate_adapt_mode {
3472         struct mwl8k_cmd_pkt header;
3473         __le16 action;
3474         __le16 mode;
3475 } __packed;
3476
3477 static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode)
3478 {
3479         struct mwl8k_cmd_set_rate_adapt_mode *cmd;
3480         int rc;
3481
3482         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3483         if (cmd == NULL)
3484                 return -ENOMEM;
3485
3486         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
3487         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3488         cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3489         cmd->mode = cpu_to_le16(mode);
3490
3491         rc = mwl8k_post_cmd(hw, &cmd->header);
3492         kfree(cmd);
3493
3494         return rc;
3495 }
3496
3497 /*
3498  * CMD_GET_WATCHDOG_BITMAP.
3499  */
3500 struct mwl8k_cmd_get_watchdog_bitmap {
3501         struct mwl8k_cmd_pkt header;
3502         u8      bitmap;
3503 } __packed;
3504
3505 static int mwl8k_cmd_get_watchdog_bitmap(struct ieee80211_hw *hw, u8 *bitmap)
3506 {
3507         struct mwl8k_cmd_get_watchdog_bitmap *cmd;
3508         int rc;
3509
3510         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3511         if (cmd == NULL)
3512                 return -ENOMEM;
3513
3514         cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_WATCHDOG_BITMAP);
3515         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3516
3517         rc = mwl8k_post_cmd(hw, &cmd->header);
3518         if (!rc)
3519                 *bitmap = cmd->bitmap;
3520
3521         kfree(cmd);
3522
3523         return rc;
3524 }
3525
3526 #define INVALID_BA      0xAA
3527 static void mwl8k_watchdog_ba_events(struct work_struct *work)
3528 {
3529         int rc;
3530         u8 bitmap = 0, stream_index;
3531         struct mwl8k_ampdu_stream *streams;
3532         struct mwl8k_priv *priv =
3533                 container_of(work, struct mwl8k_priv, watchdog_ba_handle);
3534
3535         rc = mwl8k_cmd_get_watchdog_bitmap(priv->hw, &bitmap);
3536         if (rc)
3537                 return;
3538
3539         if (bitmap == INVALID_BA)
3540                 return;
3541
3542         /* the bitmap is the hw queue number.  Map it to the ampdu queue. */
3543         stream_index = bitmap - MWL8K_TX_WMM_QUEUES;
3544
3545         BUG_ON(stream_index >= priv->num_ampdu_queues);
3546
3547         streams = &priv->ampdu[stream_index];
3548
3549         if (streams->state == AMPDU_STREAM_ACTIVE)
3550                 ieee80211_stop_tx_ba_session(streams->sta, streams->tid);
3551
3552         return;
3553 }
3554
3555
3556 /*
3557  * CMD_BSS_START.
3558  */
3559 struct mwl8k_cmd_bss_start {
3560         struct mwl8k_cmd_pkt header;
3561         __le32 enable;
3562 } __packed;
3563
3564 static int mwl8k_cmd_bss_start(struct ieee80211_hw *hw,
3565                                struct ieee80211_vif *vif, int enable)
3566 {
3567         struct mwl8k_cmd_bss_start *cmd;
3568         int rc;
3569
3570         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3571         if (cmd == NULL)
3572                 return -ENOMEM;
3573
3574         cmd->header.code = cpu_to_le16(MWL8K_CMD_BSS_START);
3575         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3576         cmd->enable = cpu_to_le32(enable);
3577
3578         rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
3579         kfree(cmd);
3580
3581         return rc;
3582 }
3583
3584 /*
3585  * CMD_BASTREAM.
3586  */
3587
3588 /*
3589  * UPSTREAM is tx direction
3590  */
3591 #define BASTREAM_FLAG_DIRECTION_UPSTREAM        0x00
3592 #define BASTREAM_FLAG_IMMEDIATE_TYPE            0x01
3593
3594 enum ba_stream_action_type {
3595         MWL8K_BA_CREATE,
3596         MWL8K_BA_UPDATE,
3597         MWL8K_BA_DESTROY,
3598         MWL8K_BA_FLUSH,
3599         MWL8K_BA_CHECK,
3600 };
3601
3602
3603 struct mwl8k_create_ba_stream {
3604         __le32  flags;
3605         __le32  idle_thrs;
3606         __le32  bar_thrs;
3607         __le32  window_size;
3608         u8      peer_mac_addr[6];
3609         u8      dialog_token;
3610         u8      tid;
3611         u8      queue_id;
3612         u8      param_info;
3613         __le32  ba_context;
3614         u8      reset_seq_no_flag;
3615         __le16  curr_seq_no;
3616         u8      sta_src_mac_addr[6];
3617 } __packed;
3618
3619 struct mwl8k_destroy_ba_stream {
3620         __le32  flags;
3621         __le32  ba_context;
3622 } __packed;
3623
3624 struct mwl8k_cmd_bastream {
3625         struct mwl8k_cmd_pkt    header;
3626         __le32  action;
3627         union {
3628                 struct mwl8k_create_ba_stream   create_params;
3629                 struct mwl8k_destroy_ba_stream  destroy_params;
3630         };
3631 } __packed;
3632
3633 static int
3634 mwl8k_check_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
3635 {
3636         struct mwl8k_cmd_bastream *cmd;
3637         int rc;
3638
3639         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3640         if (cmd == NULL)
3641                 return -ENOMEM;
3642
3643         cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3644         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3645
3646         cmd->action = cpu_to_le32(MWL8K_BA_CHECK);
3647
3648         cmd->create_params.queue_id = stream->idx;
3649         memcpy(&cmd->create_params.peer_mac_addr[0], stream->sta->addr,
3650                ETH_ALEN);
3651         cmd->create_params.tid = stream->tid;
3652
3653         cmd->create_params.flags =
3654                 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE) |
3655                 cpu_to_le32(BASTREAM_FLAG_DIRECTION_UPSTREAM);
3656
3657         rc = mwl8k_post_cmd(hw, &cmd->header);
3658
3659         kfree(cmd);
3660
3661         return rc;
3662 }
3663
3664 static int
3665 mwl8k_create_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
3666                 u8 buf_size)
3667 {
3668         struct mwl8k_cmd_bastream *cmd;
3669         int rc;
3670
3671         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3672         if (cmd == NULL)
3673                 return -ENOMEM;
3674
3675
3676         cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3677         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3678
3679         cmd->action = cpu_to_le32(MWL8K_BA_CREATE);
3680
3681         cmd->create_params.bar_thrs = cpu_to_le32((u32)buf_size);
3682         cmd->create_params.window_size = cpu_to_le32((u32)buf_size);
3683         cmd->create_params.queue_id = stream->idx;
3684
3685         memcpy(cmd->create_params.peer_mac_addr, stream->sta->addr, ETH_ALEN);
3686         cmd->create_params.tid = stream->tid;
3687         cmd->create_params.curr_seq_no = cpu_to_le16(0);
3688         cmd->create_params.reset_seq_no_flag = 1;
3689
3690         cmd->create_params.param_info =
3691                 (stream->sta->ht_cap.ampdu_factor &
3692                  IEEE80211_HT_AMPDU_PARM_FACTOR) |
3693                 ((stream->sta->ht_cap.ampdu_density << 2) &
3694                  IEEE80211_HT_AMPDU_PARM_DENSITY);
3695
3696         cmd->create_params.flags =
3697                 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE |
3698                                         BASTREAM_FLAG_DIRECTION_UPSTREAM);
3699
3700         rc = mwl8k_post_cmd(hw, &cmd->header);
3701
3702         wiphy_debug(hw->wiphy, "Created a BA stream for %pM : tid %d\n",
3703                 stream->sta->addr, stream->tid);
3704         kfree(cmd);
3705
3706         return rc;
3707 }
3708
3709 static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
3710                              struct mwl8k_ampdu_stream *stream)
3711 {
3712         struct mwl8k_cmd_bastream *cmd;
3713
3714         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3715         if (cmd == NULL)
3716                 return;
3717
3718         cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3719         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3720         cmd->action = cpu_to_le32(MWL8K_BA_DESTROY);
3721
3722         cmd->destroy_params.ba_context = cpu_to_le32(stream->idx);
3723         mwl8k_post_cmd(hw, &cmd->header);
3724
3725         wiphy_debug(hw->wiphy, "Deleted BA stream index %d\n", stream->idx);
3726
3727         kfree(cmd);
3728 }
3729
3730 /*
3731  * CMD_SET_NEW_STN.
3732  */
3733 struct mwl8k_cmd_set_new_stn {
3734         struct mwl8k_cmd_pkt header;
3735         __le16 aid;
3736         __u8 mac_addr[6];
3737         __le16 stn_id;
3738         __le16 action;
3739         __le16 rsvd;
3740         __le32 legacy_rates;
3741         __u8 ht_rates[4];
3742         __le16 cap_info;
3743         __le16 ht_capabilities_info;
3744         __u8 mac_ht_param_info;
3745         __u8 rev;
3746         __u8 control_channel;
3747         __u8 add_channel;
3748         __le16 op_mode;
3749         __le16 stbc;
3750         __u8 add_qos_info;
3751         __u8 is_qos_sta;
3752         __le32 fw_sta_ptr;
3753 } __packed;
3754
3755 #define MWL8K_STA_ACTION_ADD            0
3756 #define MWL8K_STA_ACTION_REMOVE         2
3757
3758 static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw *hw,
3759                                      struct ieee80211_vif *vif,
3760                                      struct ieee80211_sta *sta)
3761 {
3762         struct mwl8k_cmd_set_new_stn *cmd;
3763         u32 rates;
3764         int rc;
3765
3766         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3767         if (cmd == NULL)
3768                 return -ENOMEM;
3769
3770         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3771         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3772         cmd->aid = cpu_to_le16(sta->aid);
3773         memcpy(cmd->mac_addr, sta->addr, ETH_ALEN);
3774         cmd->stn_id = cpu_to_le16(sta->aid);
3775         cmd->action = cpu_to_le16(MWL8K_STA_ACTION_ADD);
3776         if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
3777                 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
3778         else
3779                 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
3780         cmd->legacy_rates = cpu_to_le32(rates);
3781         if (sta->ht_cap.ht_supported) {
3782                 cmd->ht_rates[0] = sta->ht_cap.mcs.rx_mask[0];
3783                 cmd->ht_rates[1] = sta->ht_cap.mcs.rx_mask[1];
3784                 cmd->ht_rates[2] = sta->ht_cap.mcs.rx_mask[2];
3785                 cmd->ht_rates[3] = sta->ht_cap.mcs.rx_mask[3];
3786                 cmd->ht_capabilities_info = cpu_to_le16(sta->ht_cap.cap);
3787                 cmd->mac_ht_param_info = (sta->ht_cap.ampdu_factor & 3) |
3788                         ((sta->ht_cap.ampdu_density & 7) << 2);
3789                 cmd->is_qos_sta = 1;
3790         }
3791
3792         rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
3793         kfree(cmd);
3794
3795         return rc;
3796 }
3797
3798 static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw *hw,
3799                                           struct ieee80211_vif *vif)
3800 {
3801         struct mwl8k_cmd_set_new_stn *cmd;
3802         int rc;
3803
3804         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3805         if (cmd == NULL)
3806                 return -ENOMEM;
3807
3808         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3809         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3810         memcpy(cmd->mac_addr, vif->addr, ETH_ALEN);
3811
3812         rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
3813         kfree(cmd);
3814
3815         return rc;
3816 }
3817
3818 static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw *hw,
3819                                      struct ieee80211_vif *vif, u8 *addr)
3820 {
3821         struct mwl8k_cmd_set_new_stn *cmd;
3822         int rc;
3823
3824         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3825         if (cmd == NULL)
3826                 return -ENOMEM;
3827
3828         cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3829         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3830         memcpy(cmd->mac_addr, addr, ETH_ALEN);
3831         cmd->action = cpu_to_le16(MWL8K_STA_ACTION_REMOVE);
3832
3833         rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
3834         kfree(cmd);
3835
3836         return rc;
3837 }
3838
3839 /*
3840  * CMD_UPDATE_ENCRYPTION.
3841  */
3842
3843 #define MAX_ENCR_KEY_LENGTH     16
3844 #define MIC_KEY_LENGTH          8
3845
3846 struct mwl8k_cmd_update_encryption {
3847         struct mwl8k_cmd_pkt header;
3848
3849         __le32 action;
3850         __le32 reserved;
3851         __u8 mac_addr[6];
3852         __u8 encr_type;
3853
3854 } __packed;
3855
3856 struct mwl8k_cmd_set_key {
3857         struct mwl8k_cmd_pkt header;
3858
3859         __le32 action;
3860         __le32 reserved;
3861         __le16 length;
3862         __le16 key_type_id;
3863         __le32 key_info;
3864         __le32 key_id;
3865         __le16 key_len;
3866         __u8 key_material[MAX_ENCR_KEY_LENGTH];
3867         __u8 tkip_tx_mic_key[MIC_KEY_LENGTH];
3868         __u8 tkip_rx_mic_key[MIC_KEY_LENGTH];
3869         __le16 tkip_rsc_low;
3870         __le32 tkip_rsc_high;
3871         __le16 tkip_tsc_low;
3872         __le32 tkip_tsc_high;
3873         __u8 mac_addr[6];
3874 } __packed;
3875
3876 enum {
3877         MWL8K_ENCR_ENABLE,
3878         MWL8K_ENCR_SET_KEY,
3879         MWL8K_ENCR_REMOVE_KEY,
3880         MWL8K_ENCR_SET_GROUP_KEY,
3881 };
3882
3883 #define MWL8K_UPDATE_ENCRYPTION_TYPE_WEP        0
3884 #define MWL8K_UPDATE_ENCRYPTION_TYPE_DISABLE    1
3885 #define MWL8K_UPDATE_ENCRYPTION_TYPE_TKIP       4
3886 #define MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED      7
3887 #define MWL8K_UPDATE_ENCRYPTION_TYPE_AES        8
3888
3889 enum {
3890         MWL8K_ALG_WEP,
3891         MWL8K_ALG_TKIP,
3892         MWL8K_ALG_CCMP,
3893 };
3894
3895 #define MWL8K_KEY_FLAG_TXGROUPKEY       0x00000004
3896 #define MWL8K_KEY_FLAG_PAIRWISE         0x00000008
3897 #define MWL8K_KEY_FLAG_TSC_VALID        0x00000040
3898 #define MWL8K_KEY_FLAG_WEP_TXKEY        0x01000000
3899 #define MWL8K_KEY_FLAG_MICKEY_VALID     0x02000000
3900
3901 static int mwl8k_cmd_update_encryption_enable(struct ieee80211_hw *hw,
3902                                               struct ieee80211_vif *vif,
3903                                               u8 *addr,
3904                                               u8 encr_type)
3905 {
3906         struct mwl8k_cmd_update_encryption *cmd;
3907         int rc;
3908
3909         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3910         if (cmd == NULL)
3911                 return -ENOMEM;
3912
3913         cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
3914         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3915         cmd->action = cpu_to_le32(MWL8K_ENCR_ENABLE);
3916         memcpy(cmd->mac_addr, addr, ETH_ALEN);
3917         cmd->encr_type = encr_type;
3918
3919         rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
3920         kfree(cmd);
3921
3922         return rc;
3923 }
3924
3925 static int mwl8k_encryption_set_cmd_info(struct mwl8k_cmd_set_key *cmd,
3926                                                 u8 *addr,
3927                                                 struct ieee80211_key_conf *key)
3928 {
3929         cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
3930         cmd->header.length = cpu_to_le16(sizeof(*cmd));
3931         cmd->length = cpu_to_le16(sizeof(*cmd) -
3932                                 offsetof(struct mwl8k_cmd_set_key, length));
3933         cmd->key_id = cpu_to_le32(key->keyidx);
3934         cmd->key_len = cpu_to_le16(key->keylen);
3935         memcpy(cmd->mac_addr, addr, ETH_ALEN);
3936
3937         switch (key->cipher) {
3938         case WLAN_CIPHER_SUITE_WEP40:
3939         case WLAN_CIPHER_SUITE_WEP104:
3940                 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_WEP);
3941                 if (key->keyidx == 0)
3942                         cmd->key_info = cpu_to_le32(MWL8K_KEY_FLAG_WEP_TXKEY);
3943
3944                 break;
3945         case WLAN_CIPHER_SUITE_TKIP:
3946                 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_TKIP);
3947                 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
3948                         ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
3949                         : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
3950                 cmd->key_info |= cpu_to_le32(MWL8K_KEY_FLAG_MICKEY_VALID
3951                                                 | MWL8K_KEY_FLAG_TSC_VALID);
3952                 break;
3953         case WLAN_CIPHER_SUITE_CCMP:
3954                 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_CCMP);
3955                 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
3956                         ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
3957                         : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
3958                 break;
3959         default:
3960                 return -ENOTSUPP;
3961         }
3962
3963         return 0;
3964 }
3965
3966 static int mwl8k_cmd_encryption_set_key(struct ieee80211_hw *hw,
3967                                                 struct ieee80211_vif *vif,
3968                                                 u8 *addr,
3969                                                 struct ieee80211_key_conf *key)
3970 {
3971         struct mwl8k_cmd_set_key *cmd;
3972         int rc;
3973         int keymlen;
3974         u32 action;
3975         u8 idx;
3976         struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
3977
3978         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3979         if (cmd == NULL)
3980                 return -ENOMEM;
3981
3982         rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
3983         if (rc < 0)
3984                 goto done;
3985
3986         idx = key->keyidx;
3987
3988         if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
3989                 action = MWL8K_ENCR_SET_KEY;
3990         else
3991                 action = MWL8K_ENCR_SET_GROUP_KEY;
3992
3993         switch (key->cipher) {
3994         case WLAN_CIPHER_SUITE_WEP40:
3995         case WLAN_CIPHER_SUITE_WEP104:
3996                 if (!mwl8k_vif->wep_key_conf[idx].enabled) {
3997                         memcpy(mwl8k_vif->wep_key_conf[idx].key, key,
3998                                                 sizeof(*key) + key->keylen);
3999                         mwl8k_vif->wep_key_conf[idx].enabled = 1;
4000                 }
4001
4002                 keymlen = key->keylen;
4003                 action = MWL8K_ENCR_SET_KEY;
4004                 break;
4005         case WLAN_CIPHER_SUITE_TKIP:
4006                 keymlen = MAX_ENCR_KEY_LENGTH + 2 * MIC_KEY_LENGTH;
4007                 break;
4008         case WLAN_CIPHER_SUITE_CCMP:
4009                 keymlen = key->keylen;
4010                 break;
4011         default:
4012                 rc = -ENOTSUPP;
4013                 goto done;
4014         }
4015
4016         memcpy(cmd->key_material, key->key, keymlen);
4017         cmd->action = cpu_to_le32(action);
4018
4019         rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4020 done:
4021         kfree(cmd);
4022
4023         return rc;
4024 }
4025
4026 static int mwl8k_cmd_encryption_remove_key(struct ieee80211_hw *hw,
4027                                                 struct ieee80211_vif *vif,
4028                                                 u8 *addr,
4029                                                 struct ieee80211_key_conf *key)
4030 {
4031         struct mwl8k_cmd_set_key *cmd;
4032         int rc;
4033         struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4034
4035         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4036         if (cmd == NULL)
4037                 return -ENOMEM;
4038
4039         rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4040         if (rc < 0)
4041                 goto done;
4042
4043         if (key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
4044                         WLAN_CIPHER_SUITE_WEP104)
4045                 mwl8k_vif->wep_key_conf[key->keyidx].enabled = 0;
4046
4047         cmd->action = cpu_to_le32(MWL8K_ENCR_REMOVE_KEY);
4048
4049         rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4050 done:
4051         kfree(cmd);
4052
4053         return rc;
4054 }
4055
4056 static int mwl8k_set_key(struct ieee80211_hw *hw,
4057                          enum set_key_cmd cmd_param,
4058                          struct ieee80211_vif *vif,
4059                          struct ieee80211_sta *sta,
4060                          struct ieee80211_key_conf *key)
4061 {
4062         int rc = 0;
4063         u8 encr_type;
4064         u8 *addr;
4065         struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4066
4067         if (vif->type == NL80211_IFTYPE_STATION)
4068                 return -EOPNOTSUPP;
4069
4070         if (sta == NULL)
4071                 addr = hw->wiphy->perm_addr;
4072         else
4073                 addr = sta->addr;
4074
4075         if (cmd_param == SET_KEY) {
4076                 rc = mwl8k_cmd_encryption_set_key(hw, vif, addr, key);
4077                 if (rc)
4078                         goto out;
4079
4080                 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40)
4081                                 || (key->cipher == WLAN_CIPHER_SUITE_WEP104))
4082                         encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_WEP;
4083                 else
4084                         encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED;
4085
4086                 rc = mwl8k_cmd_update_encryption_enable(hw, vif, addr,
4087                                                                 encr_type);
4088                 if (rc)
4089                         goto out;
4090
4091                 mwl8k_vif->is_hw_crypto_enabled = true;
4092
4093         } else {
4094                 rc = mwl8k_cmd_encryption_remove_key(hw, vif, addr, key);
4095
4096                 if (rc)
4097                         goto out;
4098
4099                 mwl8k_vif->is_hw_crypto_enabled = false;
4100
4101         }
4102 out:
4103         return rc;
4104 }
4105
4106 /*
4107  * CMD_UPDATE_STADB.
4108  */
4109 struct ewc_ht_info {
4110         __le16  control1;
4111         __le16  control2;
4112         __le16  control3;
4113 } __packed;
4114
4115 struct peer_capability_info {
4116         /* Peer type - AP vs. STA.  */
4117         __u8    peer_type;
4118
4119         /* Basic 802.11 capabilities from assoc resp.  */
4120         __le16  basic_caps;
4121
4122         /* Set if peer supports 802.11n high throughput (HT).  */
4123         __u8    ht_support;
4124
4125         /* Valid if HT is supported.  */
4126         __le16  ht_caps;
4127         __u8    extended_ht_caps;
4128         struct ewc_ht_info      ewc_info;
4129
4130         /* Legacy rate table. Intersection of our rates and peer rates.  */
4131         __u8    legacy_rates[12];
4132
4133         /* HT rate table. Intersection of our rates and peer rates.  */
4134         __u8    ht_rates[16];
4135         __u8    pad[16];
4136
4137         /* If set, interoperability mode, no proprietary extensions.  */
4138         __u8    interop;
4139         __u8    pad2;
4140         __u8    station_id;
4141         __le16  amsdu_enabled;
4142 } __packed;
4143
4144 struct mwl8k_cmd_update_stadb {
4145         struct mwl8k_cmd_pkt header;
4146
4147         /* See STADB_ACTION_TYPE */
4148         __le32  action;
4149
4150         /* Peer MAC address */
4151         __u8    peer_addr[ETH_ALEN];
4152
4153         __le32  reserved;
4154
4155         /* Peer info - valid during add/update.  */
4156         struct peer_capability_info     peer_info;
4157 } __packed;
4158
4159 #define MWL8K_STA_DB_MODIFY_ENTRY       1
4160 #define MWL8K_STA_DB_DEL_ENTRY          2
4161
4162 /* Peer Entry flags - used to define the type of the peer node */
4163 #define MWL8K_PEER_TYPE_ACCESSPOINT     2
4164
4165 static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw,
4166                                       struct ieee80211_vif *vif,
4167                                       struct ieee80211_sta *sta)
4168 {
4169         struct mwl8k_cmd_update_stadb *cmd;
4170         struct peer_capability_info *p;
4171         u32 rates;
4172         int rc;
4173
4174         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4175         if (cmd == NULL)
4176                 return -ENOMEM;
4177
4178         cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4179         cmd->header.length = cpu_to_le16(sizeof(*cmd));
4180         cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY);
4181         memcpy(cmd->peer_addr, sta->addr, ETH_ALEN);
4182
4183         p = &cmd->peer_info;
4184         p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
4185         p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability);
4186         p->ht_support = sta->ht_cap.ht_supported;
4187         p->ht_caps = cpu_to_le16(sta->ht_cap.cap);
4188         p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) |
4189                 ((sta->ht_cap.ampdu_density & 7) << 2);
4190         if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4191                 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
4192         else
4193                 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4194         legacy_rate_mask_to_array(p->legacy_rates, rates);
4195         memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16);
4196         p->interop = 1;
4197         p->amsdu_enabled = 0;
4198
4199         rc = mwl8k_post_cmd(hw, &cmd->header);
4200         kfree(cmd);
4201
4202         return rc ? rc : p->station_id;
4203 }
4204
4205 static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw,
4206                                       struct ieee80211_vif *vif, u8 *addr)
4207 {
4208         struct mwl8k_cmd_update_stadb *cmd;
4209         int rc;
4210
4211         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4212         if (cmd == NULL)
4213                 return -ENOMEM;
4214
4215         cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4216         cmd->header.length = cpu_to_le16(sizeof(*cmd));
4217         cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY);
4218         memcpy(cmd->peer_addr, addr, ETH_ALEN);
4219
4220         rc = mwl8k_post_cmd(hw, &cmd->header);
4221         kfree(cmd);
4222
4223         return rc;
4224 }
4225
4226
4227 /*
4228  * Interrupt handling.
4229  */
4230 static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
4231 {
4232         struct ieee80211_hw *hw = dev_id;
4233         struct mwl8k_priv *priv = hw->priv;
4234         u32 status;
4235
4236         status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4237         if (!status)
4238                 return IRQ_NONE;
4239
4240         if (status & MWL8K_A2H_INT_TX_DONE) {
4241                 status &= ~MWL8K_A2H_INT_TX_DONE;
4242                 tasklet_schedule(&priv->poll_tx_task);
4243         }
4244
4245         if (status & MWL8K_A2H_INT_RX_READY) {
4246                 status &= ~MWL8K_A2H_INT_RX_READY;
4247                 tasklet_schedule(&priv->poll_rx_task);
4248         }
4249
4250         if (status & MWL8K_A2H_INT_BA_WATCHDOG) {
4251                 status &= ~MWL8K_A2H_INT_BA_WATCHDOG;
4252                 ieee80211_queue_work(hw, &priv->watchdog_ba_handle);
4253         }
4254
4255         if (status)
4256                 iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4257
4258         if (status & MWL8K_A2H_INT_OPC_DONE) {
4259                 if (priv->hostcmd_wait != NULL)
4260                         complete(priv->hostcmd_wait);
4261         }
4262
4263         if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
4264                 if (!mutex_is_locked(&priv->fw_mutex) &&
4265                     priv->radio_on && priv->pending_tx_pkts)
4266                         mwl8k_tx_start(priv);
4267         }
4268
4269         return IRQ_HANDLED;
4270 }
4271
4272 static void mwl8k_tx_poll(unsigned long data)
4273 {
4274         struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4275         struct mwl8k_priv *priv = hw->priv;
4276         int limit;
4277         int i;
4278
4279         limit = 32;
4280
4281         spin_lock_bh(&priv->tx_lock);
4282
4283         for (i = 0; i < mwl8k_tx_queues(priv); i++)
4284                 limit -= mwl8k_txq_reclaim(hw, i, limit, 0);
4285
4286         if (!priv->pending_tx_pkts && priv->tx_wait != NULL) {
4287                 complete(priv->tx_wait);
4288                 priv->tx_wait = NULL;
4289         }
4290
4291         spin_unlock_bh(&priv->tx_lock);
4292
4293         if (limit) {
4294                 writel(~MWL8K_A2H_INT_TX_DONE,
4295                        priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4296         } else {
4297                 tasklet_schedule(&priv->poll_tx_task);
4298         }
4299 }
4300
4301 static void mwl8k_rx_poll(unsigned long data)
4302 {
4303         struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4304         struct mwl8k_priv *priv = hw->priv;
4305         int limit;
4306
4307         limit = 32;
4308         limit -= rxq_process(hw, 0, limit);
4309         limit -= rxq_refill(hw, 0, limit);
4310
4311         if (limit) {
4312                 writel(~MWL8K_A2H_INT_RX_READY,
4313                        priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4314         } else {
4315                 tasklet_schedule(&priv->poll_rx_task);
4316         }
4317 }
4318
4319
4320 /*
4321  * Core driver operations.
4322  */
4323 static void mwl8k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
4324 {
4325         struct mwl8k_priv *priv = hw->priv;
4326         int index = skb_get_queue_mapping(skb);
4327
4328         if (!priv->radio_on) {
4329                 wiphy_debug(hw->wiphy,
4330                             "dropped TX frame since radio disabled\n");
4331                 dev_kfree_skb(skb);
4332                 return;
4333         }
4334
4335         mwl8k_txq_xmit(hw, index, skb);
4336 }
4337
4338 static int mwl8k_start(struct ieee80211_hw *hw)
4339 {
4340         struct mwl8k_priv *priv = hw->priv;
4341         int rc;
4342
4343         rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
4344                          IRQF_SHARED, MWL8K_NAME, hw);
4345         if (rc) {
4346                 priv->irq = -1;
4347                 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
4348                 return -EIO;
4349         }
4350         priv->irq = priv->pdev->irq;
4351
4352         /* Enable TX reclaim and RX tasklets.  */
4353         tasklet_enable(&priv->poll_tx_task);
4354         tasklet_enable(&priv->poll_rx_task);
4355
4356         /* Enable interrupts */
4357         iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
4358         iowrite32(MWL8K_A2H_EVENTS,
4359                   priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
4360
4361         rc = mwl8k_fw_lock(hw);
4362         if (!rc) {
4363                 rc = mwl8k_cmd_radio_enable(hw);
4364
4365                 if (!priv->ap_fw) {
4366                         if (!rc)
4367                                 rc = mwl8k_cmd_enable_sniffer(hw, 0);
4368
4369                         if (!rc)
4370                                 rc = mwl8k_cmd_set_pre_scan(hw);
4371
4372                         if (!rc)
4373                                 rc = mwl8k_cmd_set_post_scan(hw,
4374                                                 "\x00\x00\x00\x00\x00\x00");
4375                 }
4376
4377                 if (!rc)
4378                         rc = mwl8k_cmd_set_rateadapt_mode(hw, 0);
4379
4380                 if (!rc)
4381                         rc = mwl8k_cmd_set_wmm_mode(hw, 0);
4382
4383                 mwl8k_fw_unlock(hw);
4384         }
4385
4386         if (rc) {
4387                 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
4388                 free_irq(priv->pdev->irq, hw);
4389                 priv->irq = -1;
4390                 tasklet_disable(&priv->poll_tx_task);
4391                 tasklet_disable(&priv->poll_rx_task);
4392         }
4393
4394         return rc;
4395 }
4396
4397 static void mwl8k_stop(struct ieee80211_hw *hw)
4398 {
4399         struct mwl8k_priv *priv = hw->priv;
4400         int i;
4401
4402         mwl8k_cmd_radio_disable(hw);
4403
4404         ieee80211_stop_queues(hw);
4405
4406         /* Disable interrupts */
4407         iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
4408         if (priv->irq != -1) {
4409                 free_irq(priv->pdev->irq, hw);
4410                 priv->irq = -1;
4411         }
4412
4413         /* Stop finalize join worker */
4414         cancel_work_sync(&priv->finalize_join_worker);
4415         cancel_work_sync(&priv->watchdog_ba_handle);
4416         if (priv->beacon_skb != NULL)
4417                 dev_kfree_skb(priv->beacon_skb);
4418
4419         /* Stop TX reclaim and RX tasklets.  */
4420         tasklet_disable(&priv->poll_tx_task);
4421         tasklet_disable(&priv->poll_rx_task);
4422
4423         /* Return all skbs to mac80211 */
4424         for (i = 0; i < mwl8k_tx_queues(priv); i++)
4425                 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
4426 }
4427
4428 static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image);
4429
4430 static int mwl8k_add_interface(struct ieee80211_hw *hw,
4431                                struct ieee80211_vif *vif)
4432 {
4433         struct mwl8k_priv *priv = hw->priv;
4434         struct mwl8k_vif *mwl8k_vif;
4435         u32 macids_supported;
4436         int macid, rc;
4437         struct mwl8k_device_info *di;
4438
4439         /*
4440          * Reject interface creation if sniffer mode is active, as
4441          * STA operation is mutually exclusive with hardware sniffer
4442          * mode.  (Sniffer mode is only used on STA firmware.)
4443          */
4444         if (priv->sniffer_enabled) {
4445                 wiphy_info(hw->wiphy,
4446                            "unable to create STA interface because sniffer mode is enabled\n");
4447                 return -EINVAL;
4448         }
4449
4450         di = priv->device_info;
4451         switch (vif->type) {
4452         case NL80211_IFTYPE_AP:
4453                 if (!priv->ap_fw && di->fw_image_ap) {
4454                         /* we must load the ap fw to meet this request */
4455                         if (!list_empty(&priv->vif_list))
4456                                 return -EBUSY;
4457                         rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4458                         if (rc)
4459                                 return rc;
4460                 }
4461                 macids_supported = priv->ap_macids_supported;
4462                 break;
4463         case NL80211_IFTYPE_STATION:
4464                 if (priv->ap_fw && di->fw_image_sta) {
4465                         /* we must load the sta fw to meet this request */
4466                         if (!list_empty(&priv->vif_list))
4467                                 return -EBUSY;
4468                         rc = mwl8k_reload_firmware(hw, di->fw_image_sta);
4469                         if (rc)
4470                                 return rc;
4471                 }
4472                 macids_supported = priv->sta_macids_supported;
4473                 break;
4474         default:
4475                 return -EINVAL;
4476         }
4477
4478         macid = ffs(macids_supported & ~priv->macids_used);
4479         if (!macid--)
4480                 return -EBUSY;
4481
4482         /* Setup driver private area. */
4483         mwl8k_vif = MWL8K_VIF(vif);
4484         memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
4485         mwl8k_vif->vif = vif;
4486         mwl8k_vif->macid = macid;
4487         mwl8k_vif->seqno = 0;
4488         memcpy(mwl8k_vif->bssid, vif->addr, ETH_ALEN);
4489         mwl8k_vif->is_hw_crypto_enabled = false;
4490
4491         /* Set the mac address.  */
4492         mwl8k_cmd_set_mac_addr(hw, vif, vif->addr);
4493
4494         if (priv->ap_fw)
4495                 mwl8k_cmd_set_new_stn_add_self(hw, vif);
4496
4497         priv->macids_used |= 1 << mwl8k_vif->macid;
4498         list_add_tail(&mwl8k_vif->list, &priv->vif_list);
4499
4500         return 0;
4501 }
4502
4503 static void mwl8k_remove_interface(struct ieee80211_hw *hw,
4504                                    struct ieee80211_vif *vif)
4505 {
4506         struct mwl8k_priv *priv = hw->priv;
4507         struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4508
4509         if (priv->ap_fw)
4510                 mwl8k_cmd_set_new_stn_del(hw, vif, vif->addr);
4511
4512         mwl8k_cmd_set_mac_addr(hw, vif, "\x00\x00\x00\x00\x00\x00");
4513
4514         priv->macids_used &= ~(1 << mwl8k_vif->macid);
4515         list_del(&mwl8k_vif->list);
4516 }
4517
4518 static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
4519 {
4520         struct ieee80211_conf *conf = &hw->conf;
4521         struct mwl8k_priv *priv = hw->priv;
4522         int rc;
4523
4524         if (conf->flags & IEEE80211_CONF_IDLE) {
4525                 mwl8k_cmd_radio_disable(hw);
4526                 return 0;
4527         }
4528
4529         rc = mwl8k_fw_lock(hw);
4530         if (rc)
4531                 return rc;
4532
4533         rc = mwl8k_cmd_radio_enable(hw);
4534         if (rc)
4535                 goto out;
4536
4537         rc = mwl8k_cmd_set_rf_channel(hw, conf);
4538         if (rc)
4539                 goto out;
4540
4541         if (conf->power_level > 18)
4542                 conf->power_level = 18;
4543
4544         if (priv->ap_fw) {
4545
4546                 if (conf->flags & IEEE80211_CONF_CHANGE_POWER) {
4547                         rc = mwl8k_cmd_tx_power(hw, conf, conf->power_level);
4548                         if (rc)
4549                                 goto out;
4550                 }
4551
4552                 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x3);
4553                 if (rc)
4554                         wiphy_warn(hw->wiphy, "failed to set # of RX antennas");
4555                 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7);
4556                 if (rc)
4557                         wiphy_warn(hw->wiphy, "failed to set # of TX antennas");
4558
4559         } else {
4560                 rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level);
4561                 if (rc)
4562                         goto out;
4563                 rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7);
4564         }
4565
4566 out:
4567         mwl8k_fw_unlock(hw);
4568
4569         return rc;
4570 }
4571
4572 static void
4573 mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4574                            struct ieee80211_bss_conf *info, u32 changed)
4575 {
4576         struct mwl8k_priv *priv = hw->priv;
4577         u32 ap_legacy_rates = 0;
4578         u8 ap_mcs_rates[16];
4579         int rc;
4580
4581         if (mwl8k_fw_lock(hw))
4582                 return;
4583
4584         /*
4585          * No need to capture a beacon if we're no longer associated.
4586          */
4587         if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc)
4588                 priv->capture_beacon = false;
4589
4590         /*
4591          * Get the AP's legacy and MCS rates.
4592          */
4593         if (vif->bss_conf.assoc) {
4594                 struct ieee80211_sta *ap;
4595
4596                 rcu_read_lock();
4597
4598                 ap = ieee80211_find_sta(vif, vif->bss_conf.bssid);
4599                 if (ap == NULL) {
4600                         rcu_read_unlock();
4601                         goto out;
4602                 }
4603
4604                 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) {
4605                         ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ];
4606                 } else {
4607                         ap_legacy_rates =
4608                                 ap->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4609                 }
4610                 memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16);
4611
4612                 rcu_read_unlock();
4613         }
4614
4615         if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc) {
4616                 rc = mwl8k_cmd_set_rate(hw, vif, ap_legacy_rates, ap_mcs_rates);
4617                 if (rc)
4618                         goto out;
4619
4620                 rc = mwl8k_cmd_use_fixed_rate_sta(hw);
4621                 if (rc)
4622                         goto out;
4623         }
4624
4625         if (changed & BSS_CHANGED_ERP_PREAMBLE) {
4626                 rc = mwl8k_set_radio_preamble(hw,
4627                                 vif->bss_conf.use_short_preamble);
4628                 if (rc)
4629                         goto out;
4630         }
4631
4632         if (changed & BSS_CHANGED_ERP_SLOT) {
4633                 rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot);
4634                 if (rc)
4635                         goto out;
4636         }
4637
4638         if (vif->bss_conf.assoc &&
4639             (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_ERP_CTS_PROT |
4640                         BSS_CHANGED_HT))) {
4641                 rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates);
4642                 if (rc)
4643                         goto out;
4644         }
4645
4646         if (vif->bss_conf.assoc &&
4647             (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) {
4648                 /*
4649                  * Finalize the join.  Tell rx handler to process
4650                  * next beacon from our BSSID.
4651                  */
4652                 memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN);
4653                 priv->capture_beacon = true;
4654         }
4655
4656 out:
4657         mwl8k_fw_unlock(hw);
4658 }
4659
4660 static void
4661 mwl8k_bss_info_changed_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4662                           struct ieee80211_bss_conf *info, u32 changed)
4663 {
4664         int rc;
4665
4666         if (mwl8k_fw_lock(hw))
4667                 return;
4668
4669         if (changed & BSS_CHANGED_ERP_PREAMBLE) {
4670                 rc = mwl8k_set_radio_preamble(hw,
4671                                 vif->bss_conf.use_short_preamble);
4672                 if (rc)
4673                         goto out;
4674         }
4675
4676         if (changed & BSS_CHANGED_BASIC_RATES) {
4677                 int idx;
4678                 int rate;
4679
4680                 /*
4681                  * Use lowest supported basic rate for multicasts
4682                  * and management frames (such as probe responses --
4683                  * beacons will always go out at 1 Mb/s).
4684                  */
4685                 idx = ffs(vif->bss_conf.basic_rates);
4686                 if (idx)
4687                         idx--;
4688
4689                 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4690                         rate = mwl8k_rates_24[idx].hw_value;
4691                 else
4692                         rate = mwl8k_rates_50[idx].hw_value;
4693
4694                 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
4695         }
4696
4697         if (changed & (BSS_CHANGED_BEACON_INT | BSS_CHANGED_BEACON)) {
4698                 struct sk_buff *skb;
4699
4700                 skb = ieee80211_beacon_get(hw, vif);
4701                 if (skb != NULL) {
4702                         mwl8k_cmd_set_beacon(hw, vif, skb->data, skb->len);
4703                         kfree_skb(skb);
4704                 }
4705         }
4706
4707         if (changed & BSS_CHANGED_BEACON_ENABLED)
4708                 mwl8k_cmd_bss_start(hw, vif, info->enable_beacon);
4709
4710 out:
4711         mwl8k_fw_unlock(hw);
4712 }
4713
4714 static void
4715 mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4716                        struct ieee80211_bss_conf *info, u32 changed)
4717 {
4718         struct mwl8k_priv *priv = hw->priv;
4719
4720         if (!priv->ap_fw)
4721                 mwl8k_bss_info_changed_sta(hw, vif, info, changed);
4722         else
4723                 mwl8k_bss_info_changed_ap(hw, vif, info, changed);
4724 }
4725
4726 static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw,
4727                                    struct netdev_hw_addr_list *mc_list)
4728 {
4729         struct mwl8k_cmd_pkt *cmd;
4730
4731         /*
4732          * Synthesize and return a command packet that programs the
4733          * hardware multicast address filter.  At this point we don't
4734          * know whether FIF_ALLMULTI is being requested, but if it is,
4735          * we'll end up throwing this packet away and creating a new
4736          * one in mwl8k_configure_filter().
4737          */
4738         cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_list);
4739
4740         return (unsigned long)cmd;
4741 }
4742
4743 static int
4744 mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw,
4745                                unsigned int changed_flags,
4746                                unsigned int *total_flags)
4747 {
4748         struct mwl8k_priv *priv = hw->priv;
4749
4750         /*
4751          * Hardware sniffer mode is mutually exclusive with STA
4752          * operation, so refuse to enable sniffer mode if a STA
4753          * interface is active.
4754          */
4755         if (!list_empty(&priv->vif_list)) {
4756                 if (net_ratelimit())
4757                         wiphy_info(hw->wiphy,
4758                                    "not enabling sniffer mode because STA interface is active\n");
4759                 return 0;
4760         }
4761
4762         if (!priv->sniffer_enabled) {
4763                 if (mwl8k_cmd_enable_sniffer(hw, 1))
4764                         return 0;
4765                 priv->sniffer_enabled = true;
4766         }
4767
4768         *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI |
4769                         FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL |
4770                         FIF_OTHER_BSS;
4771
4772         return 1;
4773 }
4774
4775 static struct mwl8k_vif *mwl8k_first_vif(struct mwl8k_priv *priv)
4776 {
4777         if (!list_empty(&priv->vif_list))
4778                 return list_entry(priv->vif_list.next, struct mwl8k_vif, list);
4779
4780         return NULL;
4781 }
4782
4783 static void mwl8k_configure_filter(struct ieee80211_hw *hw,
4784                                    unsigned int changed_flags,
4785                                    unsigned int *total_flags,
4786                                    u64 multicast)
4787 {
4788         struct mwl8k_priv *priv = hw->priv;
4789         struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast;
4790
4791         /*
4792          * AP firmware doesn't allow fine-grained control over
4793          * the receive filter.
4794          */
4795         if (priv->ap_fw) {
4796                 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
4797                 kfree(cmd);
4798                 return;
4799         }
4800
4801         /*
4802          * Enable hardware sniffer mode if FIF_CONTROL or
4803          * FIF_OTHER_BSS is requested.
4804          */
4805         if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) &&
4806             mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) {
4807                 kfree(cmd);
4808                 return;
4809         }
4810
4811         /* Clear unsupported feature flags */
4812         *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
4813
4814         if (mwl8k_fw_lock(hw)) {
4815                 kfree(cmd);
4816                 return;
4817         }
4818
4819         if (priv->sniffer_enabled) {
4820                 mwl8k_cmd_enable_sniffer(hw, 0);
4821                 priv->sniffer_enabled = false;
4822         }
4823
4824         if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
4825                 if (*total_flags & FIF_BCN_PRBRESP_PROMISC) {
4826                         /*
4827                          * Disable the BSS filter.
4828                          */
4829                         mwl8k_cmd_set_pre_scan(hw);
4830                 } else {
4831                         struct mwl8k_vif *mwl8k_vif;
4832                         const u8 *bssid;
4833
4834                         /*
4835                          * Enable the BSS filter.
4836                          *
4837                          * If there is an active STA interface, use that
4838                          * interface's BSSID, otherwise use a dummy one
4839                          * (where the OUI part needs to be nonzero for
4840                          * the BSSID to be accepted by POST_SCAN).
4841                          */
4842                         mwl8k_vif = mwl8k_first_vif(priv);
4843                         if (mwl8k_vif != NULL)
4844                                 bssid = mwl8k_vif->vif->bss_conf.bssid;
4845                         else
4846                                 bssid = "\x01\x00\x00\x00\x00\x00";
4847
4848                         mwl8k_cmd_set_post_scan(hw, bssid);
4849                 }
4850         }
4851
4852         /*
4853          * If FIF_ALLMULTI is being requested, throw away the command
4854          * packet that ->prepare_multicast() built and replace it with
4855          * a command packet that enables reception of all multicast
4856          * packets.
4857          */
4858         if (*total_flags & FIF_ALLMULTI) {
4859                 kfree(cmd);
4860                 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, NULL);
4861         }
4862
4863         if (cmd != NULL) {
4864                 mwl8k_post_cmd(hw, cmd);
4865                 kfree(cmd);
4866         }
4867
4868         mwl8k_fw_unlock(hw);
4869 }
4870
4871 static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
4872 {
4873         return mwl8k_cmd_set_rts_threshold(hw, value);
4874 }
4875
4876 static int mwl8k_sta_remove(struct ieee80211_hw *hw,
4877                             struct ieee80211_vif *vif,
4878                             struct ieee80211_sta *sta)
4879 {
4880         struct mwl8k_priv *priv = hw->priv;
4881
4882         if (priv->ap_fw)
4883                 return mwl8k_cmd_set_new_stn_del(hw, vif, sta->addr);
4884         else
4885                 return mwl8k_cmd_update_stadb_del(hw, vif, sta->addr);
4886 }
4887
4888 static int mwl8k_sta_add(struct ieee80211_hw *hw,
4889                          struct ieee80211_vif *vif,
4890                          struct ieee80211_sta *sta)
4891 {
4892         struct mwl8k_priv *priv = hw->priv;
4893         int ret;
4894         int i;
4895         struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4896         struct ieee80211_key_conf *key;
4897
4898         if (!priv->ap_fw) {
4899                 ret = mwl8k_cmd_update_stadb_add(hw, vif, sta);
4900                 if (ret >= 0) {
4901                         MWL8K_STA(sta)->peer_id = ret;
4902                         if (sta->ht_cap.ht_supported)
4903                                 MWL8K_STA(sta)->is_ampdu_allowed = true;
4904                         ret = 0;
4905                 }
4906
4907         } else {
4908                 ret = mwl8k_cmd_set_new_stn_add(hw, vif, sta);
4909         }
4910
4911         for (i = 0; i < NUM_WEP_KEYS; i++) {
4912                 key = IEEE80211_KEY_CONF(mwl8k_vif->wep_key_conf[i].key);
4913                 if (mwl8k_vif->wep_key_conf[i].enabled)
4914                         mwl8k_set_key(hw, SET_KEY, vif, sta, key);
4915         }
4916         return ret;
4917 }
4918
4919 static int mwl8k_conf_tx(struct ieee80211_hw *hw, u16 queue,
4920                          const struct ieee80211_tx_queue_params *params)
4921 {
4922         struct mwl8k_priv *priv = hw->priv;
4923         int rc;
4924
4925         rc = mwl8k_fw_lock(hw);
4926         if (!rc) {
4927                 BUG_ON(queue > MWL8K_TX_WMM_QUEUES - 1);
4928                 memcpy(&priv->wmm_params[queue], params, sizeof(*params));
4929
4930                 if (!priv->wmm_enabled)
4931                         rc = mwl8k_cmd_set_wmm_mode(hw, 1);
4932
4933                 if (!rc) {
4934                         int q = MWL8K_TX_WMM_QUEUES - 1 - queue;
4935                         rc = mwl8k_cmd_set_edca_params(hw, q,
4936                                                        params->cw_min,
4937                                                        params->cw_max,
4938                                                        params->aifs,
4939                                                        params->txop);
4940                 }
4941
4942                 mwl8k_fw_unlock(hw);
4943         }
4944
4945         return rc;
4946 }
4947
4948 static int mwl8k_get_stats(struct ieee80211_hw *hw,
4949                            struct ieee80211_low_level_stats *stats)
4950 {
4951         return mwl8k_cmd_get_stat(hw, stats);
4952 }
4953
4954 static int mwl8k_get_survey(struct ieee80211_hw *hw, int idx,
4955                                 struct survey_info *survey)
4956 {
4957         struct mwl8k_priv *priv = hw->priv;
4958         struct ieee80211_conf *conf = &hw->conf;
4959
4960         if (idx != 0)
4961                 return -ENOENT;
4962
4963         survey->channel = conf->channel;
4964         survey->filled = SURVEY_INFO_NOISE_DBM;
4965         survey->noise = priv->noise;
4966
4967         return 0;
4968 }
4969
4970 #define MAX_AMPDU_ATTEMPTS 5
4971
4972 static int
4973 mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4974                    enum ieee80211_ampdu_mlme_action action,
4975                    struct ieee80211_sta *sta, u16 tid, u16 *ssn,
4976                    u8 buf_size)
4977 {
4978
4979         int i, rc = 0;
4980         struct mwl8k_priv *priv = hw->priv;
4981         struct mwl8k_ampdu_stream *stream;
4982         u8 *addr = sta->addr;
4983
4984         if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
4985                 return -ENOTSUPP;
4986
4987         spin_lock(&priv->stream_lock);
4988         stream = mwl8k_lookup_stream(hw, addr, tid);
4989
4990         switch (action) {
4991         case IEEE80211_AMPDU_RX_START:
4992         case IEEE80211_AMPDU_RX_STOP:
4993                 break;
4994         case IEEE80211_AMPDU_TX_START:
4995                 /* By the time we get here the hw queues may contain outgoing
4996                  * packets for this RA/TID that are not part of this BA
4997                  * session.  The hw will assign sequence numbers to these
4998                  * packets as they go out.  So if we query the hw for its next
4999                  * sequence number and use that for the SSN here, it may end up
5000                  * being wrong, which will lead to sequence number mismatch at
5001                  * the recipient.  To avoid this, we reset the sequence number
5002                  * to O for the first MPDU in this BA stream.
5003                  */
5004                 *ssn = 0;
5005                 if (stream == NULL) {
5006                         /* This means that somebody outside this driver called
5007                          * ieee80211_start_tx_ba_session.  This is unexpected
5008                          * because we do our own rate control.  Just warn and
5009                          * move on.
5010                          */
5011                         wiphy_warn(hw->wiphy, "Unexpected call to %s.  "
5012                                    "Proceeding anyway.\n", __func__);
5013                         stream = mwl8k_add_stream(hw, sta, tid);
5014                 }
5015                 if (stream == NULL) {
5016                         wiphy_debug(hw->wiphy, "no free AMPDU streams\n");
5017                         rc = -EBUSY;
5018                         break;
5019                 }
5020                 stream->state = AMPDU_STREAM_IN_PROGRESS;
5021
5022                 /* Release the lock before we do the time consuming stuff */
5023                 spin_unlock(&priv->stream_lock);
5024                 for (i = 0; i < MAX_AMPDU_ATTEMPTS; i++) {
5025                         rc = mwl8k_check_ba(hw, stream);
5026
5027                         if (!rc)
5028                                 break;
5029                         /*
5030                          * HW queues take time to be flushed, give them
5031                          * sufficient time
5032                          */
5033
5034                         msleep(1000);
5035                 }
5036                 spin_lock(&priv->stream_lock);
5037                 if (rc) {
5038                         wiphy_err(hw->wiphy, "Stream for tid %d busy after %d"
5039                                 " attempts\n", tid, MAX_AMPDU_ATTEMPTS);
5040                         mwl8k_remove_stream(hw, stream);
5041                         rc = -EBUSY;
5042                         break;
5043                 }
5044                 ieee80211_start_tx_ba_cb_irqsafe(vif, addr, tid);
5045                 break;
5046         case IEEE80211_AMPDU_TX_STOP:
5047                 if (stream == NULL)
5048                         break;
5049                 if (stream->state == AMPDU_STREAM_ACTIVE) {
5050                         spin_unlock(&priv->stream_lock);
5051                         mwl8k_destroy_ba(hw, stream);
5052                         spin_lock(&priv->stream_lock);
5053                 }
5054                 mwl8k_remove_stream(hw, stream);
5055                 ieee80211_stop_tx_ba_cb_irqsafe(vif, addr, tid);
5056                 break;
5057         case IEEE80211_AMPDU_TX_OPERATIONAL:
5058                 BUG_ON(stream == NULL);
5059                 BUG_ON(stream->state != AMPDU_STREAM_IN_PROGRESS);
5060                 spin_unlock(&priv->stream_lock);
5061                 rc = mwl8k_create_ba(hw, stream, buf_size);
5062                 spin_lock(&priv->stream_lock);
5063                 if (!rc)
5064                         stream->state = AMPDU_STREAM_ACTIVE;
5065                 else {
5066                         spin_unlock(&priv->stream_lock);
5067                         mwl8k_destroy_ba(hw, stream);
5068                         spin_lock(&priv->stream_lock);
5069                         wiphy_debug(hw->wiphy,
5070                                 "Failed adding stream for sta %pM tid %d\n",
5071                                 addr, tid);
5072                         mwl8k_remove_stream(hw, stream);
5073                 }
5074                 break;
5075
5076         default:
5077                 rc = -ENOTSUPP;
5078         }
5079
5080         spin_unlock(&priv->stream_lock);
5081         return rc;
5082 }
5083
5084 static const struct ieee80211_ops mwl8k_ops = {
5085         .tx                     = mwl8k_tx,
5086         .start                  = mwl8k_start,
5087         .stop                   = mwl8k_stop,
5088         .add_interface          = mwl8k_add_interface,
5089         .remove_interface       = mwl8k_remove_interface,
5090         .config                 = mwl8k_config,
5091         .bss_info_changed       = mwl8k_bss_info_changed,
5092         .prepare_multicast      = mwl8k_prepare_multicast,
5093         .configure_filter       = mwl8k_configure_filter,
5094         .set_key                = mwl8k_set_key,
5095         .set_rts_threshold      = mwl8k_set_rts_threshold,
5096         .sta_add                = mwl8k_sta_add,
5097         .sta_remove             = mwl8k_sta_remove,
5098         .conf_tx                = mwl8k_conf_tx,
5099         .get_stats              = mwl8k_get_stats,
5100         .get_survey             = mwl8k_get_survey,
5101         .ampdu_action           = mwl8k_ampdu_action,
5102 };
5103
5104 static void mwl8k_finalize_join_worker(struct work_struct *work)
5105 {
5106         struct mwl8k_priv *priv =
5107                 container_of(work, struct mwl8k_priv, finalize_join_worker);
5108         struct sk_buff *skb = priv->beacon_skb;
5109         struct ieee80211_mgmt *mgmt = (void *)skb->data;
5110         int len = skb->len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
5111         const u8 *tim = cfg80211_find_ie(WLAN_EID_TIM,
5112                                          mgmt->u.beacon.variable, len);
5113         int dtim_period = 1;
5114
5115         if (tim && tim[1] >= 2)
5116                 dtim_period = tim[3];
5117
5118         mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len, dtim_period);
5119
5120         dev_kfree_skb(skb);
5121         priv->beacon_skb = NULL;
5122 }
5123
5124 enum {
5125         MWL8363 = 0,
5126         MWL8687,
5127         MWL8366,
5128 };
5129
5130 #define MWL8K_8366_AP_FW_API 2
5131 #define _MWL8K_8366_AP_FW(api) "mwl8k/fmimage_8366_ap-" #api ".fw"
5132 #define MWL8K_8366_AP_FW(api) _MWL8K_8366_AP_FW(api)
5133
5134 static struct mwl8k_device_info mwl8k_info_tbl[] __devinitdata = {
5135         [MWL8363] = {
5136                 .part_name      = "88w8363",
5137                 .helper_image   = "mwl8k/helper_8363.fw",
5138                 .fw_image_sta   = "mwl8k/fmimage_8363.fw",
5139         },
5140         [MWL8687] = {
5141                 .part_name      = "88w8687",
5142                 .helper_image   = "mwl8k/helper_8687.fw",
5143                 .fw_image_sta   = "mwl8k/fmimage_8687.fw",
5144         },
5145         [MWL8366] = {
5146                 .part_name      = "88w8366",
5147                 .helper_image   = "mwl8k/helper_8366.fw",
5148                 .fw_image_sta   = "mwl8k/fmimage_8366.fw",
5149                 .fw_image_ap    = MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API),
5150                 .fw_api_ap      = MWL8K_8366_AP_FW_API,
5151                 .ap_rxd_ops     = &rxd_8366_ap_ops,
5152         },
5153 };
5154
5155 MODULE_FIRMWARE("mwl8k/helper_8363.fw");
5156 MODULE_FIRMWARE("mwl8k/fmimage_8363.fw");
5157 MODULE_FIRMWARE("mwl8k/helper_8687.fw");
5158 MODULE_FIRMWARE("mwl8k/fmimage_8687.fw");
5159 MODULE_FIRMWARE("mwl8k/helper_8366.fw");
5160 MODULE_FIRMWARE("mwl8k/fmimage_8366.fw");
5161 MODULE_FIRMWARE(MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API));
5162
5163 static DEFINE_PCI_DEVICE_TABLE(mwl8k_pci_id_table) = {
5164         { PCI_VDEVICE(MARVELL, 0x2a0a), .driver_data = MWL8363, },
5165         { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, },
5166         { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, },
5167         { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, },
5168         { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, },
5169         { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, },
5170         { PCI_VDEVICE(MARVELL, 0x2a43), .driver_data = MWL8366, },
5171         { },
5172 };
5173 MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table);
5174
5175 static int mwl8k_request_alt_fw(struct mwl8k_priv *priv)
5176 {
5177         int rc;
5178         printk(KERN_ERR "%s: Error requesting preferred fw %s.\n"
5179                "Trying alternative firmware %s\n", pci_name(priv->pdev),
5180                priv->fw_pref, priv->fw_alt);
5181         rc = mwl8k_request_fw(priv, priv->fw_alt, &priv->fw_ucode, true);
5182         if (rc) {
5183                 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5184                        pci_name(priv->pdev), priv->fw_alt);
5185                 return rc;
5186         }
5187         return 0;
5188 }
5189
5190 static int mwl8k_firmware_load_success(struct mwl8k_priv *priv);
5191 static void mwl8k_fw_state_machine(const struct firmware *fw, void *context)
5192 {
5193         struct mwl8k_priv *priv = context;
5194         struct mwl8k_device_info *di = priv->device_info;
5195         int rc;
5196
5197         switch (priv->fw_state) {
5198         case FW_STATE_INIT:
5199                 if (!fw) {
5200                         printk(KERN_ERR "%s: Error requesting helper fw %s\n",
5201                                pci_name(priv->pdev), di->helper_image);
5202                         goto fail;
5203                 }
5204                 priv->fw_helper = fw;
5205                 rc = mwl8k_request_fw(priv, priv->fw_pref, &priv->fw_ucode,
5206                                       true);
5207                 if (rc && priv->fw_alt) {
5208                         rc = mwl8k_request_alt_fw(priv);
5209                         if (rc)
5210                                 goto fail;
5211                         priv->fw_state = FW_STATE_LOADING_ALT;
5212                 } else if (rc)
5213                         goto fail;
5214                 else
5215                         priv->fw_state = FW_STATE_LOADING_PREF;
5216                 break;
5217
5218         case FW_STATE_LOADING_PREF:
5219                 if (!fw) {
5220                         if (priv->fw_alt) {
5221                                 rc = mwl8k_request_alt_fw(priv);
5222                                 if (rc)
5223                                         goto fail;
5224                                 priv->fw_state = FW_STATE_LOADING_ALT;
5225                         } else
5226                                 goto fail;
5227                 } else {
5228                         priv->fw_ucode = fw;
5229                         rc = mwl8k_firmware_load_success(priv);
5230                         if (rc)
5231                                 goto fail;
5232                         else
5233                                 complete(&priv->firmware_loading_complete);
5234                 }
5235                 break;
5236
5237         case FW_STATE_LOADING_ALT:
5238                 if (!fw) {
5239                         printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5240                                pci_name(priv->pdev), di->helper_image);
5241                         goto fail;
5242                 }
5243                 priv->fw_ucode = fw;
5244                 rc = mwl8k_firmware_load_success(priv);
5245                 if (rc)
5246                         goto fail;
5247                 else
5248                         complete(&priv->firmware_loading_complete);
5249                 break;
5250
5251         default:
5252                 printk(KERN_ERR "%s: Unexpected firmware loading state: %d\n",
5253                        MWL8K_NAME, priv->fw_state);
5254                 BUG_ON(1);
5255         }
5256
5257         return;
5258
5259 fail:
5260         priv->fw_state = FW_STATE_ERROR;
5261         complete(&priv->firmware_loading_complete);
5262         device_release_driver(&priv->pdev->dev);
5263         mwl8k_release_firmware(priv);
5264 }
5265
5266 static int mwl8k_init_firmware(struct ieee80211_hw *hw, char *fw_image,
5267                                bool nowait)
5268 {
5269         struct mwl8k_priv *priv = hw->priv;
5270         int rc;
5271
5272         /* Reset firmware and hardware */
5273         mwl8k_hw_reset(priv);
5274
5275         /* Ask userland hotplug daemon for the device firmware */
5276         rc = mwl8k_request_firmware(priv, fw_image, nowait);
5277         if (rc) {
5278                 wiphy_err(hw->wiphy, "Firmware files not found\n");
5279                 return rc;
5280         }
5281
5282         if (nowait)
5283                 return rc;
5284
5285         /* Load firmware into hardware */
5286         rc = mwl8k_load_firmware(hw);
5287         if (rc)
5288                 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5289
5290         /* Reclaim memory once firmware is successfully loaded */
5291         mwl8k_release_firmware(priv);
5292
5293         return rc;
5294 }
5295
5296 static int mwl8k_init_txqs(struct ieee80211_hw *hw)
5297 {
5298         struct mwl8k_priv *priv = hw->priv;
5299         int rc = 0;
5300         int i;
5301
5302         for (i = 0; i < mwl8k_tx_queues(priv); i++) {
5303                 rc = mwl8k_txq_init(hw, i);
5304                 if (rc)
5305                         break;
5306                 if (priv->ap_fw)
5307                         iowrite32(priv->txq[i].txd_dma,
5308                                   priv->sram + priv->txq_offset[i]);
5309         }
5310         return rc;
5311 }
5312
5313 /* initialize hw after successfully loading a firmware image */
5314 static int mwl8k_probe_hw(struct ieee80211_hw *hw)
5315 {
5316         struct mwl8k_priv *priv = hw->priv;
5317         int rc = 0;
5318         int i;
5319
5320         if (priv->ap_fw) {
5321                 priv->rxd_ops = priv->device_info->ap_rxd_ops;
5322                 if (priv->rxd_ops == NULL) {
5323                         wiphy_err(hw->wiphy,
5324                                   "Driver does not have AP firmware image support for this hardware\n");
5325                         goto err_stop_firmware;
5326                 }
5327         } else {
5328                 priv->rxd_ops = &rxd_sta_ops;
5329         }
5330
5331         priv->sniffer_enabled = false;
5332         priv->wmm_enabled = false;
5333         priv->pending_tx_pkts = 0;
5334
5335         rc = mwl8k_rxq_init(hw, 0);
5336         if (rc)
5337                 goto err_stop_firmware;
5338         rxq_refill(hw, 0, INT_MAX);
5339
5340         /* For the sta firmware, we need to know the dma addresses of tx queues
5341          * before sending MWL8K_CMD_GET_HW_SPEC.  So we must initialize them
5342          * prior to issuing this command.  But for the AP case, we learn the
5343          * total number of queues from the result CMD_GET_HW_SPEC, so for this
5344          * case we must initialize the tx queues after.
5345          */
5346         priv->num_ampdu_queues = 0;
5347         if (!priv->ap_fw) {
5348                 rc = mwl8k_init_txqs(hw);
5349                 if (rc)
5350                         goto err_free_queues;
5351         }
5352
5353         iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
5354         iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5355         iowrite32(MWL8K_A2H_INT_TX_DONE|MWL8K_A2H_INT_RX_READY|
5356                   MWL8K_A2H_INT_BA_WATCHDOG,
5357                   priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
5358         iowrite32(MWL8K_A2H_INT_OPC_DONE,
5359                   priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
5360
5361         rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
5362                          IRQF_SHARED, MWL8K_NAME, hw);
5363         if (rc) {
5364                 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
5365                 goto err_free_queues;
5366         }
5367
5368         memset(priv->ampdu, 0, sizeof(priv->ampdu));
5369
5370         /*
5371          * Temporarily enable interrupts.  Initial firmware host
5372          * commands use interrupts and avoid polling.  Disable
5373          * interrupts when done.
5374          */
5375         iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5376
5377         /* Get config data, mac addrs etc */
5378         if (priv->ap_fw) {
5379                 rc = mwl8k_cmd_get_hw_spec_ap(hw);
5380                 if (!rc)
5381                         rc = mwl8k_init_txqs(hw);
5382                 if (!rc)
5383                         rc = mwl8k_cmd_set_hw_spec(hw);
5384         } else {
5385                 rc = mwl8k_cmd_get_hw_spec_sta(hw);
5386         }
5387         if (rc) {
5388                 wiphy_err(hw->wiphy, "Cannot initialise firmware\n");
5389                 goto err_free_irq;
5390         }
5391
5392         /* Turn radio off */
5393         rc = mwl8k_cmd_radio_disable(hw);
5394         if (rc) {
5395                 wiphy_err(hw->wiphy, "Cannot disable\n");
5396                 goto err_free_irq;
5397         }
5398
5399         /* Clear MAC address */
5400         rc = mwl8k_cmd_set_mac_addr(hw, NULL, "\x00\x00\x00\x00\x00\x00");
5401         if (rc) {
5402                 wiphy_err(hw->wiphy, "Cannot clear MAC address\n");
5403                 goto err_free_irq;
5404         }
5405
5406         /* Disable interrupts */
5407         iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5408         free_irq(priv->pdev->irq, hw);
5409
5410         wiphy_info(hw->wiphy, "%s v%d, %pm, %s firmware %u.%u.%u.%u\n",
5411                    priv->device_info->part_name,
5412                    priv->hw_rev, hw->wiphy->perm_addr,
5413                    priv->ap_fw ? "AP" : "STA",
5414                    (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff,
5415                    (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff);
5416
5417         return 0;
5418
5419 err_free_irq:
5420         iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5421         free_irq(priv->pdev->irq, hw);
5422
5423 err_free_queues:
5424         for (i = 0; i < mwl8k_tx_queues(priv); i++)
5425                 mwl8k_txq_deinit(hw, i);
5426         mwl8k_rxq_deinit(hw, 0);
5427
5428 err_stop_firmware:
5429         mwl8k_hw_reset(priv);
5430
5431         return rc;
5432 }
5433
5434 /*
5435  * invoke mwl8k_reload_firmware to change the firmware image after the device
5436  * has already been registered
5437  */
5438 static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image)
5439 {
5440         int i, rc = 0;
5441         struct mwl8k_priv *priv = hw->priv;
5442
5443         mwl8k_stop(hw);
5444         mwl8k_rxq_deinit(hw, 0);
5445
5446         for (i = 0; i < mwl8k_tx_queues(priv); i++)
5447                 mwl8k_txq_deinit(hw, i);
5448
5449         rc = mwl8k_init_firmware(hw, fw_image, false);
5450         if (rc)
5451                 goto fail;
5452
5453         rc = mwl8k_probe_hw(hw);
5454         if (rc)
5455                 goto fail;
5456
5457         rc = mwl8k_start(hw);
5458         if (rc)
5459                 goto fail;
5460
5461         rc = mwl8k_config(hw, ~0);
5462         if (rc)
5463                 goto fail;
5464
5465         for (i = 0; i < MWL8K_TX_WMM_QUEUES; i++) {
5466                 rc = mwl8k_conf_tx(hw, i, &priv->wmm_params[i]);
5467                 if (rc)
5468                         goto fail;
5469         }
5470
5471         return rc;
5472
5473 fail:
5474         printk(KERN_WARNING "mwl8k: Failed to reload firmware image.\n");
5475         return rc;
5476 }
5477
5478 static int mwl8k_firmware_load_success(struct mwl8k_priv *priv)
5479 {
5480         struct ieee80211_hw *hw = priv->hw;
5481         int i, rc;
5482
5483         rc = mwl8k_load_firmware(hw);
5484         mwl8k_release_firmware(priv);
5485         if (rc) {
5486                 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5487                 return rc;
5488         }
5489
5490         /*
5491          * Extra headroom is the size of the required DMA header
5492          * minus the size of the smallest 802.11 frame (CTS frame).
5493          */
5494         hw->extra_tx_headroom =
5495                 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
5496
5497         hw->extra_tx_headroom -= priv->ap_fw ? REDUCED_TX_HEADROOM : 0;
5498
5499         hw->channel_change_time = 10;
5500
5501         hw->queues = MWL8K_TX_WMM_QUEUES;
5502
5503         /* Set rssi values to dBm */
5504         hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_HAS_RATE_CONTROL;
5505         hw->vif_data_size = sizeof(struct mwl8k_vif);
5506         hw->sta_data_size = sizeof(struct mwl8k_sta);
5507
5508         priv->macids_used = 0;
5509         INIT_LIST_HEAD(&priv->vif_list);
5510
5511         /* Set default radio state and preamble */
5512         priv->radio_on = 0;
5513         priv->radio_short_preamble = 0;
5514
5515         /* Finalize join worker */
5516         INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
5517         /* Handle watchdog ba events */
5518         INIT_WORK(&priv->watchdog_ba_handle, mwl8k_watchdog_ba_events);
5519
5520         /* TX reclaim and RX tasklets.  */
5521         tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw);
5522         tasklet_disable(&priv->poll_tx_task);
5523         tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw);
5524         tasklet_disable(&priv->poll_rx_task);
5525
5526         /* Power management cookie */
5527         priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
5528         if (priv->cookie == NULL)
5529                 return -ENOMEM;
5530
5531         mutex_init(&priv->fw_mutex);
5532         priv->fw_mutex_owner = NULL;
5533         priv->fw_mutex_depth = 0;
5534         priv->hostcmd_wait = NULL;
5535
5536         spin_lock_init(&priv->tx_lock);
5537
5538         spin_lock_init(&priv->stream_lock);
5539
5540         priv->tx_wait = NULL;
5541
5542         rc = mwl8k_probe_hw(hw);
5543         if (rc)
5544                 goto err_free_cookie;
5545
5546         hw->wiphy->interface_modes = 0;
5547         if (priv->ap_macids_supported || priv->device_info->fw_image_ap)
5548                 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP);
5549         if (priv->sta_macids_supported || priv->device_info->fw_image_sta)
5550                 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
5551
5552         rc = ieee80211_register_hw(hw);
5553         if (rc) {
5554                 wiphy_err(hw->wiphy, "Cannot register device\n");
5555                 goto err_unprobe_hw;
5556         }
5557
5558         return 0;
5559
5560 err_unprobe_hw:
5561         for (i = 0; i < mwl8k_tx_queues(priv); i++)
5562                 mwl8k_txq_deinit(hw, i);
5563         mwl8k_rxq_deinit(hw, 0);
5564
5565 err_free_cookie:
5566         if (priv->cookie != NULL)
5567                 pci_free_consistent(priv->pdev, 4,
5568                                 priv->cookie, priv->cookie_dma);
5569
5570         return rc;
5571 }
5572 static int __devinit mwl8k_probe(struct pci_dev *pdev,
5573                                  const struct pci_device_id *id)
5574 {
5575         static int printed_version;
5576         struct ieee80211_hw *hw;
5577         struct mwl8k_priv *priv;
5578         struct mwl8k_device_info *di;
5579         int rc;
5580
5581         if (!printed_version) {
5582                 printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION);
5583                 printed_version = 1;
5584         }
5585
5586
5587         rc = pci_enable_device(pdev);
5588         if (rc) {
5589                 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
5590                        MWL8K_NAME);
5591                 return rc;
5592         }
5593
5594         rc = pci_request_regions(pdev, MWL8K_NAME);
5595         if (rc) {
5596                 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
5597                        MWL8K_NAME);
5598                 goto err_disable_device;
5599         }
5600
5601         pci_set_master(pdev);
5602
5603
5604         hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
5605         if (hw == NULL) {
5606                 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
5607                 rc = -ENOMEM;
5608                 goto err_free_reg;
5609         }
5610
5611         SET_IEEE80211_DEV(hw, &pdev->dev);
5612         pci_set_drvdata(pdev, hw);
5613
5614         priv = hw->priv;
5615         priv->hw = hw;
5616         priv->pdev = pdev;
5617         priv->device_info = &mwl8k_info_tbl[id->driver_data];
5618
5619
5620         priv->sram = pci_iomap(pdev, 0, 0x10000);
5621         if (priv->sram == NULL) {
5622                 wiphy_err(hw->wiphy, "Cannot map device SRAM\n");
5623                 goto err_iounmap;
5624         }
5625
5626         /*
5627          * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
5628          * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
5629          */
5630         priv->regs = pci_iomap(pdev, 1, 0x10000);
5631         if (priv->regs == NULL) {
5632                 priv->regs = pci_iomap(pdev, 2, 0x10000);
5633                 if (priv->regs == NULL) {
5634                         wiphy_err(hw->wiphy, "Cannot map device registers\n");
5635                         goto err_iounmap;
5636                 }
5637         }
5638
5639         /*
5640          * Choose the initial fw image depending on user input.  If a second
5641          * image is available, make it the alternative image that will be
5642          * loaded if the first one fails.
5643          */
5644         init_completion(&priv->firmware_loading_complete);
5645         di = priv->device_info;
5646         if (ap_mode_default && di->fw_image_ap) {
5647                 priv->fw_pref = di->fw_image_ap;
5648                 priv->fw_alt = di->fw_image_sta;
5649         } else if (!ap_mode_default && di->fw_image_sta) {
5650                 priv->fw_pref = di->fw_image_sta;
5651                 priv->fw_alt = di->fw_image_ap;
5652         } else if (ap_mode_default && !di->fw_image_ap && di->fw_image_sta) {
5653                 printk(KERN_WARNING "AP fw is unavailable.  Using STA fw.");
5654                 priv->fw_pref = di->fw_image_sta;
5655         } else if (!ap_mode_default && !di->fw_image_sta && di->fw_image_ap) {
5656                 printk(KERN_WARNING "STA fw is unavailable.  Using AP fw.");
5657                 priv->fw_pref = di->fw_image_ap;
5658         }
5659         rc = mwl8k_init_firmware(hw, priv->fw_pref, true);
5660         if (rc)
5661                 goto err_stop_firmware;
5662         return rc;
5663
5664 err_stop_firmware:
5665         mwl8k_hw_reset(priv);
5666
5667 err_iounmap:
5668         if (priv->regs != NULL)
5669                 pci_iounmap(pdev, priv->regs);
5670
5671         if (priv->sram != NULL)
5672                 pci_iounmap(pdev, priv->sram);
5673
5674         pci_set_drvdata(pdev, NULL);
5675         ieee80211_free_hw(hw);
5676
5677 err_free_reg:
5678         pci_release_regions(pdev);
5679
5680 err_disable_device:
5681         pci_disable_device(pdev);
5682
5683         return rc;
5684 }
5685
5686 static void __devexit mwl8k_shutdown(struct pci_dev *pdev)
5687 {
5688         printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__);
5689 }
5690
5691 static void __devexit mwl8k_remove(struct pci_dev *pdev)
5692 {
5693         struct ieee80211_hw *hw = pci_get_drvdata(pdev);
5694         struct mwl8k_priv *priv;
5695         int i;
5696
5697         if (hw == NULL)
5698                 return;
5699         priv = hw->priv;
5700
5701         wait_for_completion(&priv->firmware_loading_complete);
5702
5703         if (priv->fw_state == FW_STATE_ERROR) {
5704                 mwl8k_hw_reset(priv);
5705                 goto unmap;
5706         }
5707
5708         ieee80211_stop_queues(hw);
5709
5710         ieee80211_unregister_hw(hw);
5711
5712         /* Remove TX reclaim and RX tasklets.  */
5713         tasklet_kill(&priv->poll_tx_task);
5714         tasklet_kill(&priv->poll_rx_task);
5715
5716         /* Stop hardware */
5717         mwl8k_hw_reset(priv);
5718
5719         /* Return all skbs to mac80211 */
5720         for (i = 0; i < mwl8k_tx_queues(priv); i++)
5721                 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
5722
5723         for (i = 0; i < mwl8k_tx_queues(priv); i++)
5724                 mwl8k_txq_deinit(hw, i);
5725
5726         mwl8k_rxq_deinit(hw, 0);
5727
5728         pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma);
5729
5730 unmap:
5731         pci_iounmap(pdev, priv->regs);
5732         pci_iounmap(pdev, priv->sram);
5733         pci_set_drvdata(pdev, NULL);
5734         ieee80211_free_hw(hw);
5735         pci_release_regions(pdev);
5736         pci_disable_device(pdev);
5737 }
5738
5739 static struct pci_driver mwl8k_driver = {
5740         .name           = MWL8K_NAME,
5741         .id_table       = mwl8k_pci_id_table,
5742         .probe          = mwl8k_probe,
5743         .remove         = __devexit_p(mwl8k_remove),
5744         .shutdown       = __devexit_p(mwl8k_shutdown),
5745 };
5746
5747 static int __init mwl8k_init(void)
5748 {
5749         return pci_register_driver(&mwl8k_driver);
5750 }
5751
5752 static void __exit mwl8k_exit(void)
5753 {
5754         pci_unregister_driver(&mwl8k_driver);
5755 }
5756
5757 module_init(mwl8k_init);
5758 module_exit(mwl8k_exit);
5759
5760 MODULE_DESCRIPTION(MWL8K_DESC);
5761 MODULE_VERSION(MWL8K_VERSION);
5762 MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
5763 MODULE_LICENSE("GPL");