2 * drivers/net/wireless/mwl8k.c
3 * Driver for Marvell TOPDOG 802.11 Wireless cards
5 * Copyright (C) 2008, 2009, 2010 Marvell Semiconductor Inc.
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.
12 #include <linux/interrupt.h>
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/sched.h>
16 #include <linux/spinlock.h>
17 #include <linux/list.h>
18 #include <linux/pci.h>
19 #include <linux/delay.h>
20 #include <linux/completion.h>
21 #include <linux/etherdevice.h>
22 #include <linux/slab.h>
23 #include <net/mac80211.h>
24 #include <linux/moduleparam.h>
25 #include <linux/firmware.h>
26 #include <linux/workqueue.h>
28 #define MWL8K_DESC "Marvell TOPDOG(R) 802.11 Wireless Network Driver"
29 #define MWL8K_NAME KBUILD_MODNAME
30 #define MWL8K_VERSION "0.13"
32 /* Module parameters */
33 static bool ap_mode_default
;
34 module_param(ap_mode_default
, bool, 0);
35 MODULE_PARM_DESC(ap_mode_default
,
36 "Set to 1 to make ap mode the default instead of sta mode");
38 /* Register definitions */
39 #define MWL8K_HIU_GEN_PTR 0x00000c10
40 #define MWL8K_MODE_STA 0x0000005a
41 #define MWL8K_MODE_AP 0x000000a5
42 #define MWL8K_HIU_INT_CODE 0x00000c14
43 #define MWL8K_FWSTA_READY 0xf0f1f2f4
44 #define MWL8K_FWAP_READY 0xf1f2f4a5
45 #define MWL8K_INT_CODE_CMD_FINISHED 0x00000005
46 #define MWL8K_HIU_SCRATCH 0x00000c40
48 /* Host->device communications */
49 #define MWL8K_HIU_H2A_INTERRUPT_EVENTS 0x00000c18
50 #define MWL8K_HIU_H2A_INTERRUPT_STATUS 0x00000c1c
51 #define MWL8K_HIU_H2A_INTERRUPT_MASK 0x00000c20
52 #define MWL8K_HIU_H2A_INTERRUPT_CLEAR_SEL 0x00000c24
53 #define MWL8K_HIU_H2A_INTERRUPT_STATUS_MASK 0x00000c28
54 #define MWL8K_H2A_INT_DUMMY (1 << 20)
55 #define MWL8K_H2A_INT_RESET (1 << 15)
56 #define MWL8K_H2A_INT_DOORBELL (1 << 1)
57 #define MWL8K_H2A_INT_PPA_READY (1 << 0)
59 /* Device->host communications */
60 #define MWL8K_HIU_A2H_INTERRUPT_EVENTS 0x00000c2c
61 #define MWL8K_HIU_A2H_INTERRUPT_STATUS 0x00000c30
62 #define MWL8K_HIU_A2H_INTERRUPT_MASK 0x00000c34
63 #define MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL 0x00000c38
64 #define MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK 0x00000c3c
65 #define MWL8K_A2H_INT_DUMMY (1 << 20)
66 #define MWL8K_A2H_INT_BA_WATCHDOG (1 << 14)
67 #define MWL8K_A2H_INT_CHNL_SWITCHED (1 << 11)
68 #define MWL8K_A2H_INT_QUEUE_EMPTY (1 << 10)
69 #define MWL8K_A2H_INT_RADAR_DETECT (1 << 7)
70 #define MWL8K_A2H_INT_RADIO_ON (1 << 6)
71 #define MWL8K_A2H_INT_RADIO_OFF (1 << 5)
72 #define MWL8K_A2H_INT_MAC_EVENT (1 << 3)
73 #define MWL8K_A2H_INT_OPC_DONE (1 << 2)
74 #define MWL8K_A2H_INT_RX_READY (1 << 1)
75 #define MWL8K_A2H_INT_TX_DONE (1 << 0)
77 /* HW micro second timer register
78 * located at offset 0xA600. This
79 * will be used to timestamp tx
83 #define MWL8K_HW_TIMER_REGISTER 0x0000a600
84 #define BBU_RXRDY_CNT_REG 0x0000a860
85 #define NOK_CCA_CNT_REG 0x0000a6a0
86 #define BBU_AVG_NOISE_VAL 0x67
88 #define MWL8K_A2H_EVENTS (MWL8K_A2H_INT_DUMMY | \
89 MWL8K_A2H_INT_CHNL_SWITCHED | \
90 MWL8K_A2H_INT_QUEUE_EMPTY | \
91 MWL8K_A2H_INT_RADAR_DETECT | \
92 MWL8K_A2H_INT_RADIO_ON | \
93 MWL8K_A2H_INT_RADIO_OFF | \
94 MWL8K_A2H_INT_MAC_EVENT | \
95 MWL8K_A2H_INT_OPC_DONE | \
96 MWL8K_A2H_INT_RX_READY | \
97 MWL8K_A2H_INT_TX_DONE | \
98 MWL8K_A2H_INT_BA_WATCHDOG)
100 #define MWL8K_RX_QUEUES 1
101 #define MWL8K_TX_WMM_QUEUES 4
102 #define MWL8K_MAX_AMPDU_QUEUES 8
103 #define MWL8K_MAX_TX_QUEUES (MWL8K_TX_WMM_QUEUES + MWL8K_MAX_AMPDU_QUEUES)
104 #define mwl8k_tx_queues(priv) (MWL8K_TX_WMM_QUEUES + (priv)->num_ampdu_queues)
106 /* txpriorities are mapped with hw queues.
107 * Each hw queue has a txpriority.
109 #define TOTAL_HW_TX_QUEUES 8
111 /* Each HW queue can have one AMPDU stream.
112 * But, because one of the hw queue is reserved,
113 * maximum AMPDU queues that can be created are
114 * one short of total tx queues.
116 #define MWL8K_NUM_AMPDU_STREAMS (TOTAL_HW_TX_QUEUES - 1)
118 #define MWL8K_NUM_CHANS 18
122 void (*rxd_init
)(void *rxd
, dma_addr_t next_dma_addr
);
123 void (*rxd_refill
)(void *rxd
, dma_addr_t addr
, int len
);
124 int (*rxd_process
)(void *rxd
, struct ieee80211_rx_status
*status
,
125 __le16
*qos
, s8
*noise
);
128 struct mwl8k_device_info
{
133 struct rxd_ops
*ap_rxd_ops
;
137 struct mwl8k_rx_queue
{
140 /* hw receives here */
143 /* refill descs here */
150 DEFINE_DMA_UNMAP_ADDR(dma
);
154 struct mwl8k_tx_queue
{
155 /* hw transmits here */
158 /* sw appends here */
162 struct mwl8k_tx_desc
*txd
;
164 struct sk_buff
**skb
;
170 AMPDU_STREAM_IN_PROGRESS
,
174 struct mwl8k_ampdu_stream
{
175 struct ieee80211_sta
*sta
;
182 struct ieee80211_hw
*hw
;
183 struct pci_dev
*pdev
;
186 struct mwl8k_device_info
*device_info
;
192 const struct firmware
*fw_helper
;
193 const struct firmware
*fw_ucode
;
195 /* hardware/firmware parameters */
197 struct rxd_ops
*rxd_ops
;
198 struct ieee80211_supported_band band_24
;
199 struct ieee80211_channel channels_24
[14];
200 struct ieee80211_rate rates_24
[13];
201 struct ieee80211_supported_band band_50
;
202 struct ieee80211_channel channels_50
[9];
203 struct ieee80211_rate rates_50
[8];
204 u32 ap_macids_supported
;
205 u32 sta_macids_supported
;
207 /* Ampdu stream information */
209 spinlock_t stream_lock
;
210 struct mwl8k_ampdu_stream ampdu
[MWL8K_MAX_AMPDU_QUEUES
];
211 struct work_struct watchdog_ba_handle
;
213 /* firmware access */
214 struct mutex fw_mutex
;
215 struct task_struct
*fw_mutex_owner
;
216 struct task_struct
*hw_restart_owner
;
218 struct completion
*hostcmd_wait
;
220 atomic_t watchdog_event_pending
;
222 /* lock held over TX and TX reap */
225 /* TX quiesce completion, protected by fw_mutex and tx_lock */
226 struct completion
*tx_wait
;
228 /* List of interfaces. */
230 struct list_head vif_list
;
232 /* power management status cookie from firmware */
234 dma_addr_t cookie_dma
;
242 * Running count of TX packets in flight, to avoid
243 * iterating over the transmit rings each time.
247 struct mwl8k_rx_queue rxq
[MWL8K_RX_QUEUES
];
248 struct mwl8k_tx_queue txq
[MWL8K_MAX_TX_QUEUES
];
249 u32 txq_offset
[MWL8K_MAX_TX_QUEUES
];
252 bool radio_short_preamble
;
253 bool sniffer_enabled
;
256 /* XXX need to convert this to handle multiple interfaces */
258 u8 capture_bssid
[ETH_ALEN
];
259 struct sk_buff
*beacon_skb
;
262 * This FJ worker has to be global as it is scheduled from the
263 * RX handler. At this point we don't know which interface it
264 * belongs to until the list of bssids waiting to complete join
267 struct work_struct finalize_join_worker
;
269 /* Tasklet to perform TX reclaim. */
270 struct tasklet_struct poll_tx_task
;
272 /* Tasklet to perform RX. */
273 struct tasklet_struct poll_rx_task
;
275 /* Most recently reported noise in dBm */
279 * preserve the queue configurations so they can be restored if/when
280 * the firmware image is swapped.
282 struct ieee80211_tx_queue_params wmm_params
[MWL8K_TX_WMM_QUEUES
];
284 /* To perform the task of reloading the firmware */
285 struct work_struct fw_reload
;
286 bool hw_restart_in_progress
;
288 /* async firmware loading state */
293 struct completion firmware_loading_complete
;
295 /* bitmap of running BSSes */
300 struct ieee80211_channel
*acs_chan
;
301 unsigned long channel_time
;
302 struct survey_info survey
[MWL8K_NUM_CHANS
];
305 #define MAX_WEP_KEY_LEN 13
306 #define NUM_WEP_KEYS 4
308 /* Per interface specific private data */
310 struct list_head list
;
311 struct ieee80211_vif
*vif
;
313 /* Firmware macid for this vif. */
316 /* Non AMPDU sequence number assigned by driver. */
322 u8 key
[sizeof(struct ieee80211_key_conf
) + MAX_WEP_KEY_LEN
];
323 } wep_key_conf
[NUM_WEP_KEYS
];
328 /* A flag to indicate is HW crypto is enabled for this bssid */
329 bool is_hw_crypto_enabled
;
331 #define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv))
332 #define IEEE80211_KEY_CONF(_u8) ((struct ieee80211_key_conf *)(_u8))
334 struct tx_traffic_info
{
339 #define MWL8K_MAX_TID 8
341 /* Index into station database. Returned by UPDATE_STADB. */
344 struct tx_traffic_info tx_stats
[MWL8K_MAX_TID
];
346 #define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv))
348 static const struct ieee80211_channel mwl8k_channels_24
[] = {
349 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2412, .hw_value
= 1, },
350 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2417, .hw_value
= 2, },
351 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2422, .hw_value
= 3, },
352 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2427, .hw_value
= 4, },
353 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2432, .hw_value
= 5, },
354 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2437, .hw_value
= 6, },
355 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2442, .hw_value
= 7, },
356 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2447, .hw_value
= 8, },
357 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2452, .hw_value
= 9, },
358 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2457, .hw_value
= 10, },
359 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2462, .hw_value
= 11, },
360 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2467, .hw_value
= 12, },
361 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2472, .hw_value
= 13, },
362 { .band
= NL80211_BAND_2GHZ
, .center_freq
= 2484, .hw_value
= 14, },
365 static const struct ieee80211_rate mwl8k_rates_24
[] = {
366 { .bitrate
= 10, .hw_value
= 2, },
367 { .bitrate
= 20, .hw_value
= 4, },
368 { .bitrate
= 55, .hw_value
= 11, },
369 { .bitrate
= 110, .hw_value
= 22, },
370 { .bitrate
= 220, .hw_value
= 44, },
371 { .bitrate
= 60, .hw_value
= 12, },
372 { .bitrate
= 90, .hw_value
= 18, },
373 { .bitrate
= 120, .hw_value
= 24, },
374 { .bitrate
= 180, .hw_value
= 36, },
375 { .bitrate
= 240, .hw_value
= 48, },
376 { .bitrate
= 360, .hw_value
= 72, },
377 { .bitrate
= 480, .hw_value
= 96, },
378 { .bitrate
= 540, .hw_value
= 108, },
381 static const struct ieee80211_channel mwl8k_channels_50
[] = {
382 { .band
= NL80211_BAND_5GHZ
, .center_freq
= 5180, .hw_value
= 36, },
383 { .band
= NL80211_BAND_5GHZ
, .center_freq
= 5200, .hw_value
= 40, },
384 { .band
= NL80211_BAND_5GHZ
, .center_freq
= 5220, .hw_value
= 44, },
385 { .band
= NL80211_BAND_5GHZ
, .center_freq
= 5240, .hw_value
= 48, },
386 { .band
= NL80211_BAND_5GHZ
, .center_freq
= 5745, .hw_value
= 149, },
387 { .band
= NL80211_BAND_5GHZ
, .center_freq
= 5765, .hw_value
= 153, },
388 { .band
= NL80211_BAND_5GHZ
, .center_freq
= 5785, .hw_value
= 157, },
389 { .band
= NL80211_BAND_5GHZ
, .center_freq
= 5805, .hw_value
= 161, },
390 { .band
= NL80211_BAND_5GHZ
, .center_freq
= 5825, .hw_value
= 165, },
393 static const struct ieee80211_rate mwl8k_rates_50
[] = {
394 { .bitrate
= 60, .hw_value
= 12, },
395 { .bitrate
= 90, .hw_value
= 18, },
396 { .bitrate
= 120, .hw_value
= 24, },
397 { .bitrate
= 180, .hw_value
= 36, },
398 { .bitrate
= 240, .hw_value
= 48, },
399 { .bitrate
= 360, .hw_value
= 72, },
400 { .bitrate
= 480, .hw_value
= 96, },
401 { .bitrate
= 540, .hw_value
= 108, },
404 /* Set or get info from Firmware */
405 #define MWL8K_CMD_GET 0x0000
406 #define MWL8K_CMD_SET 0x0001
407 #define MWL8K_CMD_SET_LIST 0x0002
409 /* Firmware command codes */
410 #define MWL8K_CMD_CODE_DNLD 0x0001
411 #define MWL8K_CMD_GET_HW_SPEC 0x0003
412 #define MWL8K_CMD_SET_HW_SPEC 0x0004
413 #define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010
414 #define MWL8K_CMD_GET_STAT 0x0014
415 #define MWL8K_CMD_BBP_REG_ACCESS 0x001a
416 #define MWL8K_CMD_RADIO_CONTROL 0x001c
417 #define MWL8K_CMD_RF_TX_POWER 0x001e
418 #define MWL8K_CMD_TX_POWER 0x001f
419 #define MWL8K_CMD_RF_ANTENNA 0x0020
420 #define MWL8K_CMD_SET_BEACON 0x0100 /* per-vif */
421 #define MWL8K_CMD_SET_PRE_SCAN 0x0107
422 #define MWL8K_CMD_SET_POST_SCAN 0x0108
423 #define MWL8K_CMD_SET_RF_CHANNEL 0x010a
424 #define MWL8K_CMD_SET_AID 0x010d
425 #define MWL8K_CMD_SET_RATE 0x0110
426 #define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111
427 #define MWL8K_CMD_RTS_THRESHOLD 0x0113
428 #define MWL8K_CMD_SET_SLOT 0x0114
429 #define MWL8K_CMD_SET_EDCA_PARAMS 0x0115
430 #define MWL8K_CMD_SET_WMM_MODE 0x0123
431 #define MWL8K_CMD_MIMO_CONFIG 0x0125
432 #define MWL8K_CMD_USE_FIXED_RATE 0x0126
433 #define MWL8K_CMD_ENABLE_SNIFFER 0x0150
434 #define MWL8K_CMD_SET_MAC_ADDR 0x0202 /* per-vif */
435 #define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203
436 #define MWL8K_CMD_GET_WATCHDOG_BITMAP 0x0205
437 #define MWL8K_CMD_DEL_MAC_ADDR 0x0206 /* per-vif */
438 #define MWL8K_CMD_BSS_START 0x1100 /* per-vif */
439 #define MWL8K_CMD_SET_NEW_STN 0x1111 /* per-vif */
440 #define MWL8K_CMD_UPDATE_ENCRYPTION 0x1122 /* per-vif */
441 #define MWL8K_CMD_UPDATE_STADB 0x1123
442 #define MWL8K_CMD_BASTREAM 0x1125
444 #define MWL8K_LEGACY_5G_RATE_OFFSET \
445 (ARRAY_SIZE(mwl8k_rates_24) - ARRAY_SIZE(mwl8k_rates_50))
447 static const char *mwl8k_cmd_name(__le16 cmd
, char *buf
, int bufsize
)
449 u16 command
= le16_to_cpu(cmd
);
451 #define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\
452 snprintf(buf, bufsize, "%s", #x);\
455 switch (command
& ~0x8000) {
456 MWL8K_CMDNAME(CODE_DNLD
);
457 MWL8K_CMDNAME(GET_HW_SPEC
);
458 MWL8K_CMDNAME(SET_HW_SPEC
);
459 MWL8K_CMDNAME(MAC_MULTICAST_ADR
);
460 MWL8K_CMDNAME(GET_STAT
);
461 MWL8K_CMDNAME(RADIO_CONTROL
);
462 MWL8K_CMDNAME(RF_TX_POWER
);
463 MWL8K_CMDNAME(TX_POWER
);
464 MWL8K_CMDNAME(RF_ANTENNA
);
465 MWL8K_CMDNAME(SET_BEACON
);
466 MWL8K_CMDNAME(SET_PRE_SCAN
);
467 MWL8K_CMDNAME(SET_POST_SCAN
);
468 MWL8K_CMDNAME(SET_RF_CHANNEL
);
469 MWL8K_CMDNAME(SET_AID
);
470 MWL8K_CMDNAME(SET_RATE
);
471 MWL8K_CMDNAME(SET_FINALIZE_JOIN
);
472 MWL8K_CMDNAME(RTS_THRESHOLD
);
473 MWL8K_CMDNAME(SET_SLOT
);
474 MWL8K_CMDNAME(SET_EDCA_PARAMS
);
475 MWL8K_CMDNAME(SET_WMM_MODE
);
476 MWL8K_CMDNAME(MIMO_CONFIG
);
477 MWL8K_CMDNAME(USE_FIXED_RATE
);
478 MWL8K_CMDNAME(ENABLE_SNIFFER
);
479 MWL8K_CMDNAME(SET_MAC_ADDR
);
480 MWL8K_CMDNAME(SET_RATEADAPT_MODE
);
481 MWL8K_CMDNAME(BSS_START
);
482 MWL8K_CMDNAME(SET_NEW_STN
);
483 MWL8K_CMDNAME(UPDATE_ENCRYPTION
);
484 MWL8K_CMDNAME(UPDATE_STADB
);
485 MWL8K_CMDNAME(BASTREAM
);
486 MWL8K_CMDNAME(GET_WATCHDOG_BITMAP
);
488 snprintf(buf
, bufsize
, "0x%x", cmd
);
495 /* Hardware and firmware reset */
496 static void mwl8k_hw_reset(struct mwl8k_priv
*priv
)
498 iowrite32(MWL8K_H2A_INT_RESET
,
499 priv
->regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
500 iowrite32(MWL8K_H2A_INT_RESET
,
501 priv
->regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
505 /* Release fw image */
506 static void mwl8k_release_fw(const struct firmware
**fw
)
510 release_firmware(*fw
);
514 static void mwl8k_release_firmware(struct mwl8k_priv
*priv
)
516 mwl8k_release_fw(&priv
->fw_ucode
);
517 mwl8k_release_fw(&priv
->fw_helper
);
520 /* states for asynchronous f/w loading */
521 static void mwl8k_fw_state_machine(const struct firmware
*fw
, void *context
);
524 FW_STATE_LOADING_PREF
,
525 FW_STATE_LOADING_ALT
,
529 /* Request fw image */
530 static int mwl8k_request_fw(struct mwl8k_priv
*priv
,
531 const char *fname
, const struct firmware
**fw
,
534 /* release current image */
536 mwl8k_release_fw(fw
);
539 return request_firmware_nowait(THIS_MODULE
, 1, fname
,
540 &priv
->pdev
->dev
, GFP_KERNEL
,
541 priv
, mwl8k_fw_state_machine
);
543 return request_firmware(fw
, fname
, &priv
->pdev
->dev
);
546 static int mwl8k_request_firmware(struct mwl8k_priv
*priv
, char *fw_image
,
549 struct mwl8k_device_info
*di
= priv
->device_info
;
552 if (di
->helper_image
!= NULL
) {
554 rc
= mwl8k_request_fw(priv
, di
->helper_image
,
555 &priv
->fw_helper
, true);
557 rc
= mwl8k_request_fw(priv
, di
->helper_image
,
558 &priv
->fw_helper
, false);
560 printk(KERN_ERR
"%s: Error requesting helper fw %s\n",
561 pci_name(priv
->pdev
), di
->helper_image
);
569 * if we get here, no helper image is needed. Skip the
570 * FW_STATE_INIT state.
572 priv
->fw_state
= FW_STATE_LOADING_PREF
;
573 rc
= mwl8k_request_fw(priv
, fw_image
,
577 rc
= mwl8k_request_fw(priv
, fw_image
,
578 &priv
->fw_ucode
, false);
580 printk(KERN_ERR
"%s: Error requesting firmware file %s\n",
581 pci_name(priv
->pdev
), fw_image
);
582 mwl8k_release_fw(&priv
->fw_helper
);
589 struct mwl8k_cmd_pkt
{
602 mwl8k_send_fw_load_cmd(struct mwl8k_priv
*priv
, void *data
, int length
)
604 void __iomem
*regs
= priv
->regs
;
608 dma_addr
= dma_map_single(&priv
->pdev
->dev
, data
, length
,
610 if (dma_mapping_error(&priv
->pdev
->dev
, dma_addr
))
613 iowrite32(dma_addr
, regs
+ MWL8K_HIU_GEN_PTR
);
614 iowrite32(0, regs
+ MWL8K_HIU_INT_CODE
);
615 iowrite32(MWL8K_H2A_INT_DOORBELL
,
616 regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
617 iowrite32(MWL8K_H2A_INT_DUMMY
,
618 regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
624 int_code
= ioread32(regs
+
625 MWL8K_HIU_H2A_INTERRUPT_STATUS
);
629 int_code
= ioread32(regs
+ MWL8K_HIU_INT_CODE
);
630 if (int_code
== MWL8K_INT_CODE_CMD_FINISHED
) {
631 iowrite32(0, regs
+ MWL8K_HIU_INT_CODE
);
639 dma_unmap_single(&priv
->pdev
->dev
, dma_addr
, length
, DMA_TO_DEVICE
);
641 return loops
? 0 : -ETIMEDOUT
;
644 static int mwl8k_load_fw_image(struct mwl8k_priv
*priv
,
645 const u8
*data
, size_t length
)
647 struct mwl8k_cmd_pkt
*cmd
;
651 cmd
= kmalloc(sizeof(*cmd
) + 256, GFP_KERNEL
);
655 cmd
->code
= cpu_to_le16(MWL8K_CMD_CODE_DNLD
);
662 int block_size
= length
> 256 ? 256 : length
;
664 memcpy(cmd
->payload
, data
+ done
, block_size
);
665 cmd
->length
= cpu_to_le16(block_size
);
667 rc
= mwl8k_send_fw_load_cmd(priv
, cmd
,
668 sizeof(*cmd
) + block_size
);
673 length
-= block_size
;
678 rc
= mwl8k_send_fw_load_cmd(priv
, cmd
, sizeof(*cmd
));
686 static int mwl8k_feed_fw_image(struct mwl8k_priv
*priv
,
687 const u8
*data
, size_t length
)
689 unsigned char *buffer
;
690 int may_continue
, rc
= 0;
691 u32 done
, prev_block_size
;
693 buffer
= kmalloc(1024, GFP_KERNEL
);
700 while (may_continue
> 0) {
703 block_size
= ioread32(priv
->regs
+ MWL8K_HIU_SCRATCH
);
704 if (block_size
& 1) {
708 done
+= prev_block_size
;
709 length
-= prev_block_size
;
712 if (block_size
> 1024 || block_size
> length
) {
722 if (block_size
== 0) {
729 prev_block_size
= block_size
;
730 memcpy(buffer
, data
+ done
, block_size
);
732 rc
= mwl8k_send_fw_load_cmd(priv
, buffer
, block_size
);
737 if (!rc
&& length
!= 0)
745 static int mwl8k_load_firmware(struct ieee80211_hw
*hw
)
747 struct mwl8k_priv
*priv
= hw
->priv
;
748 const struct firmware
*fw
= priv
->fw_ucode
;
752 if (!memcmp(fw
->data
, "\x01\x00\x00\x00", 4) && !priv
->is_8764
) {
753 const struct firmware
*helper
= priv
->fw_helper
;
755 if (helper
== NULL
) {
756 printk(KERN_ERR
"%s: helper image needed but none "
757 "given\n", pci_name(priv
->pdev
));
761 rc
= mwl8k_load_fw_image(priv
, helper
->data
, helper
->size
);
763 printk(KERN_ERR
"%s: unable to load firmware "
764 "helper image\n", pci_name(priv
->pdev
));
769 rc
= mwl8k_feed_fw_image(priv
, fw
->data
, fw
->size
);
772 rc
= mwl8k_feed_fw_image(priv
, fw
->data
, fw
->size
);
774 rc
= mwl8k_load_fw_image(priv
, fw
->data
, fw
->size
);
778 printk(KERN_ERR
"%s: unable to load firmware image\n",
779 pci_name(priv
->pdev
));
783 iowrite32(MWL8K_MODE_STA
, priv
->regs
+ MWL8K_HIU_GEN_PTR
);
789 ready_code
= ioread32(priv
->regs
+ MWL8K_HIU_INT_CODE
);
790 if (ready_code
== MWL8K_FWAP_READY
) {
793 } else if (ready_code
== MWL8K_FWSTA_READY
) {
802 return loops
? 0 : -ETIMEDOUT
;
806 /* DMA header used by firmware and hardware. */
807 struct mwl8k_dma_data
{
809 struct ieee80211_hdr wh
;
813 /* Routines to add/remove DMA header from skb. */
814 static inline void mwl8k_remove_dma_header(struct sk_buff
*skb
, __le16 qos
)
816 struct mwl8k_dma_data
*tr
;
819 tr
= (struct mwl8k_dma_data
*)skb
->data
;
820 hdrlen
= ieee80211_hdrlen(tr
->wh
.frame_control
);
822 if (hdrlen
!= sizeof(tr
->wh
)) {
823 if (ieee80211_is_data_qos(tr
->wh
.frame_control
)) {
824 memmove(tr
->data
- hdrlen
, &tr
->wh
, hdrlen
- 2);
825 *((__le16
*)(tr
->data
- 2)) = qos
;
827 memmove(tr
->data
- hdrlen
, &tr
->wh
, hdrlen
);
831 if (hdrlen
!= sizeof(*tr
))
832 skb_pull(skb
, sizeof(*tr
) - hdrlen
);
835 #define REDUCED_TX_HEADROOM 8
838 mwl8k_add_dma_header(struct mwl8k_priv
*priv
, struct sk_buff
*skb
,
839 int head_pad
, int tail_pad
)
841 struct ieee80211_hdr
*wh
;
844 struct mwl8k_dma_data
*tr
;
847 * Add a firmware DMA header; the firmware requires that we
848 * present a 2-byte payload length followed by a 4-address
849 * header (without QoS field), followed (optionally) by any
850 * WEP/ExtIV header (but only filled in for CCMP).
852 wh
= (struct ieee80211_hdr
*)skb
->data
;
854 hdrlen
= ieee80211_hdrlen(wh
->frame_control
);
857 * Check if skb_resize is required because of
858 * tx_headroom adjustment.
860 if (priv
->ap_fw
&& (hdrlen
< (sizeof(struct ieee80211_cts
)
861 + REDUCED_TX_HEADROOM
))) {
862 if (pskb_expand_head(skb
, REDUCED_TX_HEADROOM
, 0, GFP_ATOMIC
)) {
864 wiphy_err(priv
->hw
->wiphy
,
865 "Failed to reallocate TX buffer\n");
868 skb
->truesize
+= REDUCED_TX_HEADROOM
;
871 reqd_hdrlen
= sizeof(*tr
) + head_pad
;
873 if (hdrlen
!= reqd_hdrlen
)
874 skb_push(skb
, reqd_hdrlen
- hdrlen
);
876 if (ieee80211_is_data_qos(wh
->frame_control
))
877 hdrlen
-= IEEE80211_QOS_CTL_LEN
;
879 tr
= (struct mwl8k_dma_data
*)skb
->data
;
881 memmove(&tr
->wh
, wh
, hdrlen
);
882 if (hdrlen
!= sizeof(tr
->wh
))
883 memset(((void *)&tr
->wh
) + hdrlen
, 0, sizeof(tr
->wh
) - hdrlen
);
886 * Firmware length is the length of the fully formed "802.11
887 * payload". That is, everything except for the 802.11 header.
888 * This includes all crypto material including the MIC.
890 tr
->fwlen
= cpu_to_le16(skb
->len
- sizeof(*tr
) + tail_pad
);
893 static void mwl8k_encapsulate_tx_frame(struct mwl8k_priv
*priv
,
896 struct ieee80211_hdr
*wh
;
897 struct ieee80211_tx_info
*tx_info
;
898 struct ieee80211_key_conf
*key_conf
;
902 wh
= (struct ieee80211_hdr
*)skb
->data
;
904 tx_info
= IEEE80211_SKB_CB(skb
);
907 if (ieee80211_is_data(wh
->frame_control
))
908 key_conf
= tx_info
->control
.hw_key
;
911 * Make sure the packet header is in the DMA header format (4-address
912 * without QoS), and add head & tail padding when HW crypto is enabled.
914 * We have the following trailer padding requirements:
915 * - WEP: 4 trailer bytes (ICV)
916 * - TKIP: 12 trailer bytes (8 MIC + 4 ICV)
917 * - CCMP: 8 trailer bytes (MIC)
920 if (key_conf
!= NULL
) {
921 head_pad
= key_conf
->iv_len
;
922 switch (key_conf
->cipher
) {
923 case WLAN_CIPHER_SUITE_WEP40
:
924 case WLAN_CIPHER_SUITE_WEP104
:
927 case WLAN_CIPHER_SUITE_TKIP
:
930 case WLAN_CIPHER_SUITE_CCMP
:
935 mwl8k_add_dma_header(priv
, skb
, head_pad
, data_pad
);
939 * Packet reception for 88w8366/88w8764 AP firmware.
941 struct mwl8k_rxd_ap
{
945 __le32 pkt_phys_addr
;
946 __le32 next_rxd_phys_addr
;
950 __le32 hw_noise_floor_info
;
959 #define MWL8K_AP_RATE_INFO_MCS_FORMAT 0x80
960 #define MWL8K_AP_RATE_INFO_40MHZ 0x40
961 #define MWL8K_AP_RATE_INFO_RATEID(x) ((x) & 0x3f)
963 #define MWL8K_AP_RX_CTRL_OWNED_BY_HOST 0x80
965 /* 8366/8764 AP rx_status bits */
966 #define MWL8K_AP_RXSTAT_DECRYPT_ERR_MASK 0x80
967 #define MWL8K_AP_RXSTAT_GENERAL_DECRYPT_ERR 0xFF
968 #define MWL8K_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR 0x02
969 #define MWL8K_AP_RXSTAT_WEP_DECRYPT_ICV_ERR 0x04
970 #define MWL8K_AP_RXSTAT_TKIP_DECRYPT_ICV_ERR 0x08
972 static void mwl8k_rxd_ap_init(void *_rxd
, dma_addr_t next_dma_addr
)
974 struct mwl8k_rxd_ap
*rxd
= _rxd
;
976 rxd
->next_rxd_phys_addr
= cpu_to_le32(next_dma_addr
);
977 rxd
->rx_ctrl
= MWL8K_AP_RX_CTRL_OWNED_BY_HOST
;
980 static void mwl8k_rxd_ap_refill(void *_rxd
, dma_addr_t addr
, int len
)
982 struct mwl8k_rxd_ap
*rxd
= _rxd
;
984 rxd
->pkt_len
= cpu_to_le16(len
);
985 rxd
->pkt_phys_addr
= cpu_to_le32(addr
);
991 mwl8k_rxd_ap_process(void *_rxd
, struct ieee80211_rx_status
*status
,
992 __le16
*qos
, s8
*noise
)
994 struct mwl8k_rxd_ap
*rxd
= _rxd
;
996 if (!(rxd
->rx_ctrl
& MWL8K_AP_RX_CTRL_OWNED_BY_HOST
))
1000 memset(status
, 0, sizeof(*status
));
1002 status
->signal
= -rxd
->rssi
;
1003 *noise
= -rxd
->noise_floor
;
1005 if (rxd
->rate
& MWL8K_AP_RATE_INFO_MCS_FORMAT
) {
1006 status
->encoding
= RX_ENC_HT
;
1007 if (rxd
->rate
& MWL8K_AP_RATE_INFO_40MHZ
)
1008 status
->bw
= RATE_INFO_BW_40
;
1009 status
->rate_idx
= MWL8K_AP_RATE_INFO_RATEID(rxd
->rate
);
1013 for (i
= 0; i
< ARRAY_SIZE(mwl8k_rates_24
); i
++) {
1014 if (mwl8k_rates_24
[i
].hw_value
== rxd
->rate
) {
1015 status
->rate_idx
= i
;
1021 if (rxd
->channel
> 14) {
1022 status
->band
= NL80211_BAND_5GHZ
;
1023 if (!(status
->encoding
== RX_ENC_HT
) &&
1024 status
->rate_idx
>= MWL8K_LEGACY_5G_RATE_OFFSET
)
1025 status
->rate_idx
-= MWL8K_LEGACY_5G_RATE_OFFSET
;
1027 status
->band
= NL80211_BAND_2GHZ
;
1029 status
->freq
= ieee80211_channel_to_frequency(rxd
->channel
,
1032 *qos
= rxd
->qos_control
;
1034 if ((rxd
->rx_status
!= MWL8K_AP_RXSTAT_GENERAL_DECRYPT_ERR
) &&
1035 (rxd
->rx_status
& MWL8K_AP_RXSTAT_DECRYPT_ERR_MASK
) &&
1036 (rxd
->rx_status
& MWL8K_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR
))
1037 status
->flag
|= RX_FLAG_MMIC_ERROR
;
1039 return le16_to_cpu(rxd
->pkt_len
);
1042 static struct rxd_ops rxd_ap_ops
= {
1043 .rxd_size
= sizeof(struct mwl8k_rxd_ap
),
1044 .rxd_init
= mwl8k_rxd_ap_init
,
1045 .rxd_refill
= mwl8k_rxd_ap_refill
,
1046 .rxd_process
= mwl8k_rxd_ap_process
,
1050 * Packet reception for STA firmware.
1052 struct mwl8k_rxd_sta
{
1056 __le32 pkt_phys_addr
;
1057 __le32 next_rxd_phys_addr
;
1069 #define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000
1070 #define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3)
1071 #define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f)
1072 #define MWL8K_STA_RATE_INFO_40MHZ 0x0004
1073 #define MWL8K_STA_RATE_INFO_SHORTGI 0x0002
1074 #define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001
1076 #define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02
1077 #define MWL8K_STA_RX_CTRL_DECRYPT_ERROR 0x04
1078 /* ICV=0 or MIC=1 */
1079 #define MWL8K_STA_RX_CTRL_DEC_ERR_TYPE 0x08
1080 /* Key is uploaded only in failure case */
1081 #define MWL8K_STA_RX_CTRL_KEY_INDEX 0x30
1083 static void mwl8k_rxd_sta_init(void *_rxd
, dma_addr_t next_dma_addr
)
1085 struct mwl8k_rxd_sta
*rxd
= _rxd
;
1087 rxd
->next_rxd_phys_addr
= cpu_to_le32(next_dma_addr
);
1088 rxd
->rx_ctrl
= MWL8K_STA_RX_CTRL_OWNED_BY_HOST
;
1091 static void mwl8k_rxd_sta_refill(void *_rxd
, dma_addr_t addr
, int len
)
1093 struct mwl8k_rxd_sta
*rxd
= _rxd
;
1095 rxd
->pkt_len
= cpu_to_le16(len
);
1096 rxd
->pkt_phys_addr
= cpu_to_le32(addr
);
1102 mwl8k_rxd_sta_process(void *_rxd
, struct ieee80211_rx_status
*status
,
1103 __le16
*qos
, s8
*noise
)
1105 struct mwl8k_rxd_sta
*rxd
= _rxd
;
1108 if (!(rxd
->rx_ctrl
& MWL8K_STA_RX_CTRL_OWNED_BY_HOST
))
1112 rate_info
= le16_to_cpu(rxd
->rate_info
);
1114 memset(status
, 0, sizeof(*status
));
1116 status
->signal
= -rxd
->rssi
;
1117 *noise
= -rxd
->noise_level
;
1118 status
->antenna
= MWL8K_STA_RATE_INFO_ANTSELECT(rate_info
);
1119 status
->rate_idx
= MWL8K_STA_RATE_INFO_RATEID(rate_info
);
1121 if (rate_info
& MWL8K_STA_RATE_INFO_SHORTPRE
)
1122 status
->enc_flags
|= RX_ENC_FLAG_SHORTPRE
;
1123 if (rate_info
& MWL8K_STA_RATE_INFO_40MHZ
)
1124 status
->bw
= RATE_INFO_BW_40
;
1125 if (rate_info
& MWL8K_STA_RATE_INFO_SHORTGI
)
1126 status
->enc_flags
|= RX_ENC_FLAG_SHORT_GI
;
1127 if (rate_info
& MWL8K_STA_RATE_INFO_MCS_FORMAT
)
1128 status
->encoding
= RX_ENC_HT
;
1130 if (rxd
->channel
> 14) {
1131 status
->band
= NL80211_BAND_5GHZ
;
1132 if (!(status
->encoding
== RX_ENC_HT
) &&
1133 status
->rate_idx
>= MWL8K_LEGACY_5G_RATE_OFFSET
)
1134 status
->rate_idx
-= MWL8K_LEGACY_5G_RATE_OFFSET
;
1136 status
->band
= NL80211_BAND_2GHZ
;
1138 status
->freq
= ieee80211_channel_to_frequency(rxd
->channel
,
1141 *qos
= rxd
->qos_control
;
1142 if ((rxd
->rx_ctrl
& MWL8K_STA_RX_CTRL_DECRYPT_ERROR
) &&
1143 (rxd
->rx_ctrl
& MWL8K_STA_RX_CTRL_DEC_ERR_TYPE
))
1144 status
->flag
|= RX_FLAG_MMIC_ERROR
;
1146 return le16_to_cpu(rxd
->pkt_len
);
1149 static struct rxd_ops rxd_sta_ops
= {
1150 .rxd_size
= sizeof(struct mwl8k_rxd_sta
),
1151 .rxd_init
= mwl8k_rxd_sta_init
,
1152 .rxd_refill
= mwl8k_rxd_sta_refill
,
1153 .rxd_process
= mwl8k_rxd_sta_process
,
1157 #define MWL8K_RX_DESCS 256
1158 #define MWL8K_RX_MAXSZ 3800
1160 static int mwl8k_rxq_init(struct ieee80211_hw
*hw
, int index
)
1162 struct mwl8k_priv
*priv
= hw
->priv
;
1163 struct mwl8k_rx_queue
*rxq
= priv
->rxq
+ index
;
1171 size
= MWL8K_RX_DESCS
* priv
->rxd_ops
->rxd_size
;
1173 rxq
->rxd
= dma_alloc_coherent(&priv
->pdev
->dev
, size
, &rxq
->rxd_dma
,
1175 if (rxq
->rxd
== NULL
) {
1176 wiphy_err(hw
->wiphy
, "failed to alloc RX descriptors\n");
1180 rxq
->buf
= kcalloc(MWL8K_RX_DESCS
, sizeof(*rxq
->buf
), GFP_KERNEL
);
1181 if (rxq
->buf
== NULL
) {
1182 dma_free_coherent(&priv
->pdev
->dev
, size
, rxq
->rxd
,
1187 for (i
= 0; i
< MWL8K_RX_DESCS
; i
++) {
1191 dma_addr_t next_dma_addr
;
1193 desc_size
= priv
->rxd_ops
->rxd_size
;
1194 rxd
= rxq
->rxd
+ (i
* priv
->rxd_ops
->rxd_size
);
1197 if (nexti
== MWL8K_RX_DESCS
)
1199 next_dma_addr
= rxq
->rxd_dma
+ (nexti
* desc_size
);
1201 priv
->rxd_ops
->rxd_init(rxd
, next_dma_addr
);
1207 static int rxq_refill(struct ieee80211_hw
*hw
, int index
, int limit
)
1209 struct mwl8k_priv
*priv
= hw
->priv
;
1210 struct mwl8k_rx_queue
*rxq
= priv
->rxq
+ index
;
1214 while (rxq
->rxd_count
< MWL8K_RX_DESCS
&& limit
--) {
1215 struct sk_buff
*skb
;
1220 skb
= dev_alloc_skb(MWL8K_RX_MAXSZ
);
1224 addr
= dma_map_single(&priv
->pdev
->dev
, skb
->data
,
1225 MWL8K_RX_MAXSZ
, DMA_FROM_DEVICE
);
1229 if (rxq
->tail
== MWL8K_RX_DESCS
)
1231 rxq
->buf
[rx
].skb
= skb
;
1232 dma_unmap_addr_set(&rxq
->buf
[rx
], dma
, addr
);
1234 rxd
= rxq
->rxd
+ (rx
* priv
->rxd_ops
->rxd_size
);
1235 priv
->rxd_ops
->rxd_refill(rxd
, addr
, MWL8K_RX_MAXSZ
);
1243 /* Must be called only when the card's reception is completely halted */
1244 static void mwl8k_rxq_deinit(struct ieee80211_hw
*hw
, int index
)
1246 struct mwl8k_priv
*priv
= hw
->priv
;
1247 struct mwl8k_rx_queue
*rxq
= priv
->rxq
+ index
;
1250 if (rxq
->rxd
== NULL
)
1253 for (i
= 0; i
< MWL8K_RX_DESCS
; i
++) {
1254 if (rxq
->buf
[i
].skb
!= NULL
) {
1255 dma_unmap_single(&priv
->pdev
->dev
,
1256 dma_unmap_addr(&rxq
->buf
[i
], dma
),
1257 MWL8K_RX_MAXSZ
, DMA_FROM_DEVICE
);
1258 dma_unmap_addr_set(&rxq
->buf
[i
], dma
, 0);
1260 kfree_skb(rxq
->buf
[i
].skb
);
1261 rxq
->buf
[i
].skb
= NULL
;
1268 dma_free_coherent(&priv
->pdev
->dev
,
1269 MWL8K_RX_DESCS
* priv
->rxd_ops
->rxd_size
, rxq
->rxd
,
1276 * Scan a list of BSSIDs to process for finalize join.
1277 * Allows for extension to process multiple BSSIDs.
1280 mwl8k_capture_bssid(struct mwl8k_priv
*priv
, struct ieee80211_hdr
*wh
)
1282 return priv
->capture_beacon
&&
1283 ieee80211_is_beacon(wh
->frame_control
) &&
1284 ether_addr_equal_64bits(wh
->addr3
, priv
->capture_bssid
);
1287 static inline void mwl8k_save_beacon(struct ieee80211_hw
*hw
,
1288 struct sk_buff
*skb
)
1290 struct mwl8k_priv
*priv
= hw
->priv
;
1292 priv
->capture_beacon
= false;
1293 eth_zero_addr(priv
->capture_bssid
);
1296 * Use GFP_ATOMIC as rxq_process is called from
1297 * the primary interrupt handler, memory allocation call
1300 priv
->beacon_skb
= skb_copy(skb
, GFP_ATOMIC
);
1301 if (priv
->beacon_skb
!= NULL
)
1302 ieee80211_queue_work(hw
, &priv
->finalize_join_worker
);
1305 static inline struct mwl8k_vif
*mwl8k_find_vif_bss(struct list_head
*vif_list
,
1308 struct mwl8k_vif
*mwl8k_vif
;
1310 list_for_each_entry(mwl8k_vif
,
1312 if (memcmp(bssid
, mwl8k_vif
->bssid
,
1320 static int rxq_process(struct ieee80211_hw
*hw
, int index
, int limit
)
1322 struct mwl8k_priv
*priv
= hw
->priv
;
1323 struct mwl8k_vif
*mwl8k_vif
= NULL
;
1324 struct mwl8k_rx_queue
*rxq
= priv
->rxq
+ index
;
1328 while (rxq
->rxd_count
&& limit
--) {
1329 struct sk_buff
*skb
;
1332 struct ieee80211_rx_status status
;
1333 struct ieee80211_hdr
*wh
;
1336 skb
= rxq
->buf
[rxq
->head
].skb
;
1340 rxd
= rxq
->rxd
+ (rxq
->head
* priv
->rxd_ops
->rxd_size
);
1342 pkt_len
= priv
->rxd_ops
->rxd_process(rxd
, &status
, &qos
,
1347 rxq
->buf
[rxq
->head
].skb
= NULL
;
1349 dma_unmap_single(&priv
->pdev
->dev
,
1350 dma_unmap_addr(&rxq
->buf
[rxq
->head
], dma
),
1351 MWL8K_RX_MAXSZ
, DMA_FROM_DEVICE
);
1352 dma_unmap_addr_set(&rxq
->buf
[rxq
->head
], dma
, 0);
1355 if (rxq
->head
== MWL8K_RX_DESCS
)
1360 wh
= &((struct mwl8k_dma_data
*)skb
->data
)->wh
;
1363 * Check for a pending join operation. Save a
1364 * copy of the beacon and schedule a tasklet to
1365 * send a FINALIZE_JOIN command to the firmware.
1367 if (mwl8k_capture_bssid(priv
, (void *)skb
->data
))
1368 mwl8k_save_beacon(hw
, skb
);
1370 if (ieee80211_has_protected(wh
->frame_control
)) {
1372 /* Check if hw crypto has been enabled for
1373 * this bss. If yes, set the status flags
1376 mwl8k_vif
= mwl8k_find_vif_bss(&priv
->vif_list
,
1379 if (mwl8k_vif
!= NULL
&&
1380 mwl8k_vif
->is_hw_crypto_enabled
) {
1382 * When MMIC ERROR is encountered
1383 * by the firmware, payload is
1384 * dropped and only 32 bytes of
1385 * mwl8k Firmware header is sent
1388 * We need to add four bytes of
1389 * key information. In it
1390 * MAC80211 expects keyidx set to
1391 * 0 for triggering Counter
1392 * Measure of MMIC failure.
1394 if (status
.flag
& RX_FLAG_MMIC_ERROR
) {
1395 struct mwl8k_dma_data
*tr
;
1396 tr
= (struct mwl8k_dma_data
*)skb
->data
;
1397 memset((void *)&(tr
->data
), 0, 4);
1401 if (!ieee80211_is_auth(wh
->frame_control
))
1402 status
.flag
|= RX_FLAG_IV_STRIPPED
|
1404 RX_FLAG_MMIC_STRIPPED
;
1408 skb_put(skb
, pkt_len
);
1409 mwl8k_remove_dma_header(skb
, qos
);
1410 memcpy(IEEE80211_SKB_RXCB(skb
), &status
, sizeof(status
));
1411 ieee80211_rx_irqsafe(hw
, skb
);
1421 * Packet transmission.
1424 #define MWL8K_TXD_STATUS_OK 0x00000001
1425 #define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
1426 #define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
1427 #define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
1428 #define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
1430 #define MWL8K_QOS_QLEN_UNSPEC 0xff00
1431 #define MWL8K_QOS_ACK_POLICY_MASK 0x0060
1432 #define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000
1433 #define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060
1434 #define MWL8K_QOS_EOSP 0x0010
1436 struct mwl8k_tx_desc
{
1441 __le32 pkt_phys_addr
;
1443 __u8 dest_MAC_addr
[ETH_ALEN
];
1444 __le32 next_txd_phys_addr
;
1451 #define MWL8K_TX_DESCS 128
1453 static int mwl8k_txq_init(struct ieee80211_hw
*hw
, int index
)
1455 struct mwl8k_priv
*priv
= hw
->priv
;
1456 struct mwl8k_tx_queue
*txq
= priv
->txq
+ index
;
1464 size
= MWL8K_TX_DESCS
* sizeof(struct mwl8k_tx_desc
);
1466 txq
->txd
= dma_alloc_coherent(&priv
->pdev
->dev
, size
, &txq
->txd_dma
,
1468 if (txq
->txd
== NULL
) {
1469 wiphy_err(hw
->wiphy
, "failed to alloc TX descriptors\n");
1473 txq
->skb
= kcalloc(MWL8K_TX_DESCS
, sizeof(*txq
->skb
), GFP_KERNEL
);
1474 if (txq
->skb
== NULL
) {
1475 dma_free_coherent(&priv
->pdev
->dev
, size
, txq
->txd
,
1480 for (i
= 0; i
< MWL8K_TX_DESCS
; i
++) {
1481 struct mwl8k_tx_desc
*tx_desc
;
1484 tx_desc
= txq
->txd
+ i
;
1485 nexti
= (i
+ 1) % MWL8K_TX_DESCS
;
1487 tx_desc
->status
= 0;
1488 tx_desc
->next_txd_phys_addr
=
1489 cpu_to_le32(txq
->txd_dma
+ nexti
* sizeof(*tx_desc
));
1495 static inline void mwl8k_tx_start(struct mwl8k_priv
*priv
)
1497 iowrite32(MWL8K_H2A_INT_PPA_READY
,
1498 priv
->regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
1499 iowrite32(MWL8K_H2A_INT_DUMMY
,
1500 priv
->regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
1501 ioread32(priv
->regs
+ MWL8K_HIU_INT_CODE
);
1504 static void mwl8k_dump_tx_rings(struct ieee80211_hw
*hw
)
1506 struct mwl8k_priv
*priv
= hw
->priv
;
1509 for (i
= 0; i
< mwl8k_tx_queues(priv
); i
++) {
1510 struct mwl8k_tx_queue
*txq
= priv
->txq
+ i
;
1516 for (desc
= 0; desc
< MWL8K_TX_DESCS
; desc
++) {
1517 struct mwl8k_tx_desc
*tx_desc
= txq
->txd
+ desc
;
1520 status
= le32_to_cpu(tx_desc
->status
);
1521 if (status
& MWL8K_TXD_STATUS_FW_OWNED
)
1526 if (tx_desc
->pkt_len
== 0)
1530 wiphy_err(hw
->wiphy
,
1531 "txq[%d] len=%d head=%d tail=%d "
1532 "fw_owned=%d drv_owned=%d unused=%d\n",
1534 txq
->len
, txq
->head
, txq
->tail
,
1535 fw_owned
, drv_owned
, unused
);
1540 * Must be called with priv->fw_mutex held and tx queues stopped.
1542 #define MWL8K_TX_WAIT_TIMEOUT_MS 5000
1544 static int mwl8k_tx_wait_empty(struct ieee80211_hw
*hw
)
1546 struct mwl8k_priv
*priv
= hw
->priv
;
1547 DECLARE_COMPLETION_ONSTACK(tx_wait
);
1553 /* Since fw restart is in progress, allow only the firmware
1554 * commands from the restart code and block the other
1555 * commands since they are going to fail in any case since
1556 * the firmware has crashed
1558 if (priv
->hw_restart_in_progress
) {
1559 if (priv
->hw_restart_owner
== current
)
1565 if (atomic_read(&priv
->watchdog_event_pending
))
1569 * The TX queues are stopped at this point, so this test
1570 * doesn't need to take ->tx_lock.
1572 if (!priv
->pending_tx_pkts
)
1578 spin_lock_bh(&priv
->tx_lock
);
1579 priv
->tx_wait
= &tx_wait
;
1582 unsigned long timeout
;
1584 oldcount
= priv
->pending_tx_pkts
;
1586 spin_unlock_bh(&priv
->tx_lock
);
1587 timeout
= wait_for_completion_timeout(&tx_wait
,
1588 msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS
));
1590 if (atomic_read(&priv
->watchdog_event_pending
)) {
1591 spin_lock_bh(&priv
->tx_lock
);
1592 priv
->tx_wait
= NULL
;
1593 spin_unlock_bh(&priv
->tx_lock
);
1597 spin_lock_bh(&priv
->tx_lock
);
1599 if (timeout
|| !priv
->pending_tx_pkts
) {
1600 WARN_ON(priv
->pending_tx_pkts
);
1602 wiphy_notice(hw
->wiphy
, "tx rings drained\n");
1607 mwl8k_tx_start(priv
);
1612 if (priv
->pending_tx_pkts
< oldcount
) {
1613 wiphy_notice(hw
->wiphy
,
1614 "waiting for tx rings to drain (%d -> %d pkts)\n",
1615 oldcount
, priv
->pending_tx_pkts
);
1620 priv
->tx_wait
= NULL
;
1622 wiphy_err(hw
->wiphy
, "tx rings stuck for %d ms\n",
1623 MWL8K_TX_WAIT_TIMEOUT_MS
);
1624 mwl8k_dump_tx_rings(hw
);
1625 priv
->hw_restart_in_progress
= true;
1626 ieee80211_queue_work(hw
, &priv
->fw_reload
);
1630 priv
->tx_wait
= NULL
;
1631 spin_unlock_bh(&priv
->tx_lock
);
1636 #define MWL8K_TXD_SUCCESS(status) \
1637 ((status) & (MWL8K_TXD_STATUS_OK | \
1638 MWL8K_TXD_STATUS_OK_RETRY | \
1639 MWL8K_TXD_STATUS_OK_MORE_RETRY))
1641 static int mwl8k_tid_queue_mapping(u8 tid
)
1648 return IEEE80211_AC_BE
;
1651 return IEEE80211_AC_BK
;
1654 return IEEE80211_AC_VI
;
1657 return IEEE80211_AC_VO
;
1663 /* The firmware will fill in the rate information
1664 * for each packet that gets queued in the hardware
1665 * and these macros will interpret that info.
1668 #define RI_FORMAT(a) (a & 0x0001)
1669 #define RI_RATE_ID_MCS(a) ((a & 0x01f8) >> 3)
1672 mwl8k_txq_reclaim(struct ieee80211_hw
*hw
, int index
, int limit
, int force
)
1674 struct mwl8k_priv
*priv
= hw
->priv
;
1675 struct mwl8k_tx_queue
*txq
= priv
->txq
+ index
;
1679 while (txq
->len
> 0 && limit
--) {
1681 struct mwl8k_tx_desc
*tx_desc
;
1684 struct sk_buff
*skb
;
1685 struct ieee80211_tx_info
*info
;
1687 struct ieee80211_sta
*sta
;
1688 struct mwl8k_sta
*sta_info
= NULL
;
1690 struct ieee80211_hdr
*wh
;
1693 tx_desc
= txq
->txd
+ tx
;
1695 status
= le32_to_cpu(tx_desc
->status
);
1697 if (status
& MWL8K_TXD_STATUS_FW_OWNED
) {
1701 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED
);
1704 txq
->head
= (tx
+ 1) % MWL8K_TX_DESCS
;
1705 BUG_ON(txq
->len
== 0);
1707 priv
->pending_tx_pkts
--;
1709 addr
= le32_to_cpu(tx_desc
->pkt_phys_addr
);
1710 size
= le16_to_cpu(tx_desc
->pkt_len
);
1712 txq
->skb
[tx
] = NULL
;
1714 BUG_ON(skb
== NULL
);
1715 dma_unmap_single(&priv
->pdev
->dev
, addr
, size
, DMA_TO_DEVICE
);
1717 mwl8k_remove_dma_header(skb
, tx_desc
->qos_control
);
1719 wh
= (struct ieee80211_hdr
*) skb
->data
;
1721 /* Mark descriptor as unused */
1722 tx_desc
->pkt_phys_addr
= 0;
1723 tx_desc
->pkt_len
= 0;
1725 info
= IEEE80211_SKB_CB(skb
);
1726 if (ieee80211_is_data(wh
->frame_control
)) {
1728 sta
= ieee80211_find_sta_by_ifaddr(hw
, wh
->addr1
,
1731 sta_info
= MWL8K_STA(sta
);
1732 BUG_ON(sta_info
== NULL
);
1733 rate_info
= le16_to_cpu(tx_desc
->rate_info
);
1734 /* If rate is < 6.5 Mpbs for an ht station
1735 * do not form an ampdu. If the station is a
1736 * legacy station (format = 0), do not form an
1739 if (RI_RATE_ID_MCS(rate_info
) < 1 ||
1740 RI_FORMAT(rate_info
) == 0) {
1741 sta_info
->is_ampdu_allowed
= false;
1743 sta_info
->is_ampdu_allowed
= true;
1749 ieee80211_tx_info_clear_status(info
);
1751 /* Rate control is happening in the firmware.
1752 * Ensure no tx rate is being reported.
1754 info
->status
.rates
[0].idx
= -1;
1755 info
->status
.rates
[0].count
= 1;
1757 if (MWL8K_TXD_SUCCESS(status
))
1758 info
->flags
|= IEEE80211_TX_STAT_ACK
;
1760 ieee80211_tx_status_irqsafe(hw
, skb
);
1768 /* must be called only when the card's transmit is completely halted */
1769 static void mwl8k_txq_deinit(struct ieee80211_hw
*hw
, int index
)
1771 struct mwl8k_priv
*priv
= hw
->priv
;
1772 struct mwl8k_tx_queue
*txq
= priv
->txq
+ index
;
1774 if (txq
->txd
== NULL
)
1777 mwl8k_txq_reclaim(hw
, index
, INT_MAX
, 1);
1782 dma_free_coherent(&priv
->pdev
->dev
,
1783 MWL8K_TX_DESCS
* sizeof(struct mwl8k_tx_desc
),
1784 txq
->txd
, txq
->txd_dma
);
1788 /* caller must hold priv->stream_lock when calling the stream functions */
1789 static struct mwl8k_ampdu_stream
*
1790 mwl8k_add_stream(struct ieee80211_hw
*hw
, struct ieee80211_sta
*sta
, u8 tid
)
1792 struct mwl8k_ampdu_stream
*stream
;
1793 struct mwl8k_priv
*priv
= hw
->priv
;
1796 for (i
= 0; i
< MWL8K_NUM_AMPDU_STREAMS
; i
++) {
1797 stream
= &priv
->ampdu
[i
];
1798 if (stream
->state
== AMPDU_NO_STREAM
) {
1800 stream
->state
= AMPDU_STREAM_NEW
;
1803 wiphy_debug(hw
->wiphy
, "Added a new stream for %pM %d",
1812 mwl8k_start_stream(struct ieee80211_hw
*hw
, struct mwl8k_ampdu_stream
*stream
)
1816 /* if the stream has already been started, don't start it again */
1817 if (stream
->state
!= AMPDU_STREAM_NEW
)
1819 ret
= ieee80211_start_tx_ba_session(stream
->sta
, stream
->tid
, 0);
1821 wiphy_debug(hw
->wiphy
, "Failed to start stream for %pM %d: "
1822 "%d\n", stream
->sta
->addr
, stream
->tid
, ret
);
1824 wiphy_debug(hw
->wiphy
, "Started stream for %pM %d\n",
1825 stream
->sta
->addr
, stream
->tid
);
1830 mwl8k_remove_stream(struct ieee80211_hw
*hw
, struct mwl8k_ampdu_stream
*stream
)
1832 wiphy_debug(hw
->wiphy
, "Remove stream for %pM %d\n", stream
->sta
->addr
,
1834 memset(stream
, 0, sizeof(*stream
));
1837 static struct mwl8k_ampdu_stream
*
1838 mwl8k_lookup_stream(struct ieee80211_hw
*hw
, u8
*addr
, u8 tid
)
1840 struct mwl8k_priv
*priv
= hw
->priv
;
1843 for (i
= 0; i
< MWL8K_NUM_AMPDU_STREAMS
; i
++) {
1844 struct mwl8k_ampdu_stream
*stream
;
1845 stream
= &priv
->ampdu
[i
];
1846 if (stream
->state
== AMPDU_NO_STREAM
)
1848 if (!memcmp(stream
->sta
->addr
, addr
, ETH_ALEN
) &&
1855 #define MWL8K_AMPDU_PACKET_THRESHOLD 64
1856 static inline bool mwl8k_ampdu_allowed(struct ieee80211_sta
*sta
, u8 tid
)
1858 struct mwl8k_sta
*sta_info
= MWL8K_STA(sta
);
1859 struct tx_traffic_info
*tx_stats
;
1861 BUG_ON(tid
>= MWL8K_MAX_TID
);
1862 tx_stats
= &sta_info
->tx_stats
[tid
];
1864 return sta_info
->is_ampdu_allowed
&&
1865 tx_stats
->pkts
> MWL8K_AMPDU_PACKET_THRESHOLD
;
1868 static inline void mwl8k_tx_count_packet(struct ieee80211_sta
*sta
, u8 tid
)
1870 struct mwl8k_sta
*sta_info
= MWL8K_STA(sta
);
1871 struct tx_traffic_info
*tx_stats
;
1873 BUG_ON(tid
>= MWL8K_MAX_TID
);
1874 tx_stats
= &sta_info
->tx_stats
[tid
];
1876 if (tx_stats
->start_time
== 0)
1877 tx_stats
->start_time
= jiffies
;
1879 /* reset the packet count after each second elapses. If the number of
1880 * packets ever exceeds the ampdu_min_traffic threshold, we will allow
1881 * an ampdu stream to be started.
1883 if (jiffies
- tx_stats
->start_time
> HZ
) {
1885 tx_stats
->start_time
= 0;
1890 /* The hardware ampdu queues start from 5.
1891 * txpriorities for ampdu queues are
1892 * 5 6 7 0 1 2 3 4 ie., queue 5 is highest
1893 * and queue 3 is lowest (queue 4 is reserved)
1898 mwl8k_txq_xmit(struct ieee80211_hw
*hw
,
1900 struct ieee80211_sta
*sta
,
1901 struct sk_buff
*skb
)
1903 struct mwl8k_priv
*priv
= hw
->priv
;
1904 struct ieee80211_tx_info
*tx_info
;
1905 struct mwl8k_vif
*mwl8k_vif
;
1906 struct ieee80211_hdr
*wh
;
1907 struct mwl8k_tx_queue
*txq
;
1908 struct mwl8k_tx_desc
*tx
;
1915 struct mwl8k_ampdu_stream
*stream
= NULL
;
1916 bool start_ba_session
= false;
1917 bool mgmtframe
= false;
1918 struct ieee80211_mgmt
*mgmt
= (struct ieee80211_mgmt
*)skb
->data
;
1919 bool eapol_frame
= false;
1921 wh
= (struct ieee80211_hdr
*)skb
->data
;
1922 if (ieee80211_is_data_qos(wh
->frame_control
))
1923 qos
= le16_to_cpu(*((__le16
*)ieee80211_get_qos_ctl(wh
)));
1927 if (skb
->protocol
== cpu_to_be16(ETH_P_PAE
))
1930 if (ieee80211_is_mgmt(wh
->frame_control
))
1934 mwl8k_encapsulate_tx_frame(priv
, skb
);
1936 mwl8k_add_dma_header(priv
, skb
, 0, 0);
1938 wh
= &((struct mwl8k_dma_data
*)skb
->data
)->wh
;
1940 tx_info
= IEEE80211_SKB_CB(skb
);
1941 mwl8k_vif
= MWL8K_VIF(tx_info
->control
.vif
);
1943 if (tx_info
->flags
& IEEE80211_TX_CTL_ASSIGN_SEQ
) {
1944 wh
->seq_ctrl
&= cpu_to_le16(IEEE80211_SCTL_FRAG
);
1945 wh
->seq_ctrl
|= cpu_to_le16(mwl8k_vif
->seqno
);
1946 mwl8k_vif
->seqno
+= 0x10;
1949 /* Setup firmware control bit fields for each frame type. */
1952 if (ieee80211_is_mgmt(wh
->frame_control
) ||
1953 ieee80211_is_ctl(wh
->frame_control
)) {
1955 qos
|= MWL8K_QOS_QLEN_UNSPEC
| MWL8K_QOS_EOSP
;
1956 } else if (ieee80211_is_data(wh
->frame_control
)) {
1958 if (is_multicast_ether_addr(wh
->addr1
))
1959 txstatus
|= MWL8K_TXD_STATUS_MULTICAST_TX
;
1961 qos
&= ~MWL8K_QOS_ACK_POLICY_MASK
;
1962 if (tx_info
->flags
& IEEE80211_TX_CTL_AMPDU
)
1963 qos
|= MWL8K_QOS_ACK_POLICY_BLOCKACK
;
1965 qos
|= MWL8K_QOS_ACK_POLICY_NORMAL
;
1968 /* Queue ADDBA request in the respective data queue. While setting up
1969 * the ampdu stream, mac80211 queues further packets for that
1970 * particular ra/tid pair. However, packets piled up in the hardware
1971 * for that ra/tid pair will still go out. ADDBA request and the
1972 * related data packets going out from different queues asynchronously
1973 * will cause a shift in the receiver window which might result in
1974 * ampdu packets getting dropped at the receiver after the stream has
1977 if (unlikely(ieee80211_is_action(wh
->frame_control
) &&
1978 mgmt
->u
.action
.category
== WLAN_CATEGORY_BACK
&&
1979 mgmt
->u
.action
.u
.addba_req
.action_code
== WLAN_ACTION_ADDBA_REQ
&&
1981 u16 capab
= le16_to_cpu(mgmt
->u
.action
.u
.addba_req
.capab
);
1982 tid
= (capab
& IEEE80211_ADDBA_PARAM_TID_MASK
) >> 2;
1983 index
= mwl8k_tid_queue_mapping(tid
);
1988 if (priv
->ap_fw
&& sta
&& sta
->ht_cap
.ht_supported
&& !eapol_frame
&&
1989 ieee80211_is_data_qos(wh
->frame_control
)) {
1991 mwl8k_tx_count_packet(sta
, tid
);
1992 spin_lock(&priv
->stream_lock
);
1993 stream
= mwl8k_lookup_stream(hw
, sta
->addr
, tid
);
1994 if (stream
!= NULL
) {
1995 if (stream
->state
== AMPDU_STREAM_ACTIVE
) {
1996 WARN_ON(!(qos
& MWL8K_QOS_ACK_POLICY_BLOCKACK
));
1997 txpriority
= (BA_QUEUE
+ stream
->idx
) %
1999 if (stream
->idx
<= 1)
2000 index
= stream
->idx
+
2001 MWL8K_TX_WMM_QUEUES
;
2003 } else if (stream
->state
== AMPDU_STREAM_NEW
) {
2004 /* We get here if the driver sends us packets
2005 * after we've initiated a stream, but before
2006 * our ampdu_action routine has been called
2007 * with IEEE80211_AMPDU_TX_START to get the SSN
2008 * for the ADDBA request. So this packet can
2009 * go out with no risk of sequence number
2010 * mismatch. No special handling is required.
2013 /* Drop packets that would go out after the
2014 * ADDBA request was sent but before the ADDBA
2015 * response is received. If we don't do this,
2016 * the recipient would probably receive it
2017 * after the ADDBA request with SSN 0. This
2018 * will cause the recipient's BA receive window
2019 * to shift, which would cause the subsequent
2020 * packets in the BA stream to be discarded.
2021 * mac80211 queues our packets for us in this
2022 * case, so this is really just a safety check.
2024 wiphy_warn(hw
->wiphy
,
2025 "Cannot send packet while ADDBA "
2026 "dialog is underway.\n");
2027 spin_unlock(&priv
->stream_lock
);
2032 /* Defer calling mwl8k_start_stream so that the current
2033 * skb can go out before the ADDBA request. This
2034 * prevents sequence number mismatch at the recepient
2035 * as described above.
2037 if (mwl8k_ampdu_allowed(sta
, tid
)) {
2038 stream
= mwl8k_add_stream(hw
, sta
, tid
);
2040 start_ba_session
= true;
2043 spin_unlock(&priv
->stream_lock
);
2045 qos
&= ~MWL8K_QOS_ACK_POLICY_MASK
;
2046 qos
|= MWL8K_QOS_ACK_POLICY_NORMAL
;
2049 dma
= dma_map_single(&priv
->pdev
->dev
, skb
->data
, skb
->len
,
2052 if (dma_mapping_error(&priv
->pdev
->dev
, dma
)) {
2053 wiphy_debug(hw
->wiphy
,
2054 "failed to dma map skb, dropping TX frame.\n");
2055 if (start_ba_session
) {
2056 spin_lock(&priv
->stream_lock
);
2057 mwl8k_remove_stream(hw
, stream
);
2058 spin_unlock(&priv
->stream_lock
);
2064 spin_lock_bh(&priv
->tx_lock
);
2066 txq
= priv
->txq
+ index
;
2068 /* Mgmt frames that go out frequently are probe
2069 * responses. Other mgmt frames got out relatively
2070 * infrequently. Hence reserve 2 buffers so that
2071 * other mgmt frames do not get dropped due to an
2072 * already queued probe response in one of the
2076 if (txq
->len
>= MWL8K_TX_DESCS
- 2) {
2077 if (!mgmtframe
|| txq
->len
== MWL8K_TX_DESCS
) {
2078 if (start_ba_session
) {
2079 spin_lock(&priv
->stream_lock
);
2080 mwl8k_remove_stream(hw
, stream
);
2081 spin_unlock(&priv
->stream_lock
);
2083 mwl8k_tx_start(priv
);
2084 spin_unlock_bh(&priv
->tx_lock
);
2085 dma_unmap_single(&priv
->pdev
->dev
, dma
, skb
->len
,
2092 BUG_ON(txq
->skb
[txq
->tail
] != NULL
);
2093 txq
->skb
[txq
->tail
] = skb
;
2095 tx
= txq
->txd
+ txq
->tail
;
2096 tx
->data_rate
= txdatarate
;
2097 tx
->tx_priority
= txpriority
;
2098 tx
->qos_control
= cpu_to_le16(qos
);
2099 tx
->pkt_phys_addr
= cpu_to_le32(dma
);
2100 tx
->pkt_len
= cpu_to_le16(skb
->len
);
2102 if (!priv
->ap_fw
&& sta
!= NULL
)
2103 tx
->peer_id
= MWL8K_STA(sta
)->peer_id
;
2107 if (priv
->ap_fw
&& ieee80211_is_data(wh
->frame_control
) && !eapol_frame
)
2108 tx
->timestamp
= cpu_to_le32(ioread32(priv
->regs
+
2109 MWL8K_HW_TIMER_REGISTER
));
2114 tx
->status
= cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED
| txstatus
);
2117 priv
->pending_tx_pkts
++;
2120 if (txq
->tail
== MWL8K_TX_DESCS
)
2123 mwl8k_tx_start(priv
);
2125 spin_unlock_bh(&priv
->tx_lock
);
2127 /* Initiate the ampdu session here */
2128 if (start_ba_session
) {
2129 spin_lock(&priv
->stream_lock
);
2130 if (mwl8k_start_stream(hw
, stream
))
2131 mwl8k_remove_stream(hw
, stream
);
2132 spin_unlock(&priv
->stream_lock
);
2140 * We have the following requirements for issuing firmware commands:
2141 * - Some commands require that the packet transmit path is idle when
2142 * the command is issued. (For simplicity, we'll just quiesce the
2143 * transmit path for every command.)
2144 * - There are certain sequences of commands that need to be issued to
2145 * the hardware sequentially, with no other intervening commands.
2147 * This leads to an implementation of a "firmware lock" as a mutex that
2148 * can be taken recursively, and which is taken by both the low-level
2149 * command submission function (mwl8k_post_cmd) as well as any users of
2150 * that function that require issuing of an atomic sequence of commands,
2151 * and quiesces the transmit path whenever it's taken.
2153 static int mwl8k_fw_lock(struct ieee80211_hw
*hw
)
2155 struct mwl8k_priv
*priv
= hw
->priv
;
2157 if (priv
->fw_mutex_owner
!= current
) {
2160 mutex_lock(&priv
->fw_mutex
);
2161 ieee80211_stop_queues(hw
);
2163 rc
= mwl8k_tx_wait_empty(hw
);
2165 if (!priv
->hw_restart_in_progress
)
2166 ieee80211_wake_queues(hw
);
2168 mutex_unlock(&priv
->fw_mutex
);
2173 priv
->fw_mutex_owner
= current
;
2176 priv
->fw_mutex_depth
++;
2181 static void mwl8k_fw_unlock(struct ieee80211_hw
*hw
)
2183 struct mwl8k_priv
*priv
= hw
->priv
;
2185 if (!--priv
->fw_mutex_depth
) {
2186 if (!priv
->hw_restart_in_progress
)
2187 ieee80211_wake_queues(hw
);
2189 priv
->fw_mutex_owner
= NULL
;
2190 mutex_unlock(&priv
->fw_mutex
);
2194 static void mwl8k_enable_bsses(struct ieee80211_hw
*hw
, bool enable
,
2198 * Command processing.
2201 /* Timeout firmware commands after 10s */
2202 #define MWL8K_CMD_TIMEOUT_MS 10000
2204 static int mwl8k_post_cmd(struct ieee80211_hw
*hw
, struct mwl8k_cmd_pkt
*cmd
)
2206 DECLARE_COMPLETION_ONSTACK(cmd_wait
);
2207 struct mwl8k_priv
*priv
= hw
->priv
;
2208 void __iomem
*regs
= priv
->regs
;
2209 dma_addr_t dma_addr
;
2210 unsigned int dma_size
;
2212 unsigned long timeout
= 0;
2216 wiphy_dbg(hw
->wiphy
, "Posting %s [%d]\n",
2217 mwl8k_cmd_name(cmd
->code
, buf
, sizeof(buf
)), cmd
->macid
);
2219 /* Before posting firmware commands that could change the hardware
2220 * characteristics, make sure that all BSSes are stopped temporary.
2221 * Enable these stopped BSSes after completion of the commands
2224 rc
= mwl8k_fw_lock(hw
);
2228 if (priv
->ap_fw
&& priv
->running_bsses
) {
2229 switch (le16_to_cpu(cmd
->code
)) {
2230 case MWL8K_CMD_SET_RF_CHANNEL
:
2231 case MWL8K_CMD_RADIO_CONTROL
:
2232 case MWL8K_CMD_RF_TX_POWER
:
2233 case MWL8K_CMD_TX_POWER
:
2234 case MWL8K_CMD_RF_ANTENNA
:
2235 case MWL8K_CMD_RTS_THRESHOLD
:
2236 case MWL8K_CMD_MIMO_CONFIG
:
2237 bitmap
= priv
->running_bsses
;
2238 mwl8k_enable_bsses(hw
, false, bitmap
);
2243 cmd
->result
= (__force __le16
) 0xffff;
2244 dma_size
= le16_to_cpu(cmd
->length
);
2245 dma_addr
= dma_map_single(&priv
->pdev
->dev
, cmd
, dma_size
,
2247 if (dma_mapping_error(&priv
->pdev
->dev
, dma_addr
)) {
2252 priv
->hostcmd_wait
= &cmd_wait
;
2253 iowrite32(dma_addr
, regs
+ MWL8K_HIU_GEN_PTR
);
2254 iowrite32(MWL8K_H2A_INT_DOORBELL
,
2255 regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
2256 iowrite32(MWL8K_H2A_INT_DUMMY
,
2257 regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
2259 timeout
= wait_for_completion_timeout(&cmd_wait
,
2260 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS
));
2262 priv
->hostcmd_wait
= NULL
;
2265 dma_unmap_single(&priv
->pdev
->dev
, dma_addr
, dma_size
,
2269 wiphy_err(hw
->wiphy
, "Command %s timeout after %u ms\n",
2270 mwl8k_cmd_name(cmd
->code
, buf
, sizeof(buf
)),
2271 MWL8K_CMD_TIMEOUT_MS
);
2276 ms
= MWL8K_CMD_TIMEOUT_MS
- jiffies_to_msecs(timeout
);
2278 rc
= cmd
->result
? -EINVAL
: 0;
2280 wiphy_err(hw
->wiphy
, "Command %s error 0x%x\n",
2281 mwl8k_cmd_name(cmd
->code
, buf
, sizeof(buf
)),
2282 le16_to_cpu(cmd
->result
));
2284 wiphy_notice(hw
->wiphy
, "Command %s took %d ms\n",
2285 mwl8k_cmd_name(cmd
->code
,
2292 mwl8k_enable_bsses(hw
, true, bitmap
);
2294 mwl8k_fw_unlock(hw
);
2299 static int mwl8k_post_pervif_cmd(struct ieee80211_hw
*hw
,
2300 struct ieee80211_vif
*vif
,
2301 struct mwl8k_cmd_pkt
*cmd
)
2304 cmd
->macid
= MWL8K_VIF(vif
)->macid
;
2305 return mwl8k_post_cmd(hw
, cmd
);
2309 * Setup code shared between STA and AP firmware images.
2311 static void mwl8k_setup_2ghz_band(struct ieee80211_hw
*hw
)
2313 struct mwl8k_priv
*priv
= hw
->priv
;
2315 BUILD_BUG_ON(sizeof(priv
->channels_24
) != sizeof(mwl8k_channels_24
));
2316 memcpy(priv
->channels_24
, mwl8k_channels_24
, sizeof(mwl8k_channels_24
));
2318 BUILD_BUG_ON(sizeof(priv
->rates_24
) != sizeof(mwl8k_rates_24
));
2319 memcpy(priv
->rates_24
, mwl8k_rates_24
, sizeof(mwl8k_rates_24
));
2321 priv
->band_24
.band
= NL80211_BAND_2GHZ
;
2322 priv
->band_24
.channels
= priv
->channels_24
;
2323 priv
->band_24
.n_channels
= ARRAY_SIZE(mwl8k_channels_24
);
2324 priv
->band_24
.bitrates
= priv
->rates_24
;
2325 priv
->band_24
.n_bitrates
= ARRAY_SIZE(mwl8k_rates_24
);
2327 hw
->wiphy
->bands
[NL80211_BAND_2GHZ
] = &priv
->band_24
;
2330 static void mwl8k_setup_5ghz_band(struct ieee80211_hw
*hw
)
2332 struct mwl8k_priv
*priv
= hw
->priv
;
2334 BUILD_BUG_ON(sizeof(priv
->channels_50
) != sizeof(mwl8k_channels_50
));
2335 memcpy(priv
->channels_50
, mwl8k_channels_50
, sizeof(mwl8k_channels_50
));
2337 BUILD_BUG_ON(sizeof(priv
->rates_50
) != sizeof(mwl8k_rates_50
));
2338 memcpy(priv
->rates_50
, mwl8k_rates_50
, sizeof(mwl8k_rates_50
));
2340 priv
->band_50
.band
= NL80211_BAND_5GHZ
;
2341 priv
->band_50
.channels
= priv
->channels_50
;
2342 priv
->band_50
.n_channels
= ARRAY_SIZE(mwl8k_channels_50
);
2343 priv
->band_50
.bitrates
= priv
->rates_50
;
2344 priv
->band_50
.n_bitrates
= ARRAY_SIZE(mwl8k_rates_50
);
2346 hw
->wiphy
->bands
[NL80211_BAND_5GHZ
] = &priv
->band_50
;
2350 * CMD_GET_HW_SPEC (STA version).
2352 struct mwl8k_cmd_get_hw_spec_sta
{
2353 struct mwl8k_cmd_pkt header
;
2355 __u8 host_interface
;
2357 __u8 perm_addr
[ETH_ALEN
];
2362 __u8 mcs_bitmap
[16];
2363 __le32 rx_queue_ptr
;
2364 __le32 num_tx_queues
;
2365 __le32 tx_queue_ptrs
[MWL8K_TX_WMM_QUEUES
];
2367 __le32 num_tx_desc_per_queue
;
2371 #define MWL8K_CAP_MAX_AMSDU 0x20000000
2372 #define MWL8K_CAP_GREENFIELD 0x08000000
2373 #define MWL8K_CAP_AMPDU 0x04000000
2374 #define MWL8K_CAP_RX_STBC 0x01000000
2375 #define MWL8K_CAP_TX_STBC 0x00800000
2376 #define MWL8K_CAP_SHORTGI_40MHZ 0x00400000
2377 #define MWL8K_CAP_SHORTGI_20MHZ 0x00200000
2378 #define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000
2379 #define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000
2380 #define MWL8K_CAP_DELAY_BA 0x00003000
2381 #define MWL8K_CAP_MIMO 0x00000200
2382 #define MWL8K_CAP_40MHZ 0x00000100
2383 #define MWL8K_CAP_BAND_MASK 0x00000007
2384 #define MWL8K_CAP_5GHZ 0x00000004
2385 #define MWL8K_CAP_2GHZ4 0x00000001
2388 mwl8k_set_ht_caps(struct ieee80211_hw
*hw
,
2389 struct ieee80211_supported_band
*band
, u32 cap
)
2394 band
->ht_cap
.ht_supported
= 1;
2396 if (cap
& MWL8K_CAP_MAX_AMSDU
)
2397 band
->ht_cap
.cap
|= IEEE80211_HT_CAP_MAX_AMSDU
;
2398 if (cap
& MWL8K_CAP_GREENFIELD
)
2399 band
->ht_cap
.cap
|= IEEE80211_HT_CAP_GRN_FLD
;
2400 if (cap
& MWL8K_CAP_AMPDU
) {
2401 ieee80211_hw_set(hw
, AMPDU_AGGREGATION
);
2402 band
->ht_cap
.ampdu_factor
= IEEE80211_HT_MAX_AMPDU_64K
;
2403 band
->ht_cap
.ampdu_density
= IEEE80211_HT_MPDU_DENSITY_NONE
;
2405 if (cap
& MWL8K_CAP_RX_STBC
)
2406 band
->ht_cap
.cap
|= IEEE80211_HT_CAP_RX_STBC
;
2407 if (cap
& MWL8K_CAP_TX_STBC
)
2408 band
->ht_cap
.cap
|= IEEE80211_HT_CAP_TX_STBC
;
2409 if (cap
& MWL8K_CAP_SHORTGI_40MHZ
)
2410 band
->ht_cap
.cap
|= IEEE80211_HT_CAP_SGI_40
;
2411 if (cap
& MWL8K_CAP_SHORTGI_20MHZ
)
2412 band
->ht_cap
.cap
|= IEEE80211_HT_CAP_SGI_20
;
2413 if (cap
& MWL8K_CAP_DELAY_BA
)
2414 band
->ht_cap
.cap
|= IEEE80211_HT_CAP_DELAY_BA
;
2415 if (cap
& MWL8K_CAP_40MHZ
)
2416 band
->ht_cap
.cap
|= IEEE80211_HT_CAP_SUP_WIDTH_20_40
;
2418 rx_streams
= hweight32(cap
& MWL8K_CAP_RX_ANTENNA_MASK
);
2419 tx_streams
= hweight32(cap
& MWL8K_CAP_TX_ANTENNA_MASK
);
2421 band
->ht_cap
.mcs
.rx_mask
[0] = 0xff;
2422 if (rx_streams
>= 2)
2423 band
->ht_cap
.mcs
.rx_mask
[1] = 0xff;
2424 if (rx_streams
>= 3)
2425 band
->ht_cap
.mcs
.rx_mask
[2] = 0xff;
2426 band
->ht_cap
.mcs
.rx_mask
[4] = 0x01;
2427 band
->ht_cap
.mcs
.tx_params
= IEEE80211_HT_MCS_TX_DEFINED
;
2429 if (rx_streams
!= tx_streams
) {
2430 band
->ht_cap
.mcs
.tx_params
|= IEEE80211_HT_MCS_TX_RX_DIFF
;
2431 band
->ht_cap
.mcs
.tx_params
|= (tx_streams
- 1) <<
2432 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT
;
2437 mwl8k_set_caps(struct ieee80211_hw
*hw
, u32 caps
)
2439 struct mwl8k_priv
*priv
= hw
->priv
;
2444 if ((caps
& MWL8K_CAP_2GHZ4
) || !(caps
& MWL8K_CAP_BAND_MASK
)) {
2445 mwl8k_setup_2ghz_band(hw
);
2446 if (caps
& MWL8K_CAP_MIMO
)
2447 mwl8k_set_ht_caps(hw
, &priv
->band_24
, caps
);
2450 if (caps
& MWL8K_CAP_5GHZ
) {
2451 mwl8k_setup_5ghz_band(hw
);
2452 if (caps
& MWL8K_CAP_MIMO
)
2453 mwl8k_set_ht_caps(hw
, &priv
->band_50
, caps
);
2459 static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw
*hw
)
2461 struct mwl8k_priv
*priv
= hw
->priv
;
2462 struct mwl8k_cmd_get_hw_spec_sta
*cmd
;
2466 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2470 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_GET_HW_SPEC
);
2471 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2473 memset(cmd
->perm_addr
, 0xff, sizeof(cmd
->perm_addr
));
2474 cmd
->ps_cookie
= cpu_to_le32(priv
->cookie_dma
);
2475 cmd
->rx_queue_ptr
= cpu_to_le32(priv
->rxq
[0].rxd_dma
);
2476 cmd
->num_tx_queues
= cpu_to_le32(mwl8k_tx_queues(priv
));
2477 for (i
= 0; i
< mwl8k_tx_queues(priv
); i
++)
2478 cmd
->tx_queue_ptrs
[i
] = cpu_to_le32(priv
->txq
[i
].txd_dma
);
2479 cmd
->num_tx_desc_per_queue
= cpu_to_le32(MWL8K_TX_DESCS
);
2480 cmd
->total_rxd
= cpu_to_le32(MWL8K_RX_DESCS
);
2482 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2485 SET_IEEE80211_PERM_ADDR(hw
, cmd
->perm_addr
);
2486 priv
->num_mcaddrs
= le16_to_cpu(cmd
->num_mcaddrs
);
2487 priv
->fw_rev
= le32_to_cpu(cmd
->fw_rev
);
2488 priv
->hw_rev
= cmd
->hw_rev
;
2489 mwl8k_set_caps(hw
, le32_to_cpu(cmd
->caps
));
2490 priv
->ap_macids_supported
= 0x00000000;
2491 priv
->sta_macids_supported
= 0x00000001;
2499 * CMD_GET_HW_SPEC (AP version).
2501 struct mwl8k_cmd_get_hw_spec_ap
{
2502 struct mwl8k_cmd_pkt header
;
2504 __u8 host_interface
;
2507 __u8 perm_addr
[ETH_ALEN
];
2518 __le32 fw_api_version
;
2520 __le32 num_of_ampdu_queues
;
2521 __le32 wcbbase_ampdu
[MWL8K_MAX_AMPDU_QUEUES
];
2524 static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw
*hw
)
2526 struct mwl8k_priv
*priv
= hw
->priv
;
2527 struct mwl8k_cmd_get_hw_spec_ap
*cmd
;
2531 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2535 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_GET_HW_SPEC
);
2536 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2538 memset(cmd
->perm_addr
, 0xff, sizeof(cmd
->perm_addr
));
2539 cmd
->ps_cookie
= cpu_to_le32(priv
->cookie_dma
);
2541 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2546 api_version
= le32_to_cpu(cmd
->fw_api_version
);
2547 if (priv
->device_info
->fw_api_ap
!= api_version
) {
2548 printk(KERN_ERR
"%s: Unsupported fw API version for %s."
2549 " Expected %d got %d.\n", MWL8K_NAME
,
2550 priv
->device_info
->part_name
,
2551 priv
->device_info
->fw_api_ap
,
2556 SET_IEEE80211_PERM_ADDR(hw
, cmd
->perm_addr
);
2557 priv
->num_mcaddrs
= le16_to_cpu(cmd
->num_mcaddrs
);
2558 priv
->fw_rev
= le32_to_cpu(cmd
->fw_rev
);
2559 priv
->hw_rev
= cmd
->hw_rev
;
2560 mwl8k_set_caps(hw
, le32_to_cpu(cmd
->caps
));
2561 priv
->ap_macids_supported
= 0x000000ff;
2562 priv
->sta_macids_supported
= 0x00000100;
2563 priv
->num_ampdu_queues
= le32_to_cpu(cmd
->num_of_ampdu_queues
);
2564 if (priv
->num_ampdu_queues
> MWL8K_MAX_AMPDU_QUEUES
) {
2565 wiphy_warn(hw
->wiphy
, "fw reported %d ampdu queues"
2566 " but we only support %d.\n",
2567 priv
->num_ampdu_queues
,
2568 MWL8K_MAX_AMPDU_QUEUES
);
2569 priv
->num_ampdu_queues
= MWL8K_MAX_AMPDU_QUEUES
;
2571 off
= le32_to_cpu(cmd
->rxwrptr
) & 0xffff;
2572 iowrite32(priv
->rxq
[0].rxd_dma
, priv
->sram
+ off
);
2574 off
= le32_to_cpu(cmd
->rxrdptr
) & 0xffff;
2575 iowrite32(priv
->rxq
[0].rxd_dma
, priv
->sram
+ off
);
2577 priv
->txq_offset
[0] = le32_to_cpu(cmd
->wcbbase0
) & 0xffff;
2578 priv
->txq_offset
[1] = le32_to_cpu(cmd
->wcbbase1
) & 0xffff;
2579 priv
->txq_offset
[2] = le32_to_cpu(cmd
->wcbbase2
) & 0xffff;
2580 priv
->txq_offset
[3] = le32_to_cpu(cmd
->wcbbase3
) & 0xffff;
2582 for (i
= 0; i
< priv
->num_ampdu_queues
; i
++)
2583 priv
->txq_offset
[i
+ MWL8K_TX_WMM_QUEUES
] =
2584 le32_to_cpu(cmd
->wcbbase_ampdu
[i
]) & 0xffff;
2595 struct mwl8k_cmd_set_hw_spec
{
2596 struct mwl8k_cmd_pkt header
;
2598 __u8 host_interface
;
2600 __u8 perm_addr
[ETH_ALEN
];
2605 __le32 rx_queue_ptr
;
2606 __le32 num_tx_queues
;
2607 __le32 tx_queue_ptrs
[MWL8K_MAX_TX_QUEUES
];
2609 __le32 num_tx_desc_per_queue
;
2613 /* If enabled, MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY will cause
2614 * packets to expire 500 ms after the timestamp in the tx descriptor. That is,
2615 * the packets that are queued for more than 500ms, will be dropped in the
2616 * hardware. This helps minimizing the issues caused due to head-of-line
2617 * blocking where a slow client can hog the bandwidth and affect traffic to a
2620 #define MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY 0x00000400
2621 #define MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR 0x00000200
2622 #define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080
2623 #define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP 0x00000020
2624 #define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON 0x00000010
2626 static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw
*hw
)
2628 struct mwl8k_priv
*priv
= hw
->priv
;
2629 struct mwl8k_cmd_set_hw_spec
*cmd
;
2633 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2637 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_HW_SPEC
);
2638 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2640 cmd
->ps_cookie
= cpu_to_le32(priv
->cookie_dma
);
2641 cmd
->rx_queue_ptr
= cpu_to_le32(priv
->rxq
[0].rxd_dma
);
2642 cmd
->num_tx_queues
= cpu_to_le32(mwl8k_tx_queues(priv
));
2645 * Mac80211 stack has Q0 as highest priority and Q3 as lowest in
2646 * that order. Firmware has Q3 as highest priority and Q0 as lowest
2647 * in that order. Map Q3 of mac80211 to Q0 of firmware so that the
2648 * priority is interpreted the right way in firmware.
2650 for (i
= 0; i
< mwl8k_tx_queues(priv
); i
++) {
2651 int j
= mwl8k_tx_queues(priv
) - 1 - i
;
2652 cmd
->tx_queue_ptrs
[i
] = cpu_to_le32(priv
->txq
[j
].txd_dma
);
2655 cmd
->flags
= cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT
|
2656 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP
|
2657 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON
|
2658 MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY
|
2659 MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR
);
2660 cmd
->num_tx_desc_per_queue
= cpu_to_le32(MWL8K_TX_DESCS
);
2661 cmd
->total_rxd
= cpu_to_le32(MWL8K_RX_DESCS
);
2663 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2670 * CMD_MAC_MULTICAST_ADR.
2672 struct mwl8k_cmd_mac_multicast_adr
{
2673 struct mwl8k_cmd_pkt header
;
2676 __u8 addr
[][ETH_ALEN
];
2679 #define MWL8K_ENABLE_RX_DIRECTED 0x0001
2680 #define MWL8K_ENABLE_RX_MULTICAST 0x0002
2681 #define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004
2682 #define MWL8K_ENABLE_RX_BROADCAST 0x0008
2684 static struct mwl8k_cmd_pkt
*
2685 __mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw
*hw
, int allmulti
,
2686 struct netdev_hw_addr_list
*mc_list
)
2688 struct mwl8k_priv
*priv
= hw
->priv
;
2689 struct mwl8k_cmd_mac_multicast_adr
*cmd
;
2694 mc_count
= netdev_hw_addr_list_count(mc_list
);
2696 if (allmulti
|| mc_count
> priv
->num_mcaddrs
) {
2701 size
= sizeof(*cmd
) + mc_count
* ETH_ALEN
;
2703 cmd
= kzalloc(size
, GFP_ATOMIC
);
2707 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR
);
2708 cmd
->header
.length
= cpu_to_le16(size
);
2709 cmd
->action
= cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED
|
2710 MWL8K_ENABLE_RX_BROADCAST
);
2713 cmd
->action
|= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST
);
2714 } else if (mc_count
) {
2715 struct netdev_hw_addr
*ha
;
2718 cmd
->action
|= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST
);
2719 cmd
->numaddr
= cpu_to_le16(mc_count
);
2720 netdev_hw_addr_list_for_each(ha
, mc_list
) {
2721 memcpy(cmd
->addr
[i
], ha
->addr
, ETH_ALEN
);
2725 return &cmd
->header
;
2731 struct mwl8k_cmd_get_stat
{
2732 struct mwl8k_cmd_pkt header
;
2736 #define MWL8K_STAT_ACK_FAILURE 9
2737 #define MWL8K_STAT_RTS_FAILURE 12
2738 #define MWL8K_STAT_FCS_ERROR 24
2739 #define MWL8K_STAT_RTS_SUCCESS 11
2741 static int mwl8k_cmd_get_stat(struct ieee80211_hw
*hw
,
2742 struct ieee80211_low_level_stats
*stats
)
2744 struct mwl8k_cmd_get_stat
*cmd
;
2747 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2751 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_GET_STAT
);
2752 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2754 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2756 stats
->dot11ACKFailureCount
=
2757 le32_to_cpu(cmd
->stats
[MWL8K_STAT_ACK_FAILURE
]);
2758 stats
->dot11RTSFailureCount
=
2759 le32_to_cpu(cmd
->stats
[MWL8K_STAT_RTS_FAILURE
]);
2760 stats
->dot11FCSErrorCount
=
2761 le32_to_cpu(cmd
->stats
[MWL8K_STAT_FCS_ERROR
]);
2762 stats
->dot11RTSSuccessCount
=
2763 le32_to_cpu(cmd
->stats
[MWL8K_STAT_RTS_SUCCESS
]);
2771 * CMD_RADIO_CONTROL.
2773 struct mwl8k_cmd_radio_control
{
2774 struct mwl8k_cmd_pkt header
;
2781 mwl8k_cmd_radio_control(struct ieee80211_hw
*hw
, bool enable
, bool force
)
2783 struct mwl8k_priv
*priv
= hw
->priv
;
2784 struct mwl8k_cmd_radio_control
*cmd
;
2787 if (enable
== priv
->radio_on
&& !force
)
2790 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2794 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_RADIO_CONTROL
);
2795 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2796 cmd
->action
= cpu_to_le16(MWL8K_CMD_SET
);
2797 cmd
->control
= cpu_to_le16(priv
->radio_short_preamble
? 3 : 1);
2798 cmd
->radio_on
= cpu_to_le16(enable
? 0x0001 : 0x0000);
2800 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2804 priv
->radio_on
= enable
;
2809 static int mwl8k_cmd_radio_disable(struct ieee80211_hw
*hw
)
2811 return mwl8k_cmd_radio_control(hw
, 0, 0);
2814 static int mwl8k_cmd_radio_enable(struct ieee80211_hw
*hw
)
2816 return mwl8k_cmd_radio_control(hw
, 1, 0);
2820 mwl8k_set_radio_preamble(struct ieee80211_hw
*hw
, bool short_preamble
)
2822 struct mwl8k_priv
*priv
= hw
->priv
;
2824 priv
->radio_short_preamble
= short_preamble
;
2826 return mwl8k_cmd_radio_control(hw
, 1, 1);
2832 #define MWL8K_RF_TX_POWER_LEVEL_TOTAL 8
2834 struct mwl8k_cmd_rf_tx_power
{
2835 struct mwl8k_cmd_pkt header
;
2837 __le16 support_level
;
2838 __le16 current_level
;
2840 __le16 power_level_list
[MWL8K_RF_TX_POWER_LEVEL_TOTAL
];
2843 static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw
*hw
, int dBm
)
2845 struct mwl8k_cmd_rf_tx_power
*cmd
;
2848 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2852 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_RF_TX_POWER
);
2853 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2854 cmd
->action
= cpu_to_le16(MWL8K_CMD_SET
);
2855 cmd
->support_level
= cpu_to_le16(dBm
);
2857 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2866 #define MWL8K_TX_POWER_LEVEL_TOTAL 12
2868 struct mwl8k_cmd_tx_power
{
2869 struct mwl8k_cmd_pkt header
;
2875 __le16 power_level_list
[MWL8K_TX_POWER_LEVEL_TOTAL
];
2878 static int mwl8k_cmd_tx_power(struct ieee80211_hw
*hw
,
2879 struct ieee80211_conf
*conf
,
2882 struct ieee80211_channel
*channel
= conf
->chandef
.chan
;
2883 enum nl80211_channel_type channel_type
=
2884 cfg80211_get_chandef_type(&conf
->chandef
);
2885 struct mwl8k_cmd_tx_power
*cmd
;
2889 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2893 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_TX_POWER
);
2894 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2895 cmd
->action
= cpu_to_le16(MWL8K_CMD_SET_LIST
);
2897 if (channel
->band
== NL80211_BAND_2GHZ
)
2898 cmd
->band
= cpu_to_le16(0x1);
2899 else if (channel
->band
== NL80211_BAND_5GHZ
)
2900 cmd
->band
= cpu_to_le16(0x4);
2902 cmd
->channel
= cpu_to_le16(channel
->hw_value
);
2904 if (channel_type
== NL80211_CHAN_NO_HT
||
2905 channel_type
== NL80211_CHAN_HT20
) {
2906 cmd
->bw
= cpu_to_le16(0x2);
2908 cmd
->bw
= cpu_to_le16(0x4);
2909 if (channel_type
== NL80211_CHAN_HT40MINUS
)
2910 cmd
->sub_ch
= cpu_to_le16(0x3);
2911 else if (channel_type
== NL80211_CHAN_HT40PLUS
)
2912 cmd
->sub_ch
= cpu_to_le16(0x1);
2915 for (i
= 0; i
< MWL8K_TX_POWER_LEVEL_TOTAL
; i
++)
2916 cmd
->power_level_list
[i
] = cpu_to_le16(pwr
);
2918 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2927 struct mwl8k_cmd_rf_antenna
{
2928 struct mwl8k_cmd_pkt header
;
2933 #define MWL8K_RF_ANTENNA_RX 1
2934 #define MWL8K_RF_ANTENNA_TX 2
2937 mwl8k_cmd_rf_antenna(struct ieee80211_hw
*hw
, int antenna
, int mask
)
2939 struct mwl8k_cmd_rf_antenna
*cmd
;
2942 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2946 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_RF_ANTENNA
);
2947 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2948 cmd
->antenna
= cpu_to_le16(antenna
);
2949 cmd
->mode
= cpu_to_le16(mask
);
2951 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2960 struct mwl8k_cmd_set_beacon
{
2961 struct mwl8k_cmd_pkt header
;
2966 static int mwl8k_cmd_set_beacon(struct ieee80211_hw
*hw
,
2967 struct ieee80211_vif
*vif
, u8
*beacon
, int len
)
2969 struct mwl8k_cmd_set_beacon
*cmd
;
2972 cmd
= kzalloc(sizeof(*cmd
) + len
, GFP_KERNEL
);
2976 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_BEACON
);
2977 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
) + len
);
2978 cmd
->beacon_len
= cpu_to_le16(len
);
2979 memcpy(cmd
->beacon
, beacon
, len
);
2981 rc
= mwl8k_post_pervif_cmd(hw
, vif
, &cmd
->header
);
2990 struct mwl8k_cmd_set_pre_scan
{
2991 struct mwl8k_cmd_pkt header
;
2994 static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw
*hw
)
2996 struct mwl8k_cmd_set_pre_scan
*cmd
;
2999 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3003 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN
);
3004 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3006 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3013 * CMD_BBP_REG_ACCESS.
3015 struct mwl8k_cmd_bbp_reg_access
{
3016 struct mwl8k_cmd_pkt header
;
3024 mwl8k_cmd_bbp_reg_access(struct ieee80211_hw
*hw
,
3029 struct mwl8k_cmd_bbp_reg_access
*cmd
;
3032 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3036 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_BBP_REG_ACCESS
);
3037 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3038 cmd
->action
= cpu_to_le16(action
);
3039 cmd
->offset
= cpu_to_le16(offset
);
3041 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3044 *value
= cmd
->value
;
3054 * CMD_SET_POST_SCAN.
3056 struct mwl8k_cmd_set_post_scan
{
3057 struct mwl8k_cmd_pkt header
;
3059 __u8 bssid
[ETH_ALEN
];
3063 mwl8k_cmd_set_post_scan(struct ieee80211_hw
*hw
, const __u8
*mac
)
3065 struct mwl8k_cmd_set_post_scan
*cmd
;
3068 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3072 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_POST_SCAN
);
3073 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3075 memcpy(cmd
->bssid
, mac
, ETH_ALEN
);
3077 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3083 static int freq_to_idx(struct mwl8k_priv
*priv
, int freq
)
3085 struct ieee80211_supported_band
*sband
;
3086 int band
, ch
, idx
= 0;
3088 for (band
= NL80211_BAND_2GHZ
; band
< NUM_NL80211_BANDS
; band
++) {
3089 sband
= priv
->hw
->wiphy
->bands
[band
];
3093 for (ch
= 0; ch
< sband
->n_channels
; ch
++, idx
++)
3094 if (sband
->channels
[ch
].center_freq
== freq
)
3102 static void mwl8k_update_survey(struct mwl8k_priv
*priv
,
3103 struct ieee80211_channel
*channel
)
3105 u32 cca_cnt
, rx_rdy
;
3107 struct survey_info
*survey
;
3109 idx
= freq_to_idx(priv
, priv
->acs_chan
->center_freq
);
3110 if (idx
>= MWL8K_NUM_CHANS
) {
3111 wiphy_err(priv
->hw
->wiphy
, "Failed to update survey\n");
3115 survey
= &priv
->survey
[idx
];
3117 cca_cnt
= ioread32(priv
->regs
+ NOK_CCA_CNT_REG
);
3118 cca_cnt
/= 1000; /* uSecs to mSecs */
3119 survey
->time_busy
= (u64
) cca_cnt
;
3121 rx_rdy
= ioread32(priv
->regs
+ BBU_RXRDY_CNT_REG
);
3122 rx_rdy
/= 1000; /* uSecs to mSecs */
3123 survey
->time_rx
= (u64
) rx_rdy
;
3125 priv
->channel_time
= jiffies
- priv
->channel_time
;
3126 survey
->time
= jiffies_to_msecs(priv
->channel_time
);
3128 survey
->channel
= channel
;
3130 mwl8k_cmd_bbp_reg_access(priv
->hw
, 0, BBU_AVG_NOISE_VAL
, &nf
);
3132 /* Make sure sign is negative else ACS at hostapd fails */
3133 survey
->noise
= nf
* -1;
3135 survey
->filled
= SURVEY_INFO_NOISE_DBM
|
3137 SURVEY_INFO_TIME_BUSY
|
3138 SURVEY_INFO_TIME_RX
;
3142 * CMD_SET_RF_CHANNEL.
3144 struct mwl8k_cmd_set_rf_channel
{
3145 struct mwl8k_cmd_pkt header
;
3147 __u8 current_channel
;
3148 __le32 channel_flags
;
3151 static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw
*hw
,
3152 struct ieee80211_conf
*conf
)
3154 struct ieee80211_channel
*channel
= conf
->chandef
.chan
;
3155 enum nl80211_channel_type channel_type
=
3156 cfg80211_get_chandef_type(&conf
->chandef
);
3157 struct mwl8k_cmd_set_rf_channel
*cmd
;
3158 struct mwl8k_priv
*priv
= hw
->priv
;
3161 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3165 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL
);
3166 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3167 cmd
->action
= cpu_to_le16(MWL8K_CMD_SET
);
3168 cmd
->current_channel
= channel
->hw_value
;
3170 if (channel
->band
== NL80211_BAND_2GHZ
)
3171 cmd
->channel_flags
|= cpu_to_le32(0x00000001);
3172 else if (channel
->band
== NL80211_BAND_5GHZ
)
3173 cmd
->channel_flags
|= cpu_to_le32(0x00000004);
3175 if (!priv
->sw_scan_start
) {
3176 if (channel_type
== NL80211_CHAN_NO_HT
||
3177 channel_type
== NL80211_CHAN_HT20
)
3178 cmd
->channel_flags
|= cpu_to_le32(0x00000080);
3179 else if (channel_type
== NL80211_CHAN_HT40MINUS
)
3180 cmd
->channel_flags
|= cpu_to_le32(0x000001900);
3181 else if (channel_type
== NL80211_CHAN_HT40PLUS
)
3182 cmd
->channel_flags
|= cpu_to_le32(0x000000900);
3184 cmd
->channel_flags
|= cpu_to_le32(0x00000080);
3187 if (priv
->sw_scan_start
) {
3188 /* Store current channel stats
3189 * before switching to newer one.
3190 * This will be processed only for AP fw.
3192 if (priv
->channel_time
!= 0)
3193 mwl8k_update_survey(priv
, priv
->acs_chan
);
3195 priv
->channel_time
= jiffies
;
3196 priv
->acs_chan
= channel
;
3199 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3208 #define MWL8K_FRAME_PROT_DISABLED 0x00
3209 #define MWL8K_FRAME_PROT_11G 0x07
3210 #define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
3211 #define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
3213 struct mwl8k_cmd_update_set_aid
{
3214 struct mwl8k_cmd_pkt header
;
3217 /* AP's MAC address (BSSID) */
3218 __u8 bssid
[ETH_ALEN
];
3219 __le16 protection_mode
;
3220 __u8 supp_rates
[14];
3223 static void legacy_rate_mask_to_array(u8
*rates
, u32 mask
)
3229 * Clear nonstandard rate 4.
3233 for (i
= 0, j
= 0; i
< 13; i
++) {
3234 if (mask
& (1 << i
))
3235 rates
[j
++] = mwl8k_rates_24
[i
].hw_value
;
3240 mwl8k_cmd_set_aid(struct ieee80211_hw
*hw
,
3241 struct ieee80211_vif
*vif
, u32 legacy_rate_mask
)
3243 struct mwl8k_cmd_update_set_aid
*cmd
;
3247 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3251 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_AID
);
3252 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3253 cmd
->aid
= cpu_to_le16(vif
->bss_conf
.aid
);
3254 memcpy(cmd
->bssid
, vif
->bss_conf
.bssid
, ETH_ALEN
);
3256 if (vif
->bss_conf
.use_cts_prot
) {
3257 prot_mode
= MWL8K_FRAME_PROT_11G
;
3259 switch (vif
->bss_conf
.ht_operation_mode
&
3260 IEEE80211_HT_OP_MODE_PROTECTION
) {
3261 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ
:
3262 prot_mode
= MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY
;
3264 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED
:
3265 prot_mode
= MWL8K_FRAME_PROT_11N_HT_ALL
;
3268 prot_mode
= MWL8K_FRAME_PROT_DISABLED
;
3272 cmd
->protection_mode
= cpu_to_le16(prot_mode
);
3274 legacy_rate_mask_to_array(cmd
->supp_rates
, legacy_rate_mask
);
3276 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3285 struct mwl8k_cmd_set_rate
{
3286 struct mwl8k_cmd_pkt header
;
3287 __u8 legacy_rates
[14];
3289 /* Bitmap for supported MCS codes. */
3295 mwl8k_cmd_set_rate(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
,
3296 u32 legacy_rate_mask
, u8
*mcs_rates
)
3298 struct mwl8k_cmd_set_rate
*cmd
;
3301 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3305 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_RATE
);
3306 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3307 legacy_rate_mask_to_array(cmd
->legacy_rates
, legacy_rate_mask
);
3308 memcpy(cmd
->mcs_set
, mcs_rates
, 16);
3310 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3317 * CMD_FINALIZE_JOIN.
3319 #define MWL8K_FJ_BEACON_MAXLEN 128
3321 struct mwl8k_cmd_finalize_join
{
3322 struct mwl8k_cmd_pkt header
;
3323 __le32 sleep_interval
; /* Number of beacon periods to sleep */
3324 __u8 beacon_data
[MWL8K_FJ_BEACON_MAXLEN
];
3327 static int mwl8k_cmd_finalize_join(struct ieee80211_hw
*hw
, void *frame
,
3328 int framelen
, int dtim
)
3330 struct mwl8k_cmd_finalize_join
*cmd
;
3331 struct ieee80211_mgmt
*payload
= frame
;
3335 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3339 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN
);
3340 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3341 cmd
->sleep_interval
= cpu_to_le32(dtim
? dtim
: 1);
3343 payload_len
= framelen
- ieee80211_hdrlen(payload
->frame_control
);
3344 if (payload_len
< 0)
3346 else if (payload_len
> MWL8K_FJ_BEACON_MAXLEN
)
3347 payload_len
= MWL8K_FJ_BEACON_MAXLEN
;
3349 memcpy(cmd
->beacon_data
, &payload
->u
.beacon
, payload_len
);
3351 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3358 * CMD_SET_RTS_THRESHOLD.
3360 struct mwl8k_cmd_set_rts_threshold
{
3361 struct mwl8k_cmd_pkt header
;
3367 mwl8k_cmd_set_rts_threshold(struct ieee80211_hw
*hw
, int rts_thresh
)
3369 struct mwl8k_cmd_set_rts_threshold
*cmd
;
3372 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3376 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD
);
3377 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3378 cmd
->action
= cpu_to_le16(MWL8K_CMD_SET
);
3379 cmd
->threshold
= cpu_to_le16(rts_thresh
);
3381 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3390 struct mwl8k_cmd_set_slot
{
3391 struct mwl8k_cmd_pkt header
;
3396 static int mwl8k_cmd_set_slot(struct ieee80211_hw
*hw
, bool short_slot_time
)
3398 struct mwl8k_cmd_set_slot
*cmd
;
3401 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3405 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_SLOT
);
3406 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3407 cmd
->action
= cpu_to_le16(MWL8K_CMD_SET
);
3408 cmd
->short_slot
= short_slot_time
;
3410 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3417 * CMD_SET_EDCA_PARAMS.
3419 struct mwl8k_cmd_set_edca_params
{
3420 struct mwl8k_cmd_pkt header
;
3422 /* See MWL8K_SET_EDCA_XXX below */
3425 /* TX opportunity in units of 32 us */
3430 /* Log exponent of max contention period: 0...15 */
3433 /* Log exponent of min contention period: 0...15 */
3436 /* Adaptive interframe spacing in units of 32us */
3439 /* TX queue to configure */
3443 /* Log exponent of max contention period: 0...15 */
3446 /* Log exponent of min contention period: 0...15 */
3449 /* Adaptive interframe spacing in units of 32us */
3452 /* TX queue to configure */
3458 #define MWL8K_SET_EDCA_CW 0x01
3459 #define MWL8K_SET_EDCA_TXOP 0x02
3460 #define MWL8K_SET_EDCA_AIFS 0x04
3462 #define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
3463 MWL8K_SET_EDCA_TXOP | \
3464 MWL8K_SET_EDCA_AIFS)
3467 mwl8k_cmd_set_edca_params(struct ieee80211_hw
*hw
, __u8 qnum
,
3468 __u16 cw_min
, __u16 cw_max
,
3469 __u8 aifs
, __u16 txop
)
3471 struct mwl8k_priv
*priv
= hw
->priv
;
3472 struct mwl8k_cmd_set_edca_params
*cmd
;
3475 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3479 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS
);
3480 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3481 cmd
->action
= cpu_to_le16(MWL8K_SET_EDCA_ALL
);
3482 cmd
->txop
= cpu_to_le16(txop
);
3484 cmd
->ap
.log_cw_max
= cpu_to_le32(ilog2(cw_max
+ 1));
3485 cmd
->ap
.log_cw_min
= cpu_to_le32(ilog2(cw_min
+ 1));
3486 cmd
->ap
.aifs
= aifs
;
3489 cmd
->sta
.log_cw_max
= (u8
)ilog2(cw_max
+ 1);
3490 cmd
->sta
.log_cw_min
= (u8
)ilog2(cw_min
+ 1);
3491 cmd
->sta
.aifs
= aifs
;
3492 cmd
->sta
.txq
= qnum
;
3495 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3504 struct mwl8k_cmd_set_wmm_mode
{
3505 struct mwl8k_cmd_pkt header
;
3509 static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw
*hw
, bool enable
)
3511 struct mwl8k_priv
*priv
= hw
->priv
;
3512 struct mwl8k_cmd_set_wmm_mode
*cmd
;
3515 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3519 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_WMM_MODE
);
3520 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3521 cmd
->action
= cpu_to_le16(!!enable
);
3523 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3527 priv
->wmm_enabled
= enable
;
3535 struct mwl8k_cmd_mimo_config
{
3536 struct mwl8k_cmd_pkt header
;
3538 __u8 rx_antenna_map
;
3539 __u8 tx_antenna_map
;
3542 static int mwl8k_cmd_mimo_config(struct ieee80211_hw
*hw
, __u8 rx
, __u8 tx
)
3544 struct mwl8k_cmd_mimo_config
*cmd
;
3547 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3551 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_MIMO_CONFIG
);
3552 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3553 cmd
->action
= cpu_to_le32((u32
)MWL8K_CMD_SET
);
3554 cmd
->rx_antenna_map
= rx
;
3555 cmd
->tx_antenna_map
= tx
;
3557 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3564 * CMD_USE_FIXED_RATE (STA version).
3566 struct mwl8k_cmd_use_fixed_rate_sta
{
3567 struct mwl8k_cmd_pkt header
;
3569 __le32 allow_rate_drop
;
3573 __le32 enable_retry
;
3582 #define MWL8K_USE_AUTO_RATE 0x0002
3583 #define MWL8K_UCAST_RATE 0
3585 static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw
*hw
)
3587 struct mwl8k_cmd_use_fixed_rate_sta
*cmd
;
3590 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3594 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE
);
3595 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3596 cmd
->action
= cpu_to_le32(MWL8K_USE_AUTO_RATE
);
3597 cmd
->rate_type
= cpu_to_le32(MWL8K_UCAST_RATE
);
3599 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3606 * CMD_USE_FIXED_RATE (AP version).
3608 struct mwl8k_cmd_use_fixed_rate_ap
{
3609 struct mwl8k_cmd_pkt header
;
3611 __le32 allow_rate_drop
;
3613 struct mwl8k_rate_entry_ap
{
3615 __le32 enable_retry
;
3620 u8 multicast_rate_type
;
3625 mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw
*hw
, int mcast
, int mgmt
)
3627 struct mwl8k_cmd_use_fixed_rate_ap
*cmd
;
3630 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3634 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE
);
3635 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3636 cmd
->action
= cpu_to_le32(MWL8K_USE_AUTO_RATE
);
3637 cmd
->multicast_rate
= mcast
;
3638 cmd
->management_rate
= mgmt
;
3640 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3647 * CMD_ENABLE_SNIFFER.
3649 struct mwl8k_cmd_enable_sniffer
{
3650 struct mwl8k_cmd_pkt header
;
3654 static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw
*hw
, bool enable
)
3656 struct mwl8k_cmd_enable_sniffer
*cmd
;
3659 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3663 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER
);
3664 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3665 cmd
->action
= cpu_to_le32(!!enable
);
3667 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3673 struct mwl8k_cmd_update_mac_addr
{
3674 struct mwl8k_cmd_pkt header
;
3678 __u8 mac_addr
[ETH_ALEN
];
3680 __u8 mac_addr
[ETH_ALEN
];
3684 #define MWL8K_MAC_TYPE_PRIMARY_CLIENT 0
3685 #define MWL8K_MAC_TYPE_SECONDARY_CLIENT 1
3686 #define MWL8K_MAC_TYPE_PRIMARY_AP 2
3687 #define MWL8K_MAC_TYPE_SECONDARY_AP 3
3689 static int mwl8k_cmd_update_mac_addr(struct ieee80211_hw
*hw
,
3690 struct ieee80211_vif
*vif
, u8
*mac
, bool set
)
3692 struct mwl8k_priv
*priv
= hw
->priv
;
3693 struct mwl8k_vif
*mwl8k_vif
= MWL8K_VIF(vif
);
3694 struct mwl8k_cmd_update_mac_addr
*cmd
;
3698 mac_type
= MWL8K_MAC_TYPE_PRIMARY_AP
;
3699 if (vif
!= NULL
&& vif
->type
== NL80211_IFTYPE_STATION
) {
3700 if (mwl8k_vif
->macid
+ 1 == ffs(priv
->sta_macids_supported
))
3702 mac_type
= MWL8K_MAC_TYPE_SECONDARY_CLIENT
;
3704 mac_type
= MWL8K_MAC_TYPE_PRIMARY_CLIENT
;
3706 mac_type
= MWL8K_MAC_TYPE_SECONDARY_CLIENT
;
3707 } else if (vif
!= NULL
&& vif
->type
== NL80211_IFTYPE_AP
) {
3708 if (mwl8k_vif
->macid
+ 1 == ffs(priv
->ap_macids_supported
))
3709 mac_type
= MWL8K_MAC_TYPE_PRIMARY_AP
;
3711 mac_type
= MWL8K_MAC_TYPE_SECONDARY_AP
;
3714 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3719 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR
);
3721 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_DEL_MAC_ADDR
);
3723 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3725 cmd
->mbss
.mac_type
= cpu_to_le16(mac_type
);
3726 memcpy(cmd
->mbss
.mac_addr
, mac
, ETH_ALEN
);
3728 memcpy(cmd
->mac_addr
, mac
, ETH_ALEN
);
3731 rc
= mwl8k_post_pervif_cmd(hw
, vif
, &cmd
->header
);
3738 * MWL8K_CMD_SET_MAC_ADDR.
3740 static inline int mwl8k_cmd_set_mac_addr(struct ieee80211_hw
*hw
,
3741 struct ieee80211_vif
*vif
, u8
*mac
)
3743 return mwl8k_cmd_update_mac_addr(hw
, vif
, mac
, true);
3747 * MWL8K_CMD_DEL_MAC_ADDR.
3749 static inline int mwl8k_cmd_del_mac_addr(struct ieee80211_hw
*hw
,
3750 struct ieee80211_vif
*vif
, u8
*mac
)
3752 return mwl8k_cmd_update_mac_addr(hw
, vif
, mac
, false);
3756 * CMD_SET_RATEADAPT_MODE.
3758 struct mwl8k_cmd_set_rate_adapt_mode
{
3759 struct mwl8k_cmd_pkt header
;
3764 static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw
*hw
, __u16 mode
)
3766 struct mwl8k_cmd_set_rate_adapt_mode
*cmd
;
3769 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3773 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE
);
3774 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3775 cmd
->action
= cpu_to_le16(MWL8K_CMD_SET
);
3776 cmd
->mode
= cpu_to_le16(mode
);
3778 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3785 * CMD_GET_WATCHDOG_BITMAP.
3787 struct mwl8k_cmd_get_watchdog_bitmap
{
3788 struct mwl8k_cmd_pkt header
;
3792 static int mwl8k_cmd_get_watchdog_bitmap(struct ieee80211_hw
*hw
, u8
*bitmap
)
3794 struct mwl8k_cmd_get_watchdog_bitmap
*cmd
;
3797 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3801 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_GET_WATCHDOG_BITMAP
);
3802 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3804 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
3806 *bitmap
= cmd
->bitmap
;
3813 #define MWL8K_WMM_QUEUE_NUMBER 3
3815 static void mwl8k_destroy_ba(struct ieee80211_hw
*hw
,
3818 static void mwl8k_watchdog_ba_events(struct work_struct
*work
)
3821 u8 bitmap
= 0, stream_index
;
3822 struct mwl8k_ampdu_stream
*streams
;
3823 struct mwl8k_priv
*priv
=
3824 container_of(work
, struct mwl8k_priv
, watchdog_ba_handle
);
3825 struct ieee80211_hw
*hw
= priv
->hw
;
3831 rc
= mwl8k_cmd_get_watchdog_bitmap(priv
->hw
, &bitmap
);
3835 spin_lock(&priv
->stream_lock
);
3837 /* the bitmap is the hw queue number. Map it to the ampdu queue. */
3838 for (i
= 0; i
< TOTAL_HW_TX_QUEUES
; i
++) {
3839 if (bitmap
& (1 << i
)) {
3840 stream_index
= (i
+ MWL8K_WMM_QUEUE_NUMBER
) %
3842 streams
= &priv
->ampdu
[stream_index
];
3843 if (streams
->state
== AMPDU_STREAM_ACTIVE
) {
3844 ieee80211_stop_tx_ba_session(streams
->sta
,
3846 spin_unlock(&priv
->stream_lock
);
3847 mwl8k_destroy_ba(hw
, stream_index
);
3848 spin_lock(&priv
->stream_lock
);
3853 spin_unlock(&priv
->stream_lock
);
3855 atomic_dec(&priv
->watchdog_event_pending
);
3856 status
= ioread32(priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK
);
3857 iowrite32((status
| MWL8K_A2H_INT_BA_WATCHDOG
),
3858 priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK
);
3859 mwl8k_fw_unlock(hw
);
3867 struct mwl8k_cmd_bss_start
{
3868 struct mwl8k_cmd_pkt header
;
3872 static int mwl8k_cmd_bss_start(struct ieee80211_hw
*hw
,
3873 struct ieee80211_vif
*vif
, int enable
)
3875 struct mwl8k_cmd_bss_start
*cmd
;
3876 struct mwl8k_vif
*mwl8k_vif
= MWL8K_VIF(vif
);
3877 struct mwl8k_priv
*priv
= hw
->priv
;
3880 if (enable
&& (priv
->running_bsses
& (1 << mwl8k_vif
->macid
)))
3883 if (!enable
&& !(priv
->running_bsses
& (1 << mwl8k_vif
->macid
)))
3886 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3890 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_BSS_START
);
3891 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3892 cmd
->enable
= cpu_to_le32(enable
);
3894 rc
= mwl8k_post_pervif_cmd(hw
, vif
, &cmd
->header
);
3899 priv
->running_bsses
|= (1 << mwl8k_vif
->macid
);
3901 priv
->running_bsses
&= ~(1 << mwl8k_vif
->macid
);
3906 static void mwl8k_enable_bsses(struct ieee80211_hw
*hw
, bool enable
, u32 bitmap
)
3908 struct mwl8k_priv
*priv
= hw
->priv
;
3909 struct mwl8k_vif
*mwl8k_vif
, *tmp_vif
;
3910 struct ieee80211_vif
*vif
;
3912 list_for_each_entry_safe(mwl8k_vif
, tmp_vif
, &priv
->vif_list
, list
) {
3913 vif
= mwl8k_vif
->vif
;
3915 if (!(bitmap
& (1 << mwl8k_vif
->macid
)))
3918 if (vif
->type
== NL80211_IFTYPE_AP
)
3919 mwl8k_cmd_bss_start(hw
, vif
, enable
);
3927 * UPSTREAM is tx direction
3929 #define BASTREAM_FLAG_DIRECTION_UPSTREAM 0x00
3930 #define BASTREAM_FLAG_IMMEDIATE_TYPE 0x01
3932 enum ba_stream_action_type
{
3941 struct mwl8k_create_ba_stream
{
3946 u8 peer_mac_addr
[6];
3952 u8 reset_seq_no_flag
;
3954 u8 sta_src_mac_addr
[6];
3957 struct mwl8k_destroy_ba_stream
{
3962 struct mwl8k_cmd_bastream
{
3963 struct mwl8k_cmd_pkt header
;
3966 struct mwl8k_create_ba_stream create_params
;
3967 struct mwl8k_destroy_ba_stream destroy_params
;
3972 mwl8k_check_ba(struct ieee80211_hw
*hw
, struct mwl8k_ampdu_stream
*stream
,
3973 struct ieee80211_vif
*vif
)
3975 struct mwl8k_cmd_bastream
*cmd
;
3978 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
3982 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_BASTREAM
);
3983 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
3985 cmd
->action
= cpu_to_le32(MWL8K_BA_CHECK
);
3987 cmd
->create_params
.queue_id
= stream
->idx
;
3988 memcpy(&cmd
->create_params
.peer_mac_addr
[0], stream
->sta
->addr
,
3990 cmd
->create_params
.tid
= stream
->tid
;
3992 cmd
->create_params
.flags
=
3993 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE
) |
3994 cpu_to_le32(BASTREAM_FLAG_DIRECTION_UPSTREAM
);
3996 rc
= mwl8k_post_pervif_cmd(hw
, vif
, &cmd
->header
);
4004 mwl8k_create_ba(struct ieee80211_hw
*hw
, struct mwl8k_ampdu_stream
*stream
,
4005 u8 buf_size
, struct ieee80211_vif
*vif
)
4007 struct mwl8k_cmd_bastream
*cmd
;
4010 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
4015 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_BASTREAM
);
4016 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
4018 cmd
->action
= cpu_to_le32(MWL8K_BA_CREATE
);
4020 cmd
->create_params
.bar_thrs
= cpu_to_le32((u32
)buf_size
);
4021 cmd
->create_params
.window_size
= cpu_to_le32((u32
)buf_size
);
4022 cmd
->create_params
.queue_id
= stream
->idx
;
4024 memcpy(cmd
->create_params
.peer_mac_addr
, stream
->sta
->addr
, ETH_ALEN
);
4025 cmd
->create_params
.tid
= stream
->tid
;
4026 cmd
->create_params
.curr_seq_no
= cpu_to_le16(0);
4027 cmd
->create_params
.reset_seq_no_flag
= 1;
4029 cmd
->create_params
.param_info
=
4030 (stream
->sta
->ht_cap
.ampdu_factor
&
4031 IEEE80211_HT_AMPDU_PARM_FACTOR
) |
4032 ((stream
->sta
->ht_cap
.ampdu_density
<< 2) &
4033 IEEE80211_HT_AMPDU_PARM_DENSITY
);
4035 cmd
->create_params
.flags
=
4036 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE
|
4037 BASTREAM_FLAG_DIRECTION_UPSTREAM
);
4039 rc
= mwl8k_post_pervif_cmd(hw
, vif
, &cmd
->header
);
4041 wiphy_debug(hw
->wiphy
, "Created a BA stream for %pM : tid %d\n",
4042 stream
->sta
->addr
, stream
->tid
);
4048 static void mwl8k_destroy_ba(struct ieee80211_hw
*hw
,
4051 struct mwl8k_cmd_bastream
*cmd
;
4053 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
4057 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_BASTREAM
);
4058 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
4059 cmd
->action
= cpu_to_le32(MWL8K_BA_DESTROY
);
4061 cmd
->destroy_params
.ba_context
= cpu_to_le32(idx
);
4062 mwl8k_post_cmd(hw
, &cmd
->header
);
4064 wiphy_debug(hw
->wiphy
, "Deleted BA stream index %d\n", idx
);
4072 struct mwl8k_cmd_set_new_stn
{
4073 struct mwl8k_cmd_pkt header
;
4079 __le32 legacy_rates
;
4082 __le16 ht_capabilities_info
;
4083 __u8 mac_ht_param_info
;
4085 __u8 control_channel
;
4094 #define MWL8K_STA_ACTION_ADD 0
4095 #define MWL8K_STA_ACTION_REMOVE 2
4097 static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw
*hw
,
4098 struct ieee80211_vif
*vif
,
4099 struct ieee80211_sta
*sta
)
4101 struct mwl8k_cmd_set_new_stn
*cmd
;
4105 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
4109 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_NEW_STN
);
4110 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
4111 cmd
->aid
= cpu_to_le16(sta
->aid
);
4112 memcpy(cmd
->mac_addr
, sta
->addr
, ETH_ALEN
);
4113 cmd
->stn_id
= cpu_to_le16(sta
->aid
);
4114 cmd
->action
= cpu_to_le16(MWL8K_STA_ACTION_ADD
);
4115 if (hw
->conf
.chandef
.chan
->band
== NL80211_BAND_2GHZ
)
4116 rates
= sta
->supp_rates
[NL80211_BAND_2GHZ
];
4118 rates
= sta
->supp_rates
[NL80211_BAND_5GHZ
] << 5;
4119 cmd
->legacy_rates
= cpu_to_le32(rates
);
4120 if (sta
->ht_cap
.ht_supported
) {
4121 cmd
->ht_rates
[0] = sta
->ht_cap
.mcs
.rx_mask
[0];
4122 cmd
->ht_rates
[1] = sta
->ht_cap
.mcs
.rx_mask
[1];
4123 cmd
->ht_rates
[2] = sta
->ht_cap
.mcs
.rx_mask
[2];
4124 cmd
->ht_rates
[3] = sta
->ht_cap
.mcs
.rx_mask
[3];
4125 cmd
->ht_capabilities_info
= cpu_to_le16(sta
->ht_cap
.cap
);
4126 cmd
->mac_ht_param_info
= (sta
->ht_cap
.ampdu_factor
& 3) |
4127 ((sta
->ht_cap
.ampdu_density
& 7) << 2);
4128 cmd
->is_qos_sta
= 1;
4131 rc
= mwl8k_post_pervif_cmd(hw
, vif
, &cmd
->header
);
4137 static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw
*hw
,
4138 struct ieee80211_vif
*vif
)
4140 struct mwl8k_cmd_set_new_stn
*cmd
;
4143 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
4147 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_NEW_STN
);
4148 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
4149 memcpy(cmd
->mac_addr
, vif
->addr
, ETH_ALEN
);
4151 rc
= mwl8k_post_pervif_cmd(hw
, vif
, &cmd
->header
);
4157 static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw
*hw
,
4158 struct ieee80211_vif
*vif
, u8
*addr
)
4160 struct mwl8k_cmd_set_new_stn
*cmd
;
4161 struct mwl8k_priv
*priv
= hw
->priv
;
4165 spin_lock(&priv
->stream_lock
);
4166 /* Destroy any active ampdu streams for this sta */
4167 for (i
= 0; i
< MWL8K_NUM_AMPDU_STREAMS
; i
++) {
4168 struct mwl8k_ampdu_stream
*s
;
4169 s
= &priv
->ampdu
[i
];
4170 if (s
->state
!= AMPDU_NO_STREAM
) {
4171 if (memcmp(s
->sta
->addr
, addr
, ETH_ALEN
) == 0) {
4172 if (s
->state
== AMPDU_STREAM_ACTIVE
) {
4174 spin_unlock(&priv
->stream_lock
);
4175 mwl8k_destroy_ba(hw
, idx
);
4176 spin_lock(&priv
->stream_lock
);
4177 } else if (s
->state
== AMPDU_STREAM_NEW
) {
4178 mwl8k_remove_stream(hw
, s
);
4184 spin_unlock(&priv
->stream_lock
);
4186 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
4190 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_NEW_STN
);
4191 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
4192 memcpy(cmd
->mac_addr
, addr
, ETH_ALEN
);
4193 cmd
->action
= cpu_to_le16(MWL8K_STA_ACTION_REMOVE
);
4195 rc
= mwl8k_post_pervif_cmd(hw
, vif
, &cmd
->header
);
4202 * CMD_UPDATE_ENCRYPTION.
4205 #define MAX_ENCR_KEY_LENGTH 16
4206 #define MIC_KEY_LENGTH 8
4208 struct mwl8k_cmd_update_encryption
{
4209 struct mwl8k_cmd_pkt header
;
4218 struct mwl8k_cmd_set_key
{
4219 struct mwl8k_cmd_pkt header
;
4228 __u8 key_material
[MAX_ENCR_KEY_LENGTH
];
4229 __u8 tkip_tx_mic_key
[MIC_KEY_LENGTH
];
4230 __u8 tkip_rx_mic_key
[MIC_KEY_LENGTH
];
4231 __le16 tkip_rsc_low
;
4232 __le32 tkip_rsc_high
;
4233 __le16 tkip_tsc_low
;
4234 __le32 tkip_tsc_high
;
4241 MWL8K_ENCR_REMOVE_KEY
,
4242 MWL8K_ENCR_SET_GROUP_KEY
,
4245 #define MWL8K_UPDATE_ENCRYPTION_TYPE_WEP 0
4246 #define MWL8K_UPDATE_ENCRYPTION_TYPE_DISABLE 1
4247 #define MWL8K_UPDATE_ENCRYPTION_TYPE_TKIP 4
4248 #define MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED 7
4249 #define MWL8K_UPDATE_ENCRYPTION_TYPE_AES 8
4257 #define MWL8K_KEY_FLAG_TXGROUPKEY 0x00000004
4258 #define MWL8K_KEY_FLAG_PAIRWISE 0x00000008
4259 #define MWL8K_KEY_FLAG_TSC_VALID 0x00000040
4260 #define MWL8K_KEY_FLAG_WEP_TXKEY 0x01000000
4261 #define MWL8K_KEY_FLAG_MICKEY_VALID 0x02000000
4263 static int mwl8k_cmd_update_encryption_enable(struct ieee80211_hw
*hw
,
4264 struct ieee80211_vif
*vif
,
4268 struct mwl8k_cmd_update_encryption
*cmd
;
4271 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
4275 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION
);
4276 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
4277 cmd
->action
= cpu_to_le32(MWL8K_ENCR_ENABLE
);
4278 memcpy(cmd
->mac_addr
, addr
, ETH_ALEN
);
4279 cmd
->encr_type
= encr_type
;
4281 rc
= mwl8k_post_pervif_cmd(hw
, vif
, &cmd
->header
);
4287 static int mwl8k_encryption_set_cmd_info(struct mwl8k_cmd_set_key
*cmd
,
4289 struct ieee80211_key_conf
*key
)
4291 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION
);
4292 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
4293 cmd
->length
= cpu_to_le16(sizeof(*cmd
) -
4294 offsetof(struct mwl8k_cmd_set_key
, length
));
4295 cmd
->key_id
= cpu_to_le32(key
->keyidx
);
4296 cmd
->key_len
= cpu_to_le16(key
->keylen
);
4297 memcpy(cmd
->mac_addr
, addr
, ETH_ALEN
);
4299 switch (key
->cipher
) {
4300 case WLAN_CIPHER_SUITE_WEP40
:
4301 case WLAN_CIPHER_SUITE_WEP104
:
4302 cmd
->key_type_id
= cpu_to_le16(MWL8K_ALG_WEP
);
4303 if (key
->keyidx
== 0)
4304 cmd
->key_info
= cpu_to_le32(MWL8K_KEY_FLAG_WEP_TXKEY
);
4307 case WLAN_CIPHER_SUITE_TKIP
:
4308 cmd
->key_type_id
= cpu_to_le16(MWL8K_ALG_TKIP
);
4309 cmd
->key_info
= (key
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
)
4310 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE
)
4311 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY
);
4312 cmd
->key_info
|= cpu_to_le32(MWL8K_KEY_FLAG_MICKEY_VALID
4313 | MWL8K_KEY_FLAG_TSC_VALID
);
4315 case WLAN_CIPHER_SUITE_CCMP
:
4316 cmd
->key_type_id
= cpu_to_le16(MWL8K_ALG_CCMP
);
4317 cmd
->key_info
= (key
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
)
4318 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE
)
4319 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY
);
4328 static int mwl8k_cmd_encryption_set_key(struct ieee80211_hw
*hw
,
4329 struct ieee80211_vif
*vif
,
4331 struct ieee80211_key_conf
*key
)
4333 struct mwl8k_cmd_set_key
*cmd
;
4338 struct mwl8k_vif
*mwl8k_vif
= MWL8K_VIF(vif
);
4340 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
4344 rc
= mwl8k_encryption_set_cmd_info(cmd
, addr
, key
);
4350 if (key
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
)
4351 action
= MWL8K_ENCR_SET_KEY
;
4353 action
= MWL8K_ENCR_SET_GROUP_KEY
;
4355 switch (key
->cipher
) {
4356 case WLAN_CIPHER_SUITE_WEP40
:
4357 case WLAN_CIPHER_SUITE_WEP104
:
4358 if (!mwl8k_vif
->wep_key_conf
[idx
].enabled
) {
4359 memcpy(mwl8k_vif
->wep_key_conf
[idx
].key
, key
,
4360 sizeof(*key
) + key
->keylen
);
4361 mwl8k_vif
->wep_key_conf
[idx
].enabled
= 1;
4364 keymlen
= key
->keylen
;
4365 action
= MWL8K_ENCR_SET_KEY
;
4367 case WLAN_CIPHER_SUITE_TKIP
:
4368 keymlen
= MAX_ENCR_KEY_LENGTH
+ 2 * MIC_KEY_LENGTH
;
4370 case WLAN_CIPHER_SUITE_CCMP
:
4371 keymlen
= key
->keylen
;
4378 memcpy(cmd
->key_material
, key
->key
, keymlen
);
4379 cmd
->action
= cpu_to_le32(action
);
4381 rc
= mwl8k_post_pervif_cmd(hw
, vif
, &cmd
->header
);
4388 static int mwl8k_cmd_encryption_remove_key(struct ieee80211_hw
*hw
,
4389 struct ieee80211_vif
*vif
,
4391 struct ieee80211_key_conf
*key
)
4393 struct mwl8k_cmd_set_key
*cmd
;
4395 struct mwl8k_vif
*mwl8k_vif
= MWL8K_VIF(vif
);
4397 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
4401 rc
= mwl8k_encryption_set_cmd_info(cmd
, addr
, key
);
4405 if (key
->cipher
== WLAN_CIPHER_SUITE_WEP40
||
4406 key
->cipher
== WLAN_CIPHER_SUITE_WEP104
)
4407 mwl8k_vif
->wep_key_conf
[key
->keyidx
].enabled
= 0;
4409 cmd
->action
= cpu_to_le32(MWL8K_ENCR_REMOVE_KEY
);
4411 rc
= mwl8k_post_pervif_cmd(hw
, vif
, &cmd
->header
);
4418 static int mwl8k_set_key(struct ieee80211_hw
*hw
,
4419 enum set_key_cmd cmd_param
,
4420 struct ieee80211_vif
*vif
,
4421 struct ieee80211_sta
*sta
,
4422 struct ieee80211_key_conf
*key
)
4427 struct mwl8k_vif
*mwl8k_vif
= MWL8K_VIF(vif
);
4428 struct mwl8k_priv
*priv
= hw
->priv
;
4430 if (vif
->type
== NL80211_IFTYPE_STATION
&& !priv
->ap_fw
)
4438 if (cmd_param
== SET_KEY
) {
4439 rc
= mwl8k_cmd_encryption_set_key(hw
, vif
, addr
, key
);
4443 if ((key
->cipher
== WLAN_CIPHER_SUITE_WEP40
)
4444 || (key
->cipher
== WLAN_CIPHER_SUITE_WEP104
))
4445 encr_type
= MWL8K_UPDATE_ENCRYPTION_TYPE_WEP
;
4447 encr_type
= MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED
;
4449 rc
= mwl8k_cmd_update_encryption_enable(hw
, vif
, addr
,
4454 mwl8k_vif
->is_hw_crypto_enabled
= true;
4457 rc
= mwl8k_cmd_encryption_remove_key(hw
, vif
, addr
, key
);
4469 struct ewc_ht_info
{
4475 struct peer_capability_info
{
4476 /* Peer type - AP vs. STA. */
4479 /* Basic 802.11 capabilities from assoc resp. */
4482 /* Set if peer supports 802.11n high throughput (HT). */
4485 /* Valid if HT is supported. */
4487 __u8 extended_ht_caps
;
4488 struct ewc_ht_info ewc_info
;
4490 /* Legacy rate table. Intersection of our rates and peer rates. */
4491 __u8 legacy_rates
[12];
4493 /* HT rate table. Intersection of our rates and peer rates. */
4497 /* If set, interoperability mode, no proprietary extensions. */
4501 __le16 amsdu_enabled
;
4504 struct mwl8k_cmd_update_stadb
{
4505 struct mwl8k_cmd_pkt header
;
4507 /* See STADB_ACTION_TYPE */
4510 /* Peer MAC address */
4511 __u8 peer_addr
[ETH_ALEN
];
4515 /* Peer info - valid during add/update. */
4516 struct peer_capability_info peer_info
;
4519 #define MWL8K_STA_DB_MODIFY_ENTRY 1
4520 #define MWL8K_STA_DB_DEL_ENTRY 2
4522 /* Peer Entry flags - used to define the type of the peer node */
4523 #define MWL8K_PEER_TYPE_ACCESSPOINT 2
4525 static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw
*hw
,
4526 struct ieee80211_vif
*vif
,
4527 struct ieee80211_sta
*sta
)
4529 struct mwl8k_cmd_update_stadb
*cmd
;
4530 struct peer_capability_info
*p
;
4534 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
4538 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_UPDATE_STADB
);
4539 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
4540 cmd
->action
= cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY
);
4541 memcpy(cmd
->peer_addr
, sta
->addr
, ETH_ALEN
);
4543 p
= &cmd
->peer_info
;
4544 p
->peer_type
= MWL8K_PEER_TYPE_ACCESSPOINT
;
4545 p
->basic_caps
= cpu_to_le16(vif
->bss_conf
.assoc_capability
);
4546 p
->ht_support
= sta
->ht_cap
.ht_supported
;
4547 p
->ht_caps
= cpu_to_le16(sta
->ht_cap
.cap
);
4548 p
->extended_ht_caps
= (sta
->ht_cap
.ampdu_factor
& 3) |
4549 ((sta
->ht_cap
.ampdu_density
& 7) << 2);
4550 if (hw
->conf
.chandef
.chan
->band
== NL80211_BAND_2GHZ
)
4551 rates
= sta
->supp_rates
[NL80211_BAND_2GHZ
];
4553 rates
= sta
->supp_rates
[NL80211_BAND_5GHZ
] << 5;
4554 legacy_rate_mask_to_array(p
->legacy_rates
, rates
);
4555 memcpy(p
->ht_rates
, sta
->ht_cap
.mcs
.rx_mask
, 16);
4557 p
->amsdu_enabled
= 0;
4559 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
4567 static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw
*hw
,
4568 struct ieee80211_vif
*vif
, u8
*addr
)
4570 struct mwl8k_cmd_update_stadb
*cmd
;
4573 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
4577 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_UPDATE_STADB
);
4578 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
4579 cmd
->action
= cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY
);
4580 memcpy(cmd
->peer_addr
, addr
, ETH_ALEN
);
4582 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
4590 * Interrupt handling.
4592 static irqreturn_t
mwl8k_interrupt(int irq
, void *dev_id
)
4594 struct ieee80211_hw
*hw
= dev_id
;
4595 struct mwl8k_priv
*priv
= hw
->priv
;
4598 status
= ioread32(priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS
);
4602 if (status
& MWL8K_A2H_INT_TX_DONE
) {
4603 status
&= ~MWL8K_A2H_INT_TX_DONE
;
4604 tasklet_schedule(&priv
->poll_tx_task
);
4607 if (status
& MWL8K_A2H_INT_RX_READY
) {
4608 status
&= ~MWL8K_A2H_INT_RX_READY
;
4609 tasklet_schedule(&priv
->poll_rx_task
);
4612 if (status
& MWL8K_A2H_INT_BA_WATCHDOG
) {
4613 iowrite32(~MWL8K_A2H_INT_BA_WATCHDOG
,
4614 priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK
);
4616 atomic_inc(&priv
->watchdog_event_pending
);
4617 status
&= ~MWL8K_A2H_INT_BA_WATCHDOG
;
4618 ieee80211_queue_work(hw
, &priv
->watchdog_ba_handle
);
4622 iowrite32(~status
, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS
);
4624 if (status
& MWL8K_A2H_INT_OPC_DONE
) {
4625 if (priv
->hostcmd_wait
!= NULL
)
4626 complete(priv
->hostcmd_wait
);
4629 if (status
& MWL8K_A2H_INT_QUEUE_EMPTY
) {
4630 if (!mutex_is_locked(&priv
->fw_mutex
) &&
4631 priv
->radio_on
&& priv
->pending_tx_pkts
)
4632 mwl8k_tx_start(priv
);
4638 static void mwl8k_tx_poll(struct tasklet_struct
*t
)
4640 struct mwl8k_priv
*priv
= from_tasklet(priv
, t
, poll_tx_task
);
4641 struct ieee80211_hw
*hw
= pci_get_drvdata(priv
->pdev
);
4647 spin_lock(&priv
->tx_lock
);
4649 for (i
= 0; i
< mwl8k_tx_queues(priv
); i
++)
4650 limit
-= mwl8k_txq_reclaim(hw
, i
, limit
, 0);
4652 if (!priv
->pending_tx_pkts
&& priv
->tx_wait
!= NULL
) {
4653 complete(priv
->tx_wait
);
4654 priv
->tx_wait
= NULL
;
4657 spin_unlock(&priv
->tx_lock
);
4660 writel(~MWL8K_A2H_INT_TX_DONE
,
4661 priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS
);
4663 tasklet_schedule(&priv
->poll_tx_task
);
4667 static void mwl8k_rx_poll(struct tasklet_struct
*t
)
4669 struct mwl8k_priv
*priv
= from_tasklet(priv
, t
, poll_rx_task
);
4670 struct ieee80211_hw
*hw
= pci_get_drvdata(priv
->pdev
);
4674 limit
-= rxq_process(hw
, 0, limit
);
4675 limit
-= rxq_refill(hw
, 0, limit
);
4678 writel(~MWL8K_A2H_INT_RX_READY
,
4679 priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS
);
4681 tasklet_schedule(&priv
->poll_rx_task
);
4687 * Core driver operations.
4689 static void mwl8k_tx(struct ieee80211_hw
*hw
,
4690 struct ieee80211_tx_control
*control
,
4691 struct sk_buff
*skb
)
4693 struct mwl8k_priv
*priv
= hw
->priv
;
4694 int index
= skb_get_queue_mapping(skb
);
4696 if (!priv
->radio_on
) {
4697 wiphy_debug(hw
->wiphy
,
4698 "dropped TX frame since radio disabled\n");
4703 mwl8k_txq_xmit(hw
, index
, control
->sta
, skb
);
4706 static int mwl8k_start(struct ieee80211_hw
*hw
)
4708 struct mwl8k_priv
*priv
= hw
->priv
;
4711 rc
= request_irq(priv
->pdev
->irq
, mwl8k_interrupt
,
4712 IRQF_SHARED
, MWL8K_NAME
, hw
);
4715 wiphy_err(hw
->wiphy
, "failed to register IRQ handler\n");
4718 priv
->irq
= priv
->pdev
->irq
;
4720 /* Enable TX reclaim and RX tasklets. */
4721 tasklet_enable(&priv
->poll_tx_task
);
4722 tasklet_enable(&priv
->poll_rx_task
);
4724 /* Enable interrupts */
4725 iowrite32(MWL8K_A2H_EVENTS
, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
4726 iowrite32(MWL8K_A2H_EVENTS
,
4727 priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK
);
4729 rc
= mwl8k_fw_lock(hw
);
4731 rc
= mwl8k_cmd_radio_enable(hw
);
4735 rc
= mwl8k_cmd_enable_sniffer(hw
, 0);
4738 rc
= mwl8k_cmd_set_pre_scan(hw
);
4741 rc
= mwl8k_cmd_set_post_scan(hw
,
4742 "\x00\x00\x00\x00\x00\x00");
4746 rc
= mwl8k_cmd_set_rateadapt_mode(hw
, 0);
4749 rc
= mwl8k_cmd_set_wmm_mode(hw
, 0);
4751 mwl8k_fw_unlock(hw
);
4755 iowrite32(0, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
4756 free_irq(priv
->pdev
->irq
, hw
);
4758 tasklet_disable(&priv
->poll_tx_task
);
4759 tasklet_disable(&priv
->poll_rx_task
);
4761 ieee80211_wake_queues(hw
);
4767 static void mwl8k_stop(struct ieee80211_hw
*hw
)
4769 struct mwl8k_priv
*priv
= hw
->priv
;
4772 if (!priv
->hw_restart_in_progress
)
4773 mwl8k_cmd_radio_disable(hw
);
4775 ieee80211_stop_queues(hw
);
4777 /* Disable interrupts */
4778 iowrite32(0, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
4779 if (priv
->irq
!= -1) {
4780 free_irq(priv
->pdev
->irq
, hw
);
4784 /* Stop finalize join worker */
4785 cancel_work_sync(&priv
->finalize_join_worker
);
4786 cancel_work_sync(&priv
->watchdog_ba_handle
);
4787 if (priv
->beacon_skb
!= NULL
)
4788 dev_kfree_skb(priv
->beacon_skb
);
4790 /* Stop TX reclaim and RX tasklets. */
4791 tasklet_disable(&priv
->poll_tx_task
);
4792 tasklet_disable(&priv
->poll_rx_task
);
4794 /* Return all skbs to mac80211 */
4795 for (i
= 0; i
< mwl8k_tx_queues(priv
); i
++)
4796 mwl8k_txq_reclaim(hw
, i
, INT_MAX
, 1);
4799 static int mwl8k_reload_firmware(struct ieee80211_hw
*hw
, char *fw_image
);
4801 static int mwl8k_add_interface(struct ieee80211_hw
*hw
,
4802 struct ieee80211_vif
*vif
)
4804 struct mwl8k_priv
*priv
= hw
->priv
;
4805 struct mwl8k_vif
*mwl8k_vif
;
4806 u32 macids_supported
;
4808 struct mwl8k_device_info
*di
;
4811 * Reject interface creation if sniffer mode is active, as
4812 * STA operation is mutually exclusive with hardware sniffer
4813 * mode. (Sniffer mode is only used on STA firmware.)
4815 if (priv
->sniffer_enabled
) {
4816 wiphy_info(hw
->wiphy
,
4817 "unable to create STA interface because sniffer mode is enabled\n");
4821 di
= priv
->device_info
;
4822 switch (vif
->type
) {
4823 case NL80211_IFTYPE_AP
:
4824 if (!priv
->ap_fw
&& di
->fw_image_ap
) {
4825 /* we must load the ap fw to meet this request */
4826 if (!list_empty(&priv
->vif_list
))
4828 rc
= mwl8k_reload_firmware(hw
, di
->fw_image_ap
);
4832 macids_supported
= priv
->ap_macids_supported
;
4834 case NL80211_IFTYPE_STATION
:
4835 if (priv
->ap_fw
&& di
->fw_image_sta
) {
4836 if (!list_empty(&priv
->vif_list
)) {
4837 wiphy_warn(hw
->wiphy
, "AP interface is running.\n"
4838 "Adding STA interface for WDS");
4840 /* we must load the sta fw to
4841 * meet this request.
4843 rc
= mwl8k_reload_firmware(hw
,
4849 macids_supported
= priv
->sta_macids_supported
;
4855 macid
= ffs(macids_supported
& ~priv
->macids_used
);
4859 /* Setup driver private area. */
4860 mwl8k_vif
= MWL8K_VIF(vif
);
4861 memset(mwl8k_vif
, 0, sizeof(*mwl8k_vif
));
4862 mwl8k_vif
->vif
= vif
;
4863 mwl8k_vif
->macid
= macid
;
4864 mwl8k_vif
->seqno
= 0;
4865 memcpy(mwl8k_vif
->bssid
, vif
->addr
, ETH_ALEN
);
4866 mwl8k_vif
->is_hw_crypto_enabled
= false;
4868 /* Set the mac address. */
4869 mwl8k_cmd_set_mac_addr(hw
, vif
, vif
->addr
);
4871 if (vif
->type
== NL80211_IFTYPE_AP
)
4872 mwl8k_cmd_set_new_stn_add_self(hw
, vif
);
4874 priv
->macids_used
|= 1 << mwl8k_vif
->macid
;
4875 list_add_tail(&mwl8k_vif
->list
, &priv
->vif_list
);
4880 static void mwl8k_remove_vif(struct mwl8k_priv
*priv
, struct mwl8k_vif
*vif
)
4882 /* Has ieee80211_restart_hw re-added the removed interfaces? */
4883 if (!priv
->macids_used
)
4886 priv
->macids_used
&= ~(1 << vif
->macid
);
4887 list_del(&vif
->list
);
4890 static void mwl8k_remove_interface(struct ieee80211_hw
*hw
,
4891 struct ieee80211_vif
*vif
)
4893 struct mwl8k_priv
*priv
= hw
->priv
;
4894 struct mwl8k_vif
*mwl8k_vif
= MWL8K_VIF(vif
);
4896 if (vif
->type
== NL80211_IFTYPE_AP
)
4897 mwl8k_cmd_set_new_stn_del(hw
, vif
, vif
->addr
);
4899 mwl8k_cmd_del_mac_addr(hw
, vif
, vif
->addr
);
4901 mwl8k_remove_vif(priv
, mwl8k_vif
);
4904 static void mwl8k_hw_restart_work(struct work_struct
*work
)
4906 struct mwl8k_priv
*priv
=
4907 container_of(work
, struct mwl8k_priv
, fw_reload
);
4908 struct ieee80211_hw
*hw
= priv
->hw
;
4909 struct mwl8k_device_info
*di
;
4912 /* If some command is waiting for a response, clear it */
4913 if (priv
->hostcmd_wait
!= NULL
) {
4914 complete(priv
->hostcmd_wait
);
4915 priv
->hostcmd_wait
= NULL
;
4918 priv
->hw_restart_owner
= current
;
4919 di
= priv
->device_info
;
4923 rc
= mwl8k_reload_firmware(hw
, di
->fw_image_ap
);
4925 rc
= mwl8k_reload_firmware(hw
, di
->fw_image_sta
);
4930 priv
->hw_restart_owner
= NULL
;
4931 priv
->hw_restart_in_progress
= false;
4934 * This unlock will wake up the queues and
4935 * also opens the command path for other
4938 mwl8k_fw_unlock(hw
);
4940 ieee80211_restart_hw(hw
);
4942 wiphy_err(hw
->wiphy
, "Firmware restarted successfully\n");
4946 mwl8k_fw_unlock(hw
);
4948 wiphy_err(hw
->wiphy
, "Firmware restart failed\n");
4951 static int mwl8k_config(struct ieee80211_hw
*hw
, u32 changed
)
4953 struct ieee80211_conf
*conf
= &hw
->conf
;
4954 struct mwl8k_priv
*priv
= hw
->priv
;
4957 rc
= mwl8k_fw_lock(hw
);
4961 if (conf
->flags
& IEEE80211_CONF_IDLE
)
4962 rc
= mwl8k_cmd_radio_disable(hw
);
4964 rc
= mwl8k_cmd_radio_enable(hw
);
4968 if (changed
& IEEE80211_CONF_CHANGE_CHANNEL
) {
4969 rc
= mwl8k_cmd_set_rf_channel(hw
, conf
);
4974 if (conf
->power_level
> 18)
4975 conf
->power_level
= 18;
4979 if (conf
->flags
& IEEE80211_CONF_CHANGE_POWER
) {
4980 rc
= mwl8k_cmd_tx_power(hw
, conf
, conf
->power_level
);
4987 rc
= mwl8k_cmd_rf_tx_power(hw
, conf
->power_level
);
4990 rc
= mwl8k_cmd_mimo_config(hw
, 0x7, 0x7);
4994 mwl8k_fw_unlock(hw
);
5000 mwl8k_bss_info_changed_sta(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
,
5001 struct ieee80211_bss_conf
*info
, u32 changed
)
5003 struct mwl8k_priv
*priv
= hw
->priv
;
5004 u32 ap_legacy_rates
= 0;
5005 u8 ap_mcs_rates
[16];
5008 if (mwl8k_fw_lock(hw
))
5012 * No need to capture a beacon if we're no longer associated.
5014 if ((changed
& BSS_CHANGED_ASSOC
) && !vif
->bss_conf
.assoc
)
5015 priv
->capture_beacon
= false;
5018 * Get the AP's legacy and MCS rates.
5020 if (vif
->bss_conf
.assoc
) {
5021 struct ieee80211_sta
*ap
;
5025 ap
= ieee80211_find_sta(vif
, vif
->bss_conf
.bssid
);
5031 if (hw
->conf
.chandef
.chan
->band
== NL80211_BAND_2GHZ
) {
5032 ap_legacy_rates
= ap
->supp_rates
[NL80211_BAND_2GHZ
];
5035 ap
->supp_rates
[NL80211_BAND_5GHZ
] << 5;
5037 memcpy(ap_mcs_rates
, ap
->ht_cap
.mcs
.rx_mask
, 16);
5041 if (changed
& BSS_CHANGED_ASSOC
) {
5043 rc
= mwl8k_cmd_set_rate(hw
, vif
,
5049 rc
= mwl8k_cmd_use_fixed_rate_sta(hw
);
5056 /* Use AP firmware specific rate command.
5058 idx
= ffs(vif
->bss_conf
.basic_rates
);
5062 if (hw
->conf
.chandef
.chan
->band
==
5064 rate
= mwl8k_rates_24
[idx
].hw_value
;
5066 rate
= mwl8k_rates_50
[idx
].hw_value
;
5068 mwl8k_cmd_use_fixed_rate_ap(hw
, rate
, rate
);
5073 if (changed
& BSS_CHANGED_ERP_PREAMBLE
) {
5074 rc
= mwl8k_set_radio_preamble(hw
,
5075 vif
->bss_conf
.use_short_preamble
);
5080 if ((changed
& BSS_CHANGED_ERP_SLOT
) && !priv
->ap_fw
) {
5081 rc
= mwl8k_cmd_set_slot(hw
, vif
->bss_conf
.use_short_slot
);
5086 if (vif
->bss_conf
.assoc
&& !priv
->ap_fw
&&
5087 (changed
& (BSS_CHANGED_ASSOC
| BSS_CHANGED_ERP_CTS_PROT
|
5089 rc
= mwl8k_cmd_set_aid(hw
, vif
, ap_legacy_rates
);
5094 if (vif
->bss_conf
.assoc
&&
5095 (changed
& (BSS_CHANGED_ASSOC
| BSS_CHANGED_BEACON_INT
))) {
5097 * Finalize the join. Tell rx handler to process
5098 * next beacon from our BSSID.
5100 memcpy(priv
->capture_bssid
, vif
->bss_conf
.bssid
, ETH_ALEN
);
5101 priv
->capture_beacon
= true;
5105 mwl8k_fw_unlock(hw
);
5109 mwl8k_bss_info_changed_ap(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
,
5110 struct ieee80211_bss_conf
*info
, u32 changed
)
5114 if (mwl8k_fw_lock(hw
))
5117 if (changed
& BSS_CHANGED_ERP_PREAMBLE
) {
5118 rc
= mwl8k_set_radio_preamble(hw
,
5119 vif
->bss_conf
.use_short_preamble
);
5124 if (changed
& BSS_CHANGED_BASIC_RATES
) {
5129 * Use lowest supported basic rate for multicasts
5130 * and management frames (such as probe responses --
5131 * beacons will always go out at 1 Mb/s).
5133 idx
= ffs(vif
->bss_conf
.basic_rates
);
5137 if (hw
->conf
.chandef
.chan
->band
== NL80211_BAND_2GHZ
)
5138 rate
= mwl8k_rates_24
[idx
].hw_value
;
5140 rate
= mwl8k_rates_50
[idx
].hw_value
;
5142 mwl8k_cmd_use_fixed_rate_ap(hw
, rate
, rate
);
5145 if (changed
& (BSS_CHANGED_BEACON_INT
| BSS_CHANGED_BEACON
)) {
5146 struct sk_buff
*skb
;
5148 skb
= ieee80211_beacon_get(hw
, vif
);
5150 mwl8k_cmd_set_beacon(hw
, vif
, skb
->data
, skb
->len
);
5155 if (changed
& BSS_CHANGED_BEACON_ENABLED
)
5156 mwl8k_cmd_bss_start(hw
, vif
, info
->enable_beacon
);
5159 mwl8k_fw_unlock(hw
);
5163 mwl8k_bss_info_changed(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
,
5164 struct ieee80211_bss_conf
*info
, u32 changed
)
5166 if (vif
->type
== NL80211_IFTYPE_STATION
)
5167 mwl8k_bss_info_changed_sta(hw
, vif
, info
, changed
);
5168 if (vif
->type
== NL80211_IFTYPE_AP
)
5169 mwl8k_bss_info_changed_ap(hw
, vif
, info
, changed
);
5172 static u64
mwl8k_prepare_multicast(struct ieee80211_hw
*hw
,
5173 struct netdev_hw_addr_list
*mc_list
)
5175 struct mwl8k_cmd_pkt
*cmd
;
5178 * Synthesize and return a command packet that programs the
5179 * hardware multicast address filter. At this point we don't
5180 * know whether FIF_ALLMULTI is being requested, but if it is,
5181 * we'll end up throwing this packet away and creating a new
5182 * one in mwl8k_configure_filter().
5184 cmd
= __mwl8k_cmd_mac_multicast_adr(hw
, 0, mc_list
);
5186 return (unsigned long)cmd
;
5190 mwl8k_configure_filter_sniffer(struct ieee80211_hw
*hw
,
5191 unsigned int changed_flags
,
5192 unsigned int *total_flags
)
5194 struct mwl8k_priv
*priv
= hw
->priv
;
5197 * Hardware sniffer mode is mutually exclusive with STA
5198 * operation, so refuse to enable sniffer mode if a STA
5199 * interface is active.
5201 if (!list_empty(&priv
->vif_list
)) {
5202 if (net_ratelimit())
5203 wiphy_info(hw
->wiphy
,
5204 "not enabling sniffer mode because STA interface is active\n");
5208 if (!priv
->sniffer_enabled
) {
5209 if (mwl8k_cmd_enable_sniffer(hw
, 1))
5211 priv
->sniffer_enabled
= true;
5214 *total_flags
&= FIF_ALLMULTI
|
5215 FIF_BCN_PRBRESP_PROMISC
| FIF_CONTROL
|
5221 static struct mwl8k_vif
*mwl8k_first_vif(struct mwl8k_priv
*priv
)
5223 if (!list_empty(&priv
->vif_list
))
5224 return list_entry(priv
->vif_list
.next
, struct mwl8k_vif
, list
);
5229 static void mwl8k_configure_filter(struct ieee80211_hw
*hw
,
5230 unsigned int changed_flags
,
5231 unsigned int *total_flags
,
5234 struct mwl8k_priv
*priv
= hw
->priv
;
5235 struct mwl8k_cmd_pkt
*cmd
= (void *)(unsigned long)multicast
;
5238 * AP firmware doesn't allow fine-grained control over
5239 * the receive filter.
5242 *total_flags
&= FIF_ALLMULTI
| FIF_BCN_PRBRESP_PROMISC
;
5248 * Enable hardware sniffer mode if FIF_CONTROL or
5249 * FIF_OTHER_BSS is requested.
5251 if (*total_flags
& (FIF_CONTROL
| FIF_OTHER_BSS
) &&
5252 mwl8k_configure_filter_sniffer(hw
, changed_flags
, total_flags
)) {
5257 /* Clear unsupported feature flags */
5258 *total_flags
&= FIF_ALLMULTI
| FIF_BCN_PRBRESP_PROMISC
;
5260 if (mwl8k_fw_lock(hw
)) {
5265 if (priv
->sniffer_enabled
) {
5266 mwl8k_cmd_enable_sniffer(hw
, 0);
5267 priv
->sniffer_enabled
= false;
5270 if (changed_flags
& FIF_BCN_PRBRESP_PROMISC
) {
5271 if (*total_flags
& FIF_BCN_PRBRESP_PROMISC
) {
5273 * Disable the BSS filter.
5275 mwl8k_cmd_set_pre_scan(hw
);
5277 struct mwl8k_vif
*mwl8k_vif
;
5281 * Enable the BSS filter.
5283 * If there is an active STA interface, use that
5284 * interface's BSSID, otherwise use a dummy one
5285 * (where the OUI part needs to be nonzero for
5286 * the BSSID to be accepted by POST_SCAN).
5288 mwl8k_vif
= mwl8k_first_vif(priv
);
5289 if (mwl8k_vif
!= NULL
)
5290 bssid
= mwl8k_vif
->vif
->bss_conf
.bssid
;
5292 bssid
= "\x01\x00\x00\x00\x00\x00";
5294 mwl8k_cmd_set_post_scan(hw
, bssid
);
5299 * If FIF_ALLMULTI is being requested, throw away the command
5300 * packet that ->prepare_multicast() built and replace it with
5301 * a command packet that enables reception of all multicast
5304 if (*total_flags
& FIF_ALLMULTI
) {
5306 cmd
= __mwl8k_cmd_mac_multicast_adr(hw
, 1, NULL
);
5310 mwl8k_post_cmd(hw
, cmd
);
5314 mwl8k_fw_unlock(hw
);
5317 static int mwl8k_set_rts_threshold(struct ieee80211_hw
*hw
, u32 value
)
5319 return mwl8k_cmd_set_rts_threshold(hw
, value
);
5322 static int mwl8k_sta_remove(struct ieee80211_hw
*hw
,
5323 struct ieee80211_vif
*vif
,
5324 struct ieee80211_sta
*sta
)
5326 struct mwl8k_priv
*priv
= hw
->priv
;
5329 return mwl8k_cmd_set_new_stn_del(hw
, vif
, sta
->addr
);
5331 return mwl8k_cmd_update_stadb_del(hw
, vif
, sta
->addr
);
5334 static int mwl8k_sta_add(struct ieee80211_hw
*hw
,
5335 struct ieee80211_vif
*vif
,
5336 struct ieee80211_sta
*sta
)
5338 struct mwl8k_priv
*priv
= hw
->priv
;
5341 struct mwl8k_vif
*mwl8k_vif
= MWL8K_VIF(vif
);
5342 struct ieee80211_key_conf
*key
;
5345 ret
= mwl8k_cmd_update_stadb_add(hw
, vif
, sta
);
5347 MWL8K_STA(sta
)->peer_id
= ret
;
5348 if (sta
->ht_cap
.ht_supported
)
5349 MWL8K_STA(sta
)->is_ampdu_allowed
= true;
5354 ret
= mwl8k_cmd_set_new_stn_add(hw
, vif
, sta
);
5357 for (i
= 0; i
< NUM_WEP_KEYS
; i
++) {
5358 key
= IEEE80211_KEY_CONF(mwl8k_vif
->wep_key_conf
[i
].key
);
5359 if (mwl8k_vif
->wep_key_conf
[i
].enabled
)
5360 mwl8k_set_key(hw
, SET_KEY
, vif
, sta
, key
);
5365 static int mwl8k_conf_tx(struct ieee80211_hw
*hw
,
5366 struct ieee80211_vif
*vif
, u16 queue
,
5367 const struct ieee80211_tx_queue_params
*params
)
5369 struct mwl8k_priv
*priv
= hw
->priv
;
5372 rc
= mwl8k_fw_lock(hw
);
5374 BUG_ON(queue
> MWL8K_TX_WMM_QUEUES
- 1);
5375 memcpy(&priv
->wmm_params
[queue
], params
, sizeof(*params
));
5377 if (!priv
->wmm_enabled
)
5378 rc
= mwl8k_cmd_set_wmm_mode(hw
, 1);
5381 int q
= MWL8K_TX_WMM_QUEUES
- 1 - queue
;
5382 rc
= mwl8k_cmd_set_edca_params(hw
, q
,
5389 mwl8k_fw_unlock(hw
);
5395 static int mwl8k_get_stats(struct ieee80211_hw
*hw
,
5396 struct ieee80211_low_level_stats
*stats
)
5398 return mwl8k_cmd_get_stat(hw
, stats
);
5401 static int mwl8k_get_survey(struct ieee80211_hw
*hw
, int idx
,
5402 struct survey_info
*survey
)
5404 struct mwl8k_priv
*priv
= hw
->priv
;
5405 struct ieee80211_conf
*conf
= &hw
->conf
;
5406 struct ieee80211_supported_band
*sband
;
5409 sband
= hw
->wiphy
->bands
[NL80211_BAND_2GHZ
];
5411 if (sband
&& idx
>= sband
->n_channels
) {
5412 idx
-= sband
->n_channels
;
5417 sband
= hw
->wiphy
->bands
[NL80211_BAND_5GHZ
];
5419 if (!sband
|| idx
>= sband
->n_channels
)
5422 memcpy(survey
, &priv
->survey
[idx
], sizeof(*survey
));
5423 survey
->channel
= &sband
->channels
[idx
];
5431 survey
->channel
= conf
->chandef
.chan
;
5432 survey
->filled
= SURVEY_INFO_NOISE_DBM
;
5433 survey
->noise
= priv
->noise
;
5438 #define MAX_AMPDU_ATTEMPTS 5
5441 mwl8k_ampdu_action(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
,
5442 struct ieee80211_ampdu_params
*params
)
5444 struct ieee80211_sta
*sta
= params
->sta
;
5445 enum ieee80211_ampdu_mlme_action action
= params
->action
;
5446 u16 tid
= params
->tid
;
5447 u16
*ssn
= ¶ms
->ssn
;
5448 u8 buf_size
= params
->buf_size
;
5450 struct mwl8k_priv
*priv
= hw
->priv
;
5451 struct mwl8k_ampdu_stream
*stream
;
5452 u8
*addr
= sta
->addr
, idx
;
5453 struct mwl8k_sta
*sta_info
= MWL8K_STA(sta
);
5455 if (!ieee80211_hw_check(hw
, AMPDU_AGGREGATION
))
5458 spin_lock(&priv
->stream_lock
);
5459 stream
= mwl8k_lookup_stream(hw
, addr
, tid
);
5462 case IEEE80211_AMPDU_RX_START
:
5463 case IEEE80211_AMPDU_RX_STOP
:
5465 case IEEE80211_AMPDU_TX_START
:
5466 /* By the time we get here the hw queues may contain outgoing
5467 * packets for this RA/TID that are not part of this BA
5468 * session. The hw will assign sequence numbers to these
5469 * packets as they go out. So if we query the hw for its next
5470 * sequence number and use that for the SSN here, it may end up
5471 * being wrong, which will lead to sequence number mismatch at
5472 * the recipient. To avoid this, we reset the sequence number
5473 * to O for the first MPDU in this BA stream.
5476 if (stream
== NULL
) {
5477 /* This means that somebody outside this driver called
5478 * ieee80211_start_tx_ba_session. This is unexpected
5479 * because we do our own rate control. Just warn and
5482 wiphy_warn(hw
->wiphy
, "Unexpected call to %s. "
5483 "Proceeding anyway.\n", __func__
);
5484 stream
= mwl8k_add_stream(hw
, sta
, tid
);
5486 if (stream
== NULL
) {
5487 wiphy_debug(hw
->wiphy
, "no free AMPDU streams\n");
5491 stream
->state
= AMPDU_STREAM_IN_PROGRESS
;
5493 /* Release the lock before we do the time consuming stuff */
5494 spin_unlock(&priv
->stream_lock
);
5495 for (i
= 0; i
< MAX_AMPDU_ATTEMPTS
; i
++) {
5497 /* Check if link is still valid */
5498 if (!sta_info
->is_ampdu_allowed
) {
5499 spin_lock(&priv
->stream_lock
);
5500 mwl8k_remove_stream(hw
, stream
);
5501 spin_unlock(&priv
->stream_lock
);
5505 rc
= mwl8k_check_ba(hw
, stream
, vif
);
5507 /* If HW restart is in progress mwl8k_post_cmd will
5508 * return -EBUSY. Avoid retrying mwl8k_check_ba in
5511 if (!rc
|| rc
== -EBUSY
)
5514 * HW queues take time to be flushed, give them
5520 spin_lock(&priv
->stream_lock
);
5522 wiphy_err(hw
->wiphy
, "Stream for tid %d busy after %d"
5523 " attempts\n", tid
, MAX_AMPDU_ATTEMPTS
);
5524 mwl8k_remove_stream(hw
, stream
);
5528 rc
= IEEE80211_AMPDU_TX_START_IMMEDIATE
;
5530 case IEEE80211_AMPDU_TX_STOP_CONT
:
5531 case IEEE80211_AMPDU_TX_STOP_FLUSH
:
5532 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT
:
5534 if (stream
->state
== AMPDU_STREAM_ACTIVE
) {
5536 spin_unlock(&priv
->stream_lock
);
5537 mwl8k_destroy_ba(hw
, idx
);
5538 spin_lock(&priv
->stream_lock
);
5540 mwl8k_remove_stream(hw
, stream
);
5542 ieee80211_stop_tx_ba_cb_irqsafe(vif
, addr
, tid
);
5544 case IEEE80211_AMPDU_TX_OPERATIONAL
:
5545 BUG_ON(stream
== NULL
);
5546 BUG_ON(stream
->state
!= AMPDU_STREAM_IN_PROGRESS
);
5547 spin_unlock(&priv
->stream_lock
);
5548 rc
= mwl8k_create_ba(hw
, stream
, buf_size
, vif
);
5549 spin_lock(&priv
->stream_lock
);
5551 stream
->state
= AMPDU_STREAM_ACTIVE
;
5554 spin_unlock(&priv
->stream_lock
);
5555 mwl8k_destroy_ba(hw
, idx
);
5556 spin_lock(&priv
->stream_lock
);
5557 wiphy_debug(hw
->wiphy
,
5558 "Failed adding stream for sta %pM tid %d\n",
5560 mwl8k_remove_stream(hw
, stream
);
5568 spin_unlock(&priv
->stream_lock
);
5572 static void mwl8k_sw_scan_start(struct ieee80211_hw
*hw
,
5573 struct ieee80211_vif
*vif
,
5576 struct mwl8k_priv
*priv
= hw
->priv
;
5582 /* clear all stats */
5583 priv
->channel_time
= 0;
5584 ioread32(priv
->regs
+ BBU_RXRDY_CNT_REG
);
5585 ioread32(priv
->regs
+ NOK_CCA_CNT_REG
);
5586 mwl8k_cmd_bbp_reg_access(priv
->hw
, 0, BBU_AVG_NOISE_VAL
, &tmp
);
5588 priv
->sw_scan_start
= true;
5591 static void mwl8k_sw_scan_complete(struct ieee80211_hw
*hw
,
5592 struct ieee80211_vif
*vif
)
5594 struct mwl8k_priv
*priv
= hw
->priv
;
5600 priv
->sw_scan_start
= false;
5602 /* clear all stats */
5603 priv
->channel_time
= 0;
5604 ioread32(priv
->regs
+ BBU_RXRDY_CNT_REG
);
5605 ioread32(priv
->regs
+ NOK_CCA_CNT_REG
);
5606 mwl8k_cmd_bbp_reg_access(priv
->hw
, 0, BBU_AVG_NOISE_VAL
, &tmp
);
5609 static const struct ieee80211_ops mwl8k_ops
= {
5611 .start
= mwl8k_start
,
5613 .add_interface
= mwl8k_add_interface
,
5614 .remove_interface
= mwl8k_remove_interface
,
5615 .config
= mwl8k_config
,
5616 .bss_info_changed
= mwl8k_bss_info_changed
,
5617 .prepare_multicast
= mwl8k_prepare_multicast
,
5618 .configure_filter
= mwl8k_configure_filter
,
5619 .set_key
= mwl8k_set_key
,
5620 .set_rts_threshold
= mwl8k_set_rts_threshold
,
5621 .sta_add
= mwl8k_sta_add
,
5622 .sta_remove
= mwl8k_sta_remove
,
5623 .conf_tx
= mwl8k_conf_tx
,
5624 .get_stats
= mwl8k_get_stats
,
5625 .get_survey
= mwl8k_get_survey
,
5626 .ampdu_action
= mwl8k_ampdu_action
,
5627 .sw_scan_start
= mwl8k_sw_scan_start
,
5628 .sw_scan_complete
= mwl8k_sw_scan_complete
,
5631 static void mwl8k_finalize_join_worker(struct work_struct
*work
)
5633 struct mwl8k_priv
*priv
=
5634 container_of(work
, struct mwl8k_priv
, finalize_join_worker
);
5635 struct sk_buff
*skb
= priv
->beacon_skb
;
5636 struct ieee80211_mgmt
*mgmt
= (void *)skb
->data
;
5637 int len
= skb
->len
- offsetof(struct ieee80211_mgmt
, u
.beacon
.variable
);
5638 const u8
*tim
= cfg80211_find_ie(WLAN_EID_TIM
,
5639 mgmt
->u
.beacon
.variable
, len
);
5640 int dtim_period
= 1;
5642 if (tim
&& tim
[1] >= 2)
5643 dtim_period
= tim
[3];
5645 mwl8k_cmd_finalize_join(priv
->hw
, skb
->data
, skb
->len
, dtim_period
);
5648 priv
->beacon_skb
= NULL
;
5658 #define MWL8K_8366_AP_FW_API 3
5659 #define _MWL8K_8366_AP_FW(api) "mwl8k/fmimage_8366_ap-" #api ".fw"
5660 #define MWL8K_8366_AP_FW(api) _MWL8K_8366_AP_FW(api)
5662 #define MWL8K_8764_AP_FW_API 1
5663 #define _MWL8K_8764_AP_FW(api) "mwl8k/fmimage_8764_ap-" #api ".fw"
5664 #define MWL8K_8764_AP_FW(api) _MWL8K_8764_AP_FW(api)
5666 static struct mwl8k_device_info mwl8k_info_tbl
[] = {
5668 .part_name
= "88w8363",
5669 .helper_image
= "mwl8k/helper_8363.fw",
5670 .fw_image_sta
= "mwl8k/fmimage_8363.fw",
5673 .part_name
= "88w8687",
5674 .helper_image
= "mwl8k/helper_8687.fw",
5675 .fw_image_sta
= "mwl8k/fmimage_8687.fw",
5678 .part_name
= "88w8366",
5679 .helper_image
= "mwl8k/helper_8366.fw",
5680 .fw_image_sta
= "mwl8k/fmimage_8366.fw",
5681 .fw_image_ap
= MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API
),
5682 .fw_api_ap
= MWL8K_8366_AP_FW_API
,
5683 .ap_rxd_ops
= &rxd_ap_ops
,
5686 .part_name
= "88w8764",
5687 .fw_image_ap
= MWL8K_8764_AP_FW(MWL8K_8764_AP_FW_API
),
5688 .fw_api_ap
= MWL8K_8764_AP_FW_API
,
5689 .ap_rxd_ops
= &rxd_ap_ops
,
5693 MODULE_FIRMWARE("mwl8k/helper_8363.fw");
5694 MODULE_FIRMWARE("mwl8k/fmimage_8363.fw");
5695 MODULE_FIRMWARE("mwl8k/helper_8687.fw");
5696 MODULE_FIRMWARE("mwl8k/fmimage_8687.fw");
5697 MODULE_FIRMWARE("mwl8k/helper_8366.fw");
5698 MODULE_FIRMWARE("mwl8k/fmimage_8366.fw");
5699 MODULE_FIRMWARE(MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API
));
5701 static const struct pci_device_id mwl8k_pci_id_table
[] = {
5702 { PCI_VDEVICE(MARVELL
, 0x2a0a), .driver_data
= MWL8363
, },
5703 { PCI_VDEVICE(MARVELL
, 0x2a0c), .driver_data
= MWL8363
, },
5704 { PCI_VDEVICE(MARVELL
, 0x2a24), .driver_data
= MWL8363
, },
5705 { PCI_VDEVICE(MARVELL
, 0x2a2b), .driver_data
= MWL8687
, },
5706 { PCI_VDEVICE(MARVELL
, 0x2a30), .driver_data
= MWL8687
, },
5707 { PCI_VDEVICE(MARVELL
, 0x2a40), .driver_data
= MWL8366
, },
5708 { PCI_VDEVICE(MARVELL
, 0x2a41), .driver_data
= MWL8366
, },
5709 { PCI_VDEVICE(MARVELL
, 0x2a42), .driver_data
= MWL8366
, },
5710 { PCI_VDEVICE(MARVELL
, 0x2a43), .driver_data
= MWL8366
, },
5711 { PCI_VDEVICE(MARVELL
, 0x2b36), .driver_data
= MWL8764
, },
5714 MODULE_DEVICE_TABLE(pci
, mwl8k_pci_id_table
);
5716 static int mwl8k_request_alt_fw(struct mwl8k_priv
*priv
)
5719 printk(KERN_ERR
"%s: Error requesting preferred fw %s.\n"
5720 "Trying alternative firmware %s\n", pci_name(priv
->pdev
),
5721 priv
->fw_pref
, priv
->fw_alt
);
5722 rc
= mwl8k_request_fw(priv
, priv
->fw_alt
, &priv
->fw_ucode
, true);
5724 printk(KERN_ERR
"%s: Error requesting alt fw %s\n",
5725 pci_name(priv
->pdev
), priv
->fw_alt
);
5731 static int mwl8k_firmware_load_success(struct mwl8k_priv
*priv
);
5732 static void mwl8k_fw_state_machine(const struct firmware
*fw
, void *context
)
5734 struct mwl8k_priv
*priv
= context
;
5735 struct mwl8k_device_info
*di
= priv
->device_info
;
5738 switch (priv
->fw_state
) {
5741 printk(KERN_ERR
"%s: Error requesting helper fw %s\n",
5742 pci_name(priv
->pdev
), di
->helper_image
);
5745 priv
->fw_helper
= fw
;
5746 rc
= mwl8k_request_fw(priv
, priv
->fw_pref
, &priv
->fw_ucode
,
5748 if (rc
&& priv
->fw_alt
) {
5749 rc
= mwl8k_request_alt_fw(priv
);
5752 priv
->fw_state
= FW_STATE_LOADING_ALT
;
5756 priv
->fw_state
= FW_STATE_LOADING_PREF
;
5759 case FW_STATE_LOADING_PREF
:
5762 rc
= mwl8k_request_alt_fw(priv
);
5765 priv
->fw_state
= FW_STATE_LOADING_ALT
;
5769 priv
->fw_ucode
= fw
;
5770 rc
= mwl8k_firmware_load_success(priv
);
5774 complete(&priv
->firmware_loading_complete
);
5778 case FW_STATE_LOADING_ALT
:
5780 printk(KERN_ERR
"%s: Error requesting alt fw %s\n",
5781 pci_name(priv
->pdev
), di
->helper_image
);
5784 priv
->fw_ucode
= fw
;
5785 rc
= mwl8k_firmware_load_success(priv
);
5789 complete(&priv
->firmware_loading_complete
);
5793 printk(KERN_ERR
"%s: Unexpected firmware loading state: %d\n",
5794 MWL8K_NAME
, priv
->fw_state
);
5801 priv
->fw_state
= FW_STATE_ERROR
;
5802 complete(&priv
->firmware_loading_complete
);
5803 device_release_driver(&priv
->pdev
->dev
);
5804 mwl8k_release_firmware(priv
);
5807 #define MAX_RESTART_ATTEMPTS 1
5808 static int mwl8k_init_firmware(struct ieee80211_hw
*hw
, char *fw_image
,
5811 struct mwl8k_priv
*priv
= hw
->priv
;
5813 int count
= MAX_RESTART_ATTEMPTS
;
5816 /* Reset firmware and hardware */
5817 mwl8k_hw_reset(priv
);
5819 /* Ask userland hotplug daemon for the device firmware */
5820 rc
= mwl8k_request_firmware(priv
, fw_image
, nowait
);
5822 wiphy_err(hw
->wiphy
, "Firmware files not found\n");
5829 /* Load firmware into hardware */
5830 rc
= mwl8k_load_firmware(hw
);
5832 wiphy_err(hw
->wiphy
, "Cannot start firmware\n");
5834 /* Reclaim memory once firmware is successfully loaded */
5835 mwl8k_release_firmware(priv
);
5838 /* FW did not start successfully;
5839 * lets try one more time
5842 wiphy_err(hw
->wiphy
, "Trying to reload the firmware again\n");
5850 static int mwl8k_init_txqs(struct ieee80211_hw
*hw
)
5852 struct mwl8k_priv
*priv
= hw
->priv
;
5856 for (i
= 0; i
< mwl8k_tx_queues(priv
); i
++) {
5857 rc
= mwl8k_txq_init(hw
, i
);
5861 iowrite32(priv
->txq
[i
].txd_dma
,
5862 priv
->sram
+ priv
->txq_offset
[i
]);
5867 /* initialize hw after successfully loading a firmware image */
5868 static int mwl8k_probe_hw(struct ieee80211_hw
*hw
)
5870 struct mwl8k_priv
*priv
= hw
->priv
;
5875 priv
->rxd_ops
= priv
->device_info
->ap_rxd_ops
;
5876 if (priv
->rxd_ops
== NULL
) {
5877 wiphy_err(hw
->wiphy
,
5878 "Driver does not have AP firmware image support for this hardware\n");
5880 goto err_stop_firmware
;
5883 priv
->rxd_ops
= &rxd_sta_ops
;
5886 priv
->sniffer_enabled
= false;
5887 priv
->wmm_enabled
= false;
5888 priv
->pending_tx_pkts
= 0;
5889 atomic_set(&priv
->watchdog_event_pending
, 0);
5891 rc
= mwl8k_rxq_init(hw
, 0);
5893 goto err_stop_firmware
;
5894 rxq_refill(hw
, 0, INT_MAX
);
5896 /* For the sta firmware, we need to know the dma addresses of tx queues
5897 * before sending MWL8K_CMD_GET_HW_SPEC. So we must initialize them
5898 * prior to issuing this command. But for the AP case, we learn the
5899 * total number of queues from the result CMD_GET_HW_SPEC, so for this
5900 * case we must initialize the tx queues after.
5902 priv
->num_ampdu_queues
= 0;
5904 rc
= mwl8k_init_txqs(hw
);
5906 goto err_free_queues
;
5909 iowrite32(0, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS
);
5910 iowrite32(0, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
5911 iowrite32(MWL8K_A2H_INT_TX_DONE
|MWL8K_A2H_INT_RX_READY
|
5912 MWL8K_A2H_INT_BA_WATCHDOG
,
5913 priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL
);
5914 iowrite32(MWL8K_A2H_INT_OPC_DONE
,
5915 priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK
);
5917 rc
= request_irq(priv
->pdev
->irq
, mwl8k_interrupt
,
5918 IRQF_SHARED
, MWL8K_NAME
, hw
);
5920 wiphy_err(hw
->wiphy
, "failed to register IRQ handler\n");
5921 goto err_free_queues
;
5925 * When hw restart is requested,
5926 * mac80211 will take care of clearing
5927 * the ampdu streams, so do not clear
5928 * the ampdu state here
5930 if (!priv
->hw_restart_in_progress
)
5931 memset(priv
->ampdu
, 0, sizeof(priv
->ampdu
));
5934 * Temporarily enable interrupts. Initial firmware host
5935 * commands use interrupts and avoid polling. Disable
5936 * interrupts when done.
5938 iowrite32(MWL8K_A2H_EVENTS
, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
5940 /* Get config data, mac addrs etc */
5942 rc
= mwl8k_cmd_get_hw_spec_ap(hw
);
5944 rc
= mwl8k_init_txqs(hw
);
5946 rc
= mwl8k_cmd_set_hw_spec(hw
);
5948 rc
= mwl8k_cmd_get_hw_spec_sta(hw
);
5951 wiphy_err(hw
->wiphy
, "Cannot initialise firmware\n");
5955 /* Turn radio off */
5956 rc
= mwl8k_cmd_radio_disable(hw
);
5958 wiphy_err(hw
->wiphy
, "Cannot disable\n");
5962 /* Clear MAC address */
5963 rc
= mwl8k_cmd_set_mac_addr(hw
, NULL
, "\x00\x00\x00\x00\x00\x00");
5965 wiphy_err(hw
->wiphy
, "Cannot clear MAC address\n");
5969 /* Configure Antennas */
5970 rc
= mwl8k_cmd_rf_antenna(hw
, MWL8K_RF_ANTENNA_RX
, 0x3);
5972 wiphy_warn(hw
->wiphy
, "failed to set # of RX antennas");
5973 rc
= mwl8k_cmd_rf_antenna(hw
, MWL8K_RF_ANTENNA_TX
, 0x7);
5975 wiphy_warn(hw
->wiphy
, "failed to set # of TX antennas");
5978 /* Disable interrupts */
5979 iowrite32(0, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
5980 free_irq(priv
->pdev
->irq
, hw
);
5982 wiphy_info(hw
->wiphy
, "%s v%d, %pm, %s firmware %u.%u.%u.%u\n",
5983 priv
->device_info
->part_name
,
5984 priv
->hw_rev
, hw
->wiphy
->perm_addr
,
5985 priv
->ap_fw
? "AP" : "STA",
5986 (priv
->fw_rev
>> 24) & 0xff, (priv
->fw_rev
>> 16) & 0xff,
5987 (priv
->fw_rev
>> 8) & 0xff, priv
->fw_rev
& 0xff);
5992 iowrite32(0, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
5993 free_irq(priv
->pdev
->irq
, hw
);
5996 for (i
= 0; i
< mwl8k_tx_queues(priv
); i
++)
5997 mwl8k_txq_deinit(hw
, i
);
5998 mwl8k_rxq_deinit(hw
, 0);
6001 mwl8k_hw_reset(priv
);
6007 * invoke mwl8k_reload_firmware to change the firmware image after the device
6008 * has already been registered
6010 static int mwl8k_reload_firmware(struct ieee80211_hw
*hw
, char *fw_image
)
6013 struct mwl8k_priv
*priv
= hw
->priv
;
6014 struct mwl8k_vif
*vif
, *tmp_vif
;
6017 mwl8k_rxq_deinit(hw
, 0);
6020 * All the existing interfaces are re-added by the ieee80211_reconfig;
6021 * which means driver should remove existing interfaces before calling
6022 * ieee80211_restart_hw
6024 if (priv
->hw_restart_in_progress
)
6025 list_for_each_entry_safe(vif
, tmp_vif
, &priv
->vif_list
, list
)
6026 mwl8k_remove_vif(priv
, vif
);
6028 for (i
= 0; i
< mwl8k_tx_queues(priv
); i
++)
6029 mwl8k_txq_deinit(hw
, i
);
6031 rc
= mwl8k_init_firmware(hw
, fw_image
, false);
6035 rc
= mwl8k_probe_hw(hw
);
6039 if (priv
->hw_restart_in_progress
)
6042 rc
= mwl8k_start(hw
);
6046 rc
= mwl8k_config(hw
, ~0);
6050 for (i
= 0; i
< MWL8K_TX_WMM_QUEUES
; i
++) {
6051 rc
= mwl8k_conf_tx(hw
, NULL
, i
, &priv
->wmm_params
[i
]);
6059 printk(KERN_WARNING
"mwl8k: Failed to reload firmware image.\n");
6063 static const struct ieee80211_iface_limit ap_if_limits
[] = {
6064 { .max
= 8, .types
= BIT(NL80211_IFTYPE_AP
) },
6065 { .max
= 1, .types
= BIT(NL80211_IFTYPE_STATION
) },
6068 static const struct ieee80211_iface_combination ap_if_comb
= {
6069 .limits
= ap_if_limits
,
6070 .n_limits
= ARRAY_SIZE(ap_if_limits
),
6071 .max_interfaces
= 8,
6072 .num_different_channels
= 1,
6076 static int mwl8k_firmware_load_success(struct mwl8k_priv
*priv
)
6078 struct ieee80211_hw
*hw
= priv
->hw
;
6081 rc
= mwl8k_load_firmware(hw
);
6082 mwl8k_release_firmware(priv
);
6084 wiphy_err(hw
->wiphy
, "Cannot start firmware\n");
6089 * Extra headroom is the size of the required DMA header
6090 * minus the size of the smallest 802.11 frame (CTS frame).
6092 hw
->extra_tx_headroom
=
6093 sizeof(struct mwl8k_dma_data
) - sizeof(struct ieee80211_cts
);
6095 hw
->extra_tx_headroom
-= priv
->ap_fw
? REDUCED_TX_HEADROOM
: 0;
6097 hw
->queues
= MWL8K_TX_WMM_QUEUES
;
6099 /* Set rssi values to dBm */
6100 ieee80211_hw_set(hw
, SIGNAL_DBM
);
6101 ieee80211_hw_set(hw
, HAS_RATE_CONTROL
);
6104 * Ask mac80211 to not to trigger PS mode
6105 * based on PM bit of incoming frames.
6108 ieee80211_hw_set(hw
, AP_LINK_PS
);
6110 hw
->vif_data_size
= sizeof(struct mwl8k_vif
);
6111 hw
->sta_data_size
= sizeof(struct mwl8k_sta
);
6113 priv
->macids_used
= 0;
6114 INIT_LIST_HEAD(&priv
->vif_list
);
6116 /* Set default radio state and preamble */
6117 priv
->radio_on
= false;
6118 priv
->radio_short_preamble
= false;
6120 /* Finalize join worker */
6121 INIT_WORK(&priv
->finalize_join_worker
, mwl8k_finalize_join_worker
);
6122 /* Handle watchdog ba events */
6123 INIT_WORK(&priv
->watchdog_ba_handle
, mwl8k_watchdog_ba_events
);
6124 /* To reload the firmware if it crashes */
6125 INIT_WORK(&priv
->fw_reload
, mwl8k_hw_restart_work
);
6127 /* TX reclaim and RX tasklets. */
6128 tasklet_setup(&priv
->poll_tx_task
, mwl8k_tx_poll
);
6129 tasklet_disable(&priv
->poll_tx_task
);
6130 tasklet_setup(&priv
->poll_rx_task
, mwl8k_rx_poll
);
6131 tasklet_disable(&priv
->poll_rx_task
);
6133 /* Power management cookie */
6134 priv
->cookie
= dma_alloc_coherent(&priv
->pdev
->dev
, 4,
6135 &priv
->cookie_dma
, GFP_KERNEL
);
6136 if (priv
->cookie
== NULL
)
6139 mutex_init(&priv
->fw_mutex
);
6140 priv
->fw_mutex_owner
= NULL
;
6141 priv
->fw_mutex_depth
= 0;
6142 priv
->hostcmd_wait
= NULL
;
6144 spin_lock_init(&priv
->tx_lock
);
6146 spin_lock_init(&priv
->stream_lock
);
6148 priv
->tx_wait
= NULL
;
6150 rc
= mwl8k_probe_hw(hw
);
6152 goto err_free_cookie
;
6154 hw
->wiphy
->interface_modes
= 0;
6156 if (priv
->ap_macids_supported
|| priv
->device_info
->fw_image_ap
) {
6157 hw
->wiphy
->interface_modes
|= BIT(NL80211_IFTYPE_AP
);
6158 hw
->wiphy
->interface_modes
|= BIT(NL80211_IFTYPE_STATION
);
6159 hw
->wiphy
->iface_combinations
= &ap_if_comb
;
6160 hw
->wiphy
->n_iface_combinations
= 1;
6163 if (priv
->sta_macids_supported
|| priv
->device_info
->fw_image_sta
)
6164 hw
->wiphy
->interface_modes
|= BIT(NL80211_IFTYPE_STATION
);
6166 wiphy_ext_feature_set(hw
->wiphy
, NL80211_EXT_FEATURE_CQM_RSSI_LIST
);
6168 rc
= ieee80211_register_hw(hw
);
6170 wiphy_err(hw
->wiphy
, "Cannot register device\n");
6171 goto err_unprobe_hw
;
6177 for (i
= 0; i
< mwl8k_tx_queues(priv
); i
++)
6178 mwl8k_txq_deinit(hw
, i
);
6179 mwl8k_rxq_deinit(hw
, 0);
6182 if (priv
->cookie
!= NULL
)
6183 dma_free_coherent(&priv
->pdev
->dev
, 4, priv
->cookie
,
6188 static int mwl8k_probe(struct pci_dev
*pdev
,
6189 const struct pci_device_id
*id
)
6191 static int printed_version
;
6192 struct ieee80211_hw
*hw
;
6193 struct mwl8k_priv
*priv
;
6194 struct mwl8k_device_info
*di
;
6197 if (!printed_version
) {
6198 printk(KERN_INFO
"%s version %s\n", MWL8K_DESC
, MWL8K_VERSION
);
6199 printed_version
= 1;
6203 rc
= pci_enable_device(pdev
);
6205 printk(KERN_ERR
"%s: Cannot enable new PCI device\n",
6210 rc
= pci_request_regions(pdev
, MWL8K_NAME
);
6212 printk(KERN_ERR
"%s: Cannot obtain PCI resources\n",
6214 goto err_disable_device
;
6217 pci_set_master(pdev
);
6220 hw
= ieee80211_alloc_hw(sizeof(*priv
), &mwl8k_ops
);
6222 printk(KERN_ERR
"%s: ieee80211 alloc failed\n", MWL8K_NAME
);
6227 SET_IEEE80211_DEV(hw
, &pdev
->dev
);
6228 pci_set_drvdata(pdev
, hw
);
6233 priv
->device_info
= &mwl8k_info_tbl
[id
->driver_data
];
6235 if (id
->driver_data
== MWL8764
)
6236 priv
->is_8764
= true;
6238 priv
->sram
= pci_iomap(pdev
, 0, 0x10000);
6239 if (priv
->sram
== NULL
) {
6240 wiphy_err(hw
->wiphy
, "Cannot map device SRAM\n");
6246 * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
6247 * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
6249 priv
->regs
= pci_iomap(pdev
, 1, 0x10000);
6250 if (priv
->regs
== NULL
) {
6251 priv
->regs
= pci_iomap(pdev
, 2, 0x10000);
6252 if (priv
->regs
== NULL
) {
6253 wiphy_err(hw
->wiphy
, "Cannot map device registers\n");
6260 * Choose the initial fw image depending on user input. If a second
6261 * image is available, make it the alternative image that will be
6262 * loaded if the first one fails.
6264 init_completion(&priv
->firmware_loading_complete
);
6265 di
= priv
->device_info
;
6266 if (ap_mode_default
&& di
->fw_image_ap
) {
6267 priv
->fw_pref
= di
->fw_image_ap
;
6268 priv
->fw_alt
= di
->fw_image_sta
;
6269 } else if (!ap_mode_default
&& di
->fw_image_sta
) {
6270 priv
->fw_pref
= di
->fw_image_sta
;
6271 priv
->fw_alt
= di
->fw_image_ap
;
6272 } else if (ap_mode_default
&& !di
->fw_image_ap
&& di
->fw_image_sta
) {
6273 printk(KERN_WARNING
"AP fw is unavailable. Using STA fw.");
6274 priv
->fw_pref
= di
->fw_image_sta
;
6275 } else if (!ap_mode_default
&& !di
->fw_image_sta
&& di
->fw_image_ap
) {
6276 printk(KERN_WARNING
"STA fw is unavailable. Using AP fw.");
6277 priv
->fw_pref
= di
->fw_image_ap
;
6279 rc
= mwl8k_init_firmware(hw
, priv
->fw_pref
, true);
6281 goto err_stop_firmware
;
6283 priv
->hw_restart_in_progress
= false;
6285 priv
->running_bsses
= 0;
6290 mwl8k_hw_reset(priv
);
6293 if (priv
->regs
!= NULL
)
6294 pci_iounmap(pdev
, priv
->regs
);
6296 if (priv
->sram
!= NULL
)
6297 pci_iounmap(pdev
, priv
->sram
);
6299 ieee80211_free_hw(hw
);
6302 pci_release_regions(pdev
);
6305 pci_disable_device(pdev
);
6310 static void mwl8k_remove(struct pci_dev
*pdev
)
6312 struct ieee80211_hw
*hw
= pci_get_drvdata(pdev
);
6313 struct mwl8k_priv
*priv
;
6320 wait_for_completion(&priv
->firmware_loading_complete
);
6322 if (priv
->fw_state
== FW_STATE_ERROR
) {
6323 mwl8k_hw_reset(priv
);
6327 ieee80211_stop_queues(hw
);
6329 ieee80211_unregister_hw(hw
);
6331 /* Remove TX reclaim and RX tasklets. */
6332 tasklet_kill(&priv
->poll_tx_task
);
6333 tasklet_kill(&priv
->poll_rx_task
);
6336 mwl8k_hw_reset(priv
);
6338 /* Return all skbs to mac80211 */
6339 for (i
= 0; i
< mwl8k_tx_queues(priv
); i
++)
6340 mwl8k_txq_reclaim(hw
, i
, INT_MAX
, 1);
6342 for (i
= 0; i
< mwl8k_tx_queues(priv
); i
++)
6343 mwl8k_txq_deinit(hw
, i
);
6345 mwl8k_rxq_deinit(hw
, 0);
6347 dma_free_coherent(&priv
->pdev
->dev
, 4, priv
->cookie
, priv
->cookie_dma
);
6350 pci_iounmap(pdev
, priv
->regs
);
6351 pci_iounmap(pdev
, priv
->sram
);
6352 ieee80211_free_hw(hw
);
6353 pci_release_regions(pdev
);
6354 pci_disable_device(pdev
);
6357 static struct pci_driver mwl8k_driver
= {
6359 .id_table
= mwl8k_pci_id_table
,
6360 .probe
= mwl8k_probe
,
6361 .remove
= mwl8k_remove
,
6364 module_pci_driver(mwl8k_driver
);
6366 MODULE_DESCRIPTION(MWL8K_DESC
);
6367 MODULE_VERSION(MWL8K_VERSION
);
6368 MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
6369 MODULE_LICENSE("GPL");