blob: 91c5f74350b72f967e335c8accbdb6b6089e858c [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
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200104struct rxd_ops {
105 int rxd_size;
106 void (*rxd_init)(void *rxd, dma_addr_t next_dma_addr);
107 void (*rxd_refill)(void *rxd, dma_addr_t addr, int len);
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100108 int (*rxd_process)(void *rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -0400109 __le16 *qos, s8 *noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200110};
111
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200112struct mwl8k_device_info {
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200113 char *part_name;
114 char *helper_image;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800115 char *fw_image_sta;
116 char *fw_image_ap;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100117 struct rxd_ops *ap_rxd_ops;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -0800118 u32 fw_api_ap;
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200119};
120
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100121struct mwl8k_rx_queue {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200122 int rxd_count;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100123
124 /* hw receives here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200125 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100126
127 /* refill descs here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200128 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100129
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200130 void *rxd;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200131 dma_addr_t rxd_dma;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200132 struct {
133 struct sk_buff *skb;
FUJITA Tomonori53b1b3e12010-04-02 13:10:38 +0900134 DEFINE_DMA_UNMAP_ADDR(dma);
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200135 } *buf;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100136};
137
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100138struct mwl8k_tx_queue {
139 /* hw transmits here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200140 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100141
142 /* sw appends here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200143 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100144
Kalle Valo8ccbc3b2010-02-07 10:20:52 +0200145 unsigned int len;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200146 struct mwl8k_tx_desc *txd;
147 dma_addr_t txd_dma;
148 struct sk_buff **skb;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100149};
150
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700151enum {
152 AMPDU_NO_STREAM,
153 AMPDU_STREAM_NEW,
154 AMPDU_STREAM_IN_PROGRESS,
155 AMPDU_STREAM_ACTIVE,
156};
157
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700158struct mwl8k_ampdu_stream {
159 struct ieee80211_sta *sta;
160 u8 tid;
161 u8 state;
162 u8 idx;
163 u8 txq_idx; /* index of this stream in priv->txq */
164};
165
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100166struct mwl8k_priv {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100167 struct ieee80211_hw *hw;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100168 struct pci_dev *pdev;
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +0530169 int irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100170
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200171 struct mwl8k_device_info *device_info;
172
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100173 void __iomem *sram;
174 void __iomem *regs;
175
176 /* firmware */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800177 const struct firmware *fw_helper;
178 const struct firmware *fw_ucode;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100179
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100180 /* hardware/firmware parameters */
181 bool ap_fw;
182 struct rxd_ops *rxd_ops;
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100183 struct ieee80211_supported_band band_24;
184 struct ieee80211_channel channels_24[14];
185 struct ieee80211_rate rates_24[14];
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100186 struct ieee80211_supported_band band_50;
187 struct ieee80211_channel channels_50[4];
188 struct ieee80211_rate rates_50[9];
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100189 u32 ap_macids_supported;
190 u32 sta_macids_supported;
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100191
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700192 /* Ampdu stream information */
193 u8 num_ampdu_queues;
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700194 spinlock_t stream_lock;
195 struct mwl8k_ampdu_stream ampdu[MWL8K_MAX_AMPDU_QUEUES];
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700196 struct work_struct watchdog_ba_handle;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700197
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200198 /* firmware access */
199 struct mutex fw_mutex;
200 struct task_struct *fw_mutex_owner;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +0530201 struct task_struct *hw_restart_owner;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200202 int fw_mutex_depth;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200203 struct completion *hostcmd_wait;
204
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100205 /* lock held over TX and TX reap */
206 spinlock_t tx_lock;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100207
Lennert Buytenhek88de754a2009-10-22 20:19:37 +0200208 /* TX quiesce completion, protected by fw_mutex and tx_lock */
209 struct completion *tx_wait;
210
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100211 /* List of interfaces. */
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100212 u32 macids_used;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100213 struct list_head vif_list;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100214
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100215 /* power management status cookie from firmware */
216 u32 *cookie;
217 dma_addr_t cookie_dma;
218
219 u16 num_mcaddrs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100220 u8 hw_rev;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +0200221 u32 fw_rev;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100222
223 /*
224 * Running count of TX packets in flight, to avoid
225 * iterating over the transmit rings each time.
226 */
227 int pending_tx_pkts;
228
229 struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES];
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700230 struct mwl8k_tx_queue txq[MWL8K_MAX_TX_QUEUES];
231 u32 txq_offset[MWL8K_MAX_TX_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100232
Lennert Buytenhekc46563b2009-07-16 12:14:58 +0200233 bool radio_on;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +0200234 bool radio_short_preamble;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +0200235 bool sniffer_enabled;
Lennert Buytenhek0439b1f2009-07-16 12:34:02 +0200236 bool wmm_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100237
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100238 /* XXX need to convert this to handle multiple interfaces */
239 bool capture_beacon;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200240 u8 capture_bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100241 struct sk_buff *beacon_skb;
242
243 /*
244 * This FJ worker has to be global as it is scheduled from the
245 * RX handler. At this point we don't know which interface it
246 * belongs to until the list of bssids waiting to complete join
247 * is checked.
248 */
249 struct work_struct finalize_join_worker;
250
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +0100251 /* Tasklet to perform TX reclaim. */
252 struct tasklet_struct poll_tx_task;
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +0100253
254 /* Tasklet to perform RX. */
255 struct tasklet_struct poll_rx_task;
John W. Linville0d462bb2010-07-28 14:04:24 -0400256
257 /* Most recently reported noise in dBm */
258 s8 noise;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800259
260 /*
261 * preserve the queue configurations so they can be restored if/when
262 * the firmware image is swapped.
263 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700264 struct ieee80211_tx_queue_params wmm_params[MWL8K_TX_WMM_QUEUES];
Brian Cavagnolo99020472010-11-12 17:23:52 -0800265
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +0530266 /* To perform the task of reloading the firmware */
267 struct work_struct fw_reload;
268 bool hw_restart_in_progress;
269
Brian Cavagnolo99020472010-11-12 17:23:52 -0800270 /* async firmware loading state */
271 unsigned fw_state;
272 char *fw_pref;
273 char *fw_alt;
274 struct completion firmware_loading_complete;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100275};
276
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800277#define MAX_WEP_KEY_LEN 13
278#define NUM_WEP_KEYS 4
279
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100280/* Per interface specific private data */
281struct mwl8k_vif {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100282 struct list_head list;
283 struct ieee80211_vif *vif;
284
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100285 /* Firmware macid for this vif. */
286 int macid;
287
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +0100288 /* Non AMPDU sequence number assigned by driver. */
Lennert Buytenheka6804002010-01-04 21:55:42 +0100289 u16 seqno;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800290
291 /* Saved WEP keys */
292 struct {
293 u8 enabled;
294 u8 key[sizeof(struct ieee80211_key_conf) + MAX_WEP_KEY_LEN];
295 } wep_key_conf[NUM_WEP_KEYS];
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800296
297 /* BSSID */
298 u8 bssid[ETH_ALEN];
299
300 /* A flag to indicate is HW crypto is enabled for this bssid */
301 bool is_hw_crypto_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100302};
Lennert Buytenheka94cc972009-08-03 21:58:57 +0200303#define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv))
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800304#define IEEE80211_KEY_CONF(_u8) ((struct ieee80211_key_conf *)(_u8))
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100305
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700306struct tx_traffic_info {
307 u32 start_time;
308 u32 pkts;
309};
310
311#define MWL8K_MAX_TID 8
Lennert Buytenheka6804002010-01-04 21:55:42 +0100312struct mwl8k_sta {
313 /* Index into station database. Returned by UPDATE_STADB. */
314 u8 peer_id;
Nishant Sarmukadam170335432011-03-17 11:58:48 -0700315 u8 is_ampdu_allowed;
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700316 struct tx_traffic_info tx_stats[MWL8K_MAX_TID];
Lennert Buytenheka6804002010-01-04 21:55:42 +0100317};
318#define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv))
319
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100320static const struct ieee80211_channel mwl8k_channels_24[] = {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100321 { .center_freq = 2412, .hw_value = 1, },
322 { .center_freq = 2417, .hw_value = 2, },
323 { .center_freq = 2422, .hw_value = 3, },
324 { .center_freq = 2427, .hw_value = 4, },
325 { .center_freq = 2432, .hw_value = 5, },
326 { .center_freq = 2437, .hw_value = 6, },
327 { .center_freq = 2442, .hw_value = 7, },
328 { .center_freq = 2447, .hw_value = 8, },
329 { .center_freq = 2452, .hw_value = 9, },
330 { .center_freq = 2457, .hw_value = 10, },
331 { .center_freq = 2462, .hw_value = 11, },
Lennert Buytenhek647ca6b2009-11-30 18:32:20 +0100332 { .center_freq = 2467, .hw_value = 12, },
333 { .center_freq = 2472, .hw_value = 13, },
334 { .center_freq = 2484, .hw_value = 14, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100335};
336
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100337static const struct ieee80211_rate mwl8k_rates_24[] = {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100338 { .bitrate = 10, .hw_value = 2, },
339 { .bitrate = 20, .hw_value = 4, },
340 { .bitrate = 55, .hw_value = 11, },
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200341 { .bitrate = 110, .hw_value = 22, },
342 { .bitrate = 220, .hw_value = 44, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100343 { .bitrate = 60, .hw_value = 12, },
344 { .bitrate = 90, .hw_value = 18, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100345 { .bitrate = 120, .hw_value = 24, },
346 { .bitrate = 180, .hw_value = 36, },
347 { .bitrate = 240, .hw_value = 48, },
348 { .bitrate = 360, .hw_value = 72, },
349 { .bitrate = 480, .hw_value = 96, },
350 { .bitrate = 540, .hw_value = 108, },
Lennert Buytenhek140eb5e2009-11-30 18:11:44 +0100351 { .bitrate = 720, .hw_value = 144, },
352};
353
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100354static const struct ieee80211_channel mwl8k_channels_50[] = {
355 { .center_freq = 5180, .hw_value = 36, },
356 { .center_freq = 5200, .hw_value = 40, },
357 { .center_freq = 5220, .hw_value = 44, },
358 { .center_freq = 5240, .hw_value = 48, },
359};
360
361static const struct ieee80211_rate mwl8k_rates_50[] = {
362 { .bitrate = 60, .hw_value = 12, },
363 { .bitrate = 90, .hw_value = 18, },
364 { .bitrate = 120, .hw_value = 24, },
365 { .bitrate = 180, .hw_value = 36, },
366 { .bitrate = 240, .hw_value = 48, },
367 { .bitrate = 360, .hw_value = 72, },
368 { .bitrate = 480, .hw_value = 96, },
369 { .bitrate = 540, .hw_value = 108, },
370 { .bitrate = 720, .hw_value = 144, },
371};
372
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100373/* Set or get info from Firmware */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100374#define MWL8K_CMD_GET 0x0000
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800375#define MWL8K_CMD_SET 0x0001
376#define MWL8K_CMD_SET_LIST 0x0002
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100377
378/* Firmware command codes */
379#define MWL8K_CMD_CODE_DNLD 0x0001
380#define MWL8K_CMD_GET_HW_SPEC 0x0003
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200381#define MWL8K_CMD_SET_HW_SPEC 0x0004
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100382#define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010
383#define MWL8K_CMD_GET_STAT 0x0014
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200384#define MWL8K_CMD_RADIO_CONTROL 0x001c
385#define MWL8K_CMD_RF_TX_POWER 0x001e
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800386#define MWL8K_CMD_TX_POWER 0x001f
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200387#define MWL8K_CMD_RF_ANTENNA 0x0020
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100388#define MWL8K_CMD_SET_BEACON 0x0100 /* per-vif */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100389#define MWL8K_CMD_SET_PRE_SCAN 0x0107
390#define MWL8K_CMD_SET_POST_SCAN 0x0108
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200391#define MWL8K_CMD_SET_RF_CHANNEL 0x010a
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100392#define MWL8K_CMD_SET_AID 0x010d
393#define MWL8K_CMD_SET_RATE 0x0110
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200394#define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100395#define MWL8K_CMD_RTS_THRESHOLD 0x0113
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200396#define MWL8K_CMD_SET_SLOT 0x0114
397#define MWL8K_CMD_SET_EDCA_PARAMS 0x0115
398#define MWL8K_CMD_SET_WMM_MODE 0x0123
399#define MWL8K_CMD_MIMO_CONFIG 0x0125
400#define MWL8K_CMD_USE_FIXED_RATE 0x0126
401#define MWL8K_CMD_ENABLE_SNIFFER 0x0150
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100402#define MWL8K_CMD_SET_MAC_ADDR 0x0202 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200403#define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700404#define MWL8K_CMD_GET_WATCHDOG_BITMAP 0x0205
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100405#define MWL8K_CMD_BSS_START 0x1100 /* per-vif */
406#define MWL8K_CMD_SET_NEW_STN 0x1111 /* per-vif */
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800407#define MWL8K_CMD_UPDATE_ENCRYPTION 0x1122 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200408#define MWL8K_CMD_UPDATE_STADB 0x1123
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700409#define MWL8K_CMD_BASTREAM 0x1125
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100410
John W. Linvilleb6037422010-07-20 13:55:00 -0400411static const char *mwl8k_cmd_name(__le16 cmd, char *buf, int bufsize)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100412{
John W. Linvilleb6037422010-07-20 13:55:00 -0400413 u16 command = le16_to_cpu(cmd);
414
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100415#define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\
416 snprintf(buf, bufsize, "%s", #x);\
417 return buf;\
418 } while (0)
John W. Linvilleb6037422010-07-20 13:55:00 -0400419 switch (command & ~0x8000) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100420 MWL8K_CMDNAME(CODE_DNLD);
421 MWL8K_CMDNAME(GET_HW_SPEC);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200422 MWL8K_CMDNAME(SET_HW_SPEC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100423 MWL8K_CMDNAME(MAC_MULTICAST_ADR);
424 MWL8K_CMDNAME(GET_STAT);
425 MWL8K_CMDNAME(RADIO_CONTROL);
426 MWL8K_CMDNAME(RF_TX_POWER);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800427 MWL8K_CMDNAME(TX_POWER);
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200428 MWL8K_CMDNAME(RF_ANTENNA);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100429 MWL8K_CMDNAME(SET_BEACON);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100430 MWL8K_CMDNAME(SET_PRE_SCAN);
431 MWL8K_CMDNAME(SET_POST_SCAN);
432 MWL8K_CMDNAME(SET_RF_CHANNEL);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100433 MWL8K_CMDNAME(SET_AID);
434 MWL8K_CMDNAME(SET_RATE);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200435 MWL8K_CMDNAME(SET_FINALIZE_JOIN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100436 MWL8K_CMDNAME(RTS_THRESHOLD);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200437 MWL8K_CMDNAME(SET_SLOT);
438 MWL8K_CMDNAME(SET_EDCA_PARAMS);
439 MWL8K_CMDNAME(SET_WMM_MODE);
440 MWL8K_CMDNAME(MIMO_CONFIG);
441 MWL8K_CMDNAME(USE_FIXED_RATE);
442 MWL8K_CMDNAME(ENABLE_SNIFFER);
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200443 MWL8K_CMDNAME(SET_MAC_ADDR);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200444 MWL8K_CMDNAME(SET_RATEADAPT_MODE);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100445 MWL8K_CMDNAME(BSS_START);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +0100446 MWL8K_CMDNAME(SET_NEW_STN);
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800447 MWL8K_CMDNAME(UPDATE_ENCRYPTION);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200448 MWL8K_CMDNAME(UPDATE_STADB);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700449 MWL8K_CMDNAME(BASTREAM);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700450 MWL8K_CMDNAME(GET_WATCHDOG_BITMAP);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100451 default:
452 snprintf(buf, bufsize, "0x%x", cmd);
453 }
454#undef MWL8K_CMDNAME
455
456 return buf;
457}
458
459/* Hardware and firmware reset */
460static void mwl8k_hw_reset(struct mwl8k_priv *priv)
461{
462 iowrite32(MWL8K_H2A_INT_RESET,
463 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
464 iowrite32(MWL8K_H2A_INT_RESET,
465 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
466 msleep(20);
467}
468
469/* Release fw image */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800470static void mwl8k_release_fw(const struct firmware **fw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100471{
472 if (*fw == NULL)
473 return;
474 release_firmware(*fw);
475 *fw = NULL;
476}
477
478static void mwl8k_release_firmware(struct mwl8k_priv *priv)
479{
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100480 mwl8k_release_fw(&priv->fw_ucode);
481 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100482}
483
Brian Cavagnolo99020472010-11-12 17:23:52 -0800484/* states for asynchronous f/w loading */
485static void mwl8k_fw_state_machine(const struct firmware *fw, void *context);
486enum {
487 FW_STATE_INIT = 0,
488 FW_STATE_LOADING_PREF,
489 FW_STATE_LOADING_ALT,
490 FW_STATE_ERROR,
491};
492
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100493/* Request fw image */
494static int mwl8k_request_fw(struct mwl8k_priv *priv,
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800495 const char *fname, const struct firmware **fw,
Brian Cavagnolo99020472010-11-12 17:23:52 -0800496 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100497{
498 /* release current image */
499 if (*fw != NULL)
500 mwl8k_release_fw(fw);
501
Brian Cavagnolo99020472010-11-12 17:23:52 -0800502 if (nowait)
503 return request_firmware_nowait(THIS_MODULE, 1, fname,
504 &priv->pdev->dev, GFP_KERNEL,
505 priv, mwl8k_fw_state_machine);
506 else
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800507 return request_firmware(fw, fname, &priv->pdev->dev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100508}
509
Brian Cavagnolo99020472010-11-12 17:23:52 -0800510static int mwl8k_request_firmware(struct mwl8k_priv *priv, char *fw_image,
511 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100512{
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200513 struct mwl8k_device_info *di = priv->device_info;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100514 int rc;
515
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200516 if (di->helper_image != NULL) {
Brian Cavagnolo99020472010-11-12 17:23:52 -0800517 if (nowait)
518 rc = mwl8k_request_fw(priv, di->helper_image,
519 &priv->fw_helper, true);
520 else
521 rc = mwl8k_request_fw(priv, di->helper_image,
522 &priv->fw_helper, false);
523 if (rc)
524 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
525 pci_name(priv->pdev), di->helper_image);
526
527 if (rc || nowait)
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200528 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100529 }
530
Brian Cavagnolo99020472010-11-12 17:23:52 -0800531 if (nowait) {
532 /*
533 * if we get here, no helper image is needed. Skip the
534 * FW_STATE_INIT state.
535 */
536 priv->fw_state = FW_STATE_LOADING_PREF;
537 rc = mwl8k_request_fw(priv, fw_image,
538 &priv->fw_ucode,
539 true);
540 } else
541 rc = mwl8k_request_fw(priv, fw_image,
542 &priv->fw_ucode, false);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100543 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200544 printk(KERN_ERR "%s: Error requesting firmware file %s\n",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800545 pci_name(priv->pdev), fw_image);
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100546 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100547 return rc;
548 }
549
550 return 0;
551}
552
553struct mwl8k_cmd_pkt {
554 __le16 code;
555 __le16 length;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100556 __u8 seq_num;
557 __u8 macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100558 __le16 result;
559 char payload[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000560} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100561
562/*
563 * Firmware loading.
564 */
565static int
566mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length)
567{
568 void __iomem *regs = priv->regs;
569 dma_addr_t dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100570 int loops;
571
572 dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE);
573 if (pci_dma_mapping_error(priv->pdev, dma_addr))
574 return -ENOMEM;
575
576 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
577 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
578 iowrite32(MWL8K_H2A_INT_DOORBELL,
579 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
580 iowrite32(MWL8K_H2A_INT_DUMMY,
581 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
582
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100583 loops = 1000;
584 do {
585 u32 int_code;
586
587 int_code = ioread32(regs + MWL8K_HIU_INT_CODE);
588 if (int_code == MWL8K_INT_CODE_CMD_FINISHED) {
589 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100590 break;
591 }
592
Lennert Buytenhek3d76e822009-10-22 20:20:16 +0200593 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100594 udelay(1);
595 } while (--loops);
596
597 pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE);
598
Lennert Buytenhekd4b70572009-07-16 12:44:45 +0200599 return loops ? 0 : -ETIMEDOUT;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100600}
601
602static int mwl8k_load_fw_image(struct mwl8k_priv *priv,
603 const u8 *data, size_t length)
604{
605 struct mwl8k_cmd_pkt *cmd;
606 int done;
607 int rc = 0;
608
609 cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL);
610 if (cmd == NULL)
611 return -ENOMEM;
612
613 cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD);
614 cmd->seq_num = 0;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100615 cmd->macid = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100616 cmd->result = 0;
617
618 done = 0;
619 while (length) {
620 int block_size = length > 256 ? 256 : length;
621
622 memcpy(cmd->payload, data + done, block_size);
623 cmd->length = cpu_to_le16(block_size);
624
625 rc = mwl8k_send_fw_load_cmd(priv, cmd,
626 sizeof(*cmd) + block_size);
627 if (rc)
628 break;
629
630 done += block_size;
631 length -= block_size;
632 }
633
634 if (!rc) {
635 cmd->length = 0;
636 rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd));
637 }
638
639 kfree(cmd);
640
641 return rc;
642}
643
644static int mwl8k_feed_fw_image(struct mwl8k_priv *priv,
645 const u8 *data, size_t length)
646{
647 unsigned char *buffer;
648 int may_continue, rc = 0;
649 u32 done, prev_block_size;
650
651 buffer = kmalloc(1024, GFP_KERNEL);
652 if (buffer == NULL)
653 return -ENOMEM;
654
655 done = 0;
656 prev_block_size = 0;
657 may_continue = 1000;
658 while (may_continue > 0) {
659 u32 block_size;
660
661 block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH);
662 if (block_size & 1) {
663 block_size &= ~1;
664 may_continue--;
665 } else {
666 done += prev_block_size;
667 length -= prev_block_size;
668 }
669
670 if (block_size > 1024 || block_size > length) {
671 rc = -EOVERFLOW;
672 break;
673 }
674
675 if (length == 0) {
676 rc = 0;
677 break;
678 }
679
680 if (block_size == 0) {
681 rc = -EPROTO;
682 may_continue--;
683 udelay(1);
684 continue;
685 }
686
687 prev_block_size = block_size;
688 memcpy(buffer, data + done, block_size);
689
690 rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size);
691 if (rc)
692 break;
693 }
694
695 if (!rc && length != 0)
696 rc = -EREMOTEIO;
697
698 kfree(buffer);
699
700 return rc;
701}
702
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200703static int mwl8k_load_firmware(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100704{
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200705 struct mwl8k_priv *priv = hw->priv;
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800706 const struct firmware *fw = priv->fw_ucode;
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200707 int rc;
708 int loops;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100709
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200710 if (!memcmp(fw->data, "\x01\x00\x00\x00", 4)) {
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800711 const struct firmware *helper = priv->fw_helper;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100712
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200713 if (helper == NULL) {
714 printk(KERN_ERR "%s: helper image needed but none "
715 "given\n", pci_name(priv->pdev));
716 return -EINVAL;
717 }
718
719 rc = mwl8k_load_fw_image(priv, helper->data, helper->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100720 if (rc) {
721 printk(KERN_ERR "%s: unable to load firmware "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200722 "helper image\n", pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100723 return rc;
724 }
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +0530725 msleep(20);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100726
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200727 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100728 } else {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200729 rc = mwl8k_load_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100730 }
731
732 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200733 printk(KERN_ERR "%s: unable to load firmware image\n",
734 pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100735 return rc;
736 }
737
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100738 iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100739
Lennert Buytenhek89b872e2009-11-30 18:13:20 +0100740 loops = 500000;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100741 do {
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200742 u32 ready_code;
743
744 ready_code = ioread32(priv->regs + MWL8K_HIU_INT_CODE);
745 if (ready_code == MWL8K_FWAP_READY) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000746 priv->ap_fw = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100747 break;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200748 } else if (ready_code == MWL8K_FWSTA_READY) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000749 priv->ap_fw = false;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200750 break;
751 }
752
753 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100754 udelay(1);
755 } while (--loops);
756
757 return loops ? 0 : -ETIMEDOUT;
758}
759
760
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100761/* DMA header used by firmware and hardware. */
762struct mwl8k_dma_data {
763 __le16 fwlen;
764 struct ieee80211_hdr wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100765 char data[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000766} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100767
768/* Routines to add/remove DMA header from skb. */
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100769static inline void mwl8k_remove_dma_header(struct sk_buff *skb, __le16 qos)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100770{
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100771 struct mwl8k_dma_data *tr;
772 int hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100773
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100774 tr = (struct mwl8k_dma_data *)skb->data;
775 hdrlen = ieee80211_hdrlen(tr->wh.frame_control);
776
777 if (hdrlen != sizeof(tr->wh)) {
778 if (ieee80211_is_data_qos(tr->wh.frame_control)) {
779 memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2);
780 *((__le16 *)(tr->data - 2)) = qos;
781 } else {
782 memmove(tr->data - hdrlen, &tr->wh, hdrlen);
783 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100784 }
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100785
786 if (hdrlen != sizeof(*tr))
787 skb_pull(skb, sizeof(*tr) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100788}
789
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530790#define REDUCED_TX_HEADROOM 8
791
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800792static void
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530793mwl8k_add_dma_header(struct mwl8k_priv *priv, struct sk_buff *skb,
794 int head_pad, int tail_pad)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100795{
796 struct ieee80211_hdr *wh;
Lennert Buytenhekca009302009-11-30 18:12:20 +0100797 int hdrlen;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800798 int reqd_hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100799 struct mwl8k_dma_data *tr;
800
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100801 /*
Lennert Buytenhekca009302009-11-30 18:12:20 +0100802 * Add a firmware DMA header; the firmware requires that we
803 * present a 2-byte payload length followed by a 4-address
804 * header (without QoS field), followed (optionally) by any
805 * WEP/ExtIV header (but only filled in for CCMP).
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100806 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100807 wh = (struct ieee80211_hdr *)skb->data;
808
809 hdrlen = ieee80211_hdrlen(wh->frame_control);
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530810
811 /*
812 * Check if skb_resize is required because of
813 * tx_headroom adjustment.
814 */
815 if (priv->ap_fw && (hdrlen < (sizeof(struct ieee80211_cts)
816 + REDUCED_TX_HEADROOM))) {
817 if (pskb_expand_head(skb, REDUCED_TX_HEADROOM, 0, GFP_ATOMIC)) {
818
819 wiphy_err(priv->hw->wiphy,
820 "Failed to reallocate TX buffer\n");
821 return;
822 }
823 skb->truesize += REDUCED_TX_HEADROOM;
824 }
825
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530826 reqd_hdrlen = sizeof(*tr) + head_pad;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800827
828 if (hdrlen != reqd_hdrlen)
829 skb_push(skb, reqd_hdrlen - hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100830
831 if (ieee80211_is_data_qos(wh->frame_control))
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800832 hdrlen -= IEEE80211_QOS_CTL_LEN;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100833
834 tr = (struct mwl8k_dma_data *)skb->data;
835 if (wh != &tr->wh)
836 memmove(&tr->wh, wh, hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100837 if (hdrlen != sizeof(tr->wh))
838 memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100839
840 /*
841 * Firmware length is the length of the fully formed "802.11
842 * payload". That is, everything except for the 802.11 header.
843 * This includes all crypto material including the MIC.
844 */
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800845 tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr) + tail_pad);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100846}
847
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530848static void mwl8k_encapsulate_tx_frame(struct mwl8k_priv *priv,
849 struct sk_buff *skb)
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800850{
851 struct ieee80211_hdr *wh;
852 struct ieee80211_tx_info *tx_info;
853 struct ieee80211_key_conf *key_conf;
854 int data_pad;
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530855 int head_pad = 0;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800856
857 wh = (struct ieee80211_hdr *)skb->data;
858
859 tx_info = IEEE80211_SKB_CB(skb);
860
861 key_conf = NULL;
862 if (ieee80211_is_data(wh->frame_control))
863 key_conf = tx_info->control.hw_key;
864
865 /*
866 * Make sure the packet header is in the DMA header format (4-address
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530867 * without QoS), and add head & tail padding when HW crypto is enabled.
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800868 *
869 * We have the following trailer padding requirements:
870 * - WEP: 4 trailer bytes (ICV)
871 * - TKIP: 12 trailer bytes (8 MIC + 4 ICV)
872 * - CCMP: 8 trailer bytes (MIC)
873 */
874 data_pad = 0;
875 if (key_conf != NULL) {
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530876 head_pad = key_conf->iv_len;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800877 switch (key_conf->cipher) {
878 case WLAN_CIPHER_SUITE_WEP40:
879 case WLAN_CIPHER_SUITE_WEP104:
880 data_pad = 4;
881 break;
882 case WLAN_CIPHER_SUITE_TKIP:
883 data_pad = 12;
884 break;
885 case WLAN_CIPHER_SUITE_CCMP:
886 data_pad = 8;
887 break;
888 }
889 }
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530890 mwl8k_add_dma_header(priv, skb, head_pad, data_pad);
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800891}
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100892
893/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100894 * Packet reception for 88w8366 AP firmware.
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200895 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100896struct mwl8k_rxd_8366_ap {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200897 __le16 pkt_len;
898 __u8 sq2;
899 __u8 rate;
900 __le32 pkt_phys_addr;
901 __le32 next_rxd_phys_addr;
902 __le16 qos_control;
903 __le16 htsig2;
904 __le32 hw_rssi_info;
905 __le32 hw_noise_floor_info;
906 __u8 noise_floor;
907 __u8 pad0[3];
908 __u8 rssi;
909 __u8 rx_status;
910 __u8 channel;
911 __u8 rx_ctrl;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000912} __packed;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200913
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100914#define MWL8K_8366_AP_RATE_INFO_MCS_FORMAT 0x80
915#define MWL8K_8366_AP_RATE_INFO_40MHZ 0x40
916#define MWL8K_8366_AP_RATE_INFO_RATEID(x) ((x) & 0x3f)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100917
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100918#define MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST 0x80
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200919
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800920/* 8366 AP rx_status bits */
921#define MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK 0x80
922#define MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR 0xFF
923#define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR 0x02
924#define MWL8K_8366_AP_RXSTAT_WEP_DECRYPT_ICV_ERR 0x04
925#define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_ICV_ERR 0x08
926
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100927static void mwl8k_rxd_8366_ap_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200928{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100929 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200930
931 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100932 rxd->rx_ctrl = MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200933}
934
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100935static void mwl8k_rxd_8366_ap_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200936{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100937 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200938
939 rxd->pkt_len = cpu_to_le16(len);
940 rxd->pkt_phys_addr = cpu_to_le32(addr);
941 wmb();
942 rxd->rx_ctrl = 0;
943}
944
945static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100946mwl8k_rxd_8366_ap_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -0400947 __le16 *qos, s8 *noise)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200948{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100949 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200950
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100951 if (!(rxd->rx_ctrl & MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200952 return -1;
953 rmb();
954
955 memset(status, 0, sizeof(*status));
956
957 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -0400958 *noise = -rxd->noise_floor;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200959
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100960 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_MCS_FORMAT) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200961 status->flag |= RX_FLAG_HT;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100962 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_40MHZ)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100963 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100964 status->rate_idx = MWL8K_8366_AP_RATE_INFO_RATEID(rxd->rate);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200965 } else {
966 int i;
967
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100968 for (i = 0; i < ARRAY_SIZE(mwl8k_rates_24); i++) {
969 if (mwl8k_rates_24[i].hw_value == rxd->rate) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200970 status->rate_idx = i;
971 break;
972 }
973 }
974 }
975
Lennert Buytenhek85478342010-01-12 13:48:56 +0100976 if (rxd->channel > 14) {
977 status->band = IEEE80211_BAND_5GHZ;
978 if (!(status->flag & RX_FLAG_HT))
979 status->rate_idx -= 5;
980 } else {
981 status->band = IEEE80211_BAND_2GHZ;
982 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +0900983 status->freq = ieee80211_channel_to_frequency(rxd->channel,
984 status->band);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200985
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100986 *qos = rxd->qos_control;
987
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800988 if ((rxd->rx_status != MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR) &&
989 (rxd->rx_status & MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK) &&
990 (rxd->rx_status & MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR))
991 status->flag |= RX_FLAG_MMIC_ERROR;
992
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200993 return le16_to_cpu(rxd->pkt_len);
994}
995
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100996static struct rxd_ops rxd_8366_ap_ops = {
997 .rxd_size = sizeof(struct mwl8k_rxd_8366_ap),
998 .rxd_init = mwl8k_rxd_8366_ap_init,
999 .rxd_refill = mwl8k_rxd_8366_ap_refill,
1000 .rxd_process = mwl8k_rxd_8366_ap_process,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001001};
1002
1003/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001004 * Packet reception for STA firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001005 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001006struct mwl8k_rxd_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001007 __le16 pkt_len;
1008 __u8 link_quality;
1009 __u8 noise_level;
1010 __le32 pkt_phys_addr;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001011 __le32 next_rxd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001012 __le16 qos_control;
1013 __le16 rate_info;
1014 __le32 pad0[4];
1015 __u8 rssi;
1016 __u8 channel;
1017 __le16 pad1;
1018 __u8 rx_ctrl;
1019 __u8 rx_status;
1020 __u8 pad2[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +00001021} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001022
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001023#define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000
1024#define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3)
1025#define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f)
1026#define MWL8K_STA_RATE_INFO_40MHZ 0x0004
1027#define MWL8K_STA_RATE_INFO_SHORTGI 0x0002
1028#define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001029
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001030#define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001031#define MWL8K_STA_RX_CTRL_DECRYPT_ERROR 0x04
1032/* ICV=0 or MIC=1 */
1033#define MWL8K_STA_RX_CTRL_DEC_ERR_TYPE 0x08
1034/* Key is uploaded only in failure case */
1035#define MWL8K_STA_RX_CTRL_KEY_INDEX 0x30
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001036
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001037static void mwl8k_rxd_sta_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001038{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001039 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001040
1041 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001042 rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001043}
1044
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001045static void mwl8k_rxd_sta_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001046{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001047 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001048
1049 rxd->pkt_len = cpu_to_le16(len);
1050 rxd->pkt_phys_addr = cpu_to_le32(addr);
1051 wmb();
1052 rxd->rx_ctrl = 0;
1053}
1054
1055static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001056mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -04001057 __le16 *qos, s8 *noise)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001058{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001059 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001060 u16 rate_info;
1061
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001062 if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001063 return -1;
1064 rmb();
1065
1066 rate_info = le16_to_cpu(rxd->rate_info);
1067
1068 memset(status, 0, sizeof(*status));
1069
1070 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -04001071 *noise = -rxd->noise_level;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001072 status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info);
1073 status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001074
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001075 if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001076 status->flag |= RX_FLAG_SHORTPRE;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001077 if (rate_info & MWL8K_STA_RATE_INFO_40MHZ)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001078 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001079 if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001080 status->flag |= RX_FLAG_SHORT_GI;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001081 if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001082 status->flag |= RX_FLAG_HT;
1083
Lennert Buytenhek85478342010-01-12 13:48:56 +01001084 if (rxd->channel > 14) {
1085 status->band = IEEE80211_BAND_5GHZ;
1086 if (!(status->flag & RX_FLAG_HT))
1087 status->rate_idx -= 5;
1088 } else {
1089 status->band = IEEE80211_BAND_2GHZ;
1090 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001091 status->freq = ieee80211_channel_to_frequency(rxd->channel,
1092 status->band);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001093
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001094 *qos = rxd->qos_control;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001095 if ((rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DECRYPT_ERROR) &&
1096 (rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DEC_ERR_TYPE))
1097 status->flag |= RX_FLAG_MMIC_ERROR;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001098
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001099 return le16_to_cpu(rxd->pkt_len);
1100}
1101
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001102static struct rxd_ops rxd_sta_ops = {
1103 .rxd_size = sizeof(struct mwl8k_rxd_sta),
1104 .rxd_init = mwl8k_rxd_sta_init,
1105 .rxd_refill = mwl8k_rxd_sta_refill,
1106 .rxd_process = mwl8k_rxd_sta_process,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001107};
1108
1109
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001110#define MWL8K_RX_DESCS 256
1111#define MWL8K_RX_MAXSZ 3800
1112
1113static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
1114{
1115 struct mwl8k_priv *priv = hw->priv;
1116 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1117 int size;
1118 int i;
1119
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001120 rxq->rxd_count = 0;
1121 rxq->head = 0;
1122 rxq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001123
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001124 size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001125
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001126 rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma);
1127 if (rxq->rxd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001128 wiphy_err(hw->wiphy, "failed to alloc RX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001129 return -ENOMEM;
1130 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001131 memset(rxq->rxd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001132
Shan Weib9ede5f2011-03-08 11:02:03 +08001133 rxq->buf = kcalloc(MWL8K_RX_DESCS, sizeof(*rxq->buf), GFP_KERNEL);
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001134 if (rxq->buf == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001135 wiphy_err(hw->wiphy, "failed to alloc RX skbuff list\n");
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001136 pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001137 return -ENOMEM;
1138 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001139
1140 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001141 int desc_size;
1142 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001143 int nexti;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001144 dma_addr_t next_dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001145
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001146 desc_size = priv->rxd_ops->rxd_size;
1147 rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001148
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001149 nexti = i + 1;
1150 if (nexti == MWL8K_RX_DESCS)
1151 nexti = 0;
1152 next_dma_addr = rxq->rxd_dma + (nexti * desc_size);
1153
1154 priv->rxd_ops->rxd_init(rxd, next_dma_addr);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001155 }
1156
1157 return 0;
1158}
1159
1160static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
1161{
1162 struct mwl8k_priv *priv = hw->priv;
1163 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1164 int refilled;
1165
1166 refilled = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001167 while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001168 struct sk_buff *skb;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001169 dma_addr_t addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001170 int rx;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001171 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001172
1173 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
1174 if (skb == NULL)
1175 break;
1176
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001177 addr = pci_map_single(priv->pdev, skb->data,
1178 MWL8K_RX_MAXSZ, DMA_FROM_DEVICE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001179
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001180 rxq->rxd_count++;
1181 rx = rxq->tail++;
1182 if (rxq->tail == MWL8K_RX_DESCS)
1183 rxq->tail = 0;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001184 rxq->buf[rx].skb = skb;
FUJITA Tomonori53b1b3e12010-04-02 13:10:38 +09001185 dma_unmap_addr_set(&rxq->buf[rx], dma, addr);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001186
1187 rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size);
1188 priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001189
1190 refilled++;
1191 }
1192
1193 return refilled;
1194}
1195
1196/* Must be called only when the card's reception is completely halted */
1197static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
1198{
1199 struct mwl8k_priv *priv = hw->priv;
1200 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1201 int i;
1202
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001203 if (rxq->rxd == NULL)
1204 return;
1205
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001206 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001207 if (rxq->buf[i].skb != NULL) {
1208 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e12010-04-02 13:10:38 +09001209 dma_unmap_addr(&rxq->buf[i], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001210 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e12010-04-02 13:10:38 +09001211 dma_unmap_addr_set(&rxq->buf[i], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001212
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001213 kfree_skb(rxq->buf[i].skb);
1214 rxq->buf[i].skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001215 }
1216 }
1217
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001218 kfree(rxq->buf);
1219 rxq->buf = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001220
1221 pci_free_consistent(priv->pdev,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001222 MWL8K_RX_DESCS * priv->rxd_ops->rxd_size,
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001223 rxq->rxd, rxq->rxd_dma);
1224 rxq->rxd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001225}
1226
1227
1228/*
1229 * Scan a list of BSSIDs to process for finalize join.
1230 * Allows for extension to process multiple BSSIDs.
1231 */
1232static inline int
1233mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
1234{
1235 return priv->capture_beacon &&
1236 ieee80211_is_beacon(wh->frame_control) &&
1237 !compare_ether_addr(wh->addr3, priv->capture_bssid);
1238}
1239
Lennert Buytenhek37797522009-10-22 20:19:45 +02001240static inline void mwl8k_save_beacon(struct ieee80211_hw *hw,
1241 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001242{
Lennert Buytenhek37797522009-10-22 20:19:45 +02001243 struct mwl8k_priv *priv = hw->priv;
1244
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001245 priv->capture_beacon = false;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001246 memset(priv->capture_bssid, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001247
1248 /*
1249 * Use GFP_ATOMIC as rxq_process is called from
1250 * the primary interrupt handler, memory allocation call
1251 * must not sleep.
1252 */
1253 priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
1254 if (priv->beacon_skb != NULL)
Lennert Buytenhek37797522009-10-22 20:19:45 +02001255 ieee80211_queue_work(hw, &priv->finalize_join_worker);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001256}
1257
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001258static inline struct mwl8k_vif *mwl8k_find_vif_bss(struct list_head *vif_list,
1259 u8 *bssid)
1260{
1261 struct mwl8k_vif *mwl8k_vif;
1262
1263 list_for_each_entry(mwl8k_vif,
1264 vif_list, list) {
1265 if (memcmp(bssid, mwl8k_vif->bssid,
1266 ETH_ALEN) == 0)
1267 return mwl8k_vif;
1268 }
1269
1270 return NULL;
1271}
1272
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001273static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
1274{
1275 struct mwl8k_priv *priv = hw->priv;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001276 struct mwl8k_vif *mwl8k_vif = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001277 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1278 int processed;
1279
1280 processed = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001281 while (rxq->rxd_count && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001282 struct sk_buff *skb;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001283 void *rxd;
1284 int pkt_len;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001285 struct ieee80211_rx_status status;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001286 struct ieee80211_hdr *wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001287 __le16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001288
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001289 skb = rxq->buf[rxq->head].skb;
Lennert Buytenhekd25f9f12009-08-03 21:58:26 +02001290 if (skb == NULL)
1291 break;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001292
1293 rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size);
1294
John W. Linville0d462bb2010-07-28 14:04:24 -04001295 pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos,
1296 &priv->noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001297 if (pkt_len < 0)
1298 break;
1299
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001300 rxq->buf[rxq->head].skb = NULL;
1301
1302 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e12010-04-02 13:10:38 +09001303 dma_unmap_addr(&rxq->buf[rxq->head], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001304 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e12010-04-02 13:10:38 +09001305 dma_unmap_addr_set(&rxq->buf[rxq->head], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001306
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001307 rxq->head++;
1308 if (rxq->head == MWL8K_RX_DESCS)
1309 rxq->head = 0;
1310
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001311 rxq->rxd_count--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001312
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001313 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001314
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001315 /*
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001316 * Check for a pending join operation. Save a
1317 * copy of the beacon and schedule a tasklet to
1318 * send a FINALIZE_JOIN command to the firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001319 */
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001320 if (mwl8k_capture_bssid(priv, (void *)skb->data))
Lennert Buytenhek37797522009-10-22 20:19:45 +02001321 mwl8k_save_beacon(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001322
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001323 if (ieee80211_has_protected(wh->frame_control)) {
1324
1325 /* Check if hw crypto has been enabled for
1326 * this bss. If yes, set the status flags
1327 * accordingly
1328 */
1329 mwl8k_vif = mwl8k_find_vif_bss(&priv->vif_list,
1330 wh->addr1);
1331
1332 if (mwl8k_vif != NULL &&
Joe Perches23677ce2012-02-09 11:17:23 +00001333 mwl8k_vif->is_hw_crypto_enabled) {
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001334 /*
1335 * When MMIC ERROR is encountered
1336 * by the firmware, payload is
1337 * dropped and only 32 bytes of
1338 * mwl8k Firmware header is sent
1339 * to the host.
1340 *
1341 * We need to add four bytes of
1342 * key information. In it
1343 * MAC80211 expects keyidx set to
1344 * 0 for triggering Counter
1345 * Measure of MMIC failure.
1346 */
1347 if (status.flag & RX_FLAG_MMIC_ERROR) {
1348 struct mwl8k_dma_data *tr;
1349 tr = (struct mwl8k_dma_data *)skb->data;
1350 memset((void *)&(tr->data), 0, 4);
1351 pkt_len += 4;
1352 }
1353
1354 if (!ieee80211_is_auth(wh->frame_control))
1355 status.flag |= RX_FLAG_IV_STRIPPED |
1356 RX_FLAG_DECRYPTED |
1357 RX_FLAG_MMIC_STRIPPED;
1358 }
1359 }
1360
1361 skb_put(skb, pkt_len);
1362 mwl8k_remove_dma_header(skb, qos);
Johannes Bergf1d58c22009-06-17 13:13:00 +02001363 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
1364 ieee80211_rx_irqsafe(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001365
1366 processed++;
1367 }
1368
1369 return processed;
1370}
1371
1372
1373/*
1374 * Packet transmission.
1375 */
1376
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001377#define MWL8K_TXD_STATUS_OK 0x00000001
1378#define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
1379#define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
1380#define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001381#define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001382
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001383#define MWL8K_QOS_QLEN_UNSPEC 0xff00
1384#define MWL8K_QOS_ACK_POLICY_MASK 0x0060
1385#define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000
1386#define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060
1387#define MWL8K_QOS_EOSP 0x0010
1388
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001389struct mwl8k_tx_desc {
1390 __le32 status;
1391 __u8 data_rate;
1392 __u8 tx_priority;
1393 __le16 qos_control;
1394 __le32 pkt_phys_addr;
1395 __le16 pkt_len;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001396 __u8 dest_MAC_addr[ETH_ALEN];
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001397 __le32 next_txd_phys_addr;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07001398 __le32 timestamp;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001399 __le16 rate_info;
1400 __u8 peer_id;
Brian Cavagnoloa1fe24b2010-11-12 17:23:47 -08001401 __u8 tx_frag_cnt;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001402} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001403
1404#define MWL8K_TX_DESCS 128
1405
1406static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1407{
1408 struct mwl8k_priv *priv = hw->priv;
1409 struct mwl8k_tx_queue *txq = priv->txq + index;
1410 int size;
1411 int i;
1412
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001413 txq->len = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001414 txq->head = 0;
1415 txq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001416
1417 size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1418
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001419 txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma);
1420 if (txq->txd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001421 wiphy_err(hw->wiphy, "failed to alloc TX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001422 return -ENOMEM;
1423 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001424 memset(txq->txd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001425
Shan Weib9ede5f2011-03-08 11:02:03 +08001426 txq->skb = kcalloc(MWL8K_TX_DESCS, sizeof(*txq->skb), GFP_KERNEL);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001427 if (txq->skb == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001428 wiphy_err(hw->wiphy, "failed to alloc TX skbuff list\n");
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001429 pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001430 return -ENOMEM;
1431 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001432
1433 for (i = 0; i < MWL8K_TX_DESCS; i++) {
1434 struct mwl8k_tx_desc *tx_desc;
1435 int nexti;
1436
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001437 tx_desc = txq->txd + i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001438 nexti = (i + 1) % MWL8K_TX_DESCS;
1439
1440 tx_desc->status = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001441 tx_desc->next_txd_phys_addr =
1442 cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001443 }
1444
1445 return 0;
1446}
1447
1448static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1449{
1450 iowrite32(MWL8K_H2A_INT_PPA_READY,
1451 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1452 iowrite32(MWL8K_H2A_INT_DUMMY,
1453 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1454 ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1455}
1456
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001457static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001458{
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001459 struct mwl8k_priv *priv = hw->priv;
1460 int i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001461
Brian Cavagnoloe6007072011-03-17 11:58:44 -07001462 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001463 struct mwl8k_tx_queue *txq = priv->txq + i;
1464 int fw_owned = 0;
1465 int drv_owned = 0;
1466 int unused = 0;
1467 int desc;
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001468
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001469 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001470 struct mwl8k_tx_desc *tx_desc = txq->txd + desc;
1471 u32 status;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001472
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001473 status = le32_to_cpu(tx_desc->status);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001474 if (status & MWL8K_TXD_STATUS_FW_OWNED)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001475 fw_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001476 else
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001477 drv_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001478
1479 if (tx_desc->pkt_len == 0)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001480 unused++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001481 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001482
Joe Perchesc96c31e2010-07-26 14:39:58 -07001483 wiphy_err(hw->wiphy,
1484 "txq[%d] len=%d head=%d tail=%d "
1485 "fw_owned=%d drv_owned=%d unused=%d\n",
1486 i,
1487 txq->len, txq->head, txq->tail,
1488 fw_owned, drv_owned, unused);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001489 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001490}
1491
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001492/*
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001493 * Must be called with priv->fw_mutex held and tx queues stopped.
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001494 */
Lennert Buytenhek62abd3c2010-01-08 18:28:34 +01001495#define MWL8K_TX_WAIT_TIMEOUT_MS 5000
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001496
Lennert Buytenhek950d5b02009-07-17 01:48:41 +02001497static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001498{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001499 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001500 DECLARE_COMPLETION_ONSTACK(tx_wait);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001501 int retry;
1502 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001503
1504 might_sleep();
1505
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05301506 /* Since fw restart is in progress, allow only the firmware
1507 * commands from the restart code and block the other
1508 * commands since they are going to fail in any case since
1509 * the firmware has crashed
1510 */
1511 if (priv->hw_restart_in_progress) {
1512 if (priv->hw_restart_owner == current)
1513 return 0;
1514 else
1515 return -EBUSY;
1516 }
1517
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001518 /*
1519 * The TX queues are stopped at this point, so this test
1520 * doesn't need to take ->tx_lock.
1521 */
1522 if (!priv->pending_tx_pkts)
1523 return 0;
1524
1525 retry = 0;
1526 rc = 0;
1527
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001528 spin_lock_bh(&priv->tx_lock);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001529 priv->tx_wait = &tx_wait;
1530 while (!rc) {
1531 int oldcount;
1532 unsigned long timeout;
1533
1534 oldcount = priv->pending_tx_pkts;
1535
1536 spin_unlock_bh(&priv->tx_lock);
1537 timeout = wait_for_completion_timeout(&tx_wait,
1538 msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS));
1539 spin_lock_bh(&priv->tx_lock);
1540
1541 if (timeout) {
1542 WARN_ON(priv->pending_tx_pkts);
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301543 if (retry)
Joe Perchesc96c31e2010-07-26 14:39:58 -07001544 wiphy_notice(hw->wiphy, "tx rings drained\n");
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001545 break;
1546 }
1547
1548 if (priv->pending_tx_pkts < oldcount) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001549 wiphy_notice(hw->wiphy,
1550 "waiting for tx rings to drain (%d -> %d pkts)\n",
1551 oldcount, priv->pending_tx_pkts);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001552 retry = 1;
1553 continue;
1554 }
1555
1556 priv->tx_wait = NULL;
1557
Joe Perchesc96c31e2010-07-26 14:39:58 -07001558 wiphy_err(hw->wiphy, "tx rings stuck for %d ms\n",
1559 MWL8K_TX_WAIT_TIMEOUT_MS);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001560 mwl8k_dump_tx_rings(hw);
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05301561 priv->hw_restart_in_progress = true;
1562 ieee80211_queue_work(hw, &priv->fw_reload);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001563
1564 rc = -ETIMEDOUT;
1565 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001566 spin_unlock_bh(&priv->tx_lock);
1567
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001568 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001569}
1570
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02001571#define MWL8K_TXD_SUCCESS(status) \
1572 ((status) & (MWL8K_TXD_STATUS_OK | \
1573 MWL8K_TXD_STATUS_OK_RETRY | \
1574 MWL8K_TXD_STATUS_OK_MORE_RETRY))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001575
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001576static int mwl8k_tid_queue_mapping(u8 tid)
1577{
1578 BUG_ON(tid > 7);
1579
1580 switch (tid) {
1581 case 0:
1582 case 3:
1583 return IEEE80211_AC_BE;
1584 break;
1585 case 1:
1586 case 2:
1587 return IEEE80211_AC_BK;
1588 break;
1589 case 4:
1590 case 5:
1591 return IEEE80211_AC_VI;
1592 break;
1593 case 6:
1594 case 7:
1595 return IEEE80211_AC_VO;
1596 break;
1597 default:
1598 return -1;
1599 break;
1600 }
1601}
1602
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001603/* The firmware will fill in the rate information
1604 * for each packet that gets queued in the hardware
John W. Linville49adc5c2011-04-27 15:04:28 -04001605 * and these macros will interpret that info.
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001606 */
1607
John W. Linville49adc5c2011-04-27 15:04:28 -04001608#define RI_FORMAT(a) (a & 0x0001)
1609#define RI_RATE_ID_MCS(a) ((a & 0x01f8) >> 3)
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001610
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001611static int
1612mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001613{
1614 struct mwl8k_priv *priv = hw->priv;
1615 struct mwl8k_tx_queue *txq = priv->txq + index;
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001616 int processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001617
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001618 processed = 0;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001619 while (txq->len > 0 && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001620 int tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001621 struct mwl8k_tx_desc *tx_desc;
1622 unsigned long addr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001623 int size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001624 struct sk_buff *skb;
1625 struct ieee80211_tx_info *info;
1626 u32 status;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001627 struct ieee80211_sta *sta;
1628 struct mwl8k_sta *sta_info = NULL;
1629 u16 rate_info;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001630 struct ieee80211_hdr *wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001631
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001632 tx = txq->head;
1633 tx_desc = txq->txd + tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001634
1635 status = le32_to_cpu(tx_desc->status);
1636
1637 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1638 if (!force)
1639 break;
1640 tx_desc->status &=
1641 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1642 }
1643
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001644 txq->head = (tx + 1) % MWL8K_TX_DESCS;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001645 BUG_ON(txq->len == 0);
1646 txq->len--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001647 priv->pending_tx_pkts--;
1648
1649 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001650 size = le16_to_cpu(tx_desc->pkt_len);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001651 skb = txq->skb[tx];
1652 txq->skb[tx] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001653
1654 BUG_ON(skb == NULL);
1655 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1656
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001657 mwl8k_remove_dma_header(skb, tx_desc->qos_control);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001658
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001659 wh = (struct ieee80211_hdr *) skb->data;
1660
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001661 /* Mark descriptor as unused */
1662 tx_desc->pkt_phys_addr = 0;
1663 tx_desc->pkt_len = 0;
1664
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001665 info = IEEE80211_SKB_CB(skb);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001666 if (ieee80211_is_data(wh->frame_control)) {
1667 sta = info->control.sta;
1668 if (sta) {
1669 sta_info = MWL8K_STA(sta);
1670 BUG_ON(sta_info == NULL);
1671 rate_info = le16_to_cpu(tx_desc->rate_info);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001672 /* If rate is < 6.5 Mpbs for an ht station
1673 * do not form an ampdu. If the station is a
1674 * legacy station (format = 0), do not form an
1675 * ampdu
1676 */
John W. Linville49adc5c2011-04-27 15:04:28 -04001677 if (RI_RATE_ID_MCS(rate_info) < 1 ||
1678 RI_FORMAT(rate_info) == 0) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001679 sta_info->is_ampdu_allowed = false;
1680 } else {
1681 sta_info->is_ampdu_allowed = true;
1682 }
1683 }
1684 }
1685
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001686 ieee80211_tx_info_clear_status(info);
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001687
1688 /* Rate control is happening in the firmware.
1689 * Ensure no tx rate is being reported.
1690 */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301691 info->status.rates[0].idx = -1;
1692 info->status.rates[0].count = 1;
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001693
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001694 if (MWL8K_TXD_SUCCESS(status))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001695 info->flags |= IEEE80211_TX_STAT_ACK;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001696
1697 ieee80211_tx_status_irqsafe(hw, skb);
1698
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001699 processed++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001700 }
1701
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001702 return processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001703}
1704
1705/* must be called only when the card's transmit is completely halted */
1706static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1707{
1708 struct mwl8k_priv *priv = hw->priv;
1709 struct mwl8k_tx_queue *txq = priv->txq + index;
1710
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001711 if (txq->txd == NULL)
1712 return;
1713
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001714 mwl8k_txq_reclaim(hw, index, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001715
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001716 kfree(txq->skb);
1717 txq->skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001718
1719 pci_free_consistent(priv->pdev,
1720 MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001721 txq->txd, txq->txd_dma);
1722 txq->txd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001723}
1724
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001725/* caller must hold priv->stream_lock when calling the stream functions */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301726static struct mwl8k_ampdu_stream *
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001727mwl8k_add_stream(struct ieee80211_hw *hw, struct ieee80211_sta *sta, u8 tid)
1728{
1729 struct mwl8k_ampdu_stream *stream;
1730 struct mwl8k_priv *priv = hw->priv;
1731 int i;
1732
1733 for (i = 0; i < priv->num_ampdu_queues; i++) {
1734 stream = &priv->ampdu[i];
1735 if (stream->state == AMPDU_NO_STREAM) {
1736 stream->sta = sta;
1737 stream->state = AMPDU_STREAM_NEW;
1738 stream->tid = tid;
1739 stream->idx = i;
1740 stream->txq_idx = MWL8K_TX_WMM_QUEUES + i;
1741 wiphy_debug(hw->wiphy, "Added a new stream for %pM %d",
1742 sta->addr, tid);
1743 return stream;
1744 }
1745 }
1746 return NULL;
1747}
1748
1749static int
1750mwl8k_start_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1751{
1752 int ret;
1753
1754 /* if the stream has already been started, don't start it again */
1755 if (stream->state != AMPDU_STREAM_NEW)
1756 return 0;
1757 ret = ieee80211_start_tx_ba_session(stream->sta, stream->tid, 0);
1758 if (ret)
1759 wiphy_debug(hw->wiphy, "Failed to start stream for %pM %d: "
1760 "%d\n", stream->sta->addr, stream->tid, ret);
1761 else
1762 wiphy_debug(hw->wiphy, "Started stream for %pM %d\n",
1763 stream->sta->addr, stream->tid);
1764 return ret;
1765}
1766
1767static void
1768mwl8k_remove_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1769{
1770 wiphy_debug(hw->wiphy, "Remove stream for %pM %d\n", stream->sta->addr,
1771 stream->tid);
1772 memset(stream, 0, sizeof(*stream));
1773}
1774
1775static struct mwl8k_ampdu_stream *
1776mwl8k_lookup_stream(struct ieee80211_hw *hw, u8 *addr, u8 tid)
1777{
1778 struct mwl8k_priv *priv = hw->priv;
1779 int i;
1780
1781 for (i = 0 ; i < priv->num_ampdu_queues; i++) {
1782 struct mwl8k_ampdu_stream *stream;
1783 stream = &priv->ampdu[i];
1784 if (stream->state == AMPDU_NO_STREAM)
1785 continue;
1786 if (!memcmp(stream->sta->addr, addr, ETH_ALEN) &&
1787 stream->tid == tid)
1788 return stream;
1789 }
1790 return NULL;
1791}
1792
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001793#define MWL8K_AMPDU_PACKET_THRESHOLD 64
1794static inline bool mwl8k_ampdu_allowed(struct ieee80211_sta *sta, u8 tid)
1795{
1796 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1797 struct tx_traffic_info *tx_stats;
1798
1799 BUG_ON(tid >= MWL8K_MAX_TID);
1800 tx_stats = &sta_info->tx_stats[tid];
1801
1802 return sta_info->is_ampdu_allowed &&
1803 tx_stats->pkts > MWL8K_AMPDU_PACKET_THRESHOLD;
1804}
1805
1806static inline void mwl8k_tx_count_packet(struct ieee80211_sta *sta, u8 tid)
1807{
1808 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1809 struct tx_traffic_info *tx_stats;
1810
1811 BUG_ON(tid >= MWL8K_MAX_TID);
1812 tx_stats = &sta_info->tx_stats[tid];
1813
1814 if (tx_stats->start_time == 0)
1815 tx_stats->start_time = jiffies;
1816
1817 /* reset the packet count after each second elapses. If the number of
1818 * packets ever exceeds the ampdu_min_traffic threshold, we will allow
1819 * an ampdu stream to be started.
1820 */
1821 if (jiffies - tx_stats->start_time > HZ) {
1822 tx_stats->pkts = 0;
1823 tx_stats->start_time = 0;
1824 } else
1825 tx_stats->pkts++;
1826}
1827
Johannes Berg7bb45682011-02-24 14:42:06 +01001828static void
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001829mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb)
1830{
1831 struct mwl8k_priv *priv = hw->priv;
1832 struct ieee80211_tx_info *tx_info;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001833 struct mwl8k_vif *mwl8k_vif;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001834 struct ieee80211_sta *sta;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001835 struct ieee80211_hdr *wh;
1836 struct mwl8k_tx_queue *txq;
1837 struct mwl8k_tx_desc *tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001838 dma_addr_t dma;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001839 u32 txstatus;
1840 u8 txdatarate;
1841 u16 qos;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001842 int txpriority;
1843 u8 tid = 0;
1844 struct mwl8k_ampdu_stream *stream = NULL;
1845 bool start_ba_session = false;
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301846 bool mgmtframe = false;
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001847 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001848
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001849 wh = (struct ieee80211_hdr *)skb->data;
1850 if (ieee80211_is_data_qos(wh->frame_control))
1851 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1852 else
1853 qos = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001854
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301855 if (ieee80211_is_mgmt(wh->frame_control))
1856 mgmtframe = true;
1857
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001858 if (priv->ap_fw)
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05301859 mwl8k_encapsulate_tx_frame(priv, skb);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001860 else
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +05301861 mwl8k_add_dma_header(priv, skb, 0, 0);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001862
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001863 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001864
1865 tx_info = IEEE80211_SKB_CB(skb);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001866 sta = tx_info->control.sta;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001867 mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001868
1869 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001870 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Lennert Buytenhek657232b2010-01-12 13:47:47 +01001871 wh->seq_ctrl |= cpu_to_le16(mwl8k_vif->seqno);
1872 mwl8k_vif->seqno += 0x10;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001873 }
1874
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001875 /* Setup firmware control bit fields for each frame type. */
1876 txstatus = 0;
1877 txdatarate = 0;
1878 if (ieee80211_is_mgmt(wh->frame_control) ||
1879 ieee80211_is_ctl(wh->frame_control)) {
1880 txdatarate = 0;
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001881 qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001882 } else if (ieee80211_is_data(wh->frame_control)) {
1883 txdatarate = 1;
1884 if (is_multicast_ether_addr(wh->addr1))
1885 txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX;
1886
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001887 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001888 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001889 qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001890 else
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001891 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001892 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001893
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001894 /* Queue ADDBA request in the respective data queue. While setting up
1895 * the ampdu stream, mac80211 queues further packets for that
1896 * particular ra/tid pair. However, packets piled up in the hardware
1897 * for that ra/tid pair will still go out. ADDBA request and the
1898 * related data packets going out from different queues asynchronously
1899 * will cause a shift in the receiver window which might result in
1900 * ampdu packets getting dropped at the receiver after the stream has
1901 * been setup.
1902 */
1903 if (unlikely(ieee80211_is_action(wh->frame_control) &&
1904 mgmt->u.action.category == WLAN_CATEGORY_BACK &&
1905 mgmt->u.action.u.addba_req.action_code == WLAN_ACTION_ADDBA_REQ &&
1906 priv->ap_fw)) {
1907 u16 capab = le16_to_cpu(mgmt->u.action.u.addba_req.capab);
1908 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
1909 index = mwl8k_tid_queue_mapping(tid);
1910 }
1911
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001912 txpriority = index;
1913
Yogesh Ashok Powar16c929d2011-07-13 17:42:06 +05301914 if (priv->ap_fw && sta && sta->ht_cap.ht_supported
1915 && skb->protocol != cpu_to_be16(ETH_P_PAE)
1916 && ieee80211_is_data_qos(wh->frame_control)) {
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001917 tid = qos & 0xf;
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001918 mwl8k_tx_count_packet(sta, tid);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001919 spin_lock(&priv->stream_lock);
1920 stream = mwl8k_lookup_stream(hw, sta->addr, tid);
1921 if (stream != NULL) {
1922 if (stream->state == AMPDU_STREAM_ACTIVE) {
1923 txpriority = stream->txq_idx;
1924 index = stream->txq_idx;
1925 } else if (stream->state == AMPDU_STREAM_NEW) {
1926 /* We get here if the driver sends us packets
1927 * after we've initiated a stream, but before
1928 * our ampdu_action routine has been called
1929 * with IEEE80211_AMPDU_TX_START to get the SSN
1930 * for the ADDBA request. So this packet can
1931 * go out with no risk of sequence number
1932 * mismatch. No special handling is required.
1933 */
1934 } else {
1935 /* Drop packets that would go out after the
1936 * ADDBA request was sent but before the ADDBA
1937 * response is received. If we don't do this,
1938 * the recipient would probably receive it
1939 * after the ADDBA request with SSN 0. This
1940 * will cause the recipient's BA receive window
1941 * to shift, which would cause the subsequent
1942 * packets in the BA stream to be discarded.
1943 * mac80211 queues our packets for us in this
1944 * case, so this is really just a safety check.
1945 */
1946 wiphy_warn(hw->wiphy,
1947 "Cannot send packet while ADDBA "
1948 "dialog is underway.\n");
1949 spin_unlock(&priv->stream_lock);
1950 dev_kfree_skb(skb);
1951 return;
1952 }
1953 } else {
1954 /* Defer calling mwl8k_start_stream so that the current
1955 * skb can go out before the ADDBA request. This
1956 * prevents sequence number mismatch at the recepient
1957 * as described above.
1958 */
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001959 if (mwl8k_ampdu_allowed(sta, tid)) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001960 stream = mwl8k_add_stream(hw, sta, tid);
1961 if (stream != NULL)
1962 start_ba_session = true;
1963 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001964 }
1965 spin_unlock(&priv->stream_lock);
1966 }
1967
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001968 dma = pci_map_single(priv->pdev, skb->data,
1969 skb->len, PCI_DMA_TODEVICE);
1970
1971 if (pci_dma_mapping_error(priv->pdev, dma)) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001972 wiphy_debug(hw->wiphy,
1973 "failed to dma map skb, dropping TX frame.\n");
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001974 if (start_ba_session) {
1975 spin_lock(&priv->stream_lock);
1976 mwl8k_remove_stream(hw, stream);
1977 spin_unlock(&priv->stream_lock);
1978 }
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001979 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001980 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001981 }
1982
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001983 spin_lock_bh(&priv->tx_lock);
1984
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001985 txq = priv->txq + index;
1986
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301987 /* Mgmt frames that go out frequently are probe
1988 * responses. Other mgmt frames got out relatively
1989 * infrequently. Hence reserve 2 buffers so that
1990 * other mgmt frames do not get dropped due to an
1991 * already queued probe response in one of the
1992 * reserved buffers.
1993 */
1994
1995 if (txq->len >= MWL8K_TX_DESCS - 2) {
Joe Perches23677ce2012-02-09 11:17:23 +00001996 if (!mgmtframe || txq->len == MWL8K_TX_DESCS) {
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301997 if (start_ba_session) {
1998 spin_lock(&priv->stream_lock);
1999 mwl8k_remove_stream(hw, stream);
2000 spin_unlock(&priv->stream_lock);
2001 }
2002 spin_unlock_bh(&priv->tx_lock);
2003 dev_kfree_skb(skb);
2004 return;
Pradeep Nemavat3a7dbc32011-04-21 16:34:56 +05302005 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002006 }
2007
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002008 BUG_ON(txq->skb[txq->tail] != NULL);
2009 txq->skb[txq->tail] = skb;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002010
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002011 tx = txq->txd + txq->tail;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002012 tx->data_rate = txdatarate;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002013 tx->tx_priority = txpriority;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002014 tx->qos_control = cpu_to_le16(qos);
2015 tx->pkt_phys_addr = cpu_to_le32(dma);
2016 tx->pkt_len = cpu_to_le16(skb->len);
2017 tx->rate_info = 0;
Lennert Buytenheka6804002010-01-04 21:55:42 +01002018 if (!priv->ap_fw && tx_info->control.sta != NULL)
2019 tx->peer_id = MWL8K_STA(tx_info->control.sta)->peer_id;
2020 else
2021 tx->peer_id = 0;
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302022
2023 if (priv->ap_fw)
2024 tx->timestamp = cpu_to_le32(ioread32(priv->regs +
2025 MWL8K_HW_TIMER_REGISTER));
2026
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002027 wmb();
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002028 tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
2029
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02002030 txq->len++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002031 priv->pending_tx_pkts++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002032
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002033 txq->tail++;
2034 if (txq->tail == MWL8K_TX_DESCS)
2035 txq->tail = 0;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002036
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002037 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002038
2039 spin_unlock_bh(&priv->tx_lock);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002040
2041 /* Initiate the ampdu session here */
2042 if (start_ba_session) {
2043 spin_lock(&priv->stream_lock);
2044 if (mwl8k_start_stream(hw, stream))
2045 mwl8k_remove_stream(hw, stream);
2046 spin_unlock(&priv->stream_lock);
2047 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002048}
2049
2050
2051/*
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002052 * Firmware access.
2053 *
2054 * We have the following requirements for issuing firmware commands:
2055 * - Some commands require that the packet transmit path is idle when
2056 * the command is issued. (For simplicity, we'll just quiesce the
2057 * transmit path for every command.)
2058 * - There are certain sequences of commands that need to be issued to
2059 * the hardware sequentially, with no other intervening commands.
2060 *
2061 * This leads to an implementation of a "firmware lock" as a mutex that
2062 * can be taken recursively, and which is taken by both the low-level
2063 * command submission function (mwl8k_post_cmd) as well as any users of
2064 * that function that require issuing of an atomic sequence of commands,
2065 * and quiesces the transmit path whenever it's taken.
2066 */
2067static int mwl8k_fw_lock(struct ieee80211_hw *hw)
2068{
2069 struct mwl8k_priv *priv = hw->priv;
2070
2071 if (priv->fw_mutex_owner != current) {
2072 int rc;
2073
2074 mutex_lock(&priv->fw_mutex);
2075 ieee80211_stop_queues(hw);
2076
2077 rc = mwl8k_tx_wait_empty(hw);
2078 if (rc) {
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05302079 if (!priv->hw_restart_in_progress)
2080 ieee80211_wake_queues(hw);
2081
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002082 mutex_unlock(&priv->fw_mutex);
2083
2084 return rc;
2085 }
2086
2087 priv->fw_mutex_owner = current;
2088 }
2089
2090 priv->fw_mutex_depth++;
2091
2092 return 0;
2093}
2094
2095static void mwl8k_fw_unlock(struct ieee80211_hw *hw)
2096{
2097 struct mwl8k_priv *priv = hw->priv;
2098
2099 if (!--priv->fw_mutex_depth) {
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05302100 if (!priv->hw_restart_in_progress)
2101 ieee80211_wake_queues(hw);
2102
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002103 priv->fw_mutex_owner = NULL;
2104 mutex_unlock(&priv->fw_mutex);
2105 }
2106}
2107
2108
2109/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002110 * Command processing.
2111 */
2112
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01002113/* Timeout firmware commands after 10s */
2114#define MWL8K_CMD_TIMEOUT_MS 10000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002115
2116static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
2117{
2118 DECLARE_COMPLETION_ONSTACK(cmd_wait);
2119 struct mwl8k_priv *priv = hw->priv;
2120 void __iomem *regs = priv->regs;
2121 dma_addr_t dma_addr;
2122 unsigned int dma_size;
2123 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002124 unsigned long timeout = 0;
2125 u8 buf[32];
2126
John W. Linvilleb6037422010-07-20 13:55:00 -04002127 cmd->result = (__force __le16) 0xffff;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002128 dma_size = le16_to_cpu(cmd->length);
2129 dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
2130 PCI_DMA_BIDIRECTIONAL);
2131 if (pci_dma_mapping_error(priv->pdev, dma_addr))
2132 return -ENOMEM;
2133
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002134 rc = mwl8k_fw_lock(hw);
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02002135 if (rc) {
2136 pci_unmap_single(priv->pdev, dma_addr, dma_size,
2137 PCI_DMA_BIDIRECTIONAL);
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002138 return rc;
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02002139 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002140
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002141 priv->hostcmd_wait = &cmd_wait;
2142 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
2143 iowrite32(MWL8K_H2A_INT_DOORBELL,
2144 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
2145 iowrite32(MWL8K_H2A_INT_DUMMY,
2146 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002147
2148 timeout = wait_for_completion_timeout(&cmd_wait,
2149 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
2150
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002151 priv->hostcmd_wait = NULL;
2152
2153 mwl8k_fw_unlock(hw);
2154
Lennert Buytenhek37055bd2009-08-03 21:58:47 +02002155 pci_unmap_single(priv->pdev, dma_addr, dma_size,
2156 PCI_DMA_BIDIRECTIONAL);
2157
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002158 if (!timeout) {
Joe Perches5db55842010-08-11 19:11:19 -07002159 wiphy_err(hw->wiphy, "Command %s timeout after %u ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002160 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2161 MWL8K_CMD_TIMEOUT_MS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002162 rc = -ETIMEDOUT;
2163 } else {
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01002164 int ms;
2165
2166 ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout);
2167
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002168 rc = cmd->result ? -EINVAL : 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002169 if (rc)
Joe Perches5db55842010-08-11 19:11:19 -07002170 wiphy_err(hw->wiphy, "Command %s error 0x%x\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002171 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2172 le16_to_cpu(cmd->result));
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01002173 else if (ms > 2000)
Joe Perches5db55842010-08-11 19:11:19 -07002174 wiphy_notice(hw->wiphy, "Command %s took %d ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002175 mwl8k_cmd_name(cmd->code,
2176 buf, sizeof(buf)),
2177 ms);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002178 }
2179
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002180 return rc;
2181}
2182
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +01002183static int mwl8k_post_pervif_cmd(struct ieee80211_hw *hw,
2184 struct ieee80211_vif *vif,
2185 struct mwl8k_cmd_pkt *cmd)
2186{
2187 if (vif != NULL)
2188 cmd->macid = MWL8K_VIF(vif)->macid;
2189 return mwl8k_post_cmd(hw, cmd);
2190}
2191
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002192/*
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002193 * Setup code shared between STA and AP firmware images.
2194 */
2195static void mwl8k_setup_2ghz_band(struct ieee80211_hw *hw)
2196{
2197 struct mwl8k_priv *priv = hw->priv;
2198
2199 BUILD_BUG_ON(sizeof(priv->channels_24) != sizeof(mwl8k_channels_24));
2200 memcpy(priv->channels_24, mwl8k_channels_24, sizeof(mwl8k_channels_24));
2201
2202 BUILD_BUG_ON(sizeof(priv->rates_24) != sizeof(mwl8k_rates_24));
2203 memcpy(priv->rates_24, mwl8k_rates_24, sizeof(mwl8k_rates_24));
2204
2205 priv->band_24.band = IEEE80211_BAND_2GHZ;
2206 priv->band_24.channels = priv->channels_24;
2207 priv->band_24.n_channels = ARRAY_SIZE(mwl8k_channels_24);
2208 priv->band_24.bitrates = priv->rates_24;
2209 priv->band_24.n_bitrates = ARRAY_SIZE(mwl8k_rates_24);
2210
2211 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band_24;
2212}
2213
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +01002214static void mwl8k_setup_5ghz_band(struct ieee80211_hw *hw)
2215{
2216 struct mwl8k_priv *priv = hw->priv;
2217
2218 BUILD_BUG_ON(sizeof(priv->channels_50) != sizeof(mwl8k_channels_50));
2219 memcpy(priv->channels_50, mwl8k_channels_50, sizeof(mwl8k_channels_50));
2220
2221 BUILD_BUG_ON(sizeof(priv->rates_50) != sizeof(mwl8k_rates_50));
2222 memcpy(priv->rates_50, mwl8k_rates_50, sizeof(mwl8k_rates_50));
2223
2224 priv->band_50.band = IEEE80211_BAND_5GHZ;
2225 priv->band_50.channels = priv->channels_50;
2226 priv->band_50.n_channels = ARRAY_SIZE(mwl8k_channels_50);
2227 priv->band_50.bitrates = priv->rates_50;
2228 priv->band_50.n_bitrates = ARRAY_SIZE(mwl8k_rates_50);
2229
2230 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &priv->band_50;
2231}
2232
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002233/*
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02002234 * CMD_GET_HW_SPEC (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002235 */
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02002236struct mwl8k_cmd_get_hw_spec_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002237 struct mwl8k_cmd_pkt header;
2238 __u8 hw_rev;
2239 __u8 host_interface;
2240 __le16 num_mcaddrs;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002241 __u8 perm_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002242 __le16 region_code;
2243 __le32 fw_rev;
2244 __le32 ps_cookie;
2245 __le32 caps;
2246 __u8 mcs_bitmap[16];
2247 __le32 rx_queue_ptr;
2248 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002249 __le32 tx_queue_ptrs[MWL8K_TX_WMM_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002250 __le32 caps2;
2251 __le32 num_tx_desc_per_queue;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002252 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002253} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002254
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002255#define MWL8K_CAP_MAX_AMSDU 0x20000000
2256#define MWL8K_CAP_GREENFIELD 0x08000000
2257#define MWL8K_CAP_AMPDU 0x04000000
2258#define MWL8K_CAP_RX_STBC 0x01000000
2259#define MWL8K_CAP_TX_STBC 0x00800000
2260#define MWL8K_CAP_SHORTGI_40MHZ 0x00400000
2261#define MWL8K_CAP_SHORTGI_20MHZ 0x00200000
2262#define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000
2263#define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000
2264#define MWL8K_CAP_DELAY_BA 0x00003000
2265#define MWL8K_CAP_MIMO 0x00000200
2266#define MWL8K_CAP_40MHZ 0x00000100
Lennert Buytenhek06953232010-01-12 13:49:41 +01002267#define MWL8K_CAP_BAND_MASK 0x00000007
2268#define MWL8K_CAP_5GHZ 0x00000004
2269#define MWL8K_CAP_2GHZ4 0x00000001
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002270
Lennert Buytenhek06953232010-01-12 13:49:41 +01002271static void
2272mwl8k_set_ht_caps(struct ieee80211_hw *hw,
2273 struct ieee80211_supported_band *band, u32 cap)
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002274{
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002275 int rx_streams;
2276 int tx_streams;
2277
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002278 band->ht_cap.ht_supported = 1;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002279
2280 if (cap & MWL8K_CAP_MAX_AMSDU)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002281 band->ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002282 if (cap & MWL8K_CAP_GREENFIELD)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002283 band->ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002284 if (cap & MWL8K_CAP_AMPDU) {
2285 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002286 band->ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
2287 band->ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002288 }
2289 if (cap & MWL8K_CAP_RX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002290 band->ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002291 if (cap & MWL8K_CAP_TX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002292 band->ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002293 if (cap & MWL8K_CAP_SHORTGI_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002294 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002295 if (cap & MWL8K_CAP_SHORTGI_20MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002296 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002297 if (cap & MWL8K_CAP_DELAY_BA)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002298 band->ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002299 if (cap & MWL8K_CAP_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002300 band->ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002301
2302 rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK);
2303 tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK);
2304
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002305 band->ht_cap.mcs.rx_mask[0] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002306 if (rx_streams >= 2)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002307 band->ht_cap.mcs.rx_mask[1] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002308 if (rx_streams >= 3)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002309 band->ht_cap.mcs.rx_mask[2] = 0xff;
2310 band->ht_cap.mcs.rx_mask[4] = 0x01;
2311 band->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002312
2313 if (rx_streams != tx_streams) {
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002314 band->ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
2315 band->ht_cap.mcs.tx_params |= (tx_streams - 1) <<
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002316 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
2317 }
2318}
2319
Lennert Buytenhek06953232010-01-12 13:49:41 +01002320static void
2321mwl8k_set_caps(struct ieee80211_hw *hw, u32 caps)
2322{
2323 struct mwl8k_priv *priv = hw->priv;
2324
2325 if ((caps & MWL8K_CAP_2GHZ4) || !(caps & MWL8K_CAP_BAND_MASK)) {
2326 mwl8k_setup_2ghz_band(hw);
2327 if (caps & MWL8K_CAP_MIMO)
2328 mwl8k_set_ht_caps(hw, &priv->band_24, caps);
2329 }
2330
2331 if (caps & MWL8K_CAP_5GHZ) {
2332 mwl8k_setup_5ghz_band(hw);
2333 if (caps & MWL8K_CAP_MIMO)
2334 mwl8k_set_ht_caps(hw, &priv->band_50, caps);
2335 }
2336}
2337
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02002338static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002339{
2340 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02002341 struct mwl8k_cmd_get_hw_spec_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002342 int rc;
2343 int i;
2344
2345 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2346 if (cmd == NULL)
2347 return -ENOMEM;
2348
2349 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2350 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2351
2352 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2353 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002354 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002355 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
2356 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002357 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002358 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002359 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002360
2361 rc = mwl8k_post_cmd(hw, &cmd->header);
2362
2363 if (!rc) {
2364 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2365 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002366 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002367 priv->hw_rev = cmd->hw_rev;
Lennert Buytenhek06953232010-01-12 13:49:41 +01002368 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002369 priv->ap_macids_supported = 0x00000000;
2370 priv->sta_macids_supported = 0x00000001;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002371 }
2372
2373 kfree(cmd);
2374 return rc;
2375}
2376
2377/*
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002378 * CMD_GET_HW_SPEC (AP version).
2379 */
2380struct mwl8k_cmd_get_hw_spec_ap {
2381 struct mwl8k_cmd_pkt header;
2382 __u8 hw_rev;
2383 __u8 host_interface;
2384 __le16 num_wcb;
2385 __le16 num_mcaddrs;
2386 __u8 perm_addr[ETH_ALEN];
2387 __le16 region_code;
2388 __le16 num_antenna;
2389 __le32 fw_rev;
2390 __le32 wcbbase0;
2391 __le32 rxwrptr;
2392 __le32 rxrdptr;
2393 __le32 ps_cookie;
2394 __le32 wcbbase1;
2395 __le32 wcbbase2;
2396 __le32 wcbbase3;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002397 __le32 fw_api_version;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002398 __le32 caps;
2399 __le32 num_of_ampdu_queues;
2400 __le32 wcbbase_ampdu[MWL8K_MAX_AMPDU_QUEUES];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002401} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002402
2403static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw)
2404{
2405 struct mwl8k_priv *priv = hw->priv;
2406 struct mwl8k_cmd_get_hw_spec_ap *cmd;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002407 int rc, i;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002408 u32 api_version;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002409
2410 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2411 if (cmd == NULL)
2412 return -ENOMEM;
2413
2414 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2415 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2416
2417 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2418 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2419
2420 rc = mwl8k_post_cmd(hw, &cmd->header);
2421
2422 if (!rc) {
2423 int off;
2424
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002425 api_version = le32_to_cpu(cmd->fw_api_version);
2426 if (priv->device_info->fw_api_ap != api_version) {
2427 printk(KERN_ERR "%s: Unsupported fw API version for %s."
2428 " Expected %d got %d.\n", MWL8K_NAME,
2429 priv->device_info->part_name,
2430 priv->device_info->fw_api_ap,
2431 api_version);
2432 rc = -EINVAL;
2433 goto done;
2434 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002435 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2436 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
2437 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
2438 priv->hw_rev = cmd->hw_rev;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002439 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002440 priv->ap_macids_supported = 0x000000ff;
2441 priv->sta_macids_supported = 0x00000000;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002442 priv->num_ampdu_queues = le32_to_cpu(cmd->num_of_ampdu_queues);
2443 if (priv->num_ampdu_queues > MWL8K_MAX_AMPDU_QUEUES) {
2444 wiphy_warn(hw->wiphy, "fw reported %d ampdu queues"
2445 " but we only support %d.\n",
2446 priv->num_ampdu_queues,
2447 MWL8K_MAX_AMPDU_QUEUES);
2448 priv->num_ampdu_queues = MWL8K_MAX_AMPDU_QUEUES;
2449 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002450 off = le32_to_cpu(cmd->rxwrptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002451 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002452
2453 off = le32_to_cpu(cmd->rxrdptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002454 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002455
Brian Cavagnolo73b46322011-03-17 11:58:41 -07002456 priv->txq_offset[0] = le32_to_cpu(cmd->wcbbase0) & 0xffff;
2457 priv->txq_offset[1] = le32_to_cpu(cmd->wcbbase1) & 0xffff;
2458 priv->txq_offset[2] = le32_to_cpu(cmd->wcbbase2) & 0xffff;
2459 priv->txq_offset[3] = le32_to_cpu(cmd->wcbbase3) & 0xffff;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002460
2461 for (i = 0; i < priv->num_ampdu_queues; i++)
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002462 priv->txq_offset[i + MWL8K_TX_WMM_QUEUES] =
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002463 le32_to_cpu(cmd->wcbbase_ampdu[i]) & 0xffff;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002464 }
2465
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002466done:
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002467 kfree(cmd);
2468 return rc;
2469}
2470
2471/*
2472 * CMD_SET_HW_SPEC.
2473 */
2474struct mwl8k_cmd_set_hw_spec {
2475 struct mwl8k_cmd_pkt header;
2476 __u8 hw_rev;
2477 __u8 host_interface;
2478 __le16 num_mcaddrs;
2479 __u8 perm_addr[ETH_ALEN];
2480 __le16 region_code;
2481 __le32 fw_rev;
2482 __le32 ps_cookie;
2483 __le32 caps;
2484 __le32 rx_queue_ptr;
2485 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002486 __le32 tx_queue_ptrs[MWL8K_MAX_TX_QUEUES];
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002487 __le32 flags;
2488 __le32 num_tx_desc_per_queue;
2489 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002490} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002491
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002492/* If enabled, MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY will cause
2493 * packets to expire 500 ms after the timestamp in the tx descriptor. That is,
2494 * the packets that are queued for more than 500ms, will be dropped in the
2495 * hardware. This helps minimizing the issues caused due to head-of-line
2496 * blocking where a slow client can hog the bandwidth and affect traffic to a
2497 * faster client.
2498 */
2499#define MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY 0x00000400
Nishant Sarmukadam3373b282011-06-13 16:26:15 +05302500#define MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR 0x00000200
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002501#define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080
2502#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP 0x00000020
2503#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON 0x00000010
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002504
2505static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw)
2506{
2507 struct mwl8k_priv *priv = hw->priv;
2508 struct mwl8k_cmd_set_hw_spec *cmd;
2509 int rc;
2510 int i;
2511
2512 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2513 if (cmd == NULL)
2514 return -ENOMEM;
2515
2516 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC);
2517 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2518
2519 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2520 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002521 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002522
2523 /*
2524 * Mac80211 stack has Q0 as highest priority and Q3 as lowest in
2525 * that order. Firmware has Q3 as highest priority and Q0 as lowest
2526 * in that order. Map Q3 of mac80211 to Q0 of firmware so that the
2527 * priority is interpreted the right way in firmware.
2528 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002529 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
2530 int j = mwl8k_tx_queues(priv) - 1 - i;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002531 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[j].txd_dma);
2532 }
2533
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002534 cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT |
2535 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP |
Nishant Sarmukadam31d291a2011-04-21 16:34:59 +05302536 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON |
Nishant Sarmukadam3373b282011-06-13 16:26:15 +05302537 MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY |
2538 MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002539 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
2540 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
2541
2542 rc = mwl8k_post_cmd(hw, &cmd->header);
2543 kfree(cmd);
2544
2545 return rc;
2546}
2547
2548/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002549 * CMD_MAC_MULTICAST_ADR.
2550 */
2551struct mwl8k_cmd_mac_multicast_adr {
2552 struct mwl8k_cmd_pkt header;
2553 __le16 action;
2554 __le16 numaddr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002555 __u8 addr[0][ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002556};
2557
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002558#define MWL8K_ENABLE_RX_DIRECTED 0x0001
2559#define MWL8K_ENABLE_RX_MULTICAST 0x0002
2560#define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004
2561#define MWL8K_ENABLE_RX_BROADCAST 0x0008
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002562
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002563static struct mwl8k_cmd_pkt *
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002564__mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti,
Jiri Pirko22bedad2010-04-01 21:22:57 +00002565 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002566{
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002567 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002568 struct mwl8k_cmd_mac_multicast_adr *cmd;
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002569 int size;
Jiri Pirko22bedad2010-04-01 21:22:57 +00002570 int mc_count = 0;
2571
2572 if (mc_list)
2573 mc_count = netdev_hw_addr_list_count(mc_list);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002574
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002575 if (allmulti || mc_count > priv->num_mcaddrs) {
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002576 allmulti = 1;
2577 mc_count = 0;
2578 }
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002579
2580 size = sizeof(*cmd) + mc_count * ETH_ALEN;
2581
2582 cmd = kzalloc(size, GFP_ATOMIC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002583 if (cmd == NULL)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002584 return NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002585
2586 cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
2587 cmd->header.length = cpu_to_le16(size);
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002588 cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED |
2589 MWL8K_ENABLE_RX_BROADCAST);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002590
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002591 if (allmulti) {
2592 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST);
2593 } else if (mc_count) {
Jiri Pirko22bedad2010-04-01 21:22:57 +00002594 struct netdev_hw_addr *ha;
2595 int i = 0;
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002596
2597 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
2598 cmd->numaddr = cpu_to_le16(mc_count);
Jiri Pirko22bedad2010-04-01 21:22:57 +00002599 netdev_hw_addr_list_for_each(ha, mc_list) {
2600 memcpy(cmd->addr[i], ha->addr, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002601 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002602 }
2603
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002604 return &cmd->header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002605}
2606
2607/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002608 * CMD_GET_STAT.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002609 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002610struct mwl8k_cmd_get_stat {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002611 struct mwl8k_cmd_pkt header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002612 __le32 stats[64];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002613} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002614
2615#define MWL8K_STAT_ACK_FAILURE 9
2616#define MWL8K_STAT_RTS_FAILURE 12
2617#define MWL8K_STAT_FCS_ERROR 24
2618#define MWL8K_STAT_RTS_SUCCESS 11
2619
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002620static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw,
2621 struct ieee80211_low_level_stats *stats)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002622{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002623 struct mwl8k_cmd_get_stat *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002624 int rc;
2625
2626 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2627 if (cmd == NULL)
2628 return -ENOMEM;
2629
2630 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
2631 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002632
2633 rc = mwl8k_post_cmd(hw, &cmd->header);
2634 if (!rc) {
2635 stats->dot11ACKFailureCount =
2636 le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
2637 stats->dot11RTSFailureCount =
2638 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
2639 stats->dot11FCSErrorCount =
2640 le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
2641 stats->dot11RTSSuccessCount =
2642 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
2643 }
2644 kfree(cmd);
2645
2646 return rc;
2647}
2648
2649/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002650 * CMD_RADIO_CONTROL.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002651 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002652struct mwl8k_cmd_radio_control {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002653 struct mwl8k_cmd_pkt header;
2654 __le16 action;
2655 __le16 control;
2656 __le16 radio_on;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002657} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002658
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002659static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002660mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002661{
2662 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002663 struct mwl8k_cmd_radio_control *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002664 int rc;
2665
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002666 if (enable == priv->radio_on && !force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002667 return 0;
2668
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002669 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2670 if (cmd == NULL)
2671 return -ENOMEM;
2672
2673 cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
2674 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2675 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002676 cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002677 cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
2678
2679 rc = mwl8k_post_cmd(hw, &cmd->header);
2680 kfree(cmd);
2681
2682 if (!rc)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002683 priv->radio_on = enable;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002684
2685 return rc;
2686}
2687
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002688static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002689{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002690 return mwl8k_cmd_radio_control(hw, 0, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002691}
2692
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002693static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002694{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002695 return mwl8k_cmd_radio_control(hw, 1, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002696}
2697
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002698static int
2699mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
2700{
Lennert Buytenhek99200a992009-11-30 18:31:40 +01002701 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002702
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002703 priv->radio_short_preamble = short_preamble;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002704
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002705 return mwl8k_cmd_radio_control(hw, 1, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002706}
2707
2708/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002709 * CMD_RF_TX_POWER.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002710 */
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002711#define MWL8K_RF_TX_POWER_LEVEL_TOTAL 8
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002712
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002713struct mwl8k_cmd_rf_tx_power {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002714 struct mwl8k_cmd_pkt header;
2715 __le16 action;
2716 __le16 support_level;
2717 __le16 current_level;
2718 __le16 reserved;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002719 __le16 power_level_list[MWL8K_RF_TX_POWER_LEVEL_TOTAL];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002720} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002721
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002722static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw *hw, int dBm)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002723{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002724 struct mwl8k_cmd_rf_tx_power *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002725 int rc;
2726
2727 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2728 if (cmd == NULL)
2729 return -ENOMEM;
2730
2731 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
2732 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2733 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2734 cmd->support_level = cpu_to_le16(dBm);
2735
2736 rc = mwl8k_post_cmd(hw, &cmd->header);
2737 kfree(cmd);
2738
2739 return rc;
2740}
2741
2742/*
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002743 * CMD_TX_POWER.
2744 */
2745#define MWL8K_TX_POWER_LEVEL_TOTAL 12
2746
2747struct mwl8k_cmd_tx_power {
2748 struct mwl8k_cmd_pkt header;
2749 __le16 action;
2750 __le16 band;
2751 __le16 channel;
2752 __le16 bw;
2753 __le16 sub_ch;
2754 __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05302755} __packed;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002756
2757static int mwl8k_cmd_tx_power(struct ieee80211_hw *hw,
2758 struct ieee80211_conf *conf,
2759 unsigned short pwr)
2760{
2761 struct ieee80211_channel *channel = conf->channel;
2762 struct mwl8k_cmd_tx_power *cmd;
2763 int rc;
2764 int i;
2765
2766 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2767 if (cmd == NULL)
2768 return -ENOMEM;
2769
2770 cmd->header.code = cpu_to_le16(MWL8K_CMD_TX_POWER);
2771 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2772 cmd->action = cpu_to_le16(MWL8K_CMD_SET_LIST);
2773
2774 if (channel->band == IEEE80211_BAND_2GHZ)
2775 cmd->band = cpu_to_le16(0x1);
2776 else if (channel->band == IEEE80211_BAND_5GHZ)
2777 cmd->band = cpu_to_le16(0x4);
2778
Yogesh Ashok Powar604c4ef2012-01-17 15:45:15 +05302779 cmd->channel = cpu_to_le16(channel->hw_value);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002780
2781 if (conf->channel_type == NL80211_CHAN_NO_HT ||
2782 conf->channel_type == NL80211_CHAN_HT20) {
2783 cmd->bw = cpu_to_le16(0x2);
2784 } else {
2785 cmd->bw = cpu_to_le16(0x4);
2786 if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2787 cmd->sub_ch = cpu_to_le16(0x3);
2788 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2789 cmd->sub_ch = cpu_to_le16(0x1);
2790 }
2791
2792 for (i = 0; i < MWL8K_TX_POWER_LEVEL_TOTAL; i++)
2793 cmd->power_level_list[i] = cpu_to_le16(pwr);
2794
2795 rc = mwl8k_post_cmd(hw, &cmd->header);
2796 kfree(cmd);
2797
2798 return rc;
2799}
2800
2801/*
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002802 * CMD_RF_ANTENNA.
2803 */
2804struct mwl8k_cmd_rf_antenna {
2805 struct mwl8k_cmd_pkt header;
2806 __le16 antenna;
2807 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002808} __packed;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002809
2810#define MWL8K_RF_ANTENNA_RX 1
2811#define MWL8K_RF_ANTENNA_TX 2
2812
2813static int
2814mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask)
2815{
2816 struct mwl8k_cmd_rf_antenna *cmd;
2817 int rc;
2818
2819 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2820 if (cmd == NULL)
2821 return -ENOMEM;
2822
2823 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA);
2824 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2825 cmd->antenna = cpu_to_le16(antenna);
2826 cmd->mode = cpu_to_le16(mask);
2827
2828 rc = mwl8k_post_cmd(hw, &cmd->header);
2829 kfree(cmd);
2830
2831 return rc;
2832}
2833
2834/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002835 * CMD_SET_BEACON.
2836 */
2837struct mwl8k_cmd_set_beacon {
2838 struct mwl8k_cmd_pkt header;
2839 __le16 beacon_len;
2840 __u8 beacon[0];
2841};
2842
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002843static int mwl8k_cmd_set_beacon(struct ieee80211_hw *hw,
2844 struct ieee80211_vif *vif, u8 *beacon, int len)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002845{
2846 struct mwl8k_cmd_set_beacon *cmd;
2847 int rc;
2848
2849 cmd = kzalloc(sizeof(*cmd) + len, GFP_KERNEL);
2850 if (cmd == NULL)
2851 return -ENOMEM;
2852
2853 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_BEACON);
2854 cmd->header.length = cpu_to_le16(sizeof(*cmd) + len);
2855 cmd->beacon_len = cpu_to_le16(len);
2856 memcpy(cmd->beacon, beacon, len);
2857
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002858 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002859 kfree(cmd);
2860
2861 return rc;
2862}
2863
2864/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002865 * CMD_SET_PRE_SCAN.
2866 */
2867struct mwl8k_cmd_set_pre_scan {
2868 struct mwl8k_cmd_pkt header;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002869} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002870
2871static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
2872{
2873 struct mwl8k_cmd_set_pre_scan *cmd;
2874 int rc;
2875
2876 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2877 if (cmd == NULL)
2878 return -ENOMEM;
2879
2880 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
2881 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2882
2883 rc = mwl8k_post_cmd(hw, &cmd->header);
2884 kfree(cmd);
2885
2886 return rc;
2887}
2888
2889/*
2890 * CMD_SET_POST_SCAN.
2891 */
2892struct mwl8k_cmd_set_post_scan {
2893 struct mwl8k_cmd_pkt header;
2894 __le32 isibss;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002895 __u8 bssid[ETH_ALEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002896} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002897
2898static int
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002899mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002900{
2901 struct mwl8k_cmd_set_post_scan *cmd;
2902 int rc;
2903
2904 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2905 if (cmd == NULL)
2906 return -ENOMEM;
2907
2908 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
2909 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2910 cmd->isibss = 0;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002911 memcpy(cmd->bssid, mac, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002912
2913 rc = mwl8k_post_cmd(hw, &cmd->header);
2914 kfree(cmd);
2915
2916 return rc;
2917}
2918
2919/*
2920 * CMD_SET_RF_CHANNEL.
2921 */
2922struct mwl8k_cmd_set_rf_channel {
2923 struct mwl8k_cmd_pkt header;
2924 __le16 action;
2925 __u8 current_channel;
2926 __le32 channel_flags;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002927} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002928
2929static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002930 struct ieee80211_conf *conf)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002931{
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002932 struct ieee80211_channel *channel = conf->channel;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002933 struct mwl8k_cmd_set_rf_channel *cmd;
2934 int rc;
2935
2936 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2937 if (cmd == NULL)
2938 return -ENOMEM;
2939
2940 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
2941 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2942 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2943 cmd->current_channel = channel->hw_value;
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002944
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002945 if (channel->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002946 cmd->channel_flags |= cpu_to_le32(0x00000001);
Lennert Buytenhek42574ea2010-01-12 13:49:18 +01002947 else if (channel->band == IEEE80211_BAND_5GHZ)
2948 cmd->channel_flags |= cpu_to_le32(0x00000004);
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002949
2950 if (conf->channel_type == NL80211_CHAN_NO_HT ||
2951 conf->channel_type == NL80211_CHAN_HT20)
2952 cmd->channel_flags |= cpu_to_le32(0x00000080);
2953 else if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2954 cmd->channel_flags |= cpu_to_le32(0x000001900);
2955 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2956 cmd->channel_flags |= cpu_to_le32(0x000000900);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002957
2958 rc = mwl8k_post_cmd(hw, &cmd->header);
2959 kfree(cmd);
2960
2961 return rc;
2962}
2963
2964/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002965 * CMD_SET_AID.
2966 */
2967#define MWL8K_FRAME_PROT_DISABLED 0x00
2968#define MWL8K_FRAME_PROT_11G 0x07
2969#define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
2970#define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
2971
2972struct mwl8k_cmd_update_set_aid {
2973 struct mwl8k_cmd_pkt header;
2974 __le16 aid;
2975
2976 /* AP's MAC address (BSSID) */
2977 __u8 bssid[ETH_ALEN];
2978 __le16 protection_mode;
2979 __u8 supp_rates[14];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002980} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002981
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002982static void legacy_rate_mask_to_array(u8 *rates, u32 mask)
2983{
2984 int i;
2985 int j;
2986
2987 /*
2988 * Clear nonstandard rates 4 and 13.
2989 */
2990 mask &= 0x1fef;
2991
2992 for (i = 0, j = 0; i < 14; i++) {
2993 if (mask & (1 << i))
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002994 rates[j++] = mwl8k_rates_24[i].hw_value;
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002995 }
2996}
2997
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002998static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002999mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
3000 struct ieee80211_vif *vif, u32 legacy_rate_mask)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003001{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003002 struct mwl8k_cmd_update_set_aid *cmd;
3003 u16 prot_mode;
3004 int rc;
3005
3006 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3007 if (cmd == NULL)
3008 return -ENOMEM;
3009
3010 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
3011 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003012 cmd->aid = cpu_to_le16(vif->bss_conf.aid);
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003013 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003014
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003015 if (vif->bss_conf.use_cts_prot) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003016 prot_mode = MWL8K_FRAME_PROT_11G;
3017 } else {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003018 switch (vif->bss_conf.ht_operation_mode &
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003019 IEEE80211_HT_OP_MODE_PROTECTION) {
3020 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
3021 prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
3022 break;
3023 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
3024 prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
3025 break;
3026 default:
3027 prot_mode = MWL8K_FRAME_PROT_DISABLED;
3028 break;
3029 }
3030 }
3031 cmd->protection_mode = cpu_to_le16(prot_mode);
3032
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003033 legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003034
3035 rc = mwl8k_post_cmd(hw, &cmd->header);
3036 kfree(cmd);
3037
3038 return rc;
3039}
3040
3041/*
3042 * CMD_SET_RATE.
3043 */
3044struct mwl8k_cmd_set_rate {
3045 struct mwl8k_cmd_pkt header;
3046 __u8 legacy_rates[14];
3047
3048 /* Bitmap for supported MCS codes. */
3049 __u8 mcs_set[16];
3050 __u8 reserved[16];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003051} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003052
3053static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003054mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003055 u32 legacy_rate_mask, u8 *mcs_rates)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003056{
3057 struct mwl8k_cmd_set_rate *cmd;
3058 int rc;
3059
3060 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3061 if (cmd == NULL)
3062 return -ENOMEM;
3063
3064 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE);
3065 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003066 legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003067 memcpy(cmd->mcs_set, mcs_rates, 16);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003068
3069 rc = mwl8k_post_cmd(hw, &cmd->header);
3070 kfree(cmd);
3071
3072 return rc;
3073}
3074
3075/*
3076 * CMD_FINALIZE_JOIN.
3077 */
3078#define MWL8K_FJ_BEACON_MAXLEN 128
3079
3080struct mwl8k_cmd_finalize_join {
3081 struct mwl8k_cmd_pkt header;
3082 __le32 sleep_interval; /* Number of beacon periods to sleep */
3083 __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003084} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003085
3086static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame,
3087 int framelen, int dtim)
3088{
3089 struct mwl8k_cmd_finalize_join *cmd;
3090 struct ieee80211_mgmt *payload = frame;
3091 int payload_len;
3092 int rc;
3093
3094 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3095 if (cmd == NULL)
3096 return -ENOMEM;
3097
3098 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN);
3099 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3100 cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
3101
3102 payload_len = framelen - ieee80211_hdrlen(payload->frame_control);
3103 if (payload_len < 0)
3104 payload_len = 0;
3105 else if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
3106 payload_len = MWL8K_FJ_BEACON_MAXLEN;
3107
3108 memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
3109
3110 rc = mwl8k_post_cmd(hw, &cmd->header);
3111 kfree(cmd);
3112
3113 return rc;
3114}
3115
3116/*
3117 * CMD_SET_RTS_THRESHOLD.
3118 */
3119struct mwl8k_cmd_set_rts_threshold {
3120 struct mwl8k_cmd_pkt header;
3121 __le16 action;
3122 __le16 threshold;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003123} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003124
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003125static int
3126mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw, int rts_thresh)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003127{
3128 struct mwl8k_cmd_set_rts_threshold *cmd;
3129 int rc;
3130
3131 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3132 if (cmd == NULL)
3133 return -ENOMEM;
3134
3135 cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
3136 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003137 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3138 cmd->threshold = cpu_to_le16(rts_thresh);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003139
3140 rc = mwl8k_post_cmd(hw, &cmd->header);
3141 kfree(cmd);
3142
3143 return rc;
3144}
3145
3146/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003147 * CMD_SET_SLOT.
3148 */
3149struct mwl8k_cmd_set_slot {
3150 struct mwl8k_cmd_pkt header;
3151 __le16 action;
3152 __u8 short_slot;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003153} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003154
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003155static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003156{
3157 struct mwl8k_cmd_set_slot *cmd;
3158 int rc;
3159
3160 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3161 if (cmd == NULL)
3162 return -ENOMEM;
3163
3164 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
3165 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3166 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003167 cmd->short_slot = short_slot_time;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003168
3169 rc = mwl8k_post_cmd(hw, &cmd->header);
3170 kfree(cmd);
3171
3172 return rc;
3173}
3174
3175/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003176 * CMD_SET_EDCA_PARAMS.
3177 */
3178struct mwl8k_cmd_set_edca_params {
3179 struct mwl8k_cmd_pkt header;
3180
3181 /* See MWL8K_SET_EDCA_XXX below */
3182 __le16 action;
3183
3184 /* TX opportunity in units of 32 us */
3185 __le16 txop;
3186
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003187 union {
3188 struct {
3189 /* Log exponent of max contention period: 0...15 */
3190 __le32 log_cw_max;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003191
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003192 /* Log exponent of min contention period: 0...15 */
3193 __le32 log_cw_min;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003194
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003195 /* Adaptive interframe spacing in units of 32us */
3196 __u8 aifs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003197
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003198 /* TX queue to configure */
3199 __u8 txq;
3200 } ap;
3201 struct {
3202 /* Log exponent of max contention period: 0...15 */
3203 __u8 log_cw_max;
3204
3205 /* Log exponent of min contention period: 0...15 */
3206 __u8 log_cw_min;
3207
3208 /* Adaptive interframe spacing in units of 32us */
3209 __u8 aifs;
3210
3211 /* TX queue to configure */
3212 __u8 txq;
3213 } sta;
3214 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003215} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003216
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003217#define MWL8K_SET_EDCA_CW 0x01
3218#define MWL8K_SET_EDCA_TXOP 0x02
3219#define MWL8K_SET_EDCA_AIFS 0x04
3220
3221#define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
3222 MWL8K_SET_EDCA_TXOP | \
3223 MWL8K_SET_EDCA_AIFS)
3224
3225static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003226mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
3227 __u16 cw_min, __u16 cw_max,
3228 __u8 aifs, __u16 txop)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003229{
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003230 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003231 struct mwl8k_cmd_set_edca_params *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003232 int rc;
3233
3234 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3235 if (cmd == NULL)
3236 return -ENOMEM;
3237
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003238 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
3239 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003240 cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
3241 cmd->txop = cpu_to_le16(txop);
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003242 if (priv->ap_fw) {
3243 cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1));
3244 cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1));
3245 cmd->ap.aifs = aifs;
3246 cmd->ap.txq = qnum;
3247 } else {
3248 cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1);
3249 cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1);
3250 cmd->sta.aifs = aifs;
3251 cmd->sta.txq = qnum;
3252 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003253
3254 rc = mwl8k_post_cmd(hw, &cmd->header);
3255 kfree(cmd);
3256
3257 return rc;
3258}
3259
3260/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003261 * CMD_SET_WMM_MODE.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003262 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003263struct mwl8k_cmd_set_wmm_mode {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003264 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003265 __le16 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003266} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003267
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003268static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw *hw, bool enable)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003269{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003270 struct mwl8k_priv *priv = hw->priv;
3271 struct mwl8k_cmd_set_wmm_mode *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003272 int rc;
3273
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003274 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3275 if (cmd == NULL)
3276 return -ENOMEM;
3277
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003278 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003279 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003280 cmd->action = cpu_to_le16(!!enable);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003281
3282 rc = mwl8k_post_cmd(hw, &cmd->header);
3283 kfree(cmd);
Lennert Buytenhek16cec432009-11-30 18:14:23 +01003284
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003285 if (!rc)
3286 priv->wmm_enabled = enable;
3287
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003288 return rc;
3289}
3290
3291/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003292 * CMD_MIMO_CONFIG.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003293 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003294struct mwl8k_cmd_mimo_config {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003295 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003296 __le32 action;
3297 __u8 rx_antenna_map;
3298 __u8 tx_antenna_map;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003299} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003300
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003301static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003302{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003303 struct mwl8k_cmd_mimo_config *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003304 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003305
3306 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3307 if (cmd == NULL)
3308 return -ENOMEM;
3309
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003310 cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003311 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003312 cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET);
3313 cmd->rx_antenna_map = rx;
3314 cmd->tx_antenna_map = tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003315
3316 rc = mwl8k_post_cmd(hw, &cmd->header);
3317 kfree(cmd);
3318
3319 return rc;
3320}
3321
3322/*
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003323 * CMD_USE_FIXED_RATE (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003324 */
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003325struct mwl8k_cmd_use_fixed_rate_sta {
3326 struct mwl8k_cmd_pkt header;
3327 __le32 action;
3328 __le32 allow_rate_drop;
3329 __le32 num_rates;
3330 struct {
3331 __le32 is_ht_rate;
3332 __le32 enable_retry;
3333 __le32 rate;
3334 __le32 retry_count;
3335 } rate_entry[8];
3336 __le32 rate_type;
3337 __le32 reserved1;
3338 __le32 reserved2;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003339} __packed;
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003340
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003341#define MWL8K_USE_AUTO_RATE 0x0002
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003342#define MWL8K_UCAST_RATE 0
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003343
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003344static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003345{
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003346 struct mwl8k_cmd_use_fixed_rate_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003347 int rc;
3348
3349 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3350 if (cmd == NULL)
3351 return -ENOMEM;
3352
3353 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3354 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003355 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3356 cmd->rate_type = cpu_to_le32(MWL8K_UCAST_RATE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003357
3358 rc = mwl8k_post_cmd(hw, &cmd->header);
3359 kfree(cmd);
3360
3361 return rc;
3362}
3363
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003364/*
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003365 * CMD_USE_FIXED_RATE (AP version).
3366 */
3367struct mwl8k_cmd_use_fixed_rate_ap {
3368 struct mwl8k_cmd_pkt header;
3369 __le32 action;
3370 __le32 allow_rate_drop;
3371 __le32 num_rates;
3372 struct mwl8k_rate_entry_ap {
3373 __le32 is_ht_rate;
3374 __le32 enable_retry;
3375 __le32 rate;
3376 __le32 retry_count;
3377 } rate_entry[4];
3378 u8 multicast_rate;
3379 u8 multicast_rate_type;
3380 u8 management_rate;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003381} __packed;
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003382
3383static int
3384mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw *hw, int mcast, int mgmt)
3385{
3386 struct mwl8k_cmd_use_fixed_rate_ap *cmd;
3387 int rc;
3388
3389 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3390 if (cmd == NULL)
3391 return -ENOMEM;
3392
3393 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3394 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3395 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3396 cmd->multicast_rate = mcast;
3397 cmd->management_rate = mgmt;
3398
3399 rc = mwl8k_post_cmd(hw, &cmd->header);
3400 kfree(cmd);
3401
3402 return rc;
3403}
3404
3405/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003406 * CMD_ENABLE_SNIFFER.
3407 */
3408struct mwl8k_cmd_enable_sniffer {
3409 struct mwl8k_cmd_pkt header;
3410 __le32 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003411} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003412
3413static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable)
3414{
3415 struct mwl8k_cmd_enable_sniffer *cmd;
3416 int rc;
3417
3418 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3419 if (cmd == NULL)
3420 return -ENOMEM;
3421
3422 cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
3423 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3424 cmd->action = cpu_to_le32(!!enable);
3425
3426 rc = mwl8k_post_cmd(hw, &cmd->header);
3427 kfree(cmd);
3428
3429 return rc;
3430}
3431
3432/*
3433 * CMD_SET_MAC_ADDR.
3434 */
3435struct mwl8k_cmd_set_mac_addr {
3436 struct mwl8k_cmd_pkt header;
3437 union {
3438 struct {
3439 __le16 mac_type;
3440 __u8 mac_addr[ETH_ALEN];
3441 } mbss;
3442 __u8 mac_addr[ETH_ALEN];
3443 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003444} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003445
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003446#define MWL8K_MAC_TYPE_PRIMARY_CLIENT 0
3447#define MWL8K_MAC_TYPE_SECONDARY_CLIENT 1
3448#define MWL8K_MAC_TYPE_PRIMARY_AP 2
3449#define MWL8K_MAC_TYPE_SECONDARY_AP 3
Lennert Buytenheka9e00b12010-01-08 18:31:30 +01003450
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003451static int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw,
3452 struct ieee80211_vif *vif, u8 *mac)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003453{
3454 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003455 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003456 struct mwl8k_cmd_set_mac_addr *cmd;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003457 int mac_type;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003458 int rc;
3459
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003460 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3461 if (vif != NULL && vif->type == NL80211_IFTYPE_STATION) {
3462 if (mwl8k_vif->macid + 1 == ffs(priv->sta_macids_supported))
3463 mac_type = MWL8K_MAC_TYPE_PRIMARY_CLIENT;
3464 else
3465 mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
3466 } else if (vif != NULL && vif->type == NL80211_IFTYPE_AP) {
3467 if (mwl8k_vif->macid + 1 == ffs(priv->ap_macids_supported))
3468 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3469 else
3470 mac_type = MWL8K_MAC_TYPE_SECONDARY_AP;
3471 }
3472
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003473 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3474 if (cmd == NULL)
3475 return -ENOMEM;
3476
3477 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR);
3478 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3479 if (priv->ap_fw) {
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003480 cmd->mbss.mac_type = cpu_to_le16(mac_type);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003481 memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN);
3482 } else {
3483 memcpy(cmd->mac_addr, mac, ETH_ALEN);
3484 }
3485
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003486 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003487 kfree(cmd);
3488
3489 return rc;
3490}
3491
3492/*
3493 * CMD_SET_RATEADAPT_MODE.
3494 */
3495struct mwl8k_cmd_set_rate_adapt_mode {
3496 struct mwl8k_cmd_pkt header;
3497 __le16 action;
3498 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003499} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003500
3501static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode)
3502{
3503 struct mwl8k_cmd_set_rate_adapt_mode *cmd;
3504 int rc;
3505
3506 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3507 if (cmd == NULL)
3508 return -ENOMEM;
3509
3510 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
3511 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3512 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3513 cmd->mode = cpu_to_le16(mode);
3514
3515 rc = mwl8k_post_cmd(hw, &cmd->header);
3516 kfree(cmd);
3517
3518 return rc;
3519}
3520
3521/*
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003522 * CMD_GET_WATCHDOG_BITMAP.
3523 */
3524struct mwl8k_cmd_get_watchdog_bitmap {
3525 struct mwl8k_cmd_pkt header;
3526 u8 bitmap;
3527} __packed;
3528
3529static int mwl8k_cmd_get_watchdog_bitmap(struct ieee80211_hw *hw, u8 *bitmap)
3530{
3531 struct mwl8k_cmd_get_watchdog_bitmap *cmd;
3532 int rc;
3533
3534 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3535 if (cmd == NULL)
3536 return -ENOMEM;
3537
3538 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_WATCHDOG_BITMAP);
3539 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3540
3541 rc = mwl8k_post_cmd(hw, &cmd->header);
3542 if (!rc)
3543 *bitmap = cmd->bitmap;
3544
3545 kfree(cmd);
3546
3547 return rc;
3548}
3549
3550#define INVALID_BA 0xAA
3551static void mwl8k_watchdog_ba_events(struct work_struct *work)
3552{
3553 int rc;
3554 u8 bitmap = 0, stream_index;
3555 struct mwl8k_ampdu_stream *streams;
3556 struct mwl8k_priv *priv =
3557 container_of(work, struct mwl8k_priv, watchdog_ba_handle);
3558
3559 rc = mwl8k_cmd_get_watchdog_bitmap(priv->hw, &bitmap);
3560 if (rc)
3561 return;
3562
3563 if (bitmap == INVALID_BA)
3564 return;
3565
3566 /* the bitmap is the hw queue number. Map it to the ampdu queue. */
3567 stream_index = bitmap - MWL8K_TX_WMM_QUEUES;
3568
3569 BUG_ON(stream_index >= priv->num_ampdu_queues);
3570
3571 streams = &priv->ampdu[stream_index];
3572
3573 if (streams->state == AMPDU_STREAM_ACTIVE)
3574 ieee80211_stop_tx_ba_session(streams->sta, streams->tid);
3575
3576 return;
3577}
3578
3579
3580/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003581 * CMD_BSS_START.
3582 */
3583struct mwl8k_cmd_bss_start {
3584 struct mwl8k_cmd_pkt header;
3585 __le32 enable;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003586} __packed;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003587
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003588static int mwl8k_cmd_bss_start(struct ieee80211_hw *hw,
3589 struct ieee80211_vif *vif, int enable)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003590{
3591 struct mwl8k_cmd_bss_start *cmd;
3592 int rc;
3593
3594 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3595 if (cmd == NULL)
3596 return -ENOMEM;
3597
3598 cmd->header.code = cpu_to_le16(MWL8K_CMD_BSS_START);
3599 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3600 cmd->enable = cpu_to_le32(enable);
3601
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003602 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003603 kfree(cmd);
3604
3605 return rc;
3606}
3607
3608/*
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003609 * CMD_BASTREAM.
3610 */
3611
3612/*
3613 * UPSTREAM is tx direction
3614 */
3615#define BASTREAM_FLAG_DIRECTION_UPSTREAM 0x00
3616#define BASTREAM_FLAG_IMMEDIATE_TYPE 0x01
3617
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303618enum ba_stream_action_type {
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003619 MWL8K_BA_CREATE,
3620 MWL8K_BA_UPDATE,
3621 MWL8K_BA_DESTROY,
3622 MWL8K_BA_FLUSH,
3623 MWL8K_BA_CHECK,
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303624};
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003625
3626
3627struct mwl8k_create_ba_stream {
3628 __le32 flags;
3629 __le32 idle_thrs;
3630 __le32 bar_thrs;
3631 __le32 window_size;
3632 u8 peer_mac_addr[6];
3633 u8 dialog_token;
3634 u8 tid;
3635 u8 queue_id;
3636 u8 param_info;
3637 __le32 ba_context;
3638 u8 reset_seq_no_flag;
3639 __le16 curr_seq_no;
3640 u8 sta_src_mac_addr[6];
3641} __packed;
3642
3643struct mwl8k_destroy_ba_stream {
3644 __le32 flags;
3645 __le32 ba_context;
3646} __packed;
3647
3648struct mwl8k_cmd_bastream {
3649 struct mwl8k_cmd_pkt header;
3650 __le32 action;
3651 union {
3652 struct mwl8k_create_ba_stream create_params;
3653 struct mwl8k_destroy_ba_stream destroy_params;
3654 };
3655} __packed;
3656
3657static int
3658mwl8k_check_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
3659{
3660 struct mwl8k_cmd_bastream *cmd;
3661 int rc;
3662
3663 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3664 if (cmd == NULL)
3665 return -ENOMEM;
3666
3667 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3668 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3669
3670 cmd->action = cpu_to_le32(MWL8K_BA_CHECK);
3671
3672 cmd->create_params.queue_id = stream->idx;
3673 memcpy(&cmd->create_params.peer_mac_addr[0], stream->sta->addr,
3674 ETH_ALEN);
3675 cmd->create_params.tid = stream->tid;
3676
3677 cmd->create_params.flags =
3678 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE) |
3679 cpu_to_le32(BASTREAM_FLAG_DIRECTION_UPSTREAM);
3680
3681 rc = mwl8k_post_cmd(hw, &cmd->header);
3682
3683 kfree(cmd);
3684
3685 return rc;
3686}
3687
3688static int
3689mwl8k_create_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
3690 u8 buf_size)
3691{
3692 struct mwl8k_cmd_bastream *cmd;
3693 int rc;
3694
3695 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3696 if (cmd == NULL)
3697 return -ENOMEM;
3698
3699
3700 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3701 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3702
3703 cmd->action = cpu_to_le32(MWL8K_BA_CREATE);
3704
3705 cmd->create_params.bar_thrs = cpu_to_le32((u32)buf_size);
3706 cmd->create_params.window_size = cpu_to_le32((u32)buf_size);
3707 cmd->create_params.queue_id = stream->idx;
3708
3709 memcpy(cmd->create_params.peer_mac_addr, stream->sta->addr, ETH_ALEN);
3710 cmd->create_params.tid = stream->tid;
3711 cmd->create_params.curr_seq_no = cpu_to_le16(0);
3712 cmd->create_params.reset_seq_no_flag = 1;
3713
3714 cmd->create_params.param_info =
3715 (stream->sta->ht_cap.ampdu_factor &
3716 IEEE80211_HT_AMPDU_PARM_FACTOR) |
3717 ((stream->sta->ht_cap.ampdu_density << 2) &
3718 IEEE80211_HT_AMPDU_PARM_DENSITY);
3719
3720 cmd->create_params.flags =
3721 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE |
3722 BASTREAM_FLAG_DIRECTION_UPSTREAM);
3723
3724 rc = mwl8k_post_cmd(hw, &cmd->header);
3725
3726 wiphy_debug(hw->wiphy, "Created a BA stream for %pM : tid %d\n",
3727 stream->sta->addr, stream->tid);
3728 kfree(cmd);
3729
3730 return rc;
3731}
3732
3733static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
3734 struct mwl8k_ampdu_stream *stream)
3735{
3736 struct mwl8k_cmd_bastream *cmd;
3737
3738 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3739 if (cmd == NULL)
3740 return;
3741
3742 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3743 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3744 cmd->action = cpu_to_le32(MWL8K_BA_DESTROY);
3745
3746 cmd->destroy_params.ba_context = cpu_to_le32(stream->idx);
3747 mwl8k_post_cmd(hw, &cmd->header);
3748
3749 wiphy_debug(hw->wiphy, "Deleted BA stream index %d\n", stream->idx);
3750
3751 kfree(cmd);
3752}
3753
3754/*
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003755 * CMD_SET_NEW_STN.
3756 */
3757struct mwl8k_cmd_set_new_stn {
3758 struct mwl8k_cmd_pkt header;
3759 __le16 aid;
3760 __u8 mac_addr[6];
3761 __le16 stn_id;
3762 __le16 action;
3763 __le16 rsvd;
3764 __le32 legacy_rates;
3765 __u8 ht_rates[4];
3766 __le16 cap_info;
3767 __le16 ht_capabilities_info;
3768 __u8 mac_ht_param_info;
3769 __u8 rev;
3770 __u8 control_channel;
3771 __u8 add_channel;
3772 __le16 op_mode;
3773 __le16 stbc;
3774 __u8 add_qos_info;
3775 __u8 is_qos_sta;
3776 __le32 fw_sta_ptr;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003777} __packed;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003778
3779#define MWL8K_STA_ACTION_ADD 0
3780#define MWL8K_STA_ACTION_REMOVE 2
3781
3782static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw *hw,
3783 struct ieee80211_vif *vif,
3784 struct ieee80211_sta *sta)
3785{
3786 struct mwl8k_cmd_set_new_stn *cmd;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003787 u32 rates;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003788 int rc;
3789
3790 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3791 if (cmd == NULL)
3792 return -ENOMEM;
3793
3794 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3795 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3796 cmd->aid = cpu_to_le16(sta->aid);
3797 memcpy(cmd->mac_addr, sta->addr, ETH_ALEN);
3798 cmd->stn_id = cpu_to_le16(sta->aid);
3799 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_ADD);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003800 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
3801 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
3802 else
3803 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
3804 cmd->legacy_rates = cpu_to_le32(rates);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003805 if (sta->ht_cap.ht_supported) {
3806 cmd->ht_rates[0] = sta->ht_cap.mcs.rx_mask[0];
3807 cmd->ht_rates[1] = sta->ht_cap.mcs.rx_mask[1];
3808 cmd->ht_rates[2] = sta->ht_cap.mcs.rx_mask[2];
3809 cmd->ht_rates[3] = sta->ht_cap.mcs.rx_mask[3];
3810 cmd->ht_capabilities_info = cpu_to_le16(sta->ht_cap.cap);
3811 cmd->mac_ht_param_info = (sta->ht_cap.ampdu_factor & 3) |
3812 ((sta->ht_cap.ampdu_density & 7) << 2);
3813 cmd->is_qos_sta = 1;
3814 }
3815
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003816 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003817 kfree(cmd);
3818
3819 return rc;
3820}
3821
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003822static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw *hw,
3823 struct ieee80211_vif *vif)
3824{
3825 struct mwl8k_cmd_set_new_stn *cmd;
3826 int rc;
3827
3828 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3829 if (cmd == NULL)
3830 return -ENOMEM;
3831
3832 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3833 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3834 memcpy(cmd->mac_addr, vif->addr, ETH_ALEN);
3835
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003836 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003837 kfree(cmd);
3838
3839 return rc;
3840}
3841
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003842static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw *hw,
3843 struct ieee80211_vif *vif, u8 *addr)
3844{
3845 struct mwl8k_cmd_set_new_stn *cmd;
3846 int rc;
3847
3848 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3849 if (cmd == NULL)
3850 return -ENOMEM;
3851
3852 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3853 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3854 memcpy(cmd->mac_addr, addr, ETH_ALEN);
3855 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_REMOVE);
3856
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003857 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003858 kfree(cmd);
3859
3860 return rc;
3861}
3862
3863/*
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08003864 * CMD_UPDATE_ENCRYPTION.
3865 */
3866
3867#define MAX_ENCR_KEY_LENGTH 16
3868#define MIC_KEY_LENGTH 8
3869
3870struct mwl8k_cmd_update_encryption {
3871 struct mwl8k_cmd_pkt header;
3872
3873 __le32 action;
3874 __le32 reserved;
3875 __u8 mac_addr[6];
3876 __u8 encr_type;
3877
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303878} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08003879
3880struct mwl8k_cmd_set_key {
3881 struct mwl8k_cmd_pkt header;
3882
3883 __le32 action;
3884 __le32 reserved;
3885 __le16 length;
3886 __le16 key_type_id;
3887 __le32 key_info;
3888 __le32 key_id;
3889 __le16 key_len;
3890 __u8 key_material[MAX_ENCR_KEY_LENGTH];
3891 __u8 tkip_tx_mic_key[MIC_KEY_LENGTH];
3892 __u8 tkip_rx_mic_key[MIC_KEY_LENGTH];
3893 __le16 tkip_rsc_low;
3894 __le32 tkip_rsc_high;
3895 __le16 tkip_tsc_low;
3896 __le32 tkip_tsc_high;
3897 __u8 mac_addr[6];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303898} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08003899
3900enum {
3901 MWL8K_ENCR_ENABLE,
3902 MWL8K_ENCR_SET_KEY,
3903 MWL8K_ENCR_REMOVE_KEY,
3904 MWL8K_ENCR_SET_GROUP_KEY,
3905};
3906
3907#define MWL8K_UPDATE_ENCRYPTION_TYPE_WEP 0
3908#define MWL8K_UPDATE_ENCRYPTION_TYPE_DISABLE 1
3909#define MWL8K_UPDATE_ENCRYPTION_TYPE_TKIP 4
3910#define MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED 7
3911#define MWL8K_UPDATE_ENCRYPTION_TYPE_AES 8
3912
3913enum {
3914 MWL8K_ALG_WEP,
3915 MWL8K_ALG_TKIP,
3916 MWL8K_ALG_CCMP,
3917};
3918
3919#define MWL8K_KEY_FLAG_TXGROUPKEY 0x00000004
3920#define MWL8K_KEY_FLAG_PAIRWISE 0x00000008
3921#define MWL8K_KEY_FLAG_TSC_VALID 0x00000040
3922#define MWL8K_KEY_FLAG_WEP_TXKEY 0x01000000
3923#define MWL8K_KEY_FLAG_MICKEY_VALID 0x02000000
3924
3925static int mwl8k_cmd_update_encryption_enable(struct ieee80211_hw *hw,
3926 struct ieee80211_vif *vif,
3927 u8 *addr,
3928 u8 encr_type)
3929{
3930 struct mwl8k_cmd_update_encryption *cmd;
3931 int rc;
3932
3933 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3934 if (cmd == NULL)
3935 return -ENOMEM;
3936
3937 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
3938 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3939 cmd->action = cpu_to_le32(MWL8K_ENCR_ENABLE);
3940 memcpy(cmd->mac_addr, addr, ETH_ALEN);
3941 cmd->encr_type = encr_type;
3942
3943 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
3944 kfree(cmd);
3945
3946 return rc;
3947}
3948
3949static int mwl8k_encryption_set_cmd_info(struct mwl8k_cmd_set_key *cmd,
3950 u8 *addr,
3951 struct ieee80211_key_conf *key)
3952{
3953 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
3954 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3955 cmd->length = cpu_to_le16(sizeof(*cmd) -
3956 offsetof(struct mwl8k_cmd_set_key, length));
3957 cmd->key_id = cpu_to_le32(key->keyidx);
3958 cmd->key_len = cpu_to_le16(key->keylen);
3959 memcpy(cmd->mac_addr, addr, ETH_ALEN);
3960
3961 switch (key->cipher) {
3962 case WLAN_CIPHER_SUITE_WEP40:
3963 case WLAN_CIPHER_SUITE_WEP104:
3964 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_WEP);
3965 if (key->keyidx == 0)
3966 cmd->key_info = cpu_to_le32(MWL8K_KEY_FLAG_WEP_TXKEY);
3967
3968 break;
3969 case WLAN_CIPHER_SUITE_TKIP:
3970 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_TKIP);
3971 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
3972 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
3973 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
3974 cmd->key_info |= cpu_to_le32(MWL8K_KEY_FLAG_MICKEY_VALID
3975 | MWL8K_KEY_FLAG_TSC_VALID);
3976 break;
3977 case WLAN_CIPHER_SUITE_CCMP:
3978 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_CCMP);
3979 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
3980 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
3981 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
3982 break;
3983 default:
3984 return -ENOTSUPP;
3985 }
3986
3987 return 0;
3988}
3989
3990static int mwl8k_cmd_encryption_set_key(struct ieee80211_hw *hw,
3991 struct ieee80211_vif *vif,
3992 u8 *addr,
3993 struct ieee80211_key_conf *key)
3994{
3995 struct mwl8k_cmd_set_key *cmd;
3996 int rc;
3997 int keymlen;
3998 u32 action;
3999 u8 idx;
4000 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4001
4002 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4003 if (cmd == NULL)
4004 return -ENOMEM;
4005
4006 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4007 if (rc < 0)
4008 goto done;
4009
4010 idx = key->keyidx;
4011
4012 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4013 action = MWL8K_ENCR_SET_KEY;
4014 else
4015 action = MWL8K_ENCR_SET_GROUP_KEY;
4016
4017 switch (key->cipher) {
4018 case WLAN_CIPHER_SUITE_WEP40:
4019 case WLAN_CIPHER_SUITE_WEP104:
4020 if (!mwl8k_vif->wep_key_conf[idx].enabled) {
4021 memcpy(mwl8k_vif->wep_key_conf[idx].key, key,
4022 sizeof(*key) + key->keylen);
4023 mwl8k_vif->wep_key_conf[idx].enabled = 1;
4024 }
4025
Yogesh Ashok Powar9b571e22011-05-04 17:22:16 +05304026 keymlen = key->keylen;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004027 action = MWL8K_ENCR_SET_KEY;
4028 break;
4029 case WLAN_CIPHER_SUITE_TKIP:
4030 keymlen = MAX_ENCR_KEY_LENGTH + 2 * MIC_KEY_LENGTH;
4031 break;
4032 case WLAN_CIPHER_SUITE_CCMP:
4033 keymlen = key->keylen;
4034 break;
4035 default:
4036 rc = -ENOTSUPP;
4037 goto done;
4038 }
4039
4040 memcpy(cmd->key_material, key->key, keymlen);
4041 cmd->action = cpu_to_le32(action);
4042
4043 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4044done:
4045 kfree(cmd);
4046
4047 return rc;
4048}
4049
4050static int mwl8k_cmd_encryption_remove_key(struct ieee80211_hw *hw,
4051 struct ieee80211_vif *vif,
4052 u8 *addr,
4053 struct ieee80211_key_conf *key)
4054{
4055 struct mwl8k_cmd_set_key *cmd;
4056 int rc;
4057 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4058
4059 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4060 if (cmd == NULL)
4061 return -ENOMEM;
4062
4063 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4064 if (rc < 0)
4065 goto done;
4066
4067 if (key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
Dan Carpenterd981e052012-01-17 10:33:31 +03004068 key->cipher == WLAN_CIPHER_SUITE_WEP104)
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004069 mwl8k_vif->wep_key_conf[key->keyidx].enabled = 0;
4070
4071 cmd->action = cpu_to_le32(MWL8K_ENCR_REMOVE_KEY);
4072
4073 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4074done:
4075 kfree(cmd);
4076
4077 return rc;
4078}
4079
4080static int mwl8k_set_key(struct ieee80211_hw *hw,
4081 enum set_key_cmd cmd_param,
4082 struct ieee80211_vif *vif,
4083 struct ieee80211_sta *sta,
4084 struct ieee80211_key_conf *key)
4085{
4086 int rc = 0;
4087 u8 encr_type;
4088 u8 *addr;
4089 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4090
4091 if (vif->type == NL80211_IFTYPE_STATION)
4092 return -EOPNOTSUPP;
4093
4094 if (sta == NULL)
Yogesh Ashok Powarff7e9f92012-01-27 16:08:27 +05304095 addr = vif->addr;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004096 else
4097 addr = sta->addr;
4098
4099 if (cmd_param == SET_KEY) {
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004100 rc = mwl8k_cmd_encryption_set_key(hw, vif, addr, key);
4101 if (rc)
4102 goto out;
4103
4104 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40)
4105 || (key->cipher == WLAN_CIPHER_SUITE_WEP104))
4106 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_WEP;
4107 else
4108 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED;
4109
4110 rc = mwl8k_cmd_update_encryption_enable(hw, vif, addr,
4111 encr_type);
4112 if (rc)
4113 goto out;
4114
4115 mwl8k_vif->is_hw_crypto_enabled = true;
4116
4117 } else {
4118 rc = mwl8k_cmd_encryption_remove_key(hw, vif, addr, key);
4119
4120 if (rc)
4121 goto out;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004122 }
4123out:
4124 return rc;
4125}
4126
4127/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004128 * CMD_UPDATE_STADB.
4129 */
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004130struct ewc_ht_info {
4131 __le16 control1;
4132 __le16 control2;
4133 __le16 control3;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004134} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004135
4136struct peer_capability_info {
4137 /* Peer type - AP vs. STA. */
4138 __u8 peer_type;
4139
4140 /* Basic 802.11 capabilities from assoc resp. */
4141 __le16 basic_caps;
4142
4143 /* Set if peer supports 802.11n high throughput (HT). */
4144 __u8 ht_support;
4145
4146 /* Valid if HT is supported. */
4147 __le16 ht_caps;
4148 __u8 extended_ht_caps;
4149 struct ewc_ht_info ewc_info;
4150
4151 /* Legacy rate table. Intersection of our rates and peer rates. */
4152 __u8 legacy_rates[12];
4153
4154 /* HT rate table. Intersection of our rates and peer rates. */
4155 __u8 ht_rates[16];
4156 __u8 pad[16];
4157
4158 /* If set, interoperability mode, no proprietary extensions. */
4159 __u8 interop;
4160 __u8 pad2;
4161 __u8 station_id;
4162 __le16 amsdu_enabled;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004163} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004164
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004165struct mwl8k_cmd_update_stadb {
4166 struct mwl8k_cmd_pkt header;
4167
4168 /* See STADB_ACTION_TYPE */
4169 __le32 action;
4170
4171 /* Peer MAC address */
4172 __u8 peer_addr[ETH_ALEN];
4173
4174 __le32 reserved;
4175
4176 /* Peer info - valid during add/update. */
4177 struct peer_capability_info peer_info;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004178} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004179
Lennert Buytenheka6804002010-01-04 21:55:42 +01004180#define MWL8K_STA_DB_MODIFY_ENTRY 1
4181#define MWL8K_STA_DB_DEL_ENTRY 2
4182
4183/* Peer Entry flags - used to define the type of the peer node */
4184#define MWL8K_PEER_TYPE_ACCESSPOINT 2
4185
4186static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw,
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004187 struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004188 struct ieee80211_sta *sta)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004189{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004190 struct mwl8k_cmd_update_stadb *cmd;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004191 struct peer_capability_info *p;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004192 u32 rates;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004193 int rc;
4194
4195 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4196 if (cmd == NULL)
4197 return -ENOMEM;
4198
4199 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4200 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka6804002010-01-04 21:55:42 +01004201 cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004202 memcpy(cmd->peer_addr, sta->addr, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004203
Lennert Buytenheka6804002010-01-04 21:55:42 +01004204 p = &cmd->peer_info;
4205 p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
4206 p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004207 p->ht_support = sta->ht_cap.ht_supported;
John W. Linvilleb6037422010-07-20 13:55:00 -04004208 p->ht_caps = cpu_to_le16(sta->ht_cap.cap);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004209 p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) |
4210 ((sta->ht_cap.ampdu_density & 7) << 2);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004211 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4212 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
4213 else
4214 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4215 legacy_rate_mask_to_array(p->legacy_rates, rates);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004216 memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16);
Lennert Buytenheka6804002010-01-04 21:55:42 +01004217 p->interop = 1;
4218 p->amsdu_enabled = 0;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004219
Lennert Buytenheka6804002010-01-04 21:55:42 +01004220 rc = mwl8k_post_cmd(hw, &cmd->header);
4221 kfree(cmd);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004222
Lennert Buytenheka6804002010-01-04 21:55:42 +01004223 return rc ? rc : p->station_id;
4224}
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004225
Lennert Buytenheka6804002010-01-04 21:55:42 +01004226static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw,
4227 struct ieee80211_vif *vif, u8 *addr)
4228{
4229 struct mwl8k_cmd_update_stadb *cmd;
4230 int rc;
4231
4232 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4233 if (cmd == NULL)
4234 return -ENOMEM;
4235
4236 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4237 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4238 cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY);
4239 memcpy(cmd->peer_addr, addr, ETH_ALEN);
4240
4241 rc = mwl8k_post_cmd(hw, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004242 kfree(cmd);
4243
4244 return rc;
4245}
4246
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004247
4248/*
4249 * Interrupt handling.
4250 */
4251static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
4252{
4253 struct ieee80211_hw *hw = dev_id;
4254 struct mwl8k_priv *priv = hw->priv;
4255 u32 status;
4256
4257 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004258 if (!status)
4259 return IRQ_NONE;
4260
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004261 if (status & MWL8K_A2H_INT_TX_DONE) {
4262 status &= ~MWL8K_A2H_INT_TX_DONE;
4263 tasklet_schedule(&priv->poll_tx_task);
4264 }
4265
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004266 if (status & MWL8K_A2H_INT_RX_READY) {
4267 status &= ~MWL8K_A2H_INT_RX_READY;
4268 tasklet_schedule(&priv->poll_rx_task);
4269 }
4270
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004271 if (status & MWL8K_A2H_INT_BA_WATCHDOG) {
4272 status &= ~MWL8K_A2H_INT_BA_WATCHDOG;
4273 ieee80211_queue_work(hw, &priv->watchdog_ba_handle);
4274 }
4275
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004276 if (status)
4277 iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004278
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004279 if (status & MWL8K_A2H_INT_OPC_DONE) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004280 if (priv->hostcmd_wait != NULL)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004281 complete(priv->hostcmd_wait);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004282 }
4283
4284 if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004285 if (!mutex_is_locked(&priv->fw_mutex) &&
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02004286 priv->radio_on && priv->pending_tx_pkts)
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004287 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004288 }
4289
4290 return IRQ_HANDLED;
4291}
4292
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004293static void mwl8k_tx_poll(unsigned long data)
4294{
4295 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4296 struct mwl8k_priv *priv = hw->priv;
4297 int limit;
4298 int i;
4299
4300 limit = 32;
4301
4302 spin_lock_bh(&priv->tx_lock);
4303
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004304 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004305 limit -= mwl8k_txq_reclaim(hw, i, limit, 0);
4306
4307 if (!priv->pending_tx_pkts && priv->tx_wait != NULL) {
4308 complete(priv->tx_wait);
4309 priv->tx_wait = NULL;
4310 }
4311
4312 spin_unlock_bh(&priv->tx_lock);
4313
4314 if (limit) {
4315 writel(~MWL8K_A2H_INT_TX_DONE,
4316 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4317 } else {
4318 tasklet_schedule(&priv->poll_tx_task);
4319 }
4320}
4321
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004322static void mwl8k_rx_poll(unsigned long data)
4323{
4324 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4325 struct mwl8k_priv *priv = hw->priv;
4326 int limit;
4327
4328 limit = 32;
4329 limit -= rxq_process(hw, 0, limit);
4330 limit -= rxq_refill(hw, 0, limit);
4331
4332 if (limit) {
4333 writel(~MWL8K_A2H_INT_RX_READY,
4334 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4335 } else {
4336 tasklet_schedule(&priv->poll_rx_task);
4337 }
4338}
4339
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004340
4341/*
4342 * Core driver operations.
4343 */
Johannes Berg7bb45682011-02-24 14:42:06 +01004344static void mwl8k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004345{
4346 struct mwl8k_priv *priv = hw->priv;
4347 int index = skb_get_queue_mapping(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004348
Lennert Buytenhek9189c102010-01-12 13:47:32 +01004349 if (!priv->radio_on) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004350 wiphy_debug(hw->wiphy,
4351 "dropped TX frame since radio disabled\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004352 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01004353 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004354 }
4355
Johannes Berg7bb45682011-02-24 14:42:06 +01004356 mwl8k_txq_xmit(hw, index, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004357}
4358
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004359static int mwl8k_start(struct ieee80211_hw *hw)
4360{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004361 struct mwl8k_priv *priv = hw->priv;
4362 int rc;
4363
Joe Perchesa0607fd2009-11-18 23:29:17 -08004364 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004365 IRQF_SHARED, MWL8K_NAME, hw);
4366 if (rc) {
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304367 priv->irq = -1;
Joe Perches5db55842010-08-11 19:11:19 -07004368 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004369 return -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004370 }
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304371 priv->irq = priv->pdev->irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004372
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004373 /* Enable TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004374 tasklet_enable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004375 tasklet_enable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004376
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004377 /* Enable interrupts */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02004378 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05304379 iowrite32(MWL8K_A2H_EVENTS,
4380 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004381
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004382 rc = mwl8k_fw_lock(hw);
4383 if (!rc) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004384 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004385
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004386 if (!priv->ap_fw) {
4387 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004388 rc = mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004389
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004390 if (!rc)
4391 rc = mwl8k_cmd_set_pre_scan(hw);
4392
4393 if (!rc)
4394 rc = mwl8k_cmd_set_post_scan(hw,
4395 "\x00\x00\x00\x00\x00\x00");
4396 }
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004397
4398 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004399 rc = mwl8k_cmd_set_rateadapt_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004400
4401 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004402 rc = mwl8k_cmd_set_wmm_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004403
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004404 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004405 }
4406
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004407 if (rc) {
4408 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
4409 free_irq(priv->pdev->irq, hw);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304410 priv->irq = -1;
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004411 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004412 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004413 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004414
4415 return rc;
4416}
4417
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004418static void mwl8k_stop(struct ieee80211_hw *hw)
4419{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004420 struct mwl8k_priv *priv = hw->priv;
4421 int i;
4422
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304423 if (!priv->hw_restart_in_progress)
4424 mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004425
4426 ieee80211_stop_queues(hw);
4427
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004428 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004429 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304430 if (priv->irq != -1) {
4431 free_irq(priv->pdev->irq, hw);
4432 priv->irq = -1;
4433 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004434
4435 /* Stop finalize join worker */
4436 cancel_work_sync(&priv->finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004437 cancel_work_sync(&priv->watchdog_ba_handle);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004438 if (priv->beacon_skb != NULL)
4439 dev_kfree_skb(priv->beacon_skb);
4440
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004441 /* Stop TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004442 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004443 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004444
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004445 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004446 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01004447 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004448}
4449
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004450static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image);
4451
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004452static int mwl8k_add_interface(struct ieee80211_hw *hw,
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004453 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004454{
4455 struct mwl8k_priv *priv = hw->priv;
4456 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004457 u32 macids_supported;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004458 int macid, rc;
4459 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004460
4461 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004462 * Reject interface creation if sniffer mode is active, as
4463 * STA operation is mutually exclusive with hardware sniffer
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004464 * mode. (Sniffer mode is only used on STA firmware.)
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004465 */
4466 if (priv->sniffer_enabled) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004467 wiphy_info(hw->wiphy,
4468 "unable to create STA interface because sniffer mode is enabled\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004469 return -EINVAL;
4470 }
4471
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004472 di = priv->device_info;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004473 switch (vif->type) {
4474 case NL80211_IFTYPE_AP:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004475 if (!priv->ap_fw && di->fw_image_ap) {
4476 /* we must load the ap fw to meet this request */
4477 if (!list_empty(&priv->vif_list))
4478 return -EBUSY;
4479 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4480 if (rc)
4481 return rc;
4482 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004483 macids_supported = priv->ap_macids_supported;
4484 break;
4485 case NL80211_IFTYPE_STATION:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004486 if (priv->ap_fw && di->fw_image_sta) {
4487 /* we must load the sta fw to meet this request */
4488 if (!list_empty(&priv->vif_list))
4489 return -EBUSY;
4490 rc = mwl8k_reload_firmware(hw, di->fw_image_sta);
4491 if (rc)
4492 return rc;
4493 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004494 macids_supported = priv->sta_macids_supported;
4495 break;
4496 default:
4497 return -EINVAL;
4498 }
4499
4500 macid = ffs(macids_supported & ~priv->macids_used);
4501 if (!macid--)
4502 return -EBUSY;
4503
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004504 /* Setup driver private area. */
Johannes Berg1ed32e42009-12-23 13:15:45 +01004505 mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004506 memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004507 mwl8k_vif->vif = vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004508 mwl8k_vif->macid = macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004509 mwl8k_vif->seqno = 0;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004510 memcpy(mwl8k_vif->bssid, vif->addr, ETH_ALEN);
4511 mwl8k_vif->is_hw_crypto_enabled = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004512
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004513 /* Set the mac address. */
4514 mwl8k_cmd_set_mac_addr(hw, vif, vif->addr);
4515
4516 if (priv->ap_fw)
4517 mwl8k_cmd_set_new_stn_add_self(hw, vif);
4518
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004519 priv->macids_used |= 1 << mwl8k_vif->macid;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004520 list_add_tail(&mwl8k_vif->list, &priv->vif_list);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004521
4522 return 0;
4523}
4524
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304525static void mwl8k_remove_vif(struct mwl8k_priv *priv, struct mwl8k_vif *vif)
4526{
4527 /* Has ieee80211_restart_hw re-added the removed interfaces? */
4528 if (!priv->macids_used)
4529 return;
4530
4531 priv->macids_used &= ~(1 << vif->macid);
4532 list_del(&vif->list);
4533}
4534
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004535static void mwl8k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004536 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004537{
4538 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004539 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004540
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004541 if (priv->ap_fw)
4542 mwl8k_cmd_set_new_stn_del(hw, vif, vif->addr);
4543
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004544 mwl8k_cmd_set_mac_addr(hw, vif, "\x00\x00\x00\x00\x00\x00");
Lennert Buytenhek32060e12009-10-22 20:20:04 +02004545
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304546 mwl8k_remove_vif(priv, mwl8k_vif);
4547}
4548
4549static void mwl8k_hw_restart_work(struct work_struct *work)
4550{
4551 struct mwl8k_priv *priv =
4552 container_of(work, struct mwl8k_priv, fw_reload);
4553 struct ieee80211_hw *hw = priv->hw;
4554 struct mwl8k_device_info *di;
4555 int rc;
4556
4557 /* If some command is waiting for a response, clear it */
4558 if (priv->hostcmd_wait != NULL) {
4559 complete(priv->hostcmd_wait);
4560 priv->hostcmd_wait = NULL;
4561 }
4562
4563 priv->hw_restart_owner = current;
4564 di = priv->device_info;
4565 mwl8k_fw_lock(hw);
4566
4567 if (priv->ap_fw)
4568 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4569 else
4570 rc = mwl8k_reload_firmware(hw, di->fw_image_sta);
4571
4572 if (rc)
4573 goto fail;
4574
4575 priv->hw_restart_owner = NULL;
4576 priv->hw_restart_in_progress = false;
4577
4578 /*
4579 * This unlock will wake up the queues and
4580 * also opens the command path for other
4581 * commands
4582 */
4583 mwl8k_fw_unlock(hw);
4584
4585 ieee80211_restart_hw(hw);
4586
4587 wiphy_err(hw->wiphy, "Firmware restarted successfully\n");
4588
4589 return;
4590fail:
4591 mwl8k_fw_unlock(hw);
4592
4593 wiphy_err(hw->wiphy, "Firmware restart failed\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004594}
4595
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004596static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004597{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004598 struct ieee80211_conf *conf = &hw->conf;
4599 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004600 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004601
Lennert Buytenhek7595d672009-08-17 23:59:40 +02004602 if (conf->flags & IEEE80211_CONF_IDLE) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004603 mwl8k_cmd_radio_disable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004604 return 0;
Lennert Buytenhek7595d672009-08-17 23:59:40 +02004605 }
4606
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004607 rc = mwl8k_fw_lock(hw);
4608 if (rc)
4609 return rc;
4610
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004611 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004612 if (rc)
4613 goto out;
4614
Lennert Buytenhek610677d2010-01-04 21:56:46 +01004615 rc = mwl8k_cmd_set_rf_channel(hw, conf);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004616 if (rc)
4617 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004618
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004619 if (conf->power_level > 18)
4620 conf->power_level = 18;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004621
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004622 if (priv->ap_fw) {
Nishant Sarmukadam03217082011-04-05 14:18:09 +05304623
4624 if (conf->flags & IEEE80211_CONF_CHANGE_POWER) {
4625 rc = mwl8k_cmd_tx_power(hw, conf, conf->power_level);
4626 if (rc)
4627 goto out;
4628 }
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004629
Nishant Sarmukadamda62b762011-02-17 14:45:16 -08004630 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x3);
4631 if (rc)
4632 wiphy_warn(hw->wiphy, "failed to set # of RX antennas");
4633 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7);
4634 if (rc)
4635 wiphy_warn(hw->wiphy, "failed to set # of TX antennas");
4636
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004637 } else {
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004638 rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level);
4639 if (rc)
4640 goto out;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004641 rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7);
4642 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004643
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004644out:
4645 mwl8k_fw_unlock(hw);
4646
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004647 return rc;
4648}
4649
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004650static void
4651mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4652 struct ieee80211_bss_conf *info, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004653{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004654 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304655 u32 ap_legacy_rates = 0;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004656 u8 ap_mcs_rates[16];
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004657 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004658
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004659 if (mwl8k_fw_lock(hw))
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004660 return;
4661
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004662 /*
4663 * No need to capture a beacon if we're no longer associated.
4664 */
4665 if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc)
4666 priv->capture_beacon = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004667
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004668 /*
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004669 * Get the AP's legacy and MCS rates.
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004670 */
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004671 if (vif->bss_conf.assoc) {
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004672 struct ieee80211_sta *ap;
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004673
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004674 rcu_read_lock();
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004675
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004676 ap = ieee80211_find_sta(vif, vif->bss_conf.bssid);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004677 if (ap == NULL) {
4678 rcu_read_unlock();
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004679 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004680 }
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004681
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004682 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) {
4683 ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ];
4684 } else {
4685 ap_legacy_rates =
4686 ap->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4687 }
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004688 memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004689
4690 rcu_read_unlock();
4691 }
4692
4693 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc) {
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004694 rc = mwl8k_cmd_set_rate(hw, vif, ap_legacy_rates, ap_mcs_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004695 if (rc)
4696 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004697
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01004698 rc = mwl8k_cmd_use_fixed_rate_sta(hw);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004699 if (rc)
4700 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004701 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004702
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004703 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004704 rc = mwl8k_set_radio_preamble(hw,
4705 vif->bss_conf.use_short_preamble);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004706 if (rc)
4707 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004708 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004709
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004710 if (changed & BSS_CHANGED_ERP_SLOT) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004711 rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004712 if (rc)
4713 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004714 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004715
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004716 if (vif->bss_conf.assoc &&
4717 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_ERP_CTS_PROT |
4718 BSS_CHANGED_HT))) {
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004719 rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004720 if (rc)
4721 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004722 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004723
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004724 if (vif->bss_conf.assoc &&
4725 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004726 /*
4727 * Finalize the join. Tell rx handler to process
4728 * next beacon from our BSSID.
4729 */
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01004730 memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004731 priv->capture_beacon = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004732 }
4733
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004734out:
4735 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004736}
4737
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004738static void
4739mwl8k_bss_info_changed_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4740 struct ieee80211_bss_conf *info, u32 changed)
4741{
4742 int rc;
4743
4744 if (mwl8k_fw_lock(hw))
4745 return;
4746
4747 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
4748 rc = mwl8k_set_radio_preamble(hw,
4749 vif->bss_conf.use_short_preamble);
4750 if (rc)
4751 goto out;
4752 }
4753
4754 if (changed & BSS_CHANGED_BASIC_RATES) {
4755 int idx;
4756 int rate;
4757
4758 /*
4759 * Use lowest supported basic rate for multicasts
4760 * and management frames (such as probe responses --
4761 * beacons will always go out at 1 Mb/s).
4762 */
4763 idx = ffs(vif->bss_conf.basic_rates);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004764 if (idx)
4765 idx--;
4766
4767 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4768 rate = mwl8k_rates_24[idx].hw_value;
4769 else
4770 rate = mwl8k_rates_50[idx].hw_value;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004771
4772 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
4773 }
4774
4775 if (changed & (BSS_CHANGED_BEACON_INT | BSS_CHANGED_BEACON)) {
4776 struct sk_buff *skb;
4777
4778 skb = ieee80211_beacon_get(hw, vif);
4779 if (skb != NULL) {
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004780 mwl8k_cmd_set_beacon(hw, vif, skb->data, skb->len);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004781 kfree_skb(skb);
4782 }
4783 }
4784
4785 if (changed & BSS_CHANGED_BEACON_ENABLED)
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004786 mwl8k_cmd_bss_start(hw, vif, info->enable_beacon);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004787
4788out:
4789 mwl8k_fw_unlock(hw);
4790}
4791
4792static void
4793mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4794 struct ieee80211_bss_conf *info, u32 changed)
4795{
4796 struct mwl8k_priv *priv = hw->priv;
4797
4798 if (!priv->ap_fw)
4799 mwl8k_bss_info_changed_sta(hw, vif, info, changed);
4800 else
4801 mwl8k_bss_info_changed_ap(hw, vif, info, changed);
4802}
4803
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02004804static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw,
Jiri Pirko22bedad2010-04-01 21:22:57 +00004805 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02004806{
4807 struct mwl8k_cmd_pkt *cmd;
4808
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004809 /*
4810 * Synthesize and return a command packet that programs the
4811 * hardware multicast address filter. At this point we don't
4812 * know whether FIF_ALLMULTI is being requested, but if it is,
4813 * we'll end up throwing this packet away and creating a new
4814 * one in mwl8k_configure_filter().
4815 */
Jiri Pirko22bedad2010-04-01 21:22:57 +00004816 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_list);
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02004817
4818 return (unsigned long)cmd;
4819}
4820
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004821static int
4822mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw,
4823 unsigned int changed_flags,
4824 unsigned int *total_flags)
4825{
4826 struct mwl8k_priv *priv = hw->priv;
4827
4828 /*
4829 * Hardware sniffer mode is mutually exclusive with STA
4830 * operation, so refuse to enable sniffer mode if a STA
4831 * interface is active.
4832 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004833 if (!list_empty(&priv->vif_list)) {
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004834 if (net_ratelimit())
Joe Perchesc96c31e2010-07-26 14:39:58 -07004835 wiphy_info(hw->wiphy,
4836 "not enabling sniffer mode because STA interface is active\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004837 return 0;
4838 }
4839
4840 if (!priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004841 if (mwl8k_cmd_enable_sniffer(hw, 1))
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004842 return 0;
4843 priv->sniffer_enabled = true;
4844 }
4845
4846 *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI |
4847 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL |
4848 FIF_OTHER_BSS;
4849
4850 return 1;
4851}
4852
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004853static struct mwl8k_vif *mwl8k_first_vif(struct mwl8k_priv *priv)
4854{
4855 if (!list_empty(&priv->vif_list))
4856 return list_entry(priv->vif_list.next, struct mwl8k_vif, list);
4857
4858 return NULL;
4859}
4860
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004861static void mwl8k_configure_filter(struct ieee80211_hw *hw,
4862 unsigned int changed_flags,
4863 unsigned int *total_flags,
4864 u64 multicast)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004865{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004866 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004867 struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast;
4868
4869 /*
Lennert Buytenhekc0adae22009-10-22 20:21:36 +02004870 * AP firmware doesn't allow fine-grained control over
4871 * the receive filter.
4872 */
4873 if (priv->ap_fw) {
4874 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
4875 kfree(cmd);
4876 return;
4877 }
4878
4879 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004880 * Enable hardware sniffer mode if FIF_CONTROL or
4881 * FIF_OTHER_BSS is requested.
4882 */
4883 if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) &&
4884 mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) {
4885 kfree(cmd);
4886 return;
4887 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004888
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004889 /* Clear unsupported feature flags */
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004890 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004891
Lennert Buytenhek90852f72010-01-02 10:31:42 +01004892 if (mwl8k_fw_lock(hw)) {
4893 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004894 return;
Lennert Buytenhek90852f72010-01-02 10:31:42 +01004895 }
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004896
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004897 if (priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004898 mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004899 priv->sniffer_enabled = false;
4900 }
4901
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004902 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
Lennert Buytenhek77165d82009-10-22 20:19:53 +02004903 if (*total_flags & FIF_BCN_PRBRESP_PROMISC) {
4904 /*
4905 * Disable the BSS filter.
4906 */
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004907 mwl8k_cmd_set_pre_scan(hw);
Lennert Buytenhek77165d82009-10-22 20:19:53 +02004908 } else {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004909 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01004910 const u8 *bssid;
Lennert Buytenheka94cc972009-08-03 21:58:57 +02004911
Lennert Buytenhek77165d82009-10-22 20:19:53 +02004912 /*
4913 * Enable the BSS filter.
4914 *
4915 * If there is an active STA interface, use that
4916 * interface's BSSID, otherwise use a dummy one
4917 * (where the OUI part needs to be nonzero for
4918 * the BSSID to be accepted by POST_SCAN).
4919 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004920 mwl8k_vif = mwl8k_first_vif(priv);
4921 if (mwl8k_vif != NULL)
4922 bssid = mwl8k_vif->vif->bss_conf.bssid;
4923 else
4924 bssid = "\x01\x00\x00\x00\x00\x00";
Lennert Buytenheka94cc972009-08-03 21:58:57 +02004925
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004926 mwl8k_cmd_set_post_scan(hw, bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004927 }
4928 }
4929
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004930 /*
4931 * If FIF_ALLMULTI is being requested, throw away the command
4932 * packet that ->prepare_multicast() built and replace it with
4933 * a command packet that enables reception of all multicast
4934 * packets.
4935 */
4936 if (*total_flags & FIF_ALLMULTI) {
4937 kfree(cmd);
Jiri Pirko22bedad2010-04-01 21:22:57 +00004938 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, NULL);
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004939 }
4940
4941 if (cmd != NULL) {
4942 mwl8k_post_cmd(hw, cmd);
4943 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004944 }
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02004945
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004946 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004947}
4948
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004949static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
4950{
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01004951 return mwl8k_cmd_set_rts_threshold(hw, value);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004952}
4953
Johannes Berg4a6967b2010-02-19 19:18:37 +01004954static int mwl8k_sta_remove(struct ieee80211_hw *hw,
4955 struct ieee80211_vif *vif,
4956 struct ieee80211_sta *sta)
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004957{
4958 struct mwl8k_priv *priv = hw->priv;
4959
Johannes Berg4a6967b2010-02-19 19:18:37 +01004960 if (priv->ap_fw)
4961 return mwl8k_cmd_set_new_stn_del(hw, vif, sta->addr);
4962 else
4963 return mwl8k_cmd_update_stadb_del(hw, vif, sta->addr);
4964}
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004965
Johannes Berg4a6967b2010-02-19 19:18:37 +01004966static int mwl8k_sta_add(struct ieee80211_hw *hw,
4967 struct ieee80211_vif *vif,
4968 struct ieee80211_sta *sta)
4969{
4970 struct mwl8k_priv *priv = hw->priv;
4971 int ret;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004972 int i;
4973 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4974 struct ieee80211_key_conf *key;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004975
Johannes Berg4a6967b2010-02-19 19:18:37 +01004976 if (!priv->ap_fw) {
4977 ret = mwl8k_cmd_update_stadb_add(hw, vif, sta);
4978 if (ret >= 0) {
4979 MWL8K_STA(sta)->peer_id = ret;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07004980 if (sta->ht_cap.ht_supported)
4981 MWL8K_STA(sta)->is_ampdu_allowed = true;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004982 ret = 0;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004983 }
Johannes Berg4a6967b2010-02-19 19:18:37 +01004984
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004985 } else {
4986 ret = mwl8k_cmd_set_new_stn_add(hw, vif, sta);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004987 }
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004988
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004989 for (i = 0; i < NUM_WEP_KEYS; i++) {
4990 key = IEEE80211_KEY_CONF(mwl8k_vif->wep_key_conf[i].key);
4991 if (mwl8k_vif->wep_key_conf[i].enabled)
4992 mwl8k_set_key(hw, SET_KEY, vif, sta, key);
4993 }
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004994 return ret;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01004995}
4996
Eliad Peller8a3a3c82011-10-02 10:15:52 +02004997static int mwl8k_conf_tx(struct ieee80211_hw *hw,
4998 struct ieee80211_vif *vif, u16 queue,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004999 const struct ieee80211_tx_queue_params *params)
5000{
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005001 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005002 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005003
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005004 rc = mwl8k_fw_lock(hw);
5005 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005006 BUG_ON(queue > MWL8K_TX_WMM_QUEUES - 1);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005007 memcpy(&priv->wmm_params[queue], params, sizeof(*params));
5008
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005009 if (!priv->wmm_enabled)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005010 rc = mwl8k_cmd_set_wmm_mode(hw, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005011
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005012 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005013 int q = MWL8K_TX_WMM_QUEUES - 1 - queue;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005014 rc = mwl8k_cmd_set_edca_params(hw, q,
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005015 params->cw_min,
5016 params->cw_max,
5017 params->aifs,
5018 params->txop);
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005019 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005020
5021 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005022 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005023
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005024 return rc;
5025}
5026
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005027static int mwl8k_get_stats(struct ieee80211_hw *hw,
5028 struct ieee80211_low_level_stats *stats)
5029{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005030 return mwl8k_cmd_get_stat(hw, stats);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005031}
5032
John W. Linville0d462bb2010-07-28 14:04:24 -04005033static int mwl8k_get_survey(struct ieee80211_hw *hw, int idx,
5034 struct survey_info *survey)
5035{
5036 struct mwl8k_priv *priv = hw->priv;
5037 struct ieee80211_conf *conf = &hw->conf;
5038
5039 if (idx != 0)
5040 return -ENOENT;
5041
5042 survey->channel = conf->channel;
5043 survey->filled = SURVEY_INFO_NOISE_DBM;
5044 survey->noise = priv->noise;
5045
5046 return 0;
5047}
5048
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005049#define MAX_AMPDU_ATTEMPTS 5
5050
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005051static int
5052mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5053 enum ieee80211_ampdu_mlme_action action,
Johannes Berg0b01f032011-01-18 13:51:05 +01005054 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
5055 u8 buf_size)
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005056{
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005057
5058 int i, rc = 0;
5059 struct mwl8k_priv *priv = hw->priv;
5060 struct mwl8k_ampdu_stream *stream;
5061 u8 *addr = sta->addr;
5062
5063 if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
5064 return -ENOTSUPP;
5065
5066 spin_lock(&priv->stream_lock);
5067 stream = mwl8k_lookup_stream(hw, addr, tid);
5068
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005069 switch (action) {
5070 case IEEE80211_AMPDU_RX_START:
5071 case IEEE80211_AMPDU_RX_STOP:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005072 break;
5073 case IEEE80211_AMPDU_TX_START:
5074 /* By the time we get here the hw queues may contain outgoing
5075 * packets for this RA/TID that are not part of this BA
5076 * session. The hw will assign sequence numbers to these
5077 * packets as they go out. So if we query the hw for its next
5078 * sequence number and use that for the SSN here, it may end up
5079 * being wrong, which will lead to sequence number mismatch at
5080 * the recipient. To avoid this, we reset the sequence number
5081 * to O for the first MPDU in this BA stream.
5082 */
5083 *ssn = 0;
5084 if (stream == NULL) {
5085 /* This means that somebody outside this driver called
5086 * ieee80211_start_tx_ba_session. This is unexpected
5087 * because we do our own rate control. Just warn and
5088 * move on.
5089 */
5090 wiphy_warn(hw->wiphy, "Unexpected call to %s. "
5091 "Proceeding anyway.\n", __func__);
5092 stream = mwl8k_add_stream(hw, sta, tid);
5093 }
5094 if (stream == NULL) {
5095 wiphy_debug(hw->wiphy, "no free AMPDU streams\n");
5096 rc = -EBUSY;
5097 break;
5098 }
5099 stream->state = AMPDU_STREAM_IN_PROGRESS;
5100
5101 /* Release the lock before we do the time consuming stuff */
5102 spin_unlock(&priv->stream_lock);
5103 for (i = 0; i < MAX_AMPDU_ATTEMPTS; i++) {
5104 rc = mwl8k_check_ba(hw, stream);
5105
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305106 /* If HW restart is in progress mwl8k_post_cmd will
5107 * return -EBUSY. Avoid retrying mwl8k_check_ba in
5108 * such cases
5109 */
5110 if (!rc || rc == -EBUSY)
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005111 break;
5112 /*
5113 * HW queues take time to be flushed, give them
5114 * sufficient time
5115 */
5116
5117 msleep(1000);
5118 }
5119 spin_lock(&priv->stream_lock);
5120 if (rc) {
5121 wiphy_err(hw->wiphy, "Stream for tid %d busy after %d"
5122 " attempts\n", tid, MAX_AMPDU_ATTEMPTS);
5123 mwl8k_remove_stream(hw, stream);
5124 rc = -EBUSY;
5125 break;
5126 }
5127 ieee80211_start_tx_ba_cb_irqsafe(vif, addr, tid);
5128 break;
5129 case IEEE80211_AMPDU_TX_STOP:
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305130 if (stream) {
5131 if (stream->state == AMPDU_STREAM_ACTIVE) {
5132 spin_unlock(&priv->stream_lock);
5133 mwl8k_destroy_ba(hw, stream);
5134 spin_lock(&priv->stream_lock);
5135 }
5136 mwl8k_remove_stream(hw, stream);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005137 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005138 ieee80211_stop_tx_ba_cb_irqsafe(vif, addr, tid);
5139 break;
5140 case IEEE80211_AMPDU_TX_OPERATIONAL:
5141 BUG_ON(stream == NULL);
5142 BUG_ON(stream->state != AMPDU_STREAM_IN_PROGRESS);
5143 spin_unlock(&priv->stream_lock);
5144 rc = mwl8k_create_ba(hw, stream, buf_size);
5145 spin_lock(&priv->stream_lock);
5146 if (!rc)
5147 stream->state = AMPDU_STREAM_ACTIVE;
5148 else {
5149 spin_unlock(&priv->stream_lock);
5150 mwl8k_destroy_ba(hw, stream);
5151 spin_lock(&priv->stream_lock);
5152 wiphy_debug(hw->wiphy,
5153 "Failed adding stream for sta %pM tid %d\n",
5154 addr, tid);
5155 mwl8k_remove_stream(hw, stream);
5156 }
5157 break;
5158
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005159 default:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005160 rc = -ENOTSUPP;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005161 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005162
5163 spin_unlock(&priv->stream_lock);
5164 return rc;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005165}
5166
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005167static const struct ieee80211_ops mwl8k_ops = {
5168 .tx = mwl8k_tx,
5169 .start = mwl8k_start,
5170 .stop = mwl8k_stop,
5171 .add_interface = mwl8k_add_interface,
5172 .remove_interface = mwl8k_remove_interface,
5173 .config = mwl8k_config,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005174 .bss_info_changed = mwl8k_bss_info_changed,
Johannes Berg3ac64be2009-08-17 16:16:53 +02005175 .prepare_multicast = mwl8k_prepare_multicast,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005176 .configure_filter = mwl8k_configure_filter,
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005177 .set_key = mwl8k_set_key,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005178 .set_rts_threshold = mwl8k_set_rts_threshold,
Johannes Berg4a6967b2010-02-19 19:18:37 +01005179 .sta_add = mwl8k_sta_add,
5180 .sta_remove = mwl8k_sta_remove,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005181 .conf_tx = mwl8k_conf_tx,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005182 .get_stats = mwl8k_get_stats,
John W. Linville0d462bb2010-07-28 14:04:24 -04005183 .get_survey = mwl8k_get_survey,
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005184 .ampdu_action = mwl8k_ampdu_action,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005185};
5186
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005187static void mwl8k_finalize_join_worker(struct work_struct *work)
5188{
5189 struct mwl8k_priv *priv =
5190 container_of(work, struct mwl8k_priv, finalize_join_worker);
5191 struct sk_buff *skb = priv->beacon_skb;
Johannes Berg56007a02010-01-26 14:19:52 +01005192 struct ieee80211_mgmt *mgmt = (void *)skb->data;
5193 int len = skb->len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
5194 const u8 *tim = cfg80211_find_ie(WLAN_EID_TIM,
5195 mgmt->u.beacon.variable, len);
5196 int dtim_period = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005197
Johannes Berg56007a02010-01-26 14:19:52 +01005198 if (tim && tim[1] >= 2)
5199 dtim_period = tim[3];
5200
5201 mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len, dtim_period);
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005202
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005203 dev_kfree_skb(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005204 priv->beacon_skb = NULL;
5205}
5206
John W. Linvillebcb628d2009-11-06 16:40:16 -05005207enum {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005208 MWL8363 = 0,
5209 MWL8687,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005210 MWL8366,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02005211};
5212
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07005213#define MWL8K_8366_AP_FW_API 2
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005214#define _MWL8K_8366_AP_FW(api) "mwl8k/fmimage_8366_ap-" #api ".fw"
5215#define MWL8K_8366_AP_FW(api) _MWL8K_8366_AP_FW(api)
5216
John W. Linvillebcb628d2009-11-06 16:40:16 -05005217static struct mwl8k_device_info mwl8k_info_tbl[] __devinitdata = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005218 [MWL8363] = {
5219 .part_name = "88w8363",
5220 .helper_image = "mwl8k/helper_8363.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005221 .fw_image_sta = "mwl8k/fmimage_8363.fw",
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005222 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005223 [MWL8687] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005224 .part_name = "88w8687",
5225 .helper_image = "mwl8k/helper_8687.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005226 .fw_image_sta = "mwl8k/fmimage_8687.fw",
John W. Linvillebcb628d2009-11-06 16:40:16 -05005227 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005228 [MWL8366] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005229 .part_name = "88w8366",
5230 .helper_image = "mwl8k/helper_8366.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005231 .fw_image_sta = "mwl8k/fmimage_8366.fw",
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005232 .fw_image_ap = MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API),
5233 .fw_api_ap = MWL8K_8366_AP_FW_API,
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01005234 .ap_rxd_ops = &rxd_8366_ap_ops,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005235 },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005236};
5237
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005238MODULE_FIRMWARE("mwl8k/helper_8363.fw");
5239MODULE_FIRMWARE("mwl8k/fmimage_8363.fw");
5240MODULE_FIRMWARE("mwl8k/helper_8687.fw");
5241MODULE_FIRMWARE("mwl8k/fmimage_8687.fw");
5242MODULE_FIRMWARE("mwl8k/helper_8366.fw");
5243MODULE_FIRMWARE("mwl8k/fmimage_8366.fw");
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005244MODULE_FIRMWARE(MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API));
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005245
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005246static DEFINE_PCI_DEVICE_TABLE(mwl8k_pci_id_table) = {
Benjamin Larssone5868ba2010-03-19 01:46:10 +01005247 { PCI_VDEVICE(MARVELL, 0x2a0a), .driver_data = MWL8363, },
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005248 { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, },
5249 { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005250 { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, },
5251 { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, },
5252 { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, },
Lennert Buytenhekca665272010-01-12 13:47:53 +01005253 { PCI_VDEVICE(MARVELL, 0x2a43), .driver_data = MWL8366, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005254 { },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005255};
5256MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table);
5257
Brian Cavagnolo99020472010-11-12 17:23:52 -08005258static int mwl8k_request_alt_fw(struct mwl8k_priv *priv)
5259{
5260 int rc;
5261 printk(KERN_ERR "%s: Error requesting preferred fw %s.\n"
5262 "Trying alternative firmware %s\n", pci_name(priv->pdev),
5263 priv->fw_pref, priv->fw_alt);
5264 rc = mwl8k_request_fw(priv, priv->fw_alt, &priv->fw_ucode, true);
5265 if (rc) {
5266 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5267 pci_name(priv->pdev), priv->fw_alt);
5268 return rc;
5269 }
5270 return 0;
5271}
5272
5273static int mwl8k_firmware_load_success(struct mwl8k_priv *priv);
5274static void mwl8k_fw_state_machine(const struct firmware *fw, void *context)
5275{
5276 struct mwl8k_priv *priv = context;
5277 struct mwl8k_device_info *di = priv->device_info;
5278 int rc;
5279
5280 switch (priv->fw_state) {
5281 case FW_STATE_INIT:
5282 if (!fw) {
5283 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
5284 pci_name(priv->pdev), di->helper_image);
5285 goto fail;
5286 }
5287 priv->fw_helper = fw;
5288 rc = mwl8k_request_fw(priv, priv->fw_pref, &priv->fw_ucode,
5289 true);
5290 if (rc && priv->fw_alt) {
5291 rc = mwl8k_request_alt_fw(priv);
5292 if (rc)
5293 goto fail;
5294 priv->fw_state = FW_STATE_LOADING_ALT;
5295 } else if (rc)
5296 goto fail;
5297 else
5298 priv->fw_state = FW_STATE_LOADING_PREF;
5299 break;
5300
5301 case FW_STATE_LOADING_PREF:
5302 if (!fw) {
5303 if (priv->fw_alt) {
5304 rc = mwl8k_request_alt_fw(priv);
5305 if (rc)
5306 goto fail;
5307 priv->fw_state = FW_STATE_LOADING_ALT;
5308 } else
5309 goto fail;
5310 } else {
5311 priv->fw_ucode = fw;
5312 rc = mwl8k_firmware_load_success(priv);
5313 if (rc)
5314 goto fail;
5315 else
5316 complete(&priv->firmware_loading_complete);
5317 }
5318 break;
5319
5320 case FW_STATE_LOADING_ALT:
5321 if (!fw) {
5322 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5323 pci_name(priv->pdev), di->helper_image);
5324 goto fail;
5325 }
5326 priv->fw_ucode = fw;
5327 rc = mwl8k_firmware_load_success(priv);
5328 if (rc)
5329 goto fail;
5330 else
5331 complete(&priv->firmware_loading_complete);
5332 break;
5333
5334 default:
5335 printk(KERN_ERR "%s: Unexpected firmware loading state: %d\n",
5336 MWL8K_NAME, priv->fw_state);
5337 BUG_ON(1);
5338 }
5339
5340 return;
5341
5342fail:
5343 priv->fw_state = FW_STATE_ERROR;
5344 complete(&priv->firmware_loading_complete);
5345 device_release_driver(&priv->pdev->dev);
5346 mwl8k_release_firmware(priv);
5347}
5348
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305349#define MAX_RESTART_ATTEMPTS 1
Brian Cavagnolo99020472010-11-12 17:23:52 -08005350static int mwl8k_init_firmware(struct ieee80211_hw *hw, char *fw_image,
5351 bool nowait)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005352{
5353 struct mwl8k_priv *priv = hw->priv;
5354 int rc;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305355 int count = MAX_RESTART_ATTEMPTS;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005356
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305357retry:
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005358 /* Reset firmware and hardware */
5359 mwl8k_hw_reset(priv);
5360
5361 /* Ask userland hotplug daemon for the device firmware */
Brian Cavagnolo99020472010-11-12 17:23:52 -08005362 rc = mwl8k_request_firmware(priv, fw_image, nowait);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005363 if (rc) {
5364 wiphy_err(hw->wiphy, "Firmware files not found\n");
5365 return rc;
5366 }
5367
Brian Cavagnolo99020472010-11-12 17:23:52 -08005368 if (nowait)
5369 return rc;
5370
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005371 /* Load firmware into hardware */
5372 rc = mwl8k_load_firmware(hw);
5373 if (rc)
5374 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5375
5376 /* Reclaim memory once firmware is successfully loaded */
5377 mwl8k_release_firmware(priv);
5378
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305379 if (rc && count) {
5380 /* FW did not start successfully;
5381 * lets try one more time
5382 */
5383 count--;
5384 wiphy_err(hw->wiphy, "Trying to reload the firmware again\n");
5385 msleep(20);
5386 goto retry;
5387 }
5388
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005389 return rc;
5390}
5391
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005392static int mwl8k_init_txqs(struct ieee80211_hw *hw)
5393{
5394 struct mwl8k_priv *priv = hw->priv;
5395 int rc = 0;
5396 int i;
5397
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005398 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005399 rc = mwl8k_txq_init(hw, i);
5400 if (rc)
5401 break;
5402 if (priv->ap_fw)
5403 iowrite32(priv->txq[i].txd_dma,
5404 priv->sram + priv->txq_offset[i]);
5405 }
5406 return rc;
5407}
5408
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005409/* initialize hw after successfully loading a firmware image */
5410static int mwl8k_probe_hw(struct ieee80211_hw *hw)
5411{
5412 struct mwl8k_priv *priv = hw->priv;
5413 int rc = 0;
5414 int i;
5415
5416 if (priv->ap_fw) {
5417 priv->rxd_ops = priv->device_info->ap_rxd_ops;
5418 if (priv->rxd_ops == NULL) {
5419 wiphy_err(hw->wiphy,
5420 "Driver does not have AP firmware image support for this hardware\n");
5421 goto err_stop_firmware;
5422 }
5423 } else {
5424 priv->rxd_ops = &rxd_sta_ops;
5425 }
5426
5427 priv->sniffer_enabled = false;
5428 priv->wmm_enabled = false;
5429 priv->pending_tx_pkts = 0;
5430
5431 rc = mwl8k_rxq_init(hw, 0);
5432 if (rc)
5433 goto err_stop_firmware;
5434 rxq_refill(hw, 0, INT_MAX);
5435
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005436 /* For the sta firmware, we need to know the dma addresses of tx queues
5437 * before sending MWL8K_CMD_GET_HW_SPEC. So we must initialize them
5438 * prior to issuing this command. But for the AP case, we learn the
5439 * total number of queues from the result CMD_GET_HW_SPEC, so for this
5440 * case we must initialize the tx queues after.
5441 */
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07005442 priv->num_ampdu_queues = 0;
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005443 if (!priv->ap_fw) {
5444 rc = mwl8k_init_txqs(hw);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005445 if (rc)
5446 goto err_free_queues;
5447 }
5448
5449 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
5450 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005451 iowrite32(MWL8K_A2H_INT_TX_DONE|MWL8K_A2H_INT_RX_READY|
5452 MWL8K_A2H_INT_BA_WATCHDOG,
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005453 priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05305454 iowrite32(MWL8K_A2H_INT_OPC_DONE,
5455 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005456
5457 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
5458 IRQF_SHARED, MWL8K_NAME, hw);
5459 if (rc) {
5460 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
5461 goto err_free_queues;
5462 }
5463
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305464 /*
5465 * When hw restart is requested,
5466 * mac80211 will take care of clearing
5467 * the ampdu streams, so do not clear
5468 * the ampdu state here
5469 */
5470 if (!priv->hw_restart_in_progress)
5471 memset(priv->ampdu, 0, sizeof(priv->ampdu));
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005472
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005473 /*
5474 * Temporarily enable interrupts. Initial firmware host
5475 * commands use interrupts and avoid polling. Disable
5476 * interrupts when done.
5477 */
5478 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5479
5480 /* Get config data, mac addrs etc */
5481 if (priv->ap_fw) {
5482 rc = mwl8k_cmd_get_hw_spec_ap(hw);
5483 if (!rc)
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005484 rc = mwl8k_init_txqs(hw);
5485 if (!rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005486 rc = mwl8k_cmd_set_hw_spec(hw);
5487 } else {
5488 rc = mwl8k_cmd_get_hw_spec_sta(hw);
5489 }
5490 if (rc) {
5491 wiphy_err(hw->wiphy, "Cannot initialise firmware\n");
5492 goto err_free_irq;
5493 }
5494
5495 /* Turn radio off */
5496 rc = mwl8k_cmd_radio_disable(hw);
5497 if (rc) {
5498 wiphy_err(hw->wiphy, "Cannot disable\n");
5499 goto err_free_irq;
5500 }
5501
5502 /* Clear MAC address */
5503 rc = mwl8k_cmd_set_mac_addr(hw, NULL, "\x00\x00\x00\x00\x00\x00");
5504 if (rc) {
5505 wiphy_err(hw->wiphy, "Cannot clear MAC address\n");
5506 goto err_free_irq;
5507 }
5508
5509 /* Disable interrupts */
5510 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5511 free_irq(priv->pdev->irq, hw);
5512
5513 wiphy_info(hw->wiphy, "%s v%d, %pm, %s firmware %u.%u.%u.%u\n",
5514 priv->device_info->part_name,
5515 priv->hw_rev, hw->wiphy->perm_addr,
5516 priv->ap_fw ? "AP" : "STA",
5517 (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff,
5518 (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff);
5519
5520 return 0;
5521
5522err_free_irq:
5523 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5524 free_irq(priv->pdev->irq, hw);
5525
5526err_free_queues:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005527 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005528 mwl8k_txq_deinit(hw, i);
5529 mwl8k_rxq_deinit(hw, 0);
5530
5531err_stop_firmware:
5532 mwl8k_hw_reset(priv);
5533
5534 return rc;
5535}
5536
5537/*
5538 * invoke mwl8k_reload_firmware to change the firmware image after the device
5539 * has already been registered
5540 */
5541static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image)
5542{
5543 int i, rc = 0;
5544 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305545 struct mwl8k_vif *vif, *tmp_vif;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005546
5547 mwl8k_stop(hw);
5548 mwl8k_rxq_deinit(hw, 0);
5549
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305550 /*
5551 * All the existing interfaces are re-added by the ieee80211_reconfig;
5552 * which means driver should remove existing interfaces before calling
5553 * ieee80211_restart_hw
5554 */
5555 if (priv->hw_restart_in_progress)
5556 list_for_each_entry_safe(vif, tmp_vif, &priv->vif_list, list)
5557 mwl8k_remove_vif(priv, vif);
5558
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005559 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005560 mwl8k_txq_deinit(hw, i);
5561
Brian Cavagnolo99020472010-11-12 17:23:52 -08005562 rc = mwl8k_init_firmware(hw, fw_image, false);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005563 if (rc)
5564 goto fail;
5565
5566 rc = mwl8k_probe_hw(hw);
5567 if (rc)
5568 goto fail;
5569
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305570 if (priv->hw_restart_in_progress)
5571 return rc;
5572
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005573 rc = mwl8k_start(hw);
5574 if (rc)
5575 goto fail;
5576
5577 rc = mwl8k_config(hw, ~0);
5578 if (rc)
5579 goto fail;
5580
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005581 for (i = 0; i < MWL8K_TX_WMM_QUEUES; i++) {
Eliad Peller8a3a3c82011-10-02 10:15:52 +02005582 rc = mwl8k_conf_tx(hw, NULL, i, &priv->wmm_params[i]);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005583 if (rc)
5584 goto fail;
5585 }
5586
5587 return rc;
5588
5589fail:
5590 printk(KERN_WARNING "mwl8k: Failed to reload firmware image.\n");
5591 return rc;
5592}
5593
5594static int mwl8k_firmware_load_success(struct mwl8k_priv *priv)
5595{
5596 struct ieee80211_hw *hw = priv->hw;
5597 int i, rc;
5598
Brian Cavagnolo99020472010-11-12 17:23:52 -08005599 rc = mwl8k_load_firmware(hw);
5600 mwl8k_release_firmware(priv);
5601 if (rc) {
5602 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5603 return rc;
5604 }
5605
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005606 /*
5607 * Extra headroom is the size of the required DMA header
5608 * minus the size of the smallest 802.11 frame (CTS frame).
5609 */
5610 hw->extra_tx_headroom =
5611 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
5612
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05305613 hw->extra_tx_headroom -= priv->ap_fw ? REDUCED_TX_HEADROOM : 0;
5614
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005615 hw->channel_change_time = 10;
5616
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005617 hw->queues = MWL8K_TX_WMM_QUEUES;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005618
5619 /* Set rssi values to dBm */
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08005620 hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_HAS_RATE_CONTROL;
Yogesh Ashok Powar2a36a0e2011-08-29 17:12:44 +05305621
5622 /*
5623 * Ask mac80211 to not to trigger PS mode
5624 * based on PM bit of incoming frames.
5625 */
5626 if (priv->ap_fw)
5627 hw->flags |= IEEE80211_HW_AP_LINK_PS;
5628
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005629 hw->vif_data_size = sizeof(struct mwl8k_vif);
5630 hw->sta_data_size = sizeof(struct mwl8k_sta);
5631
5632 priv->macids_used = 0;
5633 INIT_LIST_HEAD(&priv->vif_list);
5634
5635 /* Set default radio state and preamble */
Rusty Russell3db1cd52011-12-19 13:56:45 +00005636 priv->radio_on = false;
5637 priv->radio_short_preamble = false;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005638
5639 /* Finalize join worker */
5640 INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005641 /* Handle watchdog ba events */
5642 INIT_WORK(&priv->watchdog_ba_handle, mwl8k_watchdog_ba_events);
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305643 /* To reload the firmware if it crashes */
5644 INIT_WORK(&priv->fw_reload, mwl8k_hw_restart_work);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005645
5646 /* TX reclaim and RX tasklets. */
5647 tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw);
5648 tasklet_disable(&priv->poll_tx_task);
5649 tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw);
5650 tasklet_disable(&priv->poll_rx_task);
5651
5652 /* Power management cookie */
5653 priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
5654 if (priv->cookie == NULL)
5655 return -ENOMEM;
5656
5657 mutex_init(&priv->fw_mutex);
5658 priv->fw_mutex_owner = NULL;
5659 priv->fw_mutex_depth = 0;
5660 priv->hostcmd_wait = NULL;
5661
5662 spin_lock_init(&priv->tx_lock);
5663
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005664 spin_lock_init(&priv->stream_lock);
5665
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005666 priv->tx_wait = NULL;
5667
5668 rc = mwl8k_probe_hw(hw);
5669 if (rc)
5670 goto err_free_cookie;
5671
5672 hw->wiphy->interface_modes = 0;
5673 if (priv->ap_macids_supported || priv->device_info->fw_image_ap)
5674 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP);
5675 if (priv->sta_macids_supported || priv->device_info->fw_image_sta)
5676 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
5677
5678 rc = ieee80211_register_hw(hw);
5679 if (rc) {
5680 wiphy_err(hw->wiphy, "Cannot register device\n");
5681 goto err_unprobe_hw;
5682 }
5683
5684 return 0;
5685
5686err_unprobe_hw:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005687 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005688 mwl8k_txq_deinit(hw, i);
5689 mwl8k_rxq_deinit(hw, 0);
5690
5691err_free_cookie:
5692 if (priv->cookie != NULL)
5693 pci_free_consistent(priv->pdev, 4,
5694 priv->cookie, priv->cookie_dma);
5695
5696 return rc;
5697}
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005698static int __devinit mwl8k_probe(struct pci_dev *pdev,
5699 const struct pci_device_id *id)
5700{
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005701 static int printed_version;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005702 struct ieee80211_hw *hw;
5703 struct mwl8k_priv *priv;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005704 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005705 int rc;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02005706
5707 if (!printed_version) {
5708 printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION);
5709 printed_version = 1;
5710 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005711
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005712
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005713 rc = pci_enable_device(pdev);
5714 if (rc) {
5715 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
5716 MWL8K_NAME);
5717 return rc;
5718 }
5719
5720 rc = pci_request_regions(pdev, MWL8K_NAME);
5721 if (rc) {
5722 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
5723 MWL8K_NAME);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01005724 goto err_disable_device;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005725 }
5726
5727 pci_set_master(pdev);
5728
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005729
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005730 hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
5731 if (hw == NULL) {
5732 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
5733 rc = -ENOMEM;
5734 goto err_free_reg;
5735 }
5736
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005737 SET_IEEE80211_DEV(hw, &pdev->dev);
5738 pci_set_drvdata(pdev, hw);
5739
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005740 priv = hw->priv;
5741 priv->hw = hw;
5742 priv->pdev = pdev;
John W. Linvillebcb628d2009-11-06 16:40:16 -05005743 priv->device_info = &mwl8k_info_tbl[id->driver_data];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005744
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005745
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005746 priv->sram = pci_iomap(pdev, 0, 0x10000);
5747 if (priv->sram == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07005748 wiphy_err(hw->wiphy, "Cannot map device SRAM\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005749 goto err_iounmap;
5750 }
5751
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005752 /*
5753 * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
5754 * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
5755 */
5756 priv->regs = pci_iomap(pdev, 1, 0x10000);
5757 if (priv->regs == NULL) {
5758 priv->regs = pci_iomap(pdev, 2, 0x10000);
5759 if (priv->regs == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07005760 wiphy_err(hw->wiphy, "Cannot map device registers\n");
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005761 goto err_iounmap;
5762 }
5763 }
5764
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005765 /*
Brian Cavagnolo99020472010-11-12 17:23:52 -08005766 * Choose the initial fw image depending on user input. If a second
5767 * image is available, make it the alternative image that will be
5768 * loaded if the first one fails.
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005769 */
Brian Cavagnolo99020472010-11-12 17:23:52 -08005770 init_completion(&priv->firmware_loading_complete);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005771 di = priv->device_info;
Brian Cavagnolo99020472010-11-12 17:23:52 -08005772 if (ap_mode_default && di->fw_image_ap) {
5773 priv->fw_pref = di->fw_image_ap;
5774 priv->fw_alt = di->fw_image_sta;
5775 } else if (!ap_mode_default && di->fw_image_sta) {
5776 priv->fw_pref = di->fw_image_sta;
5777 priv->fw_alt = di->fw_image_ap;
5778 } else if (ap_mode_default && !di->fw_image_ap && di->fw_image_sta) {
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005779 printk(KERN_WARNING "AP fw is unavailable. Using STA fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08005780 priv->fw_pref = di->fw_image_sta;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005781 } else if (!ap_mode_default && !di->fw_image_sta && di->fw_image_ap) {
5782 printk(KERN_WARNING "STA fw is unavailable. Using AP fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08005783 priv->fw_pref = di->fw_image_ap;
5784 }
5785 rc = mwl8k_init_firmware(hw, priv->fw_pref, true);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005786 if (rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005787 goto err_stop_firmware;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305788
5789 priv->hw_restart_in_progress = false;
5790
Brian Cavagnolo99020472010-11-12 17:23:52 -08005791 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005792
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005793err_stop_firmware:
5794 mwl8k_hw_reset(priv);
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005795
5796err_iounmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005797 if (priv->regs != NULL)
5798 pci_iounmap(pdev, priv->regs);
5799
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005800 if (priv->sram != NULL)
5801 pci_iounmap(pdev, priv->sram);
5802
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005803 pci_set_drvdata(pdev, NULL);
5804 ieee80211_free_hw(hw);
5805
5806err_free_reg:
5807 pci_release_regions(pdev);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01005808
5809err_disable_device:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005810 pci_disable_device(pdev);
5811
5812 return rc;
5813}
5814
Joerg Albert230f7af2009-04-18 02:10:45 +02005815static void __devexit mwl8k_shutdown(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005816{
5817 printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__);
5818}
5819
Joerg Albert230f7af2009-04-18 02:10:45 +02005820static void __devexit mwl8k_remove(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005821{
5822 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
5823 struct mwl8k_priv *priv;
5824 int i;
5825
5826 if (hw == NULL)
5827 return;
5828 priv = hw->priv;
5829
Brian Cavagnolo99020472010-11-12 17:23:52 -08005830 wait_for_completion(&priv->firmware_loading_complete);
5831
5832 if (priv->fw_state == FW_STATE_ERROR) {
5833 mwl8k_hw_reset(priv);
5834 goto unmap;
5835 }
5836
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005837 ieee80211_stop_queues(hw);
5838
Lennert Buytenhek60aa5692009-08-03 21:59:09 +02005839 ieee80211_unregister_hw(hw);
5840
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01005841 /* Remove TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01005842 tasklet_kill(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01005843 tasklet_kill(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005844
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005845 /* Stop hardware */
5846 mwl8k_hw_reset(priv);
5847
5848 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005849 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01005850 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005851
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005852 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005853 mwl8k_txq_deinit(hw, i);
5854
5855 mwl8k_rxq_deinit(hw, 0);
5856
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02005857 pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005858
Brian Cavagnolo99020472010-11-12 17:23:52 -08005859unmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005860 pci_iounmap(pdev, priv->regs);
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005861 pci_iounmap(pdev, priv->sram);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005862 pci_set_drvdata(pdev, NULL);
5863 ieee80211_free_hw(hw);
5864 pci_release_regions(pdev);
5865 pci_disable_device(pdev);
5866}
5867
5868static struct pci_driver mwl8k_driver = {
5869 .name = MWL8K_NAME,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005870 .id_table = mwl8k_pci_id_table,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005871 .probe = mwl8k_probe,
5872 .remove = __devexit_p(mwl8k_remove),
5873 .shutdown = __devexit_p(mwl8k_shutdown),
5874};
5875
5876static int __init mwl8k_init(void)
5877{
5878 return pci_register_driver(&mwl8k_driver);
5879}
5880
5881static void __exit mwl8k_exit(void)
5882{
5883 pci_unregister_driver(&mwl8k_driver);
5884}
5885
5886module_init(mwl8k_init);
5887module_exit(mwl8k_exit);
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02005888
5889MODULE_DESCRIPTION(MWL8K_DESC);
5890MODULE_VERSION(MWL8K_VERSION);
5891MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
5892MODULE_LICENSE("GPL");