blob: 956c1084ebf13ade0959fff0ad894a4910b60108 [file] [log] [blame]
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001/*
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002 * drivers/net/wireless/mwl8k.c
3 * Driver for Marvell TOPDOG 802.11 Wireless cards
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004 *
Lennert Buytenheka5fb2972010-01-12 13:51:38 +01005 * Copyright (C) 2008, 2009, 2010 Marvell Semiconductor Inc.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006 *
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
10 */
11
12#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000013#include <linux/interrupt.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010014#include <linux/module.h>
15#include <linux/kernel.h>
Lennert Buytenhek3d76e822009-10-22 20:20:16 +020016#include <linux/sched.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010017#include <linux/spinlock.h>
18#include <linux/list.h>
19#include <linux/pci.h>
20#include <linux/delay.h>
21#include <linux/completion.h>
22#include <linux/etherdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010024#include <net/mac80211.h>
25#include <linux/moduleparam.h>
26#include <linux/firmware.h>
27#include <linux/workqueue.h>
28
29#define MWL8K_DESC "Marvell TOPDOG(R) 802.11 Wireless Network Driver"
30#define MWL8K_NAME KBUILD_MODNAME
Yogesh Ashok Powar00e8e692011-12-20 11:39:29 +053031#define MWL8K_VERSION "0.13"
Lennert Buytenheka66098d2009-03-10 10:13:33 +010032
Brian Cavagnolo0863ade2010-11-12 17:23:50 -080033/* Module parameters */
Rusty Russelleb939922011-12-19 14:08:01 +000034static bool ap_mode_default;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -080035module_param(ap_mode_default, bool, 0);
36MODULE_PARM_DESC(ap_mode_default,
37 "Set to 1 to make ap mode the default instead of sta mode");
38
Lennert Buytenheka66098d2009-03-10 10:13:33 +010039/* Register definitions */
40#define MWL8K_HIU_GEN_PTR 0x00000c10
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020041#define MWL8K_MODE_STA 0x0000005a
42#define MWL8K_MODE_AP 0x000000a5
Lennert Buytenheka66098d2009-03-10 10:13:33 +010043#define MWL8K_HIU_INT_CODE 0x00000c14
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020044#define MWL8K_FWSTA_READY 0xf0f1f2f4
45#define MWL8K_FWAP_READY 0xf1f2f4a5
46#define MWL8K_INT_CODE_CMD_FINISHED 0x00000005
Lennert Buytenheka66098d2009-03-10 10:13:33 +010047#define MWL8K_HIU_SCRATCH 0x00000c40
48
49/* Host->device communications */
50#define MWL8K_HIU_H2A_INTERRUPT_EVENTS 0x00000c18
51#define MWL8K_HIU_H2A_INTERRUPT_STATUS 0x00000c1c
52#define MWL8K_HIU_H2A_INTERRUPT_MASK 0x00000c20
53#define MWL8K_HIU_H2A_INTERRUPT_CLEAR_SEL 0x00000c24
54#define MWL8K_HIU_H2A_INTERRUPT_STATUS_MASK 0x00000c28
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020055#define MWL8K_H2A_INT_DUMMY (1 << 20)
56#define MWL8K_H2A_INT_RESET (1 << 15)
57#define MWL8K_H2A_INT_DOORBELL (1 << 1)
58#define MWL8K_H2A_INT_PPA_READY (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010059
60/* Device->host communications */
61#define MWL8K_HIU_A2H_INTERRUPT_EVENTS 0x00000c2c
62#define MWL8K_HIU_A2H_INTERRUPT_STATUS 0x00000c30
63#define MWL8K_HIU_A2H_INTERRUPT_MASK 0x00000c34
64#define MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL 0x00000c38
65#define MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK 0x00000c3c
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020066#define MWL8K_A2H_INT_DUMMY (1 << 20)
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -070067#define MWL8K_A2H_INT_BA_WATCHDOG (1 << 14)
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020068#define MWL8K_A2H_INT_CHNL_SWITCHED (1 << 11)
69#define MWL8K_A2H_INT_QUEUE_EMPTY (1 << 10)
70#define MWL8K_A2H_INT_RADAR_DETECT (1 << 7)
71#define MWL8K_A2H_INT_RADIO_ON (1 << 6)
72#define MWL8K_A2H_INT_RADIO_OFF (1 << 5)
73#define MWL8K_A2H_INT_MAC_EVENT (1 << 3)
74#define MWL8K_A2H_INT_OPC_DONE (1 << 2)
75#define MWL8K_A2H_INT_RX_READY (1 << 1)
76#define MWL8K_A2H_INT_TX_DONE (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010077
Pradeep Nemavat566875d2011-04-21 16:34:57 +053078/* HW micro second timer register
79 * located at offset 0xA600. This
80 * will be used to timestamp tx
81 * packets.
82 */
83
84#define MWL8K_HW_TIMER_REGISTER 0x0000a600
85
Lennert Buytenheka66098d2009-03-10 10:13:33 +010086#define MWL8K_A2H_EVENTS (MWL8K_A2H_INT_DUMMY | \
87 MWL8K_A2H_INT_CHNL_SWITCHED | \
88 MWL8K_A2H_INT_QUEUE_EMPTY | \
89 MWL8K_A2H_INT_RADAR_DETECT | \
90 MWL8K_A2H_INT_RADIO_ON | \
91 MWL8K_A2H_INT_RADIO_OFF | \
92 MWL8K_A2H_INT_MAC_EVENT | \
93 MWL8K_A2H_INT_OPC_DONE | \
94 MWL8K_A2H_INT_RX_READY | \
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -070095 MWL8K_A2H_INT_TX_DONE | \
96 MWL8K_A2H_INT_BA_WATCHDOG)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010097
Lennert Buytenheka66098d2009-03-10 10:13:33 +010098#define MWL8K_RX_QUEUES 1
Brian Cavagnoloe6007072011-03-17 11:58:44 -070099#define MWL8K_TX_WMM_QUEUES 4
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700100#define MWL8K_MAX_AMPDU_QUEUES 8
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700101#define MWL8K_MAX_TX_QUEUES (MWL8K_TX_WMM_QUEUES + MWL8K_MAX_AMPDU_QUEUES)
102#define mwl8k_tx_queues(priv) (MWL8K_TX_WMM_QUEUES + (priv)->num_ampdu_queues)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100103
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +0530104/* txpriorities are mapped with hw queues.
105 * Each hw queue has a txpriority.
106 */
107#define TOTAL_HW_TX_QUEUES 8
108
109/* Each HW queue can have one AMPDU stream.
110 * But, because one of the hw queue is reserved,
111 * maximum AMPDU queues that can be created are
112 * one short of total tx queues.
113 */
114#define MWL8K_NUM_AMPDU_STREAMS (TOTAL_HW_TX_QUEUES - 1)
115
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200116struct rxd_ops {
117 int rxd_size;
118 void (*rxd_init)(void *rxd, dma_addr_t next_dma_addr);
119 void (*rxd_refill)(void *rxd, dma_addr_t addr, int len);
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100120 int (*rxd_process)(void *rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -0400121 __le16 *qos, s8 *noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200122};
123
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200124struct mwl8k_device_info {
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200125 char *part_name;
126 char *helper_image;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800127 char *fw_image_sta;
128 char *fw_image_ap;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100129 struct rxd_ops *ap_rxd_ops;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -0800130 u32 fw_api_ap;
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200131};
132
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100133struct mwl8k_rx_queue {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200134 int rxd_count;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100135
136 /* hw receives here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200137 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100138
139 /* refill descs here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200140 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100141
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200142 void *rxd;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200143 dma_addr_t rxd_dma;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200144 struct {
145 struct sk_buff *skb;
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +0900146 DEFINE_DMA_UNMAP_ADDR(dma);
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200147 } *buf;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100148};
149
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100150struct mwl8k_tx_queue {
151 /* hw transmits here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200152 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100153
154 /* sw appends here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200155 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100156
Kalle Valo8ccbc3b2010-02-07 10:20:52 +0200157 unsigned int len;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200158 struct mwl8k_tx_desc *txd;
159 dma_addr_t txd_dma;
160 struct sk_buff **skb;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100161};
162
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700163enum {
164 AMPDU_NO_STREAM,
165 AMPDU_STREAM_NEW,
166 AMPDU_STREAM_IN_PROGRESS,
167 AMPDU_STREAM_ACTIVE,
168};
169
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700170struct mwl8k_ampdu_stream {
171 struct ieee80211_sta *sta;
172 u8 tid;
173 u8 state;
174 u8 idx;
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700175};
176
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100177struct mwl8k_priv {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100178 struct ieee80211_hw *hw;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100179 struct pci_dev *pdev;
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +0530180 int irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100181
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200182 struct mwl8k_device_info *device_info;
183
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100184 void __iomem *sram;
185 void __iomem *regs;
186
187 /* firmware */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800188 const struct firmware *fw_helper;
189 const struct firmware *fw_ucode;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100190
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100191 /* hardware/firmware parameters */
192 bool ap_fw;
193 struct rxd_ops *rxd_ops;
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100194 struct ieee80211_supported_band band_24;
195 struct ieee80211_channel channels_24[14];
196 struct ieee80211_rate rates_24[14];
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100197 struct ieee80211_supported_band band_50;
198 struct ieee80211_channel channels_50[4];
199 struct ieee80211_rate rates_50[9];
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100200 u32 ap_macids_supported;
201 u32 sta_macids_supported;
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100202
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700203 /* Ampdu stream information */
204 u8 num_ampdu_queues;
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700205 spinlock_t stream_lock;
206 struct mwl8k_ampdu_stream ampdu[MWL8K_MAX_AMPDU_QUEUES];
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700207 struct work_struct watchdog_ba_handle;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700208
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200209 /* firmware access */
210 struct mutex fw_mutex;
211 struct task_struct *fw_mutex_owner;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +0530212 struct task_struct *hw_restart_owner;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200213 int fw_mutex_depth;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200214 struct completion *hostcmd_wait;
215
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +0530216 atomic_t watchdog_event_pending;
217
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100218 /* lock held over TX and TX reap */
219 spinlock_t tx_lock;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100220
Lennert Buytenhek88de754a2009-10-22 20:19:37 +0200221 /* TX quiesce completion, protected by fw_mutex and tx_lock */
222 struct completion *tx_wait;
223
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100224 /* List of interfaces. */
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100225 u32 macids_used;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100226 struct list_head vif_list;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100227
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100228 /* power management status cookie from firmware */
229 u32 *cookie;
230 dma_addr_t cookie_dma;
231
232 u16 num_mcaddrs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100233 u8 hw_rev;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +0200234 u32 fw_rev;
Jonas Gorskic3f251a2013-03-11 17:44:21 +0100235 u32 caps;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100236
237 /*
238 * Running count of TX packets in flight, to avoid
239 * iterating over the transmit rings each time.
240 */
241 int pending_tx_pkts;
242
243 struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES];
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700244 struct mwl8k_tx_queue txq[MWL8K_MAX_TX_QUEUES];
245 u32 txq_offset[MWL8K_MAX_TX_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100246
Lennert Buytenhekc46563b2009-07-16 12:14:58 +0200247 bool radio_on;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +0200248 bool radio_short_preamble;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +0200249 bool sniffer_enabled;
Lennert Buytenhek0439b1f2009-07-16 12:34:02 +0200250 bool wmm_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100251
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100252 /* XXX need to convert this to handle multiple interfaces */
253 bool capture_beacon;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200254 u8 capture_bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100255 struct sk_buff *beacon_skb;
256
257 /*
258 * This FJ worker has to be global as it is scheduled from the
259 * RX handler. At this point we don't know which interface it
260 * belongs to until the list of bssids waiting to complete join
261 * is checked.
262 */
263 struct work_struct finalize_join_worker;
264
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +0100265 /* Tasklet to perform TX reclaim. */
266 struct tasklet_struct poll_tx_task;
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +0100267
268 /* Tasklet to perform RX. */
269 struct tasklet_struct poll_rx_task;
John W. Linville0d462bb2010-07-28 14:04:24 -0400270
271 /* Most recently reported noise in dBm */
272 s8 noise;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800273
274 /*
275 * preserve the queue configurations so they can be restored if/when
276 * the firmware image is swapped.
277 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700278 struct ieee80211_tx_queue_params wmm_params[MWL8K_TX_WMM_QUEUES];
Brian Cavagnolo99020472010-11-12 17:23:52 -0800279
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +0530280 /* To perform the task of reloading the firmware */
281 struct work_struct fw_reload;
282 bool hw_restart_in_progress;
283
Brian Cavagnolo99020472010-11-12 17:23:52 -0800284 /* async firmware loading state */
285 unsigned fw_state;
286 char *fw_pref;
287 char *fw_alt;
Nishant Sarmukadam98929822013-03-01 17:13:01 +0530288 bool is_8764;
Brian Cavagnolo99020472010-11-12 17:23:52 -0800289 struct completion firmware_loading_complete;
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +0530290
291 /* bitmap of running BSSes */
292 u32 running_bsses;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100293};
294
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800295#define MAX_WEP_KEY_LEN 13
296#define NUM_WEP_KEYS 4
297
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100298/* Per interface specific private data */
299struct mwl8k_vif {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100300 struct list_head list;
301 struct ieee80211_vif *vif;
302
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100303 /* Firmware macid for this vif. */
304 int macid;
305
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +0100306 /* Non AMPDU sequence number assigned by driver. */
Lennert Buytenheka6804002010-01-04 21:55:42 +0100307 u16 seqno;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800308
309 /* Saved WEP keys */
310 struct {
311 u8 enabled;
312 u8 key[sizeof(struct ieee80211_key_conf) + MAX_WEP_KEY_LEN];
313 } wep_key_conf[NUM_WEP_KEYS];
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800314
315 /* BSSID */
316 u8 bssid[ETH_ALEN];
317
318 /* A flag to indicate is HW crypto is enabled for this bssid */
319 bool is_hw_crypto_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100320};
Lennert Buytenheka94cc972009-08-03 21:58:57 +0200321#define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv))
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800322#define IEEE80211_KEY_CONF(_u8) ((struct ieee80211_key_conf *)(_u8))
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100323
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700324struct tx_traffic_info {
325 u32 start_time;
326 u32 pkts;
327};
328
329#define MWL8K_MAX_TID 8
Lennert Buytenheka6804002010-01-04 21:55:42 +0100330struct mwl8k_sta {
331 /* Index into station database. Returned by UPDATE_STADB. */
332 u8 peer_id;
Nishant Sarmukadam170335432011-03-17 11:58:48 -0700333 u8 is_ampdu_allowed;
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700334 struct tx_traffic_info tx_stats[MWL8K_MAX_TID];
Lennert Buytenheka6804002010-01-04 21:55:42 +0100335};
336#define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv))
337
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100338static const struct ieee80211_channel mwl8k_channels_24[] = {
Jonas Gorskid786f672013-02-08 16:07:25 +0100339 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2412, .hw_value = 1, },
340 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2417, .hw_value = 2, },
341 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2422, .hw_value = 3, },
342 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2427, .hw_value = 4, },
343 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2432, .hw_value = 5, },
344 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2437, .hw_value = 6, },
345 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2442, .hw_value = 7, },
346 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2447, .hw_value = 8, },
347 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2452, .hw_value = 9, },
348 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2457, .hw_value = 10, },
349 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2462, .hw_value = 11, },
350 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2467, .hw_value = 12, },
351 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2472, .hw_value = 13, },
352 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2484, .hw_value = 14, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100353};
354
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100355static const struct ieee80211_rate mwl8k_rates_24[] = {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100356 { .bitrate = 10, .hw_value = 2, },
357 { .bitrate = 20, .hw_value = 4, },
358 { .bitrate = 55, .hw_value = 11, },
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200359 { .bitrate = 110, .hw_value = 22, },
360 { .bitrate = 220, .hw_value = 44, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100361 { .bitrate = 60, .hw_value = 12, },
362 { .bitrate = 90, .hw_value = 18, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100363 { .bitrate = 120, .hw_value = 24, },
364 { .bitrate = 180, .hw_value = 36, },
365 { .bitrate = 240, .hw_value = 48, },
366 { .bitrate = 360, .hw_value = 72, },
367 { .bitrate = 480, .hw_value = 96, },
368 { .bitrate = 540, .hw_value = 108, },
Lennert Buytenhek140eb5e2009-11-30 18:11:44 +0100369 { .bitrate = 720, .hw_value = 144, },
370};
371
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100372static const struct ieee80211_channel mwl8k_channels_50[] = {
Jonas Gorskid786f672013-02-08 16:07:25 +0100373 { .band = IEEE80211_BAND_5GHZ, .center_freq = 5180, .hw_value = 36, },
374 { .band = IEEE80211_BAND_5GHZ, .center_freq = 5200, .hw_value = 40, },
375 { .band = IEEE80211_BAND_5GHZ, .center_freq = 5220, .hw_value = 44, },
376 { .band = IEEE80211_BAND_5GHZ, .center_freq = 5240, .hw_value = 48, },
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100377};
378
379static const struct ieee80211_rate mwl8k_rates_50[] = {
380 { .bitrate = 60, .hw_value = 12, },
381 { .bitrate = 90, .hw_value = 18, },
382 { .bitrate = 120, .hw_value = 24, },
383 { .bitrate = 180, .hw_value = 36, },
384 { .bitrate = 240, .hw_value = 48, },
385 { .bitrate = 360, .hw_value = 72, },
386 { .bitrate = 480, .hw_value = 96, },
387 { .bitrate = 540, .hw_value = 108, },
388 { .bitrate = 720, .hw_value = 144, },
389};
390
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100391/* Set or get info from Firmware */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100392#define MWL8K_CMD_GET 0x0000
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800393#define MWL8K_CMD_SET 0x0001
394#define MWL8K_CMD_SET_LIST 0x0002
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100395
396/* Firmware command codes */
397#define MWL8K_CMD_CODE_DNLD 0x0001
398#define MWL8K_CMD_GET_HW_SPEC 0x0003
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200399#define MWL8K_CMD_SET_HW_SPEC 0x0004
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100400#define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010
401#define MWL8K_CMD_GET_STAT 0x0014
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200402#define MWL8K_CMD_RADIO_CONTROL 0x001c
403#define MWL8K_CMD_RF_TX_POWER 0x001e
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800404#define MWL8K_CMD_TX_POWER 0x001f
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200405#define MWL8K_CMD_RF_ANTENNA 0x0020
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100406#define MWL8K_CMD_SET_BEACON 0x0100 /* per-vif */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100407#define MWL8K_CMD_SET_PRE_SCAN 0x0107
408#define MWL8K_CMD_SET_POST_SCAN 0x0108
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200409#define MWL8K_CMD_SET_RF_CHANNEL 0x010a
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100410#define MWL8K_CMD_SET_AID 0x010d
411#define MWL8K_CMD_SET_RATE 0x0110
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200412#define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100413#define MWL8K_CMD_RTS_THRESHOLD 0x0113
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200414#define MWL8K_CMD_SET_SLOT 0x0114
415#define MWL8K_CMD_SET_EDCA_PARAMS 0x0115
416#define MWL8K_CMD_SET_WMM_MODE 0x0123
417#define MWL8K_CMD_MIMO_CONFIG 0x0125
418#define MWL8K_CMD_USE_FIXED_RATE 0x0126
419#define MWL8K_CMD_ENABLE_SNIFFER 0x0150
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100420#define MWL8K_CMD_SET_MAC_ADDR 0x0202 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200421#define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700422#define MWL8K_CMD_GET_WATCHDOG_BITMAP 0x0205
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +0530423#define MWL8K_CMD_DEL_MAC_ADDR 0x0206 /* per-vif */
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100424#define MWL8K_CMD_BSS_START 0x1100 /* per-vif */
425#define MWL8K_CMD_SET_NEW_STN 0x1111 /* per-vif */
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800426#define MWL8K_CMD_UPDATE_ENCRYPTION 0x1122 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200427#define MWL8K_CMD_UPDATE_STADB 0x1123
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700428#define MWL8K_CMD_BASTREAM 0x1125
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100429
John W. Linvilleb6037422010-07-20 13:55:00 -0400430static const char *mwl8k_cmd_name(__le16 cmd, char *buf, int bufsize)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100431{
John W. Linvilleb6037422010-07-20 13:55:00 -0400432 u16 command = le16_to_cpu(cmd);
433
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100434#define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\
435 snprintf(buf, bufsize, "%s", #x);\
436 return buf;\
437 } while (0)
John W. Linvilleb6037422010-07-20 13:55:00 -0400438 switch (command & ~0x8000) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100439 MWL8K_CMDNAME(CODE_DNLD);
440 MWL8K_CMDNAME(GET_HW_SPEC);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200441 MWL8K_CMDNAME(SET_HW_SPEC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100442 MWL8K_CMDNAME(MAC_MULTICAST_ADR);
443 MWL8K_CMDNAME(GET_STAT);
444 MWL8K_CMDNAME(RADIO_CONTROL);
445 MWL8K_CMDNAME(RF_TX_POWER);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800446 MWL8K_CMDNAME(TX_POWER);
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200447 MWL8K_CMDNAME(RF_ANTENNA);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100448 MWL8K_CMDNAME(SET_BEACON);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100449 MWL8K_CMDNAME(SET_PRE_SCAN);
450 MWL8K_CMDNAME(SET_POST_SCAN);
451 MWL8K_CMDNAME(SET_RF_CHANNEL);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100452 MWL8K_CMDNAME(SET_AID);
453 MWL8K_CMDNAME(SET_RATE);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200454 MWL8K_CMDNAME(SET_FINALIZE_JOIN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100455 MWL8K_CMDNAME(RTS_THRESHOLD);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200456 MWL8K_CMDNAME(SET_SLOT);
457 MWL8K_CMDNAME(SET_EDCA_PARAMS);
458 MWL8K_CMDNAME(SET_WMM_MODE);
459 MWL8K_CMDNAME(MIMO_CONFIG);
460 MWL8K_CMDNAME(USE_FIXED_RATE);
461 MWL8K_CMDNAME(ENABLE_SNIFFER);
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200462 MWL8K_CMDNAME(SET_MAC_ADDR);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200463 MWL8K_CMDNAME(SET_RATEADAPT_MODE);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100464 MWL8K_CMDNAME(BSS_START);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +0100465 MWL8K_CMDNAME(SET_NEW_STN);
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800466 MWL8K_CMDNAME(UPDATE_ENCRYPTION);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200467 MWL8K_CMDNAME(UPDATE_STADB);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700468 MWL8K_CMDNAME(BASTREAM);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700469 MWL8K_CMDNAME(GET_WATCHDOG_BITMAP);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100470 default:
471 snprintf(buf, bufsize, "0x%x", cmd);
472 }
473#undef MWL8K_CMDNAME
474
475 return buf;
476}
477
478/* Hardware and firmware reset */
479static void mwl8k_hw_reset(struct mwl8k_priv *priv)
480{
481 iowrite32(MWL8K_H2A_INT_RESET,
482 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
483 iowrite32(MWL8K_H2A_INT_RESET,
484 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
485 msleep(20);
486}
487
488/* Release fw image */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800489static void mwl8k_release_fw(const struct firmware **fw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100490{
491 if (*fw == NULL)
492 return;
493 release_firmware(*fw);
494 *fw = NULL;
495}
496
497static void mwl8k_release_firmware(struct mwl8k_priv *priv)
498{
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100499 mwl8k_release_fw(&priv->fw_ucode);
500 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100501}
502
Brian Cavagnolo99020472010-11-12 17:23:52 -0800503/* states for asynchronous f/w loading */
504static void mwl8k_fw_state_machine(const struct firmware *fw, void *context);
505enum {
506 FW_STATE_INIT = 0,
507 FW_STATE_LOADING_PREF,
508 FW_STATE_LOADING_ALT,
509 FW_STATE_ERROR,
510};
511
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100512/* Request fw image */
513static int mwl8k_request_fw(struct mwl8k_priv *priv,
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800514 const char *fname, const struct firmware **fw,
Brian Cavagnolo99020472010-11-12 17:23:52 -0800515 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100516{
517 /* release current image */
518 if (*fw != NULL)
519 mwl8k_release_fw(fw);
520
Brian Cavagnolo99020472010-11-12 17:23:52 -0800521 if (nowait)
522 return request_firmware_nowait(THIS_MODULE, 1, fname,
523 &priv->pdev->dev, GFP_KERNEL,
524 priv, mwl8k_fw_state_machine);
525 else
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800526 return request_firmware(fw, fname, &priv->pdev->dev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100527}
528
Brian Cavagnolo99020472010-11-12 17:23:52 -0800529static int mwl8k_request_firmware(struct mwl8k_priv *priv, char *fw_image,
530 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100531{
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200532 struct mwl8k_device_info *di = priv->device_info;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100533 int rc;
534
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200535 if (di->helper_image != NULL) {
Brian Cavagnolo99020472010-11-12 17:23:52 -0800536 if (nowait)
537 rc = mwl8k_request_fw(priv, di->helper_image,
538 &priv->fw_helper, true);
539 else
540 rc = mwl8k_request_fw(priv, di->helper_image,
541 &priv->fw_helper, false);
542 if (rc)
543 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
544 pci_name(priv->pdev), di->helper_image);
545
546 if (rc || nowait)
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200547 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100548 }
549
Brian Cavagnolo99020472010-11-12 17:23:52 -0800550 if (nowait) {
551 /*
552 * if we get here, no helper image is needed. Skip the
553 * FW_STATE_INIT state.
554 */
555 priv->fw_state = FW_STATE_LOADING_PREF;
556 rc = mwl8k_request_fw(priv, fw_image,
557 &priv->fw_ucode,
558 true);
559 } else
560 rc = mwl8k_request_fw(priv, fw_image,
561 &priv->fw_ucode, false);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100562 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200563 printk(KERN_ERR "%s: Error requesting firmware file %s\n",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800564 pci_name(priv->pdev), fw_image);
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100565 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100566 return rc;
567 }
568
569 return 0;
570}
571
572struct mwl8k_cmd_pkt {
573 __le16 code;
574 __le16 length;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100575 __u8 seq_num;
576 __u8 macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100577 __le16 result;
578 char payload[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000579} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100580
581/*
582 * Firmware loading.
583 */
584static int
585mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length)
586{
587 void __iomem *regs = priv->regs;
588 dma_addr_t dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100589 int loops;
590
591 dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE);
592 if (pci_dma_mapping_error(priv->pdev, dma_addr))
593 return -ENOMEM;
594
595 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
596 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
597 iowrite32(MWL8K_H2A_INT_DOORBELL,
598 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
599 iowrite32(MWL8K_H2A_INT_DUMMY,
600 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
601
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100602 loops = 1000;
603 do {
604 u32 int_code;
Nishant Sarmukadam98929822013-03-01 17:13:01 +0530605 if (priv->is_8764) {
606 int_code = ioread32(regs +
607 MWL8K_HIU_H2A_INTERRUPT_STATUS);
608 if (int_code == 0)
609 break;
610 } else {
611 int_code = ioread32(regs + MWL8K_HIU_INT_CODE);
612 if (int_code == MWL8K_INT_CODE_CMD_FINISHED) {
613 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
614 break;
615 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100616 }
Lennert Buytenhek3d76e822009-10-22 20:20:16 +0200617 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100618 udelay(1);
619 } while (--loops);
620
621 pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE);
622
Lennert Buytenhekd4b70572009-07-16 12:44:45 +0200623 return loops ? 0 : -ETIMEDOUT;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100624}
625
626static int mwl8k_load_fw_image(struct mwl8k_priv *priv,
627 const u8 *data, size_t length)
628{
629 struct mwl8k_cmd_pkt *cmd;
630 int done;
631 int rc = 0;
632
633 cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL);
634 if (cmd == NULL)
635 return -ENOMEM;
636
637 cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD);
638 cmd->seq_num = 0;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100639 cmd->macid = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100640 cmd->result = 0;
641
642 done = 0;
643 while (length) {
644 int block_size = length > 256 ? 256 : length;
645
646 memcpy(cmd->payload, data + done, block_size);
647 cmd->length = cpu_to_le16(block_size);
648
649 rc = mwl8k_send_fw_load_cmd(priv, cmd,
650 sizeof(*cmd) + block_size);
651 if (rc)
652 break;
653
654 done += block_size;
655 length -= block_size;
656 }
657
658 if (!rc) {
659 cmd->length = 0;
660 rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd));
661 }
662
663 kfree(cmd);
664
665 return rc;
666}
667
668static int mwl8k_feed_fw_image(struct mwl8k_priv *priv,
669 const u8 *data, size_t length)
670{
671 unsigned char *buffer;
672 int may_continue, rc = 0;
673 u32 done, prev_block_size;
674
675 buffer = kmalloc(1024, GFP_KERNEL);
676 if (buffer == NULL)
677 return -ENOMEM;
678
679 done = 0;
680 prev_block_size = 0;
681 may_continue = 1000;
682 while (may_continue > 0) {
683 u32 block_size;
684
685 block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH);
686 if (block_size & 1) {
687 block_size &= ~1;
688 may_continue--;
689 } else {
690 done += prev_block_size;
691 length -= prev_block_size;
692 }
693
694 if (block_size > 1024 || block_size > length) {
695 rc = -EOVERFLOW;
696 break;
697 }
698
699 if (length == 0) {
700 rc = 0;
701 break;
702 }
703
704 if (block_size == 0) {
705 rc = -EPROTO;
706 may_continue--;
707 udelay(1);
708 continue;
709 }
710
711 prev_block_size = block_size;
712 memcpy(buffer, data + done, block_size);
713
714 rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size);
715 if (rc)
716 break;
717 }
718
719 if (!rc && length != 0)
720 rc = -EREMOTEIO;
721
722 kfree(buffer);
723
724 return rc;
725}
726
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200727static int mwl8k_load_firmware(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100728{
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200729 struct mwl8k_priv *priv = hw->priv;
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800730 const struct firmware *fw = priv->fw_ucode;
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200731 int rc;
732 int loops;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100733
Nishant Sarmukadam98929822013-03-01 17:13:01 +0530734 if (!memcmp(fw->data, "\x01\x00\x00\x00", 4) && !priv->is_8764) {
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800735 const struct firmware *helper = priv->fw_helper;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100736
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200737 if (helper == NULL) {
738 printk(KERN_ERR "%s: helper image needed but none "
739 "given\n", pci_name(priv->pdev));
740 return -EINVAL;
741 }
742
743 rc = mwl8k_load_fw_image(priv, helper->data, helper->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100744 if (rc) {
745 printk(KERN_ERR "%s: unable to load firmware "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200746 "helper image\n", pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100747 return rc;
748 }
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +0530749 msleep(20);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100750
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200751 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100752 } else {
Nishant Sarmukadam98929822013-03-01 17:13:01 +0530753 if (priv->is_8764)
754 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
755 else
756 rc = mwl8k_load_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100757 }
758
759 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200760 printk(KERN_ERR "%s: unable to load firmware image\n",
761 pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100762 return rc;
763 }
764
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100765 iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100766
Lennert Buytenhek89b872e2009-11-30 18:13:20 +0100767 loops = 500000;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100768 do {
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200769 u32 ready_code;
770
771 ready_code = ioread32(priv->regs + MWL8K_HIU_INT_CODE);
772 if (ready_code == MWL8K_FWAP_READY) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000773 priv->ap_fw = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100774 break;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200775 } else if (ready_code == MWL8K_FWSTA_READY) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000776 priv->ap_fw = false;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200777 break;
778 }
779
780 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100781 udelay(1);
782 } while (--loops);
783
784 return loops ? 0 : -ETIMEDOUT;
785}
786
787
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100788/* DMA header used by firmware and hardware. */
789struct mwl8k_dma_data {
790 __le16 fwlen;
791 struct ieee80211_hdr wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100792 char data[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000793} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100794
795/* Routines to add/remove DMA header from skb. */
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100796static inline void mwl8k_remove_dma_header(struct sk_buff *skb, __le16 qos)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100797{
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100798 struct mwl8k_dma_data *tr;
799 int hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100800
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100801 tr = (struct mwl8k_dma_data *)skb->data;
802 hdrlen = ieee80211_hdrlen(tr->wh.frame_control);
803
804 if (hdrlen != sizeof(tr->wh)) {
805 if (ieee80211_is_data_qos(tr->wh.frame_control)) {
806 memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2);
807 *((__le16 *)(tr->data - 2)) = qos;
808 } else {
809 memmove(tr->data - hdrlen, &tr->wh, hdrlen);
810 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100811 }
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100812
813 if (hdrlen != sizeof(*tr))
814 skb_pull(skb, sizeof(*tr) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100815}
816
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530817#define REDUCED_TX_HEADROOM 8
818
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800819static void
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530820mwl8k_add_dma_header(struct mwl8k_priv *priv, struct sk_buff *skb,
821 int head_pad, int tail_pad)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100822{
823 struct ieee80211_hdr *wh;
Lennert Buytenhekca009302009-11-30 18:12:20 +0100824 int hdrlen;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800825 int reqd_hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100826 struct mwl8k_dma_data *tr;
827
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100828 /*
Lennert Buytenhekca009302009-11-30 18:12:20 +0100829 * Add a firmware DMA header; the firmware requires that we
830 * present a 2-byte payload length followed by a 4-address
831 * header (without QoS field), followed (optionally) by any
832 * WEP/ExtIV header (but only filled in for CCMP).
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100833 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100834 wh = (struct ieee80211_hdr *)skb->data;
835
836 hdrlen = ieee80211_hdrlen(wh->frame_control);
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530837
838 /*
839 * Check if skb_resize is required because of
840 * tx_headroom adjustment.
841 */
842 if (priv->ap_fw && (hdrlen < (sizeof(struct ieee80211_cts)
843 + REDUCED_TX_HEADROOM))) {
844 if (pskb_expand_head(skb, REDUCED_TX_HEADROOM, 0, GFP_ATOMIC)) {
845
846 wiphy_err(priv->hw->wiphy,
847 "Failed to reallocate TX buffer\n");
848 return;
849 }
850 skb->truesize += REDUCED_TX_HEADROOM;
851 }
852
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530853 reqd_hdrlen = sizeof(*tr) + head_pad;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800854
855 if (hdrlen != reqd_hdrlen)
856 skb_push(skb, reqd_hdrlen - hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100857
858 if (ieee80211_is_data_qos(wh->frame_control))
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800859 hdrlen -= IEEE80211_QOS_CTL_LEN;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100860
861 tr = (struct mwl8k_dma_data *)skb->data;
862 if (wh != &tr->wh)
863 memmove(&tr->wh, wh, hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100864 if (hdrlen != sizeof(tr->wh))
865 memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100866
867 /*
868 * Firmware length is the length of the fully formed "802.11
869 * payload". That is, everything except for the 802.11 header.
870 * This includes all crypto material including the MIC.
871 */
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800872 tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr) + tail_pad);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100873}
874
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530875static void mwl8k_encapsulate_tx_frame(struct mwl8k_priv *priv,
876 struct sk_buff *skb)
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800877{
878 struct ieee80211_hdr *wh;
879 struct ieee80211_tx_info *tx_info;
880 struct ieee80211_key_conf *key_conf;
881 int data_pad;
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530882 int head_pad = 0;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800883
884 wh = (struct ieee80211_hdr *)skb->data;
885
886 tx_info = IEEE80211_SKB_CB(skb);
887
888 key_conf = NULL;
889 if (ieee80211_is_data(wh->frame_control))
890 key_conf = tx_info->control.hw_key;
891
892 /*
893 * Make sure the packet header is in the DMA header format (4-address
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530894 * without QoS), and add head & tail padding when HW crypto is enabled.
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800895 *
896 * We have the following trailer padding requirements:
897 * - WEP: 4 trailer bytes (ICV)
898 * - TKIP: 12 trailer bytes (8 MIC + 4 ICV)
899 * - CCMP: 8 trailer bytes (MIC)
900 */
901 data_pad = 0;
902 if (key_conf != NULL) {
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530903 head_pad = key_conf->iv_len;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800904 switch (key_conf->cipher) {
905 case WLAN_CIPHER_SUITE_WEP40:
906 case WLAN_CIPHER_SUITE_WEP104:
907 data_pad = 4;
908 break;
909 case WLAN_CIPHER_SUITE_TKIP:
910 data_pad = 12;
911 break;
912 case WLAN_CIPHER_SUITE_CCMP:
913 data_pad = 8;
914 break;
915 }
916 }
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530917 mwl8k_add_dma_header(priv, skb, head_pad, data_pad);
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800918}
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100919
920/*
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530921 * Packet reception for 88w8366/88w8764 AP firmware.
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200922 */
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530923struct mwl8k_rxd_ap {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200924 __le16 pkt_len;
925 __u8 sq2;
926 __u8 rate;
927 __le32 pkt_phys_addr;
928 __le32 next_rxd_phys_addr;
929 __le16 qos_control;
930 __le16 htsig2;
931 __le32 hw_rssi_info;
932 __le32 hw_noise_floor_info;
933 __u8 noise_floor;
934 __u8 pad0[3];
935 __u8 rssi;
936 __u8 rx_status;
937 __u8 channel;
938 __u8 rx_ctrl;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000939} __packed;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200940
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530941#define MWL8K_AP_RATE_INFO_MCS_FORMAT 0x80
942#define MWL8K_AP_RATE_INFO_40MHZ 0x40
943#define MWL8K_AP_RATE_INFO_RATEID(x) ((x) & 0x3f)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100944
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530945#define MWL8K_AP_RX_CTRL_OWNED_BY_HOST 0x80
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200946
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530947/* 8366/8764 AP rx_status bits */
948#define MWL8K_AP_RXSTAT_DECRYPT_ERR_MASK 0x80
949#define MWL8K_AP_RXSTAT_GENERAL_DECRYPT_ERR 0xFF
950#define MWL8K_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR 0x02
951#define MWL8K_AP_RXSTAT_WEP_DECRYPT_ICV_ERR 0x04
952#define MWL8K_AP_RXSTAT_TKIP_DECRYPT_ICV_ERR 0x08
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800953
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530954static void mwl8k_rxd_ap_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200955{
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530956 struct mwl8k_rxd_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200957
958 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530959 rxd->rx_ctrl = MWL8K_AP_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200960}
961
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530962static void mwl8k_rxd_ap_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200963{
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530964 struct mwl8k_rxd_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200965
966 rxd->pkt_len = cpu_to_le16(len);
967 rxd->pkt_phys_addr = cpu_to_le32(addr);
968 wmb();
969 rxd->rx_ctrl = 0;
970}
971
972static int
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530973mwl8k_rxd_ap_process(void *_rxd, struct ieee80211_rx_status *status,
974 __le16 *qos, s8 *noise)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200975{
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530976 struct mwl8k_rxd_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200977
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530978 if (!(rxd->rx_ctrl & MWL8K_AP_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200979 return -1;
980 rmb();
981
982 memset(status, 0, sizeof(*status));
983
984 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -0400985 *noise = -rxd->noise_floor;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200986
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530987 if (rxd->rate & MWL8K_AP_RATE_INFO_MCS_FORMAT) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200988 status->flag |= RX_FLAG_HT;
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530989 if (rxd->rate & MWL8K_AP_RATE_INFO_40MHZ)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100990 status->flag |= RX_FLAG_40MHZ;
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530991 status->rate_idx = MWL8K_AP_RATE_INFO_RATEID(rxd->rate);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200992 } else {
993 int i;
994
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100995 for (i = 0; i < ARRAY_SIZE(mwl8k_rates_24); i++) {
996 if (mwl8k_rates_24[i].hw_value == rxd->rate) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200997 status->rate_idx = i;
998 break;
999 }
1000 }
1001 }
1002
Lennert Buytenhek85478342010-01-12 13:48:56 +01001003 if (rxd->channel > 14) {
1004 status->band = IEEE80211_BAND_5GHZ;
1005 if (!(status->flag & RX_FLAG_HT))
1006 status->rate_idx -= 5;
1007 } else {
1008 status->band = IEEE80211_BAND_2GHZ;
1009 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001010 status->freq = ieee80211_channel_to_frequency(rxd->channel,
1011 status->band);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001012
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001013 *qos = rxd->qos_control;
1014
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +05301015 if ((rxd->rx_status != MWL8K_AP_RXSTAT_GENERAL_DECRYPT_ERR) &&
1016 (rxd->rx_status & MWL8K_AP_RXSTAT_DECRYPT_ERR_MASK) &&
1017 (rxd->rx_status & MWL8K_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR))
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001018 status->flag |= RX_FLAG_MMIC_ERROR;
1019
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001020 return le16_to_cpu(rxd->pkt_len);
1021}
1022
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +05301023static struct rxd_ops rxd_ap_ops = {
1024 .rxd_size = sizeof(struct mwl8k_rxd_ap),
1025 .rxd_init = mwl8k_rxd_ap_init,
1026 .rxd_refill = mwl8k_rxd_ap_refill,
1027 .rxd_process = mwl8k_rxd_ap_process,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001028};
1029
1030/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001031 * Packet reception for STA firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001032 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001033struct mwl8k_rxd_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001034 __le16 pkt_len;
1035 __u8 link_quality;
1036 __u8 noise_level;
1037 __le32 pkt_phys_addr;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001038 __le32 next_rxd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001039 __le16 qos_control;
1040 __le16 rate_info;
1041 __le32 pad0[4];
1042 __u8 rssi;
1043 __u8 channel;
1044 __le16 pad1;
1045 __u8 rx_ctrl;
1046 __u8 rx_status;
1047 __u8 pad2[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +00001048} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001049
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001050#define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000
1051#define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3)
1052#define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f)
1053#define MWL8K_STA_RATE_INFO_40MHZ 0x0004
1054#define MWL8K_STA_RATE_INFO_SHORTGI 0x0002
1055#define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001056
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001057#define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001058#define MWL8K_STA_RX_CTRL_DECRYPT_ERROR 0x04
1059/* ICV=0 or MIC=1 */
1060#define MWL8K_STA_RX_CTRL_DEC_ERR_TYPE 0x08
1061/* Key is uploaded only in failure case */
1062#define MWL8K_STA_RX_CTRL_KEY_INDEX 0x30
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001063
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001064static void mwl8k_rxd_sta_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001065{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001066 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001067
1068 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001069 rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001070}
1071
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001072static void mwl8k_rxd_sta_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001073{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001074 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001075
1076 rxd->pkt_len = cpu_to_le16(len);
1077 rxd->pkt_phys_addr = cpu_to_le32(addr);
1078 wmb();
1079 rxd->rx_ctrl = 0;
1080}
1081
1082static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001083mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -04001084 __le16 *qos, s8 *noise)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001085{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001086 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001087 u16 rate_info;
1088
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001089 if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001090 return -1;
1091 rmb();
1092
1093 rate_info = le16_to_cpu(rxd->rate_info);
1094
1095 memset(status, 0, sizeof(*status));
1096
1097 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -04001098 *noise = -rxd->noise_level;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001099 status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info);
1100 status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001101
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001102 if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001103 status->flag |= RX_FLAG_SHORTPRE;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001104 if (rate_info & MWL8K_STA_RATE_INFO_40MHZ)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001105 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001106 if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001107 status->flag |= RX_FLAG_SHORT_GI;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001108 if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001109 status->flag |= RX_FLAG_HT;
1110
Lennert Buytenhek85478342010-01-12 13:48:56 +01001111 if (rxd->channel > 14) {
1112 status->band = IEEE80211_BAND_5GHZ;
1113 if (!(status->flag & RX_FLAG_HT))
1114 status->rate_idx -= 5;
1115 } else {
1116 status->band = IEEE80211_BAND_2GHZ;
1117 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001118 status->freq = ieee80211_channel_to_frequency(rxd->channel,
1119 status->band);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001120
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001121 *qos = rxd->qos_control;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001122 if ((rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DECRYPT_ERROR) &&
1123 (rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DEC_ERR_TYPE))
1124 status->flag |= RX_FLAG_MMIC_ERROR;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001125
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001126 return le16_to_cpu(rxd->pkt_len);
1127}
1128
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001129static struct rxd_ops rxd_sta_ops = {
1130 .rxd_size = sizeof(struct mwl8k_rxd_sta),
1131 .rxd_init = mwl8k_rxd_sta_init,
1132 .rxd_refill = mwl8k_rxd_sta_refill,
1133 .rxd_process = mwl8k_rxd_sta_process,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001134};
1135
1136
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001137#define MWL8K_RX_DESCS 256
1138#define MWL8K_RX_MAXSZ 3800
1139
1140static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
1141{
1142 struct mwl8k_priv *priv = hw->priv;
1143 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1144 int size;
1145 int i;
1146
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001147 rxq->rxd_count = 0;
1148 rxq->head = 0;
1149 rxq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001150
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001151 size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001152
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001153 rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma);
1154 if (rxq->rxd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001155 wiphy_err(hw->wiphy, "failed to alloc RX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001156 return -ENOMEM;
1157 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001158 memset(rxq->rxd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001159
Shan Weib9ede5f2011-03-08 11:02:03 +08001160 rxq->buf = kcalloc(MWL8K_RX_DESCS, sizeof(*rxq->buf), GFP_KERNEL);
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001161 if (rxq->buf == NULL) {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001162 pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001163 return -ENOMEM;
1164 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001165
1166 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001167 int desc_size;
1168 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001169 int nexti;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001170 dma_addr_t next_dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001171
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001172 desc_size = priv->rxd_ops->rxd_size;
1173 rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001174
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001175 nexti = i + 1;
1176 if (nexti == MWL8K_RX_DESCS)
1177 nexti = 0;
1178 next_dma_addr = rxq->rxd_dma + (nexti * desc_size);
1179
1180 priv->rxd_ops->rxd_init(rxd, next_dma_addr);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001181 }
1182
1183 return 0;
1184}
1185
1186static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
1187{
1188 struct mwl8k_priv *priv = hw->priv;
1189 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1190 int refilled;
1191
1192 refilled = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001193 while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001194 struct sk_buff *skb;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001195 dma_addr_t addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001196 int rx;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001197 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001198
1199 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
1200 if (skb == NULL)
1201 break;
1202
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001203 addr = pci_map_single(priv->pdev, skb->data,
1204 MWL8K_RX_MAXSZ, DMA_FROM_DEVICE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001205
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001206 rxq->rxd_count++;
1207 rx = rxq->tail++;
1208 if (rxq->tail == MWL8K_RX_DESCS)
1209 rxq->tail = 0;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001210 rxq->buf[rx].skb = skb;
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001211 dma_unmap_addr_set(&rxq->buf[rx], dma, addr);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001212
1213 rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size);
1214 priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001215
1216 refilled++;
1217 }
1218
1219 return refilled;
1220}
1221
1222/* Must be called only when the card's reception is completely halted */
1223static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
1224{
1225 struct mwl8k_priv *priv = hw->priv;
1226 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1227 int i;
1228
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001229 if (rxq->rxd == NULL)
1230 return;
1231
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001232 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001233 if (rxq->buf[i].skb != NULL) {
1234 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001235 dma_unmap_addr(&rxq->buf[i], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001236 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001237 dma_unmap_addr_set(&rxq->buf[i], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001238
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001239 kfree_skb(rxq->buf[i].skb);
1240 rxq->buf[i].skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001241 }
1242 }
1243
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001244 kfree(rxq->buf);
1245 rxq->buf = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001246
1247 pci_free_consistent(priv->pdev,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001248 MWL8K_RX_DESCS * priv->rxd_ops->rxd_size,
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001249 rxq->rxd, rxq->rxd_dma);
1250 rxq->rxd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001251}
1252
1253
1254/*
1255 * Scan a list of BSSIDs to process for finalize join.
1256 * Allows for extension to process multiple BSSIDs.
1257 */
1258static inline int
1259mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
1260{
1261 return priv->capture_beacon &&
1262 ieee80211_is_beacon(wh->frame_control) &&
Joe Perches2e42e472012-05-09 17:17:46 +00001263 ether_addr_equal(wh->addr3, priv->capture_bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001264}
1265
Lennert Buytenhek37797522009-10-22 20:19:45 +02001266static inline void mwl8k_save_beacon(struct ieee80211_hw *hw,
1267 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001268{
Lennert Buytenhek37797522009-10-22 20:19:45 +02001269 struct mwl8k_priv *priv = hw->priv;
1270
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001271 priv->capture_beacon = false;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001272 memset(priv->capture_bssid, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001273
1274 /*
1275 * Use GFP_ATOMIC as rxq_process is called from
1276 * the primary interrupt handler, memory allocation call
1277 * must not sleep.
1278 */
1279 priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
1280 if (priv->beacon_skb != NULL)
Lennert Buytenhek37797522009-10-22 20:19:45 +02001281 ieee80211_queue_work(hw, &priv->finalize_join_worker);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001282}
1283
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001284static inline struct mwl8k_vif *mwl8k_find_vif_bss(struct list_head *vif_list,
1285 u8 *bssid)
1286{
1287 struct mwl8k_vif *mwl8k_vif;
1288
1289 list_for_each_entry(mwl8k_vif,
1290 vif_list, list) {
1291 if (memcmp(bssid, mwl8k_vif->bssid,
1292 ETH_ALEN) == 0)
1293 return mwl8k_vif;
1294 }
1295
1296 return NULL;
1297}
1298
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001299static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
1300{
1301 struct mwl8k_priv *priv = hw->priv;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001302 struct mwl8k_vif *mwl8k_vif = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001303 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1304 int processed;
1305
1306 processed = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001307 while (rxq->rxd_count && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001308 struct sk_buff *skb;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001309 void *rxd;
1310 int pkt_len;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001311 struct ieee80211_rx_status status;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001312 struct ieee80211_hdr *wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001313 __le16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001314
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001315 skb = rxq->buf[rxq->head].skb;
Lennert Buytenhekd25f9f12009-08-03 21:58:26 +02001316 if (skb == NULL)
1317 break;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001318
1319 rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size);
1320
John W. Linville0d462bb2010-07-28 14:04:24 -04001321 pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos,
1322 &priv->noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001323 if (pkt_len < 0)
1324 break;
1325
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001326 rxq->buf[rxq->head].skb = NULL;
1327
1328 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001329 dma_unmap_addr(&rxq->buf[rxq->head], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001330 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001331 dma_unmap_addr_set(&rxq->buf[rxq->head], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001332
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001333 rxq->head++;
1334 if (rxq->head == MWL8K_RX_DESCS)
1335 rxq->head = 0;
1336
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001337 rxq->rxd_count--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001338
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001339 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001340
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001341 /*
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001342 * Check for a pending join operation. Save a
1343 * copy of the beacon and schedule a tasklet to
1344 * send a FINALIZE_JOIN command to the firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001345 */
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001346 if (mwl8k_capture_bssid(priv, (void *)skb->data))
Lennert Buytenhek37797522009-10-22 20:19:45 +02001347 mwl8k_save_beacon(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001348
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001349 if (ieee80211_has_protected(wh->frame_control)) {
1350
1351 /* Check if hw crypto has been enabled for
1352 * this bss. If yes, set the status flags
1353 * accordingly
1354 */
1355 mwl8k_vif = mwl8k_find_vif_bss(&priv->vif_list,
1356 wh->addr1);
1357
1358 if (mwl8k_vif != NULL &&
Joe Perches23677ce2012-02-09 11:17:23 +00001359 mwl8k_vif->is_hw_crypto_enabled) {
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001360 /*
1361 * When MMIC ERROR is encountered
1362 * by the firmware, payload is
1363 * dropped and only 32 bytes of
1364 * mwl8k Firmware header is sent
1365 * to the host.
1366 *
1367 * We need to add four bytes of
1368 * key information. In it
1369 * MAC80211 expects keyidx set to
1370 * 0 for triggering Counter
1371 * Measure of MMIC failure.
1372 */
1373 if (status.flag & RX_FLAG_MMIC_ERROR) {
1374 struct mwl8k_dma_data *tr;
1375 tr = (struct mwl8k_dma_data *)skb->data;
1376 memset((void *)&(tr->data), 0, 4);
1377 pkt_len += 4;
1378 }
1379
1380 if (!ieee80211_is_auth(wh->frame_control))
1381 status.flag |= RX_FLAG_IV_STRIPPED |
1382 RX_FLAG_DECRYPTED |
1383 RX_FLAG_MMIC_STRIPPED;
1384 }
1385 }
1386
1387 skb_put(skb, pkt_len);
1388 mwl8k_remove_dma_header(skb, qos);
Johannes Bergf1d58c22009-06-17 13:13:00 +02001389 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
1390 ieee80211_rx_irqsafe(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001391
1392 processed++;
1393 }
1394
1395 return processed;
1396}
1397
1398
1399/*
1400 * Packet transmission.
1401 */
1402
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001403#define MWL8K_TXD_STATUS_OK 0x00000001
1404#define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
1405#define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
1406#define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001407#define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001408
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001409#define MWL8K_QOS_QLEN_UNSPEC 0xff00
1410#define MWL8K_QOS_ACK_POLICY_MASK 0x0060
1411#define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000
1412#define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060
1413#define MWL8K_QOS_EOSP 0x0010
1414
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001415struct mwl8k_tx_desc {
1416 __le32 status;
1417 __u8 data_rate;
1418 __u8 tx_priority;
1419 __le16 qos_control;
1420 __le32 pkt_phys_addr;
1421 __le16 pkt_len;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001422 __u8 dest_MAC_addr[ETH_ALEN];
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001423 __le32 next_txd_phys_addr;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07001424 __le32 timestamp;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001425 __le16 rate_info;
1426 __u8 peer_id;
Brian Cavagnoloa1fe24b2010-11-12 17:23:47 -08001427 __u8 tx_frag_cnt;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001428} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001429
1430#define MWL8K_TX_DESCS 128
1431
1432static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1433{
1434 struct mwl8k_priv *priv = hw->priv;
1435 struct mwl8k_tx_queue *txq = priv->txq + index;
1436 int size;
1437 int i;
1438
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001439 txq->len = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001440 txq->head = 0;
1441 txq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001442
1443 size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1444
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001445 txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma);
1446 if (txq->txd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001447 wiphy_err(hw->wiphy, "failed to alloc TX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001448 return -ENOMEM;
1449 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001450 memset(txq->txd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001451
Shan Weib9ede5f2011-03-08 11:02:03 +08001452 txq->skb = kcalloc(MWL8K_TX_DESCS, sizeof(*txq->skb), GFP_KERNEL);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001453 if (txq->skb == NULL) {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001454 pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001455 return -ENOMEM;
1456 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001457
1458 for (i = 0; i < MWL8K_TX_DESCS; i++) {
1459 struct mwl8k_tx_desc *tx_desc;
1460 int nexti;
1461
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001462 tx_desc = txq->txd + i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001463 nexti = (i + 1) % MWL8K_TX_DESCS;
1464
1465 tx_desc->status = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001466 tx_desc->next_txd_phys_addr =
1467 cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001468 }
1469
1470 return 0;
1471}
1472
1473static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1474{
1475 iowrite32(MWL8K_H2A_INT_PPA_READY,
1476 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1477 iowrite32(MWL8K_H2A_INT_DUMMY,
1478 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1479 ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1480}
1481
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001482static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001483{
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001484 struct mwl8k_priv *priv = hw->priv;
1485 int i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001486
Brian Cavagnoloe6007072011-03-17 11:58:44 -07001487 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001488 struct mwl8k_tx_queue *txq = priv->txq + i;
1489 int fw_owned = 0;
1490 int drv_owned = 0;
1491 int unused = 0;
1492 int desc;
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001493
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001494 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001495 struct mwl8k_tx_desc *tx_desc = txq->txd + desc;
1496 u32 status;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001497
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001498 status = le32_to_cpu(tx_desc->status);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001499 if (status & MWL8K_TXD_STATUS_FW_OWNED)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001500 fw_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001501 else
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001502 drv_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001503
1504 if (tx_desc->pkt_len == 0)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001505 unused++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001506 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001507
Joe Perchesc96c31e2010-07-26 14:39:58 -07001508 wiphy_err(hw->wiphy,
1509 "txq[%d] len=%d head=%d tail=%d "
1510 "fw_owned=%d drv_owned=%d unused=%d\n",
1511 i,
1512 txq->len, txq->head, txq->tail,
1513 fw_owned, drv_owned, unused);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001514 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001515}
1516
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001517/*
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001518 * Must be called with priv->fw_mutex held and tx queues stopped.
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001519 */
Lennert Buytenhek62abd3c2010-01-08 18:28:34 +01001520#define MWL8K_TX_WAIT_TIMEOUT_MS 5000
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001521
Lennert Buytenhek950d5b02009-07-17 01:48:41 +02001522static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001523{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001524 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001525 DECLARE_COMPLETION_ONSTACK(tx_wait);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001526 int retry;
1527 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001528
1529 might_sleep();
1530
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05301531 /* Since fw restart is in progress, allow only the firmware
1532 * commands from the restart code and block the other
1533 * commands since they are going to fail in any case since
1534 * the firmware has crashed
1535 */
1536 if (priv->hw_restart_in_progress) {
1537 if (priv->hw_restart_owner == current)
1538 return 0;
1539 else
1540 return -EBUSY;
1541 }
1542
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05301543 if (atomic_read(&priv->watchdog_event_pending))
1544 return 0;
1545
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001546 /*
1547 * The TX queues are stopped at this point, so this test
1548 * doesn't need to take ->tx_lock.
1549 */
1550 if (!priv->pending_tx_pkts)
1551 return 0;
1552
1553 retry = 0;
1554 rc = 0;
1555
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001556 spin_lock_bh(&priv->tx_lock);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001557 priv->tx_wait = &tx_wait;
1558 while (!rc) {
1559 int oldcount;
1560 unsigned long timeout;
1561
1562 oldcount = priv->pending_tx_pkts;
1563
1564 spin_unlock_bh(&priv->tx_lock);
1565 timeout = wait_for_completion_timeout(&tx_wait,
1566 msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS));
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05301567
1568 if (atomic_read(&priv->watchdog_event_pending)) {
1569 spin_lock_bh(&priv->tx_lock);
1570 priv->tx_wait = NULL;
1571 spin_unlock_bh(&priv->tx_lock);
1572 return 0;
1573 }
1574
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001575 spin_lock_bh(&priv->tx_lock);
1576
1577 if (timeout) {
1578 WARN_ON(priv->pending_tx_pkts);
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301579 if (retry)
Joe Perchesc96c31e2010-07-26 14:39:58 -07001580 wiphy_notice(hw->wiphy, "tx rings drained\n");
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001581 break;
1582 }
1583
1584 if (priv->pending_tx_pkts < oldcount) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001585 wiphy_notice(hw->wiphy,
1586 "waiting for tx rings to drain (%d -> %d pkts)\n",
1587 oldcount, priv->pending_tx_pkts);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001588 retry = 1;
1589 continue;
1590 }
1591
1592 priv->tx_wait = NULL;
1593
Joe Perchesc96c31e2010-07-26 14:39:58 -07001594 wiphy_err(hw->wiphy, "tx rings stuck for %d ms\n",
1595 MWL8K_TX_WAIT_TIMEOUT_MS);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001596 mwl8k_dump_tx_rings(hw);
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05301597 priv->hw_restart_in_progress = true;
1598 ieee80211_queue_work(hw, &priv->fw_reload);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001599
1600 rc = -ETIMEDOUT;
1601 }
Nishant Sarmukadam9b0b11f2013-01-08 10:16:05 +05301602 priv->tx_wait = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001603 spin_unlock_bh(&priv->tx_lock);
1604
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001605 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001606}
1607
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02001608#define MWL8K_TXD_SUCCESS(status) \
1609 ((status) & (MWL8K_TXD_STATUS_OK | \
1610 MWL8K_TXD_STATUS_OK_RETRY | \
1611 MWL8K_TXD_STATUS_OK_MORE_RETRY))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001612
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001613static int mwl8k_tid_queue_mapping(u8 tid)
1614{
1615 BUG_ON(tid > 7);
1616
1617 switch (tid) {
1618 case 0:
1619 case 3:
1620 return IEEE80211_AC_BE;
1621 break;
1622 case 1:
1623 case 2:
1624 return IEEE80211_AC_BK;
1625 break;
1626 case 4:
1627 case 5:
1628 return IEEE80211_AC_VI;
1629 break;
1630 case 6:
1631 case 7:
1632 return IEEE80211_AC_VO;
1633 break;
1634 default:
1635 return -1;
1636 break;
1637 }
1638}
1639
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001640/* The firmware will fill in the rate information
1641 * for each packet that gets queued in the hardware
John W. Linville49adc5c2011-04-27 15:04:28 -04001642 * and these macros will interpret that info.
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001643 */
1644
John W. Linville49adc5c2011-04-27 15:04:28 -04001645#define RI_FORMAT(a) (a & 0x0001)
1646#define RI_RATE_ID_MCS(a) ((a & 0x01f8) >> 3)
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001647
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001648static int
1649mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001650{
1651 struct mwl8k_priv *priv = hw->priv;
1652 struct mwl8k_tx_queue *txq = priv->txq + index;
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001653 int processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001654
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001655 processed = 0;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001656 while (txq->len > 0 && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001657 int tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001658 struct mwl8k_tx_desc *tx_desc;
1659 unsigned long addr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001660 int size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001661 struct sk_buff *skb;
1662 struct ieee80211_tx_info *info;
1663 u32 status;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001664 struct ieee80211_sta *sta;
1665 struct mwl8k_sta *sta_info = NULL;
1666 u16 rate_info;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001667 struct ieee80211_hdr *wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001668
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001669 tx = txq->head;
1670 tx_desc = txq->txd + tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001671
1672 status = le32_to_cpu(tx_desc->status);
1673
1674 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1675 if (!force)
1676 break;
1677 tx_desc->status &=
1678 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1679 }
1680
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001681 txq->head = (tx + 1) % MWL8K_TX_DESCS;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001682 BUG_ON(txq->len == 0);
1683 txq->len--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001684 priv->pending_tx_pkts--;
1685
1686 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001687 size = le16_to_cpu(tx_desc->pkt_len);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001688 skb = txq->skb[tx];
1689 txq->skb[tx] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001690
1691 BUG_ON(skb == NULL);
1692 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1693
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001694 mwl8k_remove_dma_header(skb, tx_desc->qos_control);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001695
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001696 wh = (struct ieee80211_hdr *) skb->data;
1697
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001698 /* Mark descriptor as unused */
1699 tx_desc->pkt_phys_addr = 0;
1700 tx_desc->pkt_len = 0;
1701
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001702 info = IEEE80211_SKB_CB(skb);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001703 if (ieee80211_is_data(wh->frame_control)) {
Thomas Huehn89e11802012-07-11 13:21:41 +02001704 rcu_read_lock();
1705 sta = ieee80211_find_sta_by_ifaddr(hw, wh->addr1,
1706 wh->addr2);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001707 if (sta) {
1708 sta_info = MWL8K_STA(sta);
1709 BUG_ON(sta_info == NULL);
1710 rate_info = le16_to_cpu(tx_desc->rate_info);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001711 /* If rate is < 6.5 Mpbs for an ht station
1712 * do not form an ampdu. If the station is a
1713 * legacy station (format = 0), do not form an
1714 * ampdu
1715 */
John W. Linville49adc5c2011-04-27 15:04:28 -04001716 if (RI_RATE_ID_MCS(rate_info) < 1 ||
1717 RI_FORMAT(rate_info) == 0) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001718 sta_info->is_ampdu_allowed = false;
1719 } else {
1720 sta_info->is_ampdu_allowed = true;
1721 }
1722 }
Thomas Huehn89e11802012-07-11 13:21:41 +02001723 rcu_read_unlock();
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001724 }
1725
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001726 ieee80211_tx_info_clear_status(info);
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001727
1728 /* Rate control is happening in the firmware.
1729 * Ensure no tx rate is being reported.
1730 */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301731 info->status.rates[0].idx = -1;
1732 info->status.rates[0].count = 1;
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001733
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001734 if (MWL8K_TXD_SUCCESS(status))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001735 info->flags |= IEEE80211_TX_STAT_ACK;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001736
1737 ieee80211_tx_status_irqsafe(hw, skb);
1738
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001739 processed++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001740 }
1741
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001742 return processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001743}
1744
1745/* must be called only when the card's transmit is completely halted */
1746static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1747{
1748 struct mwl8k_priv *priv = hw->priv;
1749 struct mwl8k_tx_queue *txq = priv->txq + index;
1750
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001751 if (txq->txd == NULL)
1752 return;
1753
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001754 mwl8k_txq_reclaim(hw, index, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001755
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001756 kfree(txq->skb);
1757 txq->skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001758
1759 pci_free_consistent(priv->pdev,
1760 MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001761 txq->txd, txq->txd_dma);
1762 txq->txd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001763}
1764
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001765/* caller must hold priv->stream_lock when calling the stream functions */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301766static struct mwl8k_ampdu_stream *
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001767mwl8k_add_stream(struct ieee80211_hw *hw, struct ieee80211_sta *sta, u8 tid)
1768{
1769 struct mwl8k_ampdu_stream *stream;
1770 struct mwl8k_priv *priv = hw->priv;
1771 int i;
1772
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301773 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001774 stream = &priv->ampdu[i];
1775 if (stream->state == AMPDU_NO_STREAM) {
1776 stream->sta = sta;
1777 stream->state = AMPDU_STREAM_NEW;
1778 stream->tid = tid;
1779 stream->idx = i;
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001780 wiphy_debug(hw->wiphy, "Added a new stream for %pM %d",
1781 sta->addr, tid);
1782 return stream;
1783 }
1784 }
1785 return NULL;
1786}
1787
1788static int
1789mwl8k_start_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1790{
1791 int ret;
1792
1793 /* if the stream has already been started, don't start it again */
1794 if (stream->state != AMPDU_STREAM_NEW)
1795 return 0;
1796 ret = ieee80211_start_tx_ba_session(stream->sta, stream->tid, 0);
1797 if (ret)
1798 wiphy_debug(hw->wiphy, "Failed to start stream for %pM %d: "
1799 "%d\n", stream->sta->addr, stream->tid, ret);
1800 else
1801 wiphy_debug(hw->wiphy, "Started stream for %pM %d\n",
1802 stream->sta->addr, stream->tid);
1803 return ret;
1804}
1805
1806static void
1807mwl8k_remove_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1808{
1809 wiphy_debug(hw->wiphy, "Remove stream for %pM %d\n", stream->sta->addr,
1810 stream->tid);
1811 memset(stream, 0, sizeof(*stream));
1812}
1813
1814static struct mwl8k_ampdu_stream *
1815mwl8k_lookup_stream(struct ieee80211_hw *hw, u8 *addr, u8 tid)
1816{
1817 struct mwl8k_priv *priv = hw->priv;
1818 int i;
1819
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301820 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001821 struct mwl8k_ampdu_stream *stream;
1822 stream = &priv->ampdu[i];
1823 if (stream->state == AMPDU_NO_STREAM)
1824 continue;
1825 if (!memcmp(stream->sta->addr, addr, ETH_ALEN) &&
1826 stream->tid == tid)
1827 return stream;
1828 }
1829 return NULL;
1830}
1831
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001832#define MWL8K_AMPDU_PACKET_THRESHOLD 64
1833static inline bool mwl8k_ampdu_allowed(struct ieee80211_sta *sta, u8 tid)
1834{
1835 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1836 struct tx_traffic_info *tx_stats;
1837
1838 BUG_ON(tid >= MWL8K_MAX_TID);
1839 tx_stats = &sta_info->tx_stats[tid];
1840
1841 return sta_info->is_ampdu_allowed &&
1842 tx_stats->pkts > MWL8K_AMPDU_PACKET_THRESHOLD;
1843}
1844
1845static inline void mwl8k_tx_count_packet(struct ieee80211_sta *sta, u8 tid)
1846{
1847 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1848 struct tx_traffic_info *tx_stats;
1849
1850 BUG_ON(tid >= MWL8K_MAX_TID);
1851 tx_stats = &sta_info->tx_stats[tid];
1852
1853 if (tx_stats->start_time == 0)
1854 tx_stats->start_time = jiffies;
1855
1856 /* reset the packet count after each second elapses. If the number of
1857 * packets ever exceeds the ampdu_min_traffic threshold, we will allow
1858 * an ampdu stream to be started.
1859 */
1860 if (jiffies - tx_stats->start_time > HZ) {
1861 tx_stats->pkts = 0;
1862 tx_stats->start_time = 0;
1863 } else
1864 tx_stats->pkts++;
1865}
1866
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301867/* The hardware ampdu queues start from 5.
1868 * txpriorities for ampdu queues are
1869 * 5 6 7 0 1 2 3 4 ie., queue 5 is highest
1870 * and queue 3 is lowest (queue 4 is reserved)
1871 */
1872#define BA_QUEUE 5
1873
Johannes Berg7bb45682011-02-24 14:42:06 +01001874static void
Thomas Huehn36323f82012-07-23 21:33:42 +02001875mwl8k_txq_xmit(struct ieee80211_hw *hw,
1876 int index,
1877 struct ieee80211_sta *sta,
1878 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001879{
1880 struct mwl8k_priv *priv = hw->priv;
1881 struct ieee80211_tx_info *tx_info;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001882 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001883 struct ieee80211_hdr *wh;
1884 struct mwl8k_tx_queue *txq;
1885 struct mwl8k_tx_desc *tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001886 dma_addr_t dma;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001887 u32 txstatus;
1888 u8 txdatarate;
1889 u16 qos;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001890 int txpriority;
1891 u8 tid = 0;
1892 struct mwl8k_ampdu_stream *stream = NULL;
1893 bool start_ba_session = false;
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301894 bool mgmtframe = false;
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001895 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301896 bool eapol_frame = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001897
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001898 wh = (struct ieee80211_hdr *)skb->data;
1899 if (ieee80211_is_data_qos(wh->frame_control))
1900 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1901 else
1902 qos = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001903
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301904 if (skb->protocol == cpu_to_be16(ETH_P_PAE))
1905 eapol_frame = true;
1906
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301907 if (ieee80211_is_mgmt(wh->frame_control))
1908 mgmtframe = true;
1909
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001910 if (priv->ap_fw)
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05301911 mwl8k_encapsulate_tx_frame(priv, skb);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001912 else
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +05301913 mwl8k_add_dma_header(priv, skb, 0, 0);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001914
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001915 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001916
1917 tx_info = IEEE80211_SKB_CB(skb);
1918 mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001919
1920 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001921 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Lennert Buytenhek657232b2010-01-12 13:47:47 +01001922 wh->seq_ctrl |= cpu_to_le16(mwl8k_vif->seqno);
1923 mwl8k_vif->seqno += 0x10;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001924 }
1925
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001926 /* Setup firmware control bit fields for each frame type. */
1927 txstatus = 0;
1928 txdatarate = 0;
1929 if (ieee80211_is_mgmt(wh->frame_control) ||
1930 ieee80211_is_ctl(wh->frame_control)) {
1931 txdatarate = 0;
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001932 qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001933 } else if (ieee80211_is_data(wh->frame_control)) {
1934 txdatarate = 1;
1935 if (is_multicast_ether_addr(wh->addr1))
1936 txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX;
1937
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001938 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001939 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001940 qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001941 else
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001942 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001943 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001944
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001945 /* Queue ADDBA request in the respective data queue. While setting up
1946 * the ampdu stream, mac80211 queues further packets for that
1947 * particular ra/tid pair. However, packets piled up in the hardware
1948 * for that ra/tid pair will still go out. ADDBA request and the
1949 * related data packets going out from different queues asynchronously
1950 * will cause a shift in the receiver window which might result in
1951 * ampdu packets getting dropped at the receiver after the stream has
1952 * been setup.
1953 */
1954 if (unlikely(ieee80211_is_action(wh->frame_control) &&
1955 mgmt->u.action.category == WLAN_CATEGORY_BACK &&
1956 mgmt->u.action.u.addba_req.action_code == WLAN_ACTION_ADDBA_REQ &&
1957 priv->ap_fw)) {
1958 u16 capab = le16_to_cpu(mgmt->u.action.u.addba_req.capab);
1959 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
1960 index = mwl8k_tid_queue_mapping(tid);
1961 }
1962
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001963 txpriority = index;
1964
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301965 if (priv->ap_fw && sta && sta->ht_cap.ht_supported && !eapol_frame &&
1966 ieee80211_is_data_qos(wh->frame_control)) {
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001967 tid = qos & 0xf;
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001968 mwl8k_tx_count_packet(sta, tid);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001969 spin_lock(&priv->stream_lock);
1970 stream = mwl8k_lookup_stream(hw, sta->addr, tid);
1971 if (stream != NULL) {
1972 if (stream->state == AMPDU_STREAM_ACTIVE) {
Yogesh Ashok Powar5f2a1492013-01-03 13:21:25 +05301973 WARN_ON(!(qos & MWL8K_QOS_ACK_POLICY_BLOCKACK));
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301974 txpriority = (BA_QUEUE + stream->idx) %
1975 TOTAL_HW_TX_QUEUES;
1976 if (stream->idx <= 1)
1977 index = stream->idx +
1978 MWL8K_TX_WMM_QUEUES;
1979
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001980 } else if (stream->state == AMPDU_STREAM_NEW) {
1981 /* We get here if the driver sends us packets
1982 * after we've initiated a stream, but before
1983 * our ampdu_action routine has been called
1984 * with IEEE80211_AMPDU_TX_START to get the SSN
1985 * for the ADDBA request. So this packet can
1986 * go out with no risk of sequence number
1987 * mismatch. No special handling is required.
1988 */
1989 } else {
1990 /* Drop packets that would go out after the
1991 * ADDBA request was sent but before the ADDBA
1992 * response is received. If we don't do this,
1993 * the recipient would probably receive it
1994 * after the ADDBA request with SSN 0. This
1995 * will cause the recipient's BA receive window
1996 * to shift, which would cause the subsequent
1997 * packets in the BA stream to be discarded.
1998 * mac80211 queues our packets for us in this
1999 * case, so this is really just a safety check.
2000 */
2001 wiphy_warn(hw->wiphy,
2002 "Cannot send packet while ADDBA "
2003 "dialog is underway.\n");
2004 spin_unlock(&priv->stream_lock);
2005 dev_kfree_skb(skb);
2006 return;
2007 }
2008 } else {
2009 /* Defer calling mwl8k_start_stream so that the current
2010 * skb can go out before the ADDBA request. This
2011 * prevents sequence number mismatch at the recepient
2012 * as described above.
2013 */
Brian Cavagnolod0805c12011-04-12 11:06:28 -07002014 if (mwl8k_ampdu_allowed(sta, tid)) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07002015 stream = mwl8k_add_stream(hw, sta, tid);
2016 if (stream != NULL)
2017 start_ba_session = true;
2018 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002019 }
2020 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar5f2a1492013-01-03 13:21:25 +05302021 } else {
2022 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
2023 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002024 }
2025
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002026 dma = pci_map_single(priv->pdev, skb->data,
2027 skb->len, PCI_DMA_TODEVICE);
2028
2029 if (pci_dma_mapping_error(priv->pdev, dma)) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07002030 wiphy_debug(hw->wiphy,
2031 "failed to dma map skb, dropping TX frame.\n");
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002032 if (start_ba_session) {
2033 spin_lock(&priv->stream_lock);
2034 mwl8k_remove_stream(hw, stream);
2035 spin_unlock(&priv->stream_lock);
2036 }
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002037 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01002038 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002039 }
2040
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002041 spin_lock_bh(&priv->tx_lock);
2042
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002043 txq = priv->txq + index;
2044
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302045 /* Mgmt frames that go out frequently are probe
2046 * responses. Other mgmt frames got out relatively
2047 * infrequently. Hence reserve 2 buffers so that
2048 * other mgmt frames do not get dropped due to an
2049 * already queued probe response in one of the
2050 * reserved buffers.
2051 */
2052
2053 if (txq->len >= MWL8K_TX_DESCS - 2) {
Joe Perches23677ce2012-02-09 11:17:23 +00002054 if (!mgmtframe || txq->len == MWL8K_TX_DESCS) {
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302055 if (start_ba_session) {
2056 spin_lock(&priv->stream_lock);
2057 mwl8k_remove_stream(hw, stream);
2058 spin_unlock(&priv->stream_lock);
2059 }
2060 spin_unlock_bh(&priv->tx_lock);
Nishant Sarmukadamff7aa962012-11-06 19:22:48 +05302061 pci_unmap_single(priv->pdev, dma, skb->len,
2062 PCI_DMA_TODEVICE);
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302063 dev_kfree_skb(skb);
2064 return;
Pradeep Nemavat3a7dbc32011-04-21 16:34:56 +05302065 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002066 }
2067
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002068 BUG_ON(txq->skb[txq->tail] != NULL);
2069 txq->skb[txq->tail] = skb;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002070
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002071 tx = txq->txd + txq->tail;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002072 tx->data_rate = txdatarate;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002073 tx->tx_priority = txpriority;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002074 tx->qos_control = cpu_to_le16(qos);
2075 tx->pkt_phys_addr = cpu_to_le32(dma);
2076 tx->pkt_len = cpu_to_le16(skb->len);
2077 tx->rate_info = 0;
Thomas Huehn36323f82012-07-23 21:33:42 +02002078 if (!priv->ap_fw && sta != NULL)
2079 tx->peer_id = MWL8K_STA(sta)->peer_id;
Lennert Buytenheka6804002010-01-04 21:55:42 +01002080 else
2081 tx->peer_id = 0;
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302082
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05302083 if (priv->ap_fw && ieee80211_is_data(wh->frame_control) && !eapol_frame)
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302084 tx->timestamp = cpu_to_le32(ioread32(priv->regs +
2085 MWL8K_HW_TIMER_REGISTER));
Nishant Sarmukadamb8d9e572012-11-06 19:23:15 +05302086 else
2087 tx->timestamp = 0;
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302088
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002089 wmb();
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002090 tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
2091
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02002092 txq->len++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002093 priv->pending_tx_pkts++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002094
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002095 txq->tail++;
2096 if (txq->tail == MWL8K_TX_DESCS)
2097 txq->tail = 0;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002098
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002099 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002100
2101 spin_unlock_bh(&priv->tx_lock);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002102
2103 /* Initiate the ampdu session here */
2104 if (start_ba_session) {
2105 spin_lock(&priv->stream_lock);
2106 if (mwl8k_start_stream(hw, stream))
2107 mwl8k_remove_stream(hw, stream);
2108 spin_unlock(&priv->stream_lock);
2109 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002110}
2111
2112
2113/*
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002114 * Firmware access.
2115 *
2116 * We have the following requirements for issuing firmware commands:
2117 * - Some commands require that the packet transmit path is idle when
2118 * the command is issued. (For simplicity, we'll just quiesce the
2119 * transmit path for every command.)
2120 * - There are certain sequences of commands that need to be issued to
2121 * the hardware sequentially, with no other intervening commands.
2122 *
2123 * This leads to an implementation of a "firmware lock" as a mutex that
2124 * can be taken recursively, and which is taken by both the low-level
2125 * command submission function (mwl8k_post_cmd) as well as any users of
2126 * that function that require issuing of an atomic sequence of commands,
2127 * and quiesces the transmit path whenever it's taken.
2128 */
2129static int mwl8k_fw_lock(struct ieee80211_hw *hw)
2130{
2131 struct mwl8k_priv *priv = hw->priv;
2132
2133 if (priv->fw_mutex_owner != current) {
2134 int rc;
2135
2136 mutex_lock(&priv->fw_mutex);
2137 ieee80211_stop_queues(hw);
2138
2139 rc = mwl8k_tx_wait_empty(hw);
2140 if (rc) {
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05302141 if (!priv->hw_restart_in_progress)
2142 ieee80211_wake_queues(hw);
2143
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002144 mutex_unlock(&priv->fw_mutex);
2145
2146 return rc;
2147 }
2148
2149 priv->fw_mutex_owner = current;
2150 }
2151
2152 priv->fw_mutex_depth++;
2153
2154 return 0;
2155}
2156
2157static void mwl8k_fw_unlock(struct ieee80211_hw *hw)
2158{
2159 struct mwl8k_priv *priv = hw->priv;
2160
2161 if (!--priv->fw_mutex_depth) {
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05302162 if (!priv->hw_restart_in_progress)
2163 ieee80211_wake_queues(hw);
2164
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002165 priv->fw_mutex_owner = NULL;
2166 mutex_unlock(&priv->fw_mutex);
2167 }
2168}
2169
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05302170static void mwl8k_enable_bsses(struct ieee80211_hw *hw, bool enable,
2171 u32 bitmap);
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002172
2173/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002174 * Command processing.
2175 */
2176
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002177/* Timeout firmware commands after 10s */
2178#define MWL8K_CMD_TIMEOUT_MS 10000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002179
2180static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
2181{
2182 DECLARE_COMPLETION_ONSTACK(cmd_wait);
2183 struct mwl8k_priv *priv = hw->priv;
2184 void __iomem *regs = priv->regs;
2185 dma_addr_t dma_addr;
2186 unsigned int dma_size;
2187 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002188 unsigned long timeout = 0;
2189 u8 buf[32];
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05302190 u32 bitmap = 0;
2191
2192 wiphy_dbg(hw->wiphy, "Posting %s [%d]\n",
2193 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)), cmd->macid);
2194
2195 /* Before posting firmware commands that could change the hardware
2196 * characteristics, make sure that all BSSes are stopped temporary.
2197 * Enable these stopped BSSes after completion of the commands
2198 */
2199
2200 rc = mwl8k_fw_lock(hw);
2201 if (rc)
2202 return rc;
2203
2204 if (priv->ap_fw && priv->running_bsses) {
2205 switch (le16_to_cpu(cmd->code)) {
2206 case MWL8K_CMD_SET_RF_CHANNEL:
2207 case MWL8K_CMD_RADIO_CONTROL:
2208 case MWL8K_CMD_RF_TX_POWER:
2209 case MWL8K_CMD_TX_POWER:
2210 case MWL8K_CMD_RF_ANTENNA:
2211 case MWL8K_CMD_RTS_THRESHOLD:
2212 case MWL8K_CMD_MIMO_CONFIG:
2213 bitmap = priv->running_bsses;
2214 mwl8k_enable_bsses(hw, false, bitmap);
2215 break;
2216 }
2217 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002218
John W. Linvilleb6037422010-07-20 13:55:00 -04002219 cmd->result = (__force __le16) 0xffff;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002220 dma_size = le16_to_cpu(cmd->length);
2221 dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
2222 PCI_DMA_BIDIRECTIONAL);
2223 if (pci_dma_mapping_error(priv->pdev, dma_addr))
2224 return -ENOMEM;
2225
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002226 priv->hostcmd_wait = &cmd_wait;
2227 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
2228 iowrite32(MWL8K_H2A_INT_DOORBELL,
2229 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
2230 iowrite32(MWL8K_H2A_INT_DUMMY,
2231 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002232
2233 timeout = wait_for_completion_timeout(&cmd_wait,
2234 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
2235
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002236 priv->hostcmd_wait = NULL;
2237
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002238
Lennert Buytenhek37055bd2009-08-03 21:58:47 +02002239 pci_unmap_single(priv->pdev, dma_addr, dma_size,
2240 PCI_DMA_BIDIRECTIONAL);
2241
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002242 if (!timeout) {
Joe Perches5db55842010-08-11 19:11:19 -07002243 wiphy_err(hw->wiphy, "Command %s timeout after %u ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002244 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2245 MWL8K_CMD_TIMEOUT_MS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002246 rc = -ETIMEDOUT;
2247 } else {
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002248 int ms;
2249
2250 ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout);
2251
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002252 rc = cmd->result ? -EINVAL : 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002253 if (rc)
Joe Perches5db55842010-08-11 19:11:19 -07002254 wiphy_err(hw->wiphy, "Command %s error 0x%x\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002255 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2256 le16_to_cpu(cmd->result));
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002257 else if (ms > 2000)
Joe Perches5db55842010-08-11 19:11:19 -07002258 wiphy_notice(hw->wiphy, "Command %s took %d ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002259 mwl8k_cmd_name(cmd->code,
2260 buf, sizeof(buf)),
2261 ms);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002262 }
2263
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05302264 if (bitmap)
2265 mwl8k_enable_bsses(hw, true, bitmap);
2266
2267 mwl8k_fw_unlock(hw);
2268
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002269 return rc;
2270}
2271
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +01002272static int mwl8k_post_pervif_cmd(struct ieee80211_hw *hw,
2273 struct ieee80211_vif *vif,
2274 struct mwl8k_cmd_pkt *cmd)
2275{
2276 if (vif != NULL)
2277 cmd->macid = MWL8K_VIF(vif)->macid;
2278 return mwl8k_post_cmd(hw, cmd);
2279}
2280
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002281/*
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002282 * Setup code shared between STA and AP firmware images.
2283 */
2284static void mwl8k_setup_2ghz_band(struct ieee80211_hw *hw)
2285{
2286 struct mwl8k_priv *priv = hw->priv;
2287
2288 BUILD_BUG_ON(sizeof(priv->channels_24) != sizeof(mwl8k_channels_24));
2289 memcpy(priv->channels_24, mwl8k_channels_24, sizeof(mwl8k_channels_24));
2290
2291 BUILD_BUG_ON(sizeof(priv->rates_24) != sizeof(mwl8k_rates_24));
2292 memcpy(priv->rates_24, mwl8k_rates_24, sizeof(mwl8k_rates_24));
2293
2294 priv->band_24.band = IEEE80211_BAND_2GHZ;
2295 priv->band_24.channels = priv->channels_24;
2296 priv->band_24.n_channels = ARRAY_SIZE(mwl8k_channels_24);
2297 priv->band_24.bitrates = priv->rates_24;
2298 priv->band_24.n_bitrates = ARRAY_SIZE(mwl8k_rates_24);
2299
2300 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band_24;
2301}
2302
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +01002303static void mwl8k_setup_5ghz_band(struct ieee80211_hw *hw)
2304{
2305 struct mwl8k_priv *priv = hw->priv;
2306
2307 BUILD_BUG_ON(sizeof(priv->channels_50) != sizeof(mwl8k_channels_50));
2308 memcpy(priv->channels_50, mwl8k_channels_50, sizeof(mwl8k_channels_50));
2309
2310 BUILD_BUG_ON(sizeof(priv->rates_50) != sizeof(mwl8k_rates_50));
2311 memcpy(priv->rates_50, mwl8k_rates_50, sizeof(mwl8k_rates_50));
2312
2313 priv->band_50.band = IEEE80211_BAND_5GHZ;
2314 priv->band_50.channels = priv->channels_50;
2315 priv->band_50.n_channels = ARRAY_SIZE(mwl8k_channels_50);
2316 priv->band_50.bitrates = priv->rates_50;
2317 priv->band_50.n_bitrates = ARRAY_SIZE(mwl8k_rates_50);
2318
2319 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &priv->band_50;
2320}
2321
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002322/*
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002323 * CMD_GET_HW_SPEC (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002324 */
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002325struct mwl8k_cmd_get_hw_spec_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002326 struct mwl8k_cmd_pkt header;
2327 __u8 hw_rev;
2328 __u8 host_interface;
2329 __le16 num_mcaddrs;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002330 __u8 perm_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002331 __le16 region_code;
2332 __le32 fw_rev;
2333 __le32 ps_cookie;
2334 __le32 caps;
2335 __u8 mcs_bitmap[16];
2336 __le32 rx_queue_ptr;
2337 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002338 __le32 tx_queue_ptrs[MWL8K_TX_WMM_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002339 __le32 caps2;
2340 __le32 num_tx_desc_per_queue;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002341 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002342} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002343
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002344#define MWL8K_CAP_MAX_AMSDU 0x20000000
2345#define MWL8K_CAP_GREENFIELD 0x08000000
2346#define MWL8K_CAP_AMPDU 0x04000000
2347#define MWL8K_CAP_RX_STBC 0x01000000
2348#define MWL8K_CAP_TX_STBC 0x00800000
2349#define MWL8K_CAP_SHORTGI_40MHZ 0x00400000
2350#define MWL8K_CAP_SHORTGI_20MHZ 0x00200000
2351#define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000
2352#define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000
2353#define MWL8K_CAP_DELAY_BA 0x00003000
2354#define MWL8K_CAP_MIMO 0x00000200
2355#define MWL8K_CAP_40MHZ 0x00000100
Lennert Buytenhek06953232010-01-12 13:49:41 +01002356#define MWL8K_CAP_BAND_MASK 0x00000007
2357#define MWL8K_CAP_5GHZ 0x00000004
2358#define MWL8K_CAP_2GHZ4 0x00000001
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002359
Lennert Buytenhek06953232010-01-12 13:49:41 +01002360static void
2361mwl8k_set_ht_caps(struct ieee80211_hw *hw,
2362 struct ieee80211_supported_band *band, u32 cap)
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002363{
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002364 int rx_streams;
2365 int tx_streams;
2366
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002367 band->ht_cap.ht_supported = 1;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002368
2369 if (cap & MWL8K_CAP_MAX_AMSDU)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002370 band->ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002371 if (cap & MWL8K_CAP_GREENFIELD)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002372 band->ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002373 if (cap & MWL8K_CAP_AMPDU) {
2374 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002375 band->ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
2376 band->ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002377 }
2378 if (cap & MWL8K_CAP_RX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002379 band->ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002380 if (cap & MWL8K_CAP_TX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002381 band->ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002382 if (cap & MWL8K_CAP_SHORTGI_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002383 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002384 if (cap & MWL8K_CAP_SHORTGI_20MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002385 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002386 if (cap & MWL8K_CAP_DELAY_BA)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002387 band->ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002388 if (cap & MWL8K_CAP_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002389 band->ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002390
2391 rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK);
2392 tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK);
2393
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002394 band->ht_cap.mcs.rx_mask[0] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002395 if (rx_streams >= 2)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002396 band->ht_cap.mcs.rx_mask[1] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002397 if (rx_streams >= 3)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002398 band->ht_cap.mcs.rx_mask[2] = 0xff;
2399 band->ht_cap.mcs.rx_mask[4] = 0x01;
2400 band->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002401
2402 if (rx_streams != tx_streams) {
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002403 band->ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
2404 band->ht_cap.mcs.tx_params |= (tx_streams - 1) <<
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002405 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
2406 }
2407}
2408
Lennert Buytenhek06953232010-01-12 13:49:41 +01002409static void
2410mwl8k_set_caps(struct ieee80211_hw *hw, u32 caps)
2411{
2412 struct mwl8k_priv *priv = hw->priv;
2413
Jonas Gorskic3f251a2013-03-11 17:44:21 +01002414 if (priv->caps)
2415 return;
2416
Lennert Buytenhek06953232010-01-12 13:49:41 +01002417 if ((caps & MWL8K_CAP_2GHZ4) || !(caps & MWL8K_CAP_BAND_MASK)) {
2418 mwl8k_setup_2ghz_band(hw);
2419 if (caps & MWL8K_CAP_MIMO)
2420 mwl8k_set_ht_caps(hw, &priv->band_24, caps);
2421 }
2422
2423 if (caps & MWL8K_CAP_5GHZ) {
2424 mwl8k_setup_5ghz_band(hw);
2425 if (caps & MWL8K_CAP_MIMO)
2426 mwl8k_set_ht_caps(hw, &priv->band_50, caps);
2427 }
Jonas Gorskic3f251a2013-03-11 17:44:21 +01002428
2429 priv->caps = caps;
Lennert Buytenhek06953232010-01-12 13:49:41 +01002430}
2431
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002432static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002433{
2434 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002435 struct mwl8k_cmd_get_hw_spec_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002436 int rc;
2437 int i;
2438
2439 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2440 if (cmd == NULL)
2441 return -ENOMEM;
2442
2443 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2444 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2445
2446 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2447 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002448 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002449 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
2450 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002451 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002452 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002453 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002454
2455 rc = mwl8k_post_cmd(hw, &cmd->header);
2456
2457 if (!rc) {
2458 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2459 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002460 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002461 priv->hw_rev = cmd->hw_rev;
Lennert Buytenhek06953232010-01-12 13:49:41 +01002462 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002463 priv->ap_macids_supported = 0x00000000;
2464 priv->sta_macids_supported = 0x00000001;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002465 }
2466
2467 kfree(cmd);
2468 return rc;
2469}
2470
2471/*
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002472 * CMD_GET_HW_SPEC (AP version).
2473 */
2474struct mwl8k_cmd_get_hw_spec_ap {
2475 struct mwl8k_cmd_pkt header;
2476 __u8 hw_rev;
2477 __u8 host_interface;
2478 __le16 num_wcb;
2479 __le16 num_mcaddrs;
2480 __u8 perm_addr[ETH_ALEN];
2481 __le16 region_code;
2482 __le16 num_antenna;
2483 __le32 fw_rev;
2484 __le32 wcbbase0;
2485 __le32 rxwrptr;
2486 __le32 rxrdptr;
2487 __le32 ps_cookie;
2488 __le32 wcbbase1;
2489 __le32 wcbbase2;
2490 __le32 wcbbase3;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002491 __le32 fw_api_version;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002492 __le32 caps;
2493 __le32 num_of_ampdu_queues;
2494 __le32 wcbbase_ampdu[MWL8K_MAX_AMPDU_QUEUES];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002495} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002496
2497static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw)
2498{
2499 struct mwl8k_priv *priv = hw->priv;
2500 struct mwl8k_cmd_get_hw_spec_ap *cmd;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002501 int rc, i;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002502 u32 api_version;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002503
2504 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2505 if (cmd == NULL)
2506 return -ENOMEM;
2507
2508 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2509 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2510
2511 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2512 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2513
2514 rc = mwl8k_post_cmd(hw, &cmd->header);
2515
2516 if (!rc) {
2517 int off;
2518
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002519 api_version = le32_to_cpu(cmd->fw_api_version);
2520 if (priv->device_info->fw_api_ap != api_version) {
2521 printk(KERN_ERR "%s: Unsupported fw API version for %s."
2522 " Expected %d got %d.\n", MWL8K_NAME,
2523 priv->device_info->part_name,
2524 priv->device_info->fw_api_ap,
2525 api_version);
2526 rc = -EINVAL;
2527 goto done;
2528 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002529 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2530 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
2531 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
2532 priv->hw_rev = cmd->hw_rev;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002533 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002534 priv->ap_macids_supported = 0x000000ff;
Yogesh Ashok Poward59c1cf2013-01-25 16:20:03 +05302535 priv->sta_macids_supported = 0x00000100;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002536 priv->num_ampdu_queues = le32_to_cpu(cmd->num_of_ampdu_queues);
2537 if (priv->num_ampdu_queues > MWL8K_MAX_AMPDU_QUEUES) {
2538 wiphy_warn(hw->wiphy, "fw reported %d ampdu queues"
2539 " but we only support %d.\n",
2540 priv->num_ampdu_queues,
2541 MWL8K_MAX_AMPDU_QUEUES);
2542 priv->num_ampdu_queues = MWL8K_MAX_AMPDU_QUEUES;
2543 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002544 off = le32_to_cpu(cmd->rxwrptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002545 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002546
2547 off = le32_to_cpu(cmd->rxrdptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002548 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002549
Brian Cavagnolo73b46322011-03-17 11:58:41 -07002550 priv->txq_offset[0] = le32_to_cpu(cmd->wcbbase0) & 0xffff;
2551 priv->txq_offset[1] = le32_to_cpu(cmd->wcbbase1) & 0xffff;
2552 priv->txq_offset[2] = le32_to_cpu(cmd->wcbbase2) & 0xffff;
2553 priv->txq_offset[3] = le32_to_cpu(cmd->wcbbase3) & 0xffff;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002554
2555 for (i = 0; i < priv->num_ampdu_queues; i++)
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002556 priv->txq_offset[i + MWL8K_TX_WMM_QUEUES] =
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002557 le32_to_cpu(cmd->wcbbase_ampdu[i]) & 0xffff;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002558 }
2559
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002560done:
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002561 kfree(cmd);
2562 return rc;
2563}
2564
2565/*
2566 * CMD_SET_HW_SPEC.
2567 */
2568struct mwl8k_cmd_set_hw_spec {
2569 struct mwl8k_cmd_pkt header;
2570 __u8 hw_rev;
2571 __u8 host_interface;
2572 __le16 num_mcaddrs;
2573 __u8 perm_addr[ETH_ALEN];
2574 __le16 region_code;
2575 __le32 fw_rev;
2576 __le32 ps_cookie;
2577 __le32 caps;
2578 __le32 rx_queue_ptr;
2579 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002580 __le32 tx_queue_ptrs[MWL8K_MAX_TX_QUEUES];
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002581 __le32 flags;
2582 __le32 num_tx_desc_per_queue;
2583 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002584} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002585
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002586/* If enabled, MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY will cause
2587 * packets to expire 500 ms after the timestamp in the tx descriptor. That is,
2588 * the packets that are queued for more than 500ms, will be dropped in the
2589 * hardware. This helps minimizing the issues caused due to head-of-line
2590 * blocking where a slow client can hog the bandwidth and affect traffic to a
2591 * faster client.
2592 */
2593#define MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY 0x00000400
Nishant Sarmukadam3373b282011-06-13 16:26:15 +05302594#define MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR 0x00000200
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002595#define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080
2596#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP 0x00000020
2597#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON 0x00000010
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002598
2599static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw)
2600{
2601 struct mwl8k_priv *priv = hw->priv;
2602 struct mwl8k_cmd_set_hw_spec *cmd;
2603 int rc;
2604 int i;
2605
2606 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2607 if (cmd == NULL)
2608 return -ENOMEM;
2609
2610 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC);
2611 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2612
2613 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2614 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002615 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002616
2617 /*
2618 * Mac80211 stack has Q0 as highest priority and Q3 as lowest in
2619 * that order. Firmware has Q3 as highest priority and Q0 as lowest
2620 * in that order. Map Q3 of mac80211 to Q0 of firmware so that the
2621 * priority is interpreted the right way in firmware.
2622 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002623 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
2624 int j = mwl8k_tx_queues(priv) - 1 - i;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002625 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[j].txd_dma);
2626 }
2627
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002628 cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT |
2629 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP |
Nishant Sarmukadam31d291a2011-04-21 16:34:59 +05302630 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON |
Nishant Sarmukadam3373b282011-06-13 16:26:15 +05302631 MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY |
2632 MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002633 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
2634 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
2635
2636 rc = mwl8k_post_cmd(hw, &cmd->header);
2637 kfree(cmd);
2638
2639 return rc;
2640}
2641
2642/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002643 * CMD_MAC_MULTICAST_ADR.
2644 */
2645struct mwl8k_cmd_mac_multicast_adr {
2646 struct mwl8k_cmd_pkt header;
2647 __le16 action;
2648 __le16 numaddr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002649 __u8 addr[0][ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002650};
2651
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002652#define MWL8K_ENABLE_RX_DIRECTED 0x0001
2653#define MWL8K_ENABLE_RX_MULTICAST 0x0002
2654#define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004
2655#define MWL8K_ENABLE_RX_BROADCAST 0x0008
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002656
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002657static struct mwl8k_cmd_pkt *
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002658__mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti,
Jiri Pirko22bedad32010-04-01 21:22:57 +00002659 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002660{
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002661 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002662 struct mwl8k_cmd_mac_multicast_adr *cmd;
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002663 int size;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002664 int mc_count = 0;
2665
2666 if (mc_list)
2667 mc_count = netdev_hw_addr_list_count(mc_list);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002668
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002669 if (allmulti || mc_count > priv->num_mcaddrs) {
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002670 allmulti = 1;
2671 mc_count = 0;
2672 }
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002673
2674 size = sizeof(*cmd) + mc_count * ETH_ALEN;
2675
2676 cmd = kzalloc(size, GFP_ATOMIC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002677 if (cmd == NULL)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002678 return NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002679
2680 cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
2681 cmd->header.length = cpu_to_le16(size);
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002682 cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED |
2683 MWL8K_ENABLE_RX_BROADCAST);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002684
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002685 if (allmulti) {
2686 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST);
2687 } else if (mc_count) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002688 struct netdev_hw_addr *ha;
2689 int i = 0;
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002690
2691 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
2692 cmd->numaddr = cpu_to_le16(mc_count);
Jiri Pirko22bedad32010-04-01 21:22:57 +00002693 netdev_hw_addr_list_for_each(ha, mc_list) {
2694 memcpy(cmd->addr[i], ha->addr, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002695 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002696 }
2697
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002698 return &cmd->header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002699}
2700
2701/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002702 * CMD_GET_STAT.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002703 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002704struct mwl8k_cmd_get_stat {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002705 struct mwl8k_cmd_pkt header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002706 __le32 stats[64];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002707} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002708
2709#define MWL8K_STAT_ACK_FAILURE 9
2710#define MWL8K_STAT_RTS_FAILURE 12
2711#define MWL8K_STAT_FCS_ERROR 24
2712#define MWL8K_STAT_RTS_SUCCESS 11
2713
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002714static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw,
2715 struct ieee80211_low_level_stats *stats)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002716{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002717 struct mwl8k_cmd_get_stat *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002718 int rc;
2719
2720 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2721 if (cmd == NULL)
2722 return -ENOMEM;
2723
2724 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
2725 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002726
2727 rc = mwl8k_post_cmd(hw, &cmd->header);
2728 if (!rc) {
2729 stats->dot11ACKFailureCount =
2730 le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
2731 stats->dot11RTSFailureCount =
2732 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
2733 stats->dot11FCSErrorCount =
2734 le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
2735 stats->dot11RTSSuccessCount =
2736 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
2737 }
2738 kfree(cmd);
2739
2740 return rc;
2741}
2742
2743/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002744 * CMD_RADIO_CONTROL.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002745 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002746struct mwl8k_cmd_radio_control {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002747 struct mwl8k_cmd_pkt header;
2748 __le16 action;
2749 __le16 control;
2750 __le16 radio_on;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002751} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002752
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002753static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002754mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002755{
2756 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002757 struct mwl8k_cmd_radio_control *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002758 int rc;
2759
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002760 if (enable == priv->radio_on && !force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002761 return 0;
2762
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002763 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2764 if (cmd == NULL)
2765 return -ENOMEM;
2766
2767 cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
2768 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2769 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002770 cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002771 cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
2772
2773 rc = mwl8k_post_cmd(hw, &cmd->header);
2774 kfree(cmd);
2775
2776 if (!rc)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002777 priv->radio_on = enable;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002778
2779 return rc;
2780}
2781
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002782static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002783{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002784 return mwl8k_cmd_radio_control(hw, 0, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002785}
2786
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002787static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002788{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002789 return mwl8k_cmd_radio_control(hw, 1, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002790}
2791
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002792static int
2793mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
2794{
Lennert Buytenhek99200a992009-11-30 18:31:40 +01002795 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002796
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002797 priv->radio_short_preamble = short_preamble;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002798
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002799 return mwl8k_cmd_radio_control(hw, 1, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002800}
2801
2802/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002803 * CMD_RF_TX_POWER.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002804 */
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002805#define MWL8K_RF_TX_POWER_LEVEL_TOTAL 8
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002806
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002807struct mwl8k_cmd_rf_tx_power {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002808 struct mwl8k_cmd_pkt header;
2809 __le16 action;
2810 __le16 support_level;
2811 __le16 current_level;
2812 __le16 reserved;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002813 __le16 power_level_list[MWL8K_RF_TX_POWER_LEVEL_TOTAL];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002814} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002815
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002816static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw *hw, int dBm)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002817{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002818 struct mwl8k_cmd_rf_tx_power *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002819 int rc;
2820
2821 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2822 if (cmd == NULL)
2823 return -ENOMEM;
2824
2825 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
2826 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2827 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2828 cmd->support_level = cpu_to_le16(dBm);
2829
2830 rc = mwl8k_post_cmd(hw, &cmd->header);
2831 kfree(cmd);
2832
2833 return rc;
2834}
2835
2836/*
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002837 * CMD_TX_POWER.
2838 */
2839#define MWL8K_TX_POWER_LEVEL_TOTAL 12
2840
2841struct mwl8k_cmd_tx_power {
2842 struct mwl8k_cmd_pkt header;
2843 __le16 action;
2844 __le16 band;
2845 __le16 channel;
2846 __le16 bw;
2847 __le16 sub_ch;
2848 __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05302849} __packed;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002850
2851static int mwl8k_cmd_tx_power(struct ieee80211_hw *hw,
2852 struct ieee80211_conf *conf,
2853 unsigned short pwr)
2854{
2855 struct ieee80211_channel *channel = conf->channel;
2856 struct mwl8k_cmd_tx_power *cmd;
2857 int rc;
2858 int i;
2859
2860 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2861 if (cmd == NULL)
2862 return -ENOMEM;
2863
2864 cmd->header.code = cpu_to_le16(MWL8K_CMD_TX_POWER);
2865 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2866 cmd->action = cpu_to_le16(MWL8K_CMD_SET_LIST);
2867
2868 if (channel->band == IEEE80211_BAND_2GHZ)
2869 cmd->band = cpu_to_le16(0x1);
2870 else if (channel->band == IEEE80211_BAND_5GHZ)
2871 cmd->band = cpu_to_le16(0x4);
2872
Yogesh Ashok Powar604c4ef2012-01-17 15:45:15 +05302873 cmd->channel = cpu_to_le16(channel->hw_value);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002874
2875 if (conf->channel_type == NL80211_CHAN_NO_HT ||
2876 conf->channel_type == NL80211_CHAN_HT20) {
2877 cmd->bw = cpu_to_le16(0x2);
2878 } else {
2879 cmd->bw = cpu_to_le16(0x4);
2880 if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2881 cmd->sub_ch = cpu_to_le16(0x3);
2882 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2883 cmd->sub_ch = cpu_to_le16(0x1);
2884 }
2885
2886 for (i = 0; i < MWL8K_TX_POWER_LEVEL_TOTAL; i++)
2887 cmd->power_level_list[i] = cpu_to_le16(pwr);
2888
2889 rc = mwl8k_post_cmd(hw, &cmd->header);
2890 kfree(cmd);
2891
2892 return rc;
2893}
2894
2895/*
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002896 * CMD_RF_ANTENNA.
2897 */
2898struct mwl8k_cmd_rf_antenna {
2899 struct mwl8k_cmd_pkt header;
2900 __le16 antenna;
2901 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002902} __packed;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002903
2904#define MWL8K_RF_ANTENNA_RX 1
2905#define MWL8K_RF_ANTENNA_TX 2
2906
2907static int
2908mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask)
2909{
2910 struct mwl8k_cmd_rf_antenna *cmd;
2911 int rc;
2912
2913 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2914 if (cmd == NULL)
2915 return -ENOMEM;
2916
2917 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA);
2918 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2919 cmd->antenna = cpu_to_le16(antenna);
2920 cmd->mode = cpu_to_le16(mask);
2921
2922 rc = mwl8k_post_cmd(hw, &cmd->header);
2923 kfree(cmd);
2924
2925 return rc;
2926}
2927
2928/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002929 * CMD_SET_BEACON.
2930 */
2931struct mwl8k_cmd_set_beacon {
2932 struct mwl8k_cmd_pkt header;
2933 __le16 beacon_len;
2934 __u8 beacon[0];
2935};
2936
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002937static int mwl8k_cmd_set_beacon(struct ieee80211_hw *hw,
2938 struct ieee80211_vif *vif, u8 *beacon, int len)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002939{
2940 struct mwl8k_cmd_set_beacon *cmd;
2941 int rc;
2942
2943 cmd = kzalloc(sizeof(*cmd) + len, GFP_KERNEL);
2944 if (cmd == NULL)
2945 return -ENOMEM;
2946
2947 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_BEACON);
2948 cmd->header.length = cpu_to_le16(sizeof(*cmd) + len);
2949 cmd->beacon_len = cpu_to_le16(len);
2950 memcpy(cmd->beacon, beacon, len);
2951
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002952 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002953 kfree(cmd);
2954
2955 return rc;
2956}
2957
2958/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002959 * CMD_SET_PRE_SCAN.
2960 */
2961struct mwl8k_cmd_set_pre_scan {
2962 struct mwl8k_cmd_pkt header;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002963} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002964
2965static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
2966{
2967 struct mwl8k_cmd_set_pre_scan *cmd;
2968 int rc;
2969
2970 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2971 if (cmd == NULL)
2972 return -ENOMEM;
2973
2974 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
2975 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2976
2977 rc = mwl8k_post_cmd(hw, &cmd->header);
2978 kfree(cmd);
2979
2980 return rc;
2981}
2982
2983/*
2984 * CMD_SET_POST_SCAN.
2985 */
2986struct mwl8k_cmd_set_post_scan {
2987 struct mwl8k_cmd_pkt header;
2988 __le32 isibss;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002989 __u8 bssid[ETH_ALEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002990} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002991
2992static int
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002993mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002994{
2995 struct mwl8k_cmd_set_post_scan *cmd;
2996 int rc;
2997
2998 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2999 if (cmd == NULL)
3000 return -ENOMEM;
3001
3002 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
3003 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3004 cmd->isibss = 0;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02003005 memcpy(cmd->bssid, mac, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003006
3007 rc = mwl8k_post_cmd(hw, &cmd->header);
3008 kfree(cmd);
3009
3010 return rc;
3011}
3012
3013/*
3014 * CMD_SET_RF_CHANNEL.
3015 */
3016struct mwl8k_cmd_set_rf_channel {
3017 struct mwl8k_cmd_pkt header;
3018 __le16 action;
3019 __u8 current_channel;
3020 __le32 channel_flags;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003021} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003022
3023static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003024 struct ieee80211_conf *conf)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003025{
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003026 struct ieee80211_channel *channel = conf->channel;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003027 struct mwl8k_cmd_set_rf_channel *cmd;
3028 int rc;
3029
3030 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3031 if (cmd == NULL)
3032 return -ENOMEM;
3033
3034 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
3035 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3036 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3037 cmd->current_channel = channel->hw_value;
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003038
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003039 if (channel->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003040 cmd->channel_flags |= cpu_to_le32(0x00000001);
Lennert Buytenhek42574ea2010-01-12 13:49:18 +01003041 else if (channel->band == IEEE80211_BAND_5GHZ)
3042 cmd->channel_flags |= cpu_to_le32(0x00000004);
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003043
3044 if (conf->channel_type == NL80211_CHAN_NO_HT ||
3045 conf->channel_type == NL80211_CHAN_HT20)
3046 cmd->channel_flags |= cpu_to_le32(0x00000080);
3047 else if (conf->channel_type == NL80211_CHAN_HT40MINUS)
3048 cmd->channel_flags |= cpu_to_le32(0x000001900);
3049 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
3050 cmd->channel_flags |= cpu_to_le32(0x000000900);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003051
3052 rc = mwl8k_post_cmd(hw, &cmd->header);
3053 kfree(cmd);
3054
3055 return rc;
3056}
3057
3058/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003059 * CMD_SET_AID.
3060 */
3061#define MWL8K_FRAME_PROT_DISABLED 0x00
3062#define MWL8K_FRAME_PROT_11G 0x07
3063#define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
3064#define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
3065
3066struct mwl8k_cmd_update_set_aid {
3067 struct mwl8k_cmd_pkt header;
3068 __le16 aid;
3069
3070 /* AP's MAC address (BSSID) */
3071 __u8 bssid[ETH_ALEN];
3072 __le16 protection_mode;
3073 __u8 supp_rates[14];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003074} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003075
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003076static void legacy_rate_mask_to_array(u8 *rates, u32 mask)
3077{
3078 int i;
3079 int j;
3080
3081 /*
3082 * Clear nonstandard rates 4 and 13.
3083 */
3084 mask &= 0x1fef;
3085
3086 for (i = 0, j = 0; i < 14; i++) {
3087 if (mask & (1 << i))
Lennert Buytenhek777ad372010-01-12 13:48:04 +01003088 rates[j++] = mwl8k_rates_24[i].hw_value;
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003089 }
3090}
3091
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003092static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003093mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
3094 struct ieee80211_vif *vif, u32 legacy_rate_mask)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003095{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003096 struct mwl8k_cmd_update_set_aid *cmd;
3097 u16 prot_mode;
3098 int rc;
3099
3100 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3101 if (cmd == NULL)
3102 return -ENOMEM;
3103
3104 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
3105 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003106 cmd->aid = cpu_to_le16(vif->bss_conf.aid);
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003107 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003108
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003109 if (vif->bss_conf.use_cts_prot) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003110 prot_mode = MWL8K_FRAME_PROT_11G;
3111 } else {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003112 switch (vif->bss_conf.ht_operation_mode &
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003113 IEEE80211_HT_OP_MODE_PROTECTION) {
3114 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
3115 prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
3116 break;
3117 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
3118 prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
3119 break;
3120 default:
3121 prot_mode = MWL8K_FRAME_PROT_DISABLED;
3122 break;
3123 }
3124 }
3125 cmd->protection_mode = cpu_to_le16(prot_mode);
3126
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003127 legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003128
3129 rc = mwl8k_post_cmd(hw, &cmd->header);
3130 kfree(cmd);
3131
3132 return rc;
3133}
3134
3135/*
3136 * CMD_SET_RATE.
3137 */
3138struct mwl8k_cmd_set_rate {
3139 struct mwl8k_cmd_pkt header;
3140 __u8 legacy_rates[14];
3141
3142 /* Bitmap for supported MCS codes. */
3143 __u8 mcs_set[16];
3144 __u8 reserved[16];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003145} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003146
3147static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003148mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003149 u32 legacy_rate_mask, u8 *mcs_rates)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003150{
3151 struct mwl8k_cmd_set_rate *cmd;
3152 int rc;
3153
3154 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3155 if (cmd == NULL)
3156 return -ENOMEM;
3157
3158 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE);
3159 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003160 legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003161 memcpy(cmd->mcs_set, mcs_rates, 16);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003162
3163 rc = mwl8k_post_cmd(hw, &cmd->header);
3164 kfree(cmd);
3165
3166 return rc;
3167}
3168
3169/*
3170 * CMD_FINALIZE_JOIN.
3171 */
3172#define MWL8K_FJ_BEACON_MAXLEN 128
3173
3174struct mwl8k_cmd_finalize_join {
3175 struct mwl8k_cmd_pkt header;
3176 __le32 sleep_interval; /* Number of beacon periods to sleep */
3177 __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003178} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003179
3180static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame,
3181 int framelen, int dtim)
3182{
3183 struct mwl8k_cmd_finalize_join *cmd;
3184 struct ieee80211_mgmt *payload = frame;
3185 int payload_len;
3186 int rc;
3187
3188 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3189 if (cmd == NULL)
3190 return -ENOMEM;
3191
3192 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN);
3193 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3194 cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
3195
3196 payload_len = framelen - ieee80211_hdrlen(payload->frame_control);
3197 if (payload_len < 0)
3198 payload_len = 0;
3199 else if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
3200 payload_len = MWL8K_FJ_BEACON_MAXLEN;
3201
3202 memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
3203
3204 rc = mwl8k_post_cmd(hw, &cmd->header);
3205 kfree(cmd);
3206
3207 return rc;
3208}
3209
3210/*
3211 * CMD_SET_RTS_THRESHOLD.
3212 */
3213struct mwl8k_cmd_set_rts_threshold {
3214 struct mwl8k_cmd_pkt header;
3215 __le16 action;
3216 __le16 threshold;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003217} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003218
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003219static int
3220mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw, int rts_thresh)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003221{
3222 struct mwl8k_cmd_set_rts_threshold *cmd;
3223 int rc;
3224
3225 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3226 if (cmd == NULL)
3227 return -ENOMEM;
3228
3229 cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
3230 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003231 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3232 cmd->threshold = cpu_to_le16(rts_thresh);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003233
3234 rc = mwl8k_post_cmd(hw, &cmd->header);
3235 kfree(cmd);
3236
3237 return rc;
3238}
3239
3240/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003241 * CMD_SET_SLOT.
3242 */
3243struct mwl8k_cmd_set_slot {
3244 struct mwl8k_cmd_pkt header;
3245 __le16 action;
3246 __u8 short_slot;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003247} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003248
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003249static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003250{
3251 struct mwl8k_cmd_set_slot *cmd;
3252 int rc;
3253
3254 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3255 if (cmd == NULL)
3256 return -ENOMEM;
3257
3258 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
3259 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3260 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003261 cmd->short_slot = short_slot_time;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003262
3263 rc = mwl8k_post_cmd(hw, &cmd->header);
3264 kfree(cmd);
3265
3266 return rc;
3267}
3268
3269/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003270 * CMD_SET_EDCA_PARAMS.
3271 */
3272struct mwl8k_cmd_set_edca_params {
3273 struct mwl8k_cmd_pkt header;
3274
3275 /* See MWL8K_SET_EDCA_XXX below */
3276 __le16 action;
3277
3278 /* TX opportunity in units of 32 us */
3279 __le16 txop;
3280
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003281 union {
3282 struct {
3283 /* Log exponent of max contention period: 0...15 */
3284 __le32 log_cw_max;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003285
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003286 /* Log exponent of min contention period: 0...15 */
3287 __le32 log_cw_min;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003288
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003289 /* Adaptive interframe spacing in units of 32us */
3290 __u8 aifs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003291
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003292 /* TX queue to configure */
3293 __u8 txq;
3294 } ap;
3295 struct {
3296 /* Log exponent of max contention period: 0...15 */
3297 __u8 log_cw_max;
3298
3299 /* Log exponent of min contention period: 0...15 */
3300 __u8 log_cw_min;
3301
3302 /* Adaptive interframe spacing in units of 32us */
3303 __u8 aifs;
3304
3305 /* TX queue to configure */
3306 __u8 txq;
3307 } sta;
3308 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003309} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003310
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003311#define MWL8K_SET_EDCA_CW 0x01
3312#define MWL8K_SET_EDCA_TXOP 0x02
3313#define MWL8K_SET_EDCA_AIFS 0x04
3314
3315#define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
3316 MWL8K_SET_EDCA_TXOP | \
3317 MWL8K_SET_EDCA_AIFS)
3318
3319static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003320mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
3321 __u16 cw_min, __u16 cw_max,
3322 __u8 aifs, __u16 txop)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003323{
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003324 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003325 struct mwl8k_cmd_set_edca_params *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003326 int rc;
3327
3328 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3329 if (cmd == NULL)
3330 return -ENOMEM;
3331
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003332 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
3333 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003334 cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
3335 cmd->txop = cpu_to_le16(txop);
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003336 if (priv->ap_fw) {
3337 cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1));
3338 cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1));
3339 cmd->ap.aifs = aifs;
3340 cmd->ap.txq = qnum;
3341 } else {
3342 cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1);
3343 cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1);
3344 cmd->sta.aifs = aifs;
3345 cmd->sta.txq = qnum;
3346 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003347
3348 rc = mwl8k_post_cmd(hw, &cmd->header);
3349 kfree(cmd);
3350
3351 return rc;
3352}
3353
3354/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003355 * CMD_SET_WMM_MODE.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003356 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003357struct mwl8k_cmd_set_wmm_mode {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003358 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003359 __le16 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003360} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003361
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003362static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw *hw, bool enable)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003363{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003364 struct mwl8k_priv *priv = hw->priv;
3365 struct mwl8k_cmd_set_wmm_mode *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003366 int rc;
3367
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003368 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3369 if (cmd == NULL)
3370 return -ENOMEM;
3371
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003372 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003373 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003374 cmd->action = cpu_to_le16(!!enable);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003375
3376 rc = mwl8k_post_cmd(hw, &cmd->header);
3377 kfree(cmd);
Lennert Buytenhek16cec432009-11-30 18:14:23 +01003378
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003379 if (!rc)
3380 priv->wmm_enabled = enable;
3381
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003382 return rc;
3383}
3384
3385/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003386 * CMD_MIMO_CONFIG.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003387 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003388struct mwl8k_cmd_mimo_config {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003389 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003390 __le32 action;
3391 __u8 rx_antenna_map;
3392 __u8 tx_antenna_map;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003393} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003394
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003395static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003396{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003397 struct mwl8k_cmd_mimo_config *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003398 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003399
3400 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3401 if (cmd == NULL)
3402 return -ENOMEM;
3403
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003404 cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003405 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003406 cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET);
3407 cmd->rx_antenna_map = rx;
3408 cmd->tx_antenna_map = tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003409
3410 rc = mwl8k_post_cmd(hw, &cmd->header);
3411 kfree(cmd);
3412
3413 return rc;
3414}
3415
3416/*
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003417 * CMD_USE_FIXED_RATE (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003418 */
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003419struct mwl8k_cmd_use_fixed_rate_sta {
3420 struct mwl8k_cmd_pkt header;
3421 __le32 action;
3422 __le32 allow_rate_drop;
3423 __le32 num_rates;
3424 struct {
3425 __le32 is_ht_rate;
3426 __le32 enable_retry;
3427 __le32 rate;
3428 __le32 retry_count;
3429 } rate_entry[8];
3430 __le32 rate_type;
3431 __le32 reserved1;
3432 __le32 reserved2;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003433} __packed;
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003434
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003435#define MWL8K_USE_AUTO_RATE 0x0002
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003436#define MWL8K_UCAST_RATE 0
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003437
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003438static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003439{
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003440 struct mwl8k_cmd_use_fixed_rate_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003441 int rc;
3442
3443 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3444 if (cmd == NULL)
3445 return -ENOMEM;
3446
3447 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3448 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003449 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3450 cmd->rate_type = cpu_to_le32(MWL8K_UCAST_RATE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003451
3452 rc = mwl8k_post_cmd(hw, &cmd->header);
3453 kfree(cmd);
3454
3455 return rc;
3456}
3457
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003458/*
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003459 * CMD_USE_FIXED_RATE (AP version).
3460 */
3461struct mwl8k_cmd_use_fixed_rate_ap {
3462 struct mwl8k_cmd_pkt header;
3463 __le32 action;
3464 __le32 allow_rate_drop;
3465 __le32 num_rates;
3466 struct mwl8k_rate_entry_ap {
3467 __le32 is_ht_rate;
3468 __le32 enable_retry;
3469 __le32 rate;
3470 __le32 retry_count;
3471 } rate_entry[4];
3472 u8 multicast_rate;
3473 u8 multicast_rate_type;
3474 u8 management_rate;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003475} __packed;
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003476
3477static int
3478mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw *hw, int mcast, int mgmt)
3479{
3480 struct mwl8k_cmd_use_fixed_rate_ap *cmd;
3481 int rc;
3482
3483 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3484 if (cmd == NULL)
3485 return -ENOMEM;
3486
3487 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3488 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3489 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3490 cmd->multicast_rate = mcast;
3491 cmd->management_rate = mgmt;
3492
3493 rc = mwl8k_post_cmd(hw, &cmd->header);
3494 kfree(cmd);
3495
3496 return rc;
3497}
3498
3499/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003500 * CMD_ENABLE_SNIFFER.
3501 */
3502struct mwl8k_cmd_enable_sniffer {
3503 struct mwl8k_cmd_pkt header;
3504 __le32 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003505} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003506
3507static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable)
3508{
3509 struct mwl8k_cmd_enable_sniffer *cmd;
3510 int rc;
3511
3512 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3513 if (cmd == NULL)
3514 return -ENOMEM;
3515
3516 cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
3517 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3518 cmd->action = cpu_to_le32(!!enable);
3519
3520 rc = mwl8k_post_cmd(hw, &cmd->header);
3521 kfree(cmd);
3522
3523 return rc;
3524}
3525
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303526struct mwl8k_cmd_update_mac_addr {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003527 struct mwl8k_cmd_pkt header;
3528 union {
3529 struct {
3530 __le16 mac_type;
3531 __u8 mac_addr[ETH_ALEN];
3532 } mbss;
3533 __u8 mac_addr[ETH_ALEN];
3534 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003535} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003536
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003537#define MWL8K_MAC_TYPE_PRIMARY_CLIENT 0
3538#define MWL8K_MAC_TYPE_SECONDARY_CLIENT 1
3539#define MWL8K_MAC_TYPE_PRIMARY_AP 2
3540#define MWL8K_MAC_TYPE_SECONDARY_AP 3
Lennert Buytenheka9e00b12010-01-08 18:31:30 +01003541
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303542static int mwl8k_cmd_update_mac_addr(struct ieee80211_hw *hw,
3543 struct ieee80211_vif *vif, u8 *mac, bool set)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003544{
3545 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003546 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303547 struct mwl8k_cmd_update_mac_addr *cmd;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003548 int mac_type;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003549 int rc;
3550
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003551 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3552 if (vif != NULL && vif->type == NL80211_IFTYPE_STATION) {
3553 if (mwl8k_vif->macid + 1 == ffs(priv->sta_macids_supported))
Yogesh Ashok Powaraf458832013-01-25 16:20:12 +05303554 if (priv->ap_fw)
3555 mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
3556 else
3557 mac_type = MWL8K_MAC_TYPE_PRIMARY_CLIENT;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003558 else
3559 mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
3560 } else if (vif != NULL && vif->type == NL80211_IFTYPE_AP) {
3561 if (mwl8k_vif->macid + 1 == ffs(priv->ap_macids_supported))
3562 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3563 else
3564 mac_type = MWL8K_MAC_TYPE_SECONDARY_AP;
3565 }
3566
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003567 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3568 if (cmd == NULL)
3569 return -ENOMEM;
3570
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303571 if (set)
3572 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR);
3573 else
3574 cmd->header.code = cpu_to_le16(MWL8K_CMD_DEL_MAC_ADDR);
3575
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003576 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3577 if (priv->ap_fw) {
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003578 cmd->mbss.mac_type = cpu_to_le16(mac_type);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003579 memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN);
3580 } else {
3581 memcpy(cmd->mac_addr, mac, ETH_ALEN);
3582 }
3583
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003584 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003585 kfree(cmd);
3586
3587 return rc;
3588}
3589
3590/*
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303591 * MWL8K_CMD_SET_MAC_ADDR.
3592 */
3593static inline int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw,
3594 struct ieee80211_vif *vif, u8 *mac)
3595{
3596 return mwl8k_cmd_update_mac_addr(hw, vif, mac, true);
3597}
3598
3599/*
3600 * MWL8K_CMD_DEL_MAC_ADDR.
3601 */
3602static inline int mwl8k_cmd_del_mac_addr(struct ieee80211_hw *hw,
3603 struct ieee80211_vif *vif, u8 *mac)
3604{
3605 return mwl8k_cmd_update_mac_addr(hw, vif, mac, false);
3606}
3607
3608/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003609 * CMD_SET_RATEADAPT_MODE.
3610 */
3611struct mwl8k_cmd_set_rate_adapt_mode {
3612 struct mwl8k_cmd_pkt header;
3613 __le16 action;
3614 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003615} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003616
3617static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode)
3618{
3619 struct mwl8k_cmd_set_rate_adapt_mode *cmd;
3620 int rc;
3621
3622 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3623 if (cmd == NULL)
3624 return -ENOMEM;
3625
3626 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
3627 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3628 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3629 cmd->mode = cpu_to_le16(mode);
3630
3631 rc = mwl8k_post_cmd(hw, &cmd->header);
3632 kfree(cmd);
3633
3634 return rc;
3635}
3636
3637/*
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003638 * CMD_GET_WATCHDOG_BITMAP.
3639 */
3640struct mwl8k_cmd_get_watchdog_bitmap {
3641 struct mwl8k_cmd_pkt header;
3642 u8 bitmap;
3643} __packed;
3644
3645static int mwl8k_cmd_get_watchdog_bitmap(struct ieee80211_hw *hw, u8 *bitmap)
3646{
3647 struct mwl8k_cmd_get_watchdog_bitmap *cmd;
3648 int rc;
3649
3650 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3651 if (cmd == NULL)
3652 return -ENOMEM;
3653
3654 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_WATCHDOG_BITMAP);
3655 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3656
3657 rc = mwl8k_post_cmd(hw, &cmd->header);
3658 if (!rc)
3659 *bitmap = cmd->bitmap;
3660
3661 kfree(cmd);
3662
3663 return rc;
3664}
3665
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303666#define MWL8K_WMM_QUEUE_NUMBER 3
3667
3668static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
3669 u8 idx);
3670
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003671static void mwl8k_watchdog_ba_events(struct work_struct *work)
3672{
3673 int rc;
3674 u8 bitmap = 0, stream_index;
3675 struct mwl8k_ampdu_stream *streams;
3676 struct mwl8k_priv *priv =
3677 container_of(work, struct mwl8k_priv, watchdog_ba_handle);
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303678 struct ieee80211_hw *hw = priv->hw;
3679 int i;
3680 u32 status = 0;
3681
3682 mwl8k_fw_lock(hw);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003683
3684 rc = mwl8k_cmd_get_watchdog_bitmap(priv->hw, &bitmap);
3685 if (rc)
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303686 goto done;
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003687
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303688 spin_lock(&priv->stream_lock);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003689
3690 /* the bitmap is the hw queue number. Map it to the ampdu queue. */
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303691 for (i = 0; i < TOTAL_HW_TX_QUEUES; i++) {
3692 if (bitmap & (1 << i)) {
3693 stream_index = (i + MWL8K_WMM_QUEUE_NUMBER) %
3694 TOTAL_HW_TX_QUEUES;
3695 streams = &priv->ampdu[stream_index];
3696 if (streams->state == AMPDU_STREAM_ACTIVE) {
3697 ieee80211_stop_tx_ba_session(streams->sta,
3698 streams->tid);
3699 spin_unlock(&priv->stream_lock);
3700 mwl8k_destroy_ba(hw, stream_index);
3701 spin_lock(&priv->stream_lock);
3702 }
3703 }
3704 }
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003705
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303706 spin_unlock(&priv->stream_lock);
3707done:
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05303708 atomic_dec(&priv->watchdog_event_pending);
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303709 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3710 iowrite32((status | MWL8K_A2H_INT_BA_WATCHDOG),
3711 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3712 mwl8k_fw_unlock(hw);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003713 return;
3714}
3715
3716
3717/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003718 * CMD_BSS_START.
3719 */
3720struct mwl8k_cmd_bss_start {
3721 struct mwl8k_cmd_pkt header;
3722 __le32 enable;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003723} __packed;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003724
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003725static int mwl8k_cmd_bss_start(struct ieee80211_hw *hw,
3726 struct ieee80211_vif *vif, int enable)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003727{
3728 struct mwl8k_cmd_bss_start *cmd;
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303729 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
3730 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003731 int rc;
3732
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303733 if (enable && (priv->running_bsses & (1 << mwl8k_vif->macid)))
3734 return 0;
3735
3736 if (!enable && !(priv->running_bsses & (1 << mwl8k_vif->macid)))
3737 return 0;
3738
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003739 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3740 if (cmd == NULL)
3741 return -ENOMEM;
3742
3743 cmd->header.code = cpu_to_le16(MWL8K_CMD_BSS_START);
3744 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3745 cmd->enable = cpu_to_le32(enable);
3746
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003747 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003748 kfree(cmd);
3749
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303750 if (!rc) {
3751 if (enable)
3752 priv->running_bsses |= (1 << mwl8k_vif->macid);
3753 else
3754 priv->running_bsses &= ~(1 << mwl8k_vif->macid);
3755 }
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003756 return rc;
3757}
3758
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303759static void mwl8k_enable_bsses(struct ieee80211_hw *hw, bool enable, u32 bitmap)
3760{
3761 struct mwl8k_priv *priv = hw->priv;
3762 struct mwl8k_vif *mwl8k_vif, *tmp_vif;
3763 struct ieee80211_vif *vif;
3764
3765 list_for_each_entry_safe(mwl8k_vif, tmp_vif, &priv->vif_list, list) {
3766 vif = mwl8k_vif->vif;
3767
3768 if (!(bitmap & (1 << mwl8k_vif->macid)))
3769 continue;
3770
3771 if (vif->type == NL80211_IFTYPE_AP)
3772 mwl8k_cmd_bss_start(hw, vif, enable);
3773 }
3774}
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003775/*
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003776 * CMD_BASTREAM.
3777 */
3778
3779/*
3780 * UPSTREAM is tx direction
3781 */
3782#define BASTREAM_FLAG_DIRECTION_UPSTREAM 0x00
3783#define BASTREAM_FLAG_IMMEDIATE_TYPE 0x01
3784
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303785enum ba_stream_action_type {
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003786 MWL8K_BA_CREATE,
3787 MWL8K_BA_UPDATE,
3788 MWL8K_BA_DESTROY,
3789 MWL8K_BA_FLUSH,
3790 MWL8K_BA_CHECK,
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303791};
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003792
3793
3794struct mwl8k_create_ba_stream {
3795 __le32 flags;
3796 __le32 idle_thrs;
3797 __le32 bar_thrs;
3798 __le32 window_size;
3799 u8 peer_mac_addr[6];
3800 u8 dialog_token;
3801 u8 tid;
3802 u8 queue_id;
3803 u8 param_info;
3804 __le32 ba_context;
3805 u8 reset_seq_no_flag;
3806 __le16 curr_seq_no;
3807 u8 sta_src_mac_addr[6];
3808} __packed;
3809
3810struct mwl8k_destroy_ba_stream {
3811 __le32 flags;
3812 __le32 ba_context;
3813} __packed;
3814
3815struct mwl8k_cmd_bastream {
3816 struct mwl8k_cmd_pkt header;
3817 __le32 action;
3818 union {
3819 struct mwl8k_create_ba_stream create_params;
3820 struct mwl8k_destroy_ba_stream destroy_params;
3821 };
3822} __packed;
3823
3824static int
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303825mwl8k_check_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
3826 struct ieee80211_vif *vif)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003827{
3828 struct mwl8k_cmd_bastream *cmd;
3829 int rc;
3830
3831 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3832 if (cmd == NULL)
3833 return -ENOMEM;
3834
3835 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3836 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3837
3838 cmd->action = cpu_to_le32(MWL8K_BA_CHECK);
3839
3840 cmd->create_params.queue_id = stream->idx;
3841 memcpy(&cmd->create_params.peer_mac_addr[0], stream->sta->addr,
3842 ETH_ALEN);
3843 cmd->create_params.tid = stream->tid;
3844
3845 cmd->create_params.flags =
3846 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE) |
3847 cpu_to_le32(BASTREAM_FLAG_DIRECTION_UPSTREAM);
3848
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303849 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003850
3851 kfree(cmd);
3852
3853 return rc;
3854}
3855
3856static int
3857mwl8k_create_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303858 u8 buf_size, struct ieee80211_vif *vif)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003859{
3860 struct mwl8k_cmd_bastream *cmd;
3861 int rc;
3862
3863 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3864 if (cmd == NULL)
3865 return -ENOMEM;
3866
3867
3868 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3869 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3870
3871 cmd->action = cpu_to_le32(MWL8K_BA_CREATE);
3872
3873 cmd->create_params.bar_thrs = cpu_to_le32((u32)buf_size);
3874 cmd->create_params.window_size = cpu_to_le32((u32)buf_size);
3875 cmd->create_params.queue_id = stream->idx;
3876
3877 memcpy(cmd->create_params.peer_mac_addr, stream->sta->addr, ETH_ALEN);
3878 cmd->create_params.tid = stream->tid;
3879 cmd->create_params.curr_seq_no = cpu_to_le16(0);
3880 cmd->create_params.reset_seq_no_flag = 1;
3881
3882 cmd->create_params.param_info =
3883 (stream->sta->ht_cap.ampdu_factor &
3884 IEEE80211_HT_AMPDU_PARM_FACTOR) |
3885 ((stream->sta->ht_cap.ampdu_density << 2) &
3886 IEEE80211_HT_AMPDU_PARM_DENSITY);
3887
3888 cmd->create_params.flags =
3889 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE |
3890 BASTREAM_FLAG_DIRECTION_UPSTREAM);
3891
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303892 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003893
3894 wiphy_debug(hw->wiphy, "Created a BA stream for %pM : tid %d\n",
3895 stream->sta->addr, stream->tid);
3896 kfree(cmd);
3897
3898 return rc;
3899}
3900
3901static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05303902 u8 idx)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003903{
3904 struct mwl8k_cmd_bastream *cmd;
3905
3906 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3907 if (cmd == NULL)
3908 return;
3909
3910 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3911 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3912 cmd->action = cpu_to_le32(MWL8K_BA_DESTROY);
3913
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05303914 cmd->destroy_params.ba_context = cpu_to_le32(idx);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003915 mwl8k_post_cmd(hw, &cmd->header);
3916
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05303917 wiphy_debug(hw->wiphy, "Deleted BA stream index %d\n", idx);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003918
3919 kfree(cmd);
3920}
3921
3922/*
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003923 * CMD_SET_NEW_STN.
3924 */
3925struct mwl8k_cmd_set_new_stn {
3926 struct mwl8k_cmd_pkt header;
3927 __le16 aid;
3928 __u8 mac_addr[6];
3929 __le16 stn_id;
3930 __le16 action;
3931 __le16 rsvd;
3932 __le32 legacy_rates;
3933 __u8 ht_rates[4];
3934 __le16 cap_info;
3935 __le16 ht_capabilities_info;
3936 __u8 mac_ht_param_info;
3937 __u8 rev;
3938 __u8 control_channel;
3939 __u8 add_channel;
3940 __le16 op_mode;
3941 __le16 stbc;
3942 __u8 add_qos_info;
3943 __u8 is_qos_sta;
3944 __le32 fw_sta_ptr;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003945} __packed;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003946
3947#define MWL8K_STA_ACTION_ADD 0
3948#define MWL8K_STA_ACTION_REMOVE 2
3949
3950static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw *hw,
3951 struct ieee80211_vif *vif,
3952 struct ieee80211_sta *sta)
3953{
3954 struct mwl8k_cmd_set_new_stn *cmd;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003955 u32 rates;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003956 int rc;
3957
3958 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3959 if (cmd == NULL)
3960 return -ENOMEM;
3961
3962 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3963 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3964 cmd->aid = cpu_to_le16(sta->aid);
3965 memcpy(cmd->mac_addr, sta->addr, ETH_ALEN);
3966 cmd->stn_id = cpu_to_le16(sta->aid);
3967 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_ADD);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003968 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
3969 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
3970 else
3971 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
3972 cmd->legacy_rates = cpu_to_le32(rates);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003973 if (sta->ht_cap.ht_supported) {
3974 cmd->ht_rates[0] = sta->ht_cap.mcs.rx_mask[0];
3975 cmd->ht_rates[1] = sta->ht_cap.mcs.rx_mask[1];
3976 cmd->ht_rates[2] = sta->ht_cap.mcs.rx_mask[2];
3977 cmd->ht_rates[3] = sta->ht_cap.mcs.rx_mask[3];
3978 cmd->ht_capabilities_info = cpu_to_le16(sta->ht_cap.cap);
3979 cmd->mac_ht_param_info = (sta->ht_cap.ampdu_factor & 3) |
3980 ((sta->ht_cap.ampdu_density & 7) << 2);
3981 cmd->is_qos_sta = 1;
3982 }
3983
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003984 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003985 kfree(cmd);
3986
3987 return rc;
3988}
3989
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003990static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw *hw,
3991 struct ieee80211_vif *vif)
3992{
3993 struct mwl8k_cmd_set_new_stn *cmd;
3994 int rc;
3995
3996 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3997 if (cmd == NULL)
3998 return -ENOMEM;
3999
4000 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
4001 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4002 memcpy(cmd->mac_addr, vif->addr, ETH_ALEN);
4003
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004004 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004005 kfree(cmd);
4006
4007 return rc;
4008}
4009
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004010static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw *hw,
4011 struct ieee80211_vif *vif, u8 *addr)
4012{
4013 struct mwl8k_cmd_set_new_stn *cmd;
Yogesh Ashok Powar0dd13a42013-01-08 10:16:37 +05304014 struct mwl8k_priv *priv = hw->priv;
4015 int rc, i;
4016 u8 idx;
4017
4018 spin_lock(&priv->stream_lock);
4019 /* Destroy any active ampdu streams for this sta */
4020 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
4021 struct mwl8k_ampdu_stream *s;
4022 s = &priv->ampdu[i];
4023 if (s->state != AMPDU_NO_STREAM) {
4024 if (memcmp(s->sta->addr, addr, ETH_ALEN) == 0) {
4025 if (s->state == AMPDU_STREAM_ACTIVE) {
4026 idx = s->idx;
4027 spin_unlock(&priv->stream_lock);
4028 mwl8k_destroy_ba(hw, idx);
4029 spin_lock(&priv->stream_lock);
4030 } else if (s->state == AMPDU_STREAM_NEW) {
4031 mwl8k_remove_stream(hw, s);
4032 }
4033 }
4034 }
4035 }
4036
4037 spin_unlock(&priv->stream_lock);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004038
4039 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4040 if (cmd == NULL)
4041 return -ENOMEM;
4042
4043 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
4044 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4045 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4046 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_REMOVE);
4047
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004048 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004049 kfree(cmd);
4050
4051 return rc;
4052}
4053
4054/*
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004055 * CMD_UPDATE_ENCRYPTION.
4056 */
4057
4058#define MAX_ENCR_KEY_LENGTH 16
4059#define MIC_KEY_LENGTH 8
4060
4061struct mwl8k_cmd_update_encryption {
4062 struct mwl8k_cmd_pkt header;
4063
4064 __le32 action;
4065 __le32 reserved;
4066 __u8 mac_addr[6];
4067 __u8 encr_type;
4068
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304069} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004070
4071struct mwl8k_cmd_set_key {
4072 struct mwl8k_cmd_pkt header;
4073
4074 __le32 action;
4075 __le32 reserved;
4076 __le16 length;
4077 __le16 key_type_id;
4078 __le32 key_info;
4079 __le32 key_id;
4080 __le16 key_len;
4081 __u8 key_material[MAX_ENCR_KEY_LENGTH];
4082 __u8 tkip_tx_mic_key[MIC_KEY_LENGTH];
4083 __u8 tkip_rx_mic_key[MIC_KEY_LENGTH];
4084 __le16 tkip_rsc_low;
4085 __le32 tkip_rsc_high;
4086 __le16 tkip_tsc_low;
4087 __le32 tkip_tsc_high;
4088 __u8 mac_addr[6];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304089} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004090
4091enum {
4092 MWL8K_ENCR_ENABLE,
4093 MWL8K_ENCR_SET_KEY,
4094 MWL8K_ENCR_REMOVE_KEY,
4095 MWL8K_ENCR_SET_GROUP_KEY,
4096};
4097
4098#define MWL8K_UPDATE_ENCRYPTION_TYPE_WEP 0
4099#define MWL8K_UPDATE_ENCRYPTION_TYPE_DISABLE 1
4100#define MWL8K_UPDATE_ENCRYPTION_TYPE_TKIP 4
4101#define MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED 7
4102#define MWL8K_UPDATE_ENCRYPTION_TYPE_AES 8
4103
4104enum {
4105 MWL8K_ALG_WEP,
4106 MWL8K_ALG_TKIP,
4107 MWL8K_ALG_CCMP,
4108};
4109
4110#define MWL8K_KEY_FLAG_TXGROUPKEY 0x00000004
4111#define MWL8K_KEY_FLAG_PAIRWISE 0x00000008
4112#define MWL8K_KEY_FLAG_TSC_VALID 0x00000040
4113#define MWL8K_KEY_FLAG_WEP_TXKEY 0x01000000
4114#define MWL8K_KEY_FLAG_MICKEY_VALID 0x02000000
4115
4116static int mwl8k_cmd_update_encryption_enable(struct ieee80211_hw *hw,
4117 struct ieee80211_vif *vif,
4118 u8 *addr,
4119 u8 encr_type)
4120{
4121 struct mwl8k_cmd_update_encryption *cmd;
4122 int rc;
4123
4124 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4125 if (cmd == NULL)
4126 return -ENOMEM;
4127
4128 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
4129 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4130 cmd->action = cpu_to_le32(MWL8K_ENCR_ENABLE);
4131 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4132 cmd->encr_type = encr_type;
4133
4134 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4135 kfree(cmd);
4136
4137 return rc;
4138}
4139
4140static int mwl8k_encryption_set_cmd_info(struct mwl8k_cmd_set_key *cmd,
4141 u8 *addr,
4142 struct ieee80211_key_conf *key)
4143{
4144 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
4145 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4146 cmd->length = cpu_to_le16(sizeof(*cmd) -
4147 offsetof(struct mwl8k_cmd_set_key, length));
4148 cmd->key_id = cpu_to_le32(key->keyidx);
4149 cmd->key_len = cpu_to_le16(key->keylen);
4150 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4151
4152 switch (key->cipher) {
4153 case WLAN_CIPHER_SUITE_WEP40:
4154 case WLAN_CIPHER_SUITE_WEP104:
4155 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_WEP);
4156 if (key->keyidx == 0)
4157 cmd->key_info = cpu_to_le32(MWL8K_KEY_FLAG_WEP_TXKEY);
4158
4159 break;
4160 case WLAN_CIPHER_SUITE_TKIP:
4161 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_TKIP);
4162 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4163 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
4164 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
4165 cmd->key_info |= cpu_to_le32(MWL8K_KEY_FLAG_MICKEY_VALID
4166 | MWL8K_KEY_FLAG_TSC_VALID);
4167 break;
4168 case WLAN_CIPHER_SUITE_CCMP:
4169 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_CCMP);
4170 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4171 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
4172 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
4173 break;
4174 default:
4175 return -ENOTSUPP;
4176 }
4177
4178 return 0;
4179}
4180
4181static int mwl8k_cmd_encryption_set_key(struct ieee80211_hw *hw,
4182 struct ieee80211_vif *vif,
4183 u8 *addr,
4184 struct ieee80211_key_conf *key)
4185{
4186 struct mwl8k_cmd_set_key *cmd;
4187 int rc;
4188 int keymlen;
4189 u32 action;
4190 u8 idx;
4191 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4192
4193 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4194 if (cmd == NULL)
4195 return -ENOMEM;
4196
4197 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4198 if (rc < 0)
4199 goto done;
4200
4201 idx = key->keyidx;
4202
4203 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4204 action = MWL8K_ENCR_SET_KEY;
4205 else
4206 action = MWL8K_ENCR_SET_GROUP_KEY;
4207
4208 switch (key->cipher) {
4209 case WLAN_CIPHER_SUITE_WEP40:
4210 case WLAN_CIPHER_SUITE_WEP104:
4211 if (!mwl8k_vif->wep_key_conf[idx].enabled) {
4212 memcpy(mwl8k_vif->wep_key_conf[idx].key, key,
4213 sizeof(*key) + key->keylen);
4214 mwl8k_vif->wep_key_conf[idx].enabled = 1;
4215 }
4216
Yogesh Ashok Powar9b571e22011-05-04 17:22:16 +05304217 keymlen = key->keylen;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004218 action = MWL8K_ENCR_SET_KEY;
4219 break;
4220 case WLAN_CIPHER_SUITE_TKIP:
4221 keymlen = MAX_ENCR_KEY_LENGTH + 2 * MIC_KEY_LENGTH;
4222 break;
4223 case WLAN_CIPHER_SUITE_CCMP:
4224 keymlen = key->keylen;
4225 break;
4226 default:
4227 rc = -ENOTSUPP;
4228 goto done;
4229 }
4230
4231 memcpy(cmd->key_material, key->key, keymlen);
4232 cmd->action = cpu_to_le32(action);
4233
4234 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4235done:
4236 kfree(cmd);
4237
4238 return rc;
4239}
4240
4241static int mwl8k_cmd_encryption_remove_key(struct ieee80211_hw *hw,
4242 struct ieee80211_vif *vif,
4243 u8 *addr,
4244 struct ieee80211_key_conf *key)
4245{
4246 struct mwl8k_cmd_set_key *cmd;
4247 int rc;
4248 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4249
4250 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4251 if (cmd == NULL)
4252 return -ENOMEM;
4253
4254 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4255 if (rc < 0)
4256 goto done;
4257
4258 if (key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
Dan Carpenterd981e052012-01-17 10:33:31 +03004259 key->cipher == WLAN_CIPHER_SUITE_WEP104)
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004260 mwl8k_vif->wep_key_conf[key->keyidx].enabled = 0;
4261
4262 cmd->action = cpu_to_le32(MWL8K_ENCR_REMOVE_KEY);
4263
4264 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4265done:
4266 kfree(cmd);
4267
4268 return rc;
4269}
4270
4271static int mwl8k_set_key(struct ieee80211_hw *hw,
4272 enum set_key_cmd cmd_param,
4273 struct ieee80211_vif *vif,
4274 struct ieee80211_sta *sta,
4275 struct ieee80211_key_conf *key)
4276{
4277 int rc = 0;
4278 u8 encr_type;
4279 u8 *addr;
4280 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Yogesh Ashok Powar751930c2013-01-25 16:20:28 +05304281 struct mwl8k_priv *priv = hw->priv;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004282
Yogesh Ashok Powar751930c2013-01-25 16:20:28 +05304283 if (vif->type == NL80211_IFTYPE_STATION && !priv->ap_fw)
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004284 return -EOPNOTSUPP;
4285
4286 if (sta == NULL)
Yogesh Ashok Powarff7e9f92012-01-27 16:08:27 +05304287 addr = vif->addr;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004288 else
4289 addr = sta->addr;
4290
4291 if (cmd_param == SET_KEY) {
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004292 rc = mwl8k_cmd_encryption_set_key(hw, vif, addr, key);
4293 if (rc)
4294 goto out;
4295
4296 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40)
4297 || (key->cipher == WLAN_CIPHER_SUITE_WEP104))
4298 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_WEP;
4299 else
4300 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED;
4301
4302 rc = mwl8k_cmd_update_encryption_enable(hw, vif, addr,
4303 encr_type);
4304 if (rc)
4305 goto out;
4306
4307 mwl8k_vif->is_hw_crypto_enabled = true;
4308
4309 } else {
4310 rc = mwl8k_cmd_encryption_remove_key(hw, vif, addr, key);
4311
4312 if (rc)
4313 goto out;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004314 }
4315out:
4316 return rc;
4317}
4318
4319/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004320 * CMD_UPDATE_STADB.
4321 */
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004322struct ewc_ht_info {
4323 __le16 control1;
4324 __le16 control2;
4325 __le16 control3;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004326} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004327
4328struct peer_capability_info {
4329 /* Peer type - AP vs. STA. */
4330 __u8 peer_type;
4331
4332 /* Basic 802.11 capabilities from assoc resp. */
4333 __le16 basic_caps;
4334
4335 /* Set if peer supports 802.11n high throughput (HT). */
4336 __u8 ht_support;
4337
4338 /* Valid if HT is supported. */
4339 __le16 ht_caps;
4340 __u8 extended_ht_caps;
4341 struct ewc_ht_info ewc_info;
4342
4343 /* Legacy rate table. Intersection of our rates and peer rates. */
4344 __u8 legacy_rates[12];
4345
4346 /* HT rate table. Intersection of our rates and peer rates. */
4347 __u8 ht_rates[16];
4348 __u8 pad[16];
4349
4350 /* If set, interoperability mode, no proprietary extensions. */
4351 __u8 interop;
4352 __u8 pad2;
4353 __u8 station_id;
4354 __le16 amsdu_enabled;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004355} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004356
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004357struct mwl8k_cmd_update_stadb {
4358 struct mwl8k_cmd_pkt header;
4359
4360 /* See STADB_ACTION_TYPE */
4361 __le32 action;
4362
4363 /* Peer MAC address */
4364 __u8 peer_addr[ETH_ALEN];
4365
4366 __le32 reserved;
4367
4368 /* Peer info - valid during add/update. */
4369 struct peer_capability_info peer_info;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004370} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004371
Lennert Buytenheka6804002010-01-04 21:55:42 +01004372#define MWL8K_STA_DB_MODIFY_ENTRY 1
4373#define MWL8K_STA_DB_DEL_ENTRY 2
4374
4375/* Peer Entry flags - used to define the type of the peer node */
4376#define MWL8K_PEER_TYPE_ACCESSPOINT 2
4377
4378static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw,
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004379 struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004380 struct ieee80211_sta *sta)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004381{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004382 struct mwl8k_cmd_update_stadb *cmd;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004383 struct peer_capability_info *p;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004384 u32 rates;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004385 int rc;
4386
4387 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4388 if (cmd == NULL)
4389 return -ENOMEM;
4390
4391 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4392 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka6804002010-01-04 21:55:42 +01004393 cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004394 memcpy(cmd->peer_addr, sta->addr, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004395
Lennert Buytenheka6804002010-01-04 21:55:42 +01004396 p = &cmd->peer_info;
4397 p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
4398 p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004399 p->ht_support = sta->ht_cap.ht_supported;
John W. Linvilleb6037422010-07-20 13:55:00 -04004400 p->ht_caps = cpu_to_le16(sta->ht_cap.cap);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004401 p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) |
4402 ((sta->ht_cap.ampdu_density & 7) << 2);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004403 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4404 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
4405 else
4406 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4407 legacy_rate_mask_to_array(p->legacy_rates, rates);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004408 memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16);
Lennert Buytenheka6804002010-01-04 21:55:42 +01004409 p->interop = 1;
4410 p->amsdu_enabled = 0;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004411
Lennert Buytenheka6804002010-01-04 21:55:42 +01004412 rc = mwl8k_post_cmd(hw, &cmd->header);
Nickolai Zeldovichc4f74d32013-01-06 20:27:22 -05004413 if (!rc)
4414 rc = p->station_id;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004415 kfree(cmd);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004416
Nickolai Zeldovichc4f74d32013-01-06 20:27:22 -05004417 return rc;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004418}
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004419
Lennert Buytenheka6804002010-01-04 21:55:42 +01004420static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw,
4421 struct ieee80211_vif *vif, u8 *addr)
4422{
4423 struct mwl8k_cmd_update_stadb *cmd;
4424 int rc;
4425
4426 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4427 if (cmd == NULL)
4428 return -ENOMEM;
4429
4430 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4431 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4432 cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY);
4433 memcpy(cmd->peer_addr, addr, ETH_ALEN);
4434
4435 rc = mwl8k_post_cmd(hw, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004436 kfree(cmd);
4437
4438 return rc;
4439}
4440
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004441
4442/*
4443 * Interrupt handling.
4444 */
4445static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
4446{
4447 struct ieee80211_hw *hw = dev_id;
4448 struct mwl8k_priv *priv = hw->priv;
4449 u32 status;
4450
4451 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004452 if (!status)
4453 return IRQ_NONE;
4454
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004455 if (status & MWL8K_A2H_INT_TX_DONE) {
4456 status &= ~MWL8K_A2H_INT_TX_DONE;
4457 tasklet_schedule(&priv->poll_tx_task);
4458 }
4459
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004460 if (status & MWL8K_A2H_INT_RX_READY) {
4461 status &= ~MWL8K_A2H_INT_RX_READY;
4462 tasklet_schedule(&priv->poll_rx_task);
4463 }
4464
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004465 if (status & MWL8K_A2H_INT_BA_WATCHDOG) {
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05304466 iowrite32(~MWL8K_A2H_INT_BA_WATCHDOG,
4467 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
4468
4469 atomic_inc(&priv->watchdog_event_pending);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004470 status &= ~MWL8K_A2H_INT_BA_WATCHDOG;
4471 ieee80211_queue_work(hw, &priv->watchdog_ba_handle);
4472 }
4473
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004474 if (status)
4475 iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004476
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004477 if (status & MWL8K_A2H_INT_OPC_DONE) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004478 if (priv->hostcmd_wait != NULL)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004479 complete(priv->hostcmd_wait);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004480 }
4481
4482 if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004483 if (!mutex_is_locked(&priv->fw_mutex) &&
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02004484 priv->radio_on && priv->pending_tx_pkts)
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004485 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004486 }
4487
4488 return IRQ_HANDLED;
4489}
4490
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004491static void mwl8k_tx_poll(unsigned long data)
4492{
4493 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4494 struct mwl8k_priv *priv = hw->priv;
4495 int limit;
4496 int i;
4497
4498 limit = 32;
4499
4500 spin_lock_bh(&priv->tx_lock);
4501
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004502 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004503 limit -= mwl8k_txq_reclaim(hw, i, limit, 0);
4504
4505 if (!priv->pending_tx_pkts && priv->tx_wait != NULL) {
4506 complete(priv->tx_wait);
4507 priv->tx_wait = NULL;
4508 }
4509
4510 spin_unlock_bh(&priv->tx_lock);
4511
4512 if (limit) {
4513 writel(~MWL8K_A2H_INT_TX_DONE,
4514 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4515 } else {
4516 tasklet_schedule(&priv->poll_tx_task);
4517 }
4518}
4519
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004520static void mwl8k_rx_poll(unsigned long data)
4521{
4522 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4523 struct mwl8k_priv *priv = hw->priv;
4524 int limit;
4525
4526 limit = 32;
4527 limit -= rxq_process(hw, 0, limit);
4528 limit -= rxq_refill(hw, 0, limit);
4529
4530 if (limit) {
4531 writel(~MWL8K_A2H_INT_RX_READY,
4532 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4533 } else {
4534 tasklet_schedule(&priv->poll_rx_task);
4535 }
4536}
4537
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004538
4539/*
4540 * Core driver operations.
4541 */
Thomas Huehn36323f82012-07-23 21:33:42 +02004542static void mwl8k_tx(struct ieee80211_hw *hw,
4543 struct ieee80211_tx_control *control,
4544 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004545{
4546 struct mwl8k_priv *priv = hw->priv;
4547 int index = skb_get_queue_mapping(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004548
Lennert Buytenhek9189c102010-01-12 13:47:32 +01004549 if (!priv->radio_on) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004550 wiphy_debug(hw->wiphy,
4551 "dropped TX frame since radio disabled\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004552 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01004553 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004554 }
4555
Thomas Huehn36323f82012-07-23 21:33:42 +02004556 mwl8k_txq_xmit(hw, index, control->sta, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004557}
4558
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004559static int mwl8k_start(struct ieee80211_hw *hw)
4560{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004561 struct mwl8k_priv *priv = hw->priv;
4562 int rc;
4563
Joe Perchesa0607fd2009-11-18 23:29:17 -08004564 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004565 IRQF_SHARED, MWL8K_NAME, hw);
4566 if (rc) {
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304567 priv->irq = -1;
Joe Perches5db55842010-08-11 19:11:19 -07004568 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004569 return -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004570 }
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304571 priv->irq = priv->pdev->irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004572
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004573 /* Enable TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004574 tasklet_enable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004575 tasklet_enable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004576
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004577 /* Enable interrupts */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02004578 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05304579 iowrite32(MWL8K_A2H_EVENTS,
4580 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004581
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004582 rc = mwl8k_fw_lock(hw);
4583 if (!rc) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004584 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004585
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004586 if (!priv->ap_fw) {
4587 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004588 rc = mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004589
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004590 if (!rc)
4591 rc = mwl8k_cmd_set_pre_scan(hw);
4592
4593 if (!rc)
4594 rc = mwl8k_cmd_set_post_scan(hw,
4595 "\x00\x00\x00\x00\x00\x00");
4596 }
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004597
4598 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004599 rc = mwl8k_cmd_set_rateadapt_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004600
4601 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004602 rc = mwl8k_cmd_set_wmm_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004603
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004604 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004605 }
4606
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004607 if (rc) {
4608 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
4609 free_irq(priv->pdev->irq, hw);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304610 priv->irq = -1;
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004611 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004612 tasklet_disable(&priv->poll_rx_task);
Nishant Sarmukadam4850b6d2013-01-08 12:10:53 +05304613 } else {
4614 ieee80211_wake_queues(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004615 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004616
4617 return rc;
4618}
4619
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004620static void mwl8k_stop(struct ieee80211_hw *hw)
4621{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004622 struct mwl8k_priv *priv = hw->priv;
4623 int i;
4624
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304625 if (!priv->hw_restart_in_progress)
4626 mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004627
4628 ieee80211_stop_queues(hw);
4629
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004630 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004631 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304632 if (priv->irq != -1) {
4633 free_irq(priv->pdev->irq, hw);
4634 priv->irq = -1;
4635 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004636
4637 /* Stop finalize join worker */
4638 cancel_work_sync(&priv->finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004639 cancel_work_sync(&priv->watchdog_ba_handle);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004640 if (priv->beacon_skb != NULL)
4641 dev_kfree_skb(priv->beacon_skb);
4642
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004643 /* Stop TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004644 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004645 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004646
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004647 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004648 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01004649 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004650}
4651
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004652static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image);
4653
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004654static int mwl8k_add_interface(struct ieee80211_hw *hw,
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004655 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004656{
4657 struct mwl8k_priv *priv = hw->priv;
4658 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004659 u32 macids_supported;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004660 int macid, rc;
4661 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004662
4663 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004664 * Reject interface creation if sniffer mode is active, as
4665 * STA operation is mutually exclusive with hardware sniffer
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004666 * mode. (Sniffer mode is only used on STA firmware.)
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004667 */
4668 if (priv->sniffer_enabled) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004669 wiphy_info(hw->wiphy,
4670 "unable to create STA interface because sniffer mode is enabled\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004671 return -EINVAL;
4672 }
4673
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004674 di = priv->device_info;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004675 switch (vif->type) {
4676 case NL80211_IFTYPE_AP:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004677 if (!priv->ap_fw && di->fw_image_ap) {
4678 /* we must load the ap fw to meet this request */
4679 if (!list_empty(&priv->vif_list))
4680 return -EBUSY;
4681 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4682 if (rc)
4683 return rc;
4684 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004685 macids_supported = priv->ap_macids_supported;
4686 break;
4687 case NL80211_IFTYPE_STATION:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004688 if (priv->ap_fw && di->fw_image_sta) {
Yogesh Ashok Poward59c1cf2013-01-25 16:20:03 +05304689 if (!list_empty(&priv->vif_list)) {
4690 wiphy_warn(hw->wiphy, "AP interface is running.\n"
4691 "Adding STA interface for WDS");
4692 } else {
4693 /* we must load the sta fw to
4694 * meet this request.
4695 */
4696 rc = mwl8k_reload_firmware(hw,
4697 di->fw_image_sta);
4698 if (rc)
4699 return rc;
4700 }
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004701 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004702 macids_supported = priv->sta_macids_supported;
4703 break;
4704 default:
4705 return -EINVAL;
4706 }
4707
4708 macid = ffs(macids_supported & ~priv->macids_used);
4709 if (!macid--)
4710 return -EBUSY;
4711
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004712 /* Setup driver private area. */
Johannes Berg1ed32e42009-12-23 13:15:45 +01004713 mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004714 memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004715 mwl8k_vif->vif = vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004716 mwl8k_vif->macid = macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004717 mwl8k_vif->seqno = 0;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004718 memcpy(mwl8k_vif->bssid, vif->addr, ETH_ALEN);
4719 mwl8k_vif->is_hw_crypto_enabled = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004720
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004721 /* Set the mac address. */
4722 mwl8k_cmd_set_mac_addr(hw, vif, vif->addr);
4723
Yogesh Ashok Poward994a1c2013-01-25 16:20:35 +05304724 if (vif->type == NL80211_IFTYPE_AP)
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004725 mwl8k_cmd_set_new_stn_add_self(hw, vif);
4726
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004727 priv->macids_used |= 1 << mwl8k_vif->macid;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004728 list_add_tail(&mwl8k_vif->list, &priv->vif_list);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004729
4730 return 0;
4731}
4732
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304733static void mwl8k_remove_vif(struct mwl8k_priv *priv, struct mwl8k_vif *vif)
4734{
4735 /* Has ieee80211_restart_hw re-added the removed interfaces? */
4736 if (!priv->macids_used)
4737 return;
4738
4739 priv->macids_used &= ~(1 << vif->macid);
4740 list_del(&vif->list);
4741}
4742
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004743static void mwl8k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004744 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004745{
4746 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004747 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004748
Yogesh Ashok Poward994a1c2013-01-25 16:20:35 +05304749 if (vif->type == NL80211_IFTYPE_AP)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004750 mwl8k_cmd_set_new_stn_del(hw, vif, vif->addr);
4751
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05304752 mwl8k_cmd_del_mac_addr(hw, vif, vif->addr);
Lennert Buytenhek32060e12009-10-22 20:20:04 +02004753
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304754 mwl8k_remove_vif(priv, mwl8k_vif);
4755}
4756
4757static void mwl8k_hw_restart_work(struct work_struct *work)
4758{
4759 struct mwl8k_priv *priv =
4760 container_of(work, struct mwl8k_priv, fw_reload);
4761 struct ieee80211_hw *hw = priv->hw;
4762 struct mwl8k_device_info *di;
4763 int rc;
4764
4765 /* If some command is waiting for a response, clear it */
4766 if (priv->hostcmd_wait != NULL) {
4767 complete(priv->hostcmd_wait);
4768 priv->hostcmd_wait = NULL;
4769 }
4770
4771 priv->hw_restart_owner = current;
4772 di = priv->device_info;
4773 mwl8k_fw_lock(hw);
4774
4775 if (priv->ap_fw)
4776 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4777 else
4778 rc = mwl8k_reload_firmware(hw, di->fw_image_sta);
4779
4780 if (rc)
4781 goto fail;
4782
4783 priv->hw_restart_owner = NULL;
4784 priv->hw_restart_in_progress = false;
4785
4786 /*
4787 * This unlock will wake up the queues and
4788 * also opens the command path for other
4789 * commands
4790 */
4791 mwl8k_fw_unlock(hw);
4792
4793 ieee80211_restart_hw(hw);
4794
4795 wiphy_err(hw->wiphy, "Firmware restarted successfully\n");
4796
4797 return;
4798fail:
4799 mwl8k_fw_unlock(hw);
4800
4801 wiphy_err(hw->wiphy, "Firmware restart failed\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004802}
4803
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004804static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004805{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004806 struct ieee80211_conf *conf = &hw->conf;
4807 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004808 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004809
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004810 rc = mwl8k_fw_lock(hw);
4811 if (rc)
4812 return rc;
4813
Jonas Gorskife21bb02013-03-25 16:39:54 +01004814 if (conf->flags & IEEE80211_CONF_IDLE)
4815 rc = mwl8k_cmd_radio_disable(hw);
4816 else
4817 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004818 if (rc)
4819 goto out;
4820
Yogesh Ashok Powar0f4316b2013-01-25 16:17:45 +05304821 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
4822 rc = mwl8k_cmd_set_rf_channel(hw, conf);
4823 if (rc)
4824 goto out;
4825 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004826
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004827 if (conf->power_level > 18)
4828 conf->power_level = 18;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004829
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004830 if (priv->ap_fw) {
Nishant Sarmukadam03217082011-04-05 14:18:09 +05304831
4832 if (conf->flags & IEEE80211_CONF_CHANGE_POWER) {
4833 rc = mwl8k_cmd_tx_power(hw, conf, conf->power_level);
4834 if (rc)
4835 goto out;
4836 }
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004837
Nishant Sarmukadamda62b762011-02-17 14:45:16 -08004838
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004839 } else {
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004840 rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level);
4841 if (rc)
4842 goto out;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004843 rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7);
4844 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004845
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004846out:
4847 mwl8k_fw_unlock(hw);
4848
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004849 return rc;
4850}
4851
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004852static void
4853mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4854 struct ieee80211_bss_conf *info, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004855{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004856 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304857 u32 ap_legacy_rates = 0;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004858 u8 ap_mcs_rates[16];
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004859 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004860
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004861 if (mwl8k_fw_lock(hw))
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004862 return;
4863
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004864 /*
4865 * No need to capture a beacon if we're no longer associated.
4866 */
4867 if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc)
4868 priv->capture_beacon = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004869
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004870 /*
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004871 * Get the AP's legacy and MCS rates.
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004872 */
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004873 if (vif->bss_conf.assoc) {
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004874 struct ieee80211_sta *ap;
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004875
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004876 rcu_read_lock();
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004877
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004878 ap = ieee80211_find_sta(vif, vif->bss_conf.bssid);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004879 if (ap == NULL) {
4880 rcu_read_unlock();
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004881 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004882 }
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004883
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004884 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) {
4885 ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ];
4886 } else {
4887 ap_legacy_rates =
4888 ap->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4889 }
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004890 memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004891
4892 rcu_read_unlock();
4893 }
4894
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05304895 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc &&
4896 !priv->ap_fw) {
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004897 rc = mwl8k_cmd_set_rate(hw, vif, ap_legacy_rates, ap_mcs_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004898 if (rc)
4899 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004900
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01004901 rc = mwl8k_cmd_use_fixed_rate_sta(hw);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004902 if (rc)
4903 goto out;
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05304904 } else {
4905 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc &&
4906 priv->ap_fw) {
4907 int idx;
4908 int rate;
4909
4910 /* Use AP firmware specific rate command.
4911 */
4912 idx = ffs(vif->bss_conf.basic_rates);
4913 if (idx)
4914 idx--;
4915
4916 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4917 rate = mwl8k_rates_24[idx].hw_value;
4918 else
4919 rate = mwl8k_rates_50[idx].hw_value;
4920
4921 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
4922 }
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004923 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004924
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004925 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004926 rc = mwl8k_set_radio_preamble(hw,
4927 vif->bss_conf.use_short_preamble);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004928 if (rc)
4929 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004930 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004931
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05304932 if ((changed & BSS_CHANGED_ERP_SLOT) && !priv->ap_fw) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004933 rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004934 if (rc)
4935 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004936 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004937
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05304938 if (vif->bss_conf.assoc && !priv->ap_fw &&
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004939 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_ERP_CTS_PROT |
4940 BSS_CHANGED_HT))) {
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004941 rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004942 if (rc)
4943 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004944 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004945
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004946 if (vif->bss_conf.assoc &&
4947 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004948 /*
4949 * Finalize the join. Tell rx handler to process
4950 * next beacon from our BSSID.
4951 */
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01004952 memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004953 priv->capture_beacon = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004954 }
4955
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004956out:
4957 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004958}
4959
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004960static void
4961mwl8k_bss_info_changed_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4962 struct ieee80211_bss_conf *info, u32 changed)
4963{
4964 int rc;
4965
4966 if (mwl8k_fw_lock(hw))
4967 return;
4968
4969 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
4970 rc = mwl8k_set_radio_preamble(hw,
4971 vif->bss_conf.use_short_preamble);
4972 if (rc)
4973 goto out;
4974 }
4975
4976 if (changed & BSS_CHANGED_BASIC_RATES) {
4977 int idx;
4978 int rate;
4979
4980 /*
4981 * Use lowest supported basic rate for multicasts
4982 * and management frames (such as probe responses --
4983 * beacons will always go out at 1 Mb/s).
4984 */
4985 idx = ffs(vif->bss_conf.basic_rates);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004986 if (idx)
4987 idx--;
4988
4989 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4990 rate = mwl8k_rates_24[idx].hw_value;
4991 else
4992 rate = mwl8k_rates_50[idx].hw_value;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004993
4994 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
4995 }
4996
4997 if (changed & (BSS_CHANGED_BEACON_INT | BSS_CHANGED_BEACON)) {
4998 struct sk_buff *skb;
4999
5000 skb = ieee80211_beacon_get(hw, vif);
5001 if (skb != NULL) {
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01005002 mwl8k_cmd_set_beacon(hw, vif, skb->data, skb->len);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005003 kfree_skb(skb);
5004 }
5005 }
5006
5007 if (changed & BSS_CHANGED_BEACON_ENABLED)
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01005008 mwl8k_cmd_bss_start(hw, vif, info->enable_beacon);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005009
5010out:
5011 mwl8k_fw_unlock(hw);
5012}
5013
5014static void
5015mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5016 struct ieee80211_bss_conf *info, u32 changed)
5017{
Yogesh Ashok Powar41bf9112013-01-25 16:20:42 +05305018 if (vif->type == NL80211_IFTYPE_STATION)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005019 mwl8k_bss_info_changed_sta(hw, vif, info, changed);
Yogesh Ashok Powar41bf9112013-01-25 16:20:42 +05305020 if (vif->type == NL80211_IFTYPE_AP)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005021 mwl8k_bss_info_changed_ap(hw, vif, info, changed);
5022}
5023
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02005024static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw,
Jiri Pirko22bedad32010-04-01 21:22:57 +00005025 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02005026{
5027 struct mwl8k_cmd_pkt *cmd;
5028
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005029 /*
5030 * Synthesize and return a command packet that programs the
5031 * hardware multicast address filter. At this point we don't
5032 * know whether FIF_ALLMULTI is being requested, but if it is,
5033 * we'll end up throwing this packet away and creating a new
5034 * one in mwl8k_configure_filter().
5035 */
Jiri Pirko22bedad32010-04-01 21:22:57 +00005036 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_list);
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02005037
5038 return (unsigned long)cmd;
5039}
5040
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005041static int
5042mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw,
5043 unsigned int changed_flags,
5044 unsigned int *total_flags)
5045{
5046 struct mwl8k_priv *priv = hw->priv;
5047
5048 /*
5049 * Hardware sniffer mode is mutually exclusive with STA
5050 * operation, so refuse to enable sniffer mode if a STA
5051 * interface is active.
5052 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005053 if (!list_empty(&priv->vif_list)) {
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005054 if (net_ratelimit())
Joe Perchesc96c31e2010-07-26 14:39:58 -07005055 wiphy_info(hw->wiphy,
5056 "not enabling sniffer mode because STA interface is active\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005057 return 0;
5058 }
5059
5060 if (!priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005061 if (mwl8k_cmd_enable_sniffer(hw, 1))
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005062 return 0;
5063 priv->sniffer_enabled = true;
5064 }
5065
5066 *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI |
5067 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL |
5068 FIF_OTHER_BSS;
5069
5070 return 1;
5071}
5072
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005073static struct mwl8k_vif *mwl8k_first_vif(struct mwl8k_priv *priv)
5074{
5075 if (!list_empty(&priv->vif_list))
5076 return list_entry(priv->vif_list.next, struct mwl8k_vif, list);
5077
5078 return NULL;
5079}
5080
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005081static void mwl8k_configure_filter(struct ieee80211_hw *hw,
5082 unsigned int changed_flags,
5083 unsigned int *total_flags,
5084 u64 multicast)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005085{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005086 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005087 struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast;
5088
5089 /*
Lennert Buytenhekc0adae22009-10-22 20:21:36 +02005090 * AP firmware doesn't allow fine-grained control over
5091 * the receive filter.
5092 */
5093 if (priv->ap_fw) {
5094 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
5095 kfree(cmd);
5096 return;
5097 }
5098
5099 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005100 * Enable hardware sniffer mode if FIF_CONTROL or
5101 * FIF_OTHER_BSS is requested.
5102 */
5103 if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) &&
5104 mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) {
5105 kfree(cmd);
5106 return;
5107 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005108
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005109 /* Clear unsupported feature flags */
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005110 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005111
Lennert Buytenhek90852f72010-01-02 10:31:42 +01005112 if (mwl8k_fw_lock(hw)) {
5113 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005114 return;
Lennert Buytenhek90852f72010-01-02 10:31:42 +01005115 }
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005116
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005117 if (priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005118 mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005119 priv->sniffer_enabled = false;
5120 }
5121
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005122 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005123 if (*total_flags & FIF_BCN_PRBRESP_PROMISC) {
5124 /*
5125 * Disable the BSS filter.
5126 */
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005127 mwl8k_cmd_set_pre_scan(hw);
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005128 } else {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005129 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01005130 const u8 *bssid;
Lennert Buytenheka94cc972009-08-03 21:58:57 +02005131
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005132 /*
5133 * Enable the BSS filter.
5134 *
5135 * If there is an active STA interface, use that
5136 * interface's BSSID, otherwise use a dummy one
5137 * (where the OUI part needs to be nonzero for
5138 * the BSSID to be accepted by POST_SCAN).
5139 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005140 mwl8k_vif = mwl8k_first_vif(priv);
5141 if (mwl8k_vif != NULL)
5142 bssid = mwl8k_vif->vif->bss_conf.bssid;
5143 else
5144 bssid = "\x01\x00\x00\x00\x00\x00";
Lennert Buytenheka94cc972009-08-03 21:58:57 +02005145
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005146 mwl8k_cmd_set_post_scan(hw, bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005147 }
5148 }
5149
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005150 /*
5151 * If FIF_ALLMULTI is being requested, throw away the command
5152 * packet that ->prepare_multicast() built and replace it with
5153 * a command packet that enables reception of all multicast
5154 * packets.
5155 */
5156 if (*total_flags & FIF_ALLMULTI) {
5157 kfree(cmd);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005158 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, NULL);
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005159 }
5160
5161 if (cmd != NULL) {
5162 mwl8k_post_cmd(hw, cmd);
5163 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005164 }
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02005165
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005166 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005167}
5168
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005169static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
5170{
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01005171 return mwl8k_cmd_set_rts_threshold(hw, value);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005172}
5173
Johannes Berg4a6967b2010-02-19 19:18:37 +01005174static int mwl8k_sta_remove(struct ieee80211_hw *hw,
5175 struct ieee80211_vif *vif,
5176 struct ieee80211_sta *sta)
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005177{
5178 struct mwl8k_priv *priv = hw->priv;
5179
Johannes Berg4a6967b2010-02-19 19:18:37 +01005180 if (priv->ap_fw)
5181 return mwl8k_cmd_set_new_stn_del(hw, vif, sta->addr);
5182 else
5183 return mwl8k_cmd_update_stadb_del(hw, vif, sta->addr);
5184}
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005185
Johannes Berg4a6967b2010-02-19 19:18:37 +01005186static int mwl8k_sta_add(struct ieee80211_hw *hw,
5187 struct ieee80211_vif *vif,
5188 struct ieee80211_sta *sta)
5189{
5190 struct mwl8k_priv *priv = hw->priv;
5191 int ret;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005192 int i;
5193 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
5194 struct ieee80211_key_conf *key;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005195
Johannes Berg4a6967b2010-02-19 19:18:37 +01005196 if (!priv->ap_fw) {
5197 ret = mwl8k_cmd_update_stadb_add(hw, vif, sta);
5198 if (ret >= 0) {
5199 MWL8K_STA(sta)->peer_id = ret;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07005200 if (sta->ht_cap.ht_supported)
5201 MWL8K_STA(sta)->is_ampdu_allowed = true;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005202 ret = 0;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005203 }
Johannes Berg4a6967b2010-02-19 19:18:37 +01005204
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08005205 } else {
5206 ret = mwl8k_cmd_set_new_stn_add(hw, vif, sta);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005207 }
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005208
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08005209 for (i = 0; i < NUM_WEP_KEYS; i++) {
5210 key = IEEE80211_KEY_CONF(mwl8k_vif->wep_key_conf[i].key);
5211 if (mwl8k_vif->wep_key_conf[i].enabled)
5212 mwl8k_set_key(hw, SET_KEY, vif, sta, key);
5213 }
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005214 return ret;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01005215}
5216
Eliad Peller8a3a3c82011-10-02 10:15:52 +02005217static int mwl8k_conf_tx(struct ieee80211_hw *hw,
5218 struct ieee80211_vif *vif, u16 queue,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005219 const struct ieee80211_tx_queue_params *params)
5220{
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005221 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005222 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005223
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005224 rc = mwl8k_fw_lock(hw);
5225 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005226 BUG_ON(queue > MWL8K_TX_WMM_QUEUES - 1);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005227 memcpy(&priv->wmm_params[queue], params, sizeof(*params));
5228
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005229 if (!priv->wmm_enabled)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005230 rc = mwl8k_cmd_set_wmm_mode(hw, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005231
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005232 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005233 int q = MWL8K_TX_WMM_QUEUES - 1 - queue;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005234 rc = mwl8k_cmd_set_edca_params(hw, q,
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005235 params->cw_min,
5236 params->cw_max,
5237 params->aifs,
5238 params->txop);
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005239 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005240
5241 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005242 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005243
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005244 return rc;
5245}
5246
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005247static int mwl8k_get_stats(struct ieee80211_hw *hw,
5248 struct ieee80211_low_level_stats *stats)
5249{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005250 return mwl8k_cmd_get_stat(hw, stats);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005251}
5252
John W. Linville0d462bb2010-07-28 14:04:24 -04005253static int mwl8k_get_survey(struct ieee80211_hw *hw, int idx,
5254 struct survey_info *survey)
5255{
5256 struct mwl8k_priv *priv = hw->priv;
5257 struct ieee80211_conf *conf = &hw->conf;
5258
5259 if (idx != 0)
5260 return -ENOENT;
5261
5262 survey->channel = conf->channel;
5263 survey->filled = SURVEY_INFO_NOISE_DBM;
5264 survey->noise = priv->noise;
5265
5266 return 0;
5267}
5268
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005269#define MAX_AMPDU_ATTEMPTS 5
5270
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005271static int
5272mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5273 enum ieee80211_ampdu_mlme_action action,
Johannes Berg0b01f032011-01-18 13:51:05 +01005274 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
5275 u8 buf_size)
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005276{
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005277
5278 int i, rc = 0;
5279 struct mwl8k_priv *priv = hw->priv;
5280 struct mwl8k_ampdu_stream *stream;
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305281 u8 *addr = sta->addr, idx;
Yogesh Ashok Powarfd712f52012-11-06 19:22:35 +05305282 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005283
5284 if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
5285 return -ENOTSUPP;
5286
5287 spin_lock(&priv->stream_lock);
5288 stream = mwl8k_lookup_stream(hw, addr, tid);
5289
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005290 switch (action) {
5291 case IEEE80211_AMPDU_RX_START:
5292 case IEEE80211_AMPDU_RX_STOP:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005293 break;
5294 case IEEE80211_AMPDU_TX_START:
5295 /* By the time we get here the hw queues may contain outgoing
5296 * packets for this RA/TID that are not part of this BA
5297 * session. The hw will assign sequence numbers to these
5298 * packets as they go out. So if we query the hw for its next
5299 * sequence number and use that for the SSN here, it may end up
5300 * being wrong, which will lead to sequence number mismatch at
5301 * the recipient. To avoid this, we reset the sequence number
5302 * to O for the first MPDU in this BA stream.
5303 */
5304 *ssn = 0;
5305 if (stream == NULL) {
5306 /* This means that somebody outside this driver called
5307 * ieee80211_start_tx_ba_session. This is unexpected
5308 * because we do our own rate control. Just warn and
5309 * move on.
5310 */
5311 wiphy_warn(hw->wiphy, "Unexpected call to %s. "
5312 "Proceeding anyway.\n", __func__);
5313 stream = mwl8k_add_stream(hw, sta, tid);
5314 }
5315 if (stream == NULL) {
5316 wiphy_debug(hw->wiphy, "no free AMPDU streams\n");
5317 rc = -EBUSY;
5318 break;
5319 }
5320 stream->state = AMPDU_STREAM_IN_PROGRESS;
5321
5322 /* Release the lock before we do the time consuming stuff */
5323 spin_unlock(&priv->stream_lock);
5324 for (i = 0; i < MAX_AMPDU_ATTEMPTS; i++) {
Yogesh Ashok Powarfd712f52012-11-06 19:22:35 +05305325
5326 /* Check if link is still valid */
5327 if (!sta_info->is_ampdu_allowed) {
5328 spin_lock(&priv->stream_lock);
5329 mwl8k_remove_stream(hw, stream);
5330 spin_unlock(&priv->stream_lock);
5331 return -EBUSY;
5332 }
5333
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05305334 rc = mwl8k_check_ba(hw, stream, vif);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005335
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305336 /* If HW restart is in progress mwl8k_post_cmd will
5337 * return -EBUSY. Avoid retrying mwl8k_check_ba in
5338 * such cases
5339 */
5340 if (!rc || rc == -EBUSY)
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005341 break;
5342 /*
5343 * HW queues take time to be flushed, give them
5344 * sufficient time
5345 */
5346
5347 msleep(1000);
5348 }
5349 spin_lock(&priv->stream_lock);
5350 if (rc) {
5351 wiphy_err(hw->wiphy, "Stream for tid %d busy after %d"
5352 " attempts\n", tid, MAX_AMPDU_ATTEMPTS);
5353 mwl8k_remove_stream(hw, stream);
5354 rc = -EBUSY;
5355 break;
5356 }
5357 ieee80211_start_tx_ba_cb_irqsafe(vif, addr, tid);
5358 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02005359 case IEEE80211_AMPDU_TX_STOP_CONT:
5360 case IEEE80211_AMPDU_TX_STOP_FLUSH:
5361 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305362 if (stream) {
5363 if (stream->state == AMPDU_STREAM_ACTIVE) {
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305364 idx = stream->idx;
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305365 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305366 mwl8k_destroy_ba(hw, idx);
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305367 spin_lock(&priv->stream_lock);
5368 }
5369 mwl8k_remove_stream(hw, stream);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005370 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005371 ieee80211_stop_tx_ba_cb_irqsafe(vif, addr, tid);
5372 break;
5373 case IEEE80211_AMPDU_TX_OPERATIONAL:
5374 BUG_ON(stream == NULL);
5375 BUG_ON(stream->state != AMPDU_STREAM_IN_PROGRESS);
5376 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05305377 rc = mwl8k_create_ba(hw, stream, buf_size, vif);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005378 spin_lock(&priv->stream_lock);
5379 if (!rc)
5380 stream->state = AMPDU_STREAM_ACTIVE;
5381 else {
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305382 idx = stream->idx;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005383 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305384 mwl8k_destroy_ba(hw, idx);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005385 spin_lock(&priv->stream_lock);
5386 wiphy_debug(hw->wiphy,
5387 "Failed adding stream for sta %pM tid %d\n",
5388 addr, tid);
5389 mwl8k_remove_stream(hw, stream);
5390 }
5391 break;
5392
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005393 default:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005394 rc = -ENOTSUPP;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005395 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005396
5397 spin_unlock(&priv->stream_lock);
5398 return rc;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005399}
5400
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005401static const struct ieee80211_ops mwl8k_ops = {
5402 .tx = mwl8k_tx,
5403 .start = mwl8k_start,
5404 .stop = mwl8k_stop,
5405 .add_interface = mwl8k_add_interface,
5406 .remove_interface = mwl8k_remove_interface,
5407 .config = mwl8k_config,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005408 .bss_info_changed = mwl8k_bss_info_changed,
Johannes Berg3ac64be2009-08-17 16:16:53 +02005409 .prepare_multicast = mwl8k_prepare_multicast,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005410 .configure_filter = mwl8k_configure_filter,
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005411 .set_key = mwl8k_set_key,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005412 .set_rts_threshold = mwl8k_set_rts_threshold,
Johannes Berg4a6967b2010-02-19 19:18:37 +01005413 .sta_add = mwl8k_sta_add,
5414 .sta_remove = mwl8k_sta_remove,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005415 .conf_tx = mwl8k_conf_tx,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005416 .get_stats = mwl8k_get_stats,
John W. Linville0d462bb2010-07-28 14:04:24 -04005417 .get_survey = mwl8k_get_survey,
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005418 .ampdu_action = mwl8k_ampdu_action,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005419};
5420
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005421static void mwl8k_finalize_join_worker(struct work_struct *work)
5422{
5423 struct mwl8k_priv *priv =
5424 container_of(work, struct mwl8k_priv, finalize_join_worker);
5425 struct sk_buff *skb = priv->beacon_skb;
Johannes Berg56007a02010-01-26 14:19:52 +01005426 struct ieee80211_mgmt *mgmt = (void *)skb->data;
5427 int len = skb->len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
5428 const u8 *tim = cfg80211_find_ie(WLAN_EID_TIM,
5429 mgmt->u.beacon.variable, len);
5430 int dtim_period = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005431
Johannes Berg56007a02010-01-26 14:19:52 +01005432 if (tim && tim[1] >= 2)
5433 dtim_period = tim[3];
5434
5435 mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len, dtim_period);
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005436
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005437 dev_kfree_skb(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005438 priv->beacon_skb = NULL;
5439}
5440
John W. Linvillebcb628d2009-11-06 16:40:16 -05005441enum {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005442 MWL8363 = 0,
5443 MWL8687,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005444 MWL8366,
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +05305445 MWL8764,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02005446};
5447
Yogesh Ashok Powarc2f2e202013-01-03 13:24:44 +05305448#define MWL8K_8366_AP_FW_API 3
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005449#define _MWL8K_8366_AP_FW(api) "mwl8k/fmimage_8366_ap-" #api ".fw"
5450#define MWL8K_8366_AP_FW(api) _MWL8K_8366_AP_FW(api)
5451
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +05305452#define MWL8K_8764_AP_FW_API 1
5453#define _MWL8K_8764_AP_FW(api) "mwl8k/fmimage_8764_ap-" #api ".fw"
5454#define MWL8K_8764_AP_FW(api) _MWL8K_8764_AP_FW(api)
5455
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05005456static struct mwl8k_device_info mwl8k_info_tbl[] = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005457 [MWL8363] = {
5458 .part_name = "88w8363",
5459 .helper_image = "mwl8k/helper_8363.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005460 .fw_image_sta = "mwl8k/fmimage_8363.fw",
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005461 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005462 [MWL8687] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005463 .part_name = "88w8687",
5464 .helper_image = "mwl8k/helper_8687.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005465 .fw_image_sta = "mwl8k/fmimage_8687.fw",
John W. Linvillebcb628d2009-11-06 16:40:16 -05005466 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005467 [MWL8366] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005468 .part_name = "88w8366",
5469 .helper_image = "mwl8k/helper_8366.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005470 .fw_image_sta = "mwl8k/fmimage_8366.fw",
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005471 .fw_image_ap = MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API),
5472 .fw_api_ap = MWL8K_8366_AP_FW_API,
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +05305473 .ap_rxd_ops = &rxd_ap_ops,
5474 },
5475 [MWL8764] = {
5476 .part_name = "88w8764",
5477 .fw_image_ap = MWL8K_8764_AP_FW(MWL8K_8764_AP_FW_API),
5478 .fw_api_ap = MWL8K_8764_AP_FW_API,
5479 .ap_rxd_ops = &rxd_ap_ops,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005480 },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005481};
5482
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005483MODULE_FIRMWARE("mwl8k/helper_8363.fw");
5484MODULE_FIRMWARE("mwl8k/fmimage_8363.fw");
5485MODULE_FIRMWARE("mwl8k/helper_8687.fw");
5486MODULE_FIRMWARE("mwl8k/fmimage_8687.fw");
5487MODULE_FIRMWARE("mwl8k/helper_8366.fw");
5488MODULE_FIRMWARE("mwl8k/fmimage_8366.fw");
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005489MODULE_FIRMWARE(MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API));
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005490
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005491static DEFINE_PCI_DEVICE_TABLE(mwl8k_pci_id_table) = {
Benjamin Larssone5868ba2010-03-19 01:46:10 +01005492 { PCI_VDEVICE(MARVELL, 0x2a0a), .driver_data = MWL8363, },
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005493 { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, },
5494 { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005495 { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, },
5496 { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, },
5497 { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, },
Jonas Gorskifc5bc162013-02-05 16:59:17 +01005498 { PCI_VDEVICE(MARVELL, 0x2a41), .driver_data = MWL8366, },
5499 { PCI_VDEVICE(MARVELL, 0x2a42), .driver_data = MWL8366, },
Lennert Buytenhekca665272010-01-12 13:47:53 +01005500 { PCI_VDEVICE(MARVELL, 0x2a43), .driver_data = MWL8366, },
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +05305501 { PCI_VDEVICE(MARVELL, 0x2b36), .driver_data = MWL8764, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005502 { },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005503};
5504MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table);
5505
Brian Cavagnolo99020472010-11-12 17:23:52 -08005506static int mwl8k_request_alt_fw(struct mwl8k_priv *priv)
5507{
5508 int rc;
5509 printk(KERN_ERR "%s: Error requesting preferred fw %s.\n"
5510 "Trying alternative firmware %s\n", pci_name(priv->pdev),
5511 priv->fw_pref, priv->fw_alt);
5512 rc = mwl8k_request_fw(priv, priv->fw_alt, &priv->fw_ucode, true);
5513 if (rc) {
5514 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5515 pci_name(priv->pdev), priv->fw_alt);
5516 return rc;
5517 }
5518 return 0;
5519}
5520
5521static int mwl8k_firmware_load_success(struct mwl8k_priv *priv);
5522static void mwl8k_fw_state_machine(const struct firmware *fw, void *context)
5523{
5524 struct mwl8k_priv *priv = context;
5525 struct mwl8k_device_info *di = priv->device_info;
5526 int rc;
5527
5528 switch (priv->fw_state) {
5529 case FW_STATE_INIT:
5530 if (!fw) {
5531 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
5532 pci_name(priv->pdev), di->helper_image);
5533 goto fail;
5534 }
5535 priv->fw_helper = fw;
5536 rc = mwl8k_request_fw(priv, priv->fw_pref, &priv->fw_ucode,
5537 true);
5538 if (rc && priv->fw_alt) {
5539 rc = mwl8k_request_alt_fw(priv);
5540 if (rc)
5541 goto fail;
5542 priv->fw_state = FW_STATE_LOADING_ALT;
5543 } else if (rc)
5544 goto fail;
5545 else
5546 priv->fw_state = FW_STATE_LOADING_PREF;
5547 break;
5548
5549 case FW_STATE_LOADING_PREF:
5550 if (!fw) {
5551 if (priv->fw_alt) {
5552 rc = mwl8k_request_alt_fw(priv);
5553 if (rc)
5554 goto fail;
5555 priv->fw_state = FW_STATE_LOADING_ALT;
5556 } else
5557 goto fail;
5558 } else {
5559 priv->fw_ucode = fw;
5560 rc = mwl8k_firmware_load_success(priv);
5561 if (rc)
5562 goto fail;
5563 else
5564 complete(&priv->firmware_loading_complete);
5565 }
5566 break;
5567
5568 case FW_STATE_LOADING_ALT:
5569 if (!fw) {
5570 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5571 pci_name(priv->pdev), di->helper_image);
5572 goto fail;
5573 }
5574 priv->fw_ucode = fw;
5575 rc = mwl8k_firmware_load_success(priv);
5576 if (rc)
5577 goto fail;
5578 else
5579 complete(&priv->firmware_loading_complete);
5580 break;
5581
5582 default:
5583 printk(KERN_ERR "%s: Unexpected firmware loading state: %d\n",
5584 MWL8K_NAME, priv->fw_state);
5585 BUG_ON(1);
5586 }
5587
5588 return;
5589
5590fail:
5591 priv->fw_state = FW_STATE_ERROR;
5592 complete(&priv->firmware_loading_complete);
5593 device_release_driver(&priv->pdev->dev);
5594 mwl8k_release_firmware(priv);
5595}
5596
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305597#define MAX_RESTART_ATTEMPTS 1
Brian Cavagnolo99020472010-11-12 17:23:52 -08005598static int mwl8k_init_firmware(struct ieee80211_hw *hw, char *fw_image,
5599 bool nowait)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005600{
5601 struct mwl8k_priv *priv = hw->priv;
5602 int rc;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305603 int count = MAX_RESTART_ATTEMPTS;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005604
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305605retry:
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005606 /* Reset firmware and hardware */
5607 mwl8k_hw_reset(priv);
5608
5609 /* Ask userland hotplug daemon for the device firmware */
Brian Cavagnolo99020472010-11-12 17:23:52 -08005610 rc = mwl8k_request_firmware(priv, fw_image, nowait);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005611 if (rc) {
5612 wiphy_err(hw->wiphy, "Firmware files not found\n");
5613 return rc;
5614 }
5615
Brian Cavagnolo99020472010-11-12 17:23:52 -08005616 if (nowait)
5617 return rc;
5618
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005619 /* Load firmware into hardware */
5620 rc = mwl8k_load_firmware(hw);
5621 if (rc)
5622 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5623
5624 /* Reclaim memory once firmware is successfully loaded */
5625 mwl8k_release_firmware(priv);
5626
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305627 if (rc && count) {
5628 /* FW did not start successfully;
5629 * lets try one more time
5630 */
5631 count--;
5632 wiphy_err(hw->wiphy, "Trying to reload the firmware again\n");
5633 msleep(20);
5634 goto retry;
5635 }
5636
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005637 return rc;
5638}
5639
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005640static int mwl8k_init_txqs(struct ieee80211_hw *hw)
5641{
5642 struct mwl8k_priv *priv = hw->priv;
5643 int rc = 0;
5644 int i;
5645
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005646 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005647 rc = mwl8k_txq_init(hw, i);
5648 if (rc)
5649 break;
5650 if (priv->ap_fw)
5651 iowrite32(priv->txq[i].txd_dma,
5652 priv->sram + priv->txq_offset[i]);
5653 }
5654 return rc;
5655}
5656
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005657/* initialize hw after successfully loading a firmware image */
5658static int mwl8k_probe_hw(struct ieee80211_hw *hw)
5659{
5660 struct mwl8k_priv *priv = hw->priv;
5661 int rc = 0;
5662 int i;
5663
5664 if (priv->ap_fw) {
5665 priv->rxd_ops = priv->device_info->ap_rxd_ops;
5666 if (priv->rxd_ops == NULL) {
5667 wiphy_err(hw->wiphy,
5668 "Driver does not have AP firmware image support for this hardware\n");
Alexey Khoroshilova2ca8ec2013-01-19 01:24:01 +04005669 rc = -ENOENT;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005670 goto err_stop_firmware;
5671 }
5672 } else {
5673 priv->rxd_ops = &rxd_sta_ops;
5674 }
5675
5676 priv->sniffer_enabled = false;
5677 priv->wmm_enabled = false;
5678 priv->pending_tx_pkts = 0;
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05305679 atomic_set(&priv->watchdog_event_pending, 0);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005680
5681 rc = mwl8k_rxq_init(hw, 0);
5682 if (rc)
5683 goto err_stop_firmware;
5684 rxq_refill(hw, 0, INT_MAX);
5685
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005686 /* For the sta firmware, we need to know the dma addresses of tx queues
5687 * before sending MWL8K_CMD_GET_HW_SPEC. So we must initialize them
5688 * prior to issuing this command. But for the AP case, we learn the
5689 * total number of queues from the result CMD_GET_HW_SPEC, so for this
5690 * case we must initialize the tx queues after.
5691 */
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07005692 priv->num_ampdu_queues = 0;
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005693 if (!priv->ap_fw) {
5694 rc = mwl8k_init_txqs(hw);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005695 if (rc)
5696 goto err_free_queues;
5697 }
5698
5699 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
5700 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005701 iowrite32(MWL8K_A2H_INT_TX_DONE|MWL8K_A2H_INT_RX_READY|
5702 MWL8K_A2H_INT_BA_WATCHDOG,
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005703 priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05305704 iowrite32(MWL8K_A2H_INT_OPC_DONE,
5705 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005706
5707 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
5708 IRQF_SHARED, MWL8K_NAME, hw);
5709 if (rc) {
5710 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
5711 goto err_free_queues;
5712 }
5713
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305714 /*
5715 * When hw restart is requested,
5716 * mac80211 will take care of clearing
5717 * the ampdu streams, so do not clear
5718 * the ampdu state here
5719 */
5720 if (!priv->hw_restart_in_progress)
5721 memset(priv->ampdu, 0, sizeof(priv->ampdu));
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005722
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005723 /*
5724 * Temporarily enable interrupts. Initial firmware host
5725 * commands use interrupts and avoid polling. Disable
5726 * interrupts when done.
5727 */
5728 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5729
5730 /* Get config data, mac addrs etc */
5731 if (priv->ap_fw) {
5732 rc = mwl8k_cmd_get_hw_spec_ap(hw);
5733 if (!rc)
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005734 rc = mwl8k_init_txqs(hw);
5735 if (!rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005736 rc = mwl8k_cmd_set_hw_spec(hw);
5737 } else {
5738 rc = mwl8k_cmd_get_hw_spec_sta(hw);
5739 }
5740 if (rc) {
5741 wiphy_err(hw->wiphy, "Cannot initialise firmware\n");
5742 goto err_free_irq;
5743 }
5744
5745 /* Turn radio off */
5746 rc = mwl8k_cmd_radio_disable(hw);
5747 if (rc) {
5748 wiphy_err(hw->wiphy, "Cannot disable\n");
5749 goto err_free_irq;
5750 }
5751
5752 /* Clear MAC address */
5753 rc = mwl8k_cmd_set_mac_addr(hw, NULL, "\x00\x00\x00\x00\x00\x00");
5754 if (rc) {
5755 wiphy_err(hw->wiphy, "Cannot clear MAC address\n");
5756 goto err_free_irq;
5757 }
5758
Yogesh Ashok Powara246ac32013-01-25 16:17:56 +05305759 /* Configure Antennas */
5760 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x3);
5761 if (rc)
5762 wiphy_warn(hw->wiphy, "failed to set # of RX antennas");
5763 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7);
5764 if (rc)
5765 wiphy_warn(hw->wiphy, "failed to set # of TX antennas");
5766
5767
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005768 /* Disable interrupts */
5769 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5770 free_irq(priv->pdev->irq, hw);
5771
5772 wiphy_info(hw->wiphy, "%s v%d, %pm, %s firmware %u.%u.%u.%u\n",
5773 priv->device_info->part_name,
5774 priv->hw_rev, hw->wiphy->perm_addr,
5775 priv->ap_fw ? "AP" : "STA",
5776 (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff,
5777 (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff);
5778
5779 return 0;
5780
5781err_free_irq:
5782 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5783 free_irq(priv->pdev->irq, hw);
5784
5785err_free_queues:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005786 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005787 mwl8k_txq_deinit(hw, i);
5788 mwl8k_rxq_deinit(hw, 0);
5789
5790err_stop_firmware:
5791 mwl8k_hw_reset(priv);
5792
5793 return rc;
5794}
5795
5796/*
5797 * invoke mwl8k_reload_firmware to change the firmware image after the device
5798 * has already been registered
5799 */
5800static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image)
5801{
5802 int i, rc = 0;
5803 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305804 struct mwl8k_vif *vif, *tmp_vif;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005805
5806 mwl8k_stop(hw);
5807 mwl8k_rxq_deinit(hw, 0);
5808
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305809 /*
5810 * All the existing interfaces are re-added by the ieee80211_reconfig;
5811 * which means driver should remove existing interfaces before calling
5812 * ieee80211_restart_hw
5813 */
5814 if (priv->hw_restart_in_progress)
5815 list_for_each_entry_safe(vif, tmp_vif, &priv->vif_list, list)
5816 mwl8k_remove_vif(priv, vif);
5817
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005818 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005819 mwl8k_txq_deinit(hw, i);
5820
Brian Cavagnolo99020472010-11-12 17:23:52 -08005821 rc = mwl8k_init_firmware(hw, fw_image, false);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005822 if (rc)
5823 goto fail;
5824
5825 rc = mwl8k_probe_hw(hw);
5826 if (rc)
5827 goto fail;
5828
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305829 if (priv->hw_restart_in_progress)
5830 return rc;
5831
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005832 rc = mwl8k_start(hw);
5833 if (rc)
5834 goto fail;
5835
5836 rc = mwl8k_config(hw, ~0);
5837 if (rc)
5838 goto fail;
5839
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005840 for (i = 0; i < MWL8K_TX_WMM_QUEUES; i++) {
Eliad Peller8a3a3c82011-10-02 10:15:52 +02005841 rc = mwl8k_conf_tx(hw, NULL, i, &priv->wmm_params[i]);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005842 if (rc)
5843 goto fail;
5844 }
5845
5846 return rc;
5847
5848fail:
5849 printk(KERN_WARNING "mwl8k: Failed to reload firmware image.\n");
5850 return rc;
5851}
5852
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305853static const struct ieee80211_iface_limit ap_if_limits[] = {
5854 { .max = 8, .types = BIT(NL80211_IFTYPE_AP) },
Yogesh Ashok Powar2acdaa72013-01-25 16:19:55 +05305855 { .max = 1, .types = BIT(NL80211_IFTYPE_STATION) },
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305856};
5857
5858static const struct ieee80211_iface_combination ap_if_comb = {
5859 .limits = ap_if_limits,
5860 .n_limits = ARRAY_SIZE(ap_if_limits),
5861 .max_interfaces = 8,
5862 .num_different_channels = 1,
5863};
5864
5865
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005866static int mwl8k_firmware_load_success(struct mwl8k_priv *priv)
5867{
5868 struct ieee80211_hw *hw = priv->hw;
5869 int i, rc;
5870
Brian Cavagnolo99020472010-11-12 17:23:52 -08005871 rc = mwl8k_load_firmware(hw);
5872 mwl8k_release_firmware(priv);
5873 if (rc) {
5874 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5875 return rc;
5876 }
5877
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005878 /*
5879 * Extra headroom is the size of the required DMA header
5880 * minus the size of the smallest 802.11 frame (CTS frame).
5881 */
5882 hw->extra_tx_headroom =
5883 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
5884
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05305885 hw->extra_tx_headroom -= priv->ap_fw ? REDUCED_TX_HEADROOM : 0;
5886
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005887 hw->channel_change_time = 10;
5888
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005889 hw->queues = MWL8K_TX_WMM_QUEUES;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005890
5891 /* Set rssi values to dBm */
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08005892 hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_HAS_RATE_CONTROL;
Yogesh Ashok Powar2a36a0e2011-08-29 17:12:44 +05305893
5894 /*
5895 * Ask mac80211 to not to trigger PS mode
5896 * based on PM bit of incoming frames.
5897 */
5898 if (priv->ap_fw)
5899 hw->flags |= IEEE80211_HW_AP_LINK_PS;
5900
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005901 hw->vif_data_size = sizeof(struct mwl8k_vif);
5902 hw->sta_data_size = sizeof(struct mwl8k_sta);
5903
5904 priv->macids_used = 0;
5905 INIT_LIST_HEAD(&priv->vif_list);
5906
5907 /* Set default radio state and preamble */
Rusty Russell3db1cd52011-12-19 13:56:45 +00005908 priv->radio_on = false;
5909 priv->radio_short_preamble = false;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005910
5911 /* Finalize join worker */
5912 INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005913 /* Handle watchdog ba events */
5914 INIT_WORK(&priv->watchdog_ba_handle, mwl8k_watchdog_ba_events);
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305915 /* To reload the firmware if it crashes */
5916 INIT_WORK(&priv->fw_reload, mwl8k_hw_restart_work);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005917
5918 /* TX reclaim and RX tasklets. */
5919 tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw);
5920 tasklet_disable(&priv->poll_tx_task);
5921 tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw);
5922 tasklet_disable(&priv->poll_rx_task);
5923
5924 /* Power management cookie */
5925 priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
5926 if (priv->cookie == NULL)
5927 return -ENOMEM;
5928
5929 mutex_init(&priv->fw_mutex);
5930 priv->fw_mutex_owner = NULL;
5931 priv->fw_mutex_depth = 0;
5932 priv->hostcmd_wait = NULL;
5933
5934 spin_lock_init(&priv->tx_lock);
5935
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005936 spin_lock_init(&priv->stream_lock);
5937
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005938 priv->tx_wait = NULL;
5939
5940 rc = mwl8k_probe_hw(hw);
5941 if (rc)
5942 goto err_free_cookie;
5943
5944 hw->wiphy->interface_modes = 0;
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305945
5946 if (priv->ap_macids_supported || priv->device_info->fw_image_ap) {
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005947 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP);
Yogesh Ashok Powar2acdaa72013-01-25 16:19:55 +05305948 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305949 hw->wiphy->iface_combinations = &ap_if_comb;
5950 hw->wiphy->n_iface_combinations = 1;
5951 }
5952
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005953 if (priv->sta_macids_supported || priv->device_info->fw_image_sta)
5954 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
5955
5956 rc = ieee80211_register_hw(hw);
5957 if (rc) {
5958 wiphy_err(hw->wiphy, "Cannot register device\n");
5959 goto err_unprobe_hw;
5960 }
5961
5962 return 0;
5963
5964err_unprobe_hw:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005965 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005966 mwl8k_txq_deinit(hw, i);
5967 mwl8k_rxq_deinit(hw, 0);
5968
5969err_free_cookie:
5970 if (priv->cookie != NULL)
5971 pci_free_consistent(priv->pdev, 4,
5972 priv->cookie, priv->cookie_dma);
5973
5974 return rc;
5975}
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05005976static int mwl8k_probe(struct pci_dev *pdev,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005977 const struct pci_device_id *id)
5978{
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005979 static int printed_version;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005980 struct ieee80211_hw *hw;
5981 struct mwl8k_priv *priv;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005982 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005983 int rc;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02005984
5985 if (!printed_version) {
5986 printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION);
5987 printed_version = 1;
5988 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005989
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005990
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005991 rc = pci_enable_device(pdev);
5992 if (rc) {
5993 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
5994 MWL8K_NAME);
5995 return rc;
5996 }
5997
5998 rc = pci_request_regions(pdev, MWL8K_NAME);
5999 if (rc) {
6000 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
6001 MWL8K_NAME);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01006002 goto err_disable_device;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006003 }
6004
6005 pci_set_master(pdev);
6006
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01006007
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006008 hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
6009 if (hw == NULL) {
6010 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
6011 rc = -ENOMEM;
6012 goto err_free_reg;
6013 }
6014
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01006015 SET_IEEE80211_DEV(hw, &pdev->dev);
6016 pci_set_drvdata(pdev, hw);
6017
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006018 priv = hw->priv;
6019 priv->hw = hw;
6020 priv->pdev = pdev;
John W. Linvillebcb628d2009-11-06 16:40:16 -05006021 priv->device_info = &mwl8k_info_tbl[id->driver_data];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006022
Nishant Sarmukadam98929822013-03-01 17:13:01 +05306023 if (id->driver_data == MWL8764)
6024 priv->is_8764 = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006025
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006026 priv->sram = pci_iomap(pdev, 0, 0x10000);
6027 if (priv->sram == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07006028 wiphy_err(hw->wiphy, "Cannot map device SRAM\n");
Alexey Khoroshilova2ca8ec2013-01-19 01:24:01 +04006029 rc = -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006030 goto err_iounmap;
6031 }
6032
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006033 /*
6034 * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
6035 * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
6036 */
6037 priv->regs = pci_iomap(pdev, 1, 0x10000);
6038 if (priv->regs == NULL) {
6039 priv->regs = pci_iomap(pdev, 2, 0x10000);
6040 if (priv->regs == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07006041 wiphy_err(hw->wiphy, "Cannot map device registers\n");
Alexey Khoroshilova2ca8ec2013-01-19 01:24:01 +04006042 rc = -EIO;
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006043 goto err_iounmap;
6044 }
6045 }
6046
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006047 /*
Brian Cavagnolo99020472010-11-12 17:23:52 -08006048 * Choose the initial fw image depending on user input. If a second
6049 * image is available, make it the alternative image that will be
6050 * loaded if the first one fails.
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006051 */
Brian Cavagnolo99020472010-11-12 17:23:52 -08006052 init_completion(&priv->firmware_loading_complete);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006053 di = priv->device_info;
Brian Cavagnolo99020472010-11-12 17:23:52 -08006054 if (ap_mode_default && di->fw_image_ap) {
6055 priv->fw_pref = di->fw_image_ap;
6056 priv->fw_alt = di->fw_image_sta;
6057 } else if (!ap_mode_default && di->fw_image_sta) {
6058 priv->fw_pref = di->fw_image_sta;
6059 priv->fw_alt = di->fw_image_ap;
6060 } else if (ap_mode_default && !di->fw_image_ap && di->fw_image_sta) {
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006061 printk(KERN_WARNING "AP fw is unavailable. Using STA fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08006062 priv->fw_pref = di->fw_image_sta;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006063 } else if (!ap_mode_default && !di->fw_image_sta && di->fw_image_ap) {
6064 printk(KERN_WARNING "STA fw is unavailable. Using AP fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08006065 priv->fw_pref = di->fw_image_ap;
6066 }
6067 rc = mwl8k_init_firmware(hw, priv->fw_pref, true);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006068 if (rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006069 goto err_stop_firmware;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05306070
6071 priv->hw_restart_in_progress = false;
6072
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05306073 priv->running_bsses = 0;
6074
Brian Cavagnolo99020472010-11-12 17:23:52 -08006075 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006076
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01006077err_stop_firmware:
6078 mwl8k_hw_reset(priv);
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01006079
6080err_iounmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006081 if (priv->regs != NULL)
6082 pci_iounmap(pdev, priv->regs);
6083
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006084 if (priv->sram != NULL)
6085 pci_iounmap(pdev, priv->sram);
6086
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006087 pci_set_drvdata(pdev, NULL);
6088 ieee80211_free_hw(hw);
6089
6090err_free_reg:
6091 pci_release_regions(pdev);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01006092
6093err_disable_device:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006094 pci_disable_device(pdev);
6095
6096 return rc;
6097}
6098
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05006099static void mwl8k_remove(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006100{
6101 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
6102 struct mwl8k_priv *priv;
6103 int i;
6104
6105 if (hw == NULL)
6106 return;
6107 priv = hw->priv;
6108
Brian Cavagnolo99020472010-11-12 17:23:52 -08006109 wait_for_completion(&priv->firmware_loading_complete);
6110
6111 if (priv->fw_state == FW_STATE_ERROR) {
6112 mwl8k_hw_reset(priv);
6113 goto unmap;
6114 }
6115
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006116 ieee80211_stop_queues(hw);
6117
Lennert Buytenhek60aa5692009-08-03 21:59:09 +02006118 ieee80211_unregister_hw(hw);
6119
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01006120 /* Remove TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01006121 tasklet_kill(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01006122 tasklet_kill(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006123
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006124 /* Stop hardware */
6125 mwl8k_hw_reset(priv);
6126
6127 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07006128 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01006129 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006130
Brian Cavagnoloe6007072011-03-17 11:58:44 -07006131 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006132 mwl8k_txq_deinit(hw, i);
6133
6134 mwl8k_rxq_deinit(hw, 0);
6135
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02006136 pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006137
Brian Cavagnolo99020472010-11-12 17:23:52 -08006138unmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006139 pci_iounmap(pdev, priv->regs);
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006140 pci_iounmap(pdev, priv->sram);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006141 pci_set_drvdata(pdev, NULL);
6142 ieee80211_free_hw(hw);
6143 pci_release_regions(pdev);
6144 pci_disable_device(pdev);
6145}
6146
6147static struct pci_driver mwl8k_driver = {
6148 .name = MWL8K_NAME,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02006149 .id_table = mwl8k_pci_id_table,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006150 .probe = mwl8k_probe,
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05006151 .remove = mwl8k_remove,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006152};
6153
Axel Lin5b0a3b72012-04-14 10:38:36 +08006154module_pci_driver(mwl8k_driver);
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02006155
6156MODULE_DESCRIPTION(MWL8K_DESC);
6157MODULE_VERSION(MWL8K_VERSION);
6158MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
6159MODULE_LICENSE("GPL");