2 * drivers/net/wireless/mwl8k.c driver for Marvell TOPDOG 802.11 Wireless cards
4 * Copyright (C) 2008 Marvell Semiconductor Inc.
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/spinlock.h>
15 #include <linux/list.h>
16 #include <linux/pci.h>
17 #include <linux/delay.h>
18 #include <linux/completion.h>
19 #include <linux/etherdevice.h>
20 #include <net/mac80211.h>
21 #include <linux/moduleparam.h>
22 #include <linux/firmware.h>
23 #include <linux/workqueue.h>
25 #define MWL8K_DESC "Marvell TOPDOG(R) 802.11 Wireless Network Driver"
26 #define MWL8K_NAME KBUILD_MODNAME
27 #define MWL8K_VERSION "0.9.1"
29 MODULE_DESCRIPTION(MWL8K_DESC
);
30 MODULE_VERSION(MWL8K_VERSION
);
31 MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
32 MODULE_LICENSE("GPL");
34 static DEFINE_PCI_DEVICE_TABLE(mwl8k_table
) = {
35 { PCI_VDEVICE(MARVELL
, 0x2a2b), .driver_data
= 8687, },
36 { PCI_VDEVICE(MARVELL
, 0x2a30), .driver_data
= 8687, },
39 MODULE_DEVICE_TABLE(pci
, mwl8k_table
);
41 #define IEEE80211_ADDR_LEN ETH_ALEN
43 /* Register definitions */
44 #define MWL8K_HIU_GEN_PTR 0x00000c10
45 #define MWL8K_MODE_STA 0x0000005a
46 #define MWL8K_MODE_AP 0x000000a5
47 #define MWL8K_HIU_INT_CODE 0x00000c14
48 #define MWL8K_FWSTA_READY 0xf0f1f2f4
49 #define MWL8K_FWAP_READY 0xf1f2f4a5
50 #define MWL8K_INT_CODE_CMD_FINISHED 0x00000005
51 #define MWL8K_HIU_SCRATCH 0x00000c40
53 /* Host->device communications */
54 #define MWL8K_HIU_H2A_INTERRUPT_EVENTS 0x00000c18
55 #define MWL8K_HIU_H2A_INTERRUPT_STATUS 0x00000c1c
56 #define MWL8K_HIU_H2A_INTERRUPT_MASK 0x00000c20
57 #define MWL8K_HIU_H2A_INTERRUPT_CLEAR_SEL 0x00000c24
58 #define MWL8K_HIU_H2A_INTERRUPT_STATUS_MASK 0x00000c28
59 #define MWL8K_H2A_INT_DUMMY (1 << 20)
60 #define MWL8K_H2A_INT_RESET (1 << 15)
61 #define MWL8K_H2A_INT_PS (1 << 2)
62 #define MWL8K_H2A_INT_DOORBELL (1 << 1)
63 #define MWL8K_H2A_INT_PPA_READY (1 << 0)
65 /* Device->host communications */
66 #define MWL8K_HIU_A2H_INTERRUPT_EVENTS 0x00000c2c
67 #define MWL8K_HIU_A2H_INTERRUPT_STATUS 0x00000c30
68 #define MWL8K_HIU_A2H_INTERRUPT_MASK 0x00000c34
69 #define MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL 0x00000c38
70 #define MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK 0x00000c3c
71 #define MWL8K_A2H_INT_DUMMY (1 << 20)
72 #define MWL8K_A2H_INT_CHNL_SWITCHED (1 << 11)
73 #define MWL8K_A2H_INT_QUEUE_EMPTY (1 << 10)
74 #define MWL8K_A2H_INT_RADAR_DETECT (1 << 7)
75 #define MWL8K_A2H_INT_RADIO_ON (1 << 6)
76 #define MWL8K_A2H_INT_RADIO_OFF (1 << 5)
77 #define MWL8K_A2H_INT_MAC_EVENT (1 << 3)
78 #define MWL8K_A2H_INT_OPC_DONE (1 << 2)
79 #define MWL8K_A2H_INT_RX_READY (1 << 1)
80 #define MWL8K_A2H_INT_TX_DONE (1 << 0)
82 #define MWL8K_A2H_EVENTS (MWL8K_A2H_INT_DUMMY | \
83 MWL8K_A2H_INT_CHNL_SWITCHED | \
84 MWL8K_A2H_INT_QUEUE_EMPTY | \
85 MWL8K_A2H_INT_RADAR_DETECT | \
86 MWL8K_A2H_INT_RADIO_ON | \
87 MWL8K_A2H_INT_RADIO_OFF | \
88 MWL8K_A2H_INT_MAC_EVENT | \
89 MWL8K_A2H_INT_OPC_DONE | \
90 MWL8K_A2H_INT_RX_READY | \
91 MWL8K_A2H_INT_TX_DONE)
93 /* WME stream classes */
94 #define WME_AC_BE 0 /* best effort */
95 #define WME_AC_BK 1 /* background */
96 #define WME_AC_VI 2 /* video */
97 #define WME_AC_VO 3 /* voice */
99 #define MWL8K_RX_QUEUES 1
100 #define MWL8K_TX_QUEUES 4
102 struct mwl8k_rx_queue
{
105 /* hw receives here */
108 /* refill descs here */
111 struct mwl8k_rx_desc
*rx_desc_area
;
112 dma_addr_t rx_desc_dma
;
113 struct sk_buff
**rx_skb
;
118 * The DMA engine requires a modification to the payload.
119 * If the skbuff is shared/cloned, it needs to be unshared.
120 * This method is used to ensure the stack always gets back
121 * the skbuff it sent for transmission.
123 struct sk_buff
*clone
;
127 struct mwl8k_tx_queue
{
128 /* hw transmits here */
131 /* sw appends here */
134 struct ieee80211_tx_queue_stats tx_stats
;
135 struct mwl8k_tx_desc
*tx_desc_area
;
136 dma_addr_t tx_desc_dma
;
137 struct mwl8k_skb
*tx_skb
;
140 /* Pointers to the firmware data and meta information about it. */
141 struct mwl8k_firmware
{
143 struct firmware
*ucode
;
145 /* Boot helper code */
146 struct firmware
*helper
;
151 struct ieee80211_hw
*hw
;
153 struct pci_dev
*pdev
;
155 /* firmware access lock */
158 /* firmware files and meta data */
159 struct mwl8k_firmware fw
;
162 /* lock held over TX and TX reap */
166 struct ieee80211_vif
*vif
;
167 struct list_head vif_list
;
169 struct ieee80211_channel
*current_channel
;
171 /* power management status cookie from firmware */
173 dma_addr_t cookie_dma
;
182 * Running count of TX packets in flight, to avoid
183 * iterating over the transmit rings each time.
187 struct mwl8k_rx_queue rxq
[MWL8K_RX_QUEUES
];
188 struct mwl8k_tx_queue txq
[MWL8K_TX_QUEUES
];
191 struct ieee80211_supported_band band
;
192 struct ieee80211_channel channels
[14];
193 struct ieee80211_rate rates
[12];
195 /* RF preamble: Short, Long or Auto */
199 /* WMM MODE 1 for enabled; 0 for disabled */
202 /* Set if PHY config is in progress */
205 /* XXX need to convert this to handle multiple interfaces */
207 u8 capture_bssid
[IEEE80211_ADDR_LEN
];
208 struct sk_buff
*beacon_skb
;
211 * This FJ worker has to be global as it is scheduled from the
212 * RX handler. At this point we don't know which interface it
213 * belongs to until the list of bssids waiting to complete join
216 struct work_struct finalize_join_worker
;
218 /* Tasklet to reclaim TX descriptors and buffers after tx */
219 struct tasklet_struct tx_reclaim_task
;
221 /* Work thread to serialize configuration requests */
222 struct workqueue_struct
*config_wq
;
223 struct completion
*hostcmd_wait
;
224 struct completion
*tx_wait
;
227 /* Per interface specific private data */
229 struct list_head node
;
231 /* backpointer to parent config block */
232 struct mwl8k_priv
*priv
;
234 /* BSS config of AP or IBSS from mac80211*/
235 struct ieee80211_bss_conf bss_info
;
237 /* BSSID of AP or IBSS */
238 u8 bssid
[IEEE80211_ADDR_LEN
];
239 u8 mac_addr
[IEEE80211_ADDR_LEN
];
242 * Subset of supported legacy rates.
243 * Intersection of AP and STA supported rates.
245 struct ieee80211_rate legacy_rates
[12];
247 /* number of supported legacy rates */
250 /* Number of supported MCS rates. Work in progress */
253 /* Index into station database.Returned by update_sta_db call */
256 /* Non AMPDU sequence number assigned by driver */
259 /* Note:There is no channel info,
260 * refer to the master channel info in priv
264 #define MWL8K_VIF(_vif) (struct mwl8k_vif *)(&((_vif)->drv_priv))
266 static const struct ieee80211_channel mwl8k_channels
[] = {
267 { .center_freq
= 2412, .hw_value
= 1, },
268 { .center_freq
= 2417, .hw_value
= 2, },
269 { .center_freq
= 2422, .hw_value
= 3, },
270 { .center_freq
= 2427, .hw_value
= 4, },
271 { .center_freq
= 2432, .hw_value
= 5, },
272 { .center_freq
= 2437, .hw_value
= 6, },
273 { .center_freq
= 2442, .hw_value
= 7, },
274 { .center_freq
= 2447, .hw_value
= 8, },
275 { .center_freq
= 2452, .hw_value
= 9, },
276 { .center_freq
= 2457, .hw_value
= 10, },
277 { .center_freq
= 2462, .hw_value
= 11, },
280 static const struct ieee80211_rate mwl8k_rates
[] = {
281 { .bitrate
= 10, .hw_value
= 2, },
282 { .bitrate
= 20, .hw_value
= 4, },
283 { .bitrate
= 55, .hw_value
= 11, },
284 { .bitrate
= 60, .hw_value
= 12, },
285 { .bitrate
= 90, .hw_value
= 18, },
286 { .bitrate
= 110, .hw_value
= 22, },
287 { .bitrate
= 120, .hw_value
= 24, },
288 { .bitrate
= 180, .hw_value
= 36, },
289 { .bitrate
= 240, .hw_value
= 48, },
290 { .bitrate
= 360, .hw_value
= 72, },
291 { .bitrate
= 480, .hw_value
= 96, },
292 { .bitrate
= 540, .hw_value
= 108, },
296 #define MWL8K_RADIO_FORCE 0x2
297 #define MWL8K_RADIO_ENABLE 0x1
298 #define MWL8K_RADIO_DISABLE 0x0
299 #define MWL8K_RADIO_AUTO_PREAMBLE 0x0005
300 #define MWL8K_RADIO_SHORT_PREAMBLE 0x0003
301 #define MWL8K_RADIO_LONG_PREAMBLE 0x0001
304 #define MWL8K_WMM_ENABLE 1
305 #define MWL8K_WMM_DISABLE 0
307 #define MWL8K_RADIO_DEFAULT_PREAMBLE MWL8K_RADIO_LONG_PREAMBLE
311 /* Short Slot: 9us slot time */
312 #define MWL8K_SHORT_SLOTTIME 1
314 /* Long slot: 20us slot time */
315 #define MWL8K_LONG_SLOTTIME 0
317 /* Set or get info from Firmware */
318 #define MWL8K_CMD_SET 0x0001
319 #define MWL8K_CMD_GET 0x0000
321 /* Firmware command codes */
322 #define MWL8K_CMD_CODE_DNLD 0x0001
323 #define MWL8K_CMD_GET_HW_SPEC 0x0003
324 #define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010
325 #define MWL8K_CMD_GET_STAT 0x0014
326 #define MWL8K_CMD_RADIO_CONTROL 0x001C
327 #define MWL8K_CMD_RF_TX_POWER 0x001E
328 #define MWL8K_CMD_SET_PRE_SCAN 0x0107
329 #define MWL8K_CMD_SET_POST_SCAN 0x0108
330 #define MWL8K_CMD_SET_RF_CHANNEL 0x010A
331 #define MWL8K_CMD_SET_SLOT 0x0114
332 #define MWL8K_CMD_MIMO_CONFIG 0x0125
333 #define MWL8K_CMD_ENABLE_SNIFFER 0x0150
334 #define MWL8K_CMD_SET_WMM_MODE 0x0123
335 #define MWL8K_CMD_SET_EDCA_PARAMS 0x0115
336 #define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111
337 #define MWL8K_CMD_UPDATE_STADB 0x1123
338 #define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203
339 #define MWL8K_CMD_SET_LINKADAPT_MODE 0x0129
340 #define MWL8K_CMD_SET_AID 0x010d
341 #define MWL8K_CMD_SET_RATE 0x0110
342 #define MWL8K_CMD_USE_FIXED_RATE 0x0126
343 #define MWL8K_CMD_RTS_THRESHOLD 0x0113
344 #define MWL8K_CMD_ENCRYPTION 0x1122
346 static const char *mwl8k_cmd_name(u16 cmd
, char *buf
, int bufsize
)
348 #define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\
349 snprintf(buf, bufsize, "%s", #x);\
352 switch (cmd
& (~0x8000)) {
353 MWL8K_CMDNAME(CODE_DNLD
);
354 MWL8K_CMDNAME(GET_HW_SPEC
);
355 MWL8K_CMDNAME(MAC_MULTICAST_ADR
);
356 MWL8K_CMDNAME(GET_STAT
);
357 MWL8K_CMDNAME(RADIO_CONTROL
);
358 MWL8K_CMDNAME(RF_TX_POWER
);
359 MWL8K_CMDNAME(SET_PRE_SCAN
);
360 MWL8K_CMDNAME(SET_POST_SCAN
);
361 MWL8K_CMDNAME(SET_RF_CHANNEL
);
362 MWL8K_CMDNAME(SET_SLOT
);
363 MWL8K_CMDNAME(MIMO_CONFIG
);
364 MWL8K_CMDNAME(ENABLE_SNIFFER
);
365 MWL8K_CMDNAME(SET_WMM_MODE
);
366 MWL8K_CMDNAME(SET_EDCA_PARAMS
);
367 MWL8K_CMDNAME(SET_FINALIZE_JOIN
);
368 MWL8K_CMDNAME(UPDATE_STADB
);
369 MWL8K_CMDNAME(SET_RATEADAPT_MODE
);
370 MWL8K_CMDNAME(SET_LINKADAPT_MODE
);
371 MWL8K_CMDNAME(SET_AID
);
372 MWL8K_CMDNAME(SET_RATE
);
373 MWL8K_CMDNAME(USE_FIXED_RATE
);
374 MWL8K_CMDNAME(RTS_THRESHOLD
);
375 MWL8K_CMDNAME(ENCRYPTION
);
377 snprintf(buf
, bufsize
, "0x%x", cmd
);
384 /* Hardware and firmware reset */
385 static void mwl8k_hw_reset(struct mwl8k_priv
*priv
)
387 iowrite32(MWL8K_H2A_INT_RESET
,
388 priv
->regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
389 iowrite32(MWL8K_H2A_INT_RESET
,
390 priv
->regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
394 /* Release fw image */
395 static void mwl8k_release_fw(struct firmware
**fw
)
399 release_firmware(*fw
);
403 static void mwl8k_release_firmware(struct mwl8k_priv
*priv
)
405 mwl8k_release_fw(&priv
->fw
.ucode
);
406 mwl8k_release_fw(&priv
->fw
.helper
);
409 /* Request fw image */
410 static int mwl8k_request_fw(struct mwl8k_priv
*priv
,
411 const char *fname
, struct firmware
**fw
)
413 /* release current image */
415 mwl8k_release_fw(fw
);
417 return request_firmware((const struct firmware
**)fw
,
418 fname
, &priv
->pdev
->dev
);
421 static int mwl8k_request_firmware(struct mwl8k_priv
*priv
, u32 part_num
)
426 priv
->part_num
= part_num
;
428 snprintf(filename
, sizeof(filename
),
429 "mwl8k/helper_%u.fw", priv
->part_num
);
431 rc
= mwl8k_request_fw(priv
, filename
, &priv
->fw
.helper
);
434 "%s Error requesting helper firmware file %s\n",
435 pci_name(priv
->pdev
), filename
);
439 snprintf(filename
, sizeof(filename
),
440 "mwl8k/fmimage_%u.fw", priv
->part_num
);
442 rc
= mwl8k_request_fw(priv
, filename
, &priv
->fw
.ucode
);
444 printk(KERN_ERR
"%s Error requesting firmware file %s\n",
445 pci_name(priv
->pdev
), filename
);
446 mwl8k_release_fw(&priv
->fw
.helper
);
453 struct mwl8k_cmd_pkt
{
459 } __attribute__((packed
));
465 mwl8k_send_fw_load_cmd(struct mwl8k_priv
*priv
, void *data
, int length
)
467 void __iomem
*regs
= priv
->regs
;
472 dma_addr
= pci_map_single(priv
->pdev
, data
, length
, PCI_DMA_TODEVICE
);
473 if (pci_dma_mapping_error(priv
->pdev
, dma_addr
))
476 iowrite32(dma_addr
, regs
+ MWL8K_HIU_GEN_PTR
);
477 iowrite32(0, regs
+ MWL8K_HIU_INT_CODE
);
478 iowrite32(MWL8K_H2A_INT_DOORBELL
,
479 regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
480 iowrite32(MWL8K_H2A_INT_DUMMY
,
481 regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
488 int_code
= ioread32(regs
+ MWL8K_HIU_INT_CODE
);
489 if (int_code
== MWL8K_INT_CODE_CMD_FINISHED
) {
490 iowrite32(0, regs
+ MWL8K_HIU_INT_CODE
);
498 pci_unmap_single(priv
->pdev
, dma_addr
, length
, PCI_DMA_TODEVICE
);
501 * Clear 'command done' interrupt bit.
507 status
= ioread32(priv
->regs
+
508 MWL8K_HIU_A2H_INTERRUPT_STATUS
);
509 if (status
& MWL8K_A2H_INT_OPC_DONE
) {
510 iowrite32(~MWL8K_A2H_INT_OPC_DONE
,
511 priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS
);
512 ioread32(priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS
);
522 static int mwl8k_load_fw_image(struct mwl8k_priv
*priv
,
523 const u8
*data
, size_t length
)
525 struct mwl8k_cmd_pkt
*cmd
;
529 cmd
= kmalloc(sizeof(*cmd
) + 256, GFP_KERNEL
);
533 cmd
->code
= cpu_to_le16(MWL8K_CMD_CODE_DNLD
);
539 int block_size
= length
> 256 ? 256 : length
;
541 memcpy(cmd
->payload
, data
+ done
, block_size
);
542 cmd
->length
= cpu_to_le16(block_size
);
544 rc
= mwl8k_send_fw_load_cmd(priv
, cmd
,
545 sizeof(*cmd
) + block_size
);
550 length
-= block_size
;
555 rc
= mwl8k_send_fw_load_cmd(priv
, cmd
, sizeof(*cmd
));
563 static int mwl8k_feed_fw_image(struct mwl8k_priv
*priv
,
564 const u8
*data
, size_t length
)
566 unsigned char *buffer
;
567 int may_continue
, rc
= 0;
568 u32 done
, prev_block_size
;
570 buffer
= kmalloc(1024, GFP_KERNEL
);
577 while (may_continue
> 0) {
580 block_size
= ioread32(priv
->regs
+ MWL8K_HIU_SCRATCH
);
581 if (block_size
& 1) {
585 done
+= prev_block_size
;
586 length
-= prev_block_size
;
589 if (block_size
> 1024 || block_size
> length
) {
599 if (block_size
== 0) {
606 prev_block_size
= block_size
;
607 memcpy(buffer
, data
+ done
, block_size
);
609 rc
= mwl8k_send_fw_load_cmd(priv
, buffer
, block_size
);
614 if (!rc
&& length
!= 0)
622 static int mwl8k_load_firmware(struct mwl8k_priv
*priv
)
626 const u8
*ucode
= priv
->fw
.ucode
->data
;
627 size_t ucode_len
= priv
->fw
.ucode
->size
;
628 const u8
*helper
= priv
->fw
.helper
->data
;
629 size_t helper_len
= priv
->fw
.helper
->size
;
631 if (!memcmp(ucode
, "\x01\x00\x00\x00", 4)) {
632 rc
= mwl8k_load_fw_image(priv
, helper
, helper_len
);
634 printk(KERN_ERR
"%s: unable to load firmware "
635 "helper image\n", pci_name(priv
->pdev
));
640 rc
= mwl8k_feed_fw_image(priv
, ucode
, ucode_len
);
642 rc
= mwl8k_load_fw_image(priv
, ucode
, ucode_len
);
646 printk(KERN_ERR
"%s: unable to load firmware data\n",
647 pci_name(priv
->pdev
));
651 iowrite32(MWL8K_MODE_STA
, priv
->regs
+ MWL8K_HIU_GEN_PTR
);
656 if (ioread32(priv
->regs
+ MWL8K_HIU_INT_CODE
)
657 == MWL8K_FWSTA_READY
)
662 return loops
? 0 : -ETIMEDOUT
;
667 * Defines shared between transmission and reception.
669 /* HT control fields for firmware */
674 } __attribute__((packed
));
676 /* Firmware Station database operations */
677 #define MWL8K_STA_DB_ADD_ENTRY 0
678 #define MWL8K_STA_DB_MODIFY_ENTRY 1
679 #define MWL8K_STA_DB_DEL_ENTRY 2
680 #define MWL8K_STA_DB_FLUSH 3
682 /* Peer Entry flags - used to define the type of the peer node */
683 #define MWL8K_PEER_TYPE_ACCESSPOINT 2
684 #define MWL8K_PEER_TYPE_ADHOC_STATION 4
686 #define MWL8K_IEEE_LEGACY_DATA_RATES 12
687 #define MWL8K_MCS_BITMAP_SIZE 16
690 struct peer_capability_info
{
691 /* Peer type - AP vs. STA. */
694 /* Basic 802.11 capabilities from assoc resp. */
697 /* Set if peer supports 802.11n high throughput (HT). */
700 /* Valid if HT is supported. */
702 __u8 extended_ht_caps
;
703 struct ewc_ht_info ewc_info
;
705 /* Legacy rate table. Intersection of our rates and peer rates. */
706 __u8 legacy_rates
[MWL8K_IEEE_LEGACY_DATA_RATES
];
708 /* HT rate table. Intersection of our rates and peer rates. */
709 __u8 ht_rates
[MWL8K_MCS_BITMAP_SIZE
];
712 /* If set, interoperability mode, no proprietary extensions. */
716 __le16 amsdu_enabled
;
717 } __attribute__((packed
));
719 /* Inline functions to manipulate QoS field in data descriptor. */
720 static inline u16
mwl8k_qos_setbit_tid(u16 qos
, u8 tid
)
722 u16 val_mask
= 0x000f;
723 u16 qos_mask
= ~val_mask
;
726 return (qos
& qos_mask
) | (tid
& val_mask
);
729 static inline u16
mwl8k_qos_setbit_eosp(u16 qos
)
731 u16 val_mask
= 1 << 4;
733 /* End of Service Period Bit 4 */
734 return qos
| val_mask
;
737 static inline u16
mwl8k_qos_setbit_ack(u16 qos
, u8 ack_policy
)
741 u16 qos_mask
= ~(val_mask
<< shift
);
743 /* Ack Policy Bit 5-6 */
744 return (qos
& qos_mask
) | ((ack_policy
& val_mask
) << shift
);
747 static inline u16
mwl8k_qos_setbit_amsdu(u16 qos
)
749 u16 val_mask
= 1 << 7;
751 /* AMSDU present Bit 7 */
752 return qos
| val_mask
;
755 static inline u16
mwl8k_qos_setbit_qlen(u16 qos
, u8 len
)
759 u16 qos_mask
= ~(val_mask
<< shift
);
761 /* Queue Length Bits 8-15 */
762 return (qos
& qos_mask
) | ((len
& val_mask
) << shift
);
765 /* DMA header used by firmware and hardware. */
766 struct mwl8k_dma_data
{
768 struct ieee80211_hdr wh
;
769 } __attribute__((packed
));
771 /* Routines to add/remove DMA header from skb. */
772 static inline int mwl8k_remove_dma_header(struct sk_buff
*skb
)
774 struct mwl8k_dma_data
*tr
= (struct mwl8k_dma_data
*)(skb
->data
);
775 void *dst
, *src
= &tr
->wh
;
776 __le16 fc
= tr
->wh
.frame_control
;
777 int hdrlen
= ieee80211_hdrlen(fc
);
778 u16 space
= sizeof(struct mwl8k_dma_data
) - hdrlen
;
780 dst
= (void *)tr
+ space
;
782 memmove(dst
, src
, hdrlen
);
783 skb_pull(skb
, space
);
789 static inline struct sk_buff
*mwl8k_add_dma_header(struct sk_buff
*skb
)
791 struct ieee80211_hdr
*wh
;
793 struct mwl8k_dma_data
*tr
;
795 wh
= (struct ieee80211_hdr
*)skb
->data
;
796 hdrlen
= ieee80211_hdrlen(wh
->frame_control
);
800 * Copy up/down the 802.11 header; the firmware requires
801 * we present a 2-byte payload length followed by a
802 * 4-address header (w/o QoS), followed (optionally) by
803 * any WEP/ExtIV header (but only filled in for CCMP).
805 if (hdrlen
!= sizeof(struct mwl8k_dma_data
))
806 skb_push(skb
, sizeof(struct mwl8k_dma_data
) - hdrlen
);
808 tr
= (struct mwl8k_dma_data
*)skb
->data
;
810 memmove(&tr
->wh
, wh
, hdrlen
);
813 memset(tr
->wh
.addr4
, 0, IEEE80211_ADDR_LEN
);
816 * Firmware length is the length of the fully formed "802.11
817 * payload". That is, everything except for the 802.11 header.
818 * This includes all crypto material including the MIC.
820 tr
->fwlen
= cpu_to_le16(pktlen
- hdrlen
);
829 #define MWL8K_RX_CTRL_KEY_INDEX_MASK 0x30
830 #define MWL8K_RX_CTRL_OWNED_BY_HOST 0x02
831 #define MWL8K_RX_CTRL_AMPDU 0x01
833 struct mwl8k_rx_desc
{
837 __le32 pkt_phys_addr
;
838 __le32 next_rx_desc_phys_addr
;
848 } __attribute__((packed
));
850 #define MWL8K_RX_DESCS 256
851 #define MWL8K_RX_MAXSZ 3800
853 static int mwl8k_rxq_init(struct ieee80211_hw
*hw
, int index
)
855 struct mwl8k_priv
*priv
= hw
->priv
;
856 struct mwl8k_rx_queue
*rxq
= priv
->rxq
+ index
;
860 rxq
->rx_desc_count
= 0;
864 size
= MWL8K_RX_DESCS
* sizeof(struct mwl8k_rx_desc
);
867 pci_alloc_consistent(priv
->pdev
, size
, &rxq
->rx_desc_dma
);
868 if (rxq
->rx_desc_area
== NULL
) {
869 printk(KERN_ERR
"%s: failed to alloc RX descriptors\n",
873 memset(rxq
->rx_desc_area
, 0, size
);
875 rxq
->rx_skb
= kmalloc(MWL8K_RX_DESCS
*
876 sizeof(*rxq
->rx_skb
), GFP_KERNEL
);
877 if (rxq
->rx_skb
== NULL
) {
878 printk(KERN_ERR
"%s: failed to alloc RX skbuff list\n",
880 pci_free_consistent(priv
->pdev
, size
,
881 rxq
->rx_desc_area
, rxq
->rx_desc_dma
);
884 memset(rxq
->rx_skb
, 0, MWL8K_RX_DESCS
* sizeof(*rxq
->rx_skb
));
886 for (i
= 0; i
< MWL8K_RX_DESCS
; i
++) {
887 struct mwl8k_rx_desc
*rx_desc
;
890 rx_desc
= rxq
->rx_desc_area
+ i
;
891 nexti
= (i
+ 1) % MWL8K_RX_DESCS
;
893 rx_desc
->next_rx_desc_phys_addr
=
894 cpu_to_le32(rxq
->rx_desc_dma
895 + nexti
* sizeof(*rx_desc
));
896 rx_desc
->rx_ctrl
= MWL8K_RX_CTRL_OWNED_BY_HOST
;
902 static int rxq_refill(struct ieee80211_hw
*hw
, int index
, int limit
)
904 struct mwl8k_priv
*priv
= hw
->priv
;
905 struct mwl8k_rx_queue
*rxq
= priv
->rxq
+ index
;
909 while (rxq
->rx_desc_count
< MWL8K_RX_DESCS
&& limit
--) {
913 skb
= dev_alloc_skb(MWL8K_RX_MAXSZ
);
917 rxq
->rx_desc_count
++;
920 rxq
->rx_tail
= (rx
+ 1) % MWL8K_RX_DESCS
;
922 rxq
->rx_desc_area
[rx
].pkt_phys_addr
=
923 cpu_to_le32(pci_map_single(priv
->pdev
, skb
->data
,
924 MWL8K_RX_MAXSZ
, DMA_FROM_DEVICE
));
926 rxq
->rx_desc_area
[rx
].pkt_len
= cpu_to_le16(MWL8K_RX_MAXSZ
);
927 rxq
->rx_skb
[rx
] = skb
;
929 rxq
->rx_desc_area
[rx
].rx_ctrl
= 0;
937 /* Must be called only when the card's reception is completely halted */
938 static void mwl8k_rxq_deinit(struct ieee80211_hw
*hw
, int index
)
940 struct mwl8k_priv
*priv
= hw
->priv
;
941 struct mwl8k_rx_queue
*rxq
= priv
->rxq
+ index
;
944 for (i
= 0; i
< MWL8K_RX_DESCS
; i
++) {
945 if (rxq
->rx_skb
[i
] != NULL
) {
948 addr
= le32_to_cpu(rxq
->rx_desc_area
[i
].pkt_phys_addr
);
949 pci_unmap_single(priv
->pdev
, addr
, MWL8K_RX_MAXSZ
,
951 kfree_skb(rxq
->rx_skb
[i
]);
952 rxq
->rx_skb
[i
] = NULL
;
959 pci_free_consistent(priv
->pdev
,
960 MWL8K_RX_DESCS
* sizeof(struct mwl8k_rx_desc
),
961 rxq
->rx_desc_area
, rxq
->rx_desc_dma
);
962 rxq
->rx_desc_area
= NULL
;
967 * Scan a list of BSSIDs to process for finalize join.
968 * Allows for extension to process multiple BSSIDs.
971 mwl8k_capture_bssid(struct mwl8k_priv
*priv
, struct ieee80211_hdr
*wh
)
973 return priv
->capture_beacon
&&
974 ieee80211_is_beacon(wh
->frame_control
) &&
975 !compare_ether_addr(wh
->addr3
, priv
->capture_bssid
);
978 static inline void mwl8k_save_beacon(struct mwl8k_priv
*priv
,
981 priv
->capture_beacon
= false;
982 memset(priv
->capture_bssid
, 0, IEEE80211_ADDR_LEN
);
985 * Use GFP_ATOMIC as rxq_process is called from
986 * the primary interrupt handler, memory allocation call
989 priv
->beacon_skb
= skb_copy(skb
, GFP_ATOMIC
);
990 if (priv
->beacon_skb
!= NULL
)
991 queue_work(priv
->config_wq
,
992 &priv
->finalize_join_worker
);
995 static int rxq_process(struct ieee80211_hw
*hw
, int index
, int limit
)
997 struct mwl8k_priv
*priv
= hw
->priv
;
998 struct mwl8k_rx_queue
*rxq
= priv
->rxq
+ index
;
1002 while (rxq
->rx_desc_count
&& limit
--) {
1003 struct mwl8k_rx_desc
*rx_desc
;
1004 struct sk_buff
*skb
;
1005 struct ieee80211_rx_status status
;
1007 struct ieee80211_hdr
*wh
;
1009 rx_desc
= rxq
->rx_desc_area
+ rxq
->rx_head
;
1010 if (!(rx_desc
->rx_ctrl
& MWL8K_RX_CTRL_OWNED_BY_HOST
))
1014 skb
= rxq
->rx_skb
[rxq
->rx_head
];
1015 rxq
->rx_skb
[rxq
->rx_head
] = NULL
;
1017 rxq
->rx_head
= (rxq
->rx_head
+ 1) % MWL8K_RX_DESCS
;
1018 rxq
->rx_desc_count
--;
1020 addr
= le32_to_cpu(rx_desc
->pkt_phys_addr
);
1021 pci_unmap_single(priv
->pdev
, addr
,
1022 MWL8K_RX_MAXSZ
, PCI_DMA_FROMDEVICE
);
1024 skb_put(skb
, le16_to_cpu(rx_desc
->pkt_len
));
1025 if (mwl8k_remove_dma_header(skb
)) {
1030 wh
= (struct ieee80211_hdr
*)skb
->data
;
1033 * Check for pending join operation. save a copy of
1034 * the beacon and schedule a tasklet to send finalize
1035 * join command to the firmware.
1037 if (mwl8k_capture_bssid(priv
, wh
))
1038 mwl8k_save_beacon(priv
, skb
);
1040 memset(&status
, 0, sizeof(status
));
1042 status
.signal
= -rx_desc
->rssi
;
1043 status
.noise
= -rx_desc
->noise_level
;
1044 status
.qual
= rx_desc
->link_quality
;
1046 status
.rate_idx
= 1;
1048 status
.band
= IEEE80211_BAND_2GHZ
;
1049 status
.freq
= ieee80211_channel_to_frequency(rx_desc
->channel
);
1050 ieee80211_rx_irqsafe(hw
, skb
, &status
);
1060 * Packet transmission.
1063 /* Transmit queue assignment. */
1065 MWL8K_WME_AC_BK
= 0, /* background access */
1066 MWL8K_WME_AC_BE
= 1, /* best effort access */
1067 MWL8K_WME_AC_VI
= 2, /* video access */
1068 MWL8K_WME_AC_VO
= 3, /* voice access */
1071 /* Transmit packet ACK policy */
1072 #define MWL8K_TXD_ACK_POLICY_NORMAL 0
1073 #define MWL8K_TXD_ACK_POLICY_NONE 1
1074 #define MWL8K_TXD_ACK_POLICY_NO_EXPLICIT 2
1075 #define MWL8K_TXD_ACK_POLICY_BLOCKACK 3
1077 #define GET_TXQ(_ac) (\
1078 ((_ac) == WME_AC_VO) ? MWL8K_WME_AC_VO : \
1079 ((_ac) == WME_AC_VI) ? MWL8K_WME_AC_VI : \
1080 ((_ac) == WME_AC_BK) ? MWL8K_WME_AC_BK : \
1083 #define MWL8K_TXD_STATUS_IDLE 0x00000000
1084 #define MWL8K_TXD_STATUS_USED 0x00000001
1085 #define MWL8K_TXD_STATUS_OK 0x00000001
1086 #define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
1087 #define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
1088 #define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
1089 #define MWL8K_TXD_STATUS_BROADCAST_TX 0x00000010
1090 #define MWL8K_TXD_STATUS_FAILED_LINK_ERROR 0x00000020
1091 #define MWL8K_TXD_STATUS_FAILED_EXCEED_LIMIT 0x00000040
1092 #define MWL8K_TXD_STATUS_FAILED_AGING 0x00000080
1093 #define MWL8K_TXD_STATUS_HOST_CMD 0x40000000
1094 #define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
1095 #define MWL8K_TXD_SOFTSTALE 0x80
1096 #define MWL8K_TXD_SOFTSTALE_MGMT_RETRY 0x01
1098 struct mwl8k_tx_desc
{
1103 __le32 pkt_phys_addr
;
1105 __u8 dest_MAC_addr
[IEEE80211_ADDR_LEN
];
1106 __le32 next_tx_desc_phys_addr
;
1111 } __attribute__((packed
));
1113 #define MWL8K_TX_DESCS 128
1115 static int mwl8k_txq_init(struct ieee80211_hw
*hw
, int index
)
1117 struct mwl8k_priv
*priv
= hw
->priv
;
1118 struct mwl8k_tx_queue
*txq
= priv
->txq
+ index
;
1122 memset(&txq
->tx_stats
, 0,
1123 sizeof(struct ieee80211_tx_queue_stats
));
1124 txq
->tx_stats
.limit
= MWL8K_TX_DESCS
;
1128 size
= MWL8K_TX_DESCS
* sizeof(struct mwl8k_tx_desc
);
1131 pci_alloc_consistent(priv
->pdev
, size
, &txq
->tx_desc_dma
);
1132 if (txq
->tx_desc_area
== NULL
) {
1133 printk(KERN_ERR
"%s: failed to alloc TX descriptors\n",
1137 memset(txq
->tx_desc_area
, 0, size
);
1139 txq
->tx_skb
= kmalloc(MWL8K_TX_DESCS
* sizeof(*txq
->tx_skb
),
1141 if (txq
->tx_skb
== NULL
) {
1142 printk(KERN_ERR
"%s: failed to alloc TX skbuff list\n",
1144 pci_free_consistent(priv
->pdev
, size
,
1145 txq
->tx_desc_area
, txq
->tx_desc_dma
);
1148 memset(txq
->tx_skb
, 0, MWL8K_TX_DESCS
* sizeof(*txq
->tx_skb
));
1150 for (i
= 0; i
< MWL8K_TX_DESCS
; i
++) {
1151 struct mwl8k_tx_desc
*tx_desc
;
1154 tx_desc
= txq
->tx_desc_area
+ i
;
1155 nexti
= (i
+ 1) % MWL8K_TX_DESCS
;
1157 tx_desc
->status
= 0;
1158 tx_desc
->next_tx_desc_phys_addr
=
1159 cpu_to_le32(txq
->tx_desc_dma
+
1160 nexti
* sizeof(*tx_desc
));
1166 static inline void mwl8k_tx_start(struct mwl8k_priv
*priv
)
1168 iowrite32(MWL8K_H2A_INT_PPA_READY
,
1169 priv
->regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
1170 iowrite32(MWL8K_H2A_INT_DUMMY
,
1171 priv
->regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
1172 ioread32(priv
->regs
+ MWL8K_HIU_INT_CODE
);
1175 static inline int mwl8k_txq_busy(struct mwl8k_priv
*priv
)
1177 return priv
->pending_tx_pkts
;
1180 struct mwl8k_txq_info
{
1189 static int mwl8k_scan_tx_ring(struct mwl8k_priv
*priv
,
1190 struct mwl8k_txq_info txinfo
[],
1193 int count
, desc
, status
;
1194 struct mwl8k_tx_queue
*txq
;
1195 struct mwl8k_tx_desc
*tx_desc
;
1198 memset(txinfo
, 0, num_queues
* sizeof(struct mwl8k_txq_info
));
1199 spin_lock_bh(&priv
->tx_lock
);
1200 for (count
= 0; count
< num_queues
; count
++) {
1201 txq
= priv
->txq
+ count
;
1202 txinfo
[count
].len
= txq
->tx_stats
.len
;
1203 txinfo
[count
].head
= txq
->tx_head
;
1204 txinfo
[count
].tail
= txq
->tx_tail
;
1205 for (desc
= 0; desc
< MWL8K_TX_DESCS
; desc
++) {
1206 tx_desc
= txq
->tx_desc_area
+ desc
;
1207 status
= le32_to_cpu(tx_desc
->status
);
1209 if (status
& MWL8K_TXD_STATUS_FW_OWNED
)
1210 txinfo
[count
].fw_owned
++;
1212 txinfo
[count
].drv_owned
++;
1214 if (tx_desc
->pkt_len
== 0)
1215 txinfo
[count
].unused
++;
1218 spin_unlock_bh(&priv
->tx_lock
);
1223 static int mwl8k_tx_wait_empty(struct ieee80211_hw
*hw
, u32 delay_ms
)
1226 unsigned long timeout
= 0;
1227 struct mwl8k_priv
*priv
= hw
->priv
;
1228 DECLARE_COMPLETION_ONSTACK(cmd_wait
);
1232 if (priv
->tx_wait
!= NULL
)
1233 printk(KERN_ERR
"WARNING Previous TXWaitEmpty instance\n");
1235 spin_lock_bh(&priv
->tx_lock
);
1236 count
= mwl8k_txq_busy(priv
);
1238 priv
->tx_wait
= &cmd_wait
;
1239 if (priv
->radio_state
)
1240 mwl8k_tx_start(priv
);
1242 spin_unlock_bh(&priv
->tx_lock
);
1245 struct mwl8k_txq_info txinfo
[4];
1249 timeout
= wait_for_completion_timeout(&cmd_wait
,
1250 msecs_to_jiffies(delay_ms
));
1254 spin_lock_bh(&priv
->tx_lock
);
1255 priv
->tx_wait
= NULL
;
1256 newcount
= mwl8k_txq_busy(priv
);
1257 spin_unlock_bh(&priv
->tx_lock
);
1259 printk(KERN_ERR
"%s(%u) TIMEDOUT:%ums Pend:%u-->%u\n",
1260 __func__
, __LINE__
, delay_ms
, count
, newcount
);
1262 mwl8k_scan_tx_ring(priv
, txinfo
, 4);
1263 for (index
= 0 ; index
< 4; index
++)
1265 "TXQ:%u L:%u H:%u T:%u FW:%u DRV:%u U:%u\n",
1270 txinfo
[index
].fw_owned
,
1271 txinfo
[index
].drv_owned
,
1272 txinfo
[index
].unused
);
1279 #define MWL8K_TXD_OK (MWL8K_TXD_STATUS_OK | \
1280 MWL8K_TXD_STATUS_OK_RETRY | \
1281 MWL8K_TXD_STATUS_OK_MORE_RETRY)
1282 #define MWL8K_TXD_SUCCESS(stat) ((stat) & MWL8K_TXD_OK)
1283 #define MWL8K_TXD_FAIL_RETRY(stat) \
1284 ((stat) & (MWL8K_TXD_STATUS_FAILED_EXCEED_LIMIT))
1286 static void mwl8k_txq_reclaim(struct ieee80211_hw
*hw
, int index
, int force
)
1288 struct mwl8k_priv
*priv
= hw
->priv
;
1289 struct mwl8k_tx_queue
*txq
= priv
->txq
+ index
;
1292 while (txq
->tx_stats
.len
> 0) {
1295 struct mwl8k_tx_desc
*tx_desc
;
1298 struct sk_buff
*skb
;
1299 struct ieee80211_tx_info
*info
;
1304 tx_desc
= txq
->tx_desc_area
+ tx
;
1306 status
= le32_to_cpu(tx_desc
->status
);
1308 if (status
& MWL8K_TXD_STATUS_FW_OWNED
) {
1312 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED
);
1315 txq
->tx_head
= (tx
+ 1) % MWL8K_TX_DESCS
;
1316 BUG_ON(txq
->tx_stats
.len
== 0);
1317 txq
->tx_stats
.len
--;
1318 priv
->pending_tx_pkts
--;
1320 addr
= le32_to_cpu(tx_desc
->pkt_phys_addr
);
1321 size
= (u32
)(le16_to_cpu(tx_desc
->pkt_len
));
1322 skb
= txq
->tx_skb
[tx
].skb
;
1323 txq
->tx_skb
[tx
].skb
= NULL
;
1325 BUG_ON(skb
== NULL
);
1326 pci_unmap_single(priv
->pdev
, addr
, size
, PCI_DMA_TODEVICE
);
1328 rc
= mwl8k_remove_dma_header(skb
);
1330 /* Mark descriptor as unused */
1331 tx_desc
->pkt_phys_addr
= 0;
1332 tx_desc
->pkt_len
= 0;
1334 if (txq
->tx_skb
[tx
].clone
) {
1335 /* Replace with original skb
1336 * before returning to stack
1337 * as buffer has been cloned
1340 skb
= txq
->tx_skb
[tx
].clone
;
1341 txq
->tx_skb
[tx
].clone
= NULL
;
1345 /* Something has gone wrong here.
1346 * Failed to remove DMA header.
1347 * Print error message and drop packet.
1349 printk(KERN_ERR
"%s: Error removing DMA header from "
1350 "tx skb 0x%p.\n", priv
->name
, skb
);
1356 info
= IEEE80211_SKB_CB(skb
);
1357 ieee80211_tx_info_clear_status(info
);
1359 /* Convert firmware status stuff into tx_status */
1360 if (MWL8K_TXD_SUCCESS(status
)) {
1362 info
->flags
|= IEEE80211_TX_STAT_ACK
;
1365 ieee80211_tx_status_irqsafe(hw
, skb
);
1367 wake
= !priv
->inconfig
&& priv
->radio_state
;
1371 ieee80211_wake_queue(hw
, index
);
1374 /* must be called only when the card's transmit is completely halted */
1375 static void mwl8k_txq_deinit(struct ieee80211_hw
*hw
, int index
)
1377 struct mwl8k_priv
*priv
= hw
->priv
;
1378 struct mwl8k_tx_queue
*txq
= priv
->txq
+ index
;
1380 mwl8k_txq_reclaim(hw
, index
, 1);
1385 pci_free_consistent(priv
->pdev
,
1386 MWL8K_TX_DESCS
* sizeof(struct mwl8k_tx_desc
),
1387 txq
->tx_desc_area
, txq
->tx_desc_dma
);
1388 txq
->tx_desc_area
= NULL
;
1392 mwl8k_txq_xmit(struct ieee80211_hw
*hw
, int index
, struct sk_buff
*skb
)
1394 struct mwl8k_priv
*priv
= hw
->priv
;
1395 struct ieee80211_tx_info
*tx_info
;
1396 struct ieee80211_hdr
*wh
;
1397 struct mwl8k_tx_queue
*txq
;
1398 struct mwl8k_tx_desc
*tx
;
1399 struct mwl8k_dma_data
*tr
;
1400 struct mwl8k_vif
*mwl8k_vif
;
1401 struct sk_buff
*org_skb
= skb
;
1404 bool qosframe
= false, ampduframe
= false;
1405 bool mcframe
= false, eapolframe
= false;
1406 bool amsduframe
= false;
1409 txq
= priv
->txq
+ index
;
1410 tx
= txq
->tx_desc_area
+ txq
->tx_tail
;
1412 BUG_ON(txq
->tx_skb
[txq
->tx_tail
].skb
!= NULL
);
1415 * Append HW DMA header to start of packet. Drop packet if
1416 * there is not enough space or a failure to unshare/unclone
1419 skb
= mwl8k_add_dma_header(skb
);
1422 printk(KERN_DEBUG
"%s: failed to prepend HW DMA "
1423 "header, dropping TX frame.\n", priv
->name
);
1424 dev_kfree_skb(org_skb
);
1425 return NETDEV_TX_OK
;
1428 tx_info
= IEEE80211_SKB_CB(skb
);
1429 mwl8k_vif
= MWL8K_VIF(tx_info
->control
.vif
);
1430 tr
= (struct mwl8k_dma_data
*)skb
->data
;
1432 fc
= wh
->frame_control
;
1433 qosframe
= ieee80211_is_data_qos(fc
);
1434 mcframe
= is_multicast_ether_addr(wh
->addr1
);
1435 ampduframe
= !!(tx_info
->flags
& IEEE80211_TX_CTL_AMPDU
);
1437 if (tx_info
->flags
& IEEE80211_TX_CTL_ASSIGN_SEQ
) {
1438 u16 seqno
= mwl8k_vif
->seqno
;
1439 wh
->seq_ctrl
&= cpu_to_le16(IEEE80211_SCTL_FRAG
);
1440 wh
->seq_ctrl
|= cpu_to_le16(seqno
<< 4);
1441 mwl8k_vif
->seqno
= seqno
++ % 4096;
1445 qos
= le16_to_cpu(*((__le16
*)ieee80211_get_qos_ctl(wh
)));
1447 dma
= pci_map_single(priv
->pdev
, skb
->data
,
1448 skb
->len
, PCI_DMA_TODEVICE
);
1450 if (pci_dma_mapping_error(priv
->pdev
, dma
)) {
1451 printk(KERN_DEBUG
"%s: failed to dma map skb, "
1452 "dropping TX frame.\n", priv
->name
);
1454 if (org_skb
!= NULL
)
1455 dev_kfree_skb(org_skb
);
1458 return NETDEV_TX_OK
;
1461 /* Set desc header, cpu bit order. */
1464 tx
->tx_priority
= index
;
1465 tx
->qos_control
= 0;
1467 tx
->peer_id
= mwl8k_vif
->peer_id
;
1469 amsduframe
= !!(qos
& IEEE80211_QOS_CONTROL_A_MSDU_PRESENT
);
1471 /* Setup firmware control bit fields for each frame type. */
1472 if (ieee80211_is_mgmt(fc
) || ieee80211_is_ctl(fc
)) {
1474 qos
= mwl8k_qos_setbit_eosp(qos
);
1475 /* Set Queue size to unspecified */
1476 qos
= mwl8k_qos_setbit_qlen(qos
, 0xff);
1477 } else if (ieee80211_is_data(fc
)) {
1480 tx
->status
|= MWL8K_TXD_STATUS_MULTICAST_TX
;
1483 * Tell firmware to not send EAPOL pkts in an
1484 * aggregate. Verify against mac80211 tx path. If
1485 * stack turns off AMPDU for an EAPOL frame this
1486 * check will be removed.
1489 qos
= mwl8k_qos_setbit_ack(qos
,
1490 MWL8K_TXD_ACK_POLICY_NORMAL
);
1492 /* Send pkt in an aggregate if AMPDU frame. */
1494 qos
= mwl8k_qos_setbit_ack(qos
,
1495 MWL8K_TXD_ACK_POLICY_BLOCKACK
);
1497 qos
= mwl8k_qos_setbit_ack(qos
,
1498 MWL8K_TXD_ACK_POLICY_NORMAL
);
1501 qos
= mwl8k_qos_setbit_amsdu(qos
);
1505 /* Convert to little endian */
1506 tx
->qos_control
= cpu_to_le16(qos
);
1507 tx
->status
= cpu_to_le32(tx
->status
);
1508 tx
->pkt_phys_addr
= cpu_to_le32(dma
);
1509 tx
->pkt_len
= cpu_to_le16(skb
->len
);
1511 txq
->tx_skb
[txq
->tx_tail
].skb
= skb
;
1512 txq
->tx_skb
[txq
->tx_tail
].clone
=
1513 skb
== org_skb
? NULL
: org_skb
;
1515 spin_lock_bh(&priv
->tx_lock
);
1517 tx
->status
= cpu_to_le32(MWL8K_TXD_STATUS_OK
|
1518 MWL8K_TXD_STATUS_FW_OWNED
);
1520 txq
->tx_stats
.len
++;
1521 priv
->pending_tx_pkts
++;
1522 txq
->tx_stats
.count
++;
1525 if (txq
->tx_tail
== MWL8K_TX_DESCS
)
1527 if (txq
->tx_head
== txq
->tx_tail
)
1528 ieee80211_stop_queue(hw
, index
);
1530 if (priv
->inconfig
) {
1532 * Silently queue packet when we are in the middle of
1533 * a config cycle. Notify firmware only if we are
1534 * waiting for TXQs to empty. If a packet is sent
1535 * before .config() is complete, perhaps it is better
1536 * to drop the packet, as the channel is being changed
1537 * and the packet will end up on the wrong channel.
1539 printk(KERN_ERR
"%s(): WARNING TX activity while "
1540 "in config\n", __func__
);
1542 if (priv
->tx_wait
!= NULL
)
1543 mwl8k_tx_start(priv
);
1545 mwl8k_tx_start(priv
);
1547 spin_unlock_bh(&priv
->tx_lock
);
1549 return NETDEV_TX_OK
;
1554 * Command processing.
1557 /* Timeout firmware commands after 2000ms */
1558 #define MWL8K_CMD_TIMEOUT_MS 2000
1560 static int mwl8k_post_cmd(struct ieee80211_hw
*hw
, struct mwl8k_cmd_pkt
*cmd
)
1562 DECLARE_COMPLETION_ONSTACK(cmd_wait
);
1563 struct mwl8k_priv
*priv
= hw
->priv
;
1564 void __iomem
*regs
= priv
->regs
;
1565 dma_addr_t dma_addr
;
1566 unsigned int dma_size
;
1568 u16 __iomem
*result
;
1569 unsigned long timeout
= 0;
1572 cmd
->result
= 0xFFFF;
1573 dma_size
= le16_to_cpu(cmd
->length
);
1574 dma_addr
= pci_map_single(priv
->pdev
, cmd
, dma_size
,
1575 PCI_DMA_BIDIRECTIONAL
);
1576 if (pci_dma_mapping_error(priv
->pdev
, dma_addr
))
1579 if (priv
->hostcmd_wait
!= NULL
)
1580 printk(KERN_ERR
"WARNING host command in progress\n");
1582 spin_lock_irq(&priv
->fw_lock
);
1583 priv
->hostcmd_wait
= &cmd_wait
;
1584 iowrite32(dma_addr
, regs
+ MWL8K_HIU_GEN_PTR
);
1585 iowrite32(MWL8K_H2A_INT_DOORBELL
,
1586 regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
1587 iowrite32(MWL8K_H2A_INT_DUMMY
,
1588 regs
+ MWL8K_HIU_H2A_INTERRUPT_EVENTS
);
1589 spin_unlock_irq(&priv
->fw_lock
);
1591 timeout
= wait_for_completion_timeout(&cmd_wait
,
1592 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS
));
1594 result
= &cmd
->result
;
1596 spin_lock_irq(&priv
->fw_lock
);
1597 priv
->hostcmd_wait
= NULL
;
1598 spin_unlock_irq(&priv
->fw_lock
);
1599 printk(KERN_ERR
"%s: Command %s timeout after %u ms\n",
1601 mwl8k_cmd_name(cmd
->code
, buf
, sizeof(buf
)),
1602 MWL8K_CMD_TIMEOUT_MS
);
1605 rc
= *result
? -EINVAL
: 0;
1607 printk(KERN_ERR
"%s: Command %s error 0x%x\n",
1609 mwl8k_cmd_name(cmd
->code
, buf
, sizeof(buf
)),
1613 pci_unmap_single(priv
->pdev
, dma_addr
, dma_size
,
1614 PCI_DMA_BIDIRECTIONAL
);
1621 struct mwl8k_cmd_get_hw_spec
{
1622 struct mwl8k_cmd_pkt header
;
1624 __u8 host_interface
;
1626 __u8 perm_addr
[IEEE80211_ADDR_LEN
];
1631 __u8 mcs_bitmap
[16];
1632 __le32 rx_queue_ptr
;
1633 __le32 num_tx_queues
;
1634 __le32 tx_queue_ptrs
[MWL8K_TX_QUEUES
];
1636 __le32 num_tx_desc_per_queue
;
1637 __le32 total_rx_desc
;
1638 } __attribute__((packed
));
1640 static int mwl8k_cmd_get_hw_spec(struct ieee80211_hw
*hw
)
1642 struct mwl8k_priv
*priv
= hw
->priv
;
1643 struct mwl8k_cmd_get_hw_spec
*cmd
;
1647 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
1651 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_GET_HW_SPEC
);
1652 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
1654 memset(cmd
->perm_addr
, 0xff, sizeof(cmd
->perm_addr
));
1655 cmd
->ps_cookie
= cpu_to_le32(priv
->cookie_dma
);
1656 cmd
->rx_queue_ptr
= cpu_to_le32(priv
->rxq
[0].rx_desc_dma
);
1657 cmd
->num_tx_queues
= MWL8K_TX_QUEUES
;
1658 for (i
= 0; i
< MWL8K_TX_QUEUES
; i
++)
1659 cmd
->tx_queue_ptrs
[i
] = cpu_to_le32(priv
->txq
[i
].tx_desc_dma
);
1660 cmd
->num_tx_desc_per_queue
= MWL8K_TX_DESCS
;
1661 cmd
->total_rx_desc
= MWL8K_RX_DESCS
;
1663 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
1666 SET_IEEE80211_PERM_ADDR(hw
, cmd
->perm_addr
);
1667 priv
->num_mcaddrs
= le16_to_cpu(cmd
->num_mcaddrs
);
1668 priv
->fw_rev
= cmd
->fw_rev
;
1669 priv
->hw_rev
= cmd
->hw_rev
;
1670 priv
->region_code
= le16_to_cpu(cmd
->region_code
);
1678 * CMD_MAC_MULTICAST_ADR.
1680 struct mwl8k_cmd_mac_multicast_adr
{
1681 struct mwl8k_cmd_pkt header
;
1684 __u8 addr
[1][IEEE80211_ADDR_LEN
];
1687 #define MWL8K_ENABLE_RX_MULTICAST 0x000F
1688 static int mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw
*hw
,
1690 struct dev_addr_list
*mclist
)
1692 struct mwl8k_cmd_mac_multicast_adr
*cmd
;
1695 int size
= sizeof(*cmd
) + ((mc_count
- 1) * IEEE80211_ADDR_LEN
);
1696 cmd
= kzalloc(size
, GFP_KERNEL
);
1700 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR
);
1701 cmd
->header
.length
= cpu_to_le16(size
);
1702 cmd
->action
= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST
);
1703 cmd
->numaddr
= cpu_to_le16(mc_count
);
1704 while ((index
< mc_count
) && mclist
) {
1705 if (mclist
->da_addrlen
!= IEEE80211_ADDR_LEN
) {
1707 goto mwl8k_cmd_mac_multicast_adr_exit
;
1709 memcpy(cmd
->addr
[index
], mclist
->da_addr
, IEEE80211_ADDR_LEN
);
1711 mclist
= mclist
->next
;
1714 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
1716 mwl8k_cmd_mac_multicast_adr_exit
:
1722 * CMD_802_11_GET_STAT.
1724 struct mwl8k_cmd_802_11_get_stat
{
1725 struct mwl8k_cmd_pkt header
;
1728 } __attribute__((packed
));
1730 #define MWL8K_STAT_ACK_FAILURE 9
1731 #define MWL8K_STAT_RTS_FAILURE 12
1732 #define MWL8K_STAT_FCS_ERROR 24
1733 #define MWL8K_STAT_RTS_SUCCESS 11
1735 static int mwl8k_cmd_802_11_get_stat(struct ieee80211_hw
*hw
,
1736 struct ieee80211_low_level_stats
*stats
)
1738 struct mwl8k_cmd_802_11_get_stat
*cmd
;
1741 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
1745 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_GET_STAT
);
1746 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
1747 cmd
->action
= cpu_to_le16(MWL8K_CMD_GET
);
1749 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
1751 stats
->dot11ACKFailureCount
=
1752 le32_to_cpu(cmd
->stats
[MWL8K_STAT_ACK_FAILURE
]);
1753 stats
->dot11RTSFailureCount
=
1754 le32_to_cpu(cmd
->stats
[MWL8K_STAT_RTS_FAILURE
]);
1755 stats
->dot11FCSErrorCount
=
1756 le32_to_cpu(cmd
->stats
[MWL8K_STAT_FCS_ERROR
]);
1757 stats
->dot11RTSSuccessCount
=
1758 le32_to_cpu(cmd
->stats
[MWL8K_STAT_RTS_SUCCESS
]);
1766 * CMD_802_11_RADIO_CONTROL.
1768 struct mwl8k_cmd_802_11_radio_control
{
1769 struct mwl8k_cmd_pkt header
;
1773 } __attribute__((packed
));
1775 static int mwl8k_cmd_802_11_radio_control(struct ieee80211_hw
*hw
, int enable
)
1777 struct mwl8k_priv
*priv
= hw
->priv
;
1778 struct mwl8k_cmd_802_11_radio_control
*cmd
;
1781 if (((enable
& MWL8K_RADIO_ENABLE
) == priv
->radio_state
) &&
1782 !(enable
& MWL8K_RADIO_FORCE
))
1785 enable
&= MWL8K_RADIO_ENABLE
;
1787 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
1791 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_RADIO_CONTROL
);
1792 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
1793 cmd
->action
= cpu_to_le16(MWL8K_CMD_SET
);
1794 cmd
->control
= cpu_to_le16(priv
->radio_preamble
);
1795 cmd
->radio_on
= cpu_to_le16(enable
? 0x0001 : 0x0000);
1797 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
1801 priv
->radio_state
= enable
;
1807 mwl8k_set_radio_preamble(struct ieee80211_hw
*hw
, bool short_preamble
)
1809 struct mwl8k_priv
*priv
;
1811 if (hw
== NULL
|| hw
->priv
== NULL
)
1815 priv
->radio_preamble
= (short_preamble
?
1816 MWL8K_RADIO_SHORT_PREAMBLE
:
1817 MWL8K_RADIO_LONG_PREAMBLE
);
1819 return mwl8k_cmd_802_11_radio_control(hw
,
1820 MWL8K_RADIO_ENABLE
| MWL8K_RADIO_FORCE
);
1824 * CMD_802_11_RF_TX_POWER.
1826 #define MWL8K_TX_POWER_LEVEL_TOTAL 8
1828 struct mwl8k_cmd_802_11_rf_tx_power
{
1829 struct mwl8k_cmd_pkt header
;
1831 __le16 support_level
;
1832 __le16 current_level
;
1834 __le16 power_level_list
[MWL8K_TX_POWER_LEVEL_TOTAL
];
1835 } __attribute__((packed
));
1837 static int mwl8k_cmd_802_11_rf_tx_power(struct ieee80211_hw
*hw
, int dBm
)
1839 struct mwl8k_cmd_802_11_rf_tx_power
*cmd
;
1842 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
1846 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_RF_TX_POWER
);
1847 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
1848 cmd
->action
= cpu_to_le16(MWL8K_CMD_SET
);
1849 cmd
->support_level
= cpu_to_le16(dBm
);
1851 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
1860 struct mwl8k_cmd_set_pre_scan
{
1861 struct mwl8k_cmd_pkt header
;
1862 } __attribute__((packed
));
1864 static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw
*hw
)
1866 struct mwl8k_cmd_set_pre_scan
*cmd
;
1869 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
1873 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN
);
1874 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
1876 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
1883 * CMD_SET_POST_SCAN.
1885 struct mwl8k_cmd_set_post_scan
{
1886 struct mwl8k_cmd_pkt header
;
1888 __u8 bssid
[IEEE80211_ADDR_LEN
];
1889 } __attribute__((packed
));
1892 mwl8k_cmd_set_post_scan(struct ieee80211_hw
*hw
, __u8 mac
[IEEE80211_ADDR_LEN
])
1894 struct mwl8k_cmd_set_post_scan
*cmd
;
1897 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
1901 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_POST_SCAN
);
1902 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
1904 memcpy(cmd
->bssid
, mac
, IEEE80211_ADDR_LEN
);
1906 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
1913 * CMD_SET_RF_CHANNEL.
1915 struct mwl8k_cmd_set_rf_channel
{
1916 struct mwl8k_cmd_pkt header
;
1918 __u8 current_channel
;
1919 __le32 channel_flags
;
1920 } __attribute__((packed
));
1922 static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw
*hw
,
1923 struct ieee80211_channel
*channel
)
1925 struct mwl8k_cmd_set_rf_channel
*cmd
;
1928 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
1932 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL
);
1933 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
1934 cmd
->action
= cpu_to_le16(MWL8K_CMD_SET
);
1935 cmd
->current_channel
= channel
->hw_value
;
1936 if (channel
->band
== IEEE80211_BAND_2GHZ
)
1937 cmd
->channel_flags
= cpu_to_le32(0x00000081);
1939 cmd
->channel_flags
= cpu_to_le32(0x00000000);
1941 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
1950 struct mwl8k_cmd_set_slot
{
1951 struct mwl8k_cmd_pkt header
;
1954 } __attribute__((packed
));
1956 static int mwl8k_cmd_set_slot(struct ieee80211_hw
*hw
, int slot_time
)
1958 struct mwl8k_cmd_set_slot
*cmd
;
1961 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
1965 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_SLOT
);
1966 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
1967 cmd
->action
= cpu_to_le16(MWL8K_CMD_SET
);
1968 cmd
->short_slot
= slot_time
== MWL8K_SHORT_SLOTTIME
? 1 : 0;
1970 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
1979 struct mwl8k_cmd_mimo_config
{
1980 struct mwl8k_cmd_pkt header
;
1982 __u8 rx_antenna_map
;
1983 __u8 tx_antenna_map
;
1984 } __attribute__((packed
));
1986 static int mwl8k_cmd_mimo_config(struct ieee80211_hw
*hw
, __u8 rx
, __u8 tx
)
1988 struct mwl8k_cmd_mimo_config
*cmd
;
1991 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
1995 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_MIMO_CONFIG
);
1996 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
1997 cmd
->action
= cpu_to_le32((u32
)MWL8K_CMD_SET
);
1998 cmd
->rx_antenna_map
= rx
;
1999 cmd
->tx_antenna_map
= tx
;
2001 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2008 * CMD_ENABLE_SNIFFER.
2010 struct mwl8k_cmd_enable_sniffer
{
2011 struct mwl8k_cmd_pkt header
;
2013 } __attribute__((packed
));
2015 static int mwl8k_enable_sniffer(struct ieee80211_hw
*hw
, bool enable
)
2017 struct mwl8k_cmd_enable_sniffer
*cmd
;
2020 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2024 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER
);
2025 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2026 cmd
->action
= enable
? cpu_to_le32((u32
)MWL8K_CMD_SET
) : 0;
2028 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2035 * CMD_SET_RATE_ADAPT_MODE.
2037 struct mwl8k_cmd_set_rate_adapt_mode
{
2038 struct mwl8k_cmd_pkt header
;
2041 } __attribute__((packed
));
2043 static int mwl8k_cmd_setrateadaptmode(struct ieee80211_hw
*hw
, __u16 mode
)
2045 struct mwl8k_cmd_set_rate_adapt_mode
*cmd
;
2048 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2052 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE
);
2053 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2054 cmd
->action
= cpu_to_le16(MWL8K_CMD_SET
);
2055 cmd
->mode
= cpu_to_le16(mode
);
2057 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2066 struct mwl8k_cmd_set_wmm
{
2067 struct mwl8k_cmd_pkt header
;
2069 } __attribute__((packed
));
2071 static int mwl8k_set_wmm(struct ieee80211_hw
*hw
, bool enable
)
2073 struct mwl8k_priv
*priv
= hw
->priv
;
2074 struct mwl8k_cmd_set_wmm
*cmd
;
2077 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2081 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_WMM_MODE
);
2082 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2083 cmd
->action
= enable
? cpu_to_le16(MWL8K_CMD_SET
) : 0;
2085 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2089 priv
->wmm_mode
= enable
;
2095 * CMD_SET_RTS_THRESHOLD.
2097 struct mwl8k_cmd_rts_threshold
{
2098 struct mwl8k_cmd_pkt header
;
2101 } __attribute__((packed
));
2103 static int mwl8k_rts_threshold(struct ieee80211_hw
*hw
,
2104 u16 action
, u16
*threshold
)
2106 struct mwl8k_cmd_rts_threshold
*cmd
;
2109 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2113 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD
);
2114 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2115 cmd
->action
= cpu_to_le16(action
);
2116 cmd
->threshold
= cpu_to_le16(*threshold
);
2118 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2125 * CMD_SET_EDCA_PARAMS.
2127 struct mwl8k_cmd_set_edca_params
{
2128 struct mwl8k_cmd_pkt header
;
2130 /* See MWL8K_SET_EDCA_XXX below */
2133 /* TX opportunity in units of 32 us */
2136 /* Log exponent of max contention period: 0...15*/
2139 /* Log exponent of min contention period: 0...15 */
2142 /* Adaptive interframe spacing in units of 32us */
2145 /* TX queue to configure */
2147 } __attribute__((packed
));
2149 #define MWL8K_GET_EDCA_ALL 0
2150 #define MWL8K_SET_EDCA_CW 0x01
2151 #define MWL8K_SET_EDCA_TXOP 0x02
2152 #define MWL8K_SET_EDCA_AIFS 0x04
2154 #define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
2155 MWL8K_SET_EDCA_TXOP | \
2156 MWL8K_SET_EDCA_AIFS)
2159 mwl8k_set_edca_params(struct ieee80211_hw
*hw
, __u8 qnum
,
2160 __u16 cw_min
, __u16 cw_max
,
2161 __u8 aifs
, __u16 txop
)
2163 struct mwl8k_cmd_set_edca_params
*cmd
;
2164 u32 log_cw_min
, log_cw_max
;
2167 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2171 log_cw_min
= ilog2(cw_min
+1);
2172 log_cw_max
= ilog2(cw_max
+1);
2173 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS
);
2174 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2176 cmd
->action
= cpu_to_le16(MWL8K_SET_EDCA_ALL
);
2177 cmd
->txop
= cpu_to_le16(txop
);
2178 cmd
->log_cw_max
= (u8
)log_cw_max
;
2179 cmd
->log_cw_min
= (u8
)log_cw_min
;
2183 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2190 * CMD_FINALIZE_JOIN.
2193 /* FJ beacon buffer size is compiled into the firmware. */
2194 #define MWL8K_FJ_BEACON_MAXLEN 128
2196 struct mwl8k_cmd_finalize_join
{
2197 struct mwl8k_cmd_pkt header
;
2198 __le32 sleep_interval
; /* Number of beacon periods to sleep */
2199 __u8 beacon_data
[MWL8K_FJ_BEACON_MAXLEN
];
2200 } __attribute__((packed
));
2202 static int mwl8k_finalize_join(struct ieee80211_hw
*hw
, void *frame
,
2203 __u16 framelen
, __u16 dtim
)
2205 struct mwl8k_cmd_finalize_join
*cmd
;
2206 struct ieee80211_mgmt
*payload
= frame
;
2214 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2218 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN
);
2219 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2222 cmd
->sleep_interval
= cpu_to_le32(dtim
);
2224 cmd
->sleep_interval
= cpu_to_le32(1);
2226 hdrlen
= ieee80211_hdrlen(payload
->frame_control
);
2228 payload_len
= framelen
> hdrlen
? framelen
- hdrlen
: 0;
2230 /* XXX TBD Might just have to abort and return an error */
2231 if (payload_len
> MWL8K_FJ_BEACON_MAXLEN
)
2232 printk(KERN_ERR
"%s(): WARNING: Incomplete beacon "
2233 "sent to firmware. Sz=%u MAX=%u\n", __func__
,
2234 payload_len
, MWL8K_FJ_BEACON_MAXLEN
);
2236 payload_len
= payload_len
> MWL8K_FJ_BEACON_MAXLEN
?
2237 MWL8K_FJ_BEACON_MAXLEN
: payload_len
;
2239 if (payload
&& payload_len
)
2240 memcpy(cmd
->beacon_data
, &payload
->u
.beacon
, payload_len
);
2242 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2250 struct mwl8k_cmd_update_sta_db
{
2251 struct mwl8k_cmd_pkt header
;
2253 /* See STADB_ACTION_TYPE */
2256 /* Peer MAC address */
2257 __u8 peer_addr
[IEEE80211_ADDR_LEN
];
2261 /* Peer info - valid during add/update. */
2262 struct peer_capability_info peer_info
;
2263 } __attribute__((packed
));
2265 static int mwl8k_cmd_update_sta_db(struct ieee80211_hw
*hw
,
2266 struct ieee80211_vif
*vif
, __u32 action
)
2268 struct mwl8k_vif
*mv_vif
= MWL8K_VIF(vif
);
2269 struct ieee80211_bss_conf
*info
= &mv_vif
->bss_info
;
2270 struct mwl8k_cmd_update_sta_db
*cmd
;
2271 struct peer_capability_info
*peer_info
;
2272 struct ieee80211_rate
*bitrates
= mv_vif
->legacy_rates
;
2273 DECLARE_MAC_BUF(mac
);
2277 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2281 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_UPDATE_STADB
);
2282 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2284 cmd
->action
= cpu_to_le32(action
);
2285 peer_info
= &cmd
->peer_info
;
2286 memcpy(cmd
->peer_addr
, mv_vif
->bssid
, IEEE80211_ADDR_LEN
);
2289 case MWL8K_STA_DB_ADD_ENTRY
:
2290 case MWL8K_STA_DB_MODIFY_ENTRY
:
2291 /* Build peer_info block */
2292 peer_info
->peer_type
= MWL8K_PEER_TYPE_ACCESSPOINT
;
2293 peer_info
->basic_caps
= cpu_to_le16(info
->assoc_capability
);
2294 peer_info
->interop
= 1;
2295 peer_info
->amsdu_enabled
= 0;
2297 rates
= peer_info
->legacy_rates
;
2298 for (count
= 0 ; count
< mv_vif
->legacy_nrates
; count
++)
2299 rates
[count
] = bitrates
[count
].hw_value
;
2301 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2303 mv_vif
->peer_id
= peer_info
->station_id
;
2307 case MWL8K_STA_DB_DEL_ENTRY
:
2308 case MWL8K_STA_DB_FLUSH
:
2310 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2312 mv_vif
->peer_id
= 0;
2323 #define IEEE80211_OPMODE_DISABLED 0x00
2324 #define IEEE80211_OPMODE_NON_MEMBER_PROT_MODE 0x01
2325 #define IEEE80211_OPMODE_ONE_20MHZ_STA_PROT_MODE 0x02
2326 #define IEEE80211_OPMODE_HTMIXED_PROT_MODE 0x03
2328 #define MWL8K_RATE_INDEX_MAX_ARRAY 14
2330 #define MWL8K_FRAME_PROT_DISABLED 0x00
2331 #define MWL8K_FRAME_PROT_11G 0x07
2332 #define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
2333 #define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
2334 #define MWL8K_FRAME_PROT_MASK 0x07
2336 struct mwl8k_cmd_update_set_aid
{
2337 struct mwl8k_cmd_pkt header
;
2340 /* AP's MAC address (BSSID) */
2341 __u8 bssid
[IEEE80211_ADDR_LEN
];
2342 __le16 protection_mode
;
2343 __u8 supp_rates
[MWL8K_RATE_INDEX_MAX_ARRAY
];
2344 } __attribute__((packed
));
2346 static int mwl8k_cmd_set_aid(struct ieee80211_hw
*hw
,
2347 struct ieee80211_vif
*vif
)
2349 struct mwl8k_vif
*mv_vif
= MWL8K_VIF(vif
);
2350 struct ieee80211_bss_conf
*info
= &mv_vif
->bss_info
;
2351 struct mwl8k_cmd_update_set_aid
*cmd
;
2352 struct ieee80211_rate
*bitrates
= mv_vif
->legacy_rates
;
2357 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2361 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_AID
);
2362 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2363 cmd
->aid
= cpu_to_le16(info
->aid
);
2365 memcpy(cmd
->bssid
, mv_vif
->bssid
, IEEE80211_ADDR_LEN
);
2367 prot_mode
= MWL8K_FRAME_PROT_DISABLED
;
2369 if (info
->use_cts_prot
) {
2370 prot_mode
= MWL8K_FRAME_PROT_11G
;
2372 switch (info
->ht
.operation_mode
&
2373 IEEE80211_HT_OP_MODE_PROTECTION
) {
2374 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ
:
2375 prot_mode
= MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY
;
2377 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED
:
2378 prot_mode
= MWL8K_FRAME_PROT_11N_HT_ALL
;
2381 prot_mode
= MWL8K_FRAME_PROT_DISABLED
;
2386 cmd
->protection_mode
= cpu_to_le16(prot_mode
);
2388 for (count
= 0; count
< mv_vif
->legacy_nrates
; count
++)
2389 cmd
->supp_rates
[count
] = bitrates
[count
].hw_value
;
2391 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2400 struct mwl8k_cmd_update_rateset
{
2401 struct mwl8k_cmd_pkt header
;
2402 __u8 legacy_rates
[MWL8K_RATE_INDEX_MAX_ARRAY
];
2404 /* Bitmap for supported MCS codes. */
2405 __u8 mcs_set
[MWL8K_IEEE_LEGACY_DATA_RATES
];
2406 __u8 reserved
[MWL8K_IEEE_LEGACY_DATA_RATES
];
2407 } __attribute__((packed
));
2409 static int mwl8k_update_rateset(struct ieee80211_hw
*hw
,
2410 struct ieee80211_vif
*vif
)
2412 struct mwl8k_vif
*mv_vif
= MWL8K_VIF(vif
);
2413 struct mwl8k_cmd_update_rateset
*cmd
;
2414 struct ieee80211_rate
*bitrates
= mv_vif
->legacy_rates
;
2418 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2422 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_SET_RATE
);
2423 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2425 for (count
= 0; count
< mv_vif
->legacy_nrates
; count
++)
2426 cmd
->legacy_rates
[count
] = bitrates
[count
].hw_value
;
2428 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2435 * CMD_USE_FIXED_RATE.
2437 #define MWL8K_RATE_TABLE_SIZE 8
2438 #define MWL8K_UCAST_RATE 0
2439 #define MWL8K_MCAST_RATE 1
2440 #define MWL8K_BCAST_RATE 2
2442 #define MWL8K_USE_FIXED_RATE 0x0001
2443 #define MWL8K_USE_AUTO_RATE 0x0002
2445 struct mwl8k_rate_entry
{
2446 /* Set to 1 if HT rate, 0 if legacy. */
2449 /* Set to 1 to use retry_count field. */
2450 __le32 enable_retry
;
2452 /* Specified legacy rate or MCS. */
2455 /* Number of allowed retries. */
2457 } __attribute__((packed
));
2459 struct mwl8k_rate_table
{
2460 /* 1 to allow specified rate and below */
2461 __le32 allow_rate_drop
;
2463 struct mwl8k_rate_entry rate_entry
[MWL8K_RATE_TABLE_SIZE
];
2464 } __attribute__((packed
));
2466 struct mwl8k_cmd_use_fixed_rate
{
2467 struct mwl8k_cmd_pkt header
;
2469 struct mwl8k_rate_table rate_table
;
2471 /* Unicast, Broadcast or Multicast */
2475 } __attribute__((packed
));
2477 static int mwl8k_cmd_use_fixed_rate(struct ieee80211_hw
*hw
,
2478 u32 action
, u32 rate_type
, struct mwl8k_rate_table
*rate_table
)
2480 struct mwl8k_cmd_use_fixed_rate
*cmd
;
2484 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
2488 cmd
->header
.code
= cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE
);
2489 cmd
->header
.length
= cpu_to_le16(sizeof(*cmd
));
2491 cmd
->action
= cpu_to_le32(action
);
2492 cmd
->rate_type
= cpu_to_le32(rate_type
);
2494 if (rate_table
!= NULL
) {
2495 /* Copy over each field manually so
2496 * that bitflipping can be done
2498 cmd
->rate_table
.allow_rate_drop
=
2499 cpu_to_le32(rate_table
->allow_rate_drop
);
2500 cmd
->rate_table
.num_rates
=
2501 cpu_to_le32(rate_table
->num_rates
);
2503 for (count
= 0; count
< rate_table
->num_rates
; count
++) {
2504 struct mwl8k_rate_entry
*dst
=
2505 &cmd
->rate_table
.rate_entry
[count
];
2506 struct mwl8k_rate_entry
*src
=
2507 &rate_table
->rate_entry
[count
];
2509 dst
->is_ht_rate
= cpu_to_le32(src
->is_ht_rate
);
2510 dst
->enable_retry
= cpu_to_le32(src
->enable_retry
);
2511 dst
->rate
= cpu_to_le32(src
->rate
);
2512 dst
->retry_count
= cpu_to_le32(src
->retry_count
);
2516 rc
= mwl8k_post_cmd(hw
, &cmd
->header
);
2524 * Interrupt handling.
2526 static irqreturn_t
mwl8k_interrupt(int irq
, void *dev_id
)
2528 struct ieee80211_hw
*hw
= dev_id
;
2529 struct mwl8k_priv
*priv
= hw
->priv
;
2532 status
= ioread32(priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS
);
2533 iowrite32(~status
, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS
);
2535 status
&= priv
->int_mask
;
2539 if (status
& MWL8K_A2H_INT_TX_DONE
)
2540 tasklet_schedule(&priv
->tx_reclaim_task
);
2542 if (status
& MWL8K_A2H_INT_RX_READY
) {
2543 while (rxq_process(hw
, 0, 1))
2544 rxq_refill(hw
, 0, 1);
2547 if (status
& MWL8K_A2H_INT_OPC_DONE
) {
2548 if (priv
->hostcmd_wait
!= NULL
) {
2549 complete(priv
->hostcmd_wait
);
2550 priv
->hostcmd_wait
= NULL
;
2554 if (status
& MWL8K_A2H_INT_QUEUE_EMPTY
) {
2555 if (!priv
->inconfig
&&
2556 priv
->radio_state
&&
2557 mwl8k_txq_busy(priv
))
2558 mwl8k_tx_start(priv
);
2566 * Core driver operations.
2568 static int mwl8k_tx(struct ieee80211_hw
*hw
, struct sk_buff
*skb
)
2570 struct mwl8k_priv
*priv
= hw
->priv
;
2571 int index
= skb_get_queue_mapping(skb
);
2574 if (priv
->current_channel
== NULL
) {
2575 printk(KERN_DEBUG
"%s: dropped TX frame since radio "
2576 "disabled\n", priv
->name
);
2578 return NETDEV_TX_OK
;
2581 rc
= mwl8k_txq_xmit(hw
, index
, skb
);
2586 struct mwl8k_work_struct
{
2587 /* Initialized by mwl8k_queue_work(). */
2588 struct work_struct wt
;
2590 /* Required field passed in to mwl8k_queue_work(). */
2591 struct ieee80211_hw
*hw
;
2593 /* Required field passed in to mwl8k_queue_work(). */
2594 int (*wfunc
)(struct work_struct
*w
);
2596 /* Initialized by mwl8k_queue_work(). */
2597 struct completion
*cmd_wait
;
2603 * Optional field. Refer to explanation of MWL8K_WQ_XXX_XXX
2604 * flags for explanation. Defaults to MWL8K_WQ_DEFAULT_OPTIONS.
2608 /* Optional field. Defaults to MWL8K_CONFIG_TIMEOUT_MS. */
2609 unsigned long timeout_ms
;
2611 /* Optional field. Defaults to MWL8K_WQ_TXWAIT_ATTEMPTS. */
2612 u32 txwait_attempts
;
2614 /* Optional field. Defaults to MWL8K_TXWAIT_MS. */
2619 /* Flags controlling behavior of config queue requests */
2621 /* Caller spins while waiting for completion. */
2622 #define MWL8K_WQ_SPIN 0x00000001
2624 /* Wait for TX queues to empty before proceeding with configuration. */
2625 #define MWL8K_WQ_TX_WAIT_EMPTY 0x00000002
2627 /* Queue request and return immediately. */
2628 #define MWL8K_WQ_POST_REQUEST 0x00000004
2631 * Caller sleeps and waits for task complete notification.
2632 * Do not use in atomic context.
2634 #define MWL8K_WQ_SLEEP 0x00000008
2636 /* Free work struct when task is done. */
2637 #define MWL8K_WQ_FREE_WORKSTRUCT 0x00000010
2640 * Config request is queued and returns to caller imediately. Use
2641 * this in atomic context. Work struct is freed by mwl8k_queue_work()
2642 * when this flag is set.
2644 #define MWL8K_WQ_QUEUE_ONLY (MWL8K_WQ_POST_REQUEST | \
2645 MWL8K_WQ_FREE_WORKSTRUCT)
2647 /* Default work queue behavior is to sleep and wait for tx completion. */
2648 #define MWL8K_WQ_DEFAULT_OPTIONS (MWL8K_WQ_SLEEP | MWL8K_WQ_TX_WAIT_EMPTY)
2651 * Default config request timeout. Add adjustments to make sure the
2652 * config thread waits long enough for both tx wait and cmd wait before
2656 /* Time to wait for all TXQs to drain. TX Doorbell is pressed each time. */
2657 #define MWL8K_TXWAIT_TIMEOUT_MS 1000
2659 /* Default number of TX wait attempts. */
2660 #define MWL8K_WQ_TXWAIT_ATTEMPTS 4
2662 /* Total time to wait for TXQ to drain. */
2663 #define MWL8K_TXWAIT_MS (MWL8K_TXWAIT_TIMEOUT_MS * \
2664 MWL8K_WQ_TXWAIT_ATTEMPTS)
2666 /* Scheduling slop. */
2667 #define MWL8K_OS_SCHEDULE_OVERHEAD_MS 200
2669 #define MWL8K_CONFIG_TIMEOUT_MS (MWL8K_CMD_TIMEOUT_MS + \
2671 MWL8K_OS_SCHEDULE_OVERHEAD_MS)
2673 static void mwl8k_config_thread(struct work_struct
*wt
)
2675 struct mwl8k_work_struct
*worker
= (struct mwl8k_work_struct
*)wt
;
2676 struct ieee80211_hw
*hw
= worker
->hw
;
2677 struct mwl8k_priv
*priv
= hw
->priv
;
2680 spin_lock_irq(&priv
->tx_lock
);
2681 priv
->inconfig
= true;
2682 spin_unlock_irq(&priv
->tx_lock
);
2684 ieee80211_stop_queues(hw
);
2687 * Wait for host queues to drain before doing PHY
2688 * reconfiguration. This avoids interrupting any in-flight
2689 * DMA transfers to the hardware.
2691 if (worker
->options
& MWL8K_WQ_TX_WAIT_EMPTY
) {
2695 u32 tx_wait_attempts
= worker
->txwait_attempts
;
2697 time_remaining
= worker
->tx_timeout_ms
;
2698 if (!tx_wait_attempts
)
2699 tx_wait_attempts
= 1;
2701 timeout
= worker
->tx_timeout_ms
/tx_wait_attempts
;
2705 iter
= tx_wait_attempts
;
2709 if (time_remaining
> timeout
) {
2710 time_remaining
-= timeout
;
2711 wait_time
= timeout
;
2713 wait_time
= time_remaining
;
2718 rc
= mwl8k_tx_wait_empty(hw
, wait_time
);
2720 printk(KERN_ERR
"%s() txwait timeout=%ums "
2721 "Retry:%u/%u\n", __func__
, timeout
,
2722 tx_wait_attempts
- iter
+ 1,
2725 } while (rc
&& --iter
);
2727 rc
= iter
? 0 : -ETIMEDOUT
;
2730 rc
= worker
->wfunc(wt
);
2732 spin_lock_irq(&priv
->tx_lock
);
2733 priv
->inconfig
= false;
2734 if (priv
->pending_tx_pkts
&& priv
->radio_state
)
2735 mwl8k_tx_start(priv
);
2736 spin_unlock_irq(&priv
->tx_lock
);
2737 ieee80211_wake_queues(hw
);
2740 if (worker
->options
& MWL8K_WQ_SLEEP
)
2741 complete(worker
->cmd_wait
);
2743 if (worker
->options
& MWL8K_WQ_FREE_WORKSTRUCT
)
2747 static int mwl8k_queue_work(struct ieee80211_hw
*hw
,
2748 struct mwl8k_work_struct
*worker
,
2749 struct workqueue_struct
*wqueue
,
2750 int (*wfunc
)(struct work_struct
*w
))
2752 unsigned long timeout
= 0;
2755 DECLARE_COMPLETION_ONSTACK(cmd_wait
);
2757 if (!worker
->timeout_ms
)
2758 worker
->timeout_ms
= MWL8K_CONFIG_TIMEOUT_MS
;
2760 if (!worker
->options
)
2761 worker
->options
= MWL8K_WQ_DEFAULT_OPTIONS
;
2763 if (!worker
->txwait_attempts
)
2764 worker
->txwait_attempts
= MWL8K_WQ_TXWAIT_ATTEMPTS
;
2766 if (!worker
->tx_timeout_ms
)
2767 worker
->tx_timeout_ms
= MWL8K_TXWAIT_MS
;
2770 worker
->cmd_wait
= &cmd_wait
;
2772 worker
->wfunc
= wfunc
;
2774 INIT_WORK(&worker
->wt
, mwl8k_config_thread
);
2775 queue_work(wqueue
, &worker
->wt
);
2777 if (worker
->options
& MWL8K_WQ_POST_REQUEST
) {
2780 if (worker
->options
& MWL8K_WQ_SPIN
) {
2781 timeout
= worker
->timeout_ms
;
2782 while (timeout
&& (worker
->rc
> 0)) {
2786 } else if (worker
->options
& MWL8K_WQ_SLEEP
)
2787 timeout
= wait_for_completion_timeout(&cmd_wait
,
2788 msecs_to_jiffies(worker
->timeout_ms
));
2793 cancel_work_sync(&worker
->wt
);
2801 struct mwl8k_start_worker
{
2802 struct mwl8k_work_struct header
;
2805 static int mwl8k_start_wt(struct work_struct
*wt
)
2807 struct mwl8k_start_worker
*worker
= (struct mwl8k_start_worker
*)wt
;
2808 struct ieee80211_hw
*hw
= worker
->header
.hw
;
2809 struct mwl8k_priv
*priv
= hw
->priv
;
2812 if (priv
->vif
!= NULL
) {
2814 goto mwl8k_start_exit
;
2818 if (mwl8k_cmd_802_11_radio_control(hw
, MWL8K_RADIO_ENABLE
)) {
2820 goto mwl8k_start_exit
;
2823 /* Purge TX/RX HW queues */
2824 if (mwl8k_cmd_set_pre_scan(hw
)) {
2826 goto mwl8k_start_exit
;
2829 if (mwl8k_cmd_set_post_scan(hw
, "\x00\x00\x00\x00\x00\x00")) {
2831 goto mwl8k_start_exit
;
2834 /* Enable firmware rate adaptation */
2835 if (mwl8k_cmd_setrateadaptmode(hw
, 0)) {
2837 goto mwl8k_start_exit
;
2840 /* Disable WMM. WMM gets enabled when stack sends WMM parms */
2841 if (mwl8k_set_wmm(hw
, MWL8K_WMM_DISABLE
)) {
2843 goto mwl8k_start_exit
;
2846 /* Disable sniffer mode */
2847 if (mwl8k_enable_sniffer(hw
, 0))
2854 static int mwl8k_start(struct ieee80211_hw
*hw
)
2856 struct mwl8k_start_worker
*worker
;
2857 struct mwl8k_priv
*priv
= hw
->priv
;
2860 /* Enable tx reclaim tasklet */
2861 tasklet_enable(&priv
->tx_reclaim_task
);
2863 rc
= request_irq(priv
->pdev
->irq
, &mwl8k_interrupt
,
2864 IRQF_SHARED
, MWL8K_NAME
, hw
);
2866 printk(KERN_ERR
"%s: failed to register IRQ handler\n",
2869 goto mwl8k_start_disable_tasklet
;
2872 /* Enable interrupts */
2873 iowrite32(priv
->int_mask
, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
2875 worker
= kzalloc(sizeof(*worker
), GFP_KERNEL
);
2876 if (worker
== NULL
) {
2878 goto mwl8k_start_disable_irq
;
2881 rc
= mwl8k_queue_work(hw
, &worker
->header
,
2882 priv
->config_wq
, mwl8k_start_wt
);
2887 if (rc
== -ETIMEDOUT
)
2888 printk(KERN_ERR
"%s() timed out\n", __func__
);
2892 mwl8k_start_disable_irq
:
2893 spin_lock_irq(&priv
->tx_lock
);
2894 iowrite32(0, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
2895 spin_unlock_irq(&priv
->tx_lock
);
2896 free_irq(priv
->pdev
->irq
, hw
);
2898 mwl8k_start_disable_tasklet
:
2899 tasklet_disable(&priv
->tx_reclaim_task
);
2904 struct mwl8k_stop_worker
{
2905 struct mwl8k_work_struct header
;
2908 static int mwl8k_stop_wt(struct work_struct
*wt
)
2910 struct mwl8k_stop_worker
*worker
= (struct mwl8k_stop_worker
*)wt
;
2911 struct ieee80211_hw
*hw
= worker
->header
.hw
;
2914 rc
= mwl8k_cmd_802_11_radio_control(hw
, MWL8K_RADIO_DISABLE
);
2919 static void mwl8k_stop(struct ieee80211_hw
*hw
)
2922 struct mwl8k_stop_worker
*worker
;
2923 struct mwl8k_priv
*priv
= hw
->priv
;
2926 if (priv
->vif
!= NULL
)
2929 ieee80211_stop_queues(hw
);
2931 worker
= kzalloc(sizeof(*worker
), GFP_KERNEL
);
2935 rc
= mwl8k_queue_work(hw
, &worker
->header
,
2936 priv
->config_wq
, mwl8k_stop_wt
);
2938 if (rc
== -ETIMEDOUT
)
2939 printk(KERN_ERR
"%s() timed out\n", __func__
);
2941 /* Disable interrupts */
2942 spin_lock_irq(&priv
->tx_lock
);
2943 iowrite32(0, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
2944 spin_unlock_irq(&priv
->tx_lock
);
2945 free_irq(priv
->pdev
->irq
, hw
);
2947 /* Stop finalize join worker */
2948 cancel_work_sync(&priv
->finalize_join_worker
);
2949 if (priv
->beacon_skb
!= NULL
)
2950 dev_kfree_skb(priv
->beacon_skb
);
2952 /* Stop tx reclaim tasklet */
2953 tasklet_disable(&priv
->tx_reclaim_task
);
2955 /* Stop config thread */
2956 flush_workqueue(priv
->config_wq
);
2958 /* Return all skbs to mac80211 */
2959 for (i
= 0; i
< MWL8K_TX_QUEUES
; i
++)
2960 mwl8k_txq_reclaim(hw
, i
, 1);
2963 static int mwl8k_add_interface(struct ieee80211_hw
*hw
,
2964 struct ieee80211_if_init_conf
*conf
)
2966 struct mwl8k_priv
*priv
= hw
->priv
;
2967 struct mwl8k_vif
*mwl8k_vif
;
2970 * We only support one active interface at a time.
2972 if (priv
->vif
!= NULL
)
2976 * We only support managed interfaces for now.
2978 if (conf
->type
!= NL80211_IFTYPE_STATION
&&
2979 conf
->type
!= NL80211_IFTYPE_MONITOR
)
2982 /* Clean out driver private area */
2983 mwl8k_vif
= MWL8K_VIF(conf
->vif
);
2984 memset(mwl8k_vif
, 0, sizeof(*mwl8k_vif
));
2986 /* Save the mac address */
2987 memcpy(mwl8k_vif
->mac_addr
, conf
->mac_addr
, IEEE80211_ADDR_LEN
);
2989 /* Back pointer to parent config block */
2990 mwl8k_vif
->priv
= priv
;
2992 /* Setup initial PHY parameters */
2993 memcpy(mwl8k_vif
->legacy_rates
,
2994 priv
->rates
, sizeof(mwl8k_vif
->legacy_rates
));
2995 mwl8k_vif
->legacy_nrates
= ARRAY_SIZE(priv
->rates
);
2997 /* Set Initial sequence number to zero */
2998 mwl8k_vif
->seqno
= 0;
3000 priv
->vif
= conf
->vif
;
3001 priv
->current_channel
= NULL
;
3006 static void mwl8k_remove_interface(struct ieee80211_hw
*hw
,
3007 struct ieee80211_if_init_conf
*conf
)
3009 struct mwl8k_priv
*priv
= hw
->priv
;
3011 if (priv
->vif
== NULL
)
3017 struct mwl8k_config_worker
{
3018 struct mwl8k_work_struct header
;
3022 static int mwl8k_config_wt(struct work_struct
*wt
)
3024 struct mwl8k_config_worker
*worker
=
3025 (struct mwl8k_config_worker
*)wt
;
3026 struct ieee80211_hw
*hw
= worker
->header
.hw
;
3027 struct ieee80211_conf
*conf
= &hw
->conf
;
3028 struct mwl8k_priv
*priv
= hw
->priv
;
3031 if (!conf
->radio_enabled
) {
3032 mwl8k_cmd_802_11_radio_control(hw
, MWL8K_RADIO_DISABLE
);
3033 priv
->current_channel
= NULL
;
3035 goto mwl8k_config_exit
;
3038 if (mwl8k_cmd_802_11_radio_control(hw
, MWL8K_RADIO_ENABLE
)) {
3040 goto mwl8k_config_exit
;
3043 priv
->current_channel
= conf
->channel
;
3045 if (mwl8k_cmd_set_rf_channel(hw
, conf
->channel
)) {
3047 goto mwl8k_config_exit
;
3050 if (conf
->power_level
> 18)
3051 conf
->power_level
= 18;
3052 if (mwl8k_cmd_802_11_rf_tx_power(hw
, conf
->power_level
)) {
3054 goto mwl8k_config_exit
;
3057 if (mwl8k_cmd_mimo_config(hw
, 0x7, 0x7))
3064 static int mwl8k_config(struct ieee80211_hw
*hw
, u32 changed
)
3067 struct mwl8k_config_worker
*worker
;
3068 struct mwl8k_priv
*priv
= hw
->priv
;
3070 worker
= kzalloc(sizeof(*worker
), GFP_KERNEL
);
3074 worker
->changed
= changed
;
3075 rc
= mwl8k_queue_work(hw
, &worker
->header
,
3076 priv
->config_wq
, mwl8k_config_wt
);
3077 if (rc
== -ETIMEDOUT
) {
3078 printk(KERN_ERR
"%s() timed out.\n", __func__
);
3085 * mac80211 will crash on anything other than -EINVAL on
3086 * error. Looks like wireless extensions which calls mac80211
3087 * may be the actual culprit...
3089 return rc
? -EINVAL
: 0;
3092 static int mwl8k_config_interface(struct ieee80211_hw
*hw
,
3093 struct ieee80211_vif
*vif
,
3094 struct ieee80211_if_conf
*conf
)
3096 struct mwl8k_vif
*mv_vif
= MWL8K_VIF(vif
);
3097 u32 changed
= conf
->changed
;
3099 if (changed
& IEEE80211_IFCC_BSSID
)
3100 memcpy(mv_vif
->bssid
, conf
->bssid
, IEEE80211_ADDR_LEN
);
3105 struct mwl8k_bss_info_changed_worker
{
3106 struct mwl8k_work_struct header
;
3107 struct ieee80211_vif
*vif
;
3108 struct ieee80211_bss_conf
*info
;
3112 static int mwl8k_bss_info_changed_wt(struct work_struct
*wt
)
3114 struct mwl8k_bss_info_changed_worker
*worker
=
3115 (struct mwl8k_bss_info_changed_worker
*)wt
;
3116 struct ieee80211_hw
*hw
= worker
->header
.hw
;
3117 struct ieee80211_vif
*vif
= worker
->vif
;
3118 struct ieee80211_bss_conf
*info
= worker
->info
;
3122 struct mwl8k_priv
*priv
= hw
->priv
;
3123 struct mwl8k_vif
*mwl8k_vif
= MWL8K_VIF(vif
);
3125 changed
= worker
->changed
;
3126 priv
->capture_beacon
= false;
3129 memcpy(&mwl8k_vif
->bss_info
, info
,
3130 sizeof(struct ieee80211_bss_conf
));
3133 if (mwl8k_update_rateset(hw
, vif
))
3134 goto mwl8k_bss_info_changed_exit
;
3136 /* Turn on rate adaptation */
3137 if (mwl8k_cmd_use_fixed_rate(hw
, MWL8K_USE_AUTO_RATE
,
3138 MWL8K_UCAST_RATE
, NULL
))
3139 goto mwl8k_bss_info_changed_exit
;
3141 /* Set radio preamble */
3142 if (mwl8k_set_radio_preamble(hw
,
3143 info
->use_short_preamble
))
3144 goto mwl8k_bss_info_changed_exit
;
3147 if (mwl8k_cmd_set_slot(hw
, info
->use_short_slot
?
3148 MWL8K_SHORT_SLOTTIME
: MWL8K_LONG_SLOTTIME
))
3149 goto mwl8k_bss_info_changed_exit
;
3151 /* Update peer rate info */
3152 if (mwl8k_cmd_update_sta_db(hw
, vif
,
3153 MWL8K_STA_DB_MODIFY_ENTRY
))
3154 goto mwl8k_bss_info_changed_exit
;
3157 if (mwl8k_cmd_set_aid(hw
, vif
))
3158 goto mwl8k_bss_info_changed_exit
;
3161 * Finalize the join. Tell rx handler to process
3162 * next beacon from our BSSID.
3164 memcpy(priv
->capture_bssid
,
3165 mwl8k_vif
->bssid
, IEEE80211_ADDR_LEN
);
3166 priv
->capture_beacon
= true;
3168 mwl8k_cmd_update_sta_db(hw
, vif
, MWL8K_STA_DB_DEL_ENTRY
);
3169 memset(&mwl8k_vif
->bss_info
, 0,
3170 sizeof(struct ieee80211_bss_conf
));
3171 memset(mwl8k_vif
->bssid
, 0, IEEE80211_ADDR_LEN
);
3174 mwl8k_bss_info_changed_exit
:
3179 static void mwl8k_bss_info_changed(struct ieee80211_hw
*hw
,
3180 struct ieee80211_vif
*vif
,
3181 struct ieee80211_bss_conf
*info
,
3184 struct mwl8k_bss_info_changed_worker
*worker
;
3185 struct mwl8k_priv
*priv
= hw
->priv
;
3188 if ((changed
& BSS_CHANGED_ASSOC
) == 0)
3191 worker
= kzalloc(sizeof(*worker
), GFP_KERNEL
);
3196 worker
->info
= info
;
3197 worker
->changed
= changed
;
3198 rc
= mwl8k_queue_work(hw
, &worker
->header
,
3200 mwl8k_bss_info_changed_wt
);
3202 if (rc
== -ETIMEDOUT
)
3203 printk(KERN_ERR
"%s() timed out\n", __func__
);
3206 struct mwl8k_configure_filter_worker
{
3207 struct mwl8k_work_struct header
;
3208 unsigned int changed_flags
;
3209 unsigned int *total_flags
;
3211 struct dev_addr_list
*mclist
;
3214 #define MWL8K_SUPPORTED_IF_FLAGS FIF_BCN_PRBRESP_PROMISC
3216 static int mwl8k_configure_filter_wt(struct work_struct
*wt
)
3218 struct mwl8k_configure_filter_worker
*worker
=
3219 (struct mwl8k_configure_filter_worker
*)wt
;
3221 struct ieee80211_hw
*hw
= worker
->header
.hw
;
3222 unsigned int changed_flags
= worker
->changed_flags
;
3223 unsigned int *total_flags
= worker
->total_flags
;
3224 int mc_count
= worker
->mc_count
;
3225 struct dev_addr_list
*mclist
= worker
->mclist
;
3227 struct mwl8k_priv
*priv
= hw
->priv
;
3228 struct mwl8k_vif
*mv_vif
;
3231 if (changed_flags
& FIF_BCN_PRBRESP_PROMISC
) {
3232 if (*total_flags
& FIF_BCN_PRBRESP_PROMISC
)
3233 rc
= mwl8k_cmd_set_pre_scan(hw
);
3235 mv_vif
= MWL8K_VIF(priv
->vif
);
3236 rc
= mwl8k_cmd_set_post_scan(hw
, mv_vif
->bssid
);
3241 goto mwl8k_configure_filter_exit
;
3243 mc_count
= mc_count
< priv
->num_mcaddrs
?
3244 mc_count
: priv
->num_mcaddrs
;
3245 rc
= mwl8k_cmd_mac_multicast_adr(hw
, mc_count
, mclist
);
3248 "%s()Error setting multicast addresses\n",
3252 mwl8k_configure_filter_exit
:
3256 static void mwl8k_configure_filter(struct ieee80211_hw
*hw
,
3257 unsigned int changed_flags
,
3258 unsigned int *total_flags
,
3260 struct dev_addr_list
*mclist
)
3263 struct mwl8k_configure_filter_worker
*worker
;
3264 struct mwl8k_priv
*priv
= hw
->priv
;
3266 /* Clear unsupported feature flags */
3267 *total_flags
&= MWL8K_SUPPORTED_IF_FLAGS
;
3269 if (!(changed_flags
& MWL8K_SUPPORTED_IF_FLAGS
) && !mc_count
)
3272 worker
= kzalloc(sizeof(*worker
), GFP_ATOMIC
);
3276 worker
->header
.options
= MWL8K_WQ_QUEUE_ONLY
| MWL8K_WQ_TX_WAIT_EMPTY
;
3277 worker
->changed_flags
= changed_flags
;
3278 worker
->total_flags
= total_flags
;
3279 worker
->mc_count
= mc_count
;
3280 worker
->mclist
= mclist
;
3282 mwl8k_queue_work(hw
, &worker
->header
, priv
->config_wq
,
3283 mwl8k_configure_filter_wt
);
3286 struct mwl8k_set_rts_threshold_worker
{
3287 struct mwl8k_work_struct header
;
3291 static int mwl8k_set_rts_threshold_wt(struct work_struct
*wt
)
3293 struct mwl8k_set_rts_threshold_worker
*worker
=
3294 (struct mwl8k_set_rts_threshold_worker
*)wt
;
3296 struct ieee80211_hw
*hw
= worker
->header
.hw
;
3297 u16 threshold
= (u16
)(worker
->value
);
3300 rc
= mwl8k_rts_threshold(hw
, MWL8K_CMD_SET
, &threshold
);
3305 static int mwl8k_set_rts_threshold(struct ieee80211_hw
*hw
, u32 value
)
3308 struct mwl8k_set_rts_threshold_worker
*worker
;
3309 struct mwl8k_priv
*priv
= hw
->priv
;
3311 worker
= kzalloc(sizeof(*worker
), GFP_KERNEL
);
3315 worker
->value
= value
;
3317 rc
= mwl8k_queue_work(hw
, &worker
->header
,
3319 mwl8k_set_rts_threshold_wt
);
3322 if (rc
== -ETIMEDOUT
) {
3323 printk(KERN_ERR
"%s() timed out\n", __func__
);
3330 struct mwl8k_conf_tx_worker
{
3331 struct mwl8k_work_struct header
;
3333 const struct ieee80211_tx_queue_params
*params
;
3336 static int mwl8k_conf_tx_wt(struct work_struct
*wt
)
3338 struct mwl8k_conf_tx_worker
*worker
=
3339 (struct mwl8k_conf_tx_worker
*)wt
;
3341 struct ieee80211_hw
*hw
= worker
->header
.hw
;
3342 u16 queue
= worker
->queue
;
3343 const struct ieee80211_tx_queue_params
*params
= worker
->params
;
3345 struct mwl8k_priv
*priv
= hw
->priv
;
3348 if (priv
->wmm_mode
== MWL8K_WMM_DISABLE
)
3349 if (mwl8k_set_wmm(hw
, MWL8K_WMM_ENABLE
)) {
3351 goto mwl8k_conf_tx_exit
;
3354 if (mwl8k_set_edca_params(hw
, GET_TXQ(queue
), params
->cw_min
,
3355 params
->cw_max
, params
->aifs
, params
->txop
))
3361 static int mwl8k_conf_tx(struct ieee80211_hw
*hw
, u16 queue
,
3362 const struct ieee80211_tx_queue_params
*params
)
3365 struct mwl8k_conf_tx_worker
*worker
;
3366 struct mwl8k_priv
*priv
= hw
->priv
;
3368 worker
= kzalloc(sizeof(*worker
), GFP_KERNEL
);
3372 worker
->queue
= queue
;
3373 worker
->params
= params
;
3374 rc
= mwl8k_queue_work(hw
, &worker
->header
,
3375 priv
->config_wq
, mwl8k_conf_tx_wt
);
3377 if (rc
== -ETIMEDOUT
) {
3378 printk(KERN_ERR
"%s() timed out\n", __func__
);
3384 static int mwl8k_get_tx_stats(struct ieee80211_hw
*hw
,
3385 struct ieee80211_tx_queue_stats
*stats
)
3387 struct mwl8k_priv
*priv
= hw
->priv
;
3388 struct mwl8k_tx_queue
*txq
;
3391 spin_lock_bh(&priv
->tx_lock
);
3392 for (index
= 0; index
< MWL8K_TX_QUEUES
; index
++) {
3393 txq
= priv
->txq
+ index
;
3394 memcpy(&stats
[index
], &txq
->tx_stats
,
3395 sizeof(struct ieee80211_tx_queue_stats
));
3397 spin_unlock_bh(&priv
->tx_lock
);
3401 struct mwl8k_get_stats_worker
{
3402 struct mwl8k_work_struct header
;
3403 struct ieee80211_low_level_stats
*stats
;
3406 static int mwl8k_get_stats_wt(struct work_struct
*wt
)
3408 struct mwl8k_get_stats_worker
*worker
=
3409 (struct mwl8k_get_stats_worker
*)wt
;
3411 return mwl8k_cmd_802_11_get_stat(worker
->header
.hw
, worker
->stats
);
3414 static int mwl8k_get_stats(struct ieee80211_hw
*hw
,
3415 struct ieee80211_low_level_stats
*stats
)
3418 struct mwl8k_get_stats_worker
*worker
;
3419 struct mwl8k_priv
*priv
= hw
->priv
;
3421 worker
= kzalloc(sizeof(*worker
), GFP_KERNEL
);
3425 worker
->stats
= stats
;
3426 rc
= mwl8k_queue_work(hw
, &worker
->header
,
3427 priv
->config_wq
, mwl8k_get_stats_wt
);
3430 if (rc
== -ETIMEDOUT
) {
3431 printk(KERN_ERR
"%s() timed out\n", __func__
);
3438 static const struct ieee80211_ops mwl8k_ops
= {
3440 .start
= mwl8k_start
,
3442 .add_interface
= mwl8k_add_interface
,
3443 .remove_interface
= mwl8k_remove_interface
,
3444 .config
= mwl8k_config
,
3445 .config_interface
= mwl8k_config_interface
,
3446 .bss_info_changed
= mwl8k_bss_info_changed
,
3447 .configure_filter
= mwl8k_configure_filter
,
3448 .set_rts_threshold
= mwl8k_set_rts_threshold
,
3449 .conf_tx
= mwl8k_conf_tx
,
3450 .get_tx_stats
= mwl8k_get_tx_stats
,
3451 .get_stats
= mwl8k_get_stats
,
3454 static void mwl8k_tx_reclaim_handler(unsigned long data
)
3457 struct ieee80211_hw
*hw
= (struct ieee80211_hw
*) data
;
3458 struct mwl8k_priv
*priv
= hw
->priv
;
3460 spin_lock_bh(&priv
->tx_lock
);
3461 for (i
= 0; i
< MWL8K_TX_QUEUES
; i
++)
3462 mwl8k_txq_reclaim(hw
, i
, 0);
3464 if (priv
->tx_wait
!= NULL
) {
3465 int count
= mwl8k_txq_busy(priv
);
3467 complete(priv
->tx_wait
);
3468 priv
->tx_wait
= NULL
;
3471 spin_unlock_bh(&priv
->tx_lock
);
3474 static void mwl8k_finalize_join_worker(struct work_struct
*work
)
3476 struct mwl8k_priv
*priv
=
3477 container_of(work
, struct mwl8k_priv
, finalize_join_worker
);
3478 struct sk_buff
*skb
= priv
->beacon_skb
;
3479 u8 dtim
= (MWL8K_VIF(priv
->vif
))->bss_info
.dtim_period
;
3481 mwl8k_finalize_join(priv
->hw
, skb
->data
, skb
->len
, dtim
);
3484 priv
->beacon_skb
= NULL
;
3487 static int __devinit
mwl8k_probe(struct pci_dev
*pdev
,
3488 const struct pci_device_id
*id
)
3490 struct ieee80211_hw
*hw
;
3491 struct mwl8k_priv
*priv
;
3492 DECLARE_MAC_BUF(mac
);
3497 rc
= pci_enable_device(pdev
);
3499 printk(KERN_ERR
"%s: Cannot enable new PCI device\n",
3504 rc
= pci_request_regions(pdev
, MWL8K_NAME
);
3506 printk(KERN_ERR
"%s: Cannot obtain PCI resources\n",
3511 pci_set_master(pdev
);
3513 hw
= ieee80211_alloc_hw(sizeof(*priv
), &mwl8k_ops
);
3515 printk(KERN_ERR
"%s: ieee80211 alloc failed\n", MWL8K_NAME
);
3523 priv
->hostcmd_wait
= NULL
;
3524 priv
->tx_wait
= NULL
;
3525 priv
->inconfig
= false;
3526 priv
->wep_enabled
= 0;
3527 priv
->wmm_mode
= false;
3528 priv
->pending_tx_pkts
= 0;
3529 strncpy(priv
->name
, MWL8K_NAME
, sizeof(priv
->name
));
3531 spin_lock_init(&priv
->fw_lock
);
3533 SET_IEEE80211_DEV(hw
, &pdev
->dev
);
3534 pci_set_drvdata(pdev
, hw
);
3536 priv
->regs
= pci_iomap(pdev
, 1, 0x10000);
3537 if (priv
->regs
== NULL
) {
3538 printk(KERN_ERR
"%s: Cannot map device memory\n", priv
->name
);
3542 memcpy(priv
->channels
, mwl8k_channels
, sizeof(mwl8k_channels
));
3543 priv
->band
.band
= IEEE80211_BAND_2GHZ
;
3544 priv
->band
.channels
= priv
->channels
;
3545 priv
->band
.n_channels
= ARRAY_SIZE(mwl8k_channels
);
3546 priv
->band
.bitrates
= priv
->rates
;
3547 priv
->band
.n_bitrates
= ARRAY_SIZE(mwl8k_rates
);
3548 hw
->wiphy
->bands
[IEEE80211_BAND_2GHZ
] = &priv
->band
;
3550 BUILD_BUG_ON(sizeof(priv
->rates
) != sizeof(mwl8k_rates
));
3551 memcpy(priv
->rates
, mwl8k_rates
, sizeof(mwl8k_rates
));
3554 * Extra headroom is the size of the required DMA header
3555 * minus the size of the smallest 802.11 frame (CTS frame).
3557 hw
->extra_tx_headroom
=
3558 sizeof(struct mwl8k_dma_data
) - sizeof(struct ieee80211_cts
);
3560 hw
->channel_change_time
= 10;
3562 hw
->queues
= MWL8K_TX_QUEUES
;
3564 hw
->wiphy
->interface_modes
=
3565 BIT(NL80211_IFTYPE_STATION
) | BIT(NL80211_IFTYPE_MONITOR
);
3567 /* Set rssi and noise values to dBm */
3568 hw
->flags
|= (IEEE80211_HW_SIGNAL_DBM
| IEEE80211_HW_NOISE_DBM
);
3569 hw
->vif_data_size
= sizeof(struct mwl8k_vif
);
3572 /* Set default radio state and preamble */
3573 priv
->radio_preamble
= MWL8K_RADIO_DEFAULT_PREAMBLE
;
3574 priv
->radio_state
= MWL8K_RADIO_DISABLE
;
3576 /* Finalize join worker */
3577 INIT_WORK(&priv
->finalize_join_worker
, mwl8k_finalize_join_worker
);
3579 /* TX reclaim tasklet */
3580 tasklet_init(&priv
->tx_reclaim_task
,
3581 mwl8k_tx_reclaim_handler
, (unsigned long)hw
);
3582 tasklet_disable(&priv
->tx_reclaim_task
);
3584 /* Config workthread */
3585 priv
->config_wq
= create_singlethread_workqueue("mwl8k_config");
3586 if (priv
->config_wq
== NULL
)
3589 /* Power management cookie */
3590 priv
->cookie
= pci_alloc_consistent(priv
->pdev
, 4, &priv
->cookie_dma
);
3591 if (priv
->cookie
== NULL
)
3594 rc
= mwl8k_rxq_init(hw
, 0);
3597 rxq_refill(hw
, 0, INT_MAX
);
3599 spin_lock_init(&priv
->tx_lock
);
3601 for (i
= 0; i
< MWL8K_TX_QUEUES
; i
++) {
3602 rc
= mwl8k_txq_init(hw
, i
);
3604 goto err_free_queues
;
3607 iowrite32(0, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS
);
3609 iowrite32(priv
->int_mask
, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
3610 iowrite32(0, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL
);
3611 iowrite32(0xffffffff, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK
);
3613 rc
= request_irq(priv
->pdev
->irq
, &mwl8k_interrupt
,
3614 IRQF_SHARED
, MWL8K_NAME
, hw
);
3616 printk(KERN_ERR
"%s: failed to register IRQ handler\n",
3618 goto err_free_queues
;
3621 /* Reset firmware and hardware */
3622 mwl8k_hw_reset(priv
);
3624 /* Ask userland hotplug daemon for the device firmware */
3625 rc
= mwl8k_request_firmware(priv
, (u32
)id
->driver_data
);
3627 printk(KERN_ERR
"%s: Firmware files not found\n", priv
->name
);
3631 /* Load firmware into hardware */
3632 rc
= mwl8k_load_firmware(priv
);
3634 printk(KERN_ERR
"%s: Cannot start firmware\n", priv
->name
);
3635 goto err_stop_firmware
;
3638 /* Reclaim memory once firmware is successfully loaded */
3639 mwl8k_release_firmware(priv
);
3642 * Temporarily enable interrupts. Initial firmware host
3643 * commands use interrupts and avoids polling. Disable
3644 * interrupts when done.
3646 priv
->int_mask
|= MWL8K_A2H_EVENTS
;
3648 iowrite32(priv
->int_mask
, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
3650 /* Get config data, mac addrs etc */
3651 rc
= mwl8k_cmd_get_hw_spec(hw
);
3653 printk(KERN_ERR
"%s: Cannot initialise firmware\n", priv
->name
);
3654 goto err_stop_firmware
;
3657 /* Turn radio off */
3658 rc
= mwl8k_cmd_802_11_radio_control(hw
, MWL8K_RADIO_DISABLE
);
3660 printk(KERN_ERR
"%s: Cannot disable\n", priv
->name
);
3661 goto err_stop_firmware
;
3664 /* Disable interrupts */
3665 spin_lock_irq(&priv
->tx_lock
);
3666 iowrite32(0, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
3667 spin_unlock_irq(&priv
->tx_lock
);
3668 free_irq(priv
->pdev
->irq
, hw
);
3670 rc
= ieee80211_register_hw(hw
);
3672 printk(KERN_ERR
"%s: Cannot register device\n", priv
->name
);
3673 goto err_stop_firmware
;
3676 fw
= (u8
*)&priv
->fw_rev
;
3677 printk(KERN_INFO
"%s: 88W%u %s\n", priv
->name
, priv
->part_num
,
3679 printk(KERN_INFO
"%s: Driver Ver:%s Firmware Ver:%u.%u.%u.%u\n",
3680 priv
->name
, MWL8K_VERSION
, fw
[3], fw
[2], fw
[1], fw
[0]);
3681 printk(KERN_INFO
"%s: MAC Address: %s\n", priv
->name
,
3682 print_mac(mac
, hw
->wiphy
->perm_addr
));
3687 mwl8k_hw_reset(priv
);
3688 mwl8k_release_firmware(priv
);
3691 spin_lock_irq(&priv
->tx_lock
);
3692 iowrite32(0, priv
->regs
+ MWL8K_HIU_A2H_INTERRUPT_MASK
);
3693 spin_unlock_irq(&priv
->tx_lock
);
3694 free_irq(priv
->pdev
->irq
, hw
);
3697 for (i
= 0; i
< MWL8K_TX_QUEUES
; i
++)
3698 mwl8k_txq_deinit(hw
, i
);
3699 mwl8k_rxq_deinit(hw
, 0);
3702 if (priv
->cookie
!= NULL
)
3703 pci_free_consistent(priv
->pdev
, 4,
3704 priv
->cookie
, priv
->cookie_dma
);
3706 if (priv
->regs
!= NULL
)
3707 pci_iounmap(pdev
, priv
->regs
);
3709 if (priv
->config_wq
!= NULL
)
3710 destroy_workqueue(priv
->config_wq
);
3712 pci_set_drvdata(pdev
, NULL
);
3713 ieee80211_free_hw(hw
);
3716 pci_release_regions(pdev
);
3717 pci_disable_device(pdev
);
3722 static void __devexit
mwl8k_shutdown(struct pci_dev
*pdev
)
3724 printk(KERN_ERR
"===>%s(%u)\n", __func__
, __LINE__
);
3727 static void __devexit
mwl8k_remove(struct pci_dev
*pdev
)
3729 struct ieee80211_hw
*hw
= pci_get_drvdata(pdev
);
3730 struct mwl8k_priv
*priv
;
3737 ieee80211_stop_queues(hw
);
3739 /* Remove tx reclaim tasklet */
3740 tasklet_kill(&priv
->tx_reclaim_task
);
3742 /* Stop config thread */
3743 destroy_workqueue(priv
->config_wq
);
3746 mwl8k_hw_reset(priv
);
3748 /* Return all skbs to mac80211 */
3749 for (i
= 0; i
< MWL8K_TX_QUEUES
; i
++)
3750 mwl8k_txq_reclaim(hw
, i
, 1);
3752 ieee80211_unregister_hw(hw
);
3754 for (i
= 0; i
< MWL8K_TX_QUEUES
; i
++)
3755 mwl8k_txq_deinit(hw
, i
);
3757 mwl8k_rxq_deinit(hw
, 0);
3759 pci_free_consistent(priv
->pdev
, 4,
3760 priv
->cookie
, priv
->cookie_dma
);
3762 pci_iounmap(pdev
, priv
->regs
);
3763 pci_set_drvdata(pdev
, NULL
);
3764 ieee80211_free_hw(hw
);
3765 pci_release_regions(pdev
);
3766 pci_disable_device(pdev
);
3769 static struct pci_driver mwl8k_driver
= {
3771 .id_table
= mwl8k_table
,
3772 .probe
= mwl8k_probe
,
3773 .remove
= __devexit_p(mwl8k_remove
),
3774 .shutdown
= __devexit_p(mwl8k_shutdown
),
3777 static int __init
mwl8k_init(void)
3779 return pci_register_driver(&mwl8k_driver
);
3782 static void __exit
mwl8k_exit(void)
3784 pci_unregister_driver(&mwl8k_driver
);
3787 module_init(mwl8k_init
);
3788 module_exit(mwl8k_exit
);