blob: 51634f20539c735f9fe869e19ed0f2cf176403f5 [file] [log] [blame]
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001/*
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002 * drivers/net/wireless/mwl8k.c
3 * Driver for Marvell TOPDOG 802.11 Wireless cards
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004 *
Lennert Buytenheka5fb2972010-01-12 13:51:38 +01005 * Copyright (C) 2008, 2009, 2010 Marvell Semiconductor Inc.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006 *
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
10 */
11
12#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000013#include <linux/interrupt.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010014#include <linux/module.h>
15#include <linux/kernel.h>
Lennert Buytenhek3d76e822009-10-22 20:20:16 +020016#include <linux/sched.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010017#include <linux/spinlock.h>
18#include <linux/list.h>
19#include <linux/pci.h>
20#include <linux/delay.h>
21#include <linux/completion.h>
22#include <linux/etherdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010024#include <net/mac80211.h>
25#include <linux/moduleparam.h>
26#include <linux/firmware.h>
27#include <linux/workqueue.h>
28
29#define MWL8K_DESC "Marvell TOPDOG(R) 802.11 Wireless Network Driver"
30#define MWL8K_NAME KBUILD_MODNAME
Yogesh Ashok Powar00e8e692011-12-20 11:39:29 +053031#define MWL8K_VERSION "0.13"
Lennert Buytenheka66098d2009-03-10 10:13:33 +010032
Brian Cavagnolo0863ade2010-11-12 17:23:50 -080033/* Module parameters */
Rusty Russelleb939922011-12-19 14:08:01 +000034static bool ap_mode_default;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -080035module_param(ap_mode_default, bool, 0);
36MODULE_PARM_DESC(ap_mode_default,
37 "Set to 1 to make ap mode the default instead of sta mode");
38
Lennert Buytenheka66098d2009-03-10 10:13:33 +010039/* Register definitions */
40#define MWL8K_HIU_GEN_PTR 0x00000c10
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020041#define MWL8K_MODE_STA 0x0000005a
42#define MWL8K_MODE_AP 0x000000a5
Lennert Buytenheka66098d2009-03-10 10:13:33 +010043#define MWL8K_HIU_INT_CODE 0x00000c14
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020044#define MWL8K_FWSTA_READY 0xf0f1f2f4
45#define MWL8K_FWAP_READY 0xf1f2f4a5
46#define MWL8K_INT_CODE_CMD_FINISHED 0x00000005
Lennert Buytenheka66098d2009-03-10 10:13:33 +010047#define MWL8K_HIU_SCRATCH 0x00000c40
48
49/* Host->device communications */
50#define MWL8K_HIU_H2A_INTERRUPT_EVENTS 0x00000c18
51#define MWL8K_HIU_H2A_INTERRUPT_STATUS 0x00000c1c
52#define MWL8K_HIU_H2A_INTERRUPT_MASK 0x00000c20
53#define MWL8K_HIU_H2A_INTERRUPT_CLEAR_SEL 0x00000c24
54#define MWL8K_HIU_H2A_INTERRUPT_STATUS_MASK 0x00000c28
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020055#define MWL8K_H2A_INT_DUMMY (1 << 20)
56#define MWL8K_H2A_INT_RESET (1 << 15)
57#define MWL8K_H2A_INT_DOORBELL (1 << 1)
58#define MWL8K_H2A_INT_PPA_READY (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010059
60/* Device->host communications */
61#define MWL8K_HIU_A2H_INTERRUPT_EVENTS 0x00000c2c
62#define MWL8K_HIU_A2H_INTERRUPT_STATUS 0x00000c30
63#define MWL8K_HIU_A2H_INTERRUPT_MASK 0x00000c34
64#define MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL 0x00000c38
65#define MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK 0x00000c3c
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020066#define MWL8K_A2H_INT_DUMMY (1 << 20)
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -070067#define MWL8K_A2H_INT_BA_WATCHDOG (1 << 14)
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020068#define MWL8K_A2H_INT_CHNL_SWITCHED (1 << 11)
69#define MWL8K_A2H_INT_QUEUE_EMPTY (1 << 10)
70#define MWL8K_A2H_INT_RADAR_DETECT (1 << 7)
71#define MWL8K_A2H_INT_RADIO_ON (1 << 6)
72#define MWL8K_A2H_INT_RADIO_OFF (1 << 5)
73#define MWL8K_A2H_INT_MAC_EVENT (1 << 3)
74#define MWL8K_A2H_INT_OPC_DONE (1 << 2)
75#define MWL8K_A2H_INT_RX_READY (1 << 1)
76#define MWL8K_A2H_INT_TX_DONE (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010077
Pradeep Nemavat566875d2011-04-21 16:34:57 +053078/* HW micro second timer register
79 * located at offset 0xA600. This
80 * will be used to timestamp tx
81 * packets.
82 */
83
84#define MWL8K_HW_TIMER_REGISTER 0x0000a600
85
Lennert Buytenheka66098d2009-03-10 10:13:33 +010086#define MWL8K_A2H_EVENTS (MWL8K_A2H_INT_DUMMY | \
87 MWL8K_A2H_INT_CHNL_SWITCHED | \
88 MWL8K_A2H_INT_QUEUE_EMPTY | \
89 MWL8K_A2H_INT_RADAR_DETECT | \
90 MWL8K_A2H_INT_RADIO_ON | \
91 MWL8K_A2H_INT_RADIO_OFF | \
92 MWL8K_A2H_INT_MAC_EVENT | \
93 MWL8K_A2H_INT_OPC_DONE | \
94 MWL8K_A2H_INT_RX_READY | \
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -070095 MWL8K_A2H_INT_TX_DONE | \
96 MWL8K_A2H_INT_BA_WATCHDOG)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010097
Lennert Buytenheka66098d2009-03-10 10:13:33 +010098#define MWL8K_RX_QUEUES 1
Brian Cavagnoloe6007072011-03-17 11:58:44 -070099#define MWL8K_TX_WMM_QUEUES 4
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700100#define MWL8K_MAX_AMPDU_QUEUES 8
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700101#define MWL8K_MAX_TX_QUEUES (MWL8K_TX_WMM_QUEUES + MWL8K_MAX_AMPDU_QUEUES)
102#define mwl8k_tx_queues(priv) (MWL8K_TX_WMM_QUEUES + (priv)->num_ampdu_queues)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100103
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +0530104/* txpriorities are mapped with hw queues.
105 * Each hw queue has a txpriority.
106 */
107#define TOTAL_HW_TX_QUEUES 8
108
109/* Each HW queue can have one AMPDU stream.
110 * But, because one of the hw queue is reserved,
111 * maximum AMPDU queues that can be created are
112 * one short of total tx queues.
113 */
114#define MWL8K_NUM_AMPDU_STREAMS (TOTAL_HW_TX_QUEUES - 1)
115
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200116struct rxd_ops {
117 int rxd_size;
118 void (*rxd_init)(void *rxd, dma_addr_t next_dma_addr);
119 void (*rxd_refill)(void *rxd, dma_addr_t addr, int len);
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100120 int (*rxd_process)(void *rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -0400121 __le16 *qos, s8 *noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200122};
123
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200124struct mwl8k_device_info {
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200125 char *part_name;
126 char *helper_image;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800127 char *fw_image_sta;
128 char *fw_image_ap;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100129 struct rxd_ops *ap_rxd_ops;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -0800130 u32 fw_api_ap;
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200131};
132
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100133struct mwl8k_rx_queue {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200134 int rxd_count;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100135
136 /* hw receives here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200137 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100138
139 /* refill descs here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200140 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100141
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200142 void *rxd;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200143 dma_addr_t rxd_dma;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200144 struct {
145 struct sk_buff *skb;
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +0900146 DEFINE_DMA_UNMAP_ADDR(dma);
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200147 } *buf;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100148};
149
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100150struct mwl8k_tx_queue {
151 /* hw transmits here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200152 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100153
154 /* sw appends here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200155 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100156
Kalle Valo8ccbc3b2010-02-07 10:20:52 +0200157 unsigned int len;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200158 struct mwl8k_tx_desc *txd;
159 dma_addr_t txd_dma;
160 struct sk_buff **skb;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100161};
162
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700163enum {
164 AMPDU_NO_STREAM,
165 AMPDU_STREAM_NEW,
166 AMPDU_STREAM_IN_PROGRESS,
167 AMPDU_STREAM_ACTIVE,
168};
169
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700170struct mwl8k_ampdu_stream {
171 struct ieee80211_sta *sta;
172 u8 tid;
173 u8 state;
174 u8 idx;
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700175};
176
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100177struct mwl8k_priv {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100178 struct ieee80211_hw *hw;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100179 struct pci_dev *pdev;
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +0530180 int irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100181
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200182 struct mwl8k_device_info *device_info;
183
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100184 void __iomem *sram;
185 void __iomem *regs;
186
187 /* firmware */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800188 const struct firmware *fw_helper;
189 const struct firmware *fw_ucode;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100190
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100191 /* hardware/firmware parameters */
192 bool ap_fw;
193 struct rxd_ops *rxd_ops;
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100194 struct ieee80211_supported_band band_24;
195 struct ieee80211_channel channels_24[14];
196 struct ieee80211_rate rates_24[14];
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100197 struct ieee80211_supported_band band_50;
198 struct ieee80211_channel channels_50[4];
199 struct ieee80211_rate rates_50[9];
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100200 u32 ap_macids_supported;
201 u32 sta_macids_supported;
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100202
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700203 /* Ampdu stream information */
204 u8 num_ampdu_queues;
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700205 spinlock_t stream_lock;
206 struct mwl8k_ampdu_stream ampdu[MWL8K_MAX_AMPDU_QUEUES];
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700207 struct work_struct watchdog_ba_handle;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700208
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200209 /* firmware access */
210 struct mutex fw_mutex;
211 struct task_struct *fw_mutex_owner;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +0530212 struct task_struct *hw_restart_owner;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200213 int fw_mutex_depth;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200214 struct completion *hostcmd_wait;
215
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +0530216 atomic_t watchdog_event_pending;
217
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100218 /* lock held over TX and TX reap */
219 spinlock_t tx_lock;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100220
Lennert Buytenhek88de754a2009-10-22 20:19:37 +0200221 /* TX quiesce completion, protected by fw_mutex and tx_lock */
222 struct completion *tx_wait;
223
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100224 /* List of interfaces. */
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100225 u32 macids_used;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100226 struct list_head vif_list;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100227
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100228 /* power management status cookie from firmware */
229 u32 *cookie;
230 dma_addr_t cookie_dma;
231
232 u16 num_mcaddrs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100233 u8 hw_rev;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +0200234 u32 fw_rev;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100235
236 /*
237 * Running count of TX packets in flight, to avoid
238 * iterating over the transmit rings each time.
239 */
240 int pending_tx_pkts;
241
242 struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES];
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700243 struct mwl8k_tx_queue txq[MWL8K_MAX_TX_QUEUES];
244 u32 txq_offset[MWL8K_MAX_TX_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100245
Lennert Buytenhekc46563b2009-07-16 12:14:58 +0200246 bool radio_on;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +0200247 bool radio_short_preamble;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +0200248 bool sniffer_enabled;
Lennert Buytenhek0439b1f2009-07-16 12:34:02 +0200249 bool wmm_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100250
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100251 /* XXX need to convert this to handle multiple interfaces */
252 bool capture_beacon;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200253 u8 capture_bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100254 struct sk_buff *beacon_skb;
255
256 /*
257 * This FJ worker has to be global as it is scheduled from the
258 * RX handler. At this point we don't know which interface it
259 * belongs to until the list of bssids waiting to complete join
260 * is checked.
261 */
262 struct work_struct finalize_join_worker;
263
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +0100264 /* Tasklet to perform TX reclaim. */
265 struct tasklet_struct poll_tx_task;
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +0100266
267 /* Tasklet to perform RX. */
268 struct tasklet_struct poll_rx_task;
John W. Linville0d462bb2010-07-28 14:04:24 -0400269
270 /* Most recently reported noise in dBm */
271 s8 noise;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800272
273 /*
274 * preserve the queue configurations so they can be restored if/when
275 * the firmware image is swapped.
276 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700277 struct ieee80211_tx_queue_params wmm_params[MWL8K_TX_WMM_QUEUES];
Brian Cavagnolo99020472010-11-12 17:23:52 -0800278
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +0530279 /* To perform the task of reloading the firmware */
280 struct work_struct fw_reload;
281 bool hw_restart_in_progress;
282
Brian Cavagnolo99020472010-11-12 17:23:52 -0800283 /* async firmware loading state */
284 unsigned fw_state;
285 char *fw_pref;
286 char *fw_alt;
287 struct completion firmware_loading_complete;
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +0530288
289 /* bitmap of running BSSes */
290 u32 running_bsses;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100291};
292
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800293#define MAX_WEP_KEY_LEN 13
294#define NUM_WEP_KEYS 4
295
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100296/* Per interface specific private data */
297struct mwl8k_vif {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100298 struct list_head list;
299 struct ieee80211_vif *vif;
300
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100301 /* Firmware macid for this vif. */
302 int macid;
303
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +0100304 /* Non AMPDU sequence number assigned by driver. */
Lennert Buytenheka6804002010-01-04 21:55:42 +0100305 u16 seqno;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800306
307 /* Saved WEP keys */
308 struct {
309 u8 enabled;
310 u8 key[sizeof(struct ieee80211_key_conf) + MAX_WEP_KEY_LEN];
311 } wep_key_conf[NUM_WEP_KEYS];
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800312
313 /* BSSID */
314 u8 bssid[ETH_ALEN];
315
316 /* A flag to indicate is HW crypto is enabled for this bssid */
317 bool is_hw_crypto_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100318};
Lennert Buytenheka94cc972009-08-03 21:58:57 +0200319#define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv))
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800320#define IEEE80211_KEY_CONF(_u8) ((struct ieee80211_key_conf *)(_u8))
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100321
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700322struct tx_traffic_info {
323 u32 start_time;
324 u32 pkts;
325};
326
327#define MWL8K_MAX_TID 8
Lennert Buytenheka6804002010-01-04 21:55:42 +0100328struct mwl8k_sta {
329 /* Index into station database. Returned by UPDATE_STADB. */
330 u8 peer_id;
Nishant Sarmukadam170335432011-03-17 11:58:48 -0700331 u8 is_ampdu_allowed;
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700332 struct tx_traffic_info tx_stats[MWL8K_MAX_TID];
Lennert Buytenheka6804002010-01-04 21:55:42 +0100333};
334#define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv))
335
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100336static const struct ieee80211_channel mwl8k_channels_24[] = {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100337 { .center_freq = 2412, .hw_value = 1, },
338 { .center_freq = 2417, .hw_value = 2, },
339 { .center_freq = 2422, .hw_value = 3, },
340 { .center_freq = 2427, .hw_value = 4, },
341 { .center_freq = 2432, .hw_value = 5, },
342 { .center_freq = 2437, .hw_value = 6, },
343 { .center_freq = 2442, .hw_value = 7, },
344 { .center_freq = 2447, .hw_value = 8, },
345 { .center_freq = 2452, .hw_value = 9, },
346 { .center_freq = 2457, .hw_value = 10, },
347 { .center_freq = 2462, .hw_value = 11, },
Lennert Buytenhek647ca6b2009-11-30 18:32:20 +0100348 { .center_freq = 2467, .hw_value = 12, },
349 { .center_freq = 2472, .hw_value = 13, },
350 { .center_freq = 2484, .hw_value = 14, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100351};
352
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100353static const struct ieee80211_rate mwl8k_rates_24[] = {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100354 { .bitrate = 10, .hw_value = 2, },
355 { .bitrate = 20, .hw_value = 4, },
356 { .bitrate = 55, .hw_value = 11, },
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200357 { .bitrate = 110, .hw_value = 22, },
358 { .bitrate = 220, .hw_value = 44, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100359 { .bitrate = 60, .hw_value = 12, },
360 { .bitrate = 90, .hw_value = 18, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100361 { .bitrate = 120, .hw_value = 24, },
362 { .bitrate = 180, .hw_value = 36, },
363 { .bitrate = 240, .hw_value = 48, },
364 { .bitrate = 360, .hw_value = 72, },
365 { .bitrate = 480, .hw_value = 96, },
366 { .bitrate = 540, .hw_value = 108, },
Lennert Buytenhek140eb5e2009-11-30 18:11:44 +0100367 { .bitrate = 720, .hw_value = 144, },
368};
369
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100370static const struct ieee80211_channel mwl8k_channels_50[] = {
371 { .center_freq = 5180, .hw_value = 36, },
372 { .center_freq = 5200, .hw_value = 40, },
373 { .center_freq = 5220, .hw_value = 44, },
374 { .center_freq = 5240, .hw_value = 48, },
375};
376
377static const struct ieee80211_rate mwl8k_rates_50[] = {
378 { .bitrate = 60, .hw_value = 12, },
379 { .bitrate = 90, .hw_value = 18, },
380 { .bitrate = 120, .hw_value = 24, },
381 { .bitrate = 180, .hw_value = 36, },
382 { .bitrate = 240, .hw_value = 48, },
383 { .bitrate = 360, .hw_value = 72, },
384 { .bitrate = 480, .hw_value = 96, },
385 { .bitrate = 540, .hw_value = 108, },
386 { .bitrate = 720, .hw_value = 144, },
387};
388
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100389/* Set or get info from Firmware */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100390#define MWL8K_CMD_GET 0x0000
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800391#define MWL8K_CMD_SET 0x0001
392#define MWL8K_CMD_SET_LIST 0x0002
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100393
394/* Firmware command codes */
395#define MWL8K_CMD_CODE_DNLD 0x0001
396#define MWL8K_CMD_GET_HW_SPEC 0x0003
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200397#define MWL8K_CMD_SET_HW_SPEC 0x0004
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100398#define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010
399#define MWL8K_CMD_GET_STAT 0x0014
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200400#define MWL8K_CMD_RADIO_CONTROL 0x001c
401#define MWL8K_CMD_RF_TX_POWER 0x001e
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800402#define MWL8K_CMD_TX_POWER 0x001f
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200403#define MWL8K_CMD_RF_ANTENNA 0x0020
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100404#define MWL8K_CMD_SET_BEACON 0x0100 /* per-vif */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100405#define MWL8K_CMD_SET_PRE_SCAN 0x0107
406#define MWL8K_CMD_SET_POST_SCAN 0x0108
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200407#define MWL8K_CMD_SET_RF_CHANNEL 0x010a
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100408#define MWL8K_CMD_SET_AID 0x010d
409#define MWL8K_CMD_SET_RATE 0x0110
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200410#define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100411#define MWL8K_CMD_RTS_THRESHOLD 0x0113
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200412#define MWL8K_CMD_SET_SLOT 0x0114
413#define MWL8K_CMD_SET_EDCA_PARAMS 0x0115
414#define MWL8K_CMD_SET_WMM_MODE 0x0123
415#define MWL8K_CMD_MIMO_CONFIG 0x0125
416#define MWL8K_CMD_USE_FIXED_RATE 0x0126
417#define MWL8K_CMD_ENABLE_SNIFFER 0x0150
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100418#define MWL8K_CMD_SET_MAC_ADDR 0x0202 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200419#define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700420#define MWL8K_CMD_GET_WATCHDOG_BITMAP 0x0205
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +0530421#define MWL8K_CMD_DEL_MAC_ADDR 0x0206 /* per-vif */
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100422#define MWL8K_CMD_BSS_START 0x1100 /* per-vif */
423#define MWL8K_CMD_SET_NEW_STN 0x1111 /* per-vif */
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800424#define MWL8K_CMD_UPDATE_ENCRYPTION 0x1122 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200425#define MWL8K_CMD_UPDATE_STADB 0x1123
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700426#define MWL8K_CMD_BASTREAM 0x1125
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100427
John W. Linvilleb6037422010-07-20 13:55:00 -0400428static const char *mwl8k_cmd_name(__le16 cmd, char *buf, int bufsize)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100429{
John W. Linvilleb6037422010-07-20 13:55:00 -0400430 u16 command = le16_to_cpu(cmd);
431
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100432#define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\
433 snprintf(buf, bufsize, "%s", #x);\
434 return buf;\
435 } while (0)
John W. Linvilleb6037422010-07-20 13:55:00 -0400436 switch (command & ~0x8000) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100437 MWL8K_CMDNAME(CODE_DNLD);
438 MWL8K_CMDNAME(GET_HW_SPEC);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200439 MWL8K_CMDNAME(SET_HW_SPEC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100440 MWL8K_CMDNAME(MAC_MULTICAST_ADR);
441 MWL8K_CMDNAME(GET_STAT);
442 MWL8K_CMDNAME(RADIO_CONTROL);
443 MWL8K_CMDNAME(RF_TX_POWER);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800444 MWL8K_CMDNAME(TX_POWER);
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200445 MWL8K_CMDNAME(RF_ANTENNA);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100446 MWL8K_CMDNAME(SET_BEACON);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100447 MWL8K_CMDNAME(SET_PRE_SCAN);
448 MWL8K_CMDNAME(SET_POST_SCAN);
449 MWL8K_CMDNAME(SET_RF_CHANNEL);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100450 MWL8K_CMDNAME(SET_AID);
451 MWL8K_CMDNAME(SET_RATE);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200452 MWL8K_CMDNAME(SET_FINALIZE_JOIN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100453 MWL8K_CMDNAME(RTS_THRESHOLD);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200454 MWL8K_CMDNAME(SET_SLOT);
455 MWL8K_CMDNAME(SET_EDCA_PARAMS);
456 MWL8K_CMDNAME(SET_WMM_MODE);
457 MWL8K_CMDNAME(MIMO_CONFIG);
458 MWL8K_CMDNAME(USE_FIXED_RATE);
459 MWL8K_CMDNAME(ENABLE_SNIFFER);
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200460 MWL8K_CMDNAME(SET_MAC_ADDR);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200461 MWL8K_CMDNAME(SET_RATEADAPT_MODE);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100462 MWL8K_CMDNAME(BSS_START);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +0100463 MWL8K_CMDNAME(SET_NEW_STN);
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800464 MWL8K_CMDNAME(UPDATE_ENCRYPTION);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200465 MWL8K_CMDNAME(UPDATE_STADB);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700466 MWL8K_CMDNAME(BASTREAM);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700467 MWL8K_CMDNAME(GET_WATCHDOG_BITMAP);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100468 default:
469 snprintf(buf, bufsize, "0x%x", cmd);
470 }
471#undef MWL8K_CMDNAME
472
473 return buf;
474}
475
476/* Hardware and firmware reset */
477static void mwl8k_hw_reset(struct mwl8k_priv *priv)
478{
479 iowrite32(MWL8K_H2A_INT_RESET,
480 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
481 iowrite32(MWL8K_H2A_INT_RESET,
482 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
483 msleep(20);
484}
485
486/* Release fw image */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800487static void mwl8k_release_fw(const struct firmware **fw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100488{
489 if (*fw == NULL)
490 return;
491 release_firmware(*fw);
492 *fw = NULL;
493}
494
495static void mwl8k_release_firmware(struct mwl8k_priv *priv)
496{
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100497 mwl8k_release_fw(&priv->fw_ucode);
498 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100499}
500
Brian Cavagnolo99020472010-11-12 17:23:52 -0800501/* states for asynchronous f/w loading */
502static void mwl8k_fw_state_machine(const struct firmware *fw, void *context);
503enum {
504 FW_STATE_INIT = 0,
505 FW_STATE_LOADING_PREF,
506 FW_STATE_LOADING_ALT,
507 FW_STATE_ERROR,
508};
509
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100510/* Request fw image */
511static int mwl8k_request_fw(struct mwl8k_priv *priv,
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800512 const char *fname, const struct firmware **fw,
Brian Cavagnolo99020472010-11-12 17:23:52 -0800513 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100514{
515 /* release current image */
516 if (*fw != NULL)
517 mwl8k_release_fw(fw);
518
Brian Cavagnolo99020472010-11-12 17:23:52 -0800519 if (nowait)
520 return request_firmware_nowait(THIS_MODULE, 1, fname,
521 &priv->pdev->dev, GFP_KERNEL,
522 priv, mwl8k_fw_state_machine);
523 else
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800524 return request_firmware(fw, fname, &priv->pdev->dev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100525}
526
Brian Cavagnolo99020472010-11-12 17:23:52 -0800527static int mwl8k_request_firmware(struct mwl8k_priv *priv, char *fw_image,
528 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100529{
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200530 struct mwl8k_device_info *di = priv->device_info;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100531 int rc;
532
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200533 if (di->helper_image != NULL) {
Brian Cavagnolo99020472010-11-12 17:23:52 -0800534 if (nowait)
535 rc = mwl8k_request_fw(priv, di->helper_image,
536 &priv->fw_helper, true);
537 else
538 rc = mwl8k_request_fw(priv, di->helper_image,
539 &priv->fw_helper, false);
540 if (rc)
541 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
542 pci_name(priv->pdev), di->helper_image);
543
544 if (rc || nowait)
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200545 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100546 }
547
Brian Cavagnolo99020472010-11-12 17:23:52 -0800548 if (nowait) {
549 /*
550 * if we get here, no helper image is needed. Skip the
551 * FW_STATE_INIT state.
552 */
553 priv->fw_state = FW_STATE_LOADING_PREF;
554 rc = mwl8k_request_fw(priv, fw_image,
555 &priv->fw_ucode,
556 true);
557 } else
558 rc = mwl8k_request_fw(priv, fw_image,
559 &priv->fw_ucode, false);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100560 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200561 printk(KERN_ERR "%s: Error requesting firmware file %s\n",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800562 pci_name(priv->pdev), fw_image);
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100563 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100564 return rc;
565 }
566
567 return 0;
568}
569
570struct mwl8k_cmd_pkt {
571 __le16 code;
572 __le16 length;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100573 __u8 seq_num;
574 __u8 macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100575 __le16 result;
576 char payload[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000577} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100578
579/*
580 * Firmware loading.
581 */
582static int
583mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length)
584{
585 void __iomem *regs = priv->regs;
586 dma_addr_t dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100587 int loops;
588
589 dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE);
590 if (pci_dma_mapping_error(priv->pdev, dma_addr))
591 return -ENOMEM;
592
593 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
594 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
595 iowrite32(MWL8K_H2A_INT_DOORBELL,
596 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
597 iowrite32(MWL8K_H2A_INT_DUMMY,
598 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
599
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100600 loops = 1000;
601 do {
602 u32 int_code;
603
604 int_code = ioread32(regs + MWL8K_HIU_INT_CODE);
605 if (int_code == MWL8K_INT_CODE_CMD_FINISHED) {
606 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100607 break;
608 }
609
Lennert Buytenhek3d76e822009-10-22 20:20:16 +0200610 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100611 udelay(1);
612 } while (--loops);
613
614 pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE);
615
Lennert Buytenhekd4b70572009-07-16 12:44:45 +0200616 return loops ? 0 : -ETIMEDOUT;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100617}
618
619static int mwl8k_load_fw_image(struct mwl8k_priv *priv,
620 const u8 *data, size_t length)
621{
622 struct mwl8k_cmd_pkt *cmd;
623 int done;
624 int rc = 0;
625
626 cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL);
627 if (cmd == NULL)
628 return -ENOMEM;
629
630 cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD);
631 cmd->seq_num = 0;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100632 cmd->macid = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100633 cmd->result = 0;
634
635 done = 0;
636 while (length) {
637 int block_size = length > 256 ? 256 : length;
638
639 memcpy(cmd->payload, data + done, block_size);
640 cmd->length = cpu_to_le16(block_size);
641
642 rc = mwl8k_send_fw_load_cmd(priv, cmd,
643 sizeof(*cmd) + block_size);
644 if (rc)
645 break;
646
647 done += block_size;
648 length -= block_size;
649 }
650
651 if (!rc) {
652 cmd->length = 0;
653 rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd));
654 }
655
656 kfree(cmd);
657
658 return rc;
659}
660
661static int mwl8k_feed_fw_image(struct mwl8k_priv *priv,
662 const u8 *data, size_t length)
663{
664 unsigned char *buffer;
665 int may_continue, rc = 0;
666 u32 done, prev_block_size;
667
668 buffer = kmalloc(1024, GFP_KERNEL);
669 if (buffer == NULL)
670 return -ENOMEM;
671
672 done = 0;
673 prev_block_size = 0;
674 may_continue = 1000;
675 while (may_continue > 0) {
676 u32 block_size;
677
678 block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH);
679 if (block_size & 1) {
680 block_size &= ~1;
681 may_continue--;
682 } else {
683 done += prev_block_size;
684 length -= prev_block_size;
685 }
686
687 if (block_size > 1024 || block_size > length) {
688 rc = -EOVERFLOW;
689 break;
690 }
691
692 if (length == 0) {
693 rc = 0;
694 break;
695 }
696
697 if (block_size == 0) {
698 rc = -EPROTO;
699 may_continue--;
700 udelay(1);
701 continue;
702 }
703
704 prev_block_size = block_size;
705 memcpy(buffer, data + done, block_size);
706
707 rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size);
708 if (rc)
709 break;
710 }
711
712 if (!rc && length != 0)
713 rc = -EREMOTEIO;
714
715 kfree(buffer);
716
717 return rc;
718}
719
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200720static int mwl8k_load_firmware(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100721{
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200722 struct mwl8k_priv *priv = hw->priv;
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800723 const struct firmware *fw = priv->fw_ucode;
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200724 int rc;
725 int loops;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100726
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200727 if (!memcmp(fw->data, "\x01\x00\x00\x00", 4)) {
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800728 const struct firmware *helper = priv->fw_helper;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100729
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200730 if (helper == NULL) {
731 printk(KERN_ERR "%s: helper image needed but none "
732 "given\n", pci_name(priv->pdev));
733 return -EINVAL;
734 }
735
736 rc = mwl8k_load_fw_image(priv, helper->data, helper->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100737 if (rc) {
738 printk(KERN_ERR "%s: unable to load firmware "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200739 "helper image\n", pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100740 return rc;
741 }
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +0530742 msleep(20);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100743
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200744 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100745 } else {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200746 rc = mwl8k_load_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100747 }
748
749 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200750 printk(KERN_ERR "%s: unable to load firmware image\n",
751 pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100752 return rc;
753 }
754
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100755 iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100756
Lennert Buytenhek89b872e2009-11-30 18:13:20 +0100757 loops = 500000;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100758 do {
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200759 u32 ready_code;
760
761 ready_code = ioread32(priv->regs + MWL8K_HIU_INT_CODE);
762 if (ready_code == MWL8K_FWAP_READY) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000763 priv->ap_fw = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100764 break;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200765 } else if (ready_code == MWL8K_FWSTA_READY) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000766 priv->ap_fw = false;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200767 break;
768 }
769
770 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100771 udelay(1);
772 } while (--loops);
773
774 return loops ? 0 : -ETIMEDOUT;
775}
776
777
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100778/* DMA header used by firmware and hardware. */
779struct mwl8k_dma_data {
780 __le16 fwlen;
781 struct ieee80211_hdr wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100782 char data[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000783} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100784
785/* Routines to add/remove DMA header from skb. */
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100786static inline void mwl8k_remove_dma_header(struct sk_buff *skb, __le16 qos)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100787{
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100788 struct mwl8k_dma_data *tr;
789 int hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100790
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100791 tr = (struct mwl8k_dma_data *)skb->data;
792 hdrlen = ieee80211_hdrlen(tr->wh.frame_control);
793
794 if (hdrlen != sizeof(tr->wh)) {
795 if (ieee80211_is_data_qos(tr->wh.frame_control)) {
796 memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2);
797 *((__le16 *)(tr->data - 2)) = qos;
798 } else {
799 memmove(tr->data - hdrlen, &tr->wh, hdrlen);
800 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100801 }
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100802
803 if (hdrlen != sizeof(*tr))
804 skb_pull(skb, sizeof(*tr) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100805}
806
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530807#define REDUCED_TX_HEADROOM 8
808
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800809static void
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530810mwl8k_add_dma_header(struct mwl8k_priv *priv, struct sk_buff *skb,
811 int head_pad, int tail_pad)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100812{
813 struct ieee80211_hdr *wh;
Lennert Buytenhekca009302009-11-30 18:12:20 +0100814 int hdrlen;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800815 int reqd_hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100816 struct mwl8k_dma_data *tr;
817
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100818 /*
Lennert Buytenhekca009302009-11-30 18:12:20 +0100819 * Add a firmware DMA header; the firmware requires that we
820 * present a 2-byte payload length followed by a 4-address
821 * header (without QoS field), followed (optionally) by any
822 * WEP/ExtIV header (but only filled in for CCMP).
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100823 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100824 wh = (struct ieee80211_hdr *)skb->data;
825
826 hdrlen = ieee80211_hdrlen(wh->frame_control);
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530827
828 /*
829 * Check if skb_resize is required because of
830 * tx_headroom adjustment.
831 */
832 if (priv->ap_fw && (hdrlen < (sizeof(struct ieee80211_cts)
833 + REDUCED_TX_HEADROOM))) {
834 if (pskb_expand_head(skb, REDUCED_TX_HEADROOM, 0, GFP_ATOMIC)) {
835
836 wiphy_err(priv->hw->wiphy,
837 "Failed to reallocate TX buffer\n");
838 return;
839 }
840 skb->truesize += REDUCED_TX_HEADROOM;
841 }
842
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530843 reqd_hdrlen = sizeof(*tr) + head_pad;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800844
845 if (hdrlen != reqd_hdrlen)
846 skb_push(skb, reqd_hdrlen - hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100847
848 if (ieee80211_is_data_qos(wh->frame_control))
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800849 hdrlen -= IEEE80211_QOS_CTL_LEN;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100850
851 tr = (struct mwl8k_dma_data *)skb->data;
852 if (wh != &tr->wh)
853 memmove(&tr->wh, wh, hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100854 if (hdrlen != sizeof(tr->wh))
855 memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100856
857 /*
858 * Firmware length is the length of the fully formed "802.11
859 * payload". That is, everything except for the 802.11 header.
860 * This includes all crypto material including the MIC.
861 */
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800862 tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr) + tail_pad);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100863}
864
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530865static void mwl8k_encapsulate_tx_frame(struct mwl8k_priv *priv,
866 struct sk_buff *skb)
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800867{
868 struct ieee80211_hdr *wh;
869 struct ieee80211_tx_info *tx_info;
870 struct ieee80211_key_conf *key_conf;
871 int data_pad;
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530872 int head_pad = 0;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800873
874 wh = (struct ieee80211_hdr *)skb->data;
875
876 tx_info = IEEE80211_SKB_CB(skb);
877
878 key_conf = NULL;
879 if (ieee80211_is_data(wh->frame_control))
880 key_conf = tx_info->control.hw_key;
881
882 /*
883 * Make sure the packet header is in the DMA header format (4-address
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530884 * without QoS), and add head & tail padding when HW crypto is enabled.
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800885 *
886 * We have the following trailer padding requirements:
887 * - WEP: 4 trailer bytes (ICV)
888 * - TKIP: 12 trailer bytes (8 MIC + 4 ICV)
889 * - CCMP: 8 trailer bytes (MIC)
890 */
891 data_pad = 0;
892 if (key_conf != NULL) {
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530893 head_pad = key_conf->iv_len;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800894 switch (key_conf->cipher) {
895 case WLAN_CIPHER_SUITE_WEP40:
896 case WLAN_CIPHER_SUITE_WEP104:
897 data_pad = 4;
898 break;
899 case WLAN_CIPHER_SUITE_TKIP:
900 data_pad = 12;
901 break;
902 case WLAN_CIPHER_SUITE_CCMP:
903 data_pad = 8;
904 break;
905 }
906 }
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530907 mwl8k_add_dma_header(priv, skb, head_pad, data_pad);
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800908}
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100909
910/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100911 * Packet reception for 88w8366 AP firmware.
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200912 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100913struct mwl8k_rxd_8366_ap {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200914 __le16 pkt_len;
915 __u8 sq2;
916 __u8 rate;
917 __le32 pkt_phys_addr;
918 __le32 next_rxd_phys_addr;
919 __le16 qos_control;
920 __le16 htsig2;
921 __le32 hw_rssi_info;
922 __le32 hw_noise_floor_info;
923 __u8 noise_floor;
924 __u8 pad0[3];
925 __u8 rssi;
926 __u8 rx_status;
927 __u8 channel;
928 __u8 rx_ctrl;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000929} __packed;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200930
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100931#define MWL8K_8366_AP_RATE_INFO_MCS_FORMAT 0x80
932#define MWL8K_8366_AP_RATE_INFO_40MHZ 0x40
933#define MWL8K_8366_AP_RATE_INFO_RATEID(x) ((x) & 0x3f)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100934
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100935#define MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST 0x80
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200936
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800937/* 8366 AP rx_status bits */
938#define MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK 0x80
939#define MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR 0xFF
940#define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR 0x02
941#define MWL8K_8366_AP_RXSTAT_WEP_DECRYPT_ICV_ERR 0x04
942#define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_ICV_ERR 0x08
943
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100944static void mwl8k_rxd_8366_ap_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200945{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100946 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200947
948 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100949 rxd->rx_ctrl = MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200950}
951
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100952static void mwl8k_rxd_8366_ap_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200953{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100954 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200955
956 rxd->pkt_len = cpu_to_le16(len);
957 rxd->pkt_phys_addr = cpu_to_le32(addr);
958 wmb();
959 rxd->rx_ctrl = 0;
960}
961
962static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100963mwl8k_rxd_8366_ap_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -0400964 __le16 *qos, s8 *noise)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200965{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100966 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200967
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100968 if (!(rxd->rx_ctrl & MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200969 return -1;
970 rmb();
971
972 memset(status, 0, sizeof(*status));
973
974 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -0400975 *noise = -rxd->noise_floor;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200976
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100977 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_MCS_FORMAT) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200978 status->flag |= RX_FLAG_HT;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100979 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_40MHZ)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100980 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100981 status->rate_idx = MWL8K_8366_AP_RATE_INFO_RATEID(rxd->rate);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200982 } else {
983 int i;
984
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100985 for (i = 0; i < ARRAY_SIZE(mwl8k_rates_24); i++) {
986 if (mwl8k_rates_24[i].hw_value == rxd->rate) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200987 status->rate_idx = i;
988 break;
989 }
990 }
991 }
992
Lennert Buytenhek85478342010-01-12 13:48:56 +0100993 if (rxd->channel > 14) {
994 status->band = IEEE80211_BAND_5GHZ;
995 if (!(status->flag & RX_FLAG_HT))
996 status->rate_idx -= 5;
997 } else {
998 status->band = IEEE80211_BAND_2GHZ;
999 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001000 status->freq = ieee80211_channel_to_frequency(rxd->channel,
1001 status->band);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001002
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001003 *qos = rxd->qos_control;
1004
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001005 if ((rxd->rx_status != MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR) &&
1006 (rxd->rx_status & MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK) &&
1007 (rxd->rx_status & MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR))
1008 status->flag |= RX_FLAG_MMIC_ERROR;
1009
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001010 return le16_to_cpu(rxd->pkt_len);
1011}
1012
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001013static struct rxd_ops rxd_8366_ap_ops = {
1014 .rxd_size = sizeof(struct mwl8k_rxd_8366_ap),
1015 .rxd_init = mwl8k_rxd_8366_ap_init,
1016 .rxd_refill = mwl8k_rxd_8366_ap_refill,
1017 .rxd_process = mwl8k_rxd_8366_ap_process,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001018};
1019
1020/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001021 * Packet reception for STA firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001022 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001023struct mwl8k_rxd_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001024 __le16 pkt_len;
1025 __u8 link_quality;
1026 __u8 noise_level;
1027 __le32 pkt_phys_addr;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001028 __le32 next_rxd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001029 __le16 qos_control;
1030 __le16 rate_info;
1031 __le32 pad0[4];
1032 __u8 rssi;
1033 __u8 channel;
1034 __le16 pad1;
1035 __u8 rx_ctrl;
1036 __u8 rx_status;
1037 __u8 pad2[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +00001038} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001039
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001040#define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000
1041#define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3)
1042#define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f)
1043#define MWL8K_STA_RATE_INFO_40MHZ 0x0004
1044#define MWL8K_STA_RATE_INFO_SHORTGI 0x0002
1045#define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001046
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001047#define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001048#define MWL8K_STA_RX_CTRL_DECRYPT_ERROR 0x04
1049/* ICV=0 or MIC=1 */
1050#define MWL8K_STA_RX_CTRL_DEC_ERR_TYPE 0x08
1051/* Key is uploaded only in failure case */
1052#define MWL8K_STA_RX_CTRL_KEY_INDEX 0x30
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001053
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001054static void mwl8k_rxd_sta_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001055{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001056 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001057
1058 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001059 rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001060}
1061
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001062static void mwl8k_rxd_sta_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001063{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001064 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001065
1066 rxd->pkt_len = cpu_to_le16(len);
1067 rxd->pkt_phys_addr = cpu_to_le32(addr);
1068 wmb();
1069 rxd->rx_ctrl = 0;
1070}
1071
1072static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001073mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -04001074 __le16 *qos, s8 *noise)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001075{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001076 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001077 u16 rate_info;
1078
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001079 if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001080 return -1;
1081 rmb();
1082
1083 rate_info = le16_to_cpu(rxd->rate_info);
1084
1085 memset(status, 0, sizeof(*status));
1086
1087 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -04001088 *noise = -rxd->noise_level;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001089 status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info);
1090 status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001091
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001092 if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001093 status->flag |= RX_FLAG_SHORTPRE;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001094 if (rate_info & MWL8K_STA_RATE_INFO_40MHZ)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001095 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001096 if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001097 status->flag |= RX_FLAG_SHORT_GI;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001098 if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001099 status->flag |= RX_FLAG_HT;
1100
Lennert Buytenhek85478342010-01-12 13:48:56 +01001101 if (rxd->channel > 14) {
1102 status->band = IEEE80211_BAND_5GHZ;
1103 if (!(status->flag & RX_FLAG_HT))
1104 status->rate_idx -= 5;
1105 } else {
1106 status->band = IEEE80211_BAND_2GHZ;
1107 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001108 status->freq = ieee80211_channel_to_frequency(rxd->channel,
1109 status->band);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001110
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001111 *qos = rxd->qos_control;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001112 if ((rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DECRYPT_ERROR) &&
1113 (rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DEC_ERR_TYPE))
1114 status->flag |= RX_FLAG_MMIC_ERROR;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001115
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001116 return le16_to_cpu(rxd->pkt_len);
1117}
1118
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001119static struct rxd_ops rxd_sta_ops = {
1120 .rxd_size = sizeof(struct mwl8k_rxd_sta),
1121 .rxd_init = mwl8k_rxd_sta_init,
1122 .rxd_refill = mwl8k_rxd_sta_refill,
1123 .rxd_process = mwl8k_rxd_sta_process,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001124};
1125
1126
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001127#define MWL8K_RX_DESCS 256
1128#define MWL8K_RX_MAXSZ 3800
1129
1130static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
1131{
1132 struct mwl8k_priv *priv = hw->priv;
1133 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1134 int size;
1135 int i;
1136
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001137 rxq->rxd_count = 0;
1138 rxq->head = 0;
1139 rxq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001140
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001141 size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001142
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001143 rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma);
1144 if (rxq->rxd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001145 wiphy_err(hw->wiphy, "failed to alloc RX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001146 return -ENOMEM;
1147 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001148 memset(rxq->rxd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001149
Shan Weib9ede5f2011-03-08 11:02:03 +08001150 rxq->buf = kcalloc(MWL8K_RX_DESCS, sizeof(*rxq->buf), GFP_KERNEL);
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001151 if (rxq->buf == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001152 wiphy_err(hw->wiphy, "failed to alloc RX skbuff list\n");
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001153 pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001154 return -ENOMEM;
1155 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001156
1157 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001158 int desc_size;
1159 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001160 int nexti;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001161 dma_addr_t next_dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001162
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001163 desc_size = priv->rxd_ops->rxd_size;
1164 rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001165
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001166 nexti = i + 1;
1167 if (nexti == MWL8K_RX_DESCS)
1168 nexti = 0;
1169 next_dma_addr = rxq->rxd_dma + (nexti * desc_size);
1170
1171 priv->rxd_ops->rxd_init(rxd, next_dma_addr);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001172 }
1173
1174 return 0;
1175}
1176
1177static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
1178{
1179 struct mwl8k_priv *priv = hw->priv;
1180 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1181 int refilled;
1182
1183 refilled = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001184 while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001185 struct sk_buff *skb;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001186 dma_addr_t addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001187 int rx;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001188 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001189
1190 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
1191 if (skb == NULL)
1192 break;
1193
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001194 addr = pci_map_single(priv->pdev, skb->data,
1195 MWL8K_RX_MAXSZ, DMA_FROM_DEVICE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001196
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001197 rxq->rxd_count++;
1198 rx = rxq->tail++;
1199 if (rxq->tail == MWL8K_RX_DESCS)
1200 rxq->tail = 0;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001201 rxq->buf[rx].skb = skb;
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001202 dma_unmap_addr_set(&rxq->buf[rx], dma, addr);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001203
1204 rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size);
1205 priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001206
1207 refilled++;
1208 }
1209
1210 return refilled;
1211}
1212
1213/* Must be called only when the card's reception is completely halted */
1214static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
1215{
1216 struct mwl8k_priv *priv = hw->priv;
1217 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1218 int i;
1219
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001220 if (rxq->rxd == NULL)
1221 return;
1222
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001223 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001224 if (rxq->buf[i].skb != NULL) {
1225 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001226 dma_unmap_addr(&rxq->buf[i], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001227 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001228 dma_unmap_addr_set(&rxq->buf[i], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001229
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001230 kfree_skb(rxq->buf[i].skb);
1231 rxq->buf[i].skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001232 }
1233 }
1234
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001235 kfree(rxq->buf);
1236 rxq->buf = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001237
1238 pci_free_consistent(priv->pdev,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001239 MWL8K_RX_DESCS * priv->rxd_ops->rxd_size,
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001240 rxq->rxd, rxq->rxd_dma);
1241 rxq->rxd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001242}
1243
1244
1245/*
1246 * Scan a list of BSSIDs to process for finalize join.
1247 * Allows for extension to process multiple BSSIDs.
1248 */
1249static inline int
1250mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
1251{
1252 return priv->capture_beacon &&
1253 ieee80211_is_beacon(wh->frame_control) &&
Joe Perches2e42e472012-05-09 17:17:46 +00001254 ether_addr_equal(wh->addr3, priv->capture_bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001255}
1256
Lennert Buytenhek37797522009-10-22 20:19:45 +02001257static inline void mwl8k_save_beacon(struct ieee80211_hw *hw,
1258 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001259{
Lennert Buytenhek37797522009-10-22 20:19:45 +02001260 struct mwl8k_priv *priv = hw->priv;
1261
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001262 priv->capture_beacon = false;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001263 memset(priv->capture_bssid, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001264
1265 /*
1266 * Use GFP_ATOMIC as rxq_process is called from
1267 * the primary interrupt handler, memory allocation call
1268 * must not sleep.
1269 */
1270 priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
1271 if (priv->beacon_skb != NULL)
Lennert Buytenhek37797522009-10-22 20:19:45 +02001272 ieee80211_queue_work(hw, &priv->finalize_join_worker);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001273}
1274
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001275static inline struct mwl8k_vif *mwl8k_find_vif_bss(struct list_head *vif_list,
1276 u8 *bssid)
1277{
1278 struct mwl8k_vif *mwl8k_vif;
1279
1280 list_for_each_entry(mwl8k_vif,
1281 vif_list, list) {
1282 if (memcmp(bssid, mwl8k_vif->bssid,
1283 ETH_ALEN) == 0)
1284 return mwl8k_vif;
1285 }
1286
1287 return NULL;
1288}
1289
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001290static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
1291{
1292 struct mwl8k_priv *priv = hw->priv;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001293 struct mwl8k_vif *mwl8k_vif = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001294 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1295 int processed;
1296
1297 processed = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001298 while (rxq->rxd_count && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001299 struct sk_buff *skb;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001300 void *rxd;
1301 int pkt_len;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001302 struct ieee80211_rx_status status;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001303 struct ieee80211_hdr *wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001304 __le16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001305
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001306 skb = rxq->buf[rxq->head].skb;
Lennert Buytenhekd25f9f12009-08-03 21:58:26 +02001307 if (skb == NULL)
1308 break;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001309
1310 rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size);
1311
John W. Linville0d462bb2010-07-28 14:04:24 -04001312 pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos,
1313 &priv->noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001314 if (pkt_len < 0)
1315 break;
1316
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001317 rxq->buf[rxq->head].skb = NULL;
1318
1319 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001320 dma_unmap_addr(&rxq->buf[rxq->head], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001321 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001322 dma_unmap_addr_set(&rxq->buf[rxq->head], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001323
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001324 rxq->head++;
1325 if (rxq->head == MWL8K_RX_DESCS)
1326 rxq->head = 0;
1327
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001328 rxq->rxd_count--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001329
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001330 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001331
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001332 /*
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001333 * Check for a pending join operation. Save a
1334 * copy of the beacon and schedule a tasklet to
1335 * send a FINALIZE_JOIN command to the firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001336 */
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001337 if (mwl8k_capture_bssid(priv, (void *)skb->data))
Lennert Buytenhek37797522009-10-22 20:19:45 +02001338 mwl8k_save_beacon(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001339
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001340 if (ieee80211_has_protected(wh->frame_control)) {
1341
1342 /* Check if hw crypto has been enabled for
1343 * this bss. If yes, set the status flags
1344 * accordingly
1345 */
1346 mwl8k_vif = mwl8k_find_vif_bss(&priv->vif_list,
1347 wh->addr1);
1348
1349 if (mwl8k_vif != NULL &&
Joe Perches23677ce2012-02-09 11:17:23 +00001350 mwl8k_vif->is_hw_crypto_enabled) {
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001351 /*
1352 * When MMIC ERROR is encountered
1353 * by the firmware, payload is
1354 * dropped and only 32 bytes of
1355 * mwl8k Firmware header is sent
1356 * to the host.
1357 *
1358 * We need to add four bytes of
1359 * key information. In it
1360 * MAC80211 expects keyidx set to
1361 * 0 for triggering Counter
1362 * Measure of MMIC failure.
1363 */
1364 if (status.flag & RX_FLAG_MMIC_ERROR) {
1365 struct mwl8k_dma_data *tr;
1366 tr = (struct mwl8k_dma_data *)skb->data;
1367 memset((void *)&(tr->data), 0, 4);
1368 pkt_len += 4;
1369 }
1370
1371 if (!ieee80211_is_auth(wh->frame_control))
1372 status.flag |= RX_FLAG_IV_STRIPPED |
1373 RX_FLAG_DECRYPTED |
1374 RX_FLAG_MMIC_STRIPPED;
1375 }
1376 }
1377
1378 skb_put(skb, pkt_len);
1379 mwl8k_remove_dma_header(skb, qos);
Johannes Bergf1d58c22009-06-17 13:13:00 +02001380 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
1381 ieee80211_rx_irqsafe(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001382
1383 processed++;
1384 }
1385
1386 return processed;
1387}
1388
1389
1390/*
1391 * Packet transmission.
1392 */
1393
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001394#define MWL8K_TXD_STATUS_OK 0x00000001
1395#define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
1396#define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
1397#define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001398#define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001399
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001400#define MWL8K_QOS_QLEN_UNSPEC 0xff00
1401#define MWL8K_QOS_ACK_POLICY_MASK 0x0060
1402#define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000
1403#define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060
1404#define MWL8K_QOS_EOSP 0x0010
1405
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001406struct mwl8k_tx_desc {
1407 __le32 status;
1408 __u8 data_rate;
1409 __u8 tx_priority;
1410 __le16 qos_control;
1411 __le32 pkt_phys_addr;
1412 __le16 pkt_len;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001413 __u8 dest_MAC_addr[ETH_ALEN];
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001414 __le32 next_txd_phys_addr;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07001415 __le32 timestamp;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001416 __le16 rate_info;
1417 __u8 peer_id;
Brian Cavagnoloa1fe24b2010-11-12 17:23:47 -08001418 __u8 tx_frag_cnt;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001419} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001420
1421#define MWL8K_TX_DESCS 128
1422
1423static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1424{
1425 struct mwl8k_priv *priv = hw->priv;
1426 struct mwl8k_tx_queue *txq = priv->txq + index;
1427 int size;
1428 int i;
1429
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001430 txq->len = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001431 txq->head = 0;
1432 txq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001433
1434 size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1435
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001436 txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma);
1437 if (txq->txd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001438 wiphy_err(hw->wiphy, "failed to alloc TX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001439 return -ENOMEM;
1440 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001441 memset(txq->txd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001442
Shan Weib9ede5f2011-03-08 11:02:03 +08001443 txq->skb = kcalloc(MWL8K_TX_DESCS, sizeof(*txq->skb), GFP_KERNEL);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001444 if (txq->skb == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001445 wiphy_err(hw->wiphy, "failed to alloc TX skbuff list\n");
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001446 pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001447 return -ENOMEM;
1448 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001449
1450 for (i = 0; i < MWL8K_TX_DESCS; i++) {
1451 struct mwl8k_tx_desc *tx_desc;
1452 int nexti;
1453
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001454 tx_desc = txq->txd + i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001455 nexti = (i + 1) % MWL8K_TX_DESCS;
1456
1457 tx_desc->status = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001458 tx_desc->next_txd_phys_addr =
1459 cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001460 }
1461
1462 return 0;
1463}
1464
1465static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1466{
1467 iowrite32(MWL8K_H2A_INT_PPA_READY,
1468 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1469 iowrite32(MWL8K_H2A_INT_DUMMY,
1470 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1471 ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1472}
1473
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001474static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001475{
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001476 struct mwl8k_priv *priv = hw->priv;
1477 int i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001478
Brian Cavagnoloe6007072011-03-17 11:58:44 -07001479 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001480 struct mwl8k_tx_queue *txq = priv->txq + i;
1481 int fw_owned = 0;
1482 int drv_owned = 0;
1483 int unused = 0;
1484 int desc;
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001485
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001486 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001487 struct mwl8k_tx_desc *tx_desc = txq->txd + desc;
1488 u32 status;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001489
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001490 status = le32_to_cpu(tx_desc->status);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001491 if (status & MWL8K_TXD_STATUS_FW_OWNED)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001492 fw_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001493 else
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001494 drv_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001495
1496 if (tx_desc->pkt_len == 0)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001497 unused++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001498 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001499
Joe Perchesc96c31e2010-07-26 14:39:58 -07001500 wiphy_err(hw->wiphy,
1501 "txq[%d] len=%d head=%d tail=%d "
1502 "fw_owned=%d drv_owned=%d unused=%d\n",
1503 i,
1504 txq->len, txq->head, txq->tail,
1505 fw_owned, drv_owned, unused);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001506 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001507}
1508
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001509/*
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001510 * Must be called with priv->fw_mutex held and tx queues stopped.
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001511 */
Lennert Buytenhek62abd3c2010-01-08 18:28:34 +01001512#define MWL8K_TX_WAIT_TIMEOUT_MS 5000
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001513
Lennert Buytenhek950d5b02009-07-17 01:48:41 +02001514static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001515{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001516 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001517 DECLARE_COMPLETION_ONSTACK(tx_wait);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001518 int retry;
1519 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001520
1521 might_sleep();
1522
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05301523 /* Since fw restart is in progress, allow only the firmware
1524 * commands from the restart code and block the other
1525 * commands since they are going to fail in any case since
1526 * the firmware has crashed
1527 */
1528 if (priv->hw_restart_in_progress) {
1529 if (priv->hw_restart_owner == current)
1530 return 0;
1531 else
1532 return -EBUSY;
1533 }
1534
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05301535 if (atomic_read(&priv->watchdog_event_pending))
1536 return 0;
1537
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001538 /*
1539 * The TX queues are stopped at this point, so this test
1540 * doesn't need to take ->tx_lock.
1541 */
1542 if (!priv->pending_tx_pkts)
1543 return 0;
1544
1545 retry = 0;
1546 rc = 0;
1547
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001548 spin_lock_bh(&priv->tx_lock);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001549 priv->tx_wait = &tx_wait;
1550 while (!rc) {
1551 int oldcount;
1552 unsigned long timeout;
1553
1554 oldcount = priv->pending_tx_pkts;
1555
1556 spin_unlock_bh(&priv->tx_lock);
1557 timeout = wait_for_completion_timeout(&tx_wait,
1558 msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS));
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05301559
1560 if (atomic_read(&priv->watchdog_event_pending)) {
1561 spin_lock_bh(&priv->tx_lock);
1562 priv->tx_wait = NULL;
1563 spin_unlock_bh(&priv->tx_lock);
1564 return 0;
1565 }
1566
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001567 spin_lock_bh(&priv->tx_lock);
1568
1569 if (timeout) {
1570 WARN_ON(priv->pending_tx_pkts);
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301571 if (retry)
Joe Perchesc96c31e2010-07-26 14:39:58 -07001572 wiphy_notice(hw->wiphy, "tx rings drained\n");
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001573 break;
1574 }
1575
1576 if (priv->pending_tx_pkts < oldcount) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001577 wiphy_notice(hw->wiphy,
1578 "waiting for tx rings to drain (%d -> %d pkts)\n",
1579 oldcount, priv->pending_tx_pkts);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001580 retry = 1;
1581 continue;
1582 }
1583
1584 priv->tx_wait = NULL;
1585
Joe Perchesc96c31e2010-07-26 14:39:58 -07001586 wiphy_err(hw->wiphy, "tx rings stuck for %d ms\n",
1587 MWL8K_TX_WAIT_TIMEOUT_MS);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001588 mwl8k_dump_tx_rings(hw);
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05301589 priv->hw_restart_in_progress = true;
1590 ieee80211_queue_work(hw, &priv->fw_reload);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001591
1592 rc = -ETIMEDOUT;
1593 }
Nishant Sarmukadam9b0b11f2013-01-08 10:16:05 +05301594 priv->tx_wait = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001595 spin_unlock_bh(&priv->tx_lock);
1596
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001597 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001598}
1599
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02001600#define MWL8K_TXD_SUCCESS(status) \
1601 ((status) & (MWL8K_TXD_STATUS_OK | \
1602 MWL8K_TXD_STATUS_OK_RETRY | \
1603 MWL8K_TXD_STATUS_OK_MORE_RETRY))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001604
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001605static int mwl8k_tid_queue_mapping(u8 tid)
1606{
1607 BUG_ON(tid > 7);
1608
1609 switch (tid) {
1610 case 0:
1611 case 3:
1612 return IEEE80211_AC_BE;
1613 break;
1614 case 1:
1615 case 2:
1616 return IEEE80211_AC_BK;
1617 break;
1618 case 4:
1619 case 5:
1620 return IEEE80211_AC_VI;
1621 break;
1622 case 6:
1623 case 7:
1624 return IEEE80211_AC_VO;
1625 break;
1626 default:
1627 return -1;
1628 break;
1629 }
1630}
1631
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001632/* The firmware will fill in the rate information
1633 * for each packet that gets queued in the hardware
John W. Linville49adc5c2011-04-27 15:04:28 -04001634 * and these macros will interpret that info.
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001635 */
1636
John W. Linville49adc5c2011-04-27 15:04:28 -04001637#define RI_FORMAT(a) (a & 0x0001)
1638#define RI_RATE_ID_MCS(a) ((a & 0x01f8) >> 3)
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001639
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001640static int
1641mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001642{
1643 struct mwl8k_priv *priv = hw->priv;
1644 struct mwl8k_tx_queue *txq = priv->txq + index;
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001645 int processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001646
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001647 processed = 0;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001648 while (txq->len > 0 && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001649 int tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001650 struct mwl8k_tx_desc *tx_desc;
1651 unsigned long addr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001652 int size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001653 struct sk_buff *skb;
1654 struct ieee80211_tx_info *info;
1655 u32 status;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001656 struct ieee80211_sta *sta;
1657 struct mwl8k_sta *sta_info = NULL;
1658 u16 rate_info;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001659 struct ieee80211_hdr *wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001660
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001661 tx = txq->head;
1662 tx_desc = txq->txd + tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001663
1664 status = le32_to_cpu(tx_desc->status);
1665
1666 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1667 if (!force)
1668 break;
1669 tx_desc->status &=
1670 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1671 }
1672
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001673 txq->head = (tx + 1) % MWL8K_TX_DESCS;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001674 BUG_ON(txq->len == 0);
1675 txq->len--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001676 priv->pending_tx_pkts--;
1677
1678 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001679 size = le16_to_cpu(tx_desc->pkt_len);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001680 skb = txq->skb[tx];
1681 txq->skb[tx] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001682
1683 BUG_ON(skb == NULL);
1684 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1685
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001686 mwl8k_remove_dma_header(skb, tx_desc->qos_control);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001687
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001688 wh = (struct ieee80211_hdr *) skb->data;
1689
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001690 /* Mark descriptor as unused */
1691 tx_desc->pkt_phys_addr = 0;
1692 tx_desc->pkt_len = 0;
1693
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001694 info = IEEE80211_SKB_CB(skb);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001695 if (ieee80211_is_data(wh->frame_control)) {
Thomas Huehn89e11802012-07-11 13:21:41 +02001696 rcu_read_lock();
1697 sta = ieee80211_find_sta_by_ifaddr(hw, wh->addr1,
1698 wh->addr2);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001699 if (sta) {
1700 sta_info = MWL8K_STA(sta);
1701 BUG_ON(sta_info == NULL);
1702 rate_info = le16_to_cpu(tx_desc->rate_info);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001703 /* If rate is < 6.5 Mpbs for an ht station
1704 * do not form an ampdu. If the station is a
1705 * legacy station (format = 0), do not form an
1706 * ampdu
1707 */
John W. Linville49adc5c2011-04-27 15:04:28 -04001708 if (RI_RATE_ID_MCS(rate_info) < 1 ||
1709 RI_FORMAT(rate_info) == 0) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001710 sta_info->is_ampdu_allowed = false;
1711 } else {
1712 sta_info->is_ampdu_allowed = true;
1713 }
1714 }
Thomas Huehn89e11802012-07-11 13:21:41 +02001715 rcu_read_unlock();
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001716 }
1717
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001718 ieee80211_tx_info_clear_status(info);
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001719
1720 /* Rate control is happening in the firmware.
1721 * Ensure no tx rate is being reported.
1722 */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301723 info->status.rates[0].idx = -1;
1724 info->status.rates[0].count = 1;
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001725
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001726 if (MWL8K_TXD_SUCCESS(status))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001727 info->flags |= IEEE80211_TX_STAT_ACK;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001728
1729 ieee80211_tx_status_irqsafe(hw, skb);
1730
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001731 processed++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001732 }
1733
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001734 return processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001735}
1736
1737/* must be called only when the card's transmit is completely halted */
1738static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1739{
1740 struct mwl8k_priv *priv = hw->priv;
1741 struct mwl8k_tx_queue *txq = priv->txq + index;
1742
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001743 if (txq->txd == NULL)
1744 return;
1745
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001746 mwl8k_txq_reclaim(hw, index, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001747
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001748 kfree(txq->skb);
1749 txq->skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001750
1751 pci_free_consistent(priv->pdev,
1752 MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001753 txq->txd, txq->txd_dma);
1754 txq->txd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001755}
1756
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001757/* caller must hold priv->stream_lock when calling the stream functions */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301758static struct mwl8k_ampdu_stream *
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001759mwl8k_add_stream(struct ieee80211_hw *hw, struct ieee80211_sta *sta, u8 tid)
1760{
1761 struct mwl8k_ampdu_stream *stream;
1762 struct mwl8k_priv *priv = hw->priv;
1763 int i;
1764
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301765 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001766 stream = &priv->ampdu[i];
1767 if (stream->state == AMPDU_NO_STREAM) {
1768 stream->sta = sta;
1769 stream->state = AMPDU_STREAM_NEW;
1770 stream->tid = tid;
1771 stream->idx = i;
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001772 wiphy_debug(hw->wiphy, "Added a new stream for %pM %d",
1773 sta->addr, tid);
1774 return stream;
1775 }
1776 }
1777 return NULL;
1778}
1779
1780static int
1781mwl8k_start_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1782{
1783 int ret;
1784
1785 /* if the stream has already been started, don't start it again */
1786 if (stream->state != AMPDU_STREAM_NEW)
1787 return 0;
1788 ret = ieee80211_start_tx_ba_session(stream->sta, stream->tid, 0);
1789 if (ret)
1790 wiphy_debug(hw->wiphy, "Failed to start stream for %pM %d: "
1791 "%d\n", stream->sta->addr, stream->tid, ret);
1792 else
1793 wiphy_debug(hw->wiphy, "Started stream for %pM %d\n",
1794 stream->sta->addr, stream->tid);
1795 return ret;
1796}
1797
1798static void
1799mwl8k_remove_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1800{
1801 wiphy_debug(hw->wiphy, "Remove stream for %pM %d\n", stream->sta->addr,
1802 stream->tid);
1803 memset(stream, 0, sizeof(*stream));
1804}
1805
1806static struct mwl8k_ampdu_stream *
1807mwl8k_lookup_stream(struct ieee80211_hw *hw, u8 *addr, u8 tid)
1808{
1809 struct mwl8k_priv *priv = hw->priv;
1810 int i;
1811
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301812 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001813 struct mwl8k_ampdu_stream *stream;
1814 stream = &priv->ampdu[i];
1815 if (stream->state == AMPDU_NO_STREAM)
1816 continue;
1817 if (!memcmp(stream->sta->addr, addr, ETH_ALEN) &&
1818 stream->tid == tid)
1819 return stream;
1820 }
1821 return NULL;
1822}
1823
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001824#define MWL8K_AMPDU_PACKET_THRESHOLD 64
1825static inline bool mwl8k_ampdu_allowed(struct ieee80211_sta *sta, u8 tid)
1826{
1827 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1828 struct tx_traffic_info *tx_stats;
1829
1830 BUG_ON(tid >= MWL8K_MAX_TID);
1831 tx_stats = &sta_info->tx_stats[tid];
1832
1833 return sta_info->is_ampdu_allowed &&
1834 tx_stats->pkts > MWL8K_AMPDU_PACKET_THRESHOLD;
1835}
1836
1837static inline void mwl8k_tx_count_packet(struct ieee80211_sta *sta, u8 tid)
1838{
1839 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1840 struct tx_traffic_info *tx_stats;
1841
1842 BUG_ON(tid >= MWL8K_MAX_TID);
1843 tx_stats = &sta_info->tx_stats[tid];
1844
1845 if (tx_stats->start_time == 0)
1846 tx_stats->start_time = jiffies;
1847
1848 /* reset the packet count after each second elapses. If the number of
1849 * packets ever exceeds the ampdu_min_traffic threshold, we will allow
1850 * an ampdu stream to be started.
1851 */
1852 if (jiffies - tx_stats->start_time > HZ) {
1853 tx_stats->pkts = 0;
1854 tx_stats->start_time = 0;
1855 } else
1856 tx_stats->pkts++;
1857}
1858
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301859/* The hardware ampdu queues start from 5.
1860 * txpriorities for ampdu queues are
1861 * 5 6 7 0 1 2 3 4 ie., queue 5 is highest
1862 * and queue 3 is lowest (queue 4 is reserved)
1863 */
1864#define BA_QUEUE 5
1865
Johannes Berg7bb45682011-02-24 14:42:06 +01001866static void
Thomas Huehn36323f82012-07-23 21:33:42 +02001867mwl8k_txq_xmit(struct ieee80211_hw *hw,
1868 int index,
1869 struct ieee80211_sta *sta,
1870 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001871{
1872 struct mwl8k_priv *priv = hw->priv;
1873 struct ieee80211_tx_info *tx_info;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001874 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001875 struct ieee80211_hdr *wh;
1876 struct mwl8k_tx_queue *txq;
1877 struct mwl8k_tx_desc *tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001878 dma_addr_t dma;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001879 u32 txstatus;
1880 u8 txdatarate;
1881 u16 qos;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001882 int txpriority;
1883 u8 tid = 0;
1884 struct mwl8k_ampdu_stream *stream = NULL;
1885 bool start_ba_session = false;
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301886 bool mgmtframe = false;
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001887 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301888 bool eapol_frame = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001889
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001890 wh = (struct ieee80211_hdr *)skb->data;
1891 if (ieee80211_is_data_qos(wh->frame_control))
1892 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1893 else
1894 qos = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001895
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301896 if (skb->protocol == cpu_to_be16(ETH_P_PAE))
1897 eapol_frame = true;
1898
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301899 if (ieee80211_is_mgmt(wh->frame_control))
1900 mgmtframe = true;
1901
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001902 if (priv->ap_fw)
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05301903 mwl8k_encapsulate_tx_frame(priv, skb);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001904 else
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +05301905 mwl8k_add_dma_header(priv, skb, 0, 0);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001906
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001907 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001908
1909 tx_info = IEEE80211_SKB_CB(skb);
1910 mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001911
1912 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001913 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Lennert Buytenhek657232b2010-01-12 13:47:47 +01001914 wh->seq_ctrl |= cpu_to_le16(mwl8k_vif->seqno);
1915 mwl8k_vif->seqno += 0x10;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001916 }
1917
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001918 /* Setup firmware control bit fields for each frame type. */
1919 txstatus = 0;
1920 txdatarate = 0;
1921 if (ieee80211_is_mgmt(wh->frame_control) ||
1922 ieee80211_is_ctl(wh->frame_control)) {
1923 txdatarate = 0;
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001924 qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001925 } else if (ieee80211_is_data(wh->frame_control)) {
1926 txdatarate = 1;
1927 if (is_multicast_ether_addr(wh->addr1))
1928 txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX;
1929
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001930 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001931 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001932 qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001933 else
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001934 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001935 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001936
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001937 /* Queue ADDBA request in the respective data queue. While setting up
1938 * the ampdu stream, mac80211 queues further packets for that
1939 * particular ra/tid pair. However, packets piled up in the hardware
1940 * for that ra/tid pair will still go out. ADDBA request and the
1941 * related data packets going out from different queues asynchronously
1942 * will cause a shift in the receiver window which might result in
1943 * ampdu packets getting dropped at the receiver after the stream has
1944 * been setup.
1945 */
1946 if (unlikely(ieee80211_is_action(wh->frame_control) &&
1947 mgmt->u.action.category == WLAN_CATEGORY_BACK &&
1948 mgmt->u.action.u.addba_req.action_code == WLAN_ACTION_ADDBA_REQ &&
1949 priv->ap_fw)) {
1950 u16 capab = le16_to_cpu(mgmt->u.action.u.addba_req.capab);
1951 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
1952 index = mwl8k_tid_queue_mapping(tid);
1953 }
1954
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001955 txpriority = index;
1956
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301957 if (priv->ap_fw && sta && sta->ht_cap.ht_supported && !eapol_frame &&
1958 ieee80211_is_data_qos(wh->frame_control)) {
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001959 tid = qos & 0xf;
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001960 mwl8k_tx_count_packet(sta, tid);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001961 spin_lock(&priv->stream_lock);
1962 stream = mwl8k_lookup_stream(hw, sta->addr, tid);
1963 if (stream != NULL) {
1964 if (stream->state == AMPDU_STREAM_ACTIVE) {
Yogesh Ashok Powar5f2a1492013-01-03 13:21:25 +05301965 WARN_ON(!(qos & MWL8K_QOS_ACK_POLICY_BLOCKACK));
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301966 txpriority = (BA_QUEUE + stream->idx) %
1967 TOTAL_HW_TX_QUEUES;
1968 if (stream->idx <= 1)
1969 index = stream->idx +
1970 MWL8K_TX_WMM_QUEUES;
1971
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001972 } else if (stream->state == AMPDU_STREAM_NEW) {
1973 /* We get here if the driver sends us packets
1974 * after we've initiated a stream, but before
1975 * our ampdu_action routine has been called
1976 * with IEEE80211_AMPDU_TX_START to get the SSN
1977 * for the ADDBA request. So this packet can
1978 * go out with no risk of sequence number
1979 * mismatch. No special handling is required.
1980 */
1981 } else {
1982 /* Drop packets that would go out after the
1983 * ADDBA request was sent but before the ADDBA
1984 * response is received. If we don't do this,
1985 * the recipient would probably receive it
1986 * after the ADDBA request with SSN 0. This
1987 * will cause the recipient's BA receive window
1988 * to shift, which would cause the subsequent
1989 * packets in the BA stream to be discarded.
1990 * mac80211 queues our packets for us in this
1991 * case, so this is really just a safety check.
1992 */
1993 wiphy_warn(hw->wiphy,
1994 "Cannot send packet while ADDBA "
1995 "dialog is underway.\n");
1996 spin_unlock(&priv->stream_lock);
1997 dev_kfree_skb(skb);
1998 return;
1999 }
2000 } else {
2001 /* Defer calling mwl8k_start_stream so that the current
2002 * skb can go out before the ADDBA request. This
2003 * prevents sequence number mismatch at the recepient
2004 * as described above.
2005 */
Brian Cavagnolod0805c12011-04-12 11:06:28 -07002006 if (mwl8k_ampdu_allowed(sta, tid)) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07002007 stream = mwl8k_add_stream(hw, sta, tid);
2008 if (stream != NULL)
2009 start_ba_session = true;
2010 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002011 }
2012 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar5f2a1492013-01-03 13:21:25 +05302013 } else {
2014 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
2015 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002016 }
2017
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002018 dma = pci_map_single(priv->pdev, skb->data,
2019 skb->len, PCI_DMA_TODEVICE);
2020
2021 if (pci_dma_mapping_error(priv->pdev, dma)) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07002022 wiphy_debug(hw->wiphy,
2023 "failed to dma map skb, dropping TX frame.\n");
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002024 if (start_ba_session) {
2025 spin_lock(&priv->stream_lock);
2026 mwl8k_remove_stream(hw, stream);
2027 spin_unlock(&priv->stream_lock);
2028 }
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002029 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01002030 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002031 }
2032
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002033 spin_lock_bh(&priv->tx_lock);
2034
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002035 txq = priv->txq + index;
2036
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302037 /* Mgmt frames that go out frequently are probe
2038 * responses. Other mgmt frames got out relatively
2039 * infrequently. Hence reserve 2 buffers so that
2040 * other mgmt frames do not get dropped due to an
2041 * already queued probe response in one of the
2042 * reserved buffers.
2043 */
2044
2045 if (txq->len >= MWL8K_TX_DESCS - 2) {
Joe Perches23677ce2012-02-09 11:17:23 +00002046 if (!mgmtframe || txq->len == MWL8K_TX_DESCS) {
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302047 if (start_ba_session) {
2048 spin_lock(&priv->stream_lock);
2049 mwl8k_remove_stream(hw, stream);
2050 spin_unlock(&priv->stream_lock);
2051 }
2052 spin_unlock_bh(&priv->tx_lock);
Nishant Sarmukadamff7aa962012-11-06 19:22:48 +05302053 pci_unmap_single(priv->pdev, dma, skb->len,
2054 PCI_DMA_TODEVICE);
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302055 dev_kfree_skb(skb);
2056 return;
Pradeep Nemavat3a7dbc32011-04-21 16:34:56 +05302057 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002058 }
2059
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002060 BUG_ON(txq->skb[txq->tail] != NULL);
2061 txq->skb[txq->tail] = skb;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002062
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002063 tx = txq->txd + txq->tail;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002064 tx->data_rate = txdatarate;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002065 tx->tx_priority = txpriority;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002066 tx->qos_control = cpu_to_le16(qos);
2067 tx->pkt_phys_addr = cpu_to_le32(dma);
2068 tx->pkt_len = cpu_to_le16(skb->len);
2069 tx->rate_info = 0;
Thomas Huehn36323f82012-07-23 21:33:42 +02002070 if (!priv->ap_fw && sta != NULL)
2071 tx->peer_id = MWL8K_STA(sta)->peer_id;
Lennert Buytenheka6804002010-01-04 21:55:42 +01002072 else
2073 tx->peer_id = 0;
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302074
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05302075 if (priv->ap_fw && ieee80211_is_data(wh->frame_control) && !eapol_frame)
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302076 tx->timestamp = cpu_to_le32(ioread32(priv->regs +
2077 MWL8K_HW_TIMER_REGISTER));
Nishant Sarmukadamb8d9e572012-11-06 19:23:15 +05302078 else
2079 tx->timestamp = 0;
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302080
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002081 wmb();
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002082 tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
2083
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02002084 txq->len++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002085 priv->pending_tx_pkts++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002086
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002087 txq->tail++;
2088 if (txq->tail == MWL8K_TX_DESCS)
2089 txq->tail = 0;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002090
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002091 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002092
2093 spin_unlock_bh(&priv->tx_lock);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002094
2095 /* Initiate the ampdu session here */
2096 if (start_ba_session) {
2097 spin_lock(&priv->stream_lock);
2098 if (mwl8k_start_stream(hw, stream))
2099 mwl8k_remove_stream(hw, stream);
2100 spin_unlock(&priv->stream_lock);
2101 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002102}
2103
2104
2105/*
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002106 * Firmware access.
2107 *
2108 * We have the following requirements for issuing firmware commands:
2109 * - Some commands require that the packet transmit path is idle when
2110 * the command is issued. (For simplicity, we'll just quiesce the
2111 * transmit path for every command.)
2112 * - There are certain sequences of commands that need to be issued to
2113 * the hardware sequentially, with no other intervening commands.
2114 *
2115 * This leads to an implementation of a "firmware lock" as a mutex that
2116 * can be taken recursively, and which is taken by both the low-level
2117 * command submission function (mwl8k_post_cmd) as well as any users of
2118 * that function that require issuing of an atomic sequence of commands,
2119 * and quiesces the transmit path whenever it's taken.
2120 */
2121static int mwl8k_fw_lock(struct ieee80211_hw *hw)
2122{
2123 struct mwl8k_priv *priv = hw->priv;
2124
2125 if (priv->fw_mutex_owner != current) {
2126 int rc;
2127
2128 mutex_lock(&priv->fw_mutex);
2129 ieee80211_stop_queues(hw);
2130
2131 rc = mwl8k_tx_wait_empty(hw);
2132 if (rc) {
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05302133 if (!priv->hw_restart_in_progress)
2134 ieee80211_wake_queues(hw);
2135
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002136 mutex_unlock(&priv->fw_mutex);
2137
2138 return rc;
2139 }
2140
2141 priv->fw_mutex_owner = current;
2142 }
2143
2144 priv->fw_mutex_depth++;
2145
2146 return 0;
2147}
2148
2149static void mwl8k_fw_unlock(struct ieee80211_hw *hw)
2150{
2151 struct mwl8k_priv *priv = hw->priv;
2152
2153 if (!--priv->fw_mutex_depth) {
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05302154 if (!priv->hw_restart_in_progress)
2155 ieee80211_wake_queues(hw);
2156
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002157 priv->fw_mutex_owner = NULL;
2158 mutex_unlock(&priv->fw_mutex);
2159 }
2160}
2161
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05302162static void mwl8k_enable_bsses(struct ieee80211_hw *hw, bool enable,
2163 u32 bitmap);
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002164
2165/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002166 * Command processing.
2167 */
2168
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002169/* Timeout firmware commands after 10s */
2170#define MWL8K_CMD_TIMEOUT_MS 10000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002171
2172static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
2173{
2174 DECLARE_COMPLETION_ONSTACK(cmd_wait);
2175 struct mwl8k_priv *priv = hw->priv;
2176 void __iomem *regs = priv->regs;
2177 dma_addr_t dma_addr;
2178 unsigned int dma_size;
2179 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002180 unsigned long timeout = 0;
2181 u8 buf[32];
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05302182 u32 bitmap = 0;
2183
2184 wiphy_dbg(hw->wiphy, "Posting %s [%d]\n",
2185 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)), cmd->macid);
2186
2187 /* Before posting firmware commands that could change the hardware
2188 * characteristics, make sure that all BSSes are stopped temporary.
2189 * Enable these stopped BSSes after completion of the commands
2190 */
2191
2192 rc = mwl8k_fw_lock(hw);
2193 if (rc)
2194 return rc;
2195
2196 if (priv->ap_fw && priv->running_bsses) {
2197 switch (le16_to_cpu(cmd->code)) {
2198 case MWL8K_CMD_SET_RF_CHANNEL:
2199 case MWL8K_CMD_RADIO_CONTROL:
2200 case MWL8K_CMD_RF_TX_POWER:
2201 case MWL8K_CMD_TX_POWER:
2202 case MWL8K_CMD_RF_ANTENNA:
2203 case MWL8K_CMD_RTS_THRESHOLD:
2204 case MWL8K_CMD_MIMO_CONFIG:
2205 bitmap = priv->running_bsses;
2206 mwl8k_enable_bsses(hw, false, bitmap);
2207 break;
2208 }
2209 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002210
John W. Linvilleb6037422010-07-20 13:55:00 -04002211 cmd->result = (__force __le16) 0xffff;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002212 dma_size = le16_to_cpu(cmd->length);
2213 dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
2214 PCI_DMA_BIDIRECTIONAL);
2215 if (pci_dma_mapping_error(priv->pdev, dma_addr))
2216 return -ENOMEM;
2217
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002218 priv->hostcmd_wait = &cmd_wait;
2219 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
2220 iowrite32(MWL8K_H2A_INT_DOORBELL,
2221 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
2222 iowrite32(MWL8K_H2A_INT_DUMMY,
2223 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002224
2225 timeout = wait_for_completion_timeout(&cmd_wait,
2226 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
2227
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002228 priv->hostcmd_wait = NULL;
2229
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002230
Lennert Buytenhek37055bd2009-08-03 21:58:47 +02002231 pci_unmap_single(priv->pdev, dma_addr, dma_size,
2232 PCI_DMA_BIDIRECTIONAL);
2233
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002234 if (!timeout) {
Joe Perches5db55842010-08-11 19:11:19 -07002235 wiphy_err(hw->wiphy, "Command %s timeout after %u ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002236 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2237 MWL8K_CMD_TIMEOUT_MS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002238 rc = -ETIMEDOUT;
2239 } else {
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002240 int ms;
2241
2242 ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout);
2243
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002244 rc = cmd->result ? -EINVAL : 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002245 if (rc)
Joe Perches5db55842010-08-11 19:11:19 -07002246 wiphy_err(hw->wiphy, "Command %s error 0x%x\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002247 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2248 le16_to_cpu(cmd->result));
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002249 else if (ms > 2000)
Joe Perches5db55842010-08-11 19:11:19 -07002250 wiphy_notice(hw->wiphy, "Command %s took %d ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002251 mwl8k_cmd_name(cmd->code,
2252 buf, sizeof(buf)),
2253 ms);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002254 }
2255
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05302256 if (bitmap)
2257 mwl8k_enable_bsses(hw, true, bitmap);
2258
2259 mwl8k_fw_unlock(hw);
2260
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002261 return rc;
2262}
2263
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +01002264static int mwl8k_post_pervif_cmd(struct ieee80211_hw *hw,
2265 struct ieee80211_vif *vif,
2266 struct mwl8k_cmd_pkt *cmd)
2267{
2268 if (vif != NULL)
2269 cmd->macid = MWL8K_VIF(vif)->macid;
2270 return mwl8k_post_cmd(hw, cmd);
2271}
2272
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002273/*
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002274 * Setup code shared between STA and AP firmware images.
2275 */
2276static void mwl8k_setup_2ghz_band(struct ieee80211_hw *hw)
2277{
2278 struct mwl8k_priv *priv = hw->priv;
2279
2280 BUILD_BUG_ON(sizeof(priv->channels_24) != sizeof(mwl8k_channels_24));
2281 memcpy(priv->channels_24, mwl8k_channels_24, sizeof(mwl8k_channels_24));
2282
2283 BUILD_BUG_ON(sizeof(priv->rates_24) != sizeof(mwl8k_rates_24));
2284 memcpy(priv->rates_24, mwl8k_rates_24, sizeof(mwl8k_rates_24));
2285
2286 priv->band_24.band = IEEE80211_BAND_2GHZ;
2287 priv->band_24.channels = priv->channels_24;
2288 priv->band_24.n_channels = ARRAY_SIZE(mwl8k_channels_24);
2289 priv->band_24.bitrates = priv->rates_24;
2290 priv->band_24.n_bitrates = ARRAY_SIZE(mwl8k_rates_24);
2291
2292 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band_24;
2293}
2294
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +01002295static void mwl8k_setup_5ghz_band(struct ieee80211_hw *hw)
2296{
2297 struct mwl8k_priv *priv = hw->priv;
2298
2299 BUILD_BUG_ON(sizeof(priv->channels_50) != sizeof(mwl8k_channels_50));
2300 memcpy(priv->channels_50, mwl8k_channels_50, sizeof(mwl8k_channels_50));
2301
2302 BUILD_BUG_ON(sizeof(priv->rates_50) != sizeof(mwl8k_rates_50));
2303 memcpy(priv->rates_50, mwl8k_rates_50, sizeof(mwl8k_rates_50));
2304
2305 priv->band_50.band = IEEE80211_BAND_5GHZ;
2306 priv->band_50.channels = priv->channels_50;
2307 priv->band_50.n_channels = ARRAY_SIZE(mwl8k_channels_50);
2308 priv->band_50.bitrates = priv->rates_50;
2309 priv->band_50.n_bitrates = ARRAY_SIZE(mwl8k_rates_50);
2310
2311 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &priv->band_50;
2312}
2313
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002314/*
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002315 * CMD_GET_HW_SPEC (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002316 */
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002317struct mwl8k_cmd_get_hw_spec_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002318 struct mwl8k_cmd_pkt header;
2319 __u8 hw_rev;
2320 __u8 host_interface;
2321 __le16 num_mcaddrs;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002322 __u8 perm_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002323 __le16 region_code;
2324 __le32 fw_rev;
2325 __le32 ps_cookie;
2326 __le32 caps;
2327 __u8 mcs_bitmap[16];
2328 __le32 rx_queue_ptr;
2329 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002330 __le32 tx_queue_ptrs[MWL8K_TX_WMM_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002331 __le32 caps2;
2332 __le32 num_tx_desc_per_queue;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002333 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002334} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002335
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002336#define MWL8K_CAP_MAX_AMSDU 0x20000000
2337#define MWL8K_CAP_GREENFIELD 0x08000000
2338#define MWL8K_CAP_AMPDU 0x04000000
2339#define MWL8K_CAP_RX_STBC 0x01000000
2340#define MWL8K_CAP_TX_STBC 0x00800000
2341#define MWL8K_CAP_SHORTGI_40MHZ 0x00400000
2342#define MWL8K_CAP_SHORTGI_20MHZ 0x00200000
2343#define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000
2344#define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000
2345#define MWL8K_CAP_DELAY_BA 0x00003000
2346#define MWL8K_CAP_MIMO 0x00000200
2347#define MWL8K_CAP_40MHZ 0x00000100
Lennert Buytenhek06953232010-01-12 13:49:41 +01002348#define MWL8K_CAP_BAND_MASK 0x00000007
2349#define MWL8K_CAP_5GHZ 0x00000004
2350#define MWL8K_CAP_2GHZ4 0x00000001
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002351
Lennert Buytenhek06953232010-01-12 13:49:41 +01002352static void
2353mwl8k_set_ht_caps(struct ieee80211_hw *hw,
2354 struct ieee80211_supported_band *band, u32 cap)
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002355{
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002356 int rx_streams;
2357 int tx_streams;
2358
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002359 band->ht_cap.ht_supported = 1;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002360
2361 if (cap & MWL8K_CAP_MAX_AMSDU)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002362 band->ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002363 if (cap & MWL8K_CAP_GREENFIELD)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002364 band->ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002365 if (cap & MWL8K_CAP_AMPDU) {
2366 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002367 band->ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
2368 band->ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002369 }
2370 if (cap & MWL8K_CAP_RX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002371 band->ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002372 if (cap & MWL8K_CAP_TX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002373 band->ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002374 if (cap & MWL8K_CAP_SHORTGI_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002375 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002376 if (cap & MWL8K_CAP_SHORTGI_20MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002377 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002378 if (cap & MWL8K_CAP_DELAY_BA)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002379 band->ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002380 if (cap & MWL8K_CAP_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002381 band->ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002382
2383 rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK);
2384 tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK);
2385
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002386 band->ht_cap.mcs.rx_mask[0] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002387 if (rx_streams >= 2)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002388 band->ht_cap.mcs.rx_mask[1] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002389 if (rx_streams >= 3)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002390 band->ht_cap.mcs.rx_mask[2] = 0xff;
2391 band->ht_cap.mcs.rx_mask[4] = 0x01;
2392 band->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002393
2394 if (rx_streams != tx_streams) {
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002395 band->ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
2396 band->ht_cap.mcs.tx_params |= (tx_streams - 1) <<
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002397 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
2398 }
2399}
2400
Lennert Buytenhek06953232010-01-12 13:49:41 +01002401static void
2402mwl8k_set_caps(struct ieee80211_hw *hw, u32 caps)
2403{
2404 struct mwl8k_priv *priv = hw->priv;
2405
2406 if ((caps & MWL8K_CAP_2GHZ4) || !(caps & MWL8K_CAP_BAND_MASK)) {
2407 mwl8k_setup_2ghz_band(hw);
2408 if (caps & MWL8K_CAP_MIMO)
2409 mwl8k_set_ht_caps(hw, &priv->band_24, caps);
2410 }
2411
2412 if (caps & MWL8K_CAP_5GHZ) {
2413 mwl8k_setup_5ghz_band(hw);
2414 if (caps & MWL8K_CAP_MIMO)
2415 mwl8k_set_ht_caps(hw, &priv->band_50, caps);
2416 }
2417}
2418
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002419static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002420{
2421 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002422 struct mwl8k_cmd_get_hw_spec_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002423 int rc;
2424 int i;
2425
2426 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2427 if (cmd == NULL)
2428 return -ENOMEM;
2429
2430 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2431 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2432
2433 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2434 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002435 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002436 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
2437 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002438 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002439 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002440 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002441
2442 rc = mwl8k_post_cmd(hw, &cmd->header);
2443
2444 if (!rc) {
2445 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2446 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002447 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002448 priv->hw_rev = cmd->hw_rev;
Lennert Buytenhek06953232010-01-12 13:49:41 +01002449 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002450 priv->ap_macids_supported = 0x00000000;
2451 priv->sta_macids_supported = 0x00000001;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002452 }
2453
2454 kfree(cmd);
2455 return rc;
2456}
2457
2458/*
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002459 * CMD_GET_HW_SPEC (AP version).
2460 */
2461struct mwl8k_cmd_get_hw_spec_ap {
2462 struct mwl8k_cmd_pkt header;
2463 __u8 hw_rev;
2464 __u8 host_interface;
2465 __le16 num_wcb;
2466 __le16 num_mcaddrs;
2467 __u8 perm_addr[ETH_ALEN];
2468 __le16 region_code;
2469 __le16 num_antenna;
2470 __le32 fw_rev;
2471 __le32 wcbbase0;
2472 __le32 rxwrptr;
2473 __le32 rxrdptr;
2474 __le32 ps_cookie;
2475 __le32 wcbbase1;
2476 __le32 wcbbase2;
2477 __le32 wcbbase3;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002478 __le32 fw_api_version;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002479 __le32 caps;
2480 __le32 num_of_ampdu_queues;
2481 __le32 wcbbase_ampdu[MWL8K_MAX_AMPDU_QUEUES];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002482} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002483
2484static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw)
2485{
2486 struct mwl8k_priv *priv = hw->priv;
2487 struct mwl8k_cmd_get_hw_spec_ap *cmd;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002488 int rc, i;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002489 u32 api_version;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002490
2491 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2492 if (cmd == NULL)
2493 return -ENOMEM;
2494
2495 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2496 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2497
2498 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2499 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2500
2501 rc = mwl8k_post_cmd(hw, &cmd->header);
2502
2503 if (!rc) {
2504 int off;
2505
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002506 api_version = le32_to_cpu(cmd->fw_api_version);
2507 if (priv->device_info->fw_api_ap != api_version) {
2508 printk(KERN_ERR "%s: Unsupported fw API version for %s."
2509 " Expected %d got %d.\n", MWL8K_NAME,
2510 priv->device_info->part_name,
2511 priv->device_info->fw_api_ap,
2512 api_version);
2513 rc = -EINVAL;
2514 goto done;
2515 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002516 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2517 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
2518 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
2519 priv->hw_rev = cmd->hw_rev;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002520 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002521 priv->ap_macids_supported = 0x000000ff;
Yogesh Ashok Poward59c1cf2013-01-25 16:20:03 +05302522 priv->sta_macids_supported = 0x00000100;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002523 priv->num_ampdu_queues = le32_to_cpu(cmd->num_of_ampdu_queues);
2524 if (priv->num_ampdu_queues > MWL8K_MAX_AMPDU_QUEUES) {
2525 wiphy_warn(hw->wiphy, "fw reported %d ampdu queues"
2526 " but we only support %d.\n",
2527 priv->num_ampdu_queues,
2528 MWL8K_MAX_AMPDU_QUEUES);
2529 priv->num_ampdu_queues = MWL8K_MAX_AMPDU_QUEUES;
2530 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002531 off = le32_to_cpu(cmd->rxwrptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002532 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002533
2534 off = le32_to_cpu(cmd->rxrdptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002535 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002536
Brian Cavagnolo73b46322011-03-17 11:58:41 -07002537 priv->txq_offset[0] = le32_to_cpu(cmd->wcbbase0) & 0xffff;
2538 priv->txq_offset[1] = le32_to_cpu(cmd->wcbbase1) & 0xffff;
2539 priv->txq_offset[2] = le32_to_cpu(cmd->wcbbase2) & 0xffff;
2540 priv->txq_offset[3] = le32_to_cpu(cmd->wcbbase3) & 0xffff;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002541
2542 for (i = 0; i < priv->num_ampdu_queues; i++)
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002543 priv->txq_offset[i + MWL8K_TX_WMM_QUEUES] =
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002544 le32_to_cpu(cmd->wcbbase_ampdu[i]) & 0xffff;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002545 }
2546
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002547done:
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002548 kfree(cmd);
2549 return rc;
2550}
2551
2552/*
2553 * CMD_SET_HW_SPEC.
2554 */
2555struct mwl8k_cmd_set_hw_spec {
2556 struct mwl8k_cmd_pkt header;
2557 __u8 hw_rev;
2558 __u8 host_interface;
2559 __le16 num_mcaddrs;
2560 __u8 perm_addr[ETH_ALEN];
2561 __le16 region_code;
2562 __le32 fw_rev;
2563 __le32 ps_cookie;
2564 __le32 caps;
2565 __le32 rx_queue_ptr;
2566 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002567 __le32 tx_queue_ptrs[MWL8K_MAX_TX_QUEUES];
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002568 __le32 flags;
2569 __le32 num_tx_desc_per_queue;
2570 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002571} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002572
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002573/* If enabled, MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY will cause
2574 * packets to expire 500 ms after the timestamp in the tx descriptor. That is,
2575 * the packets that are queued for more than 500ms, will be dropped in the
2576 * hardware. This helps minimizing the issues caused due to head-of-line
2577 * blocking where a slow client can hog the bandwidth and affect traffic to a
2578 * faster client.
2579 */
2580#define MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY 0x00000400
Nishant Sarmukadam3373b282011-06-13 16:26:15 +05302581#define MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR 0x00000200
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002582#define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080
2583#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP 0x00000020
2584#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON 0x00000010
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002585
2586static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw)
2587{
2588 struct mwl8k_priv *priv = hw->priv;
2589 struct mwl8k_cmd_set_hw_spec *cmd;
2590 int rc;
2591 int i;
2592
2593 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2594 if (cmd == NULL)
2595 return -ENOMEM;
2596
2597 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC);
2598 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2599
2600 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2601 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002602 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002603
2604 /*
2605 * Mac80211 stack has Q0 as highest priority and Q3 as lowest in
2606 * that order. Firmware has Q3 as highest priority and Q0 as lowest
2607 * in that order. Map Q3 of mac80211 to Q0 of firmware so that the
2608 * priority is interpreted the right way in firmware.
2609 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002610 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
2611 int j = mwl8k_tx_queues(priv) - 1 - i;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002612 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[j].txd_dma);
2613 }
2614
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002615 cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT |
2616 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP |
Nishant Sarmukadam31d291a2011-04-21 16:34:59 +05302617 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON |
Nishant Sarmukadam3373b282011-06-13 16:26:15 +05302618 MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY |
2619 MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002620 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
2621 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
2622
2623 rc = mwl8k_post_cmd(hw, &cmd->header);
2624 kfree(cmd);
2625
2626 return rc;
2627}
2628
2629/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002630 * CMD_MAC_MULTICAST_ADR.
2631 */
2632struct mwl8k_cmd_mac_multicast_adr {
2633 struct mwl8k_cmd_pkt header;
2634 __le16 action;
2635 __le16 numaddr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002636 __u8 addr[0][ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002637};
2638
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002639#define MWL8K_ENABLE_RX_DIRECTED 0x0001
2640#define MWL8K_ENABLE_RX_MULTICAST 0x0002
2641#define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004
2642#define MWL8K_ENABLE_RX_BROADCAST 0x0008
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002643
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002644static struct mwl8k_cmd_pkt *
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002645__mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti,
Jiri Pirko22bedad32010-04-01 21:22:57 +00002646 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002647{
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002648 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002649 struct mwl8k_cmd_mac_multicast_adr *cmd;
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002650 int size;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002651 int mc_count = 0;
2652
2653 if (mc_list)
2654 mc_count = netdev_hw_addr_list_count(mc_list);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002655
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002656 if (allmulti || mc_count > priv->num_mcaddrs) {
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002657 allmulti = 1;
2658 mc_count = 0;
2659 }
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002660
2661 size = sizeof(*cmd) + mc_count * ETH_ALEN;
2662
2663 cmd = kzalloc(size, GFP_ATOMIC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002664 if (cmd == NULL)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002665 return NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002666
2667 cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
2668 cmd->header.length = cpu_to_le16(size);
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002669 cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED |
2670 MWL8K_ENABLE_RX_BROADCAST);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002671
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002672 if (allmulti) {
2673 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST);
2674 } else if (mc_count) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002675 struct netdev_hw_addr *ha;
2676 int i = 0;
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002677
2678 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
2679 cmd->numaddr = cpu_to_le16(mc_count);
Jiri Pirko22bedad32010-04-01 21:22:57 +00002680 netdev_hw_addr_list_for_each(ha, mc_list) {
2681 memcpy(cmd->addr[i], ha->addr, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002682 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002683 }
2684
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002685 return &cmd->header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002686}
2687
2688/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002689 * CMD_GET_STAT.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002690 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002691struct mwl8k_cmd_get_stat {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002692 struct mwl8k_cmd_pkt header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002693 __le32 stats[64];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002694} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002695
2696#define MWL8K_STAT_ACK_FAILURE 9
2697#define MWL8K_STAT_RTS_FAILURE 12
2698#define MWL8K_STAT_FCS_ERROR 24
2699#define MWL8K_STAT_RTS_SUCCESS 11
2700
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002701static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw,
2702 struct ieee80211_low_level_stats *stats)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002703{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002704 struct mwl8k_cmd_get_stat *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002705 int rc;
2706
2707 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2708 if (cmd == NULL)
2709 return -ENOMEM;
2710
2711 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
2712 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002713
2714 rc = mwl8k_post_cmd(hw, &cmd->header);
2715 if (!rc) {
2716 stats->dot11ACKFailureCount =
2717 le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
2718 stats->dot11RTSFailureCount =
2719 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
2720 stats->dot11FCSErrorCount =
2721 le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
2722 stats->dot11RTSSuccessCount =
2723 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
2724 }
2725 kfree(cmd);
2726
2727 return rc;
2728}
2729
2730/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002731 * CMD_RADIO_CONTROL.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002732 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002733struct mwl8k_cmd_radio_control {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002734 struct mwl8k_cmd_pkt header;
2735 __le16 action;
2736 __le16 control;
2737 __le16 radio_on;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002738} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002739
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002740static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002741mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002742{
2743 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002744 struct mwl8k_cmd_radio_control *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002745 int rc;
2746
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002747 if (enable == priv->radio_on && !force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002748 return 0;
2749
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002750 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2751 if (cmd == NULL)
2752 return -ENOMEM;
2753
2754 cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
2755 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2756 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002757 cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002758 cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
2759
2760 rc = mwl8k_post_cmd(hw, &cmd->header);
2761 kfree(cmd);
2762
2763 if (!rc)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002764 priv->radio_on = enable;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002765
2766 return rc;
2767}
2768
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002769static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002770{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002771 return mwl8k_cmd_radio_control(hw, 0, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002772}
2773
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002774static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002775{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002776 return mwl8k_cmd_radio_control(hw, 1, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002777}
2778
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002779static int
2780mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
2781{
Lennert Buytenhek99200a992009-11-30 18:31:40 +01002782 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002783
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002784 priv->radio_short_preamble = short_preamble;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002785
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002786 return mwl8k_cmd_radio_control(hw, 1, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002787}
2788
2789/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002790 * CMD_RF_TX_POWER.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002791 */
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002792#define MWL8K_RF_TX_POWER_LEVEL_TOTAL 8
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002793
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002794struct mwl8k_cmd_rf_tx_power {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002795 struct mwl8k_cmd_pkt header;
2796 __le16 action;
2797 __le16 support_level;
2798 __le16 current_level;
2799 __le16 reserved;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002800 __le16 power_level_list[MWL8K_RF_TX_POWER_LEVEL_TOTAL];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002801} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002802
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002803static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw *hw, int dBm)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002804{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002805 struct mwl8k_cmd_rf_tx_power *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002806 int rc;
2807
2808 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2809 if (cmd == NULL)
2810 return -ENOMEM;
2811
2812 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
2813 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2814 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2815 cmd->support_level = cpu_to_le16(dBm);
2816
2817 rc = mwl8k_post_cmd(hw, &cmd->header);
2818 kfree(cmd);
2819
2820 return rc;
2821}
2822
2823/*
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002824 * CMD_TX_POWER.
2825 */
2826#define MWL8K_TX_POWER_LEVEL_TOTAL 12
2827
2828struct mwl8k_cmd_tx_power {
2829 struct mwl8k_cmd_pkt header;
2830 __le16 action;
2831 __le16 band;
2832 __le16 channel;
2833 __le16 bw;
2834 __le16 sub_ch;
2835 __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05302836} __packed;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002837
2838static int mwl8k_cmd_tx_power(struct ieee80211_hw *hw,
2839 struct ieee80211_conf *conf,
2840 unsigned short pwr)
2841{
2842 struct ieee80211_channel *channel = conf->channel;
2843 struct mwl8k_cmd_tx_power *cmd;
2844 int rc;
2845 int i;
2846
2847 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2848 if (cmd == NULL)
2849 return -ENOMEM;
2850
2851 cmd->header.code = cpu_to_le16(MWL8K_CMD_TX_POWER);
2852 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2853 cmd->action = cpu_to_le16(MWL8K_CMD_SET_LIST);
2854
2855 if (channel->band == IEEE80211_BAND_2GHZ)
2856 cmd->band = cpu_to_le16(0x1);
2857 else if (channel->band == IEEE80211_BAND_5GHZ)
2858 cmd->band = cpu_to_le16(0x4);
2859
Yogesh Ashok Powar604c4ef2012-01-17 15:45:15 +05302860 cmd->channel = cpu_to_le16(channel->hw_value);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002861
2862 if (conf->channel_type == NL80211_CHAN_NO_HT ||
2863 conf->channel_type == NL80211_CHAN_HT20) {
2864 cmd->bw = cpu_to_le16(0x2);
2865 } else {
2866 cmd->bw = cpu_to_le16(0x4);
2867 if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2868 cmd->sub_ch = cpu_to_le16(0x3);
2869 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2870 cmd->sub_ch = cpu_to_le16(0x1);
2871 }
2872
2873 for (i = 0; i < MWL8K_TX_POWER_LEVEL_TOTAL; i++)
2874 cmd->power_level_list[i] = cpu_to_le16(pwr);
2875
2876 rc = mwl8k_post_cmd(hw, &cmd->header);
2877 kfree(cmd);
2878
2879 return rc;
2880}
2881
2882/*
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002883 * CMD_RF_ANTENNA.
2884 */
2885struct mwl8k_cmd_rf_antenna {
2886 struct mwl8k_cmd_pkt header;
2887 __le16 antenna;
2888 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002889} __packed;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002890
2891#define MWL8K_RF_ANTENNA_RX 1
2892#define MWL8K_RF_ANTENNA_TX 2
2893
2894static int
2895mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask)
2896{
2897 struct mwl8k_cmd_rf_antenna *cmd;
2898 int rc;
2899
2900 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2901 if (cmd == NULL)
2902 return -ENOMEM;
2903
2904 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA);
2905 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2906 cmd->antenna = cpu_to_le16(antenna);
2907 cmd->mode = cpu_to_le16(mask);
2908
2909 rc = mwl8k_post_cmd(hw, &cmd->header);
2910 kfree(cmd);
2911
2912 return rc;
2913}
2914
2915/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002916 * CMD_SET_BEACON.
2917 */
2918struct mwl8k_cmd_set_beacon {
2919 struct mwl8k_cmd_pkt header;
2920 __le16 beacon_len;
2921 __u8 beacon[0];
2922};
2923
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002924static int mwl8k_cmd_set_beacon(struct ieee80211_hw *hw,
2925 struct ieee80211_vif *vif, u8 *beacon, int len)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002926{
2927 struct mwl8k_cmd_set_beacon *cmd;
2928 int rc;
2929
2930 cmd = kzalloc(sizeof(*cmd) + len, GFP_KERNEL);
2931 if (cmd == NULL)
2932 return -ENOMEM;
2933
2934 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_BEACON);
2935 cmd->header.length = cpu_to_le16(sizeof(*cmd) + len);
2936 cmd->beacon_len = cpu_to_le16(len);
2937 memcpy(cmd->beacon, beacon, len);
2938
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002939 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002940 kfree(cmd);
2941
2942 return rc;
2943}
2944
2945/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002946 * CMD_SET_PRE_SCAN.
2947 */
2948struct mwl8k_cmd_set_pre_scan {
2949 struct mwl8k_cmd_pkt header;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002950} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002951
2952static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
2953{
2954 struct mwl8k_cmd_set_pre_scan *cmd;
2955 int rc;
2956
2957 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2958 if (cmd == NULL)
2959 return -ENOMEM;
2960
2961 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
2962 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2963
2964 rc = mwl8k_post_cmd(hw, &cmd->header);
2965 kfree(cmd);
2966
2967 return rc;
2968}
2969
2970/*
2971 * CMD_SET_POST_SCAN.
2972 */
2973struct mwl8k_cmd_set_post_scan {
2974 struct mwl8k_cmd_pkt header;
2975 __le32 isibss;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002976 __u8 bssid[ETH_ALEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002977} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002978
2979static int
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002980mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002981{
2982 struct mwl8k_cmd_set_post_scan *cmd;
2983 int rc;
2984
2985 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2986 if (cmd == NULL)
2987 return -ENOMEM;
2988
2989 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
2990 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2991 cmd->isibss = 0;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002992 memcpy(cmd->bssid, mac, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002993
2994 rc = mwl8k_post_cmd(hw, &cmd->header);
2995 kfree(cmd);
2996
2997 return rc;
2998}
2999
3000/*
3001 * CMD_SET_RF_CHANNEL.
3002 */
3003struct mwl8k_cmd_set_rf_channel {
3004 struct mwl8k_cmd_pkt header;
3005 __le16 action;
3006 __u8 current_channel;
3007 __le32 channel_flags;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003008} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003009
3010static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003011 struct ieee80211_conf *conf)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003012{
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003013 struct ieee80211_channel *channel = conf->channel;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003014 struct mwl8k_cmd_set_rf_channel *cmd;
3015 int rc;
3016
3017 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3018 if (cmd == NULL)
3019 return -ENOMEM;
3020
3021 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
3022 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3023 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3024 cmd->current_channel = channel->hw_value;
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003025
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003026 if (channel->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003027 cmd->channel_flags |= cpu_to_le32(0x00000001);
Lennert Buytenhek42574ea2010-01-12 13:49:18 +01003028 else if (channel->band == IEEE80211_BAND_5GHZ)
3029 cmd->channel_flags |= cpu_to_le32(0x00000004);
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003030
3031 if (conf->channel_type == NL80211_CHAN_NO_HT ||
3032 conf->channel_type == NL80211_CHAN_HT20)
3033 cmd->channel_flags |= cpu_to_le32(0x00000080);
3034 else if (conf->channel_type == NL80211_CHAN_HT40MINUS)
3035 cmd->channel_flags |= cpu_to_le32(0x000001900);
3036 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
3037 cmd->channel_flags |= cpu_to_le32(0x000000900);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003038
3039 rc = mwl8k_post_cmd(hw, &cmd->header);
3040 kfree(cmd);
3041
3042 return rc;
3043}
3044
3045/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003046 * CMD_SET_AID.
3047 */
3048#define MWL8K_FRAME_PROT_DISABLED 0x00
3049#define MWL8K_FRAME_PROT_11G 0x07
3050#define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
3051#define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
3052
3053struct mwl8k_cmd_update_set_aid {
3054 struct mwl8k_cmd_pkt header;
3055 __le16 aid;
3056
3057 /* AP's MAC address (BSSID) */
3058 __u8 bssid[ETH_ALEN];
3059 __le16 protection_mode;
3060 __u8 supp_rates[14];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003061} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003062
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003063static void legacy_rate_mask_to_array(u8 *rates, u32 mask)
3064{
3065 int i;
3066 int j;
3067
3068 /*
3069 * Clear nonstandard rates 4 and 13.
3070 */
3071 mask &= 0x1fef;
3072
3073 for (i = 0, j = 0; i < 14; i++) {
3074 if (mask & (1 << i))
Lennert Buytenhek777ad372010-01-12 13:48:04 +01003075 rates[j++] = mwl8k_rates_24[i].hw_value;
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003076 }
3077}
3078
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003079static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003080mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
3081 struct ieee80211_vif *vif, u32 legacy_rate_mask)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003082{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003083 struct mwl8k_cmd_update_set_aid *cmd;
3084 u16 prot_mode;
3085 int rc;
3086
3087 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3088 if (cmd == NULL)
3089 return -ENOMEM;
3090
3091 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
3092 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003093 cmd->aid = cpu_to_le16(vif->bss_conf.aid);
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003094 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003095
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003096 if (vif->bss_conf.use_cts_prot) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003097 prot_mode = MWL8K_FRAME_PROT_11G;
3098 } else {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003099 switch (vif->bss_conf.ht_operation_mode &
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003100 IEEE80211_HT_OP_MODE_PROTECTION) {
3101 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
3102 prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
3103 break;
3104 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
3105 prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
3106 break;
3107 default:
3108 prot_mode = MWL8K_FRAME_PROT_DISABLED;
3109 break;
3110 }
3111 }
3112 cmd->protection_mode = cpu_to_le16(prot_mode);
3113
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003114 legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003115
3116 rc = mwl8k_post_cmd(hw, &cmd->header);
3117 kfree(cmd);
3118
3119 return rc;
3120}
3121
3122/*
3123 * CMD_SET_RATE.
3124 */
3125struct mwl8k_cmd_set_rate {
3126 struct mwl8k_cmd_pkt header;
3127 __u8 legacy_rates[14];
3128
3129 /* Bitmap for supported MCS codes. */
3130 __u8 mcs_set[16];
3131 __u8 reserved[16];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003132} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003133
3134static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003135mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003136 u32 legacy_rate_mask, u8 *mcs_rates)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003137{
3138 struct mwl8k_cmd_set_rate *cmd;
3139 int rc;
3140
3141 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3142 if (cmd == NULL)
3143 return -ENOMEM;
3144
3145 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE);
3146 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003147 legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003148 memcpy(cmd->mcs_set, mcs_rates, 16);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003149
3150 rc = mwl8k_post_cmd(hw, &cmd->header);
3151 kfree(cmd);
3152
3153 return rc;
3154}
3155
3156/*
3157 * CMD_FINALIZE_JOIN.
3158 */
3159#define MWL8K_FJ_BEACON_MAXLEN 128
3160
3161struct mwl8k_cmd_finalize_join {
3162 struct mwl8k_cmd_pkt header;
3163 __le32 sleep_interval; /* Number of beacon periods to sleep */
3164 __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003165} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003166
3167static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame,
3168 int framelen, int dtim)
3169{
3170 struct mwl8k_cmd_finalize_join *cmd;
3171 struct ieee80211_mgmt *payload = frame;
3172 int payload_len;
3173 int rc;
3174
3175 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3176 if (cmd == NULL)
3177 return -ENOMEM;
3178
3179 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN);
3180 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3181 cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
3182
3183 payload_len = framelen - ieee80211_hdrlen(payload->frame_control);
3184 if (payload_len < 0)
3185 payload_len = 0;
3186 else if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
3187 payload_len = MWL8K_FJ_BEACON_MAXLEN;
3188
3189 memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
3190
3191 rc = mwl8k_post_cmd(hw, &cmd->header);
3192 kfree(cmd);
3193
3194 return rc;
3195}
3196
3197/*
3198 * CMD_SET_RTS_THRESHOLD.
3199 */
3200struct mwl8k_cmd_set_rts_threshold {
3201 struct mwl8k_cmd_pkt header;
3202 __le16 action;
3203 __le16 threshold;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003204} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003205
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003206static int
3207mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw, int rts_thresh)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003208{
3209 struct mwl8k_cmd_set_rts_threshold *cmd;
3210 int rc;
3211
3212 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3213 if (cmd == NULL)
3214 return -ENOMEM;
3215
3216 cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
3217 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003218 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3219 cmd->threshold = cpu_to_le16(rts_thresh);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003220
3221 rc = mwl8k_post_cmd(hw, &cmd->header);
3222 kfree(cmd);
3223
3224 return rc;
3225}
3226
3227/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003228 * CMD_SET_SLOT.
3229 */
3230struct mwl8k_cmd_set_slot {
3231 struct mwl8k_cmd_pkt header;
3232 __le16 action;
3233 __u8 short_slot;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003234} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003235
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003236static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003237{
3238 struct mwl8k_cmd_set_slot *cmd;
3239 int rc;
3240
3241 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3242 if (cmd == NULL)
3243 return -ENOMEM;
3244
3245 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
3246 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3247 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003248 cmd->short_slot = short_slot_time;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003249
3250 rc = mwl8k_post_cmd(hw, &cmd->header);
3251 kfree(cmd);
3252
3253 return rc;
3254}
3255
3256/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003257 * CMD_SET_EDCA_PARAMS.
3258 */
3259struct mwl8k_cmd_set_edca_params {
3260 struct mwl8k_cmd_pkt header;
3261
3262 /* See MWL8K_SET_EDCA_XXX below */
3263 __le16 action;
3264
3265 /* TX opportunity in units of 32 us */
3266 __le16 txop;
3267
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003268 union {
3269 struct {
3270 /* Log exponent of max contention period: 0...15 */
3271 __le32 log_cw_max;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003272
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003273 /* Log exponent of min contention period: 0...15 */
3274 __le32 log_cw_min;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003275
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003276 /* Adaptive interframe spacing in units of 32us */
3277 __u8 aifs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003278
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003279 /* TX queue to configure */
3280 __u8 txq;
3281 } ap;
3282 struct {
3283 /* Log exponent of max contention period: 0...15 */
3284 __u8 log_cw_max;
3285
3286 /* Log exponent of min contention period: 0...15 */
3287 __u8 log_cw_min;
3288
3289 /* Adaptive interframe spacing in units of 32us */
3290 __u8 aifs;
3291
3292 /* TX queue to configure */
3293 __u8 txq;
3294 } sta;
3295 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003296} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003297
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003298#define MWL8K_SET_EDCA_CW 0x01
3299#define MWL8K_SET_EDCA_TXOP 0x02
3300#define MWL8K_SET_EDCA_AIFS 0x04
3301
3302#define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
3303 MWL8K_SET_EDCA_TXOP | \
3304 MWL8K_SET_EDCA_AIFS)
3305
3306static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003307mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
3308 __u16 cw_min, __u16 cw_max,
3309 __u8 aifs, __u16 txop)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003310{
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003311 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003312 struct mwl8k_cmd_set_edca_params *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003313 int rc;
3314
3315 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3316 if (cmd == NULL)
3317 return -ENOMEM;
3318
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003319 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
3320 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003321 cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
3322 cmd->txop = cpu_to_le16(txop);
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003323 if (priv->ap_fw) {
3324 cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1));
3325 cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1));
3326 cmd->ap.aifs = aifs;
3327 cmd->ap.txq = qnum;
3328 } else {
3329 cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1);
3330 cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1);
3331 cmd->sta.aifs = aifs;
3332 cmd->sta.txq = qnum;
3333 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003334
3335 rc = mwl8k_post_cmd(hw, &cmd->header);
3336 kfree(cmd);
3337
3338 return rc;
3339}
3340
3341/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003342 * CMD_SET_WMM_MODE.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003343 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003344struct mwl8k_cmd_set_wmm_mode {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003345 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003346 __le16 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003347} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003348
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003349static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw *hw, bool enable)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003350{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003351 struct mwl8k_priv *priv = hw->priv;
3352 struct mwl8k_cmd_set_wmm_mode *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003353 int rc;
3354
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003355 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3356 if (cmd == NULL)
3357 return -ENOMEM;
3358
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003359 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003360 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003361 cmd->action = cpu_to_le16(!!enable);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003362
3363 rc = mwl8k_post_cmd(hw, &cmd->header);
3364 kfree(cmd);
Lennert Buytenhek16cec432009-11-30 18:14:23 +01003365
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003366 if (!rc)
3367 priv->wmm_enabled = enable;
3368
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003369 return rc;
3370}
3371
3372/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003373 * CMD_MIMO_CONFIG.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003374 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003375struct mwl8k_cmd_mimo_config {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003376 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003377 __le32 action;
3378 __u8 rx_antenna_map;
3379 __u8 tx_antenna_map;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003380} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003381
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003382static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003383{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003384 struct mwl8k_cmd_mimo_config *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003385 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003386
3387 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3388 if (cmd == NULL)
3389 return -ENOMEM;
3390
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003391 cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003392 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003393 cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET);
3394 cmd->rx_antenna_map = rx;
3395 cmd->tx_antenna_map = tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003396
3397 rc = mwl8k_post_cmd(hw, &cmd->header);
3398 kfree(cmd);
3399
3400 return rc;
3401}
3402
3403/*
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003404 * CMD_USE_FIXED_RATE (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003405 */
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003406struct mwl8k_cmd_use_fixed_rate_sta {
3407 struct mwl8k_cmd_pkt header;
3408 __le32 action;
3409 __le32 allow_rate_drop;
3410 __le32 num_rates;
3411 struct {
3412 __le32 is_ht_rate;
3413 __le32 enable_retry;
3414 __le32 rate;
3415 __le32 retry_count;
3416 } rate_entry[8];
3417 __le32 rate_type;
3418 __le32 reserved1;
3419 __le32 reserved2;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003420} __packed;
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003421
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003422#define MWL8K_USE_AUTO_RATE 0x0002
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003423#define MWL8K_UCAST_RATE 0
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003424
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003425static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003426{
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003427 struct mwl8k_cmd_use_fixed_rate_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003428 int rc;
3429
3430 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3431 if (cmd == NULL)
3432 return -ENOMEM;
3433
3434 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3435 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003436 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3437 cmd->rate_type = cpu_to_le32(MWL8K_UCAST_RATE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003438
3439 rc = mwl8k_post_cmd(hw, &cmd->header);
3440 kfree(cmd);
3441
3442 return rc;
3443}
3444
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003445/*
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003446 * CMD_USE_FIXED_RATE (AP version).
3447 */
3448struct mwl8k_cmd_use_fixed_rate_ap {
3449 struct mwl8k_cmd_pkt header;
3450 __le32 action;
3451 __le32 allow_rate_drop;
3452 __le32 num_rates;
3453 struct mwl8k_rate_entry_ap {
3454 __le32 is_ht_rate;
3455 __le32 enable_retry;
3456 __le32 rate;
3457 __le32 retry_count;
3458 } rate_entry[4];
3459 u8 multicast_rate;
3460 u8 multicast_rate_type;
3461 u8 management_rate;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003462} __packed;
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003463
3464static int
3465mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw *hw, int mcast, int mgmt)
3466{
3467 struct mwl8k_cmd_use_fixed_rate_ap *cmd;
3468 int rc;
3469
3470 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3471 if (cmd == NULL)
3472 return -ENOMEM;
3473
3474 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3475 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3476 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3477 cmd->multicast_rate = mcast;
3478 cmd->management_rate = mgmt;
3479
3480 rc = mwl8k_post_cmd(hw, &cmd->header);
3481 kfree(cmd);
3482
3483 return rc;
3484}
3485
3486/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003487 * CMD_ENABLE_SNIFFER.
3488 */
3489struct mwl8k_cmd_enable_sniffer {
3490 struct mwl8k_cmd_pkt header;
3491 __le32 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003492} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003493
3494static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable)
3495{
3496 struct mwl8k_cmd_enable_sniffer *cmd;
3497 int rc;
3498
3499 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3500 if (cmd == NULL)
3501 return -ENOMEM;
3502
3503 cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
3504 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3505 cmd->action = cpu_to_le32(!!enable);
3506
3507 rc = mwl8k_post_cmd(hw, &cmd->header);
3508 kfree(cmd);
3509
3510 return rc;
3511}
3512
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303513struct mwl8k_cmd_update_mac_addr {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003514 struct mwl8k_cmd_pkt header;
3515 union {
3516 struct {
3517 __le16 mac_type;
3518 __u8 mac_addr[ETH_ALEN];
3519 } mbss;
3520 __u8 mac_addr[ETH_ALEN];
3521 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003522} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003523
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003524#define MWL8K_MAC_TYPE_PRIMARY_CLIENT 0
3525#define MWL8K_MAC_TYPE_SECONDARY_CLIENT 1
3526#define MWL8K_MAC_TYPE_PRIMARY_AP 2
3527#define MWL8K_MAC_TYPE_SECONDARY_AP 3
Lennert Buytenheka9e00b12010-01-08 18:31:30 +01003528
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303529static int mwl8k_cmd_update_mac_addr(struct ieee80211_hw *hw,
3530 struct ieee80211_vif *vif, u8 *mac, bool set)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003531{
3532 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003533 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303534 struct mwl8k_cmd_update_mac_addr *cmd;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003535 int mac_type;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003536 int rc;
3537
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003538 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3539 if (vif != NULL && vif->type == NL80211_IFTYPE_STATION) {
3540 if (mwl8k_vif->macid + 1 == ffs(priv->sta_macids_supported))
Yogesh Ashok Powaraf458832013-01-25 16:20:12 +05303541 if (priv->ap_fw)
3542 mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
3543 else
3544 mac_type = MWL8K_MAC_TYPE_PRIMARY_CLIENT;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003545 else
3546 mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
3547 } else if (vif != NULL && vif->type == NL80211_IFTYPE_AP) {
3548 if (mwl8k_vif->macid + 1 == ffs(priv->ap_macids_supported))
3549 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3550 else
3551 mac_type = MWL8K_MAC_TYPE_SECONDARY_AP;
3552 }
3553
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003554 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3555 if (cmd == NULL)
3556 return -ENOMEM;
3557
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303558 if (set)
3559 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR);
3560 else
3561 cmd->header.code = cpu_to_le16(MWL8K_CMD_DEL_MAC_ADDR);
3562
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003563 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3564 if (priv->ap_fw) {
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003565 cmd->mbss.mac_type = cpu_to_le16(mac_type);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003566 memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN);
3567 } else {
3568 memcpy(cmd->mac_addr, mac, ETH_ALEN);
3569 }
3570
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003571 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003572 kfree(cmd);
3573
3574 return rc;
3575}
3576
3577/*
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303578 * MWL8K_CMD_SET_MAC_ADDR.
3579 */
3580static inline int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw,
3581 struct ieee80211_vif *vif, u8 *mac)
3582{
3583 return mwl8k_cmd_update_mac_addr(hw, vif, mac, true);
3584}
3585
3586/*
3587 * MWL8K_CMD_DEL_MAC_ADDR.
3588 */
3589static inline int mwl8k_cmd_del_mac_addr(struct ieee80211_hw *hw,
3590 struct ieee80211_vif *vif, u8 *mac)
3591{
3592 return mwl8k_cmd_update_mac_addr(hw, vif, mac, false);
3593}
3594
3595/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003596 * CMD_SET_RATEADAPT_MODE.
3597 */
3598struct mwl8k_cmd_set_rate_adapt_mode {
3599 struct mwl8k_cmd_pkt header;
3600 __le16 action;
3601 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003602} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003603
3604static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode)
3605{
3606 struct mwl8k_cmd_set_rate_adapt_mode *cmd;
3607 int rc;
3608
3609 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3610 if (cmd == NULL)
3611 return -ENOMEM;
3612
3613 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
3614 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3615 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3616 cmd->mode = cpu_to_le16(mode);
3617
3618 rc = mwl8k_post_cmd(hw, &cmd->header);
3619 kfree(cmd);
3620
3621 return rc;
3622}
3623
3624/*
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003625 * CMD_GET_WATCHDOG_BITMAP.
3626 */
3627struct mwl8k_cmd_get_watchdog_bitmap {
3628 struct mwl8k_cmd_pkt header;
3629 u8 bitmap;
3630} __packed;
3631
3632static int mwl8k_cmd_get_watchdog_bitmap(struct ieee80211_hw *hw, u8 *bitmap)
3633{
3634 struct mwl8k_cmd_get_watchdog_bitmap *cmd;
3635 int rc;
3636
3637 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3638 if (cmd == NULL)
3639 return -ENOMEM;
3640
3641 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_WATCHDOG_BITMAP);
3642 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3643
3644 rc = mwl8k_post_cmd(hw, &cmd->header);
3645 if (!rc)
3646 *bitmap = cmd->bitmap;
3647
3648 kfree(cmd);
3649
3650 return rc;
3651}
3652
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303653#define MWL8K_WMM_QUEUE_NUMBER 3
3654
3655static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
3656 u8 idx);
3657
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003658static void mwl8k_watchdog_ba_events(struct work_struct *work)
3659{
3660 int rc;
3661 u8 bitmap = 0, stream_index;
3662 struct mwl8k_ampdu_stream *streams;
3663 struct mwl8k_priv *priv =
3664 container_of(work, struct mwl8k_priv, watchdog_ba_handle);
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303665 struct ieee80211_hw *hw = priv->hw;
3666 int i;
3667 u32 status = 0;
3668
3669 mwl8k_fw_lock(hw);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003670
3671 rc = mwl8k_cmd_get_watchdog_bitmap(priv->hw, &bitmap);
3672 if (rc)
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303673 goto done;
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003674
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303675 spin_lock(&priv->stream_lock);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003676
3677 /* the bitmap is the hw queue number. Map it to the ampdu queue. */
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303678 for (i = 0; i < TOTAL_HW_TX_QUEUES; i++) {
3679 if (bitmap & (1 << i)) {
3680 stream_index = (i + MWL8K_WMM_QUEUE_NUMBER) %
3681 TOTAL_HW_TX_QUEUES;
3682 streams = &priv->ampdu[stream_index];
3683 if (streams->state == AMPDU_STREAM_ACTIVE) {
3684 ieee80211_stop_tx_ba_session(streams->sta,
3685 streams->tid);
3686 spin_unlock(&priv->stream_lock);
3687 mwl8k_destroy_ba(hw, stream_index);
3688 spin_lock(&priv->stream_lock);
3689 }
3690 }
3691 }
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003692
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303693 spin_unlock(&priv->stream_lock);
3694done:
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05303695 atomic_dec(&priv->watchdog_event_pending);
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303696 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3697 iowrite32((status | MWL8K_A2H_INT_BA_WATCHDOG),
3698 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3699 mwl8k_fw_unlock(hw);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003700 return;
3701}
3702
3703
3704/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003705 * CMD_BSS_START.
3706 */
3707struct mwl8k_cmd_bss_start {
3708 struct mwl8k_cmd_pkt header;
3709 __le32 enable;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003710} __packed;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003711
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003712static int mwl8k_cmd_bss_start(struct ieee80211_hw *hw,
3713 struct ieee80211_vif *vif, int enable)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003714{
3715 struct mwl8k_cmd_bss_start *cmd;
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303716 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
3717 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003718 int rc;
3719
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303720 if (enable && (priv->running_bsses & (1 << mwl8k_vif->macid)))
3721 return 0;
3722
3723 if (!enable && !(priv->running_bsses & (1 << mwl8k_vif->macid)))
3724 return 0;
3725
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003726 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3727 if (cmd == NULL)
3728 return -ENOMEM;
3729
3730 cmd->header.code = cpu_to_le16(MWL8K_CMD_BSS_START);
3731 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3732 cmd->enable = cpu_to_le32(enable);
3733
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003734 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003735 kfree(cmd);
3736
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303737 if (!rc) {
3738 if (enable)
3739 priv->running_bsses |= (1 << mwl8k_vif->macid);
3740 else
3741 priv->running_bsses &= ~(1 << mwl8k_vif->macid);
3742 }
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003743 return rc;
3744}
3745
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303746static void mwl8k_enable_bsses(struct ieee80211_hw *hw, bool enable, u32 bitmap)
3747{
3748 struct mwl8k_priv *priv = hw->priv;
3749 struct mwl8k_vif *mwl8k_vif, *tmp_vif;
3750 struct ieee80211_vif *vif;
3751
3752 list_for_each_entry_safe(mwl8k_vif, tmp_vif, &priv->vif_list, list) {
3753 vif = mwl8k_vif->vif;
3754
3755 if (!(bitmap & (1 << mwl8k_vif->macid)))
3756 continue;
3757
3758 if (vif->type == NL80211_IFTYPE_AP)
3759 mwl8k_cmd_bss_start(hw, vif, enable);
3760 }
3761}
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003762/*
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003763 * CMD_BASTREAM.
3764 */
3765
3766/*
3767 * UPSTREAM is tx direction
3768 */
3769#define BASTREAM_FLAG_DIRECTION_UPSTREAM 0x00
3770#define BASTREAM_FLAG_IMMEDIATE_TYPE 0x01
3771
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303772enum ba_stream_action_type {
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003773 MWL8K_BA_CREATE,
3774 MWL8K_BA_UPDATE,
3775 MWL8K_BA_DESTROY,
3776 MWL8K_BA_FLUSH,
3777 MWL8K_BA_CHECK,
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303778};
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003779
3780
3781struct mwl8k_create_ba_stream {
3782 __le32 flags;
3783 __le32 idle_thrs;
3784 __le32 bar_thrs;
3785 __le32 window_size;
3786 u8 peer_mac_addr[6];
3787 u8 dialog_token;
3788 u8 tid;
3789 u8 queue_id;
3790 u8 param_info;
3791 __le32 ba_context;
3792 u8 reset_seq_no_flag;
3793 __le16 curr_seq_no;
3794 u8 sta_src_mac_addr[6];
3795} __packed;
3796
3797struct mwl8k_destroy_ba_stream {
3798 __le32 flags;
3799 __le32 ba_context;
3800} __packed;
3801
3802struct mwl8k_cmd_bastream {
3803 struct mwl8k_cmd_pkt header;
3804 __le32 action;
3805 union {
3806 struct mwl8k_create_ba_stream create_params;
3807 struct mwl8k_destroy_ba_stream destroy_params;
3808 };
3809} __packed;
3810
3811static int
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303812mwl8k_check_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
3813 struct ieee80211_vif *vif)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003814{
3815 struct mwl8k_cmd_bastream *cmd;
3816 int rc;
3817
3818 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3819 if (cmd == NULL)
3820 return -ENOMEM;
3821
3822 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3823 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3824
3825 cmd->action = cpu_to_le32(MWL8K_BA_CHECK);
3826
3827 cmd->create_params.queue_id = stream->idx;
3828 memcpy(&cmd->create_params.peer_mac_addr[0], stream->sta->addr,
3829 ETH_ALEN);
3830 cmd->create_params.tid = stream->tid;
3831
3832 cmd->create_params.flags =
3833 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE) |
3834 cpu_to_le32(BASTREAM_FLAG_DIRECTION_UPSTREAM);
3835
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303836 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003837
3838 kfree(cmd);
3839
3840 return rc;
3841}
3842
3843static int
3844mwl8k_create_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303845 u8 buf_size, struct ieee80211_vif *vif)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003846{
3847 struct mwl8k_cmd_bastream *cmd;
3848 int rc;
3849
3850 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3851 if (cmd == NULL)
3852 return -ENOMEM;
3853
3854
3855 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3856 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3857
3858 cmd->action = cpu_to_le32(MWL8K_BA_CREATE);
3859
3860 cmd->create_params.bar_thrs = cpu_to_le32((u32)buf_size);
3861 cmd->create_params.window_size = cpu_to_le32((u32)buf_size);
3862 cmd->create_params.queue_id = stream->idx;
3863
3864 memcpy(cmd->create_params.peer_mac_addr, stream->sta->addr, ETH_ALEN);
3865 cmd->create_params.tid = stream->tid;
3866 cmd->create_params.curr_seq_no = cpu_to_le16(0);
3867 cmd->create_params.reset_seq_no_flag = 1;
3868
3869 cmd->create_params.param_info =
3870 (stream->sta->ht_cap.ampdu_factor &
3871 IEEE80211_HT_AMPDU_PARM_FACTOR) |
3872 ((stream->sta->ht_cap.ampdu_density << 2) &
3873 IEEE80211_HT_AMPDU_PARM_DENSITY);
3874
3875 cmd->create_params.flags =
3876 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE |
3877 BASTREAM_FLAG_DIRECTION_UPSTREAM);
3878
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303879 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003880
3881 wiphy_debug(hw->wiphy, "Created a BA stream for %pM : tid %d\n",
3882 stream->sta->addr, stream->tid);
3883 kfree(cmd);
3884
3885 return rc;
3886}
3887
3888static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05303889 u8 idx)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003890{
3891 struct mwl8k_cmd_bastream *cmd;
3892
3893 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3894 if (cmd == NULL)
3895 return;
3896
3897 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3898 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3899 cmd->action = cpu_to_le32(MWL8K_BA_DESTROY);
3900
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05303901 cmd->destroy_params.ba_context = cpu_to_le32(idx);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003902 mwl8k_post_cmd(hw, &cmd->header);
3903
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05303904 wiphy_debug(hw->wiphy, "Deleted BA stream index %d\n", idx);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003905
3906 kfree(cmd);
3907}
3908
3909/*
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003910 * CMD_SET_NEW_STN.
3911 */
3912struct mwl8k_cmd_set_new_stn {
3913 struct mwl8k_cmd_pkt header;
3914 __le16 aid;
3915 __u8 mac_addr[6];
3916 __le16 stn_id;
3917 __le16 action;
3918 __le16 rsvd;
3919 __le32 legacy_rates;
3920 __u8 ht_rates[4];
3921 __le16 cap_info;
3922 __le16 ht_capabilities_info;
3923 __u8 mac_ht_param_info;
3924 __u8 rev;
3925 __u8 control_channel;
3926 __u8 add_channel;
3927 __le16 op_mode;
3928 __le16 stbc;
3929 __u8 add_qos_info;
3930 __u8 is_qos_sta;
3931 __le32 fw_sta_ptr;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003932} __packed;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003933
3934#define MWL8K_STA_ACTION_ADD 0
3935#define MWL8K_STA_ACTION_REMOVE 2
3936
3937static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw *hw,
3938 struct ieee80211_vif *vif,
3939 struct ieee80211_sta *sta)
3940{
3941 struct mwl8k_cmd_set_new_stn *cmd;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003942 u32 rates;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003943 int rc;
3944
3945 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3946 if (cmd == NULL)
3947 return -ENOMEM;
3948
3949 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3950 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3951 cmd->aid = cpu_to_le16(sta->aid);
3952 memcpy(cmd->mac_addr, sta->addr, ETH_ALEN);
3953 cmd->stn_id = cpu_to_le16(sta->aid);
3954 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_ADD);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003955 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
3956 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
3957 else
3958 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
3959 cmd->legacy_rates = cpu_to_le32(rates);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003960 if (sta->ht_cap.ht_supported) {
3961 cmd->ht_rates[0] = sta->ht_cap.mcs.rx_mask[0];
3962 cmd->ht_rates[1] = sta->ht_cap.mcs.rx_mask[1];
3963 cmd->ht_rates[2] = sta->ht_cap.mcs.rx_mask[2];
3964 cmd->ht_rates[3] = sta->ht_cap.mcs.rx_mask[3];
3965 cmd->ht_capabilities_info = cpu_to_le16(sta->ht_cap.cap);
3966 cmd->mac_ht_param_info = (sta->ht_cap.ampdu_factor & 3) |
3967 ((sta->ht_cap.ampdu_density & 7) << 2);
3968 cmd->is_qos_sta = 1;
3969 }
3970
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003971 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003972 kfree(cmd);
3973
3974 return rc;
3975}
3976
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003977static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw *hw,
3978 struct ieee80211_vif *vif)
3979{
3980 struct mwl8k_cmd_set_new_stn *cmd;
3981 int rc;
3982
3983 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3984 if (cmd == NULL)
3985 return -ENOMEM;
3986
3987 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3988 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3989 memcpy(cmd->mac_addr, vif->addr, ETH_ALEN);
3990
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003991 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003992 kfree(cmd);
3993
3994 return rc;
3995}
3996
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003997static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw *hw,
3998 struct ieee80211_vif *vif, u8 *addr)
3999{
4000 struct mwl8k_cmd_set_new_stn *cmd;
Yogesh Ashok Powar0dd13a42013-01-08 10:16:37 +05304001 struct mwl8k_priv *priv = hw->priv;
4002 int rc, i;
4003 u8 idx;
4004
4005 spin_lock(&priv->stream_lock);
4006 /* Destroy any active ampdu streams for this sta */
4007 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
4008 struct mwl8k_ampdu_stream *s;
4009 s = &priv->ampdu[i];
4010 if (s->state != AMPDU_NO_STREAM) {
4011 if (memcmp(s->sta->addr, addr, ETH_ALEN) == 0) {
4012 if (s->state == AMPDU_STREAM_ACTIVE) {
4013 idx = s->idx;
4014 spin_unlock(&priv->stream_lock);
4015 mwl8k_destroy_ba(hw, idx);
4016 spin_lock(&priv->stream_lock);
4017 } else if (s->state == AMPDU_STREAM_NEW) {
4018 mwl8k_remove_stream(hw, s);
4019 }
4020 }
4021 }
4022 }
4023
4024 spin_unlock(&priv->stream_lock);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004025
4026 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4027 if (cmd == NULL)
4028 return -ENOMEM;
4029
4030 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
4031 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4032 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4033 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_REMOVE);
4034
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004035 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004036 kfree(cmd);
4037
4038 return rc;
4039}
4040
4041/*
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004042 * CMD_UPDATE_ENCRYPTION.
4043 */
4044
4045#define MAX_ENCR_KEY_LENGTH 16
4046#define MIC_KEY_LENGTH 8
4047
4048struct mwl8k_cmd_update_encryption {
4049 struct mwl8k_cmd_pkt header;
4050
4051 __le32 action;
4052 __le32 reserved;
4053 __u8 mac_addr[6];
4054 __u8 encr_type;
4055
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304056} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004057
4058struct mwl8k_cmd_set_key {
4059 struct mwl8k_cmd_pkt header;
4060
4061 __le32 action;
4062 __le32 reserved;
4063 __le16 length;
4064 __le16 key_type_id;
4065 __le32 key_info;
4066 __le32 key_id;
4067 __le16 key_len;
4068 __u8 key_material[MAX_ENCR_KEY_LENGTH];
4069 __u8 tkip_tx_mic_key[MIC_KEY_LENGTH];
4070 __u8 tkip_rx_mic_key[MIC_KEY_LENGTH];
4071 __le16 tkip_rsc_low;
4072 __le32 tkip_rsc_high;
4073 __le16 tkip_tsc_low;
4074 __le32 tkip_tsc_high;
4075 __u8 mac_addr[6];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304076} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004077
4078enum {
4079 MWL8K_ENCR_ENABLE,
4080 MWL8K_ENCR_SET_KEY,
4081 MWL8K_ENCR_REMOVE_KEY,
4082 MWL8K_ENCR_SET_GROUP_KEY,
4083};
4084
4085#define MWL8K_UPDATE_ENCRYPTION_TYPE_WEP 0
4086#define MWL8K_UPDATE_ENCRYPTION_TYPE_DISABLE 1
4087#define MWL8K_UPDATE_ENCRYPTION_TYPE_TKIP 4
4088#define MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED 7
4089#define MWL8K_UPDATE_ENCRYPTION_TYPE_AES 8
4090
4091enum {
4092 MWL8K_ALG_WEP,
4093 MWL8K_ALG_TKIP,
4094 MWL8K_ALG_CCMP,
4095};
4096
4097#define MWL8K_KEY_FLAG_TXGROUPKEY 0x00000004
4098#define MWL8K_KEY_FLAG_PAIRWISE 0x00000008
4099#define MWL8K_KEY_FLAG_TSC_VALID 0x00000040
4100#define MWL8K_KEY_FLAG_WEP_TXKEY 0x01000000
4101#define MWL8K_KEY_FLAG_MICKEY_VALID 0x02000000
4102
4103static int mwl8k_cmd_update_encryption_enable(struct ieee80211_hw *hw,
4104 struct ieee80211_vif *vif,
4105 u8 *addr,
4106 u8 encr_type)
4107{
4108 struct mwl8k_cmd_update_encryption *cmd;
4109 int rc;
4110
4111 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4112 if (cmd == NULL)
4113 return -ENOMEM;
4114
4115 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
4116 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4117 cmd->action = cpu_to_le32(MWL8K_ENCR_ENABLE);
4118 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4119 cmd->encr_type = encr_type;
4120
4121 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4122 kfree(cmd);
4123
4124 return rc;
4125}
4126
4127static int mwl8k_encryption_set_cmd_info(struct mwl8k_cmd_set_key *cmd,
4128 u8 *addr,
4129 struct ieee80211_key_conf *key)
4130{
4131 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
4132 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4133 cmd->length = cpu_to_le16(sizeof(*cmd) -
4134 offsetof(struct mwl8k_cmd_set_key, length));
4135 cmd->key_id = cpu_to_le32(key->keyidx);
4136 cmd->key_len = cpu_to_le16(key->keylen);
4137 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4138
4139 switch (key->cipher) {
4140 case WLAN_CIPHER_SUITE_WEP40:
4141 case WLAN_CIPHER_SUITE_WEP104:
4142 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_WEP);
4143 if (key->keyidx == 0)
4144 cmd->key_info = cpu_to_le32(MWL8K_KEY_FLAG_WEP_TXKEY);
4145
4146 break;
4147 case WLAN_CIPHER_SUITE_TKIP:
4148 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_TKIP);
4149 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4150 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
4151 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
4152 cmd->key_info |= cpu_to_le32(MWL8K_KEY_FLAG_MICKEY_VALID
4153 | MWL8K_KEY_FLAG_TSC_VALID);
4154 break;
4155 case WLAN_CIPHER_SUITE_CCMP:
4156 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_CCMP);
4157 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4158 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
4159 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
4160 break;
4161 default:
4162 return -ENOTSUPP;
4163 }
4164
4165 return 0;
4166}
4167
4168static int mwl8k_cmd_encryption_set_key(struct ieee80211_hw *hw,
4169 struct ieee80211_vif *vif,
4170 u8 *addr,
4171 struct ieee80211_key_conf *key)
4172{
4173 struct mwl8k_cmd_set_key *cmd;
4174 int rc;
4175 int keymlen;
4176 u32 action;
4177 u8 idx;
4178 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4179
4180 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4181 if (cmd == NULL)
4182 return -ENOMEM;
4183
4184 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4185 if (rc < 0)
4186 goto done;
4187
4188 idx = key->keyidx;
4189
4190 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4191 action = MWL8K_ENCR_SET_KEY;
4192 else
4193 action = MWL8K_ENCR_SET_GROUP_KEY;
4194
4195 switch (key->cipher) {
4196 case WLAN_CIPHER_SUITE_WEP40:
4197 case WLAN_CIPHER_SUITE_WEP104:
4198 if (!mwl8k_vif->wep_key_conf[idx].enabled) {
4199 memcpy(mwl8k_vif->wep_key_conf[idx].key, key,
4200 sizeof(*key) + key->keylen);
4201 mwl8k_vif->wep_key_conf[idx].enabled = 1;
4202 }
4203
Yogesh Ashok Powar9b571e22011-05-04 17:22:16 +05304204 keymlen = key->keylen;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004205 action = MWL8K_ENCR_SET_KEY;
4206 break;
4207 case WLAN_CIPHER_SUITE_TKIP:
4208 keymlen = MAX_ENCR_KEY_LENGTH + 2 * MIC_KEY_LENGTH;
4209 break;
4210 case WLAN_CIPHER_SUITE_CCMP:
4211 keymlen = key->keylen;
4212 break;
4213 default:
4214 rc = -ENOTSUPP;
4215 goto done;
4216 }
4217
4218 memcpy(cmd->key_material, key->key, keymlen);
4219 cmd->action = cpu_to_le32(action);
4220
4221 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4222done:
4223 kfree(cmd);
4224
4225 return rc;
4226}
4227
4228static int mwl8k_cmd_encryption_remove_key(struct ieee80211_hw *hw,
4229 struct ieee80211_vif *vif,
4230 u8 *addr,
4231 struct ieee80211_key_conf *key)
4232{
4233 struct mwl8k_cmd_set_key *cmd;
4234 int rc;
4235 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4236
4237 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4238 if (cmd == NULL)
4239 return -ENOMEM;
4240
4241 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4242 if (rc < 0)
4243 goto done;
4244
4245 if (key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
Dan Carpenterd981e052012-01-17 10:33:31 +03004246 key->cipher == WLAN_CIPHER_SUITE_WEP104)
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004247 mwl8k_vif->wep_key_conf[key->keyidx].enabled = 0;
4248
4249 cmd->action = cpu_to_le32(MWL8K_ENCR_REMOVE_KEY);
4250
4251 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4252done:
4253 kfree(cmd);
4254
4255 return rc;
4256}
4257
4258static int mwl8k_set_key(struct ieee80211_hw *hw,
4259 enum set_key_cmd cmd_param,
4260 struct ieee80211_vif *vif,
4261 struct ieee80211_sta *sta,
4262 struct ieee80211_key_conf *key)
4263{
4264 int rc = 0;
4265 u8 encr_type;
4266 u8 *addr;
4267 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Yogesh Ashok Powar751930c2013-01-25 16:20:28 +05304268 struct mwl8k_priv *priv = hw->priv;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004269
Yogesh Ashok Powar751930c2013-01-25 16:20:28 +05304270 if (vif->type == NL80211_IFTYPE_STATION && !priv->ap_fw)
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004271 return -EOPNOTSUPP;
4272
4273 if (sta == NULL)
Yogesh Ashok Powarff7e9f92012-01-27 16:08:27 +05304274 addr = vif->addr;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004275 else
4276 addr = sta->addr;
4277
4278 if (cmd_param == SET_KEY) {
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004279 rc = mwl8k_cmd_encryption_set_key(hw, vif, addr, key);
4280 if (rc)
4281 goto out;
4282
4283 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40)
4284 || (key->cipher == WLAN_CIPHER_SUITE_WEP104))
4285 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_WEP;
4286 else
4287 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED;
4288
4289 rc = mwl8k_cmd_update_encryption_enable(hw, vif, addr,
4290 encr_type);
4291 if (rc)
4292 goto out;
4293
4294 mwl8k_vif->is_hw_crypto_enabled = true;
4295
4296 } else {
4297 rc = mwl8k_cmd_encryption_remove_key(hw, vif, addr, key);
4298
4299 if (rc)
4300 goto out;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004301 }
4302out:
4303 return rc;
4304}
4305
4306/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004307 * CMD_UPDATE_STADB.
4308 */
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004309struct ewc_ht_info {
4310 __le16 control1;
4311 __le16 control2;
4312 __le16 control3;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004313} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004314
4315struct peer_capability_info {
4316 /* Peer type - AP vs. STA. */
4317 __u8 peer_type;
4318
4319 /* Basic 802.11 capabilities from assoc resp. */
4320 __le16 basic_caps;
4321
4322 /* Set if peer supports 802.11n high throughput (HT). */
4323 __u8 ht_support;
4324
4325 /* Valid if HT is supported. */
4326 __le16 ht_caps;
4327 __u8 extended_ht_caps;
4328 struct ewc_ht_info ewc_info;
4329
4330 /* Legacy rate table. Intersection of our rates and peer rates. */
4331 __u8 legacy_rates[12];
4332
4333 /* HT rate table. Intersection of our rates and peer rates. */
4334 __u8 ht_rates[16];
4335 __u8 pad[16];
4336
4337 /* If set, interoperability mode, no proprietary extensions. */
4338 __u8 interop;
4339 __u8 pad2;
4340 __u8 station_id;
4341 __le16 amsdu_enabled;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004342} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004343
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004344struct mwl8k_cmd_update_stadb {
4345 struct mwl8k_cmd_pkt header;
4346
4347 /* See STADB_ACTION_TYPE */
4348 __le32 action;
4349
4350 /* Peer MAC address */
4351 __u8 peer_addr[ETH_ALEN];
4352
4353 __le32 reserved;
4354
4355 /* Peer info - valid during add/update. */
4356 struct peer_capability_info peer_info;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004357} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004358
Lennert Buytenheka6804002010-01-04 21:55:42 +01004359#define MWL8K_STA_DB_MODIFY_ENTRY 1
4360#define MWL8K_STA_DB_DEL_ENTRY 2
4361
4362/* Peer Entry flags - used to define the type of the peer node */
4363#define MWL8K_PEER_TYPE_ACCESSPOINT 2
4364
4365static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw,
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004366 struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004367 struct ieee80211_sta *sta)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004368{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004369 struct mwl8k_cmd_update_stadb *cmd;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004370 struct peer_capability_info *p;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004371 u32 rates;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004372 int rc;
4373
4374 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4375 if (cmd == NULL)
4376 return -ENOMEM;
4377
4378 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4379 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka6804002010-01-04 21:55:42 +01004380 cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004381 memcpy(cmd->peer_addr, sta->addr, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004382
Lennert Buytenheka6804002010-01-04 21:55:42 +01004383 p = &cmd->peer_info;
4384 p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
4385 p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004386 p->ht_support = sta->ht_cap.ht_supported;
John W. Linvilleb6037422010-07-20 13:55:00 -04004387 p->ht_caps = cpu_to_le16(sta->ht_cap.cap);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004388 p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) |
4389 ((sta->ht_cap.ampdu_density & 7) << 2);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004390 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4391 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
4392 else
4393 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4394 legacy_rate_mask_to_array(p->legacy_rates, rates);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004395 memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16);
Lennert Buytenheka6804002010-01-04 21:55:42 +01004396 p->interop = 1;
4397 p->amsdu_enabled = 0;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004398
Lennert Buytenheka6804002010-01-04 21:55:42 +01004399 rc = mwl8k_post_cmd(hw, &cmd->header);
Nickolai Zeldovichc4f74d32013-01-06 20:27:22 -05004400 if (!rc)
4401 rc = p->station_id;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004402 kfree(cmd);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004403
Nickolai Zeldovichc4f74d32013-01-06 20:27:22 -05004404 return rc;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004405}
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004406
Lennert Buytenheka6804002010-01-04 21:55:42 +01004407static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw,
4408 struct ieee80211_vif *vif, u8 *addr)
4409{
4410 struct mwl8k_cmd_update_stadb *cmd;
4411 int rc;
4412
4413 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4414 if (cmd == NULL)
4415 return -ENOMEM;
4416
4417 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4418 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4419 cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY);
4420 memcpy(cmd->peer_addr, addr, ETH_ALEN);
4421
4422 rc = mwl8k_post_cmd(hw, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004423 kfree(cmd);
4424
4425 return rc;
4426}
4427
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004428
4429/*
4430 * Interrupt handling.
4431 */
4432static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
4433{
4434 struct ieee80211_hw *hw = dev_id;
4435 struct mwl8k_priv *priv = hw->priv;
4436 u32 status;
4437
4438 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004439 if (!status)
4440 return IRQ_NONE;
4441
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004442 if (status & MWL8K_A2H_INT_TX_DONE) {
4443 status &= ~MWL8K_A2H_INT_TX_DONE;
4444 tasklet_schedule(&priv->poll_tx_task);
4445 }
4446
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004447 if (status & MWL8K_A2H_INT_RX_READY) {
4448 status &= ~MWL8K_A2H_INT_RX_READY;
4449 tasklet_schedule(&priv->poll_rx_task);
4450 }
4451
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004452 if (status & MWL8K_A2H_INT_BA_WATCHDOG) {
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05304453 iowrite32(~MWL8K_A2H_INT_BA_WATCHDOG,
4454 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
4455
4456 atomic_inc(&priv->watchdog_event_pending);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004457 status &= ~MWL8K_A2H_INT_BA_WATCHDOG;
4458 ieee80211_queue_work(hw, &priv->watchdog_ba_handle);
4459 }
4460
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004461 if (status)
4462 iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004463
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004464 if (status & MWL8K_A2H_INT_OPC_DONE) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004465 if (priv->hostcmd_wait != NULL)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004466 complete(priv->hostcmd_wait);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004467 }
4468
4469 if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004470 if (!mutex_is_locked(&priv->fw_mutex) &&
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02004471 priv->radio_on && priv->pending_tx_pkts)
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004472 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004473 }
4474
4475 return IRQ_HANDLED;
4476}
4477
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004478static void mwl8k_tx_poll(unsigned long data)
4479{
4480 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4481 struct mwl8k_priv *priv = hw->priv;
4482 int limit;
4483 int i;
4484
4485 limit = 32;
4486
4487 spin_lock_bh(&priv->tx_lock);
4488
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004489 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004490 limit -= mwl8k_txq_reclaim(hw, i, limit, 0);
4491
4492 if (!priv->pending_tx_pkts && priv->tx_wait != NULL) {
4493 complete(priv->tx_wait);
4494 priv->tx_wait = NULL;
4495 }
4496
4497 spin_unlock_bh(&priv->tx_lock);
4498
4499 if (limit) {
4500 writel(~MWL8K_A2H_INT_TX_DONE,
4501 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4502 } else {
4503 tasklet_schedule(&priv->poll_tx_task);
4504 }
4505}
4506
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004507static void mwl8k_rx_poll(unsigned long data)
4508{
4509 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4510 struct mwl8k_priv *priv = hw->priv;
4511 int limit;
4512
4513 limit = 32;
4514 limit -= rxq_process(hw, 0, limit);
4515 limit -= rxq_refill(hw, 0, limit);
4516
4517 if (limit) {
4518 writel(~MWL8K_A2H_INT_RX_READY,
4519 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4520 } else {
4521 tasklet_schedule(&priv->poll_rx_task);
4522 }
4523}
4524
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004525
4526/*
4527 * Core driver operations.
4528 */
Thomas Huehn36323f82012-07-23 21:33:42 +02004529static void mwl8k_tx(struct ieee80211_hw *hw,
4530 struct ieee80211_tx_control *control,
4531 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004532{
4533 struct mwl8k_priv *priv = hw->priv;
4534 int index = skb_get_queue_mapping(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004535
Lennert Buytenhek9189c102010-01-12 13:47:32 +01004536 if (!priv->radio_on) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004537 wiphy_debug(hw->wiphy,
4538 "dropped TX frame since radio disabled\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004539 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01004540 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004541 }
4542
Thomas Huehn36323f82012-07-23 21:33:42 +02004543 mwl8k_txq_xmit(hw, index, control->sta, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004544}
4545
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004546static int mwl8k_start(struct ieee80211_hw *hw)
4547{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004548 struct mwl8k_priv *priv = hw->priv;
4549 int rc;
4550
Joe Perchesa0607fd2009-11-18 23:29:17 -08004551 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004552 IRQF_SHARED, MWL8K_NAME, hw);
4553 if (rc) {
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304554 priv->irq = -1;
Joe Perches5db55842010-08-11 19:11:19 -07004555 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004556 return -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004557 }
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304558 priv->irq = priv->pdev->irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004559
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004560 /* Enable TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004561 tasklet_enable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004562 tasklet_enable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004563
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004564 /* Enable interrupts */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02004565 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05304566 iowrite32(MWL8K_A2H_EVENTS,
4567 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004568
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004569 rc = mwl8k_fw_lock(hw);
4570 if (!rc) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004571 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004572
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004573 if (!priv->ap_fw) {
4574 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004575 rc = mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004576
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004577 if (!rc)
4578 rc = mwl8k_cmd_set_pre_scan(hw);
4579
4580 if (!rc)
4581 rc = mwl8k_cmd_set_post_scan(hw,
4582 "\x00\x00\x00\x00\x00\x00");
4583 }
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004584
4585 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004586 rc = mwl8k_cmd_set_rateadapt_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004587
4588 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004589 rc = mwl8k_cmd_set_wmm_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004590
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004591 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004592 }
4593
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004594 if (rc) {
4595 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
4596 free_irq(priv->pdev->irq, hw);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304597 priv->irq = -1;
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004598 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004599 tasklet_disable(&priv->poll_rx_task);
Nishant Sarmukadam4850b6d2013-01-08 12:10:53 +05304600 } else {
4601 ieee80211_wake_queues(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004602 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004603
4604 return rc;
4605}
4606
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004607static void mwl8k_stop(struct ieee80211_hw *hw)
4608{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004609 struct mwl8k_priv *priv = hw->priv;
4610 int i;
4611
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304612 if (!priv->hw_restart_in_progress)
4613 mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004614
4615 ieee80211_stop_queues(hw);
4616
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004617 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004618 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304619 if (priv->irq != -1) {
4620 free_irq(priv->pdev->irq, hw);
4621 priv->irq = -1;
4622 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004623
4624 /* Stop finalize join worker */
4625 cancel_work_sync(&priv->finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004626 cancel_work_sync(&priv->watchdog_ba_handle);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004627 if (priv->beacon_skb != NULL)
4628 dev_kfree_skb(priv->beacon_skb);
4629
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004630 /* Stop TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004631 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004632 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004633
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004634 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004635 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01004636 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004637}
4638
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004639static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image);
4640
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004641static int mwl8k_add_interface(struct ieee80211_hw *hw,
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004642 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004643{
4644 struct mwl8k_priv *priv = hw->priv;
4645 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004646 u32 macids_supported;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004647 int macid, rc;
4648 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004649
4650 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004651 * Reject interface creation if sniffer mode is active, as
4652 * STA operation is mutually exclusive with hardware sniffer
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004653 * mode. (Sniffer mode is only used on STA firmware.)
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004654 */
4655 if (priv->sniffer_enabled) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004656 wiphy_info(hw->wiphy,
4657 "unable to create STA interface because sniffer mode is enabled\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004658 return -EINVAL;
4659 }
4660
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004661 di = priv->device_info;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004662 switch (vif->type) {
4663 case NL80211_IFTYPE_AP:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004664 if (!priv->ap_fw && di->fw_image_ap) {
4665 /* we must load the ap fw to meet this request */
4666 if (!list_empty(&priv->vif_list))
4667 return -EBUSY;
4668 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4669 if (rc)
4670 return rc;
4671 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004672 macids_supported = priv->ap_macids_supported;
4673 break;
4674 case NL80211_IFTYPE_STATION:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004675 if (priv->ap_fw && di->fw_image_sta) {
Yogesh Ashok Poward59c1cf2013-01-25 16:20:03 +05304676 if (!list_empty(&priv->vif_list)) {
4677 wiphy_warn(hw->wiphy, "AP interface is running.\n"
4678 "Adding STA interface for WDS");
4679 } else {
4680 /* we must load the sta fw to
4681 * meet this request.
4682 */
4683 rc = mwl8k_reload_firmware(hw,
4684 di->fw_image_sta);
4685 if (rc)
4686 return rc;
4687 }
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004688 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004689 macids_supported = priv->sta_macids_supported;
4690 break;
4691 default:
4692 return -EINVAL;
4693 }
4694
4695 macid = ffs(macids_supported & ~priv->macids_used);
4696 if (!macid--)
4697 return -EBUSY;
4698
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004699 /* Setup driver private area. */
Johannes Berg1ed32e42009-12-23 13:15:45 +01004700 mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004701 memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004702 mwl8k_vif->vif = vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004703 mwl8k_vif->macid = macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004704 mwl8k_vif->seqno = 0;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004705 memcpy(mwl8k_vif->bssid, vif->addr, ETH_ALEN);
4706 mwl8k_vif->is_hw_crypto_enabled = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004707
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004708 /* Set the mac address. */
4709 mwl8k_cmd_set_mac_addr(hw, vif, vif->addr);
4710
Yogesh Ashok Poward994a1c2013-01-25 16:20:35 +05304711 if (vif->type == NL80211_IFTYPE_AP)
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004712 mwl8k_cmd_set_new_stn_add_self(hw, vif);
4713
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004714 priv->macids_used |= 1 << mwl8k_vif->macid;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004715 list_add_tail(&mwl8k_vif->list, &priv->vif_list);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004716
4717 return 0;
4718}
4719
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304720static void mwl8k_remove_vif(struct mwl8k_priv *priv, struct mwl8k_vif *vif)
4721{
4722 /* Has ieee80211_restart_hw re-added the removed interfaces? */
4723 if (!priv->macids_used)
4724 return;
4725
4726 priv->macids_used &= ~(1 << vif->macid);
4727 list_del(&vif->list);
4728}
4729
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004730static void mwl8k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004731 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004732{
4733 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004734 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004735
Yogesh Ashok Poward994a1c2013-01-25 16:20:35 +05304736 if (vif->type == NL80211_IFTYPE_AP)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004737 mwl8k_cmd_set_new_stn_del(hw, vif, vif->addr);
4738
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05304739 mwl8k_cmd_del_mac_addr(hw, vif, vif->addr);
Lennert Buytenhek32060e12009-10-22 20:20:04 +02004740
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304741 mwl8k_remove_vif(priv, mwl8k_vif);
4742}
4743
4744static void mwl8k_hw_restart_work(struct work_struct *work)
4745{
4746 struct mwl8k_priv *priv =
4747 container_of(work, struct mwl8k_priv, fw_reload);
4748 struct ieee80211_hw *hw = priv->hw;
4749 struct mwl8k_device_info *di;
4750 int rc;
4751
4752 /* If some command is waiting for a response, clear it */
4753 if (priv->hostcmd_wait != NULL) {
4754 complete(priv->hostcmd_wait);
4755 priv->hostcmd_wait = NULL;
4756 }
4757
4758 priv->hw_restart_owner = current;
4759 di = priv->device_info;
4760 mwl8k_fw_lock(hw);
4761
4762 if (priv->ap_fw)
4763 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4764 else
4765 rc = mwl8k_reload_firmware(hw, di->fw_image_sta);
4766
4767 if (rc)
4768 goto fail;
4769
4770 priv->hw_restart_owner = NULL;
4771 priv->hw_restart_in_progress = false;
4772
4773 /*
4774 * This unlock will wake up the queues and
4775 * also opens the command path for other
4776 * commands
4777 */
4778 mwl8k_fw_unlock(hw);
4779
4780 ieee80211_restart_hw(hw);
4781
4782 wiphy_err(hw->wiphy, "Firmware restarted successfully\n");
4783
4784 return;
4785fail:
4786 mwl8k_fw_unlock(hw);
4787
4788 wiphy_err(hw->wiphy, "Firmware restart failed\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004789}
4790
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004791static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004792{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004793 struct ieee80211_conf *conf = &hw->conf;
4794 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004795 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004796
Lennert Buytenhek7595d672009-08-17 23:59:40 +02004797 if (conf->flags & IEEE80211_CONF_IDLE) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004798 mwl8k_cmd_radio_disable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004799 return 0;
Lennert Buytenhek7595d672009-08-17 23:59:40 +02004800 }
4801
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004802 rc = mwl8k_fw_lock(hw);
4803 if (rc)
4804 return rc;
4805
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004806 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004807 if (rc)
4808 goto out;
4809
Yogesh Ashok Powar0f4316b2013-01-25 16:17:45 +05304810 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
4811 rc = mwl8k_cmd_set_rf_channel(hw, conf);
4812 if (rc)
4813 goto out;
4814 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004815
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004816 if (conf->power_level > 18)
4817 conf->power_level = 18;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004818
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004819 if (priv->ap_fw) {
Nishant Sarmukadam03217082011-04-05 14:18:09 +05304820
4821 if (conf->flags & IEEE80211_CONF_CHANGE_POWER) {
4822 rc = mwl8k_cmd_tx_power(hw, conf, conf->power_level);
4823 if (rc)
4824 goto out;
4825 }
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004826
Nishant Sarmukadamda62b762011-02-17 14:45:16 -08004827
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004828 } else {
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004829 rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level);
4830 if (rc)
4831 goto out;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004832 rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7);
4833 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004834
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004835out:
4836 mwl8k_fw_unlock(hw);
4837
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004838 return rc;
4839}
4840
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004841static void
4842mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4843 struct ieee80211_bss_conf *info, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004844{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004845 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304846 u32 ap_legacy_rates = 0;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004847 u8 ap_mcs_rates[16];
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004848 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004849
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004850 if (mwl8k_fw_lock(hw))
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004851 return;
4852
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004853 /*
4854 * No need to capture a beacon if we're no longer associated.
4855 */
4856 if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc)
4857 priv->capture_beacon = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004858
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004859 /*
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004860 * Get the AP's legacy and MCS rates.
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004861 */
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004862 if (vif->bss_conf.assoc) {
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004863 struct ieee80211_sta *ap;
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004864
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004865 rcu_read_lock();
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004866
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004867 ap = ieee80211_find_sta(vif, vif->bss_conf.bssid);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004868 if (ap == NULL) {
4869 rcu_read_unlock();
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004870 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004871 }
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004872
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004873 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) {
4874 ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ];
4875 } else {
4876 ap_legacy_rates =
4877 ap->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4878 }
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004879 memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004880
4881 rcu_read_unlock();
4882 }
4883
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05304884 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc &&
4885 !priv->ap_fw) {
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004886 rc = mwl8k_cmd_set_rate(hw, vif, ap_legacy_rates, ap_mcs_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004887 if (rc)
4888 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004889
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01004890 rc = mwl8k_cmd_use_fixed_rate_sta(hw);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004891 if (rc)
4892 goto out;
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05304893 } else {
4894 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc &&
4895 priv->ap_fw) {
4896 int idx;
4897 int rate;
4898
4899 /* Use AP firmware specific rate command.
4900 */
4901 idx = ffs(vif->bss_conf.basic_rates);
4902 if (idx)
4903 idx--;
4904
4905 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4906 rate = mwl8k_rates_24[idx].hw_value;
4907 else
4908 rate = mwl8k_rates_50[idx].hw_value;
4909
4910 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
4911 }
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004912 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004913
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004914 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004915 rc = mwl8k_set_radio_preamble(hw,
4916 vif->bss_conf.use_short_preamble);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004917 if (rc)
4918 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004919 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004920
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05304921 if ((changed & BSS_CHANGED_ERP_SLOT) && !priv->ap_fw) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004922 rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004923 if (rc)
4924 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004925 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004926
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05304927 if (vif->bss_conf.assoc && !priv->ap_fw &&
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004928 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_ERP_CTS_PROT |
4929 BSS_CHANGED_HT))) {
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004930 rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004931 if (rc)
4932 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004933 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004934
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004935 if (vif->bss_conf.assoc &&
4936 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004937 /*
4938 * Finalize the join. Tell rx handler to process
4939 * next beacon from our BSSID.
4940 */
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01004941 memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004942 priv->capture_beacon = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004943 }
4944
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004945out:
4946 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004947}
4948
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004949static void
4950mwl8k_bss_info_changed_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4951 struct ieee80211_bss_conf *info, u32 changed)
4952{
4953 int rc;
4954
4955 if (mwl8k_fw_lock(hw))
4956 return;
4957
4958 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
4959 rc = mwl8k_set_radio_preamble(hw,
4960 vif->bss_conf.use_short_preamble);
4961 if (rc)
4962 goto out;
4963 }
4964
4965 if (changed & BSS_CHANGED_BASIC_RATES) {
4966 int idx;
4967 int rate;
4968
4969 /*
4970 * Use lowest supported basic rate for multicasts
4971 * and management frames (such as probe responses --
4972 * beacons will always go out at 1 Mb/s).
4973 */
4974 idx = ffs(vif->bss_conf.basic_rates);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004975 if (idx)
4976 idx--;
4977
4978 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4979 rate = mwl8k_rates_24[idx].hw_value;
4980 else
4981 rate = mwl8k_rates_50[idx].hw_value;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004982
4983 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
4984 }
4985
4986 if (changed & (BSS_CHANGED_BEACON_INT | BSS_CHANGED_BEACON)) {
4987 struct sk_buff *skb;
4988
4989 skb = ieee80211_beacon_get(hw, vif);
4990 if (skb != NULL) {
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004991 mwl8k_cmd_set_beacon(hw, vif, skb->data, skb->len);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004992 kfree_skb(skb);
4993 }
4994 }
4995
4996 if (changed & BSS_CHANGED_BEACON_ENABLED)
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004997 mwl8k_cmd_bss_start(hw, vif, info->enable_beacon);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004998
4999out:
5000 mwl8k_fw_unlock(hw);
5001}
5002
5003static void
5004mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5005 struct ieee80211_bss_conf *info, u32 changed)
5006{
Yogesh Ashok Powar41bf9112013-01-25 16:20:42 +05305007 if (vif->type == NL80211_IFTYPE_STATION)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005008 mwl8k_bss_info_changed_sta(hw, vif, info, changed);
Yogesh Ashok Powar41bf9112013-01-25 16:20:42 +05305009 if (vif->type == NL80211_IFTYPE_AP)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005010 mwl8k_bss_info_changed_ap(hw, vif, info, changed);
5011}
5012
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02005013static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw,
Jiri Pirko22bedad32010-04-01 21:22:57 +00005014 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02005015{
5016 struct mwl8k_cmd_pkt *cmd;
5017
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005018 /*
5019 * Synthesize and return a command packet that programs the
5020 * hardware multicast address filter. At this point we don't
5021 * know whether FIF_ALLMULTI is being requested, but if it is,
5022 * we'll end up throwing this packet away and creating a new
5023 * one in mwl8k_configure_filter().
5024 */
Jiri Pirko22bedad32010-04-01 21:22:57 +00005025 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_list);
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02005026
5027 return (unsigned long)cmd;
5028}
5029
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005030static int
5031mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw,
5032 unsigned int changed_flags,
5033 unsigned int *total_flags)
5034{
5035 struct mwl8k_priv *priv = hw->priv;
5036
5037 /*
5038 * Hardware sniffer mode is mutually exclusive with STA
5039 * operation, so refuse to enable sniffer mode if a STA
5040 * interface is active.
5041 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005042 if (!list_empty(&priv->vif_list)) {
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005043 if (net_ratelimit())
Joe Perchesc96c31e2010-07-26 14:39:58 -07005044 wiphy_info(hw->wiphy,
5045 "not enabling sniffer mode because STA interface is active\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005046 return 0;
5047 }
5048
5049 if (!priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005050 if (mwl8k_cmd_enable_sniffer(hw, 1))
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005051 return 0;
5052 priv->sniffer_enabled = true;
5053 }
5054
5055 *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI |
5056 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL |
5057 FIF_OTHER_BSS;
5058
5059 return 1;
5060}
5061
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005062static struct mwl8k_vif *mwl8k_first_vif(struct mwl8k_priv *priv)
5063{
5064 if (!list_empty(&priv->vif_list))
5065 return list_entry(priv->vif_list.next, struct mwl8k_vif, list);
5066
5067 return NULL;
5068}
5069
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005070static void mwl8k_configure_filter(struct ieee80211_hw *hw,
5071 unsigned int changed_flags,
5072 unsigned int *total_flags,
5073 u64 multicast)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005074{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005075 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005076 struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast;
5077
5078 /*
Lennert Buytenhekc0adae22009-10-22 20:21:36 +02005079 * AP firmware doesn't allow fine-grained control over
5080 * the receive filter.
5081 */
5082 if (priv->ap_fw) {
5083 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
5084 kfree(cmd);
5085 return;
5086 }
5087
5088 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005089 * Enable hardware sniffer mode if FIF_CONTROL or
5090 * FIF_OTHER_BSS is requested.
5091 */
5092 if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) &&
5093 mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) {
5094 kfree(cmd);
5095 return;
5096 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005097
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005098 /* Clear unsupported feature flags */
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005099 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005100
Lennert Buytenhek90852f72010-01-02 10:31:42 +01005101 if (mwl8k_fw_lock(hw)) {
5102 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005103 return;
Lennert Buytenhek90852f72010-01-02 10:31:42 +01005104 }
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005105
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005106 if (priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005107 mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005108 priv->sniffer_enabled = false;
5109 }
5110
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005111 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005112 if (*total_flags & FIF_BCN_PRBRESP_PROMISC) {
5113 /*
5114 * Disable the BSS filter.
5115 */
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005116 mwl8k_cmd_set_pre_scan(hw);
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005117 } else {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005118 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01005119 const u8 *bssid;
Lennert Buytenheka94cc972009-08-03 21:58:57 +02005120
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005121 /*
5122 * Enable the BSS filter.
5123 *
5124 * If there is an active STA interface, use that
5125 * interface's BSSID, otherwise use a dummy one
5126 * (where the OUI part needs to be nonzero for
5127 * the BSSID to be accepted by POST_SCAN).
5128 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005129 mwl8k_vif = mwl8k_first_vif(priv);
5130 if (mwl8k_vif != NULL)
5131 bssid = mwl8k_vif->vif->bss_conf.bssid;
5132 else
5133 bssid = "\x01\x00\x00\x00\x00\x00";
Lennert Buytenheka94cc972009-08-03 21:58:57 +02005134
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005135 mwl8k_cmd_set_post_scan(hw, bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005136 }
5137 }
5138
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005139 /*
5140 * If FIF_ALLMULTI is being requested, throw away the command
5141 * packet that ->prepare_multicast() built and replace it with
5142 * a command packet that enables reception of all multicast
5143 * packets.
5144 */
5145 if (*total_flags & FIF_ALLMULTI) {
5146 kfree(cmd);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005147 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, NULL);
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005148 }
5149
5150 if (cmd != NULL) {
5151 mwl8k_post_cmd(hw, cmd);
5152 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005153 }
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02005154
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005155 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005156}
5157
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005158static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
5159{
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01005160 return mwl8k_cmd_set_rts_threshold(hw, value);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005161}
5162
Johannes Berg4a6967b2010-02-19 19:18:37 +01005163static int mwl8k_sta_remove(struct ieee80211_hw *hw,
5164 struct ieee80211_vif *vif,
5165 struct ieee80211_sta *sta)
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005166{
5167 struct mwl8k_priv *priv = hw->priv;
5168
Johannes Berg4a6967b2010-02-19 19:18:37 +01005169 if (priv->ap_fw)
5170 return mwl8k_cmd_set_new_stn_del(hw, vif, sta->addr);
5171 else
5172 return mwl8k_cmd_update_stadb_del(hw, vif, sta->addr);
5173}
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005174
Johannes Berg4a6967b2010-02-19 19:18:37 +01005175static int mwl8k_sta_add(struct ieee80211_hw *hw,
5176 struct ieee80211_vif *vif,
5177 struct ieee80211_sta *sta)
5178{
5179 struct mwl8k_priv *priv = hw->priv;
5180 int ret;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005181 int i;
5182 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
5183 struct ieee80211_key_conf *key;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005184
Johannes Berg4a6967b2010-02-19 19:18:37 +01005185 if (!priv->ap_fw) {
5186 ret = mwl8k_cmd_update_stadb_add(hw, vif, sta);
5187 if (ret >= 0) {
5188 MWL8K_STA(sta)->peer_id = ret;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07005189 if (sta->ht_cap.ht_supported)
5190 MWL8K_STA(sta)->is_ampdu_allowed = true;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005191 ret = 0;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005192 }
Johannes Berg4a6967b2010-02-19 19:18:37 +01005193
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08005194 } else {
5195 ret = mwl8k_cmd_set_new_stn_add(hw, vif, sta);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005196 }
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005197
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08005198 for (i = 0; i < NUM_WEP_KEYS; i++) {
5199 key = IEEE80211_KEY_CONF(mwl8k_vif->wep_key_conf[i].key);
5200 if (mwl8k_vif->wep_key_conf[i].enabled)
5201 mwl8k_set_key(hw, SET_KEY, vif, sta, key);
5202 }
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005203 return ret;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01005204}
5205
Eliad Peller8a3a3c82011-10-02 10:15:52 +02005206static int mwl8k_conf_tx(struct ieee80211_hw *hw,
5207 struct ieee80211_vif *vif, u16 queue,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005208 const struct ieee80211_tx_queue_params *params)
5209{
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005210 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005211 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005212
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005213 rc = mwl8k_fw_lock(hw);
5214 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005215 BUG_ON(queue > MWL8K_TX_WMM_QUEUES - 1);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005216 memcpy(&priv->wmm_params[queue], params, sizeof(*params));
5217
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005218 if (!priv->wmm_enabled)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005219 rc = mwl8k_cmd_set_wmm_mode(hw, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005220
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005221 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005222 int q = MWL8K_TX_WMM_QUEUES - 1 - queue;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005223 rc = mwl8k_cmd_set_edca_params(hw, q,
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005224 params->cw_min,
5225 params->cw_max,
5226 params->aifs,
5227 params->txop);
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005228 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005229
5230 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005231 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005232
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005233 return rc;
5234}
5235
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005236static int mwl8k_get_stats(struct ieee80211_hw *hw,
5237 struct ieee80211_low_level_stats *stats)
5238{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005239 return mwl8k_cmd_get_stat(hw, stats);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005240}
5241
John W. Linville0d462bb2010-07-28 14:04:24 -04005242static int mwl8k_get_survey(struct ieee80211_hw *hw, int idx,
5243 struct survey_info *survey)
5244{
5245 struct mwl8k_priv *priv = hw->priv;
5246 struct ieee80211_conf *conf = &hw->conf;
5247
5248 if (idx != 0)
5249 return -ENOENT;
5250
5251 survey->channel = conf->channel;
5252 survey->filled = SURVEY_INFO_NOISE_DBM;
5253 survey->noise = priv->noise;
5254
5255 return 0;
5256}
5257
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005258#define MAX_AMPDU_ATTEMPTS 5
5259
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005260static int
5261mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5262 enum ieee80211_ampdu_mlme_action action,
Johannes Berg0b01f032011-01-18 13:51:05 +01005263 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
5264 u8 buf_size)
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005265{
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005266
5267 int i, rc = 0;
5268 struct mwl8k_priv *priv = hw->priv;
5269 struct mwl8k_ampdu_stream *stream;
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305270 u8 *addr = sta->addr, idx;
Yogesh Ashok Powarfd712f52012-11-06 19:22:35 +05305271 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005272
5273 if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
5274 return -ENOTSUPP;
5275
5276 spin_lock(&priv->stream_lock);
5277 stream = mwl8k_lookup_stream(hw, addr, tid);
5278
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005279 switch (action) {
5280 case IEEE80211_AMPDU_RX_START:
5281 case IEEE80211_AMPDU_RX_STOP:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005282 break;
5283 case IEEE80211_AMPDU_TX_START:
5284 /* By the time we get here the hw queues may contain outgoing
5285 * packets for this RA/TID that are not part of this BA
5286 * session. The hw will assign sequence numbers to these
5287 * packets as they go out. So if we query the hw for its next
5288 * sequence number and use that for the SSN here, it may end up
5289 * being wrong, which will lead to sequence number mismatch at
5290 * the recipient. To avoid this, we reset the sequence number
5291 * to O for the first MPDU in this BA stream.
5292 */
5293 *ssn = 0;
5294 if (stream == NULL) {
5295 /* This means that somebody outside this driver called
5296 * ieee80211_start_tx_ba_session. This is unexpected
5297 * because we do our own rate control. Just warn and
5298 * move on.
5299 */
5300 wiphy_warn(hw->wiphy, "Unexpected call to %s. "
5301 "Proceeding anyway.\n", __func__);
5302 stream = mwl8k_add_stream(hw, sta, tid);
5303 }
5304 if (stream == NULL) {
5305 wiphy_debug(hw->wiphy, "no free AMPDU streams\n");
5306 rc = -EBUSY;
5307 break;
5308 }
5309 stream->state = AMPDU_STREAM_IN_PROGRESS;
5310
5311 /* Release the lock before we do the time consuming stuff */
5312 spin_unlock(&priv->stream_lock);
5313 for (i = 0; i < MAX_AMPDU_ATTEMPTS; i++) {
Yogesh Ashok Powarfd712f52012-11-06 19:22:35 +05305314
5315 /* Check if link is still valid */
5316 if (!sta_info->is_ampdu_allowed) {
5317 spin_lock(&priv->stream_lock);
5318 mwl8k_remove_stream(hw, stream);
5319 spin_unlock(&priv->stream_lock);
5320 return -EBUSY;
5321 }
5322
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05305323 rc = mwl8k_check_ba(hw, stream, vif);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005324
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305325 /* If HW restart is in progress mwl8k_post_cmd will
5326 * return -EBUSY. Avoid retrying mwl8k_check_ba in
5327 * such cases
5328 */
5329 if (!rc || rc == -EBUSY)
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005330 break;
5331 /*
5332 * HW queues take time to be flushed, give them
5333 * sufficient time
5334 */
5335
5336 msleep(1000);
5337 }
5338 spin_lock(&priv->stream_lock);
5339 if (rc) {
5340 wiphy_err(hw->wiphy, "Stream for tid %d busy after %d"
5341 " attempts\n", tid, MAX_AMPDU_ATTEMPTS);
5342 mwl8k_remove_stream(hw, stream);
5343 rc = -EBUSY;
5344 break;
5345 }
5346 ieee80211_start_tx_ba_cb_irqsafe(vif, addr, tid);
5347 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02005348 case IEEE80211_AMPDU_TX_STOP_CONT:
5349 case IEEE80211_AMPDU_TX_STOP_FLUSH:
5350 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305351 if (stream) {
5352 if (stream->state == AMPDU_STREAM_ACTIVE) {
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305353 idx = stream->idx;
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305354 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305355 mwl8k_destroy_ba(hw, idx);
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305356 spin_lock(&priv->stream_lock);
5357 }
5358 mwl8k_remove_stream(hw, stream);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005359 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005360 ieee80211_stop_tx_ba_cb_irqsafe(vif, addr, tid);
5361 break;
5362 case IEEE80211_AMPDU_TX_OPERATIONAL:
5363 BUG_ON(stream == NULL);
5364 BUG_ON(stream->state != AMPDU_STREAM_IN_PROGRESS);
5365 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05305366 rc = mwl8k_create_ba(hw, stream, buf_size, vif);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005367 spin_lock(&priv->stream_lock);
5368 if (!rc)
5369 stream->state = AMPDU_STREAM_ACTIVE;
5370 else {
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305371 idx = stream->idx;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005372 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305373 mwl8k_destroy_ba(hw, idx);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005374 spin_lock(&priv->stream_lock);
5375 wiphy_debug(hw->wiphy,
5376 "Failed adding stream for sta %pM tid %d\n",
5377 addr, tid);
5378 mwl8k_remove_stream(hw, stream);
5379 }
5380 break;
5381
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005382 default:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005383 rc = -ENOTSUPP;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005384 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005385
5386 spin_unlock(&priv->stream_lock);
5387 return rc;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005388}
5389
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005390static const struct ieee80211_ops mwl8k_ops = {
5391 .tx = mwl8k_tx,
5392 .start = mwl8k_start,
5393 .stop = mwl8k_stop,
5394 .add_interface = mwl8k_add_interface,
5395 .remove_interface = mwl8k_remove_interface,
5396 .config = mwl8k_config,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005397 .bss_info_changed = mwl8k_bss_info_changed,
Johannes Berg3ac64be2009-08-17 16:16:53 +02005398 .prepare_multicast = mwl8k_prepare_multicast,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005399 .configure_filter = mwl8k_configure_filter,
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005400 .set_key = mwl8k_set_key,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005401 .set_rts_threshold = mwl8k_set_rts_threshold,
Johannes Berg4a6967b2010-02-19 19:18:37 +01005402 .sta_add = mwl8k_sta_add,
5403 .sta_remove = mwl8k_sta_remove,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005404 .conf_tx = mwl8k_conf_tx,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005405 .get_stats = mwl8k_get_stats,
John W. Linville0d462bb2010-07-28 14:04:24 -04005406 .get_survey = mwl8k_get_survey,
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005407 .ampdu_action = mwl8k_ampdu_action,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005408};
5409
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005410static void mwl8k_finalize_join_worker(struct work_struct *work)
5411{
5412 struct mwl8k_priv *priv =
5413 container_of(work, struct mwl8k_priv, finalize_join_worker);
5414 struct sk_buff *skb = priv->beacon_skb;
Johannes Berg56007a02010-01-26 14:19:52 +01005415 struct ieee80211_mgmt *mgmt = (void *)skb->data;
5416 int len = skb->len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
5417 const u8 *tim = cfg80211_find_ie(WLAN_EID_TIM,
5418 mgmt->u.beacon.variable, len);
5419 int dtim_period = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005420
Johannes Berg56007a02010-01-26 14:19:52 +01005421 if (tim && tim[1] >= 2)
5422 dtim_period = tim[3];
5423
5424 mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len, dtim_period);
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005425
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005426 dev_kfree_skb(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005427 priv->beacon_skb = NULL;
5428}
5429
John W. Linvillebcb628d2009-11-06 16:40:16 -05005430enum {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005431 MWL8363 = 0,
5432 MWL8687,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005433 MWL8366,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02005434};
5435
Yogesh Ashok Powarc2f2e202013-01-03 13:24:44 +05305436#define MWL8K_8366_AP_FW_API 3
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005437#define _MWL8K_8366_AP_FW(api) "mwl8k/fmimage_8366_ap-" #api ".fw"
5438#define MWL8K_8366_AP_FW(api) _MWL8K_8366_AP_FW(api)
5439
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05005440static struct mwl8k_device_info mwl8k_info_tbl[] = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005441 [MWL8363] = {
5442 .part_name = "88w8363",
5443 .helper_image = "mwl8k/helper_8363.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005444 .fw_image_sta = "mwl8k/fmimage_8363.fw",
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005445 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005446 [MWL8687] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005447 .part_name = "88w8687",
5448 .helper_image = "mwl8k/helper_8687.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005449 .fw_image_sta = "mwl8k/fmimage_8687.fw",
John W. Linvillebcb628d2009-11-06 16:40:16 -05005450 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005451 [MWL8366] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005452 .part_name = "88w8366",
5453 .helper_image = "mwl8k/helper_8366.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005454 .fw_image_sta = "mwl8k/fmimage_8366.fw",
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005455 .fw_image_ap = MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API),
5456 .fw_api_ap = MWL8K_8366_AP_FW_API,
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01005457 .ap_rxd_ops = &rxd_8366_ap_ops,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005458 },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005459};
5460
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005461MODULE_FIRMWARE("mwl8k/helper_8363.fw");
5462MODULE_FIRMWARE("mwl8k/fmimage_8363.fw");
5463MODULE_FIRMWARE("mwl8k/helper_8687.fw");
5464MODULE_FIRMWARE("mwl8k/fmimage_8687.fw");
5465MODULE_FIRMWARE("mwl8k/helper_8366.fw");
5466MODULE_FIRMWARE("mwl8k/fmimage_8366.fw");
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005467MODULE_FIRMWARE(MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API));
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005468
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005469static DEFINE_PCI_DEVICE_TABLE(mwl8k_pci_id_table) = {
Benjamin Larssone5868ba12010-03-19 01:46:10 +01005470 { PCI_VDEVICE(MARVELL, 0x2a0a), .driver_data = MWL8363, },
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005471 { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, },
5472 { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005473 { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, },
5474 { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, },
5475 { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, },
Jonas Gorskifc5bc162013-02-05 16:59:17 +01005476 { PCI_VDEVICE(MARVELL, 0x2a41), .driver_data = MWL8366, },
5477 { PCI_VDEVICE(MARVELL, 0x2a42), .driver_data = MWL8366, },
Lennert Buytenhekca665272010-01-12 13:47:53 +01005478 { PCI_VDEVICE(MARVELL, 0x2a43), .driver_data = MWL8366, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005479 { },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005480};
5481MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table);
5482
Brian Cavagnolo99020472010-11-12 17:23:52 -08005483static int mwl8k_request_alt_fw(struct mwl8k_priv *priv)
5484{
5485 int rc;
5486 printk(KERN_ERR "%s: Error requesting preferred fw %s.\n"
5487 "Trying alternative firmware %s\n", pci_name(priv->pdev),
5488 priv->fw_pref, priv->fw_alt);
5489 rc = mwl8k_request_fw(priv, priv->fw_alt, &priv->fw_ucode, true);
5490 if (rc) {
5491 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5492 pci_name(priv->pdev), priv->fw_alt);
5493 return rc;
5494 }
5495 return 0;
5496}
5497
5498static int mwl8k_firmware_load_success(struct mwl8k_priv *priv);
5499static void mwl8k_fw_state_machine(const struct firmware *fw, void *context)
5500{
5501 struct mwl8k_priv *priv = context;
5502 struct mwl8k_device_info *di = priv->device_info;
5503 int rc;
5504
5505 switch (priv->fw_state) {
5506 case FW_STATE_INIT:
5507 if (!fw) {
5508 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
5509 pci_name(priv->pdev), di->helper_image);
5510 goto fail;
5511 }
5512 priv->fw_helper = fw;
5513 rc = mwl8k_request_fw(priv, priv->fw_pref, &priv->fw_ucode,
5514 true);
5515 if (rc && priv->fw_alt) {
5516 rc = mwl8k_request_alt_fw(priv);
5517 if (rc)
5518 goto fail;
5519 priv->fw_state = FW_STATE_LOADING_ALT;
5520 } else if (rc)
5521 goto fail;
5522 else
5523 priv->fw_state = FW_STATE_LOADING_PREF;
5524 break;
5525
5526 case FW_STATE_LOADING_PREF:
5527 if (!fw) {
5528 if (priv->fw_alt) {
5529 rc = mwl8k_request_alt_fw(priv);
5530 if (rc)
5531 goto fail;
5532 priv->fw_state = FW_STATE_LOADING_ALT;
5533 } else
5534 goto fail;
5535 } else {
5536 priv->fw_ucode = fw;
5537 rc = mwl8k_firmware_load_success(priv);
5538 if (rc)
5539 goto fail;
5540 else
5541 complete(&priv->firmware_loading_complete);
5542 }
5543 break;
5544
5545 case FW_STATE_LOADING_ALT:
5546 if (!fw) {
5547 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5548 pci_name(priv->pdev), di->helper_image);
5549 goto fail;
5550 }
5551 priv->fw_ucode = fw;
5552 rc = mwl8k_firmware_load_success(priv);
5553 if (rc)
5554 goto fail;
5555 else
5556 complete(&priv->firmware_loading_complete);
5557 break;
5558
5559 default:
5560 printk(KERN_ERR "%s: Unexpected firmware loading state: %d\n",
5561 MWL8K_NAME, priv->fw_state);
5562 BUG_ON(1);
5563 }
5564
5565 return;
5566
5567fail:
5568 priv->fw_state = FW_STATE_ERROR;
5569 complete(&priv->firmware_loading_complete);
5570 device_release_driver(&priv->pdev->dev);
5571 mwl8k_release_firmware(priv);
5572}
5573
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305574#define MAX_RESTART_ATTEMPTS 1
Brian Cavagnolo99020472010-11-12 17:23:52 -08005575static int mwl8k_init_firmware(struct ieee80211_hw *hw, char *fw_image,
5576 bool nowait)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005577{
5578 struct mwl8k_priv *priv = hw->priv;
5579 int rc;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305580 int count = MAX_RESTART_ATTEMPTS;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005581
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305582retry:
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005583 /* Reset firmware and hardware */
5584 mwl8k_hw_reset(priv);
5585
5586 /* Ask userland hotplug daemon for the device firmware */
Brian Cavagnolo99020472010-11-12 17:23:52 -08005587 rc = mwl8k_request_firmware(priv, fw_image, nowait);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005588 if (rc) {
5589 wiphy_err(hw->wiphy, "Firmware files not found\n");
5590 return rc;
5591 }
5592
Brian Cavagnolo99020472010-11-12 17:23:52 -08005593 if (nowait)
5594 return rc;
5595
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005596 /* Load firmware into hardware */
5597 rc = mwl8k_load_firmware(hw);
5598 if (rc)
5599 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5600
5601 /* Reclaim memory once firmware is successfully loaded */
5602 mwl8k_release_firmware(priv);
5603
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305604 if (rc && count) {
5605 /* FW did not start successfully;
5606 * lets try one more time
5607 */
5608 count--;
5609 wiphy_err(hw->wiphy, "Trying to reload the firmware again\n");
5610 msleep(20);
5611 goto retry;
5612 }
5613
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005614 return rc;
5615}
5616
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005617static int mwl8k_init_txqs(struct ieee80211_hw *hw)
5618{
5619 struct mwl8k_priv *priv = hw->priv;
5620 int rc = 0;
5621 int i;
5622
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005623 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005624 rc = mwl8k_txq_init(hw, i);
5625 if (rc)
5626 break;
5627 if (priv->ap_fw)
5628 iowrite32(priv->txq[i].txd_dma,
5629 priv->sram + priv->txq_offset[i]);
5630 }
5631 return rc;
5632}
5633
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005634/* initialize hw after successfully loading a firmware image */
5635static int mwl8k_probe_hw(struct ieee80211_hw *hw)
5636{
5637 struct mwl8k_priv *priv = hw->priv;
5638 int rc = 0;
5639 int i;
5640
5641 if (priv->ap_fw) {
5642 priv->rxd_ops = priv->device_info->ap_rxd_ops;
5643 if (priv->rxd_ops == NULL) {
5644 wiphy_err(hw->wiphy,
5645 "Driver does not have AP firmware image support for this hardware\n");
Alexey Khoroshilova2ca8ec2013-01-19 01:24:01 +04005646 rc = -ENOENT;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005647 goto err_stop_firmware;
5648 }
5649 } else {
5650 priv->rxd_ops = &rxd_sta_ops;
5651 }
5652
5653 priv->sniffer_enabled = false;
5654 priv->wmm_enabled = false;
5655 priv->pending_tx_pkts = 0;
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05305656 atomic_set(&priv->watchdog_event_pending, 0);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005657
5658 rc = mwl8k_rxq_init(hw, 0);
5659 if (rc)
5660 goto err_stop_firmware;
5661 rxq_refill(hw, 0, INT_MAX);
5662
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005663 /* For the sta firmware, we need to know the dma addresses of tx queues
5664 * before sending MWL8K_CMD_GET_HW_SPEC. So we must initialize them
5665 * prior to issuing this command. But for the AP case, we learn the
5666 * total number of queues from the result CMD_GET_HW_SPEC, so for this
5667 * case we must initialize the tx queues after.
5668 */
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07005669 priv->num_ampdu_queues = 0;
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005670 if (!priv->ap_fw) {
5671 rc = mwl8k_init_txqs(hw);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005672 if (rc)
5673 goto err_free_queues;
5674 }
5675
5676 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
5677 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005678 iowrite32(MWL8K_A2H_INT_TX_DONE|MWL8K_A2H_INT_RX_READY|
5679 MWL8K_A2H_INT_BA_WATCHDOG,
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005680 priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05305681 iowrite32(MWL8K_A2H_INT_OPC_DONE,
5682 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005683
5684 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
5685 IRQF_SHARED, MWL8K_NAME, hw);
5686 if (rc) {
5687 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
5688 goto err_free_queues;
5689 }
5690
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305691 /*
5692 * When hw restart is requested,
5693 * mac80211 will take care of clearing
5694 * the ampdu streams, so do not clear
5695 * the ampdu state here
5696 */
5697 if (!priv->hw_restart_in_progress)
5698 memset(priv->ampdu, 0, sizeof(priv->ampdu));
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005699
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005700 /*
5701 * Temporarily enable interrupts. Initial firmware host
5702 * commands use interrupts and avoid polling. Disable
5703 * interrupts when done.
5704 */
5705 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5706
5707 /* Get config data, mac addrs etc */
5708 if (priv->ap_fw) {
5709 rc = mwl8k_cmd_get_hw_spec_ap(hw);
5710 if (!rc)
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005711 rc = mwl8k_init_txqs(hw);
5712 if (!rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005713 rc = mwl8k_cmd_set_hw_spec(hw);
5714 } else {
5715 rc = mwl8k_cmd_get_hw_spec_sta(hw);
5716 }
5717 if (rc) {
5718 wiphy_err(hw->wiphy, "Cannot initialise firmware\n");
5719 goto err_free_irq;
5720 }
5721
5722 /* Turn radio off */
5723 rc = mwl8k_cmd_radio_disable(hw);
5724 if (rc) {
5725 wiphy_err(hw->wiphy, "Cannot disable\n");
5726 goto err_free_irq;
5727 }
5728
5729 /* Clear MAC address */
5730 rc = mwl8k_cmd_set_mac_addr(hw, NULL, "\x00\x00\x00\x00\x00\x00");
5731 if (rc) {
5732 wiphy_err(hw->wiphy, "Cannot clear MAC address\n");
5733 goto err_free_irq;
5734 }
5735
Yogesh Ashok Powara246ac32013-01-25 16:17:56 +05305736 /* Configure Antennas */
5737 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x3);
5738 if (rc)
5739 wiphy_warn(hw->wiphy, "failed to set # of RX antennas");
5740 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7);
5741 if (rc)
5742 wiphy_warn(hw->wiphy, "failed to set # of TX antennas");
5743
5744
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005745 /* Disable interrupts */
5746 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5747 free_irq(priv->pdev->irq, hw);
5748
5749 wiphy_info(hw->wiphy, "%s v%d, %pm, %s firmware %u.%u.%u.%u\n",
5750 priv->device_info->part_name,
5751 priv->hw_rev, hw->wiphy->perm_addr,
5752 priv->ap_fw ? "AP" : "STA",
5753 (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff,
5754 (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff);
5755
5756 return 0;
5757
5758err_free_irq:
5759 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5760 free_irq(priv->pdev->irq, hw);
5761
5762err_free_queues:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005763 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005764 mwl8k_txq_deinit(hw, i);
5765 mwl8k_rxq_deinit(hw, 0);
5766
5767err_stop_firmware:
5768 mwl8k_hw_reset(priv);
5769
5770 return rc;
5771}
5772
5773/*
5774 * invoke mwl8k_reload_firmware to change the firmware image after the device
5775 * has already been registered
5776 */
5777static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image)
5778{
5779 int i, rc = 0;
5780 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305781 struct mwl8k_vif *vif, *tmp_vif;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005782
5783 mwl8k_stop(hw);
5784 mwl8k_rxq_deinit(hw, 0);
5785
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305786 /*
5787 * All the existing interfaces are re-added by the ieee80211_reconfig;
5788 * which means driver should remove existing interfaces before calling
5789 * ieee80211_restart_hw
5790 */
5791 if (priv->hw_restart_in_progress)
5792 list_for_each_entry_safe(vif, tmp_vif, &priv->vif_list, list)
5793 mwl8k_remove_vif(priv, vif);
5794
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005795 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005796 mwl8k_txq_deinit(hw, i);
5797
Brian Cavagnolo99020472010-11-12 17:23:52 -08005798 rc = mwl8k_init_firmware(hw, fw_image, false);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005799 if (rc)
5800 goto fail;
5801
5802 rc = mwl8k_probe_hw(hw);
5803 if (rc)
5804 goto fail;
5805
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305806 if (priv->hw_restart_in_progress)
5807 return rc;
5808
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005809 rc = mwl8k_start(hw);
5810 if (rc)
5811 goto fail;
5812
5813 rc = mwl8k_config(hw, ~0);
5814 if (rc)
5815 goto fail;
5816
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005817 for (i = 0; i < MWL8K_TX_WMM_QUEUES; i++) {
Eliad Peller8a3a3c82011-10-02 10:15:52 +02005818 rc = mwl8k_conf_tx(hw, NULL, i, &priv->wmm_params[i]);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005819 if (rc)
5820 goto fail;
5821 }
5822
5823 return rc;
5824
5825fail:
5826 printk(KERN_WARNING "mwl8k: Failed to reload firmware image.\n");
5827 return rc;
5828}
5829
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305830static const struct ieee80211_iface_limit ap_if_limits[] = {
5831 { .max = 8, .types = BIT(NL80211_IFTYPE_AP) },
Yogesh Ashok Powar2acdaa72013-01-25 16:19:55 +05305832 { .max = 1, .types = BIT(NL80211_IFTYPE_STATION) },
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305833};
5834
5835static const struct ieee80211_iface_combination ap_if_comb = {
5836 .limits = ap_if_limits,
5837 .n_limits = ARRAY_SIZE(ap_if_limits),
5838 .max_interfaces = 8,
5839 .num_different_channels = 1,
5840};
5841
5842
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005843static int mwl8k_firmware_load_success(struct mwl8k_priv *priv)
5844{
5845 struct ieee80211_hw *hw = priv->hw;
5846 int i, rc;
5847
Brian Cavagnolo99020472010-11-12 17:23:52 -08005848 rc = mwl8k_load_firmware(hw);
5849 mwl8k_release_firmware(priv);
5850 if (rc) {
5851 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5852 return rc;
5853 }
5854
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005855 /*
5856 * Extra headroom is the size of the required DMA header
5857 * minus the size of the smallest 802.11 frame (CTS frame).
5858 */
5859 hw->extra_tx_headroom =
5860 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
5861
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05305862 hw->extra_tx_headroom -= priv->ap_fw ? REDUCED_TX_HEADROOM : 0;
5863
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005864 hw->channel_change_time = 10;
5865
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005866 hw->queues = MWL8K_TX_WMM_QUEUES;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005867
5868 /* Set rssi values to dBm */
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08005869 hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_HAS_RATE_CONTROL;
Yogesh Ashok Powar2a36a0e2011-08-29 17:12:44 +05305870
5871 /*
5872 * Ask mac80211 to not to trigger PS mode
5873 * based on PM bit of incoming frames.
5874 */
5875 if (priv->ap_fw)
5876 hw->flags |= IEEE80211_HW_AP_LINK_PS;
5877
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005878 hw->vif_data_size = sizeof(struct mwl8k_vif);
5879 hw->sta_data_size = sizeof(struct mwl8k_sta);
5880
5881 priv->macids_used = 0;
5882 INIT_LIST_HEAD(&priv->vif_list);
5883
5884 /* Set default radio state and preamble */
Rusty Russell3db1cd52011-12-19 13:56:45 +00005885 priv->radio_on = false;
5886 priv->radio_short_preamble = false;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005887
5888 /* Finalize join worker */
5889 INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005890 /* Handle watchdog ba events */
5891 INIT_WORK(&priv->watchdog_ba_handle, mwl8k_watchdog_ba_events);
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305892 /* To reload the firmware if it crashes */
5893 INIT_WORK(&priv->fw_reload, mwl8k_hw_restart_work);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005894
5895 /* TX reclaim and RX tasklets. */
5896 tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw);
5897 tasklet_disable(&priv->poll_tx_task);
5898 tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw);
5899 tasklet_disable(&priv->poll_rx_task);
5900
5901 /* Power management cookie */
5902 priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
5903 if (priv->cookie == NULL)
5904 return -ENOMEM;
5905
5906 mutex_init(&priv->fw_mutex);
5907 priv->fw_mutex_owner = NULL;
5908 priv->fw_mutex_depth = 0;
5909 priv->hostcmd_wait = NULL;
5910
5911 spin_lock_init(&priv->tx_lock);
5912
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005913 spin_lock_init(&priv->stream_lock);
5914
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005915 priv->tx_wait = NULL;
5916
5917 rc = mwl8k_probe_hw(hw);
5918 if (rc)
5919 goto err_free_cookie;
5920
5921 hw->wiphy->interface_modes = 0;
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305922
5923 if (priv->ap_macids_supported || priv->device_info->fw_image_ap) {
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005924 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP);
Yogesh Ashok Powar2acdaa72013-01-25 16:19:55 +05305925 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305926 hw->wiphy->iface_combinations = &ap_if_comb;
5927 hw->wiphy->n_iface_combinations = 1;
5928 }
5929
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005930 if (priv->sta_macids_supported || priv->device_info->fw_image_sta)
5931 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
5932
5933 rc = ieee80211_register_hw(hw);
5934 if (rc) {
5935 wiphy_err(hw->wiphy, "Cannot register device\n");
5936 goto err_unprobe_hw;
5937 }
5938
5939 return 0;
5940
5941err_unprobe_hw:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005942 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005943 mwl8k_txq_deinit(hw, i);
5944 mwl8k_rxq_deinit(hw, 0);
5945
5946err_free_cookie:
5947 if (priv->cookie != NULL)
5948 pci_free_consistent(priv->pdev, 4,
5949 priv->cookie, priv->cookie_dma);
5950
5951 return rc;
5952}
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05005953static int mwl8k_probe(struct pci_dev *pdev,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005954 const struct pci_device_id *id)
5955{
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005956 static int printed_version;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005957 struct ieee80211_hw *hw;
5958 struct mwl8k_priv *priv;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005959 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005960 int rc;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02005961
5962 if (!printed_version) {
5963 printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION);
5964 printed_version = 1;
5965 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005966
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005967
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005968 rc = pci_enable_device(pdev);
5969 if (rc) {
5970 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
5971 MWL8K_NAME);
5972 return rc;
5973 }
5974
5975 rc = pci_request_regions(pdev, MWL8K_NAME);
5976 if (rc) {
5977 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
5978 MWL8K_NAME);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01005979 goto err_disable_device;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005980 }
5981
5982 pci_set_master(pdev);
5983
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005984
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005985 hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
5986 if (hw == NULL) {
5987 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
5988 rc = -ENOMEM;
5989 goto err_free_reg;
5990 }
5991
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005992 SET_IEEE80211_DEV(hw, &pdev->dev);
5993 pci_set_drvdata(pdev, hw);
5994
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005995 priv = hw->priv;
5996 priv->hw = hw;
5997 priv->pdev = pdev;
John W. Linvillebcb628d2009-11-06 16:40:16 -05005998 priv->device_info = &mwl8k_info_tbl[id->driver_data];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005999
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006000
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006001 priv->sram = pci_iomap(pdev, 0, 0x10000);
6002 if (priv->sram == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07006003 wiphy_err(hw->wiphy, "Cannot map device SRAM\n");
Alexey Khoroshilova2ca8ec2013-01-19 01:24:01 +04006004 rc = -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006005 goto err_iounmap;
6006 }
6007
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006008 /*
6009 * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
6010 * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
6011 */
6012 priv->regs = pci_iomap(pdev, 1, 0x10000);
6013 if (priv->regs == NULL) {
6014 priv->regs = pci_iomap(pdev, 2, 0x10000);
6015 if (priv->regs == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07006016 wiphy_err(hw->wiphy, "Cannot map device registers\n");
Alexey Khoroshilova2ca8ec2013-01-19 01:24:01 +04006017 rc = -EIO;
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006018 goto err_iounmap;
6019 }
6020 }
6021
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006022 /*
Brian Cavagnolo99020472010-11-12 17:23:52 -08006023 * Choose the initial fw image depending on user input. If a second
6024 * image is available, make it the alternative image that will be
6025 * loaded if the first one fails.
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006026 */
Brian Cavagnolo99020472010-11-12 17:23:52 -08006027 init_completion(&priv->firmware_loading_complete);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006028 di = priv->device_info;
Brian Cavagnolo99020472010-11-12 17:23:52 -08006029 if (ap_mode_default && di->fw_image_ap) {
6030 priv->fw_pref = di->fw_image_ap;
6031 priv->fw_alt = di->fw_image_sta;
6032 } else if (!ap_mode_default && di->fw_image_sta) {
6033 priv->fw_pref = di->fw_image_sta;
6034 priv->fw_alt = di->fw_image_ap;
6035 } else if (ap_mode_default && !di->fw_image_ap && di->fw_image_sta) {
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006036 printk(KERN_WARNING "AP fw is unavailable. Using STA fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08006037 priv->fw_pref = di->fw_image_sta;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006038 } else if (!ap_mode_default && !di->fw_image_sta && di->fw_image_ap) {
6039 printk(KERN_WARNING "STA fw is unavailable. Using AP fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08006040 priv->fw_pref = di->fw_image_ap;
6041 }
6042 rc = mwl8k_init_firmware(hw, priv->fw_pref, true);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006043 if (rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006044 goto err_stop_firmware;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05306045
6046 priv->hw_restart_in_progress = false;
6047
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05306048 priv->running_bsses = 0;
6049
Brian Cavagnolo99020472010-11-12 17:23:52 -08006050 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006051
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01006052err_stop_firmware:
6053 mwl8k_hw_reset(priv);
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01006054
6055err_iounmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006056 if (priv->regs != NULL)
6057 pci_iounmap(pdev, priv->regs);
6058
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006059 if (priv->sram != NULL)
6060 pci_iounmap(pdev, priv->sram);
6061
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006062 pci_set_drvdata(pdev, NULL);
6063 ieee80211_free_hw(hw);
6064
6065err_free_reg:
6066 pci_release_regions(pdev);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01006067
6068err_disable_device:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006069 pci_disable_device(pdev);
6070
6071 return rc;
6072}
6073
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05006074static void mwl8k_remove(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006075{
6076 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
6077 struct mwl8k_priv *priv;
6078 int i;
6079
6080 if (hw == NULL)
6081 return;
6082 priv = hw->priv;
6083
Brian Cavagnolo99020472010-11-12 17:23:52 -08006084 wait_for_completion(&priv->firmware_loading_complete);
6085
6086 if (priv->fw_state == FW_STATE_ERROR) {
6087 mwl8k_hw_reset(priv);
6088 goto unmap;
6089 }
6090
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006091 ieee80211_stop_queues(hw);
6092
Lennert Buytenhek60aa5692009-08-03 21:59:09 +02006093 ieee80211_unregister_hw(hw);
6094
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01006095 /* Remove TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01006096 tasklet_kill(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01006097 tasklet_kill(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006098
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006099 /* Stop hardware */
6100 mwl8k_hw_reset(priv);
6101
6102 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07006103 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01006104 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006105
Brian Cavagnoloe6007072011-03-17 11:58:44 -07006106 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006107 mwl8k_txq_deinit(hw, i);
6108
6109 mwl8k_rxq_deinit(hw, 0);
6110
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02006111 pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006112
Brian Cavagnolo99020472010-11-12 17:23:52 -08006113unmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006114 pci_iounmap(pdev, priv->regs);
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006115 pci_iounmap(pdev, priv->sram);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006116 pci_set_drvdata(pdev, NULL);
6117 ieee80211_free_hw(hw);
6118 pci_release_regions(pdev);
6119 pci_disable_device(pdev);
6120}
6121
6122static struct pci_driver mwl8k_driver = {
6123 .name = MWL8K_NAME,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02006124 .id_table = mwl8k_pci_id_table,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006125 .probe = mwl8k_probe,
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05006126 .remove = mwl8k_remove,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006127};
6128
Axel Lin5b0a3b72012-04-14 10:38:36 +08006129module_pci_driver(mwl8k_driver);
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02006130
6131MODULE_DESCRIPTION(MWL8K_DESC);
6132MODULE_VERSION(MWL8K_VERSION);
6133MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
6134MODULE_LICENSE("GPL");