blob: f9b1218c761a4b7a187c239239365fe077649624 [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
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000012#include <linux/interrupt.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010013#include <linux/module.h>
14#include <linux/kernel.h>
Lennert Buytenhek3d76e822009-10-22 20:20:16 +020015#include <linux/sched.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010016#include <linux/spinlock.h>
17#include <linux/list.h>
18#include <linux/pci.h>
19#include <linux/delay.h>
20#include <linux/completion.h>
21#include <linux/etherdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010023#include <net/mac80211.h>
24#include <linux/moduleparam.h>
25#include <linux/firmware.h>
26#include <linux/workqueue.h>
27
28#define MWL8K_DESC "Marvell TOPDOG(R) 802.11 Wireless Network Driver"
29#define MWL8K_NAME KBUILD_MODNAME
Yogesh Ashok Powar00e8e692011-12-20 11:39:29 +053030#define MWL8K_VERSION "0.13"
Lennert Buytenheka66098d2009-03-10 10:13:33 +010031
Brian Cavagnolo0863ade2010-11-12 17:23:50 -080032/* Module parameters */
Rusty Russelleb939922011-12-19 14:08:01 +000033static bool ap_mode_default;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -080034module_param(ap_mode_default, bool, 0);
35MODULE_PARM_DESC(ap_mode_default,
36 "Set to 1 to make ap mode the default instead of sta mode");
37
Lennert Buytenheka66098d2009-03-10 10:13:33 +010038/* Register definitions */
39#define MWL8K_HIU_GEN_PTR 0x00000c10
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020040#define MWL8K_MODE_STA 0x0000005a
41#define MWL8K_MODE_AP 0x000000a5
Lennert Buytenheka66098d2009-03-10 10:13:33 +010042#define MWL8K_HIU_INT_CODE 0x00000c14
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020043#define MWL8K_FWSTA_READY 0xf0f1f2f4
44#define MWL8K_FWAP_READY 0xf1f2f4a5
45#define MWL8K_INT_CODE_CMD_FINISHED 0x00000005
Lennert Buytenheka66098d2009-03-10 10:13:33 +010046#define MWL8K_HIU_SCRATCH 0x00000c40
47
48/* Host->device communications */
49#define MWL8K_HIU_H2A_INTERRUPT_EVENTS 0x00000c18
50#define MWL8K_HIU_H2A_INTERRUPT_STATUS 0x00000c1c
51#define MWL8K_HIU_H2A_INTERRUPT_MASK 0x00000c20
52#define MWL8K_HIU_H2A_INTERRUPT_CLEAR_SEL 0x00000c24
53#define MWL8K_HIU_H2A_INTERRUPT_STATUS_MASK 0x00000c28
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020054#define MWL8K_H2A_INT_DUMMY (1 << 20)
55#define MWL8K_H2A_INT_RESET (1 << 15)
56#define MWL8K_H2A_INT_DOORBELL (1 << 1)
57#define MWL8K_H2A_INT_PPA_READY (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010058
59/* Device->host communications */
60#define MWL8K_HIU_A2H_INTERRUPT_EVENTS 0x00000c2c
61#define MWL8K_HIU_A2H_INTERRUPT_STATUS 0x00000c30
62#define MWL8K_HIU_A2H_INTERRUPT_MASK 0x00000c34
63#define MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL 0x00000c38
64#define MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK 0x00000c3c
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020065#define MWL8K_A2H_INT_DUMMY (1 << 20)
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -070066#define MWL8K_A2H_INT_BA_WATCHDOG (1 << 14)
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020067#define MWL8K_A2H_INT_CHNL_SWITCHED (1 << 11)
68#define MWL8K_A2H_INT_QUEUE_EMPTY (1 << 10)
69#define MWL8K_A2H_INT_RADAR_DETECT (1 << 7)
70#define MWL8K_A2H_INT_RADIO_ON (1 << 6)
71#define MWL8K_A2H_INT_RADIO_OFF (1 << 5)
72#define MWL8K_A2H_INT_MAC_EVENT (1 << 3)
73#define MWL8K_A2H_INT_OPC_DONE (1 << 2)
74#define MWL8K_A2H_INT_RX_READY (1 << 1)
75#define MWL8K_A2H_INT_TX_DONE (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010076
Pradeep Nemavat566875d2011-04-21 16:34:57 +053077/* HW micro second timer register
78 * located at offset 0xA600. This
79 * will be used to timestamp tx
80 * packets.
81 */
82
83#define MWL8K_HW_TIMER_REGISTER 0x0000a600
Yogesh Ashok Powar4c924f42014-02-25 17:42:09 +053084#define BBU_RXRDY_CNT_REG 0x0000a860
85#define NOK_CCA_CNT_REG 0x0000a6a0
86#define BBU_AVG_NOISE_VAL 0x67
Pradeep Nemavat566875d2011-04-21 16:34:57 +053087
Lennert Buytenheka66098d2009-03-10 10:13:33 +010088#define MWL8K_A2H_EVENTS (MWL8K_A2H_INT_DUMMY | \
89 MWL8K_A2H_INT_CHNL_SWITCHED | \
90 MWL8K_A2H_INT_QUEUE_EMPTY | \
91 MWL8K_A2H_INT_RADAR_DETECT | \
92 MWL8K_A2H_INT_RADIO_ON | \
93 MWL8K_A2H_INT_RADIO_OFF | \
94 MWL8K_A2H_INT_MAC_EVENT | \
95 MWL8K_A2H_INT_OPC_DONE | \
96 MWL8K_A2H_INT_RX_READY | \
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -070097 MWL8K_A2H_INT_TX_DONE | \
98 MWL8K_A2H_INT_BA_WATCHDOG)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010099
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100100#define MWL8K_RX_QUEUES 1
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700101#define MWL8K_TX_WMM_QUEUES 4
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700102#define MWL8K_MAX_AMPDU_QUEUES 8
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700103#define MWL8K_MAX_TX_QUEUES (MWL8K_TX_WMM_QUEUES + MWL8K_MAX_AMPDU_QUEUES)
104#define mwl8k_tx_queues(priv) (MWL8K_TX_WMM_QUEUES + (priv)->num_ampdu_queues)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100105
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +0530106/* txpriorities are mapped with hw queues.
107 * Each hw queue has a txpriority.
108 */
109#define TOTAL_HW_TX_QUEUES 8
110
111/* Each HW queue can have one AMPDU stream.
112 * But, because one of the hw queue is reserved,
113 * maximum AMPDU queues that can be created are
114 * one short of total tx queues.
115 */
116#define MWL8K_NUM_AMPDU_STREAMS (TOTAL_HW_TX_QUEUES - 1)
117
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +0530118#define MWL8K_NUM_CHANS 18
119
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200120struct rxd_ops {
121 int rxd_size;
122 void (*rxd_init)(void *rxd, dma_addr_t next_dma_addr);
123 void (*rxd_refill)(void *rxd, dma_addr_t addr, int len);
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100124 int (*rxd_process)(void *rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -0400125 __le16 *qos, s8 *noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200126};
127
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200128struct mwl8k_device_info {
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200129 char *part_name;
130 char *helper_image;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800131 char *fw_image_sta;
132 char *fw_image_ap;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100133 struct rxd_ops *ap_rxd_ops;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -0800134 u32 fw_api_ap;
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200135};
136
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100137struct mwl8k_rx_queue {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200138 int rxd_count;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100139
140 /* hw receives here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200141 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100142
143 /* refill descs here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200144 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100145
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200146 void *rxd;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200147 dma_addr_t rxd_dma;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200148 struct {
149 struct sk_buff *skb;
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +0900150 DEFINE_DMA_UNMAP_ADDR(dma);
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200151 } *buf;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100152};
153
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100154struct mwl8k_tx_queue {
155 /* hw transmits here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200156 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100157
158 /* sw appends here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200159 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100160
Kalle Valo8ccbc3b2010-02-07 10:20:52 +0200161 unsigned int len;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200162 struct mwl8k_tx_desc *txd;
163 dma_addr_t txd_dma;
164 struct sk_buff **skb;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100165};
166
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700167enum {
168 AMPDU_NO_STREAM,
169 AMPDU_STREAM_NEW,
170 AMPDU_STREAM_IN_PROGRESS,
171 AMPDU_STREAM_ACTIVE,
172};
173
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700174struct mwl8k_ampdu_stream {
175 struct ieee80211_sta *sta;
176 u8 tid;
177 u8 state;
178 u8 idx;
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700179};
180
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100181struct mwl8k_priv {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100182 struct ieee80211_hw *hw;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100183 struct pci_dev *pdev;
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +0530184 int irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100185
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200186 struct mwl8k_device_info *device_info;
187
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100188 void __iomem *sram;
189 void __iomem *regs;
190
191 /* firmware */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800192 const struct firmware *fw_helper;
193 const struct firmware *fw_ucode;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100194
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100195 /* hardware/firmware parameters */
196 bool ap_fw;
197 struct rxd_ops *rxd_ops;
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100198 struct ieee80211_supported_band band_24;
199 struct ieee80211_channel channels_24[14];
Jonas Gorski3f524552013-04-14 14:11:58 +0200200 struct ieee80211_rate rates_24[13];
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100201 struct ieee80211_supported_band band_50;
202 struct ieee80211_channel channels_50[4];
Jonas Gorski3f524552013-04-14 14:11:58 +0200203 struct ieee80211_rate rates_50[8];
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100204 u32 ap_macids_supported;
205 u32 sta_macids_supported;
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100206
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700207 /* Ampdu stream information */
208 u8 num_ampdu_queues;
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700209 spinlock_t stream_lock;
210 struct mwl8k_ampdu_stream ampdu[MWL8K_MAX_AMPDU_QUEUES];
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700211 struct work_struct watchdog_ba_handle;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700212
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200213 /* firmware access */
214 struct mutex fw_mutex;
215 struct task_struct *fw_mutex_owner;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +0530216 struct task_struct *hw_restart_owner;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200217 int fw_mutex_depth;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200218 struct completion *hostcmd_wait;
219
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +0530220 atomic_t watchdog_event_pending;
221
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100222 /* lock held over TX and TX reap */
223 spinlock_t tx_lock;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100224
Lennert Buytenhek88de754a2009-10-22 20:19:37 +0200225 /* TX quiesce completion, protected by fw_mutex and tx_lock */
226 struct completion *tx_wait;
227
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100228 /* List of interfaces. */
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100229 u32 macids_used;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100230 struct list_head vif_list;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100231
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100232 /* power management status cookie from firmware */
233 u32 *cookie;
234 dma_addr_t cookie_dma;
235
236 u16 num_mcaddrs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100237 u8 hw_rev;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +0200238 u32 fw_rev;
Jonas Gorskic3f251a2013-03-11 17:44:21 +0100239 u32 caps;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100240
241 /*
242 * Running count of TX packets in flight, to avoid
243 * iterating over the transmit rings each time.
244 */
245 int pending_tx_pkts;
246
247 struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES];
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700248 struct mwl8k_tx_queue txq[MWL8K_MAX_TX_QUEUES];
249 u32 txq_offset[MWL8K_MAX_TX_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100250
Lennert Buytenhekc46563b2009-07-16 12:14:58 +0200251 bool radio_on;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +0200252 bool radio_short_preamble;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +0200253 bool sniffer_enabled;
Lennert Buytenhek0439b1f2009-07-16 12:34:02 +0200254 bool wmm_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100255
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100256 /* XXX need to convert this to handle multiple interfaces */
257 bool capture_beacon;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200258 u8 capture_bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100259 struct sk_buff *beacon_skb;
260
261 /*
262 * This FJ worker has to be global as it is scheduled from the
263 * RX handler. At this point we don't know which interface it
264 * belongs to until the list of bssids waiting to complete join
265 * is checked.
266 */
267 struct work_struct finalize_join_worker;
268
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +0100269 /* Tasklet to perform TX reclaim. */
270 struct tasklet_struct poll_tx_task;
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +0100271
272 /* Tasklet to perform RX. */
273 struct tasklet_struct poll_rx_task;
John W. Linville0d462bb2010-07-28 14:04:24 -0400274
275 /* Most recently reported noise in dBm */
276 s8 noise;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800277
278 /*
279 * preserve the queue configurations so they can be restored if/when
280 * the firmware image is swapped.
281 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700282 struct ieee80211_tx_queue_params wmm_params[MWL8K_TX_WMM_QUEUES];
Brian Cavagnolo99020472010-11-12 17:23:52 -0800283
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +0530284 /* To perform the task of reloading the firmware */
285 struct work_struct fw_reload;
286 bool hw_restart_in_progress;
287
Brian Cavagnolo99020472010-11-12 17:23:52 -0800288 /* async firmware loading state */
289 unsigned fw_state;
290 char *fw_pref;
291 char *fw_alt;
Nishant Sarmukadam98929822013-03-01 17:13:01 +0530292 bool is_8764;
Brian Cavagnolo99020472010-11-12 17:23:52 -0800293 struct completion firmware_loading_complete;
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +0530294
295 /* bitmap of running BSSes */
296 u32 running_bsses;
Yogesh Ashok Powar4c924f42014-02-25 17:42:09 +0530297
298 /* ACS related */
299 bool sw_scan_start;
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +0530300 struct ieee80211_channel *acs_chan;
301 unsigned long channel_time;
302 struct survey_info survey[MWL8K_NUM_CHANS];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100303};
304
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800305#define MAX_WEP_KEY_LEN 13
306#define NUM_WEP_KEYS 4
307
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100308/* Per interface specific private data */
309struct mwl8k_vif {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100310 struct list_head list;
311 struct ieee80211_vif *vif;
312
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100313 /* Firmware macid for this vif. */
314 int macid;
315
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +0100316 /* Non AMPDU sequence number assigned by driver. */
Lennert Buytenheka6804002010-01-04 21:55:42 +0100317 u16 seqno;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800318
319 /* Saved WEP keys */
320 struct {
321 u8 enabled;
322 u8 key[sizeof(struct ieee80211_key_conf) + MAX_WEP_KEY_LEN];
323 } wep_key_conf[NUM_WEP_KEYS];
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800324
325 /* BSSID */
326 u8 bssid[ETH_ALEN];
327
328 /* A flag to indicate is HW crypto is enabled for this bssid */
329 bool is_hw_crypto_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100330};
Lennert Buytenheka94cc972009-08-03 21:58:57 +0200331#define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv))
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800332#define IEEE80211_KEY_CONF(_u8) ((struct ieee80211_key_conf *)(_u8))
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100333
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700334struct tx_traffic_info {
335 u32 start_time;
336 u32 pkts;
337};
338
339#define MWL8K_MAX_TID 8
Lennert Buytenheka6804002010-01-04 21:55:42 +0100340struct mwl8k_sta {
341 /* Index into station database. Returned by UPDATE_STADB. */
342 u8 peer_id;
Nishant Sarmukadam170335432011-03-17 11:58:48 -0700343 u8 is_ampdu_allowed;
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700344 struct tx_traffic_info tx_stats[MWL8K_MAX_TID];
Lennert Buytenheka6804002010-01-04 21:55:42 +0100345};
346#define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv))
347
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100348static const struct ieee80211_channel mwl8k_channels_24[] = {
Jonas Gorskid786f672013-02-08 16:07:25 +0100349 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2412, .hw_value = 1, },
350 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2417, .hw_value = 2, },
351 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2422, .hw_value = 3, },
352 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2427, .hw_value = 4, },
353 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2432, .hw_value = 5, },
354 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2437, .hw_value = 6, },
355 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2442, .hw_value = 7, },
356 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2447, .hw_value = 8, },
357 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2452, .hw_value = 9, },
358 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2457, .hw_value = 10, },
359 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2462, .hw_value = 11, },
360 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2467, .hw_value = 12, },
361 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2472, .hw_value = 13, },
362 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2484, .hw_value = 14, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100363};
364
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100365static const struct ieee80211_rate mwl8k_rates_24[] = {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100366 { .bitrate = 10, .hw_value = 2, },
367 { .bitrate = 20, .hw_value = 4, },
368 { .bitrate = 55, .hw_value = 11, },
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200369 { .bitrate = 110, .hw_value = 22, },
370 { .bitrate = 220, .hw_value = 44, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100371 { .bitrate = 60, .hw_value = 12, },
372 { .bitrate = 90, .hw_value = 18, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100373 { .bitrate = 120, .hw_value = 24, },
374 { .bitrate = 180, .hw_value = 36, },
375 { .bitrate = 240, .hw_value = 48, },
376 { .bitrate = 360, .hw_value = 72, },
377 { .bitrate = 480, .hw_value = 96, },
378 { .bitrate = 540, .hw_value = 108, },
Lennert Buytenhek140eb5e2009-11-30 18:11:44 +0100379};
380
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100381static const struct ieee80211_channel mwl8k_channels_50[] = {
Jonas Gorskid786f672013-02-08 16:07:25 +0100382 { .band = IEEE80211_BAND_5GHZ, .center_freq = 5180, .hw_value = 36, },
383 { .band = IEEE80211_BAND_5GHZ, .center_freq = 5200, .hw_value = 40, },
384 { .band = IEEE80211_BAND_5GHZ, .center_freq = 5220, .hw_value = 44, },
385 { .band = IEEE80211_BAND_5GHZ, .center_freq = 5240, .hw_value = 48, },
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100386};
387
388static const struct ieee80211_rate mwl8k_rates_50[] = {
389 { .bitrate = 60, .hw_value = 12, },
390 { .bitrate = 90, .hw_value = 18, },
391 { .bitrate = 120, .hw_value = 24, },
392 { .bitrate = 180, .hw_value = 36, },
393 { .bitrate = 240, .hw_value = 48, },
394 { .bitrate = 360, .hw_value = 72, },
395 { .bitrate = 480, .hw_value = 96, },
396 { .bitrate = 540, .hw_value = 108, },
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100397};
398
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100399/* Set or get info from Firmware */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100400#define MWL8K_CMD_GET 0x0000
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800401#define MWL8K_CMD_SET 0x0001
402#define MWL8K_CMD_SET_LIST 0x0002
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100403
404/* Firmware command codes */
405#define MWL8K_CMD_CODE_DNLD 0x0001
406#define MWL8K_CMD_GET_HW_SPEC 0x0003
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200407#define MWL8K_CMD_SET_HW_SPEC 0x0004
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100408#define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010
409#define MWL8K_CMD_GET_STAT 0x0014
Yogesh Ashok Powarc3015312014-02-25 17:41:58 +0530410#define MWL8K_CMD_BBP_REG_ACCESS 0x001a
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200411#define MWL8K_CMD_RADIO_CONTROL 0x001c
412#define MWL8K_CMD_RF_TX_POWER 0x001e
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800413#define MWL8K_CMD_TX_POWER 0x001f
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200414#define MWL8K_CMD_RF_ANTENNA 0x0020
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100415#define MWL8K_CMD_SET_BEACON 0x0100 /* per-vif */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100416#define MWL8K_CMD_SET_PRE_SCAN 0x0107
417#define MWL8K_CMD_SET_POST_SCAN 0x0108
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200418#define MWL8K_CMD_SET_RF_CHANNEL 0x010a
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100419#define MWL8K_CMD_SET_AID 0x010d
420#define MWL8K_CMD_SET_RATE 0x0110
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200421#define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100422#define MWL8K_CMD_RTS_THRESHOLD 0x0113
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200423#define MWL8K_CMD_SET_SLOT 0x0114
424#define MWL8K_CMD_SET_EDCA_PARAMS 0x0115
425#define MWL8K_CMD_SET_WMM_MODE 0x0123
426#define MWL8K_CMD_MIMO_CONFIG 0x0125
427#define MWL8K_CMD_USE_FIXED_RATE 0x0126
428#define MWL8K_CMD_ENABLE_SNIFFER 0x0150
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100429#define MWL8K_CMD_SET_MAC_ADDR 0x0202 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200430#define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700431#define MWL8K_CMD_GET_WATCHDOG_BITMAP 0x0205
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +0530432#define MWL8K_CMD_DEL_MAC_ADDR 0x0206 /* per-vif */
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100433#define MWL8K_CMD_BSS_START 0x1100 /* per-vif */
434#define MWL8K_CMD_SET_NEW_STN 0x1111 /* per-vif */
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800435#define MWL8K_CMD_UPDATE_ENCRYPTION 0x1122 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200436#define MWL8K_CMD_UPDATE_STADB 0x1123
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700437#define MWL8K_CMD_BASTREAM 0x1125
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100438
John W. Linvilleb6037422010-07-20 13:55:00 -0400439static const char *mwl8k_cmd_name(__le16 cmd, char *buf, int bufsize)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100440{
John W. Linvilleb6037422010-07-20 13:55:00 -0400441 u16 command = le16_to_cpu(cmd);
442
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100443#define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\
444 snprintf(buf, bufsize, "%s", #x);\
445 return buf;\
446 } while (0)
John W. Linvilleb6037422010-07-20 13:55:00 -0400447 switch (command & ~0x8000) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100448 MWL8K_CMDNAME(CODE_DNLD);
449 MWL8K_CMDNAME(GET_HW_SPEC);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200450 MWL8K_CMDNAME(SET_HW_SPEC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100451 MWL8K_CMDNAME(MAC_MULTICAST_ADR);
452 MWL8K_CMDNAME(GET_STAT);
453 MWL8K_CMDNAME(RADIO_CONTROL);
454 MWL8K_CMDNAME(RF_TX_POWER);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800455 MWL8K_CMDNAME(TX_POWER);
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200456 MWL8K_CMDNAME(RF_ANTENNA);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100457 MWL8K_CMDNAME(SET_BEACON);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100458 MWL8K_CMDNAME(SET_PRE_SCAN);
459 MWL8K_CMDNAME(SET_POST_SCAN);
460 MWL8K_CMDNAME(SET_RF_CHANNEL);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100461 MWL8K_CMDNAME(SET_AID);
462 MWL8K_CMDNAME(SET_RATE);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200463 MWL8K_CMDNAME(SET_FINALIZE_JOIN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100464 MWL8K_CMDNAME(RTS_THRESHOLD);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200465 MWL8K_CMDNAME(SET_SLOT);
466 MWL8K_CMDNAME(SET_EDCA_PARAMS);
467 MWL8K_CMDNAME(SET_WMM_MODE);
468 MWL8K_CMDNAME(MIMO_CONFIG);
469 MWL8K_CMDNAME(USE_FIXED_RATE);
470 MWL8K_CMDNAME(ENABLE_SNIFFER);
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200471 MWL8K_CMDNAME(SET_MAC_ADDR);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200472 MWL8K_CMDNAME(SET_RATEADAPT_MODE);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100473 MWL8K_CMDNAME(BSS_START);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +0100474 MWL8K_CMDNAME(SET_NEW_STN);
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800475 MWL8K_CMDNAME(UPDATE_ENCRYPTION);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200476 MWL8K_CMDNAME(UPDATE_STADB);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700477 MWL8K_CMDNAME(BASTREAM);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700478 MWL8K_CMDNAME(GET_WATCHDOG_BITMAP);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100479 default:
480 snprintf(buf, bufsize, "0x%x", cmd);
481 }
482#undef MWL8K_CMDNAME
483
484 return buf;
485}
486
487/* Hardware and firmware reset */
488static void mwl8k_hw_reset(struct mwl8k_priv *priv)
489{
490 iowrite32(MWL8K_H2A_INT_RESET,
491 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
492 iowrite32(MWL8K_H2A_INT_RESET,
493 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
494 msleep(20);
495}
496
497/* Release fw image */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800498static void mwl8k_release_fw(const struct firmware **fw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100499{
500 if (*fw == NULL)
501 return;
502 release_firmware(*fw);
503 *fw = NULL;
504}
505
506static void mwl8k_release_firmware(struct mwl8k_priv *priv)
507{
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100508 mwl8k_release_fw(&priv->fw_ucode);
509 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100510}
511
Brian Cavagnolo99020472010-11-12 17:23:52 -0800512/* states for asynchronous f/w loading */
513static void mwl8k_fw_state_machine(const struct firmware *fw, void *context);
514enum {
515 FW_STATE_INIT = 0,
516 FW_STATE_LOADING_PREF,
517 FW_STATE_LOADING_ALT,
518 FW_STATE_ERROR,
519};
520
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100521/* Request fw image */
522static int mwl8k_request_fw(struct mwl8k_priv *priv,
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800523 const char *fname, const struct firmware **fw,
Brian Cavagnolo99020472010-11-12 17:23:52 -0800524 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100525{
526 /* release current image */
527 if (*fw != NULL)
528 mwl8k_release_fw(fw);
529
Brian Cavagnolo99020472010-11-12 17:23:52 -0800530 if (nowait)
531 return request_firmware_nowait(THIS_MODULE, 1, fname,
532 &priv->pdev->dev, GFP_KERNEL,
533 priv, mwl8k_fw_state_machine);
534 else
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800535 return request_firmware(fw, fname, &priv->pdev->dev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100536}
537
Brian Cavagnolo99020472010-11-12 17:23:52 -0800538static int mwl8k_request_firmware(struct mwl8k_priv *priv, char *fw_image,
539 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100540{
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200541 struct mwl8k_device_info *di = priv->device_info;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100542 int rc;
543
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200544 if (di->helper_image != NULL) {
Brian Cavagnolo99020472010-11-12 17:23:52 -0800545 if (nowait)
546 rc = mwl8k_request_fw(priv, di->helper_image,
547 &priv->fw_helper, true);
548 else
549 rc = mwl8k_request_fw(priv, di->helper_image,
550 &priv->fw_helper, false);
551 if (rc)
552 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
553 pci_name(priv->pdev), di->helper_image);
554
555 if (rc || nowait)
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200556 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100557 }
558
Brian Cavagnolo99020472010-11-12 17:23:52 -0800559 if (nowait) {
560 /*
561 * if we get here, no helper image is needed. Skip the
562 * FW_STATE_INIT state.
563 */
564 priv->fw_state = FW_STATE_LOADING_PREF;
565 rc = mwl8k_request_fw(priv, fw_image,
566 &priv->fw_ucode,
567 true);
568 } else
569 rc = mwl8k_request_fw(priv, fw_image,
570 &priv->fw_ucode, false);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100571 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200572 printk(KERN_ERR "%s: Error requesting firmware file %s\n",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800573 pci_name(priv->pdev), fw_image);
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100574 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100575 return rc;
576 }
577
578 return 0;
579}
580
581struct mwl8k_cmd_pkt {
582 __le16 code;
583 __le16 length;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100584 __u8 seq_num;
585 __u8 macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100586 __le16 result;
587 char payload[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000588} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100589
590/*
591 * Firmware loading.
592 */
593static int
594mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length)
595{
596 void __iomem *regs = priv->regs;
597 dma_addr_t dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100598 int loops;
599
600 dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE);
601 if (pci_dma_mapping_error(priv->pdev, dma_addr))
602 return -ENOMEM;
603
604 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
605 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
606 iowrite32(MWL8K_H2A_INT_DOORBELL,
607 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
608 iowrite32(MWL8K_H2A_INT_DUMMY,
609 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
610
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100611 loops = 1000;
612 do {
613 u32 int_code;
Nishant Sarmukadam98929822013-03-01 17:13:01 +0530614 if (priv->is_8764) {
615 int_code = ioread32(regs +
616 MWL8K_HIU_H2A_INTERRUPT_STATUS);
617 if (int_code == 0)
618 break;
619 } else {
620 int_code = ioread32(regs + MWL8K_HIU_INT_CODE);
621 if (int_code == MWL8K_INT_CODE_CMD_FINISHED) {
622 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
623 break;
624 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100625 }
Lennert Buytenhek3d76e822009-10-22 20:20:16 +0200626 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100627 udelay(1);
628 } while (--loops);
629
630 pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE);
631
Lennert Buytenhekd4b70572009-07-16 12:44:45 +0200632 return loops ? 0 : -ETIMEDOUT;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100633}
634
635static int mwl8k_load_fw_image(struct mwl8k_priv *priv,
636 const u8 *data, size_t length)
637{
638 struct mwl8k_cmd_pkt *cmd;
639 int done;
640 int rc = 0;
641
642 cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL);
643 if (cmd == NULL)
644 return -ENOMEM;
645
646 cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD);
647 cmd->seq_num = 0;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100648 cmd->macid = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100649 cmd->result = 0;
650
651 done = 0;
652 while (length) {
653 int block_size = length > 256 ? 256 : length;
654
655 memcpy(cmd->payload, data + done, block_size);
656 cmd->length = cpu_to_le16(block_size);
657
658 rc = mwl8k_send_fw_load_cmd(priv, cmd,
659 sizeof(*cmd) + block_size);
660 if (rc)
661 break;
662
663 done += block_size;
664 length -= block_size;
665 }
666
667 if (!rc) {
668 cmd->length = 0;
669 rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd));
670 }
671
672 kfree(cmd);
673
674 return rc;
675}
676
677static int mwl8k_feed_fw_image(struct mwl8k_priv *priv,
678 const u8 *data, size_t length)
679{
680 unsigned char *buffer;
681 int may_continue, rc = 0;
682 u32 done, prev_block_size;
683
684 buffer = kmalloc(1024, GFP_KERNEL);
685 if (buffer == NULL)
686 return -ENOMEM;
687
688 done = 0;
689 prev_block_size = 0;
690 may_continue = 1000;
691 while (may_continue > 0) {
692 u32 block_size;
693
694 block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH);
695 if (block_size & 1) {
696 block_size &= ~1;
697 may_continue--;
698 } else {
699 done += prev_block_size;
700 length -= prev_block_size;
701 }
702
703 if (block_size > 1024 || block_size > length) {
704 rc = -EOVERFLOW;
705 break;
706 }
707
708 if (length == 0) {
709 rc = 0;
710 break;
711 }
712
713 if (block_size == 0) {
714 rc = -EPROTO;
715 may_continue--;
716 udelay(1);
717 continue;
718 }
719
720 prev_block_size = block_size;
721 memcpy(buffer, data + done, block_size);
722
723 rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size);
724 if (rc)
725 break;
726 }
727
728 if (!rc && length != 0)
729 rc = -EREMOTEIO;
730
731 kfree(buffer);
732
733 return rc;
734}
735
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200736static int mwl8k_load_firmware(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100737{
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200738 struct mwl8k_priv *priv = hw->priv;
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800739 const struct firmware *fw = priv->fw_ucode;
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200740 int rc;
741 int loops;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100742
Nishant Sarmukadam98929822013-03-01 17:13:01 +0530743 if (!memcmp(fw->data, "\x01\x00\x00\x00", 4) && !priv->is_8764) {
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800744 const struct firmware *helper = priv->fw_helper;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100745
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200746 if (helper == NULL) {
747 printk(KERN_ERR "%s: helper image needed but none "
748 "given\n", pci_name(priv->pdev));
749 return -EINVAL;
750 }
751
752 rc = mwl8k_load_fw_image(priv, helper->data, helper->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100753 if (rc) {
754 printk(KERN_ERR "%s: unable to load firmware "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200755 "helper image\n", pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100756 return rc;
757 }
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +0530758 msleep(20);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100759
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200760 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100761 } else {
Nishant Sarmukadam98929822013-03-01 17:13:01 +0530762 if (priv->is_8764)
763 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
764 else
765 rc = mwl8k_load_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100766 }
767
768 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200769 printk(KERN_ERR "%s: unable to load firmware image\n",
770 pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100771 return rc;
772 }
773
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100774 iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100775
Lennert Buytenhek89b872e2009-11-30 18:13:20 +0100776 loops = 500000;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100777 do {
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200778 u32 ready_code;
779
780 ready_code = ioread32(priv->regs + MWL8K_HIU_INT_CODE);
781 if (ready_code == MWL8K_FWAP_READY) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000782 priv->ap_fw = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100783 break;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200784 } else if (ready_code == MWL8K_FWSTA_READY) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000785 priv->ap_fw = false;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200786 break;
787 }
788
789 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100790 udelay(1);
791 } while (--loops);
792
793 return loops ? 0 : -ETIMEDOUT;
794}
795
796
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100797/* DMA header used by firmware and hardware. */
798struct mwl8k_dma_data {
799 __le16 fwlen;
800 struct ieee80211_hdr wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100801 char data[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000802} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100803
804/* Routines to add/remove DMA header from skb. */
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100805static inline void mwl8k_remove_dma_header(struct sk_buff *skb, __le16 qos)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100806{
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100807 struct mwl8k_dma_data *tr;
808 int hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100809
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100810 tr = (struct mwl8k_dma_data *)skb->data;
811 hdrlen = ieee80211_hdrlen(tr->wh.frame_control);
812
813 if (hdrlen != sizeof(tr->wh)) {
814 if (ieee80211_is_data_qos(tr->wh.frame_control)) {
815 memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2);
816 *((__le16 *)(tr->data - 2)) = qos;
817 } else {
818 memmove(tr->data - hdrlen, &tr->wh, hdrlen);
819 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100820 }
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100821
822 if (hdrlen != sizeof(*tr))
823 skb_pull(skb, sizeof(*tr) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100824}
825
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530826#define REDUCED_TX_HEADROOM 8
827
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800828static void
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530829mwl8k_add_dma_header(struct mwl8k_priv *priv, struct sk_buff *skb,
830 int head_pad, int tail_pad)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100831{
832 struct ieee80211_hdr *wh;
Lennert Buytenhekca009302009-11-30 18:12:20 +0100833 int hdrlen;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800834 int reqd_hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100835 struct mwl8k_dma_data *tr;
836
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100837 /*
Lennert Buytenhekca009302009-11-30 18:12:20 +0100838 * Add a firmware DMA header; the firmware requires that we
839 * present a 2-byte payload length followed by a 4-address
840 * header (without QoS field), followed (optionally) by any
841 * WEP/ExtIV header (but only filled in for CCMP).
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100842 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100843 wh = (struct ieee80211_hdr *)skb->data;
844
845 hdrlen = ieee80211_hdrlen(wh->frame_control);
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530846
847 /*
848 * Check if skb_resize is required because of
849 * tx_headroom adjustment.
850 */
851 if (priv->ap_fw && (hdrlen < (sizeof(struct ieee80211_cts)
852 + REDUCED_TX_HEADROOM))) {
853 if (pskb_expand_head(skb, REDUCED_TX_HEADROOM, 0, GFP_ATOMIC)) {
854
855 wiphy_err(priv->hw->wiphy,
856 "Failed to reallocate TX buffer\n");
857 return;
858 }
859 skb->truesize += REDUCED_TX_HEADROOM;
860 }
861
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530862 reqd_hdrlen = sizeof(*tr) + head_pad;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800863
864 if (hdrlen != reqd_hdrlen)
865 skb_push(skb, reqd_hdrlen - hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100866
867 if (ieee80211_is_data_qos(wh->frame_control))
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800868 hdrlen -= IEEE80211_QOS_CTL_LEN;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100869
870 tr = (struct mwl8k_dma_data *)skb->data;
871 if (wh != &tr->wh)
872 memmove(&tr->wh, wh, hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100873 if (hdrlen != sizeof(tr->wh))
874 memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100875
876 /*
877 * Firmware length is the length of the fully formed "802.11
878 * payload". That is, everything except for the 802.11 header.
879 * This includes all crypto material including the MIC.
880 */
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800881 tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr) + tail_pad);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100882}
883
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530884static void mwl8k_encapsulate_tx_frame(struct mwl8k_priv *priv,
885 struct sk_buff *skb)
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800886{
887 struct ieee80211_hdr *wh;
888 struct ieee80211_tx_info *tx_info;
889 struct ieee80211_key_conf *key_conf;
890 int data_pad;
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530891 int head_pad = 0;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800892
893 wh = (struct ieee80211_hdr *)skb->data;
894
895 tx_info = IEEE80211_SKB_CB(skb);
896
897 key_conf = NULL;
898 if (ieee80211_is_data(wh->frame_control))
899 key_conf = tx_info->control.hw_key;
900
901 /*
902 * Make sure the packet header is in the DMA header format (4-address
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530903 * without QoS), and add head & tail padding when HW crypto is enabled.
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800904 *
905 * We have the following trailer padding requirements:
906 * - WEP: 4 trailer bytes (ICV)
907 * - TKIP: 12 trailer bytes (8 MIC + 4 ICV)
908 * - CCMP: 8 trailer bytes (MIC)
909 */
910 data_pad = 0;
911 if (key_conf != NULL) {
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530912 head_pad = key_conf->iv_len;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800913 switch (key_conf->cipher) {
914 case WLAN_CIPHER_SUITE_WEP40:
915 case WLAN_CIPHER_SUITE_WEP104:
916 data_pad = 4;
917 break;
918 case WLAN_CIPHER_SUITE_TKIP:
919 data_pad = 12;
920 break;
921 case WLAN_CIPHER_SUITE_CCMP:
922 data_pad = 8;
923 break;
924 }
925 }
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530926 mwl8k_add_dma_header(priv, skb, head_pad, data_pad);
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800927}
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100928
929/*
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530930 * Packet reception for 88w8366/88w8764 AP firmware.
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200931 */
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530932struct mwl8k_rxd_ap {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200933 __le16 pkt_len;
934 __u8 sq2;
935 __u8 rate;
936 __le32 pkt_phys_addr;
937 __le32 next_rxd_phys_addr;
938 __le16 qos_control;
939 __le16 htsig2;
940 __le32 hw_rssi_info;
941 __le32 hw_noise_floor_info;
942 __u8 noise_floor;
943 __u8 pad0[3];
944 __u8 rssi;
945 __u8 rx_status;
946 __u8 channel;
947 __u8 rx_ctrl;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000948} __packed;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200949
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530950#define MWL8K_AP_RATE_INFO_MCS_FORMAT 0x80
951#define MWL8K_AP_RATE_INFO_40MHZ 0x40
952#define MWL8K_AP_RATE_INFO_RATEID(x) ((x) & 0x3f)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100953
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530954#define MWL8K_AP_RX_CTRL_OWNED_BY_HOST 0x80
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200955
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530956/* 8366/8764 AP rx_status bits */
957#define MWL8K_AP_RXSTAT_DECRYPT_ERR_MASK 0x80
958#define MWL8K_AP_RXSTAT_GENERAL_DECRYPT_ERR 0xFF
959#define MWL8K_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR 0x02
960#define MWL8K_AP_RXSTAT_WEP_DECRYPT_ICV_ERR 0x04
961#define MWL8K_AP_RXSTAT_TKIP_DECRYPT_ICV_ERR 0x08
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800962
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530963static void mwl8k_rxd_ap_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200964{
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530965 struct mwl8k_rxd_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200966
967 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530968 rxd->rx_ctrl = MWL8K_AP_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200969}
970
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530971static void mwl8k_rxd_ap_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200972{
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530973 struct mwl8k_rxd_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200974
975 rxd->pkt_len = cpu_to_le16(len);
976 rxd->pkt_phys_addr = cpu_to_le32(addr);
977 wmb();
978 rxd->rx_ctrl = 0;
979}
980
981static int
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530982mwl8k_rxd_ap_process(void *_rxd, struct ieee80211_rx_status *status,
983 __le16 *qos, s8 *noise)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200984{
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530985 struct mwl8k_rxd_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200986
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530987 if (!(rxd->rx_ctrl & MWL8K_AP_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200988 return -1;
989 rmb();
990
991 memset(status, 0, sizeof(*status));
992
993 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -0400994 *noise = -rxd->noise_floor;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200995
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530996 if (rxd->rate & MWL8K_AP_RATE_INFO_MCS_FORMAT) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200997 status->flag |= RX_FLAG_HT;
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +0530998 if (rxd->rate & MWL8K_AP_RATE_INFO_40MHZ)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100999 status->flag |= RX_FLAG_40MHZ;
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +05301000 status->rate_idx = MWL8K_AP_RATE_INFO_RATEID(rxd->rate);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001001 } else {
1002 int i;
1003
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001004 for (i = 0; i < ARRAY_SIZE(mwl8k_rates_24); i++) {
1005 if (mwl8k_rates_24[i].hw_value == rxd->rate) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001006 status->rate_idx = i;
1007 break;
1008 }
1009 }
1010 }
1011
Lennert Buytenhek85478342010-01-12 13:48:56 +01001012 if (rxd->channel > 14) {
1013 status->band = IEEE80211_BAND_5GHZ;
1014 if (!(status->flag & RX_FLAG_HT))
1015 status->rate_idx -= 5;
1016 } else {
1017 status->band = IEEE80211_BAND_2GHZ;
1018 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001019 status->freq = ieee80211_channel_to_frequency(rxd->channel,
1020 status->band);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001021
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001022 *qos = rxd->qos_control;
1023
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +05301024 if ((rxd->rx_status != MWL8K_AP_RXSTAT_GENERAL_DECRYPT_ERR) &&
1025 (rxd->rx_status & MWL8K_AP_RXSTAT_DECRYPT_ERR_MASK) &&
1026 (rxd->rx_status & MWL8K_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR))
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001027 status->flag |= RX_FLAG_MMIC_ERROR;
1028
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001029 return le16_to_cpu(rxd->pkt_len);
1030}
1031
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +05301032static struct rxd_ops rxd_ap_ops = {
1033 .rxd_size = sizeof(struct mwl8k_rxd_ap),
1034 .rxd_init = mwl8k_rxd_ap_init,
1035 .rxd_refill = mwl8k_rxd_ap_refill,
1036 .rxd_process = mwl8k_rxd_ap_process,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001037};
1038
1039/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001040 * Packet reception for STA firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001041 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001042struct mwl8k_rxd_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001043 __le16 pkt_len;
1044 __u8 link_quality;
1045 __u8 noise_level;
1046 __le32 pkt_phys_addr;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001047 __le32 next_rxd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001048 __le16 qos_control;
1049 __le16 rate_info;
1050 __le32 pad0[4];
1051 __u8 rssi;
1052 __u8 channel;
1053 __le16 pad1;
1054 __u8 rx_ctrl;
1055 __u8 rx_status;
1056 __u8 pad2[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +00001057} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001058
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001059#define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000
1060#define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3)
1061#define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f)
1062#define MWL8K_STA_RATE_INFO_40MHZ 0x0004
1063#define MWL8K_STA_RATE_INFO_SHORTGI 0x0002
1064#define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001065
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001066#define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001067#define MWL8K_STA_RX_CTRL_DECRYPT_ERROR 0x04
1068/* ICV=0 or MIC=1 */
1069#define MWL8K_STA_RX_CTRL_DEC_ERR_TYPE 0x08
1070/* Key is uploaded only in failure case */
1071#define MWL8K_STA_RX_CTRL_KEY_INDEX 0x30
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001072
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001073static void mwl8k_rxd_sta_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001074{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001075 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001076
1077 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001078 rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001079}
1080
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001081static void mwl8k_rxd_sta_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001082{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001083 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001084
1085 rxd->pkt_len = cpu_to_le16(len);
1086 rxd->pkt_phys_addr = cpu_to_le32(addr);
1087 wmb();
1088 rxd->rx_ctrl = 0;
1089}
1090
1091static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001092mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -04001093 __le16 *qos, s8 *noise)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001094{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001095 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001096 u16 rate_info;
1097
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001098 if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001099 return -1;
1100 rmb();
1101
1102 rate_info = le16_to_cpu(rxd->rate_info);
1103
1104 memset(status, 0, sizeof(*status));
1105
1106 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -04001107 *noise = -rxd->noise_level;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001108 status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info);
1109 status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001110
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001111 if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001112 status->flag |= RX_FLAG_SHORTPRE;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001113 if (rate_info & MWL8K_STA_RATE_INFO_40MHZ)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001114 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001115 if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001116 status->flag |= RX_FLAG_SHORT_GI;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001117 if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001118 status->flag |= RX_FLAG_HT;
1119
Lennert Buytenhek85478342010-01-12 13:48:56 +01001120 if (rxd->channel > 14) {
1121 status->band = IEEE80211_BAND_5GHZ;
1122 if (!(status->flag & RX_FLAG_HT))
1123 status->rate_idx -= 5;
1124 } else {
1125 status->band = IEEE80211_BAND_2GHZ;
1126 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001127 status->freq = ieee80211_channel_to_frequency(rxd->channel,
1128 status->band);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001129
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001130 *qos = rxd->qos_control;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001131 if ((rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DECRYPT_ERROR) &&
1132 (rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DEC_ERR_TYPE))
1133 status->flag |= RX_FLAG_MMIC_ERROR;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001134
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001135 return le16_to_cpu(rxd->pkt_len);
1136}
1137
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001138static struct rxd_ops rxd_sta_ops = {
1139 .rxd_size = sizeof(struct mwl8k_rxd_sta),
1140 .rxd_init = mwl8k_rxd_sta_init,
1141 .rxd_refill = mwl8k_rxd_sta_refill,
1142 .rxd_process = mwl8k_rxd_sta_process,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001143};
1144
1145
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001146#define MWL8K_RX_DESCS 256
1147#define MWL8K_RX_MAXSZ 3800
1148
1149static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
1150{
1151 struct mwl8k_priv *priv = hw->priv;
1152 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1153 int size;
1154 int i;
1155
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001156 rxq->rxd_count = 0;
1157 rxq->head = 0;
1158 rxq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001159
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001160 size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001161
Joe Perchese6443b22014-08-08 14:24:40 -07001162 rxq->rxd = pci_zalloc_consistent(priv->pdev, size, &rxq->rxd_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001163 if (rxq->rxd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001164 wiphy_err(hw->wiphy, "failed to alloc RX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001165 return -ENOMEM;
1166 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001167
Shan Weib9ede5f2011-03-08 11:02:03 +08001168 rxq->buf = kcalloc(MWL8K_RX_DESCS, sizeof(*rxq->buf), GFP_KERNEL);
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001169 if (rxq->buf == NULL) {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001170 pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001171 return -ENOMEM;
1172 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001173
1174 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001175 int desc_size;
1176 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001177 int nexti;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001178 dma_addr_t next_dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001179
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001180 desc_size = priv->rxd_ops->rxd_size;
1181 rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001182
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001183 nexti = i + 1;
1184 if (nexti == MWL8K_RX_DESCS)
1185 nexti = 0;
1186 next_dma_addr = rxq->rxd_dma + (nexti * desc_size);
1187
1188 priv->rxd_ops->rxd_init(rxd, next_dma_addr);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001189 }
1190
1191 return 0;
1192}
1193
1194static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
1195{
1196 struct mwl8k_priv *priv = hw->priv;
1197 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1198 int refilled;
1199
1200 refilled = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001201 while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001202 struct sk_buff *skb;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001203 dma_addr_t addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001204 int rx;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001205 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001206
1207 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
1208 if (skb == NULL)
1209 break;
1210
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001211 addr = pci_map_single(priv->pdev, skb->data,
1212 MWL8K_RX_MAXSZ, DMA_FROM_DEVICE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001213
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001214 rxq->rxd_count++;
1215 rx = rxq->tail++;
1216 if (rxq->tail == MWL8K_RX_DESCS)
1217 rxq->tail = 0;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001218 rxq->buf[rx].skb = skb;
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001219 dma_unmap_addr_set(&rxq->buf[rx], dma, addr);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001220
1221 rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size);
1222 priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001223
1224 refilled++;
1225 }
1226
1227 return refilled;
1228}
1229
1230/* Must be called only when the card's reception is completely halted */
1231static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
1232{
1233 struct mwl8k_priv *priv = hw->priv;
1234 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1235 int i;
1236
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001237 if (rxq->rxd == NULL)
1238 return;
1239
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001240 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001241 if (rxq->buf[i].skb != NULL) {
1242 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001243 dma_unmap_addr(&rxq->buf[i], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001244 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001245 dma_unmap_addr_set(&rxq->buf[i], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001246
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001247 kfree_skb(rxq->buf[i].skb);
1248 rxq->buf[i].skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001249 }
1250 }
1251
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001252 kfree(rxq->buf);
1253 rxq->buf = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001254
1255 pci_free_consistent(priv->pdev,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001256 MWL8K_RX_DESCS * priv->rxd_ops->rxd_size,
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001257 rxq->rxd, rxq->rxd_dma);
1258 rxq->rxd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001259}
1260
1261
1262/*
1263 * Scan a list of BSSIDs to process for finalize join.
1264 * Allows for extension to process multiple BSSIDs.
1265 */
1266static inline int
1267mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
1268{
1269 return priv->capture_beacon &&
1270 ieee80211_is_beacon(wh->frame_control) &&
Julia Lawall3f9a79b2013-12-30 19:15:01 +01001271 ether_addr_equal_64bits(wh->addr3, priv->capture_bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001272}
1273
Lennert Buytenhek37797522009-10-22 20:19:45 +02001274static inline void mwl8k_save_beacon(struct ieee80211_hw *hw,
1275 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001276{
Lennert Buytenhek37797522009-10-22 20:19:45 +02001277 struct mwl8k_priv *priv = hw->priv;
1278
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001279 priv->capture_beacon = false;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001280 memset(priv->capture_bssid, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001281
1282 /*
1283 * Use GFP_ATOMIC as rxq_process is called from
1284 * the primary interrupt handler, memory allocation call
1285 * must not sleep.
1286 */
1287 priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
1288 if (priv->beacon_skb != NULL)
Lennert Buytenhek37797522009-10-22 20:19:45 +02001289 ieee80211_queue_work(hw, &priv->finalize_join_worker);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001290}
1291
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001292static inline struct mwl8k_vif *mwl8k_find_vif_bss(struct list_head *vif_list,
1293 u8 *bssid)
1294{
1295 struct mwl8k_vif *mwl8k_vif;
1296
1297 list_for_each_entry(mwl8k_vif,
1298 vif_list, list) {
1299 if (memcmp(bssid, mwl8k_vif->bssid,
1300 ETH_ALEN) == 0)
1301 return mwl8k_vif;
1302 }
1303
1304 return NULL;
1305}
1306
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001307static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
1308{
1309 struct mwl8k_priv *priv = hw->priv;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001310 struct mwl8k_vif *mwl8k_vif = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001311 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1312 int processed;
1313
1314 processed = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001315 while (rxq->rxd_count && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001316 struct sk_buff *skb;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001317 void *rxd;
1318 int pkt_len;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001319 struct ieee80211_rx_status status;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001320 struct ieee80211_hdr *wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001321 __le16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001322
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001323 skb = rxq->buf[rxq->head].skb;
Lennert Buytenhekd25f9f12009-08-03 21:58:26 +02001324 if (skb == NULL)
1325 break;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001326
1327 rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size);
1328
John W. Linville0d462bb2010-07-28 14:04:24 -04001329 pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos,
1330 &priv->noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001331 if (pkt_len < 0)
1332 break;
1333
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001334 rxq->buf[rxq->head].skb = NULL;
1335
1336 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001337 dma_unmap_addr(&rxq->buf[rxq->head], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001338 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001339 dma_unmap_addr_set(&rxq->buf[rxq->head], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001340
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001341 rxq->head++;
1342 if (rxq->head == MWL8K_RX_DESCS)
1343 rxq->head = 0;
1344
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001345 rxq->rxd_count--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001346
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001347 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001348
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001349 /*
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001350 * Check for a pending join operation. Save a
1351 * copy of the beacon and schedule a tasklet to
1352 * send a FINALIZE_JOIN command to the firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001353 */
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001354 if (mwl8k_capture_bssid(priv, (void *)skb->data))
Lennert Buytenhek37797522009-10-22 20:19:45 +02001355 mwl8k_save_beacon(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001356
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001357 if (ieee80211_has_protected(wh->frame_control)) {
1358
1359 /* Check if hw crypto has been enabled for
1360 * this bss. If yes, set the status flags
1361 * accordingly
1362 */
1363 mwl8k_vif = mwl8k_find_vif_bss(&priv->vif_list,
1364 wh->addr1);
1365
1366 if (mwl8k_vif != NULL &&
Joe Perches23677ce2012-02-09 11:17:23 +00001367 mwl8k_vif->is_hw_crypto_enabled) {
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001368 /*
1369 * When MMIC ERROR is encountered
1370 * by the firmware, payload is
1371 * dropped and only 32 bytes of
1372 * mwl8k Firmware header is sent
1373 * to the host.
1374 *
1375 * We need to add four bytes of
1376 * key information. In it
1377 * MAC80211 expects keyidx set to
1378 * 0 for triggering Counter
1379 * Measure of MMIC failure.
1380 */
1381 if (status.flag & RX_FLAG_MMIC_ERROR) {
1382 struct mwl8k_dma_data *tr;
1383 tr = (struct mwl8k_dma_data *)skb->data;
1384 memset((void *)&(tr->data), 0, 4);
1385 pkt_len += 4;
1386 }
1387
1388 if (!ieee80211_is_auth(wh->frame_control))
1389 status.flag |= RX_FLAG_IV_STRIPPED |
1390 RX_FLAG_DECRYPTED |
1391 RX_FLAG_MMIC_STRIPPED;
1392 }
1393 }
1394
1395 skb_put(skb, pkt_len);
1396 mwl8k_remove_dma_header(skb, qos);
Johannes Bergf1d58c22009-06-17 13:13:00 +02001397 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
1398 ieee80211_rx_irqsafe(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001399
1400 processed++;
1401 }
1402
1403 return processed;
1404}
1405
1406
1407/*
1408 * Packet transmission.
1409 */
1410
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001411#define MWL8K_TXD_STATUS_OK 0x00000001
1412#define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
1413#define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
1414#define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001415#define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001416
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001417#define MWL8K_QOS_QLEN_UNSPEC 0xff00
1418#define MWL8K_QOS_ACK_POLICY_MASK 0x0060
1419#define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000
1420#define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060
1421#define MWL8K_QOS_EOSP 0x0010
1422
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001423struct mwl8k_tx_desc {
1424 __le32 status;
1425 __u8 data_rate;
1426 __u8 tx_priority;
1427 __le16 qos_control;
1428 __le32 pkt_phys_addr;
1429 __le16 pkt_len;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001430 __u8 dest_MAC_addr[ETH_ALEN];
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001431 __le32 next_txd_phys_addr;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07001432 __le32 timestamp;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001433 __le16 rate_info;
1434 __u8 peer_id;
Brian Cavagnoloa1fe24b2010-11-12 17:23:47 -08001435 __u8 tx_frag_cnt;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001436} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001437
1438#define MWL8K_TX_DESCS 128
1439
1440static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1441{
1442 struct mwl8k_priv *priv = hw->priv;
1443 struct mwl8k_tx_queue *txq = priv->txq + index;
1444 int size;
1445 int i;
1446
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001447 txq->len = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001448 txq->head = 0;
1449 txq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001450
1451 size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1452
Joe Perchese6443b22014-08-08 14:24:40 -07001453 txq->txd = pci_zalloc_consistent(priv->pdev, size, &txq->txd_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001454 if (txq->txd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001455 wiphy_err(hw->wiphy, "failed to alloc TX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001456 return -ENOMEM;
1457 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001458
Shan Weib9ede5f2011-03-08 11:02:03 +08001459 txq->skb = kcalloc(MWL8K_TX_DESCS, sizeof(*txq->skb), GFP_KERNEL);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001460 if (txq->skb == NULL) {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001461 pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001462 return -ENOMEM;
1463 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001464
1465 for (i = 0; i < MWL8K_TX_DESCS; i++) {
1466 struct mwl8k_tx_desc *tx_desc;
1467 int nexti;
1468
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001469 tx_desc = txq->txd + i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001470 nexti = (i + 1) % MWL8K_TX_DESCS;
1471
1472 tx_desc->status = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001473 tx_desc->next_txd_phys_addr =
1474 cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001475 }
1476
1477 return 0;
1478}
1479
1480static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1481{
1482 iowrite32(MWL8K_H2A_INT_PPA_READY,
1483 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1484 iowrite32(MWL8K_H2A_INT_DUMMY,
1485 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1486 ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1487}
1488
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001489static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001490{
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001491 struct mwl8k_priv *priv = hw->priv;
1492 int i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001493
Brian Cavagnoloe6007072011-03-17 11:58:44 -07001494 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001495 struct mwl8k_tx_queue *txq = priv->txq + i;
1496 int fw_owned = 0;
1497 int drv_owned = 0;
1498 int unused = 0;
1499 int desc;
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001500
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001501 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001502 struct mwl8k_tx_desc *tx_desc = txq->txd + desc;
1503 u32 status;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001504
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001505 status = le32_to_cpu(tx_desc->status);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001506 if (status & MWL8K_TXD_STATUS_FW_OWNED)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001507 fw_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001508 else
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001509 drv_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001510
1511 if (tx_desc->pkt_len == 0)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001512 unused++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001513 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001514
Joe Perchesc96c31e2010-07-26 14:39:58 -07001515 wiphy_err(hw->wiphy,
1516 "txq[%d] len=%d head=%d tail=%d "
1517 "fw_owned=%d drv_owned=%d unused=%d\n",
1518 i,
1519 txq->len, txq->head, txq->tail,
1520 fw_owned, drv_owned, unused);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001521 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001522}
1523
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001524/*
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001525 * Must be called with priv->fw_mutex held and tx queues stopped.
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001526 */
Lennert Buytenhek62abd3c2010-01-08 18:28:34 +01001527#define MWL8K_TX_WAIT_TIMEOUT_MS 5000
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001528
Lennert Buytenhek950d5b02009-07-17 01:48:41 +02001529static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001530{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001531 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001532 DECLARE_COMPLETION_ONSTACK(tx_wait);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001533 int retry;
1534 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001535
1536 might_sleep();
1537
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05301538 /* Since fw restart is in progress, allow only the firmware
1539 * commands from the restart code and block the other
1540 * commands since they are going to fail in any case since
1541 * the firmware has crashed
1542 */
1543 if (priv->hw_restart_in_progress) {
1544 if (priv->hw_restart_owner == current)
1545 return 0;
1546 else
1547 return -EBUSY;
1548 }
1549
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05301550 if (atomic_read(&priv->watchdog_event_pending))
1551 return 0;
1552
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001553 /*
1554 * The TX queues are stopped at this point, so this test
1555 * doesn't need to take ->tx_lock.
1556 */
1557 if (!priv->pending_tx_pkts)
1558 return 0;
1559
Nishant Sarmukadambbf71a82013-05-24 14:42:25 +05301560 retry = 1;
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001561 rc = 0;
1562
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001563 spin_lock_bh(&priv->tx_lock);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001564 priv->tx_wait = &tx_wait;
1565 while (!rc) {
1566 int oldcount;
1567 unsigned long timeout;
1568
1569 oldcount = priv->pending_tx_pkts;
1570
1571 spin_unlock_bh(&priv->tx_lock);
1572 timeout = wait_for_completion_timeout(&tx_wait,
1573 msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS));
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05301574
1575 if (atomic_read(&priv->watchdog_event_pending)) {
1576 spin_lock_bh(&priv->tx_lock);
1577 priv->tx_wait = NULL;
1578 spin_unlock_bh(&priv->tx_lock);
1579 return 0;
1580 }
1581
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001582 spin_lock_bh(&priv->tx_lock);
1583
Nishant Sarmukadambbf71a82013-05-24 14:42:25 +05301584 if (timeout || !priv->pending_tx_pkts) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001585 WARN_ON(priv->pending_tx_pkts);
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301586 if (retry)
Joe Perchesc96c31e2010-07-26 14:39:58 -07001587 wiphy_notice(hw->wiphy, "tx rings drained\n");
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001588 break;
1589 }
1590
Nishant Sarmukadambbf71a82013-05-24 14:42:25 +05301591 if (retry) {
1592 mwl8k_tx_start(priv);
1593 retry = 0;
1594 continue;
1595 }
1596
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001597 if (priv->pending_tx_pkts < oldcount) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001598 wiphy_notice(hw->wiphy,
1599 "waiting for tx rings to drain (%d -> %d pkts)\n",
1600 oldcount, priv->pending_tx_pkts);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001601 retry = 1;
1602 continue;
1603 }
1604
1605 priv->tx_wait = NULL;
1606
Joe Perchesc96c31e2010-07-26 14:39:58 -07001607 wiphy_err(hw->wiphy, "tx rings stuck for %d ms\n",
1608 MWL8K_TX_WAIT_TIMEOUT_MS);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001609 mwl8k_dump_tx_rings(hw);
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05301610 priv->hw_restart_in_progress = true;
1611 ieee80211_queue_work(hw, &priv->fw_reload);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001612
1613 rc = -ETIMEDOUT;
1614 }
Nishant Sarmukadam9b0b11f2013-01-08 10:16:05 +05301615 priv->tx_wait = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001616 spin_unlock_bh(&priv->tx_lock);
1617
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001618 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001619}
1620
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02001621#define MWL8K_TXD_SUCCESS(status) \
1622 ((status) & (MWL8K_TXD_STATUS_OK | \
1623 MWL8K_TXD_STATUS_OK_RETRY | \
1624 MWL8K_TXD_STATUS_OK_MORE_RETRY))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001625
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001626static int mwl8k_tid_queue_mapping(u8 tid)
1627{
1628 BUG_ON(tid > 7);
1629
1630 switch (tid) {
1631 case 0:
1632 case 3:
1633 return IEEE80211_AC_BE;
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001634 case 1:
1635 case 2:
1636 return IEEE80211_AC_BK;
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001637 case 4:
1638 case 5:
1639 return IEEE80211_AC_VI;
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001640 case 6:
1641 case 7:
1642 return IEEE80211_AC_VO;
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001643 default:
1644 return -1;
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001645 }
1646}
1647
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001648/* The firmware will fill in the rate information
1649 * for each packet that gets queued in the hardware
John W. Linville49adc5c2011-04-27 15:04:28 -04001650 * and these macros will interpret that info.
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001651 */
1652
John W. Linville49adc5c2011-04-27 15:04:28 -04001653#define RI_FORMAT(a) (a & 0x0001)
1654#define RI_RATE_ID_MCS(a) ((a & 0x01f8) >> 3)
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001655
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001656static int
1657mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001658{
1659 struct mwl8k_priv *priv = hw->priv;
1660 struct mwl8k_tx_queue *txq = priv->txq + index;
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001661 int processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001662
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001663 processed = 0;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001664 while (txq->len > 0 && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001665 int tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001666 struct mwl8k_tx_desc *tx_desc;
1667 unsigned long addr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001668 int size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001669 struct sk_buff *skb;
1670 struct ieee80211_tx_info *info;
1671 u32 status;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001672 struct ieee80211_sta *sta;
1673 struct mwl8k_sta *sta_info = NULL;
1674 u16 rate_info;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001675 struct ieee80211_hdr *wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001676
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001677 tx = txq->head;
1678 tx_desc = txq->txd + tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001679
1680 status = le32_to_cpu(tx_desc->status);
1681
1682 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1683 if (!force)
1684 break;
1685 tx_desc->status &=
1686 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1687 }
1688
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001689 txq->head = (tx + 1) % MWL8K_TX_DESCS;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001690 BUG_ON(txq->len == 0);
1691 txq->len--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001692 priv->pending_tx_pkts--;
1693
1694 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001695 size = le16_to_cpu(tx_desc->pkt_len);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001696 skb = txq->skb[tx];
1697 txq->skb[tx] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001698
1699 BUG_ON(skb == NULL);
1700 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1701
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001702 mwl8k_remove_dma_header(skb, tx_desc->qos_control);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001703
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001704 wh = (struct ieee80211_hdr *) skb->data;
1705
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001706 /* Mark descriptor as unused */
1707 tx_desc->pkt_phys_addr = 0;
1708 tx_desc->pkt_len = 0;
1709
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001710 info = IEEE80211_SKB_CB(skb);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001711 if (ieee80211_is_data(wh->frame_control)) {
Thomas Huehn89e11802012-07-11 13:21:41 +02001712 rcu_read_lock();
1713 sta = ieee80211_find_sta_by_ifaddr(hw, wh->addr1,
1714 wh->addr2);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001715 if (sta) {
1716 sta_info = MWL8K_STA(sta);
1717 BUG_ON(sta_info == NULL);
1718 rate_info = le16_to_cpu(tx_desc->rate_info);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001719 /* If rate is < 6.5 Mpbs for an ht station
1720 * do not form an ampdu. If the station is a
1721 * legacy station (format = 0), do not form an
1722 * ampdu
1723 */
John W. Linville49adc5c2011-04-27 15:04:28 -04001724 if (RI_RATE_ID_MCS(rate_info) < 1 ||
1725 RI_FORMAT(rate_info) == 0) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001726 sta_info->is_ampdu_allowed = false;
1727 } else {
1728 sta_info->is_ampdu_allowed = true;
1729 }
1730 }
Thomas Huehn89e11802012-07-11 13:21:41 +02001731 rcu_read_unlock();
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001732 }
1733
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001734 ieee80211_tx_info_clear_status(info);
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001735
1736 /* Rate control is happening in the firmware.
1737 * Ensure no tx rate is being reported.
1738 */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301739 info->status.rates[0].idx = -1;
1740 info->status.rates[0].count = 1;
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001741
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001742 if (MWL8K_TXD_SUCCESS(status))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001743 info->flags |= IEEE80211_TX_STAT_ACK;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001744
1745 ieee80211_tx_status_irqsafe(hw, skb);
1746
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001747 processed++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001748 }
1749
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001750 return processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001751}
1752
1753/* must be called only when the card's transmit is completely halted */
1754static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1755{
1756 struct mwl8k_priv *priv = hw->priv;
1757 struct mwl8k_tx_queue *txq = priv->txq + index;
1758
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001759 if (txq->txd == NULL)
1760 return;
1761
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001762 mwl8k_txq_reclaim(hw, index, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001763
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001764 kfree(txq->skb);
1765 txq->skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001766
1767 pci_free_consistent(priv->pdev,
1768 MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001769 txq->txd, txq->txd_dma);
1770 txq->txd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001771}
1772
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001773/* caller must hold priv->stream_lock when calling the stream functions */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301774static struct mwl8k_ampdu_stream *
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001775mwl8k_add_stream(struct ieee80211_hw *hw, struct ieee80211_sta *sta, u8 tid)
1776{
1777 struct mwl8k_ampdu_stream *stream;
1778 struct mwl8k_priv *priv = hw->priv;
1779 int i;
1780
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301781 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001782 stream = &priv->ampdu[i];
1783 if (stream->state == AMPDU_NO_STREAM) {
1784 stream->sta = sta;
1785 stream->state = AMPDU_STREAM_NEW;
1786 stream->tid = tid;
1787 stream->idx = i;
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001788 wiphy_debug(hw->wiphy, "Added a new stream for %pM %d",
1789 sta->addr, tid);
1790 return stream;
1791 }
1792 }
1793 return NULL;
1794}
1795
1796static int
1797mwl8k_start_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1798{
1799 int ret;
1800
1801 /* if the stream has already been started, don't start it again */
1802 if (stream->state != AMPDU_STREAM_NEW)
1803 return 0;
1804 ret = ieee80211_start_tx_ba_session(stream->sta, stream->tid, 0);
1805 if (ret)
1806 wiphy_debug(hw->wiphy, "Failed to start stream for %pM %d: "
1807 "%d\n", stream->sta->addr, stream->tid, ret);
1808 else
1809 wiphy_debug(hw->wiphy, "Started stream for %pM %d\n",
1810 stream->sta->addr, stream->tid);
1811 return ret;
1812}
1813
1814static void
1815mwl8k_remove_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1816{
1817 wiphy_debug(hw->wiphy, "Remove stream for %pM %d\n", stream->sta->addr,
1818 stream->tid);
1819 memset(stream, 0, sizeof(*stream));
1820}
1821
1822static struct mwl8k_ampdu_stream *
1823mwl8k_lookup_stream(struct ieee80211_hw *hw, u8 *addr, u8 tid)
1824{
1825 struct mwl8k_priv *priv = hw->priv;
1826 int i;
1827
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301828 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001829 struct mwl8k_ampdu_stream *stream;
1830 stream = &priv->ampdu[i];
1831 if (stream->state == AMPDU_NO_STREAM)
1832 continue;
1833 if (!memcmp(stream->sta->addr, addr, ETH_ALEN) &&
1834 stream->tid == tid)
1835 return stream;
1836 }
1837 return NULL;
1838}
1839
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001840#define MWL8K_AMPDU_PACKET_THRESHOLD 64
1841static inline bool mwl8k_ampdu_allowed(struct ieee80211_sta *sta, u8 tid)
1842{
1843 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1844 struct tx_traffic_info *tx_stats;
1845
1846 BUG_ON(tid >= MWL8K_MAX_TID);
1847 tx_stats = &sta_info->tx_stats[tid];
1848
1849 return sta_info->is_ampdu_allowed &&
1850 tx_stats->pkts > MWL8K_AMPDU_PACKET_THRESHOLD;
1851}
1852
1853static inline void mwl8k_tx_count_packet(struct ieee80211_sta *sta, u8 tid)
1854{
1855 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1856 struct tx_traffic_info *tx_stats;
1857
1858 BUG_ON(tid >= MWL8K_MAX_TID);
1859 tx_stats = &sta_info->tx_stats[tid];
1860
1861 if (tx_stats->start_time == 0)
1862 tx_stats->start_time = jiffies;
1863
1864 /* reset the packet count after each second elapses. If the number of
1865 * packets ever exceeds the ampdu_min_traffic threshold, we will allow
1866 * an ampdu stream to be started.
1867 */
1868 if (jiffies - tx_stats->start_time > HZ) {
1869 tx_stats->pkts = 0;
1870 tx_stats->start_time = 0;
1871 } else
1872 tx_stats->pkts++;
1873}
1874
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301875/* The hardware ampdu queues start from 5.
1876 * txpriorities for ampdu queues are
1877 * 5 6 7 0 1 2 3 4 ie., queue 5 is highest
1878 * and queue 3 is lowest (queue 4 is reserved)
1879 */
1880#define BA_QUEUE 5
1881
Johannes Berg7bb45682011-02-24 14:42:06 +01001882static void
Thomas Huehn36323f82012-07-23 21:33:42 +02001883mwl8k_txq_xmit(struct ieee80211_hw *hw,
1884 int index,
1885 struct ieee80211_sta *sta,
1886 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001887{
1888 struct mwl8k_priv *priv = hw->priv;
1889 struct ieee80211_tx_info *tx_info;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001890 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001891 struct ieee80211_hdr *wh;
1892 struct mwl8k_tx_queue *txq;
1893 struct mwl8k_tx_desc *tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001894 dma_addr_t dma;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001895 u32 txstatus;
1896 u8 txdatarate;
1897 u16 qos;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001898 int txpriority;
1899 u8 tid = 0;
1900 struct mwl8k_ampdu_stream *stream = NULL;
1901 bool start_ba_session = false;
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301902 bool mgmtframe = false;
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001903 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301904 bool eapol_frame = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001905
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001906 wh = (struct ieee80211_hdr *)skb->data;
1907 if (ieee80211_is_data_qos(wh->frame_control))
1908 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1909 else
1910 qos = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001911
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301912 if (skb->protocol == cpu_to_be16(ETH_P_PAE))
1913 eapol_frame = true;
1914
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301915 if (ieee80211_is_mgmt(wh->frame_control))
1916 mgmtframe = true;
1917
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001918 if (priv->ap_fw)
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05301919 mwl8k_encapsulate_tx_frame(priv, skb);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001920 else
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +05301921 mwl8k_add_dma_header(priv, skb, 0, 0);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001922
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001923 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001924
1925 tx_info = IEEE80211_SKB_CB(skb);
1926 mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001927
1928 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001929 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Lennert Buytenhek657232b2010-01-12 13:47:47 +01001930 wh->seq_ctrl |= cpu_to_le16(mwl8k_vif->seqno);
1931 mwl8k_vif->seqno += 0x10;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001932 }
1933
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001934 /* Setup firmware control bit fields for each frame type. */
1935 txstatus = 0;
1936 txdatarate = 0;
1937 if (ieee80211_is_mgmt(wh->frame_control) ||
1938 ieee80211_is_ctl(wh->frame_control)) {
1939 txdatarate = 0;
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001940 qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001941 } else if (ieee80211_is_data(wh->frame_control)) {
1942 txdatarate = 1;
1943 if (is_multicast_ether_addr(wh->addr1))
1944 txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX;
1945
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001946 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001947 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001948 qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001949 else
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001950 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001951 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001952
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001953 /* Queue ADDBA request in the respective data queue. While setting up
1954 * the ampdu stream, mac80211 queues further packets for that
1955 * particular ra/tid pair. However, packets piled up in the hardware
1956 * for that ra/tid pair will still go out. ADDBA request and the
1957 * related data packets going out from different queues asynchronously
1958 * will cause a shift in the receiver window which might result in
1959 * ampdu packets getting dropped at the receiver after the stream has
1960 * been setup.
1961 */
1962 if (unlikely(ieee80211_is_action(wh->frame_control) &&
1963 mgmt->u.action.category == WLAN_CATEGORY_BACK &&
1964 mgmt->u.action.u.addba_req.action_code == WLAN_ACTION_ADDBA_REQ &&
1965 priv->ap_fw)) {
1966 u16 capab = le16_to_cpu(mgmt->u.action.u.addba_req.capab);
1967 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
1968 index = mwl8k_tid_queue_mapping(tid);
1969 }
1970
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001971 txpriority = index;
1972
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301973 if (priv->ap_fw && sta && sta->ht_cap.ht_supported && !eapol_frame &&
1974 ieee80211_is_data_qos(wh->frame_control)) {
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001975 tid = qos & 0xf;
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001976 mwl8k_tx_count_packet(sta, tid);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001977 spin_lock(&priv->stream_lock);
1978 stream = mwl8k_lookup_stream(hw, sta->addr, tid);
1979 if (stream != NULL) {
1980 if (stream->state == AMPDU_STREAM_ACTIVE) {
Yogesh Ashok Powar5f2a14942013-01-03 13:21:25 +05301981 WARN_ON(!(qos & MWL8K_QOS_ACK_POLICY_BLOCKACK));
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301982 txpriority = (BA_QUEUE + stream->idx) %
1983 TOTAL_HW_TX_QUEUES;
1984 if (stream->idx <= 1)
1985 index = stream->idx +
1986 MWL8K_TX_WMM_QUEUES;
1987
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001988 } else if (stream->state == AMPDU_STREAM_NEW) {
1989 /* We get here if the driver sends us packets
1990 * after we've initiated a stream, but before
1991 * our ampdu_action routine has been called
1992 * with IEEE80211_AMPDU_TX_START to get the SSN
1993 * for the ADDBA request. So this packet can
1994 * go out with no risk of sequence number
1995 * mismatch. No special handling is required.
1996 */
1997 } else {
1998 /* Drop packets that would go out after the
1999 * ADDBA request was sent but before the ADDBA
2000 * response is received. If we don't do this,
2001 * the recipient would probably receive it
2002 * after the ADDBA request with SSN 0. This
2003 * will cause the recipient's BA receive window
2004 * to shift, which would cause the subsequent
2005 * packets in the BA stream to be discarded.
2006 * mac80211 queues our packets for us in this
2007 * case, so this is really just a safety check.
2008 */
2009 wiphy_warn(hw->wiphy,
2010 "Cannot send packet while ADDBA "
2011 "dialog is underway.\n");
2012 spin_unlock(&priv->stream_lock);
2013 dev_kfree_skb(skb);
2014 return;
2015 }
2016 } else {
2017 /* Defer calling mwl8k_start_stream so that the current
2018 * skb can go out before the ADDBA request. This
2019 * prevents sequence number mismatch at the recepient
2020 * as described above.
2021 */
Brian Cavagnolod0805c12011-04-12 11:06:28 -07002022 if (mwl8k_ampdu_allowed(sta, tid)) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07002023 stream = mwl8k_add_stream(hw, sta, tid);
2024 if (stream != NULL)
2025 start_ba_session = true;
2026 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002027 }
2028 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar5f2a14942013-01-03 13:21:25 +05302029 } else {
2030 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
2031 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002032 }
2033
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002034 dma = pci_map_single(priv->pdev, skb->data,
2035 skb->len, PCI_DMA_TODEVICE);
2036
2037 if (pci_dma_mapping_error(priv->pdev, dma)) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07002038 wiphy_debug(hw->wiphy,
2039 "failed to dma map skb, dropping TX frame.\n");
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002040 if (start_ba_session) {
2041 spin_lock(&priv->stream_lock);
2042 mwl8k_remove_stream(hw, stream);
2043 spin_unlock(&priv->stream_lock);
2044 }
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002045 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01002046 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002047 }
2048
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002049 spin_lock_bh(&priv->tx_lock);
2050
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002051 txq = priv->txq + index;
2052
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302053 /* Mgmt frames that go out frequently are probe
2054 * responses. Other mgmt frames got out relatively
2055 * infrequently. Hence reserve 2 buffers so that
2056 * other mgmt frames do not get dropped due to an
2057 * already queued probe response in one of the
2058 * reserved buffers.
2059 */
2060
2061 if (txq->len >= MWL8K_TX_DESCS - 2) {
Joe Perches23677ce2012-02-09 11:17:23 +00002062 if (!mgmtframe || txq->len == MWL8K_TX_DESCS) {
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302063 if (start_ba_session) {
2064 spin_lock(&priv->stream_lock);
2065 mwl8k_remove_stream(hw, stream);
2066 spin_unlock(&priv->stream_lock);
2067 }
Nishant Sarmukadambbf71a82013-05-24 14:42:25 +05302068 mwl8k_tx_start(priv);
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302069 spin_unlock_bh(&priv->tx_lock);
Nishant Sarmukadamff7aa962012-11-06 19:22:48 +05302070 pci_unmap_single(priv->pdev, dma, skb->len,
2071 PCI_DMA_TODEVICE);
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302072 dev_kfree_skb(skb);
2073 return;
Pradeep Nemavat3a7dbc32011-04-21 16:34:56 +05302074 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002075 }
2076
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002077 BUG_ON(txq->skb[txq->tail] != NULL);
2078 txq->skb[txq->tail] = skb;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002079
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002080 tx = txq->txd + txq->tail;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002081 tx->data_rate = txdatarate;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002082 tx->tx_priority = txpriority;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002083 tx->qos_control = cpu_to_le16(qos);
2084 tx->pkt_phys_addr = cpu_to_le32(dma);
2085 tx->pkt_len = cpu_to_le16(skb->len);
2086 tx->rate_info = 0;
Thomas Huehn36323f82012-07-23 21:33:42 +02002087 if (!priv->ap_fw && sta != NULL)
2088 tx->peer_id = MWL8K_STA(sta)->peer_id;
Lennert Buytenheka6804002010-01-04 21:55:42 +01002089 else
2090 tx->peer_id = 0;
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302091
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05302092 if (priv->ap_fw && ieee80211_is_data(wh->frame_control) && !eapol_frame)
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302093 tx->timestamp = cpu_to_le32(ioread32(priv->regs +
2094 MWL8K_HW_TIMER_REGISTER));
Nishant Sarmukadamb8d9e572012-11-06 19:23:15 +05302095 else
2096 tx->timestamp = 0;
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302097
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002098 wmb();
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002099 tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
2100
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02002101 txq->len++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002102 priv->pending_tx_pkts++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002103
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002104 txq->tail++;
2105 if (txq->tail == MWL8K_TX_DESCS)
2106 txq->tail = 0;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002107
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002108 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002109
2110 spin_unlock_bh(&priv->tx_lock);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002111
2112 /* Initiate the ampdu session here */
2113 if (start_ba_session) {
2114 spin_lock(&priv->stream_lock);
2115 if (mwl8k_start_stream(hw, stream))
2116 mwl8k_remove_stream(hw, stream);
2117 spin_unlock(&priv->stream_lock);
2118 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002119}
2120
2121
2122/*
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002123 * Firmware access.
2124 *
2125 * We have the following requirements for issuing firmware commands:
2126 * - Some commands require that the packet transmit path is idle when
2127 * the command is issued. (For simplicity, we'll just quiesce the
2128 * transmit path for every command.)
2129 * - There are certain sequences of commands that need to be issued to
2130 * the hardware sequentially, with no other intervening commands.
2131 *
2132 * This leads to an implementation of a "firmware lock" as a mutex that
2133 * can be taken recursively, and which is taken by both the low-level
2134 * command submission function (mwl8k_post_cmd) as well as any users of
2135 * that function that require issuing of an atomic sequence of commands,
2136 * and quiesces the transmit path whenever it's taken.
2137 */
2138static int mwl8k_fw_lock(struct ieee80211_hw *hw)
2139{
2140 struct mwl8k_priv *priv = hw->priv;
2141
2142 if (priv->fw_mutex_owner != current) {
2143 int rc;
2144
2145 mutex_lock(&priv->fw_mutex);
2146 ieee80211_stop_queues(hw);
2147
2148 rc = mwl8k_tx_wait_empty(hw);
2149 if (rc) {
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05302150 if (!priv->hw_restart_in_progress)
2151 ieee80211_wake_queues(hw);
2152
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002153 mutex_unlock(&priv->fw_mutex);
2154
2155 return rc;
2156 }
2157
2158 priv->fw_mutex_owner = current;
2159 }
2160
2161 priv->fw_mutex_depth++;
2162
2163 return 0;
2164}
2165
2166static void mwl8k_fw_unlock(struct ieee80211_hw *hw)
2167{
2168 struct mwl8k_priv *priv = hw->priv;
2169
2170 if (!--priv->fw_mutex_depth) {
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05302171 if (!priv->hw_restart_in_progress)
2172 ieee80211_wake_queues(hw);
2173
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002174 priv->fw_mutex_owner = NULL;
2175 mutex_unlock(&priv->fw_mutex);
2176 }
2177}
2178
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05302179static void mwl8k_enable_bsses(struct ieee80211_hw *hw, bool enable,
2180 u32 bitmap);
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002181
2182/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002183 * Command processing.
2184 */
2185
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002186/* Timeout firmware commands after 10s */
2187#define MWL8K_CMD_TIMEOUT_MS 10000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002188
2189static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
2190{
2191 DECLARE_COMPLETION_ONSTACK(cmd_wait);
2192 struct mwl8k_priv *priv = hw->priv;
2193 void __iomem *regs = priv->regs;
2194 dma_addr_t dma_addr;
2195 unsigned int dma_size;
2196 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002197 unsigned long timeout = 0;
2198 u8 buf[32];
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05302199 u32 bitmap = 0;
2200
2201 wiphy_dbg(hw->wiphy, "Posting %s [%d]\n",
2202 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)), cmd->macid);
2203
2204 /* Before posting firmware commands that could change the hardware
2205 * characteristics, make sure that all BSSes are stopped temporary.
2206 * Enable these stopped BSSes after completion of the commands
2207 */
2208
2209 rc = mwl8k_fw_lock(hw);
2210 if (rc)
2211 return rc;
2212
2213 if (priv->ap_fw && priv->running_bsses) {
2214 switch (le16_to_cpu(cmd->code)) {
2215 case MWL8K_CMD_SET_RF_CHANNEL:
2216 case MWL8K_CMD_RADIO_CONTROL:
2217 case MWL8K_CMD_RF_TX_POWER:
2218 case MWL8K_CMD_TX_POWER:
2219 case MWL8K_CMD_RF_ANTENNA:
2220 case MWL8K_CMD_RTS_THRESHOLD:
2221 case MWL8K_CMD_MIMO_CONFIG:
2222 bitmap = priv->running_bsses;
2223 mwl8k_enable_bsses(hw, false, bitmap);
2224 break;
2225 }
2226 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002227
John W. Linvilleb6037422010-07-20 13:55:00 -04002228 cmd->result = (__force __le16) 0xffff;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002229 dma_size = le16_to_cpu(cmd->length);
2230 dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
2231 PCI_DMA_BIDIRECTIONAL);
2232 if (pci_dma_mapping_error(priv->pdev, dma_addr))
2233 return -ENOMEM;
2234
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002235 priv->hostcmd_wait = &cmd_wait;
2236 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
2237 iowrite32(MWL8K_H2A_INT_DOORBELL,
2238 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
2239 iowrite32(MWL8K_H2A_INT_DUMMY,
2240 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002241
2242 timeout = wait_for_completion_timeout(&cmd_wait,
2243 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
2244
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002245 priv->hostcmd_wait = NULL;
2246
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002247
Lennert Buytenhek37055bd2009-08-03 21:58:47 +02002248 pci_unmap_single(priv->pdev, dma_addr, dma_size,
2249 PCI_DMA_BIDIRECTIONAL);
2250
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002251 if (!timeout) {
Joe Perches5db55842010-08-11 19:11:19 -07002252 wiphy_err(hw->wiphy, "Command %s timeout after %u ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002253 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2254 MWL8K_CMD_TIMEOUT_MS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002255 rc = -ETIMEDOUT;
2256 } else {
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002257 int ms;
2258
2259 ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout);
2260
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002261 rc = cmd->result ? -EINVAL : 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002262 if (rc)
Joe Perches5db55842010-08-11 19:11:19 -07002263 wiphy_err(hw->wiphy, "Command %s error 0x%x\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002264 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2265 le16_to_cpu(cmd->result));
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002266 else if (ms > 2000)
Joe Perches5db55842010-08-11 19:11:19 -07002267 wiphy_notice(hw->wiphy, "Command %s took %d ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002268 mwl8k_cmd_name(cmd->code,
2269 buf, sizeof(buf)),
2270 ms);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002271 }
2272
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05302273 if (bitmap)
2274 mwl8k_enable_bsses(hw, true, bitmap);
2275
2276 mwl8k_fw_unlock(hw);
2277
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002278 return rc;
2279}
2280
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +01002281static int mwl8k_post_pervif_cmd(struct ieee80211_hw *hw,
2282 struct ieee80211_vif *vif,
2283 struct mwl8k_cmd_pkt *cmd)
2284{
2285 if (vif != NULL)
2286 cmd->macid = MWL8K_VIF(vif)->macid;
2287 return mwl8k_post_cmd(hw, cmd);
2288}
2289
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002290/*
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002291 * Setup code shared between STA and AP firmware images.
2292 */
2293static void mwl8k_setup_2ghz_band(struct ieee80211_hw *hw)
2294{
2295 struct mwl8k_priv *priv = hw->priv;
2296
2297 BUILD_BUG_ON(sizeof(priv->channels_24) != sizeof(mwl8k_channels_24));
2298 memcpy(priv->channels_24, mwl8k_channels_24, sizeof(mwl8k_channels_24));
2299
2300 BUILD_BUG_ON(sizeof(priv->rates_24) != sizeof(mwl8k_rates_24));
2301 memcpy(priv->rates_24, mwl8k_rates_24, sizeof(mwl8k_rates_24));
2302
2303 priv->band_24.band = IEEE80211_BAND_2GHZ;
2304 priv->band_24.channels = priv->channels_24;
2305 priv->band_24.n_channels = ARRAY_SIZE(mwl8k_channels_24);
2306 priv->band_24.bitrates = priv->rates_24;
2307 priv->band_24.n_bitrates = ARRAY_SIZE(mwl8k_rates_24);
2308
2309 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band_24;
2310}
2311
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +01002312static void mwl8k_setup_5ghz_band(struct ieee80211_hw *hw)
2313{
2314 struct mwl8k_priv *priv = hw->priv;
2315
2316 BUILD_BUG_ON(sizeof(priv->channels_50) != sizeof(mwl8k_channels_50));
2317 memcpy(priv->channels_50, mwl8k_channels_50, sizeof(mwl8k_channels_50));
2318
2319 BUILD_BUG_ON(sizeof(priv->rates_50) != sizeof(mwl8k_rates_50));
2320 memcpy(priv->rates_50, mwl8k_rates_50, sizeof(mwl8k_rates_50));
2321
2322 priv->band_50.band = IEEE80211_BAND_5GHZ;
2323 priv->band_50.channels = priv->channels_50;
2324 priv->band_50.n_channels = ARRAY_SIZE(mwl8k_channels_50);
2325 priv->band_50.bitrates = priv->rates_50;
2326 priv->band_50.n_bitrates = ARRAY_SIZE(mwl8k_rates_50);
2327
2328 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &priv->band_50;
2329}
2330
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002331/*
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002332 * CMD_GET_HW_SPEC (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002333 */
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002334struct mwl8k_cmd_get_hw_spec_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002335 struct mwl8k_cmd_pkt header;
2336 __u8 hw_rev;
2337 __u8 host_interface;
2338 __le16 num_mcaddrs;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002339 __u8 perm_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002340 __le16 region_code;
2341 __le32 fw_rev;
2342 __le32 ps_cookie;
2343 __le32 caps;
2344 __u8 mcs_bitmap[16];
2345 __le32 rx_queue_ptr;
2346 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002347 __le32 tx_queue_ptrs[MWL8K_TX_WMM_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002348 __le32 caps2;
2349 __le32 num_tx_desc_per_queue;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002350 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002351} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002352
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002353#define MWL8K_CAP_MAX_AMSDU 0x20000000
2354#define MWL8K_CAP_GREENFIELD 0x08000000
2355#define MWL8K_CAP_AMPDU 0x04000000
2356#define MWL8K_CAP_RX_STBC 0x01000000
2357#define MWL8K_CAP_TX_STBC 0x00800000
2358#define MWL8K_CAP_SHORTGI_40MHZ 0x00400000
2359#define MWL8K_CAP_SHORTGI_20MHZ 0x00200000
2360#define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000
2361#define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000
2362#define MWL8K_CAP_DELAY_BA 0x00003000
2363#define MWL8K_CAP_MIMO 0x00000200
2364#define MWL8K_CAP_40MHZ 0x00000100
Lennert Buytenhek06953232010-01-12 13:49:41 +01002365#define MWL8K_CAP_BAND_MASK 0x00000007
2366#define MWL8K_CAP_5GHZ 0x00000004
2367#define MWL8K_CAP_2GHZ4 0x00000001
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002368
Lennert Buytenhek06953232010-01-12 13:49:41 +01002369static void
2370mwl8k_set_ht_caps(struct ieee80211_hw *hw,
2371 struct ieee80211_supported_band *band, u32 cap)
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002372{
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002373 int rx_streams;
2374 int tx_streams;
2375
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002376 band->ht_cap.ht_supported = 1;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002377
2378 if (cap & MWL8K_CAP_MAX_AMSDU)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002379 band->ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002380 if (cap & MWL8K_CAP_GREENFIELD)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002381 band->ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002382 if (cap & MWL8K_CAP_AMPDU) {
2383 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002384 band->ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
2385 band->ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002386 }
2387 if (cap & MWL8K_CAP_RX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002388 band->ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002389 if (cap & MWL8K_CAP_TX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002390 band->ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002391 if (cap & MWL8K_CAP_SHORTGI_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002392 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002393 if (cap & MWL8K_CAP_SHORTGI_20MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002394 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002395 if (cap & MWL8K_CAP_DELAY_BA)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002396 band->ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002397 if (cap & MWL8K_CAP_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002398 band->ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002399
2400 rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK);
2401 tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK);
2402
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002403 band->ht_cap.mcs.rx_mask[0] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002404 if (rx_streams >= 2)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002405 band->ht_cap.mcs.rx_mask[1] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002406 if (rx_streams >= 3)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002407 band->ht_cap.mcs.rx_mask[2] = 0xff;
2408 band->ht_cap.mcs.rx_mask[4] = 0x01;
2409 band->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002410
2411 if (rx_streams != tx_streams) {
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002412 band->ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
2413 band->ht_cap.mcs.tx_params |= (tx_streams - 1) <<
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002414 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
2415 }
2416}
2417
Lennert Buytenhek06953232010-01-12 13:49:41 +01002418static void
2419mwl8k_set_caps(struct ieee80211_hw *hw, u32 caps)
2420{
2421 struct mwl8k_priv *priv = hw->priv;
2422
Jonas Gorskic3f251a2013-03-11 17:44:21 +01002423 if (priv->caps)
2424 return;
2425
Lennert Buytenhek06953232010-01-12 13:49:41 +01002426 if ((caps & MWL8K_CAP_2GHZ4) || !(caps & MWL8K_CAP_BAND_MASK)) {
2427 mwl8k_setup_2ghz_band(hw);
2428 if (caps & MWL8K_CAP_MIMO)
2429 mwl8k_set_ht_caps(hw, &priv->band_24, caps);
2430 }
2431
2432 if (caps & MWL8K_CAP_5GHZ) {
2433 mwl8k_setup_5ghz_band(hw);
2434 if (caps & MWL8K_CAP_MIMO)
2435 mwl8k_set_ht_caps(hw, &priv->band_50, caps);
2436 }
Jonas Gorskic3f251a2013-03-11 17:44:21 +01002437
2438 priv->caps = caps;
Lennert Buytenhek06953232010-01-12 13:49:41 +01002439}
2440
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002441static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002442{
2443 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002444 struct mwl8k_cmd_get_hw_spec_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002445 int rc;
2446 int i;
2447
2448 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2449 if (cmd == NULL)
2450 return -ENOMEM;
2451
2452 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2453 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2454
2455 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2456 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002457 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002458 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
2459 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002460 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002461 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002462 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002463
2464 rc = mwl8k_post_cmd(hw, &cmd->header);
2465
2466 if (!rc) {
2467 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2468 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002469 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002470 priv->hw_rev = cmd->hw_rev;
Lennert Buytenhek06953232010-01-12 13:49:41 +01002471 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002472 priv->ap_macids_supported = 0x00000000;
2473 priv->sta_macids_supported = 0x00000001;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002474 }
2475
2476 kfree(cmd);
2477 return rc;
2478}
2479
2480/*
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002481 * CMD_GET_HW_SPEC (AP version).
2482 */
2483struct mwl8k_cmd_get_hw_spec_ap {
2484 struct mwl8k_cmd_pkt header;
2485 __u8 hw_rev;
2486 __u8 host_interface;
2487 __le16 num_wcb;
2488 __le16 num_mcaddrs;
2489 __u8 perm_addr[ETH_ALEN];
2490 __le16 region_code;
2491 __le16 num_antenna;
2492 __le32 fw_rev;
2493 __le32 wcbbase0;
2494 __le32 rxwrptr;
2495 __le32 rxrdptr;
2496 __le32 ps_cookie;
2497 __le32 wcbbase1;
2498 __le32 wcbbase2;
2499 __le32 wcbbase3;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002500 __le32 fw_api_version;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002501 __le32 caps;
2502 __le32 num_of_ampdu_queues;
2503 __le32 wcbbase_ampdu[MWL8K_MAX_AMPDU_QUEUES];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002504} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002505
2506static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw)
2507{
2508 struct mwl8k_priv *priv = hw->priv;
2509 struct mwl8k_cmd_get_hw_spec_ap *cmd;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002510 int rc, i;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002511 u32 api_version;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002512
2513 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2514 if (cmd == NULL)
2515 return -ENOMEM;
2516
2517 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2518 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2519
2520 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2521 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2522
2523 rc = mwl8k_post_cmd(hw, &cmd->header);
2524
2525 if (!rc) {
2526 int off;
2527
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002528 api_version = le32_to_cpu(cmd->fw_api_version);
2529 if (priv->device_info->fw_api_ap != api_version) {
2530 printk(KERN_ERR "%s: Unsupported fw API version for %s."
2531 " Expected %d got %d.\n", MWL8K_NAME,
2532 priv->device_info->part_name,
2533 priv->device_info->fw_api_ap,
2534 api_version);
2535 rc = -EINVAL;
2536 goto done;
2537 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002538 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2539 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
2540 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
2541 priv->hw_rev = cmd->hw_rev;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002542 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002543 priv->ap_macids_supported = 0x000000ff;
Yogesh Ashok Poward59c1cf2013-01-25 16:20:03 +05302544 priv->sta_macids_supported = 0x00000100;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002545 priv->num_ampdu_queues = le32_to_cpu(cmd->num_of_ampdu_queues);
2546 if (priv->num_ampdu_queues > MWL8K_MAX_AMPDU_QUEUES) {
2547 wiphy_warn(hw->wiphy, "fw reported %d ampdu queues"
2548 " but we only support %d.\n",
2549 priv->num_ampdu_queues,
2550 MWL8K_MAX_AMPDU_QUEUES);
2551 priv->num_ampdu_queues = MWL8K_MAX_AMPDU_QUEUES;
2552 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002553 off = le32_to_cpu(cmd->rxwrptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002554 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002555
2556 off = le32_to_cpu(cmd->rxrdptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002557 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002558
Brian Cavagnolo73b46322011-03-17 11:58:41 -07002559 priv->txq_offset[0] = le32_to_cpu(cmd->wcbbase0) & 0xffff;
2560 priv->txq_offset[1] = le32_to_cpu(cmd->wcbbase1) & 0xffff;
2561 priv->txq_offset[2] = le32_to_cpu(cmd->wcbbase2) & 0xffff;
2562 priv->txq_offset[3] = le32_to_cpu(cmd->wcbbase3) & 0xffff;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002563
2564 for (i = 0; i < priv->num_ampdu_queues; i++)
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002565 priv->txq_offset[i + MWL8K_TX_WMM_QUEUES] =
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002566 le32_to_cpu(cmd->wcbbase_ampdu[i]) & 0xffff;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002567 }
2568
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002569done:
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002570 kfree(cmd);
2571 return rc;
2572}
2573
2574/*
2575 * CMD_SET_HW_SPEC.
2576 */
2577struct mwl8k_cmd_set_hw_spec {
2578 struct mwl8k_cmd_pkt header;
2579 __u8 hw_rev;
2580 __u8 host_interface;
2581 __le16 num_mcaddrs;
2582 __u8 perm_addr[ETH_ALEN];
2583 __le16 region_code;
2584 __le32 fw_rev;
2585 __le32 ps_cookie;
2586 __le32 caps;
2587 __le32 rx_queue_ptr;
2588 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002589 __le32 tx_queue_ptrs[MWL8K_MAX_TX_QUEUES];
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002590 __le32 flags;
2591 __le32 num_tx_desc_per_queue;
2592 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002593} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002594
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002595/* If enabled, MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY will cause
2596 * packets to expire 500 ms after the timestamp in the tx descriptor. That is,
2597 * the packets that are queued for more than 500ms, will be dropped in the
2598 * hardware. This helps minimizing the issues caused due to head-of-line
2599 * blocking where a slow client can hog the bandwidth and affect traffic to a
2600 * faster client.
2601 */
2602#define MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY 0x00000400
Nishant Sarmukadam3373b282011-06-13 16:26:15 +05302603#define MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR 0x00000200
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002604#define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080
2605#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP 0x00000020
2606#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON 0x00000010
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002607
2608static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw)
2609{
2610 struct mwl8k_priv *priv = hw->priv;
2611 struct mwl8k_cmd_set_hw_spec *cmd;
2612 int rc;
2613 int i;
2614
2615 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2616 if (cmd == NULL)
2617 return -ENOMEM;
2618
2619 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC);
2620 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2621
2622 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2623 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002624 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002625
2626 /*
2627 * Mac80211 stack has Q0 as highest priority and Q3 as lowest in
2628 * that order. Firmware has Q3 as highest priority and Q0 as lowest
2629 * in that order. Map Q3 of mac80211 to Q0 of firmware so that the
2630 * priority is interpreted the right way in firmware.
2631 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002632 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
2633 int j = mwl8k_tx_queues(priv) - 1 - i;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002634 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[j].txd_dma);
2635 }
2636
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002637 cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT |
2638 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP |
Nishant Sarmukadam31d291a2011-04-21 16:34:59 +05302639 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON |
Nishant Sarmukadam3373b282011-06-13 16:26:15 +05302640 MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY |
2641 MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002642 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
2643 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
2644
2645 rc = mwl8k_post_cmd(hw, &cmd->header);
2646 kfree(cmd);
2647
2648 return rc;
2649}
2650
2651/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002652 * CMD_MAC_MULTICAST_ADR.
2653 */
2654struct mwl8k_cmd_mac_multicast_adr {
2655 struct mwl8k_cmd_pkt header;
2656 __le16 action;
2657 __le16 numaddr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002658 __u8 addr[0][ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002659};
2660
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002661#define MWL8K_ENABLE_RX_DIRECTED 0x0001
2662#define MWL8K_ENABLE_RX_MULTICAST 0x0002
2663#define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004
2664#define MWL8K_ENABLE_RX_BROADCAST 0x0008
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002665
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002666static struct mwl8k_cmd_pkt *
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002667__mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti,
Jiri Pirko22bedad32010-04-01 21:22:57 +00002668 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002669{
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002670 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002671 struct mwl8k_cmd_mac_multicast_adr *cmd;
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002672 int size;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002673 int mc_count = 0;
2674
2675 if (mc_list)
2676 mc_count = netdev_hw_addr_list_count(mc_list);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002677
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002678 if (allmulti || mc_count > priv->num_mcaddrs) {
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002679 allmulti = 1;
2680 mc_count = 0;
2681 }
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002682
2683 size = sizeof(*cmd) + mc_count * ETH_ALEN;
2684
2685 cmd = kzalloc(size, GFP_ATOMIC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002686 if (cmd == NULL)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002687 return NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002688
2689 cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
2690 cmd->header.length = cpu_to_le16(size);
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002691 cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED |
2692 MWL8K_ENABLE_RX_BROADCAST);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002693
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002694 if (allmulti) {
2695 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST);
2696 } else if (mc_count) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002697 struct netdev_hw_addr *ha;
2698 int i = 0;
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002699
2700 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
2701 cmd->numaddr = cpu_to_le16(mc_count);
Jiri Pirko22bedad32010-04-01 21:22:57 +00002702 netdev_hw_addr_list_for_each(ha, mc_list) {
2703 memcpy(cmd->addr[i], ha->addr, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002704 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002705 }
2706
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002707 return &cmd->header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002708}
2709
2710/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002711 * CMD_GET_STAT.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002712 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002713struct mwl8k_cmd_get_stat {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002714 struct mwl8k_cmd_pkt header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002715 __le32 stats[64];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002716} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002717
2718#define MWL8K_STAT_ACK_FAILURE 9
2719#define MWL8K_STAT_RTS_FAILURE 12
2720#define MWL8K_STAT_FCS_ERROR 24
2721#define MWL8K_STAT_RTS_SUCCESS 11
2722
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002723static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw,
2724 struct ieee80211_low_level_stats *stats)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002725{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002726 struct mwl8k_cmd_get_stat *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002727 int rc;
2728
2729 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2730 if (cmd == NULL)
2731 return -ENOMEM;
2732
2733 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
2734 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002735
2736 rc = mwl8k_post_cmd(hw, &cmd->header);
2737 if (!rc) {
2738 stats->dot11ACKFailureCount =
2739 le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
2740 stats->dot11RTSFailureCount =
2741 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
2742 stats->dot11FCSErrorCount =
2743 le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
2744 stats->dot11RTSSuccessCount =
2745 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
2746 }
2747 kfree(cmd);
2748
2749 return rc;
2750}
2751
2752/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002753 * CMD_RADIO_CONTROL.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002754 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002755struct mwl8k_cmd_radio_control {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002756 struct mwl8k_cmd_pkt header;
2757 __le16 action;
2758 __le16 control;
2759 __le16 radio_on;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002760} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002761
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002762static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002763mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002764{
2765 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002766 struct mwl8k_cmd_radio_control *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002767 int rc;
2768
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002769 if (enable == priv->radio_on && !force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002770 return 0;
2771
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002772 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2773 if (cmd == NULL)
2774 return -ENOMEM;
2775
2776 cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
2777 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2778 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002779 cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002780 cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
2781
2782 rc = mwl8k_post_cmd(hw, &cmd->header);
2783 kfree(cmd);
2784
2785 if (!rc)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002786 priv->radio_on = enable;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002787
2788 return rc;
2789}
2790
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002791static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002792{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002793 return mwl8k_cmd_radio_control(hw, 0, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002794}
2795
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002796static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002797{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002798 return mwl8k_cmd_radio_control(hw, 1, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002799}
2800
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002801static int
2802mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
2803{
Lennert Buytenhek99200a992009-11-30 18:31:40 +01002804 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002805
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002806 priv->radio_short_preamble = short_preamble;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002807
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002808 return mwl8k_cmd_radio_control(hw, 1, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002809}
2810
2811/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002812 * CMD_RF_TX_POWER.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002813 */
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002814#define MWL8K_RF_TX_POWER_LEVEL_TOTAL 8
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002815
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002816struct mwl8k_cmd_rf_tx_power {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002817 struct mwl8k_cmd_pkt header;
2818 __le16 action;
2819 __le16 support_level;
2820 __le16 current_level;
2821 __le16 reserved;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002822 __le16 power_level_list[MWL8K_RF_TX_POWER_LEVEL_TOTAL];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002823} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002824
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002825static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw *hw, int dBm)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002826{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002827 struct mwl8k_cmd_rf_tx_power *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002828 int rc;
2829
2830 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2831 if (cmd == NULL)
2832 return -ENOMEM;
2833
2834 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
2835 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2836 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2837 cmd->support_level = cpu_to_le16(dBm);
2838
2839 rc = mwl8k_post_cmd(hw, &cmd->header);
2840 kfree(cmd);
2841
2842 return rc;
2843}
2844
2845/*
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002846 * CMD_TX_POWER.
2847 */
2848#define MWL8K_TX_POWER_LEVEL_TOTAL 12
2849
2850struct mwl8k_cmd_tx_power {
2851 struct mwl8k_cmd_pkt header;
2852 __le16 action;
2853 __le16 band;
2854 __le16 channel;
2855 __le16 bw;
2856 __le16 sub_ch;
2857 __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05302858} __packed;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002859
2860static int mwl8k_cmd_tx_power(struct ieee80211_hw *hw,
2861 struct ieee80211_conf *conf,
2862 unsigned short pwr)
2863{
Karl Beldan675a0b02013-03-25 16:26:57 +01002864 struct ieee80211_channel *channel = conf->chandef.chan;
2865 enum nl80211_channel_type channel_type =
2866 cfg80211_get_chandef_type(&conf->chandef);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002867 struct mwl8k_cmd_tx_power *cmd;
2868 int rc;
2869 int i;
2870
2871 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2872 if (cmd == NULL)
2873 return -ENOMEM;
2874
2875 cmd->header.code = cpu_to_le16(MWL8K_CMD_TX_POWER);
2876 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2877 cmd->action = cpu_to_le16(MWL8K_CMD_SET_LIST);
2878
2879 if (channel->band == IEEE80211_BAND_2GHZ)
2880 cmd->band = cpu_to_le16(0x1);
2881 else if (channel->band == IEEE80211_BAND_5GHZ)
2882 cmd->band = cpu_to_le16(0x4);
2883
Yogesh Ashok Powar604c4ef2012-01-17 15:45:15 +05302884 cmd->channel = cpu_to_le16(channel->hw_value);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002885
Karl Beldan675a0b02013-03-25 16:26:57 +01002886 if (channel_type == NL80211_CHAN_NO_HT ||
2887 channel_type == NL80211_CHAN_HT20) {
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002888 cmd->bw = cpu_to_le16(0x2);
2889 } else {
2890 cmd->bw = cpu_to_le16(0x4);
Karl Beldan675a0b02013-03-25 16:26:57 +01002891 if (channel_type == NL80211_CHAN_HT40MINUS)
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002892 cmd->sub_ch = cpu_to_le16(0x3);
Karl Beldan675a0b02013-03-25 16:26:57 +01002893 else if (channel_type == NL80211_CHAN_HT40PLUS)
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002894 cmd->sub_ch = cpu_to_le16(0x1);
2895 }
2896
2897 for (i = 0; i < MWL8K_TX_POWER_LEVEL_TOTAL; i++)
2898 cmd->power_level_list[i] = cpu_to_le16(pwr);
2899
2900 rc = mwl8k_post_cmd(hw, &cmd->header);
2901 kfree(cmd);
2902
2903 return rc;
2904}
2905
2906/*
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002907 * CMD_RF_ANTENNA.
2908 */
2909struct mwl8k_cmd_rf_antenna {
2910 struct mwl8k_cmd_pkt header;
2911 __le16 antenna;
2912 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002913} __packed;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002914
2915#define MWL8K_RF_ANTENNA_RX 1
2916#define MWL8K_RF_ANTENNA_TX 2
2917
2918static int
2919mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask)
2920{
2921 struct mwl8k_cmd_rf_antenna *cmd;
2922 int rc;
2923
2924 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2925 if (cmd == NULL)
2926 return -ENOMEM;
2927
2928 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA);
2929 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2930 cmd->antenna = cpu_to_le16(antenna);
2931 cmd->mode = cpu_to_le16(mask);
2932
2933 rc = mwl8k_post_cmd(hw, &cmd->header);
2934 kfree(cmd);
2935
2936 return rc;
2937}
2938
2939/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002940 * CMD_SET_BEACON.
2941 */
2942struct mwl8k_cmd_set_beacon {
2943 struct mwl8k_cmd_pkt header;
2944 __le16 beacon_len;
2945 __u8 beacon[0];
2946};
2947
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002948static int mwl8k_cmd_set_beacon(struct ieee80211_hw *hw,
2949 struct ieee80211_vif *vif, u8 *beacon, int len)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002950{
2951 struct mwl8k_cmd_set_beacon *cmd;
2952 int rc;
2953
2954 cmd = kzalloc(sizeof(*cmd) + len, GFP_KERNEL);
2955 if (cmd == NULL)
2956 return -ENOMEM;
2957
2958 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_BEACON);
2959 cmd->header.length = cpu_to_le16(sizeof(*cmd) + len);
2960 cmd->beacon_len = cpu_to_le16(len);
2961 memcpy(cmd->beacon, beacon, len);
2962
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002963 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002964 kfree(cmd);
2965
2966 return rc;
2967}
2968
2969/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002970 * CMD_SET_PRE_SCAN.
2971 */
2972struct mwl8k_cmd_set_pre_scan {
2973 struct mwl8k_cmd_pkt header;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002974} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002975
2976static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
2977{
2978 struct mwl8k_cmd_set_pre_scan *cmd;
2979 int rc;
2980
2981 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2982 if (cmd == NULL)
2983 return -ENOMEM;
2984
2985 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
2986 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2987
2988 rc = mwl8k_post_cmd(hw, &cmd->header);
2989 kfree(cmd);
2990
2991 return rc;
2992}
2993
2994/*
Yogesh Ashok Powarc3015312014-02-25 17:41:58 +05302995 * CMD_BBP_REG_ACCESS.
2996 */
2997struct mwl8k_cmd_bbp_reg_access {
2998 struct mwl8k_cmd_pkt header;
2999 __le16 action;
3000 __le16 offset;
3001 u8 value;
3002 u8 rsrv[3];
3003} __packed;
3004
3005static int
3006mwl8k_cmd_bbp_reg_access(struct ieee80211_hw *hw,
3007 u16 action,
3008 u16 offset,
3009 u8 *value)
3010{
3011 struct mwl8k_cmd_bbp_reg_access *cmd;
3012 int rc;
3013
3014 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3015 if (cmd == NULL)
3016 return -ENOMEM;
3017
3018 cmd->header.code = cpu_to_le16(MWL8K_CMD_BBP_REG_ACCESS);
3019 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3020 cmd->action = cpu_to_le16(action);
3021 cmd->offset = cpu_to_le16(offset);
3022
3023 rc = mwl8k_post_cmd(hw, &cmd->header);
3024
3025 if (!rc)
3026 *value = cmd->value;
3027 else
3028 *value = 0;
3029
3030 kfree(cmd);
3031
3032 return rc;
3033}
3034
3035/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003036 * CMD_SET_POST_SCAN.
3037 */
3038struct mwl8k_cmd_set_post_scan {
3039 struct mwl8k_cmd_pkt header;
3040 __le32 isibss;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02003041 __u8 bssid[ETH_ALEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003042} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003043
3044static int
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003045mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003046{
3047 struct mwl8k_cmd_set_post_scan *cmd;
3048 int rc;
3049
3050 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3051 if (cmd == NULL)
3052 return -ENOMEM;
3053
3054 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
3055 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3056 cmd->isibss = 0;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02003057 memcpy(cmd->bssid, mac, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003058
3059 rc = mwl8k_post_cmd(hw, &cmd->header);
3060 kfree(cmd);
3061
3062 return rc;
3063}
3064
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05303065static int freq_to_idx(struct mwl8k_priv *priv, int freq)
3066{
3067 struct ieee80211_supported_band *sband;
3068 int band, ch, idx = 0;
3069
3070 for (band = IEEE80211_BAND_2GHZ; band < IEEE80211_NUM_BANDS; band++) {
3071 sband = priv->hw->wiphy->bands[band];
3072 if (!sband)
3073 continue;
3074
3075 for (ch = 0; ch < sband->n_channels; ch++, idx++)
3076 if (sband->channels[ch].center_freq == freq)
3077 goto exit;
3078 }
3079
3080exit:
3081 return idx;
3082}
3083
Yogesh Ashok Powarc7c361e2014-03-06 20:42:58 +05303084static void mwl8k_update_survey(struct mwl8k_priv *priv,
3085 struct ieee80211_channel *channel)
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05303086{
3087 u32 cca_cnt, rx_rdy;
3088 s8 nf = 0, idx;
3089 struct survey_info *survey;
3090
3091 idx = freq_to_idx(priv, priv->acs_chan->center_freq);
3092 if (idx >= MWL8K_NUM_CHANS) {
3093 wiphy_err(priv->hw->wiphy, "Failed to update survey\n");
3094 return;
3095 }
3096
3097 survey = &priv->survey[idx];
3098
Yogesh Ashok Powaraa0bee12014-03-06 20:42:43 +05303099 cca_cnt = ioread32(priv->regs + NOK_CCA_CNT_REG);
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05303100 cca_cnt /= 1000; /* uSecs to mSecs */
Johannes Berg4ed20be2014-11-14 16:35:34 +01003101 survey->time_busy = (u64) cca_cnt;
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05303102
Yogesh Ashok Powaraa0bee12014-03-06 20:42:43 +05303103 rx_rdy = ioread32(priv->regs + BBU_RXRDY_CNT_REG);
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05303104 rx_rdy /= 1000; /* uSecs to mSecs */
Johannes Berg4ed20be2014-11-14 16:35:34 +01003105 survey->time_rx = (u64) rx_rdy;
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05303106
3107 priv->channel_time = jiffies - priv->channel_time;
Johannes Berg4ed20be2014-11-14 16:35:34 +01003108 survey->time = jiffies_to_msecs(priv->channel_time);
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05303109
3110 survey->channel = channel;
3111
3112 mwl8k_cmd_bbp_reg_access(priv->hw, 0, BBU_AVG_NOISE_VAL, &nf);
3113
3114 /* Make sure sign is negative else ACS at hostapd fails */
3115 survey->noise = nf * -1;
3116
3117 survey->filled = SURVEY_INFO_NOISE_DBM |
Johannes Berg4ed20be2014-11-14 16:35:34 +01003118 SURVEY_INFO_TIME |
3119 SURVEY_INFO_TIME_BUSY |
3120 SURVEY_INFO_TIME_RX;
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05303121}
3122
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003123/*
3124 * CMD_SET_RF_CHANNEL.
3125 */
3126struct mwl8k_cmd_set_rf_channel {
3127 struct mwl8k_cmd_pkt header;
3128 __le16 action;
3129 __u8 current_channel;
3130 __le32 channel_flags;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003131} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003132
3133static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003134 struct ieee80211_conf *conf)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003135{
Karl Beldan675a0b02013-03-25 16:26:57 +01003136 struct ieee80211_channel *channel = conf->chandef.chan;
3137 enum nl80211_channel_type channel_type =
3138 cfg80211_get_chandef_type(&conf->chandef);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003139 struct mwl8k_cmd_set_rf_channel *cmd;
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05303140 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003141 int rc;
3142
3143 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3144 if (cmd == NULL)
3145 return -ENOMEM;
3146
3147 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
3148 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3149 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3150 cmd->current_channel = channel->hw_value;
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003151
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003152 if (channel->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003153 cmd->channel_flags |= cpu_to_le32(0x00000001);
Lennert Buytenhek42574ea2010-01-12 13:49:18 +01003154 else if (channel->band == IEEE80211_BAND_5GHZ)
3155 cmd->channel_flags |= cpu_to_le32(0x00000004);
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003156
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05303157 if (!priv->sw_scan_start) {
3158 if (channel_type == NL80211_CHAN_NO_HT ||
3159 channel_type == NL80211_CHAN_HT20)
3160 cmd->channel_flags |= cpu_to_le32(0x00000080);
3161 else if (channel_type == NL80211_CHAN_HT40MINUS)
3162 cmd->channel_flags |= cpu_to_le32(0x000001900);
3163 else if (channel_type == NL80211_CHAN_HT40PLUS)
3164 cmd->channel_flags |= cpu_to_le32(0x000000900);
3165 } else {
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003166 cmd->channel_flags |= cpu_to_le32(0x00000080);
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05303167 }
3168
3169 if (priv->sw_scan_start) {
3170 /* Store current channel stats
3171 * before switching to newer one.
3172 * This will be processed only for AP fw.
3173 */
3174 if (priv->channel_time != 0)
3175 mwl8k_update_survey(priv, priv->acs_chan);
3176
3177 priv->channel_time = jiffies;
3178 priv->acs_chan = channel;
3179 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003180
3181 rc = mwl8k_post_cmd(hw, &cmd->header);
3182 kfree(cmd);
3183
3184 return rc;
3185}
3186
3187/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003188 * CMD_SET_AID.
3189 */
3190#define MWL8K_FRAME_PROT_DISABLED 0x00
3191#define MWL8K_FRAME_PROT_11G 0x07
3192#define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
3193#define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
3194
3195struct mwl8k_cmd_update_set_aid {
3196 struct mwl8k_cmd_pkt header;
3197 __le16 aid;
3198
3199 /* AP's MAC address (BSSID) */
3200 __u8 bssid[ETH_ALEN];
3201 __le16 protection_mode;
3202 __u8 supp_rates[14];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003203} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003204
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003205static void legacy_rate_mask_to_array(u8 *rates, u32 mask)
3206{
3207 int i;
3208 int j;
3209
3210 /*
Jonas Gorski3f524552013-04-14 14:11:58 +02003211 * Clear nonstandard rate 4.
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003212 */
3213 mask &= 0x1fef;
3214
Jonas Gorski3f524552013-04-14 14:11:58 +02003215 for (i = 0, j = 0; i < 13; i++) {
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003216 if (mask & (1 << i))
Lennert Buytenhek777ad372010-01-12 13:48:04 +01003217 rates[j++] = mwl8k_rates_24[i].hw_value;
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003218 }
3219}
3220
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003221static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003222mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
3223 struct ieee80211_vif *vif, u32 legacy_rate_mask)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003224{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003225 struct mwl8k_cmd_update_set_aid *cmd;
3226 u16 prot_mode;
3227 int rc;
3228
3229 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3230 if (cmd == NULL)
3231 return -ENOMEM;
3232
3233 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
3234 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003235 cmd->aid = cpu_to_le16(vif->bss_conf.aid);
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003236 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003237
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003238 if (vif->bss_conf.use_cts_prot) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003239 prot_mode = MWL8K_FRAME_PROT_11G;
3240 } else {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003241 switch (vif->bss_conf.ht_operation_mode &
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003242 IEEE80211_HT_OP_MODE_PROTECTION) {
3243 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
3244 prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
3245 break;
3246 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
3247 prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
3248 break;
3249 default:
3250 prot_mode = MWL8K_FRAME_PROT_DISABLED;
3251 break;
3252 }
3253 }
3254 cmd->protection_mode = cpu_to_le16(prot_mode);
3255
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003256 legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003257
3258 rc = mwl8k_post_cmd(hw, &cmd->header);
3259 kfree(cmd);
3260
3261 return rc;
3262}
3263
3264/*
3265 * CMD_SET_RATE.
3266 */
3267struct mwl8k_cmd_set_rate {
3268 struct mwl8k_cmd_pkt header;
3269 __u8 legacy_rates[14];
3270
3271 /* Bitmap for supported MCS codes. */
3272 __u8 mcs_set[16];
3273 __u8 reserved[16];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003274} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003275
3276static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003277mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003278 u32 legacy_rate_mask, u8 *mcs_rates)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003279{
3280 struct mwl8k_cmd_set_rate *cmd;
3281 int rc;
3282
3283 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3284 if (cmd == NULL)
3285 return -ENOMEM;
3286
3287 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE);
3288 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003289 legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003290 memcpy(cmd->mcs_set, mcs_rates, 16);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003291
3292 rc = mwl8k_post_cmd(hw, &cmd->header);
3293 kfree(cmd);
3294
3295 return rc;
3296}
3297
3298/*
3299 * CMD_FINALIZE_JOIN.
3300 */
3301#define MWL8K_FJ_BEACON_MAXLEN 128
3302
3303struct mwl8k_cmd_finalize_join {
3304 struct mwl8k_cmd_pkt header;
3305 __le32 sleep_interval; /* Number of beacon periods to sleep */
3306 __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003307} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003308
3309static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame,
3310 int framelen, int dtim)
3311{
3312 struct mwl8k_cmd_finalize_join *cmd;
3313 struct ieee80211_mgmt *payload = frame;
3314 int payload_len;
3315 int rc;
3316
3317 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3318 if (cmd == NULL)
3319 return -ENOMEM;
3320
3321 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN);
3322 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3323 cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
3324
3325 payload_len = framelen - ieee80211_hdrlen(payload->frame_control);
3326 if (payload_len < 0)
3327 payload_len = 0;
3328 else if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
3329 payload_len = MWL8K_FJ_BEACON_MAXLEN;
3330
3331 memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
3332
3333 rc = mwl8k_post_cmd(hw, &cmd->header);
3334 kfree(cmd);
3335
3336 return rc;
3337}
3338
3339/*
3340 * CMD_SET_RTS_THRESHOLD.
3341 */
3342struct mwl8k_cmd_set_rts_threshold {
3343 struct mwl8k_cmd_pkt header;
3344 __le16 action;
3345 __le16 threshold;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003346} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003347
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003348static int
3349mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw, int rts_thresh)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003350{
3351 struct mwl8k_cmd_set_rts_threshold *cmd;
3352 int rc;
3353
3354 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3355 if (cmd == NULL)
3356 return -ENOMEM;
3357
3358 cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
3359 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003360 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3361 cmd->threshold = cpu_to_le16(rts_thresh);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003362
3363 rc = mwl8k_post_cmd(hw, &cmd->header);
3364 kfree(cmd);
3365
3366 return rc;
3367}
3368
3369/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003370 * CMD_SET_SLOT.
3371 */
3372struct mwl8k_cmd_set_slot {
3373 struct mwl8k_cmd_pkt header;
3374 __le16 action;
3375 __u8 short_slot;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003376} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003377
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003378static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003379{
3380 struct mwl8k_cmd_set_slot *cmd;
3381 int rc;
3382
3383 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3384 if (cmd == NULL)
3385 return -ENOMEM;
3386
3387 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
3388 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3389 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003390 cmd->short_slot = short_slot_time;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003391
3392 rc = mwl8k_post_cmd(hw, &cmd->header);
3393 kfree(cmd);
3394
3395 return rc;
3396}
3397
3398/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003399 * CMD_SET_EDCA_PARAMS.
3400 */
3401struct mwl8k_cmd_set_edca_params {
3402 struct mwl8k_cmd_pkt header;
3403
3404 /* See MWL8K_SET_EDCA_XXX below */
3405 __le16 action;
3406
3407 /* TX opportunity in units of 32 us */
3408 __le16 txop;
3409
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003410 union {
3411 struct {
3412 /* Log exponent of max contention period: 0...15 */
3413 __le32 log_cw_max;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003414
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003415 /* Log exponent of min contention period: 0...15 */
3416 __le32 log_cw_min;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003417
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003418 /* Adaptive interframe spacing in units of 32us */
3419 __u8 aifs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003420
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003421 /* TX queue to configure */
3422 __u8 txq;
3423 } ap;
3424 struct {
3425 /* Log exponent of max contention period: 0...15 */
3426 __u8 log_cw_max;
3427
3428 /* Log exponent of min contention period: 0...15 */
3429 __u8 log_cw_min;
3430
3431 /* Adaptive interframe spacing in units of 32us */
3432 __u8 aifs;
3433
3434 /* TX queue to configure */
3435 __u8 txq;
3436 } sta;
3437 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003438} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003439
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003440#define MWL8K_SET_EDCA_CW 0x01
3441#define MWL8K_SET_EDCA_TXOP 0x02
3442#define MWL8K_SET_EDCA_AIFS 0x04
3443
3444#define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
3445 MWL8K_SET_EDCA_TXOP | \
3446 MWL8K_SET_EDCA_AIFS)
3447
3448static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003449mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
3450 __u16 cw_min, __u16 cw_max,
3451 __u8 aifs, __u16 txop)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003452{
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003453 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003454 struct mwl8k_cmd_set_edca_params *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003455 int rc;
3456
3457 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3458 if (cmd == NULL)
3459 return -ENOMEM;
3460
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003461 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
3462 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003463 cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
3464 cmd->txop = cpu_to_le16(txop);
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003465 if (priv->ap_fw) {
3466 cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1));
3467 cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1));
3468 cmd->ap.aifs = aifs;
3469 cmd->ap.txq = qnum;
3470 } else {
3471 cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1);
3472 cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1);
3473 cmd->sta.aifs = aifs;
3474 cmd->sta.txq = qnum;
3475 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003476
3477 rc = mwl8k_post_cmd(hw, &cmd->header);
3478 kfree(cmd);
3479
3480 return rc;
3481}
3482
3483/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003484 * CMD_SET_WMM_MODE.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003485 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003486struct mwl8k_cmd_set_wmm_mode {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003487 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003488 __le16 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003489} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003490
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003491static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw *hw, bool enable)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003492{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003493 struct mwl8k_priv *priv = hw->priv;
3494 struct mwl8k_cmd_set_wmm_mode *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003495 int rc;
3496
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003497 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3498 if (cmd == NULL)
3499 return -ENOMEM;
3500
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003501 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003502 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003503 cmd->action = cpu_to_le16(!!enable);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003504
3505 rc = mwl8k_post_cmd(hw, &cmd->header);
3506 kfree(cmd);
Lennert Buytenhek16cec432009-11-30 18:14:23 +01003507
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003508 if (!rc)
3509 priv->wmm_enabled = enable;
3510
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003511 return rc;
3512}
3513
3514/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003515 * CMD_MIMO_CONFIG.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003516 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003517struct mwl8k_cmd_mimo_config {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003518 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003519 __le32 action;
3520 __u8 rx_antenna_map;
3521 __u8 tx_antenna_map;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003522} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003523
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003524static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003525{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003526 struct mwl8k_cmd_mimo_config *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003527 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003528
3529 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3530 if (cmd == NULL)
3531 return -ENOMEM;
3532
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003533 cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003534 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003535 cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET);
3536 cmd->rx_antenna_map = rx;
3537 cmd->tx_antenna_map = tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003538
3539 rc = mwl8k_post_cmd(hw, &cmd->header);
3540 kfree(cmd);
3541
3542 return rc;
3543}
3544
3545/*
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003546 * CMD_USE_FIXED_RATE (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003547 */
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003548struct mwl8k_cmd_use_fixed_rate_sta {
3549 struct mwl8k_cmd_pkt header;
3550 __le32 action;
3551 __le32 allow_rate_drop;
3552 __le32 num_rates;
3553 struct {
3554 __le32 is_ht_rate;
3555 __le32 enable_retry;
3556 __le32 rate;
3557 __le32 retry_count;
3558 } rate_entry[8];
3559 __le32 rate_type;
3560 __le32 reserved1;
3561 __le32 reserved2;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003562} __packed;
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003563
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003564#define MWL8K_USE_AUTO_RATE 0x0002
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003565#define MWL8K_UCAST_RATE 0
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003566
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003567static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003568{
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003569 struct mwl8k_cmd_use_fixed_rate_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003570 int rc;
3571
3572 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3573 if (cmd == NULL)
3574 return -ENOMEM;
3575
3576 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3577 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003578 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3579 cmd->rate_type = cpu_to_le32(MWL8K_UCAST_RATE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003580
3581 rc = mwl8k_post_cmd(hw, &cmd->header);
3582 kfree(cmd);
3583
3584 return rc;
3585}
3586
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003587/*
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003588 * CMD_USE_FIXED_RATE (AP version).
3589 */
3590struct mwl8k_cmd_use_fixed_rate_ap {
3591 struct mwl8k_cmd_pkt header;
3592 __le32 action;
3593 __le32 allow_rate_drop;
3594 __le32 num_rates;
3595 struct mwl8k_rate_entry_ap {
3596 __le32 is_ht_rate;
3597 __le32 enable_retry;
3598 __le32 rate;
3599 __le32 retry_count;
3600 } rate_entry[4];
3601 u8 multicast_rate;
3602 u8 multicast_rate_type;
3603 u8 management_rate;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003604} __packed;
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003605
3606static int
3607mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw *hw, int mcast, int mgmt)
3608{
3609 struct mwl8k_cmd_use_fixed_rate_ap *cmd;
3610 int rc;
3611
3612 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3613 if (cmd == NULL)
3614 return -ENOMEM;
3615
3616 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3617 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3618 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3619 cmd->multicast_rate = mcast;
3620 cmd->management_rate = mgmt;
3621
3622 rc = mwl8k_post_cmd(hw, &cmd->header);
3623 kfree(cmd);
3624
3625 return rc;
3626}
3627
3628/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003629 * CMD_ENABLE_SNIFFER.
3630 */
3631struct mwl8k_cmd_enable_sniffer {
3632 struct mwl8k_cmd_pkt header;
3633 __le32 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003634} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003635
3636static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable)
3637{
3638 struct mwl8k_cmd_enable_sniffer *cmd;
3639 int rc;
3640
3641 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3642 if (cmd == NULL)
3643 return -ENOMEM;
3644
3645 cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
3646 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3647 cmd->action = cpu_to_le32(!!enable);
3648
3649 rc = mwl8k_post_cmd(hw, &cmd->header);
3650 kfree(cmd);
3651
3652 return rc;
3653}
3654
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303655struct mwl8k_cmd_update_mac_addr {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003656 struct mwl8k_cmd_pkt header;
3657 union {
3658 struct {
3659 __le16 mac_type;
3660 __u8 mac_addr[ETH_ALEN];
3661 } mbss;
3662 __u8 mac_addr[ETH_ALEN];
3663 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003664} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003665
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003666#define MWL8K_MAC_TYPE_PRIMARY_CLIENT 0
3667#define MWL8K_MAC_TYPE_SECONDARY_CLIENT 1
3668#define MWL8K_MAC_TYPE_PRIMARY_AP 2
3669#define MWL8K_MAC_TYPE_SECONDARY_AP 3
Lennert Buytenheka9e00b12010-01-08 18:31:30 +01003670
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303671static int mwl8k_cmd_update_mac_addr(struct ieee80211_hw *hw,
3672 struct ieee80211_vif *vif, u8 *mac, bool set)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003673{
3674 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003675 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303676 struct mwl8k_cmd_update_mac_addr *cmd;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003677 int mac_type;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003678 int rc;
3679
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003680 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3681 if (vif != NULL && vif->type == NL80211_IFTYPE_STATION) {
3682 if (mwl8k_vif->macid + 1 == ffs(priv->sta_macids_supported))
Yogesh Ashok Powaraf458832013-01-25 16:20:12 +05303683 if (priv->ap_fw)
3684 mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
3685 else
3686 mac_type = MWL8K_MAC_TYPE_PRIMARY_CLIENT;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003687 else
3688 mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
3689 } else if (vif != NULL && vif->type == NL80211_IFTYPE_AP) {
3690 if (mwl8k_vif->macid + 1 == ffs(priv->ap_macids_supported))
3691 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3692 else
3693 mac_type = MWL8K_MAC_TYPE_SECONDARY_AP;
3694 }
3695
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003696 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3697 if (cmd == NULL)
3698 return -ENOMEM;
3699
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303700 if (set)
3701 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR);
3702 else
3703 cmd->header.code = cpu_to_le16(MWL8K_CMD_DEL_MAC_ADDR);
3704
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003705 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3706 if (priv->ap_fw) {
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003707 cmd->mbss.mac_type = cpu_to_le16(mac_type);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003708 memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN);
3709 } else {
3710 memcpy(cmd->mac_addr, mac, ETH_ALEN);
3711 }
3712
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003713 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003714 kfree(cmd);
3715
3716 return rc;
3717}
3718
3719/*
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303720 * MWL8K_CMD_SET_MAC_ADDR.
3721 */
3722static inline int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw,
3723 struct ieee80211_vif *vif, u8 *mac)
3724{
3725 return mwl8k_cmd_update_mac_addr(hw, vif, mac, true);
3726}
3727
3728/*
3729 * MWL8K_CMD_DEL_MAC_ADDR.
3730 */
3731static inline int mwl8k_cmd_del_mac_addr(struct ieee80211_hw *hw,
3732 struct ieee80211_vif *vif, u8 *mac)
3733{
3734 return mwl8k_cmd_update_mac_addr(hw, vif, mac, false);
3735}
3736
3737/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003738 * CMD_SET_RATEADAPT_MODE.
3739 */
3740struct mwl8k_cmd_set_rate_adapt_mode {
3741 struct mwl8k_cmd_pkt header;
3742 __le16 action;
3743 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003744} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003745
3746static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode)
3747{
3748 struct mwl8k_cmd_set_rate_adapt_mode *cmd;
3749 int rc;
3750
3751 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3752 if (cmd == NULL)
3753 return -ENOMEM;
3754
3755 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
3756 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3757 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3758 cmd->mode = cpu_to_le16(mode);
3759
3760 rc = mwl8k_post_cmd(hw, &cmd->header);
3761 kfree(cmd);
3762
3763 return rc;
3764}
3765
3766/*
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003767 * CMD_GET_WATCHDOG_BITMAP.
3768 */
3769struct mwl8k_cmd_get_watchdog_bitmap {
3770 struct mwl8k_cmd_pkt header;
3771 u8 bitmap;
3772} __packed;
3773
3774static int mwl8k_cmd_get_watchdog_bitmap(struct ieee80211_hw *hw, u8 *bitmap)
3775{
3776 struct mwl8k_cmd_get_watchdog_bitmap *cmd;
3777 int rc;
3778
3779 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3780 if (cmd == NULL)
3781 return -ENOMEM;
3782
3783 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_WATCHDOG_BITMAP);
3784 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3785
3786 rc = mwl8k_post_cmd(hw, &cmd->header);
3787 if (!rc)
3788 *bitmap = cmd->bitmap;
3789
3790 kfree(cmd);
3791
3792 return rc;
3793}
3794
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303795#define MWL8K_WMM_QUEUE_NUMBER 3
3796
3797static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
3798 u8 idx);
3799
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003800static void mwl8k_watchdog_ba_events(struct work_struct *work)
3801{
3802 int rc;
3803 u8 bitmap = 0, stream_index;
3804 struct mwl8k_ampdu_stream *streams;
3805 struct mwl8k_priv *priv =
3806 container_of(work, struct mwl8k_priv, watchdog_ba_handle);
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303807 struct ieee80211_hw *hw = priv->hw;
3808 int i;
3809 u32 status = 0;
3810
3811 mwl8k_fw_lock(hw);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003812
3813 rc = mwl8k_cmd_get_watchdog_bitmap(priv->hw, &bitmap);
3814 if (rc)
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303815 goto done;
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003816
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303817 spin_lock(&priv->stream_lock);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003818
3819 /* the bitmap is the hw queue number. Map it to the ampdu queue. */
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303820 for (i = 0; i < TOTAL_HW_TX_QUEUES; i++) {
3821 if (bitmap & (1 << i)) {
3822 stream_index = (i + MWL8K_WMM_QUEUE_NUMBER) %
3823 TOTAL_HW_TX_QUEUES;
3824 streams = &priv->ampdu[stream_index];
3825 if (streams->state == AMPDU_STREAM_ACTIVE) {
3826 ieee80211_stop_tx_ba_session(streams->sta,
3827 streams->tid);
3828 spin_unlock(&priv->stream_lock);
3829 mwl8k_destroy_ba(hw, stream_index);
3830 spin_lock(&priv->stream_lock);
3831 }
3832 }
3833 }
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003834
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303835 spin_unlock(&priv->stream_lock);
3836done:
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05303837 atomic_dec(&priv->watchdog_event_pending);
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303838 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3839 iowrite32((status | MWL8K_A2H_INT_BA_WATCHDOG),
3840 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3841 mwl8k_fw_unlock(hw);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003842 return;
3843}
3844
3845
3846/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003847 * CMD_BSS_START.
3848 */
3849struct mwl8k_cmd_bss_start {
3850 struct mwl8k_cmd_pkt header;
3851 __le32 enable;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003852} __packed;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003853
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003854static int mwl8k_cmd_bss_start(struct ieee80211_hw *hw,
3855 struct ieee80211_vif *vif, int enable)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003856{
3857 struct mwl8k_cmd_bss_start *cmd;
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303858 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
3859 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003860 int rc;
3861
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303862 if (enable && (priv->running_bsses & (1 << mwl8k_vif->macid)))
3863 return 0;
3864
3865 if (!enable && !(priv->running_bsses & (1 << mwl8k_vif->macid)))
3866 return 0;
3867
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003868 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3869 if (cmd == NULL)
3870 return -ENOMEM;
3871
3872 cmd->header.code = cpu_to_le16(MWL8K_CMD_BSS_START);
3873 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3874 cmd->enable = cpu_to_le32(enable);
3875
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003876 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003877 kfree(cmd);
3878
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303879 if (!rc) {
3880 if (enable)
3881 priv->running_bsses |= (1 << mwl8k_vif->macid);
3882 else
3883 priv->running_bsses &= ~(1 << mwl8k_vif->macid);
3884 }
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003885 return rc;
3886}
3887
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303888static void mwl8k_enable_bsses(struct ieee80211_hw *hw, bool enable, u32 bitmap)
3889{
3890 struct mwl8k_priv *priv = hw->priv;
3891 struct mwl8k_vif *mwl8k_vif, *tmp_vif;
3892 struct ieee80211_vif *vif;
3893
3894 list_for_each_entry_safe(mwl8k_vif, tmp_vif, &priv->vif_list, list) {
3895 vif = mwl8k_vif->vif;
3896
3897 if (!(bitmap & (1 << mwl8k_vif->macid)))
3898 continue;
3899
3900 if (vif->type == NL80211_IFTYPE_AP)
3901 mwl8k_cmd_bss_start(hw, vif, enable);
3902 }
3903}
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003904/*
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003905 * CMD_BASTREAM.
3906 */
3907
3908/*
3909 * UPSTREAM is tx direction
3910 */
3911#define BASTREAM_FLAG_DIRECTION_UPSTREAM 0x00
3912#define BASTREAM_FLAG_IMMEDIATE_TYPE 0x01
3913
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303914enum ba_stream_action_type {
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003915 MWL8K_BA_CREATE,
3916 MWL8K_BA_UPDATE,
3917 MWL8K_BA_DESTROY,
3918 MWL8K_BA_FLUSH,
3919 MWL8K_BA_CHECK,
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303920};
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003921
3922
3923struct mwl8k_create_ba_stream {
3924 __le32 flags;
3925 __le32 idle_thrs;
3926 __le32 bar_thrs;
3927 __le32 window_size;
3928 u8 peer_mac_addr[6];
3929 u8 dialog_token;
3930 u8 tid;
3931 u8 queue_id;
3932 u8 param_info;
3933 __le32 ba_context;
3934 u8 reset_seq_no_flag;
3935 __le16 curr_seq_no;
3936 u8 sta_src_mac_addr[6];
3937} __packed;
3938
3939struct mwl8k_destroy_ba_stream {
3940 __le32 flags;
3941 __le32 ba_context;
3942} __packed;
3943
3944struct mwl8k_cmd_bastream {
3945 struct mwl8k_cmd_pkt header;
3946 __le32 action;
3947 union {
3948 struct mwl8k_create_ba_stream create_params;
3949 struct mwl8k_destroy_ba_stream destroy_params;
3950 };
3951} __packed;
3952
3953static int
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303954mwl8k_check_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
3955 struct ieee80211_vif *vif)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003956{
3957 struct mwl8k_cmd_bastream *cmd;
3958 int rc;
3959
3960 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3961 if (cmd == NULL)
3962 return -ENOMEM;
3963
3964 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3965 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3966
3967 cmd->action = cpu_to_le32(MWL8K_BA_CHECK);
3968
3969 cmd->create_params.queue_id = stream->idx;
3970 memcpy(&cmd->create_params.peer_mac_addr[0], stream->sta->addr,
3971 ETH_ALEN);
3972 cmd->create_params.tid = stream->tid;
3973
3974 cmd->create_params.flags =
3975 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE) |
3976 cpu_to_le32(BASTREAM_FLAG_DIRECTION_UPSTREAM);
3977
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303978 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003979
3980 kfree(cmd);
3981
3982 return rc;
3983}
3984
3985static int
3986mwl8k_create_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303987 u8 buf_size, struct ieee80211_vif *vif)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003988{
3989 struct mwl8k_cmd_bastream *cmd;
3990 int rc;
3991
3992 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3993 if (cmd == NULL)
3994 return -ENOMEM;
3995
3996
3997 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3998 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3999
4000 cmd->action = cpu_to_le32(MWL8K_BA_CREATE);
4001
4002 cmd->create_params.bar_thrs = cpu_to_le32((u32)buf_size);
4003 cmd->create_params.window_size = cpu_to_le32((u32)buf_size);
4004 cmd->create_params.queue_id = stream->idx;
4005
4006 memcpy(cmd->create_params.peer_mac_addr, stream->sta->addr, ETH_ALEN);
4007 cmd->create_params.tid = stream->tid;
4008 cmd->create_params.curr_seq_no = cpu_to_le16(0);
4009 cmd->create_params.reset_seq_no_flag = 1;
4010
4011 cmd->create_params.param_info =
4012 (stream->sta->ht_cap.ampdu_factor &
4013 IEEE80211_HT_AMPDU_PARM_FACTOR) |
4014 ((stream->sta->ht_cap.ampdu_density << 2) &
4015 IEEE80211_HT_AMPDU_PARM_DENSITY);
4016
4017 cmd->create_params.flags =
4018 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE |
4019 BASTREAM_FLAG_DIRECTION_UPSTREAM);
4020
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05304021 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07004022
4023 wiphy_debug(hw->wiphy, "Created a BA stream for %pM : tid %d\n",
4024 stream->sta->addr, stream->tid);
4025 kfree(cmd);
4026
4027 return rc;
4028}
4029
4030static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05304031 u8 idx)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07004032{
4033 struct mwl8k_cmd_bastream *cmd;
4034
4035 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4036 if (cmd == NULL)
4037 return;
4038
4039 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
4040 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4041 cmd->action = cpu_to_le32(MWL8K_BA_DESTROY);
4042
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05304043 cmd->destroy_params.ba_context = cpu_to_le32(idx);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07004044 mwl8k_post_cmd(hw, &cmd->header);
4045
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05304046 wiphy_debug(hw->wiphy, "Deleted BA stream index %d\n", idx);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07004047
4048 kfree(cmd);
4049}
4050
4051/*
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004052 * CMD_SET_NEW_STN.
4053 */
4054struct mwl8k_cmd_set_new_stn {
4055 struct mwl8k_cmd_pkt header;
4056 __le16 aid;
4057 __u8 mac_addr[6];
4058 __le16 stn_id;
4059 __le16 action;
4060 __le16 rsvd;
4061 __le32 legacy_rates;
4062 __u8 ht_rates[4];
4063 __le16 cap_info;
4064 __le16 ht_capabilities_info;
4065 __u8 mac_ht_param_info;
4066 __u8 rev;
4067 __u8 control_channel;
4068 __u8 add_channel;
4069 __le16 op_mode;
4070 __le16 stbc;
4071 __u8 add_qos_info;
4072 __u8 is_qos_sta;
4073 __le32 fw_sta_ptr;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004074} __packed;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004075
4076#define MWL8K_STA_ACTION_ADD 0
4077#define MWL8K_STA_ACTION_REMOVE 2
4078
4079static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw *hw,
4080 struct ieee80211_vif *vif,
4081 struct ieee80211_sta *sta)
4082{
4083 struct mwl8k_cmd_set_new_stn *cmd;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004084 u32 rates;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004085 int rc;
4086
4087 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4088 if (cmd == NULL)
4089 return -ENOMEM;
4090
4091 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
4092 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4093 cmd->aid = cpu_to_le16(sta->aid);
4094 memcpy(cmd->mac_addr, sta->addr, ETH_ALEN);
4095 cmd->stn_id = cpu_to_le16(sta->aid);
4096 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_ADD);
Karl Beldan675a0b02013-03-25 16:26:57 +01004097 if (hw->conf.chandef.chan->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004098 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
4099 else
4100 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4101 cmd->legacy_rates = cpu_to_le32(rates);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004102 if (sta->ht_cap.ht_supported) {
4103 cmd->ht_rates[0] = sta->ht_cap.mcs.rx_mask[0];
4104 cmd->ht_rates[1] = sta->ht_cap.mcs.rx_mask[1];
4105 cmd->ht_rates[2] = sta->ht_cap.mcs.rx_mask[2];
4106 cmd->ht_rates[3] = sta->ht_cap.mcs.rx_mask[3];
4107 cmd->ht_capabilities_info = cpu_to_le16(sta->ht_cap.cap);
4108 cmd->mac_ht_param_info = (sta->ht_cap.ampdu_factor & 3) |
4109 ((sta->ht_cap.ampdu_density & 7) << 2);
4110 cmd->is_qos_sta = 1;
4111 }
4112
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004113 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004114 kfree(cmd);
4115
4116 return rc;
4117}
4118
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004119static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw *hw,
4120 struct ieee80211_vif *vif)
4121{
4122 struct mwl8k_cmd_set_new_stn *cmd;
4123 int rc;
4124
4125 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4126 if (cmd == NULL)
4127 return -ENOMEM;
4128
4129 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
4130 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4131 memcpy(cmd->mac_addr, vif->addr, ETH_ALEN);
4132
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004133 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004134 kfree(cmd);
4135
4136 return rc;
4137}
4138
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004139static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw *hw,
4140 struct ieee80211_vif *vif, u8 *addr)
4141{
4142 struct mwl8k_cmd_set_new_stn *cmd;
Yogesh Ashok Powar0dd13a42013-01-08 10:16:37 +05304143 struct mwl8k_priv *priv = hw->priv;
4144 int rc, i;
4145 u8 idx;
4146
4147 spin_lock(&priv->stream_lock);
4148 /* Destroy any active ampdu streams for this sta */
4149 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
4150 struct mwl8k_ampdu_stream *s;
4151 s = &priv->ampdu[i];
4152 if (s->state != AMPDU_NO_STREAM) {
4153 if (memcmp(s->sta->addr, addr, ETH_ALEN) == 0) {
4154 if (s->state == AMPDU_STREAM_ACTIVE) {
4155 idx = s->idx;
4156 spin_unlock(&priv->stream_lock);
4157 mwl8k_destroy_ba(hw, idx);
4158 spin_lock(&priv->stream_lock);
4159 } else if (s->state == AMPDU_STREAM_NEW) {
4160 mwl8k_remove_stream(hw, s);
4161 }
4162 }
4163 }
4164 }
4165
4166 spin_unlock(&priv->stream_lock);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004167
4168 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4169 if (cmd == NULL)
4170 return -ENOMEM;
4171
4172 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
4173 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4174 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4175 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_REMOVE);
4176
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004177 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004178 kfree(cmd);
4179
4180 return rc;
4181}
4182
4183/*
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004184 * CMD_UPDATE_ENCRYPTION.
4185 */
4186
4187#define MAX_ENCR_KEY_LENGTH 16
4188#define MIC_KEY_LENGTH 8
4189
4190struct mwl8k_cmd_update_encryption {
4191 struct mwl8k_cmd_pkt header;
4192
4193 __le32 action;
4194 __le32 reserved;
4195 __u8 mac_addr[6];
4196 __u8 encr_type;
4197
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304198} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004199
4200struct mwl8k_cmd_set_key {
4201 struct mwl8k_cmd_pkt header;
4202
4203 __le32 action;
4204 __le32 reserved;
4205 __le16 length;
4206 __le16 key_type_id;
4207 __le32 key_info;
4208 __le32 key_id;
4209 __le16 key_len;
4210 __u8 key_material[MAX_ENCR_KEY_LENGTH];
4211 __u8 tkip_tx_mic_key[MIC_KEY_LENGTH];
4212 __u8 tkip_rx_mic_key[MIC_KEY_LENGTH];
4213 __le16 tkip_rsc_low;
4214 __le32 tkip_rsc_high;
4215 __le16 tkip_tsc_low;
4216 __le32 tkip_tsc_high;
4217 __u8 mac_addr[6];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304218} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004219
4220enum {
4221 MWL8K_ENCR_ENABLE,
4222 MWL8K_ENCR_SET_KEY,
4223 MWL8K_ENCR_REMOVE_KEY,
4224 MWL8K_ENCR_SET_GROUP_KEY,
4225};
4226
4227#define MWL8K_UPDATE_ENCRYPTION_TYPE_WEP 0
4228#define MWL8K_UPDATE_ENCRYPTION_TYPE_DISABLE 1
4229#define MWL8K_UPDATE_ENCRYPTION_TYPE_TKIP 4
4230#define MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED 7
4231#define MWL8K_UPDATE_ENCRYPTION_TYPE_AES 8
4232
4233enum {
4234 MWL8K_ALG_WEP,
4235 MWL8K_ALG_TKIP,
4236 MWL8K_ALG_CCMP,
4237};
4238
4239#define MWL8K_KEY_FLAG_TXGROUPKEY 0x00000004
4240#define MWL8K_KEY_FLAG_PAIRWISE 0x00000008
4241#define MWL8K_KEY_FLAG_TSC_VALID 0x00000040
4242#define MWL8K_KEY_FLAG_WEP_TXKEY 0x01000000
4243#define MWL8K_KEY_FLAG_MICKEY_VALID 0x02000000
4244
4245static int mwl8k_cmd_update_encryption_enable(struct ieee80211_hw *hw,
4246 struct ieee80211_vif *vif,
4247 u8 *addr,
4248 u8 encr_type)
4249{
4250 struct mwl8k_cmd_update_encryption *cmd;
4251 int rc;
4252
4253 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4254 if (cmd == NULL)
4255 return -ENOMEM;
4256
4257 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
4258 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4259 cmd->action = cpu_to_le32(MWL8K_ENCR_ENABLE);
4260 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4261 cmd->encr_type = encr_type;
4262
4263 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4264 kfree(cmd);
4265
4266 return rc;
4267}
4268
4269static int mwl8k_encryption_set_cmd_info(struct mwl8k_cmd_set_key *cmd,
4270 u8 *addr,
4271 struct ieee80211_key_conf *key)
4272{
4273 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
4274 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4275 cmd->length = cpu_to_le16(sizeof(*cmd) -
4276 offsetof(struct mwl8k_cmd_set_key, length));
4277 cmd->key_id = cpu_to_le32(key->keyidx);
4278 cmd->key_len = cpu_to_le16(key->keylen);
4279 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4280
4281 switch (key->cipher) {
4282 case WLAN_CIPHER_SUITE_WEP40:
4283 case WLAN_CIPHER_SUITE_WEP104:
4284 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_WEP);
4285 if (key->keyidx == 0)
4286 cmd->key_info = cpu_to_le32(MWL8K_KEY_FLAG_WEP_TXKEY);
4287
4288 break;
4289 case WLAN_CIPHER_SUITE_TKIP:
4290 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_TKIP);
4291 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4292 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
4293 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
4294 cmd->key_info |= cpu_to_le32(MWL8K_KEY_FLAG_MICKEY_VALID
4295 | MWL8K_KEY_FLAG_TSC_VALID);
4296 break;
4297 case WLAN_CIPHER_SUITE_CCMP:
4298 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_CCMP);
4299 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4300 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
4301 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
4302 break;
4303 default:
4304 return -ENOTSUPP;
4305 }
4306
4307 return 0;
4308}
4309
4310static int mwl8k_cmd_encryption_set_key(struct ieee80211_hw *hw,
4311 struct ieee80211_vif *vif,
4312 u8 *addr,
4313 struct ieee80211_key_conf *key)
4314{
4315 struct mwl8k_cmd_set_key *cmd;
4316 int rc;
4317 int keymlen;
4318 u32 action;
4319 u8 idx;
4320 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4321
4322 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4323 if (cmd == NULL)
4324 return -ENOMEM;
4325
4326 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4327 if (rc < 0)
4328 goto done;
4329
4330 idx = key->keyidx;
4331
4332 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4333 action = MWL8K_ENCR_SET_KEY;
4334 else
4335 action = MWL8K_ENCR_SET_GROUP_KEY;
4336
4337 switch (key->cipher) {
4338 case WLAN_CIPHER_SUITE_WEP40:
4339 case WLAN_CIPHER_SUITE_WEP104:
4340 if (!mwl8k_vif->wep_key_conf[idx].enabled) {
4341 memcpy(mwl8k_vif->wep_key_conf[idx].key, key,
4342 sizeof(*key) + key->keylen);
4343 mwl8k_vif->wep_key_conf[idx].enabled = 1;
4344 }
4345
Yogesh Ashok Powar9b571e22011-05-04 17:22:16 +05304346 keymlen = key->keylen;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004347 action = MWL8K_ENCR_SET_KEY;
4348 break;
4349 case WLAN_CIPHER_SUITE_TKIP:
4350 keymlen = MAX_ENCR_KEY_LENGTH + 2 * MIC_KEY_LENGTH;
4351 break;
4352 case WLAN_CIPHER_SUITE_CCMP:
4353 keymlen = key->keylen;
4354 break;
4355 default:
4356 rc = -ENOTSUPP;
4357 goto done;
4358 }
4359
4360 memcpy(cmd->key_material, key->key, keymlen);
4361 cmd->action = cpu_to_le32(action);
4362
4363 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4364done:
4365 kfree(cmd);
4366
4367 return rc;
4368}
4369
4370static int mwl8k_cmd_encryption_remove_key(struct ieee80211_hw *hw,
4371 struct ieee80211_vif *vif,
4372 u8 *addr,
4373 struct ieee80211_key_conf *key)
4374{
4375 struct mwl8k_cmd_set_key *cmd;
4376 int rc;
4377 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4378
4379 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4380 if (cmd == NULL)
4381 return -ENOMEM;
4382
4383 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4384 if (rc < 0)
4385 goto done;
4386
4387 if (key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
Dan Carpenterd981e052012-01-17 10:33:31 +03004388 key->cipher == WLAN_CIPHER_SUITE_WEP104)
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004389 mwl8k_vif->wep_key_conf[key->keyidx].enabled = 0;
4390
4391 cmd->action = cpu_to_le32(MWL8K_ENCR_REMOVE_KEY);
4392
4393 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4394done:
4395 kfree(cmd);
4396
4397 return rc;
4398}
4399
4400static int mwl8k_set_key(struct ieee80211_hw *hw,
4401 enum set_key_cmd cmd_param,
4402 struct ieee80211_vif *vif,
4403 struct ieee80211_sta *sta,
4404 struct ieee80211_key_conf *key)
4405{
4406 int rc = 0;
4407 u8 encr_type;
4408 u8 *addr;
4409 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Yogesh Ashok Powar751930c2013-01-25 16:20:28 +05304410 struct mwl8k_priv *priv = hw->priv;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004411
Yogesh Ashok Powar751930c2013-01-25 16:20:28 +05304412 if (vif->type == NL80211_IFTYPE_STATION && !priv->ap_fw)
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004413 return -EOPNOTSUPP;
4414
4415 if (sta == NULL)
Yogesh Ashok Powarff7e9f92012-01-27 16:08:27 +05304416 addr = vif->addr;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004417 else
4418 addr = sta->addr;
4419
4420 if (cmd_param == SET_KEY) {
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004421 rc = mwl8k_cmd_encryption_set_key(hw, vif, addr, key);
4422 if (rc)
4423 goto out;
4424
4425 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40)
4426 || (key->cipher == WLAN_CIPHER_SUITE_WEP104))
4427 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_WEP;
4428 else
4429 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED;
4430
4431 rc = mwl8k_cmd_update_encryption_enable(hw, vif, addr,
4432 encr_type);
4433 if (rc)
4434 goto out;
4435
4436 mwl8k_vif->is_hw_crypto_enabled = true;
4437
4438 } else {
4439 rc = mwl8k_cmd_encryption_remove_key(hw, vif, addr, key);
4440
4441 if (rc)
4442 goto out;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004443 }
4444out:
4445 return rc;
4446}
4447
4448/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004449 * CMD_UPDATE_STADB.
4450 */
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004451struct ewc_ht_info {
4452 __le16 control1;
4453 __le16 control2;
4454 __le16 control3;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004455} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004456
4457struct peer_capability_info {
4458 /* Peer type - AP vs. STA. */
4459 __u8 peer_type;
4460
4461 /* Basic 802.11 capabilities from assoc resp. */
4462 __le16 basic_caps;
4463
4464 /* Set if peer supports 802.11n high throughput (HT). */
4465 __u8 ht_support;
4466
4467 /* Valid if HT is supported. */
4468 __le16 ht_caps;
4469 __u8 extended_ht_caps;
4470 struct ewc_ht_info ewc_info;
4471
4472 /* Legacy rate table. Intersection of our rates and peer rates. */
4473 __u8 legacy_rates[12];
4474
4475 /* HT rate table. Intersection of our rates and peer rates. */
4476 __u8 ht_rates[16];
4477 __u8 pad[16];
4478
4479 /* If set, interoperability mode, no proprietary extensions. */
4480 __u8 interop;
4481 __u8 pad2;
4482 __u8 station_id;
4483 __le16 amsdu_enabled;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004484} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004485
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004486struct mwl8k_cmd_update_stadb {
4487 struct mwl8k_cmd_pkt header;
4488
4489 /* See STADB_ACTION_TYPE */
4490 __le32 action;
4491
4492 /* Peer MAC address */
4493 __u8 peer_addr[ETH_ALEN];
4494
4495 __le32 reserved;
4496
4497 /* Peer info - valid during add/update. */
4498 struct peer_capability_info peer_info;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004499} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004500
Lennert Buytenheka6804002010-01-04 21:55:42 +01004501#define MWL8K_STA_DB_MODIFY_ENTRY 1
4502#define MWL8K_STA_DB_DEL_ENTRY 2
4503
4504/* Peer Entry flags - used to define the type of the peer node */
4505#define MWL8K_PEER_TYPE_ACCESSPOINT 2
4506
4507static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw,
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004508 struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004509 struct ieee80211_sta *sta)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004510{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004511 struct mwl8k_cmd_update_stadb *cmd;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004512 struct peer_capability_info *p;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004513 u32 rates;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004514 int rc;
4515
4516 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4517 if (cmd == NULL)
4518 return -ENOMEM;
4519
4520 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4521 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka6804002010-01-04 21:55:42 +01004522 cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004523 memcpy(cmd->peer_addr, sta->addr, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004524
Lennert Buytenheka6804002010-01-04 21:55:42 +01004525 p = &cmd->peer_info;
4526 p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
4527 p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004528 p->ht_support = sta->ht_cap.ht_supported;
John W. Linvilleb6037422010-07-20 13:55:00 -04004529 p->ht_caps = cpu_to_le16(sta->ht_cap.cap);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004530 p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) |
4531 ((sta->ht_cap.ampdu_density & 7) << 2);
Karl Beldan675a0b02013-03-25 16:26:57 +01004532 if (hw->conf.chandef.chan->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004533 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
4534 else
4535 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4536 legacy_rate_mask_to_array(p->legacy_rates, rates);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004537 memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16);
Lennert Buytenheka6804002010-01-04 21:55:42 +01004538 p->interop = 1;
4539 p->amsdu_enabled = 0;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004540
Lennert Buytenheka6804002010-01-04 21:55:42 +01004541 rc = mwl8k_post_cmd(hw, &cmd->header);
Nickolai Zeldovichc4f74d32013-01-06 20:27:22 -05004542 if (!rc)
4543 rc = p->station_id;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004544 kfree(cmd);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004545
Nickolai Zeldovichc4f74d32013-01-06 20:27:22 -05004546 return rc;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004547}
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004548
Lennert Buytenheka6804002010-01-04 21:55:42 +01004549static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw,
4550 struct ieee80211_vif *vif, u8 *addr)
4551{
4552 struct mwl8k_cmd_update_stadb *cmd;
4553 int rc;
4554
4555 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4556 if (cmd == NULL)
4557 return -ENOMEM;
4558
4559 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4560 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4561 cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY);
4562 memcpy(cmd->peer_addr, addr, ETH_ALEN);
4563
4564 rc = mwl8k_post_cmd(hw, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004565 kfree(cmd);
4566
4567 return rc;
4568}
4569
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004570
4571/*
4572 * Interrupt handling.
4573 */
4574static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
4575{
4576 struct ieee80211_hw *hw = dev_id;
4577 struct mwl8k_priv *priv = hw->priv;
4578 u32 status;
4579
4580 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004581 if (!status)
4582 return IRQ_NONE;
4583
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004584 if (status & MWL8K_A2H_INT_TX_DONE) {
4585 status &= ~MWL8K_A2H_INT_TX_DONE;
4586 tasklet_schedule(&priv->poll_tx_task);
4587 }
4588
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004589 if (status & MWL8K_A2H_INT_RX_READY) {
4590 status &= ~MWL8K_A2H_INT_RX_READY;
4591 tasklet_schedule(&priv->poll_rx_task);
4592 }
4593
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004594 if (status & MWL8K_A2H_INT_BA_WATCHDOG) {
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05304595 iowrite32(~MWL8K_A2H_INT_BA_WATCHDOG,
4596 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
4597
4598 atomic_inc(&priv->watchdog_event_pending);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004599 status &= ~MWL8K_A2H_INT_BA_WATCHDOG;
4600 ieee80211_queue_work(hw, &priv->watchdog_ba_handle);
4601 }
4602
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004603 if (status)
4604 iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004605
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004606 if (status & MWL8K_A2H_INT_OPC_DONE) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004607 if (priv->hostcmd_wait != NULL)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004608 complete(priv->hostcmd_wait);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004609 }
4610
4611 if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004612 if (!mutex_is_locked(&priv->fw_mutex) &&
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02004613 priv->radio_on && priv->pending_tx_pkts)
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004614 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004615 }
4616
4617 return IRQ_HANDLED;
4618}
4619
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004620static void mwl8k_tx_poll(unsigned long data)
4621{
4622 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4623 struct mwl8k_priv *priv = hw->priv;
4624 int limit;
4625 int i;
4626
4627 limit = 32;
4628
4629 spin_lock_bh(&priv->tx_lock);
4630
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004631 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004632 limit -= mwl8k_txq_reclaim(hw, i, limit, 0);
4633
4634 if (!priv->pending_tx_pkts && priv->tx_wait != NULL) {
4635 complete(priv->tx_wait);
4636 priv->tx_wait = NULL;
4637 }
4638
4639 spin_unlock_bh(&priv->tx_lock);
4640
4641 if (limit) {
4642 writel(~MWL8K_A2H_INT_TX_DONE,
4643 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4644 } else {
4645 tasklet_schedule(&priv->poll_tx_task);
4646 }
4647}
4648
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004649static void mwl8k_rx_poll(unsigned long data)
4650{
4651 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4652 struct mwl8k_priv *priv = hw->priv;
4653 int limit;
4654
4655 limit = 32;
4656 limit -= rxq_process(hw, 0, limit);
4657 limit -= rxq_refill(hw, 0, limit);
4658
4659 if (limit) {
4660 writel(~MWL8K_A2H_INT_RX_READY,
4661 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4662 } else {
4663 tasklet_schedule(&priv->poll_rx_task);
4664 }
4665}
4666
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004667
4668/*
4669 * Core driver operations.
4670 */
Thomas Huehn36323f82012-07-23 21:33:42 +02004671static void mwl8k_tx(struct ieee80211_hw *hw,
4672 struct ieee80211_tx_control *control,
4673 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004674{
4675 struct mwl8k_priv *priv = hw->priv;
4676 int index = skb_get_queue_mapping(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004677
Lennert Buytenhek9189c102010-01-12 13:47:32 +01004678 if (!priv->radio_on) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004679 wiphy_debug(hw->wiphy,
4680 "dropped TX frame since radio disabled\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004681 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01004682 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004683 }
4684
Thomas Huehn36323f82012-07-23 21:33:42 +02004685 mwl8k_txq_xmit(hw, index, control->sta, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004686}
4687
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004688static int mwl8k_start(struct ieee80211_hw *hw)
4689{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004690 struct mwl8k_priv *priv = hw->priv;
4691 int rc;
4692
Joe Perchesa0607fd2009-11-18 23:29:17 -08004693 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004694 IRQF_SHARED, MWL8K_NAME, hw);
4695 if (rc) {
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304696 priv->irq = -1;
Joe Perches5db55842010-08-11 19:11:19 -07004697 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004698 return -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004699 }
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304700 priv->irq = priv->pdev->irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004701
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004702 /* Enable TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004703 tasklet_enable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004704 tasklet_enable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004705
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004706 /* Enable interrupts */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02004707 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05304708 iowrite32(MWL8K_A2H_EVENTS,
4709 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004710
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004711 rc = mwl8k_fw_lock(hw);
4712 if (!rc) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004713 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004714
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004715 if (!priv->ap_fw) {
4716 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004717 rc = mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004718
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004719 if (!rc)
4720 rc = mwl8k_cmd_set_pre_scan(hw);
4721
4722 if (!rc)
4723 rc = mwl8k_cmd_set_post_scan(hw,
4724 "\x00\x00\x00\x00\x00\x00");
4725 }
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004726
4727 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004728 rc = mwl8k_cmd_set_rateadapt_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004729
4730 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004731 rc = mwl8k_cmd_set_wmm_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004732
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004733 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004734 }
4735
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004736 if (rc) {
4737 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
4738 free_irq(priv->pdev->irq, hw);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304739 priv->irq = -1;
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004740 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004741 tasklet_disable(&priv->poll_rx_task);
Nishant Sarmukadam4850b6d2013-01-08 12:10:53 +05304742 } else {
4743 ieee80211_wake_queues(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004744 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004745
4746 return rc;
4747}
4748
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004749static void mwl8k_stop(struct ieee80211_hw *hw)
4750{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004751 struct mwl8k_priv *priv = hw->priv;
4752 int i;
4753
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304754 if (!priv->hw_restart_in_progress)
4755 mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004756
4757 ieee80211_stop_queues(hw);
4758
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004759 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004760 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304761 if (priv->irq != -1) {
4762 free_irq(priv->pdev->irq, hw);
4763 priv->irq = -1;
4764 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004765
4766 /* Stop finalize join worker */
4767 cancel_work_sync(&priv->finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004768 cancel_work_sync(&priv->watchdog_ba_handle);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004769 if (priv->beacon_skb != NULL)
4770 dev_kfree_skb(priv->beacon_skb);
4771
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004772 /* Stop TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004773 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004774 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004775
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004776 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004777 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01004778 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004779}
4780
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004781static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image);
4782
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004783static int mwl8k_add_interface(struct ieee80211_hw *hw,
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004784 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004785{
4786 struct mwl8k_priv *priv = hw->priv;
4787 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004788 u32 macids_supported;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004789 int macid, rc;
4790 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004791
4792 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004793 * Reject interface creation if sniffer mode is active, as
4794 * STA operation is mutually exclusive with hardware sniffer
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004795 * mode. (Sniffer mode is only used on STA firmware.)
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004796 */
4797 if (priv->sniffer_enabled) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004798 wiphy_info(hw->wiphy,
4799 "unable to create STA interface because sniffer mode is enabled\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004800 return -EINVAL;
4801 }
4802
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004803 di = priv->device_info;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004804 switch (vif->type) {
4805 case NL80211_IFTYPE_AP:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004806 if (!priv->ap_fw && di->fw_image_ap) {
4807 /* we must load the ap fw to meet this request */
4808 if (!list_empty(&priv->vif_list))
4809 return -EBUSY;
4810 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4811 if (rc)
4812 return rc;
4813 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004814 macids_supported = priv->ap_macids_supported;
4815 break;
4816 case NL80211_IFTYPE_STATION:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004817 if (priv->ap_fw && di->fw_image_sta) {
Yogesh Ashok Poward59c1cf2013-01-25 16:20:03 +05304818 if (!list_empty(&priv->vif_list)) {
4819 wiphy_warn(hw->wiphy, "AP interface is running.\n"
4820 "Adding STA interface for WDS");
4821 } else {
4822 /* we must load the sta fw to
4823 * meet this request.
4824 */
4825 rc = mwl8k_reload_firmware(hw,
4826 di->fw_image_sta);
4827 if (rc)
4828 return rc;
4829 }
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004830 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004831 macids_supported = priv->sta_macids_supported;
4832 break;
4833 default:
4834 return -EINVAL;
4835 }
4836
4837 macid = ffs(macids_supported & ~priv->macids_used);
4838 if (!macid--)
4839 return -EBUSY;
4840
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004841 /* Setup driver private area. */
Johannes Berg1ed32e42009-12-23 13:15:45 +01004842 mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004843 memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004844 mwl8k_vif->vif = vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004845 mwl8k_vif->macid = macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004846 mwl8k_vif->seqno = 0;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004847 memcpy(mwl8k_vif->bssid, vif->addr, ETH_ALEN);
4848 mwl8k_vif->is_hw_crypto_enabled = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004849
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004850 /* Set the mac address. */
4851 mwl8k_cmd_set_mac_addr(hw, vif, vif->addr);
4852
Yogesh Ashok Poward994a1c2013-01-25 16:20:35 +05304853 if (vif->type == NL80211_IFTYPE_AP)
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004854 mwl8k_cmd_set_new_stn_add_self(hw, vif);
4855
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004856 priv->macids_used |= 1 << mwl8k_vif->macid;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004857 list_add_tail(&mwl8k_vif->list, &priv->vif_list);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004858
4859 return 0;
4860}
4861
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304862static void mwl8k_remove_vif(struct mwl8k_priv *priv, struct mwl8k_vif *vif)
4863{
4864 /* Has ieee80211_restart_hw re-added the removed interfaces? */
4865 if (!priv->macids_used)
4866 return;
4867
4868 priv->macids_used &= ~(1 << vif->macid);
4869 list_del(&vif->list);
4870}
4871
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004872static void mwl8k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004873 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004874{
4875 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004876 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004877
Yogesh Ashok Poward994a1c2013-01-25 16:20:35 +05304878 if (vif->type == NL80211_IFTYPE_AP)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004879 mwl8k_cmd_set_new_stn_del(hw, vif, vif->addr);
4880
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05304881 mwl8k_cmd_del_mac_addr(hw, vif, vif->addr);
Lennert Buytenhek32060e12009-10-22 20:20:04 +02004882
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304883 mwl8k_remove_vif(priv, mwl8k_vif);
4884}
4885
4886static void mwl8k_hw_restart_work(struct work_struct *work)
4887{
4888 struct mwl8k_priv *priv =
4889 container_of(work, struct mwl8k_priv, fw_reload);
4890 struct ieee80211_hw *hw = priv->hw;
4891 struct mwl8k_device_info *di;
4892 int rc;
4893
4894 /* If some command is waiting for a response, clear it */
4895 if (priv->hostcmd_wait != NULL) {
4896 complete(priv->hostcmd_wait);
4897 priv->hostcmd_wait = NULL;
4898 }
4899
4900 priv->hw_restart_owner = current;
4901 di = priv->device_info;
4902 mwl8k_fw_lock(hw);
4903
4904 if (priv->ap_fw)
4905 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4906 else
4907 rc = mwl8k_reload_firmware(hw, di->fw_image_sta);
4908
4909 if (rc)
4910 goto fail;
4911
4912 priv->hw_restart_owner = NULL;
4913 priv->hw_restart_in_progress = false;
4914
4915 /*
4916 * This unlock will wake up the queues and
4917 * also opens the command path for other
4918 * commands
4919 */
4920 mwl8k_fw_unlock(hw);
4921
4922 ieee80211_restart_hw(hw);
4923
4924 wiphy_err(hw->wiphy, "Firmware restarted successfully\n");
4925
4926 return;
4927fail:
4928 mwl8k_fw_unlock(hw);
4929
4930 wiphy_err(hw->wiphy, "Firmware restart failed\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004931}
4932
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004933static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004934{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004935 struct ieee80211_conf *conf = &hw->conf;
4936 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004937 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004938
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004939 rc = mwl8k_fw_lock(hw);
4940 if (rc)
4941 return rc;
4942
Jonas Gorskife21bb022013-03-25 16:39:54 +01004943 if (conf->flags & IEEE80211_CONF_IDLE)
4944 rc = mwl8k_cmd_radio_disable(hw);
4945 else
4946 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004947 if (rc)
4948 goto out;
4949
Yogesh Ashok Powar0f4316b2013-01-25 16:17:45 +05304950 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
4951 rc = mwl8k_cmd_set_rf_channel(hw, conf);
4952 if (rc)
4953 goto out;
4954 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004955
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004956 if (conf->power_level > 18)
4957 conf->power_level = 18;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004958
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004959 if (priv->ap_fw) {
Nishant Sarmukadam03217082011-04-05 14:18:09 +05304960
4961 if (conf->flags & IEEE80211_CONF_CHANGE_POWER) {
4962 rc = mwl8k_cmd_tx_power(hw, conf, conf->power_level);
4963 if (rc)
4964 goto out;
4965 }
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004966
Nishant Sarmukadamda62b762011-02-17 14:45:16 -08004967
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004968 } else {
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004969 rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level);
4970 if (rc)
4971 goto out;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004972 rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7);
4973 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004974
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004975out:
4976 mwl8k_fw_unlock(hw);
4977
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004978 return rc;
4979}
4980
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004981static void
4982mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4983 struct ieee80211_bss_conf *info, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004984{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004985 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304986 u32 ap_legacy_rates = 0;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004987 u8 ap_mcs_rates[16];
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004988 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004989
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004990 if (mwl8k_fw_lock(hw))
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004991 return;
4992
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004993 /*
4994 * No need to capture a beacon if we're no longer associated.
4995 */
4996 if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc)
4997 priv->capture_beacon = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004998
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004999 /*
Lennert Buytenhek13935e22010-01-04 21:57:59 +01005000 * Get the AP's legacy and MCS rates.
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01005001 */
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01005002 if (vif->bss_conf.assoc) {
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01005003 struct ieee80211_sta *ap;
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01005004
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01005005 rcu_read_lock();
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01005006
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01005007 ap = ieee80211_find_sta(vif, vif->bss_conf.bssid);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01005008 if (ap == NULL) {
5009 rcu_read_unlock();
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01005010 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01005011 }
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01005012
Karl Beldan675a0b02013-03-25 16:26:57 +01005013 if (hw->conf.chandef.chan->band == IEEE80211_BAND_2GHZ) {
Lennert Buytenhek8707d022010-01-12 13:49:15 +01005014 ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ];
5015 } else {
5016 ap_legacy_rates =
5017 ap->supp_rates[IEEE80211_BAND_5GHZ] << 5;
5018 }
Lennert Buytenhek13935e22010-01-04 21:57:59 +01005019 memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01005020
5021 rcu_read_unlock();
5022 }
5023
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05305024 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc &&
5025 !priv->ap_fw) {
Lennert Buytenhek13935e22010-01-04 21:57:59 +01005026 rc = mwl8k_cmd_set_rate(hw, vif, ap_legacy_rates, ap_mcs_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02005027 if (rc)
5028 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005029
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01005030 rc = mwl8k_cmd_use_fixed_rate_sta(hw);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02005031 if (rc)
5032 goto out;
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05305033 } else {
5034 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc &&
5035 priv->ap_fw) {
5036 int idx;
5037 int rate;
5038
5039 /* Use AP firmware specific rate command.
5040 */
5041 idx = ffs(vif->bss_conf.basic_rates);
5042 if (idx)
5043 idx--;
5044
Karl Beldan675a0b02013-03-25 16:26:57 +01005045 if (hw->conf.chandef.chan->band == IEEE80211_BAND_2GHZ)
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05305046 rate = mwl8k_rates_24[idx].hw_value;
5047 else
5048 rate = mwl8k_rates_50[idx].hw_value;
5049
5050 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
5051 }
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01005052 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005053
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01005054 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01005055 rc = mwl8k_set_radio_preamble(hw,
5056 vif->bss_conf.use_short_preamble);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02005057 if (rc)
5058 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01005059 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005060
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05305061 if ((changed & BSS_CHANGED_ERP_SLOT) && !priv->ap_fw) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01005062 rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02005063 if (rc)
5064 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01005065 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005066
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05305067 if (vif->bss_conf.assoc && !priv->ap_fw &&
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01005068 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_ERP_CTS_PROT |
5069 BSS_CHANGED_HT))) {
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01005070 rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02005071 if (rc)
5072 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01005073 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005074
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01005075 if (vif->bss_conf.assoc &&
5076 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005077 /*
5078 * Finalize the join. Tell rx handler to process
5079 * next beacon from our BSSID.
5080 */
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01005081 memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005082 priv->capture_beacon = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005083 }
5084
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02005085out:
5086 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005087}
5088
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005089static void
5090mwl8k_bss_info_changed_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5091 struct ieee80211_bss_conf *info, u32 changed)
5092{
5093 int rc;
5094
5095 if (mwl8k_fw_lock(hw))
5096 return;
5097
5098 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
5099 rc = mwl8k_set_radio_preamble(hw,
5100 vif->bss_conf.use_short_preamble);
5101 if (rc)
5102 goto out;
5103 }
5104
5105 if (changed & BSS_CHANGED_BASIC_RATES) {
5106 int idx;
5107 int rate;
5108
5109 /*
5110 * Use lowest supported basic rate for multicasts
5111 * and management frames (such as probe responses --
5112 * beacons will always go out at 1 Mb/s).
5113 */
5114 idx = ffs(vif->bss_conf.basic_rates);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01005115 if (idx)
5116 idx--;
5117
Karl Beldan675a0b02013-03-25 16:26:57 +01005118 if (hw->conf.chandef.chan->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek8707d022010-01-12 13:49:15 +01005119 rate = mwl8k_rates_24[idx].hw_value;
5120 else
5121 rate = mwl8k_rates_50[idx].hw_value;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005122
5123 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
5124 }
5125
5126 if (changed & (BSS_CHANGED_BEACON_INT | BSS_CHANGED_BEACON)) {
5127 struct sk_buff *skb;
5128
5129 skb = ieee80211_beacon_get(hw, vif);
5130 if (skb != NULL) {
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01005131 mwl8k_cmd_set_beacon(hw, vif, skb->data, skb->len);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005132 kfree_skb(skb);
5133 }
5134 }
5135
5136 if (changed & BSS_CHANGED_BEACON_ENABLED)
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01005137 mwl8k_cmd_bss_start(hw, vif, info->enable_beacon);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005138
5139out:
5140 mwl8k_fw_unlock(hw);
5141}
5142
5143static void
5144mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5145 struct ieee80211_bss_conf *info, u32 changed)
5146{
Yogesh Ashok Powar41bf9112013-01-25 16:20:42 +05305147 if (vif->type == NL80211_IFTYPE_STATION)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005148 mwl8k_bss_info_changed_sta(hw, vif, info, changed);
Yogesh Ashok Powar41bf9112013-01-25 16:20:42 +05305149 if (vif->type == NL80211_IFTYPE_AP)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005150 mwl8k_bss_info_changed_ap(hw, vif, info, changed);
5151}
5152
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02005153static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw,
Jiri Pirko22bedad32010-04-01 21:22:57 +00005154 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02005155{
5156 struct mwl8k_cmd_pkt *cmd;
5157
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005158 /*
5159 * Synthesize and return a command packet that programs the
5160 * hardware multicast address filter. At this point we don't
5161 * know whether FIF_ALLMULTI is being requested, but if it is,
5162 * we'll end up throwing this packet away and creating a new
5163 * one in mwl8k_configure_filter().
5164 */
Jiri Pirko22bedad32010-04-01 21:22:57 +00005165 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_list);
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02005166
5167 return (unsigned long)cmd;
5168}
5169
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005170static int
5171mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw,
5172 unsigned int changed_flags,
5173 unsigned int *total_flags)
5174{
5175 struct mwl8k_priv *priv = hw->priv;
5176
5177 /*
5178 * Hardware sniffer mode is mutually exclusive with STA
5179 * operation, so refuse to enable sniffer mode if a STA
5180 * interface is active.
5181 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005182 if (!list_empty(&priv->vif_list)) {
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005183 if (net_ratelimit())
Joe Perchesc96c31e2010-07-26 14:39:58 -07005184 wiphy_info(hw->wiphy,
5185 "not enabling sniffer mode because STA interface is active\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005186 return 0;
5187 }
5188
5189 if (!priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005190 if (mwl8k_cmd_enable_sniffer(hw, 1))
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005191 return 0;
5192 priv->sniffer_enabled = true;
5193 }
5194
5195 *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI |
5196 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL |
5197 FIF_OTHER_BSS;
5198
5199 return 1;
5200}
5201
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005202static struct mwl8k_vif *mwl8k_first_vif(struct mwl8k_priv *priv)
5203{
5204 if (!list_empty(&priv->vif_list))
5205 return list_entry(priv->vif_list.next, struct mwl8k_vif, list);
5206
5207 return NULL;
5208}
5209
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005210static void mwl8k_configure_filter(struct ieee80211_hw *hw,
5211 unsigned int changed_flags,
5212 unsigned int *total_flags,
5213 u64 multicast)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005214{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005215 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005216 struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast;
5217
5218 /*
Lennert Buytenhekc0adae22009-10-22 20:21:36 +02005219 * AP firmware doesn't allow fine-grained control over
5220 * the receive filter.
5221 */
5222 if (priv->ap_fw) {
5223 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
5224 kfree(cmd);
5225 return;
5226 }
5227
5228 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005229 * Enable hardware sniffer mode if FIF_CONTROL or
5230 * FIF_OTHER_BSS is requested.
5231 */
5232 if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) &&
5233 mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) {
5234 kfree(cmd);
5235 return;
5236 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005237
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005238 /* Clear unsupported feature flags */
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005239 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005240
Lennert Buytenhek90852f72010-01-02 10:31:42 +01005241 if (mwl8k_fw_lock(hw)) {
5242 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005243 return;
Lennert Buytenhek90852f72010-01-02 10:31:42 +01005244 }
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005245
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005246 if (priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005247 mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005248 priv->sniffer_enabled = false;
5249 }
5250
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005251 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005252 if (*total_flags & FIF_BCN_PRBRESP_PROMISC) {
5253 /*
5254 * Disable the BSS filter.
5255 */
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005256 mwl8k_cmd_set_pre_scan(hw);
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005257 } else {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005258 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01005259 const u8 *bssid;
Lennert Buytenheka94cc972009-08-03 21:58:57 +02005260
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005261 /*
5262 * Enable the BSS filter.
5263 *
5264 * If there is an active STA interface, use that
5265 * interface's BSSID, otherwise use a dummy one
5266 * (where the OUI part needs to be nonzero for
5267 * the BSSID to be accepted by POST_SCAN).
5268 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005269 mwl8k_vif = mwl8k_first_vif(priv);
5270 if (mwl8k_vif != NULL)
5271 bssid = mwl8k_vif->vif->bss_conf.bssid;
5272 else
5273 bssid = "\x01\x00\x00\x00\x00\x00";
Lennert Buytenheka94cc972009-08-03 21:58:57 +02005274
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005275 mwl8k_cmd_set_post_scan(hw, bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005276 }
5277 }
5278
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005279 /*
5280 * If FIF_ALLMULTI is being requested, throw away the command
5281 * packet that ->prepare_multicast() built and replace it with
5282 * a command packet that enables reception of all multicast
5283 * packets.
5284 */
5285 if (*total_flags & FIF_ALLMULTI) {
5286 kfree(cmd);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005287 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, NULL);
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005288 }
5289
5290 if (cmd != NULL) {
5291 mwl8k_post_cmd(hw, cmd);
5292 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005293 }
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02005294
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005295 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005296}
5297
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005298static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
5299{
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01005300 return mwl8k_cmd_set_rts_threshold(hw, value);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005301}
5302
Johannes Berg4a6967b2010-02-19 19:18:37 +01005303static int mwl8k_sta_remove(struct ieee80211_hw *hw,
5304 struct ieee80211_vif *vif,
5305 struct ieee80211_sta *sta)
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005306{
5307 struct mwl8k_priv *priv = hw->priv;
5308
Johannes Berg4a6967b2010-02-19 19:18:37 +01005309 if (priv->ap_fw)
5310 return mwl8k_cmd_set_new_stn_del(hw, vif, sta->addr);
5311 else
5312 return mwl8k_cmd_update_stadb_del(hw, vif, sta->addr);
5313}
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005314
Johannes Berg4a6967b2010-02-19 19:18:37 +01005315static int mwl8k_sta_add(struct ieee80211_hw *hw,
5316 struct ieee80211_vif *vif,
5317 struct ieee80211_sta *sta)
5318{
5319 struct mwl8k_priv *priv = hw->priv;
5320 int ret;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005321 int i;
5322 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
5323 struct ieee80211_key_conf *key;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005324
Johannes Berg4a6967b2010-02-19 19:18:37 +01005325 if (!priv->ap_fw) {
5326 ret = mwl8k_cmd_update_stadb_add(hw, vif, sta);
5327 if (ret >= 0) {
5328 MWL8K_STA(sta)->peer_id = ret;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07005329 if (sta->ht_cap.ht_supported)
5330 MWL8K_STA(sta)->is_ampdu_allowed = true;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005331 ret = 0;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005332 }
Johannes Berg4a6967b2010-02-19 19:18:37 +01005333
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08005334 } else {
5335 ret = mwl8k_cmd_set_new_stn_add(hw, vif, sta);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005336 }
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005337
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08005338 for (i = 0; i < NUM_WEP_KEYS; i++) {
5339 key = IEEE80211_KEY_CONF(mwl8k_vif->wep_key_conf[i].key);
5340 if (mwl8k_vif->wep_key_conf[i].enabled)
5341 mwl8k_set_key(hw, SET_KEY, vif, sta, key);
5342 }
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005343 return ret;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01005344}
5345
Eliad Peller8a3a3c82011-10-02 10:15:52 +02005346static int mwl8k_conf_tx(struct ieee80211_hw *hw,
5347 struct ieee80211_vif *vif, u16 queue,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005348 const struct ieee80211_tx_queue_params *params)
5349{
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005350 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005351 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005352
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005353 rc = mwl8k_fw_lock(hw);
5354 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005355 BUG_ON(queue > MWL8K_TX_WMM_QUEUES - 1);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005356 memcpy(&priv->wmm_params[queue], params, sizeof(*params));
5357
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005358 if (!priv->wmm_enabled)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005359 rc = mwl8k_cmd_set_wmm_mode(hw, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005360
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005361 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005362 int q = MWL8K_TX_WMM_QUEUES - 1 - queue;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005363 rc = mwl8k_cmd_set_edca_params(hw, q,
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005364 params->cw_min,
5365 params->cw_max,
5366 params->aifs,
5367 params->txop);
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005368 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005369
5370 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005371 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005372
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005373 return rc;
5374}
5375
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005376static int mwl8k_get_stats(struct ieee80211_hw *hw,
5377 struct ieee80211_low_level_stats *stats)
5378{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005379 return mwl8k_cmd_get_stat(hw, stats);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005380}
5381
John W. Linville0d462bb2010-07-28 14:04:24 -04005382static int mwl8k_get_survey(struct ieee80211_hw *hw, int idx,
5383 struct survey_info *survey)
5384{
5385 struct mwl8k_priv *priv = hw->priv;
5386 struct ieee80211_conf *conf = &hw->conf;
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05305387 struct ieee80211_supported_band *sband;
5388
5389 if (priv->ap_fw) {
5390 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
5391
5392 if (sband && idx >= sband->n_channels) {
5393 idx -= sband->n_channels;
5394 sband = NULL;
5395 }
5396
5397 if (!sband)
5398 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
5399
5400 if (!sband || idx >= sband->n_channels)
5401 return -ENOENT;
5402
5403 memcpy(survey, &priv->survey[idx], sizeof(*survey));
5404 survey->channel = &sband->channels[idx];
5405
5406 return 0;
5407 }
John W. Linville0d462bb2010-07-28 14:04:24 -04005408
5409 if (idx != 0)
5410 return -ENOENT;
5411
Karl Beldan675a0b02013-03-25 16:26:57 +01005412 survey->channel = conf->chandef.chan;
John W. Linville0d462bb2010-07-28 14:04:24 -04005413 survey->filled = SURVEY_INFO_NOISE_DBM;
5414 survey->noise = priv->noise;
5415
5416 return 0;
5417}
5418
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005419#define MAX_AMPDU_ATTEMPTS 5
5420
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005421static int
5422mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5423 enum ieee80211_ampdu_mlme_action action,
Johannes Berg0b01f032011-01-18 13:51:05 +01005424 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
5425 u8 buf_size)
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005426{
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005427
5428 int i, rc = 0;
5429 struct mwl8k_priv *priv = hw->priv;
5430 struct mwl8k_ampdu_stream *stream;
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305431 u8 *addr = sta->addr, idx;
Yogesh Ashok Powarfd712f52012-11-06 19:22:35 +05305432 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005433
5434 if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
5435 return -ENOTSUPP;
5436
5437 spin_lock(&priv->stream_lock);
5438 stream = mwl8k_lookup_stream(hw, addr, tid);
5439
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005440 switch (action) {
5441 case IEEE80211_AMPDU_RX_START:
5442 case IEEE80211_AMPDU_RX_STOP:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005443 break;
5444 case IEEE80211_AMPDU_TX_START:
5445 /* By the time we get here the hw queues may contain outgoing
5446 * packets for this RA/TID that are not part of this BA
5447 * session. The hw will assign sequence numbers to these
5448 * packets as they go out. So if we query the hw for its next
5449 * sequence number and use that for the SSN here, it may end up
5450 * being wrong, which will lead to sequence number mismatch at
5451 * the recipient. To avoid this, we reset the sequence number
5452 * to O for the first MPDU in this BA stream.
5453 */
5454 *ssn = 0;
5455 if (stream == NULL) {
5456 /* This means that somebody outside this driver called
5457 * ieee80211_start_tx_ba_session. This is unexpected
5458 * because we do our own rate control. Just warn and
5459 * move on.
5460 */
5461 wiphy_warn(hw->wiphy, "Unexpected call to %s. "
5462 "Proceeding anyway.\n", __func__);
5463 stream = mwl8k_add_stream(hw, sta, tid);
5464 }
5465 if (stream == NULL) {
5466 wiphy_debug(hw->wiphy, "no free AMPDU streams\n");
5467 rc = -EBUSY;
5468 break;
5469 }
5470 stream->state = AMPDU_STREAM_IN_PROGRESS;
5471
5472 /* Release the lock before we do the time consuming stuff */
5473 spin_unlock(&priv->stream_lock);
5474 for (i = 0; i < MAX_AMPDU_ATTEMPTS; i++) {
Yogesh Ashok Powarfd712f52012-11-06 19:22:35 +05305475
5476 /* Check if link is still valid */
5477 if (!sta_info->is_ampdu_allowed) {
5478 spin_lock(&priv->stream_lock);
5479 mwl8k_remove_stream(hw, stream);
5480 spin_unlock(&priv->stream_lock);
5481 return -EBUSY;
5482 }
5483
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05305484 rc = mwl8k_check_ba(hw, stream, vif);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005485
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305486 /* If HW restart is in progress mwl8k_post_cmd will
5487 * return -EBUSY. Avoid retrying mwl8k_check_ba in
5488 * such cases
5489 */
5490 if (!rc || rc == -EBUSY)
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005491 break;
5492 /*
5493 * HW queues take time to be flushed, give them
5494 * sufficient time
5495 */
5496
5497 msleep(1000);
5498 }
5499 spin_lock(&priv->stream_lock);
5500 if (rc) {
5501 wiphy_err(hw->wiphy, "Stream for tid %d busy after %d"
5502 " attempts\n", tid, MAX_AMPDU_ATTEMPTS);
5503 mwl8k_remove_stream(hw, stream);
5504 rc = -EBUSY;
5505 break;
5506 }
5507 ieee80211_start_tx_ba_cb_irqsafe(vif, addr, tid);
5508 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02005509 case IEEE80211_AMPDU_TX_STOP_CONT:
5510 case IEEE80211_AMPDU_TX_STOP_FLUSH:
5511 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305512 if (stream) {
5513 if (stream->state == AMPDU_STREAM_ACTIVE) {
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305514 idx = stream->idx;
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305515 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305516 mwl8k_destroy_ba(hw, idx);
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305517 spin_lock(&priv->stream_lock);
5518 }
5519 mwl8k_remove_stream(hw, stream);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005520 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005521 ieee80211_stop_tx_ba_cb_irqsafe(vif, addr, tid);
5522 break;
5523 case IEEE80211_AMPDU_TX_OPERATIONAL:
5524 BUG_ON(stream == NULL);
5525 BUG_ON(stream->state != AMPDU_STREAM_IN_PROGRESS);
5526 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05305527 rc = mwl8k_create_ba(hw, stream, buf_size, vif);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005528 spin_lock(&priv->stream_lock);
5529 if (!rc)
5530 stream->state = AMPDU_STREAM_ACTIVE;
5531 else {
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305532 idx = stream->idx;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005533 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305534 mwl8k_destroy_ba(hw, idx);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005535 spin_lock(&priv->stream_lock);
5536 wiphy_debug(hw->wiphy,
5537 "Failed adding stream for sta %pM tid %d\n",
5538 addr, tid);
5539 mwl8k_remove_stream(hw, stream);
5540 }
5541 break;
5542
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005543 default:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005544 rc = -ENOTSUPP;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005545 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005546
5547 spin_unlock(&priv->stream_lock);
5548 return rc;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005549}
5550
Johannes Berga344d672014-06-12 22:24:31 +02005551static void mwl8k_sw_scan_start(struct ieee80211_hw *hw,
5552 struct ieee80211_vif *vif,
5553 const u8 *mac_addr)
Yogesh Ashok Powar4c924f42014-02-25 17:42:09 +05305554{
5555 struct mwl8k_priv *priv = hw->priv;
5556 u8 tmp;
5557
5558 if (!priv->ap_fw)
5559 return;
5560
5561 /* clear all stats */
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05305562 priv->channel_time = 0;
Yogesh Ashok Powar4c924f42014-02-25 17:42:09 +05305563 ioread32(priv->regs + BBU_RXRDY_CNT_REG);
5564 ioread32(priv->regs + NOK_CCA_CNT_REG);
5565 mwl8k_cmd_bbp_reg_access(priv->hw, 0, BBU_AVG_NOISE_VAL, &tmp);
5566
5567 priv->sw_scan_start = true;
5568}
5569
Johannes Berga344d672014-06-12 22:24:31 +02005570static void mwl8k_sw_scan_complete(struct ieee80211_hw *hw,
5571 struct ieee80211_vif *vif)
Yogesh Ashok Powar4c924f42014-02-25 17:42:09 +05305572{
5573 struct mwl8k_priv *priv = hw->priv;
5574 u8 tmp;
5575
5576 if (!priv->ap_fw)
5577 return;
5578
5579 priv->sw_scan_start = false;
5580
5581 /* clear all stats */
Yogesh Ashok Powar031eb462014-02-25 17:42:18 +05305582 priv->channel_time = 0;
Yogesh Ashok Powar4c924f42014-02-25 17:42:09 +05305583 ioread32(priv->regs + BBU_RXRDY_CNT_REG);
5584 ioread32(priv->regs + NOK_CCA_CNT_REG);
5585 mwl8k_cmd_bbp_reg_access(priv->hw, 0, BBU_AVG_NOISE_VAL, &tmp);
5586}
5587
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005588static const struct ieee80211_ops mwl8k_ops = {
5589 .tx = mwl8k_tx,
5590 .start = mwl8k_start,
5591 .stop = mwl8k_stop,
5592 .add_interface = mwl8k_add_interface,
5593 .remove_interface = mwl8k_remove_interface,
5594 .config = mwl8k_config,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005595 .bss_info_changed = mwl8k_bss_info_changed,
Johannes Berg3ac64be2009-08-17 16:16:53 +02005596 .prepare_multicast = mwl8k_prepare_multicast,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005597 .configure_filter = mwl8k_configure_filter,
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005598 .set_key = mwl8k_set_key,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005599 .set_rts_threshold = mwl8k_set_rts_threshold,
Johannes Berg4a6967b2010-02-19 19:18:37 +01005600 .sta_add = mwl8k_sta_add,
5601 .sta_remove = mwl8k_sta_remove,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005602 .conf_tx = mwl8k_conf_tx,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005603 .get_stats = mwl8k_get_stats,
John W. Linville0d462bb2010-07-28 14:04:24 -04005604 .get_survey = mwl8k_get_survey,
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005605 .ampdu_action = mwl8k_ampdu_action,
Yogesh Ashok Powar4c924f42014-02-25 17:42:09 +05305606 .sw_scan_start = mwl8k_sw_scan_start,
5607 .sw_scan_complete = mwl8k_sw_scan_complete,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005608};
5609
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005610static void mwl8k_finalize_join_worker(struct work_struct *work)
5611{
5612 struct mwl8k_priv *priv =
5613 container_of(work, struct mwl8k_priv, finalize_join_worker);
5614 struct sk_buff *skb = priv->beacon_skb;
Johannes Berg56007a02010-01-26 14:19:52 +01005615 struct ieee80211_mgmt *mgmt = (void *)skb->data;
5616 int len = skb->len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
5617 const u8 *tim = cfg80211_find_ie(WLAN_EID_TIM,
5618 mgmt->u.beacon.variable, len);
5619 int dtim_period = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005620
Johannes Berg56007a02010-01-26 14:19:52 +01005621 if (tim && tim[1] >= 2)
5622 dtim_period = tim[3];
5623
5624 mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len, dtim_period);
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005625
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005626 dev_kfree_skb(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005627 priv->beacon_skb = NULL;
5628}
5629
John W. Linvillebcb628d2009-11-06 16:40:16 -05005630enum {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005631 MWL8363 = 0,
5632 MWL8687,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005633 MWL8366,
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +05305634 MWL8764,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02005635};
5636
Yogesh Ashok Powarc2f2e202013-01-03 13:24:44 +05305637#define MWL8K_8366_AP_FW_API 3
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005638#define _MWL8K_8366_AP_FW(api) "mwl8k/fmimage_8366_ap-" #api ".fw"
5639#define MWL8K_8366_AP_FW(api) _MWL8K_8366_AP_FW(api)
5640
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +05305641#define MWL8K_8764_AP_FW_API 1
5642#define _MWL8K_8764_AP_FW(api) "mwl8k/fmimage_8764_ap-" #api ".fw"
5643#define MWL8K_8764_AP_FW(api) _MWL8K_8764_AP_FW(api)
5644
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05005645static struct mwl8k_device_info mwl8k_info_tbl[] = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005646 [MWL8363] = {
5647 .part_name = "88w8363",
5648 .helper_image = "mwl8k/helper_8363.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005649 .fw_image_sta = "mwl8k/fmimage_8363.fw",
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005650 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005651 [MWL8687] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005652 .part_name = "88w8687",
5653 .helper_image = "mwl8k/helper_8687.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005654 .fw_image_sta = "mwl8k/fmimage_8687.fw",
John W. Linvillebcb628d2009-11-06 16:40:16 -05005655 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005656 [MWL8366] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005657 .part_name = "88w8366",
5658 .helper_image = "mwl8k/helper_8366.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005659 .fw_image_sta = "mwl8k/fmimage_8366.fw",
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005660 .fw_image_ap = MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API),
5661 .fw_api_ap = MWL8K_8366_AP_FW_API,
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +05305662 .ap_rxd_ops = &rxd_ap_ops,
5663 },
5664 [MWL8764] = {
5665 .part_name = "88w8764",
5666 .fw_image_ap = MWL8K_8764_AP_FW(MWL8K_8764_AP_FW_API),
5667 .fw_api_ap = MWL8K_8764_AP_FW_API,
5668 .ap_rxd_ops = &rxd_ap_ops,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005669 },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005670};
5671
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005672MODULE_FIRMWARE("mwl8k/helper_8363.fw");
5673MODULE_FIRMWARE("mwl8k/fmimage_8363.fw");
5674MODULE_FIRMWARE("mwl8k/helper_8687.fw");
5675MODULE_FIRMWARE("mwl8k/fmimage_8687.fw");
5676MODULE_FIRMWARE("mwl8k/helper_8366.fw");
5677MODULE_FIRMWARE("mwl8k/fmimage_8366.fw");
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005678MODULE_FIRMWARE(MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API));
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005679
Benoit Taine9baa3c32014-08-08 15:56:03 +02005680static const struct pci_device_id mwl8k_pci_id_table[] = {
Benjamin Larssone5868ba2010-03-19 01:46:10 +01005681 { PCI_VDEVICE(MARVELL, 0x2a0a), .driver_data = MWL8363, },
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005682 { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, },
5683 { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005684 { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, },
5685 { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, },
5686 { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, },
Jonas Gorskifc5bc162013-02-05 16:59:17 +01005687 { PCI_VDEVICE(MARVELL, 0x2a41), .driver_data = MWL8366, },
5688 { PCI_VDEVICE(MARVELL, 0x2a42), .driver_data = MWL8366, },
Lennert Buytenhekca665272010-01-12 13:47:53 +01005689 { PCI_VDEVICE(MARVELL, 0x2a43), .driver_data = MWL8366, },
Nishant Sarmukadamd926dc72013-03-01 17:12:45 +05305690 { PCI_VDEVICE(MARVELL, 0x2b36), .driver_data = MWL8764, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005691 { },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005692};
5693MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table);
5694
Brian Cavagnolo99020472010-11-12 17:23:52 -08005695static int mwl8k_request_alt_fw(struct mwl8k_priv *priv)
5696{
5697 int rc;
5698 printk(KERN_ERR "%s: Error requesting preferred fw %s.\n"
5699 "Trying alternative firmware %s\n", pci_name(priv->pdev),
5700 priv->fw_pref, priv->fw_alt);
5701 rc = mwl8k_request_fw(priv, priv->fw_alt, &priv->fw_ucode, true);
5702 if (rc) {
5703 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5704 pci_name(priv->pdev), priv->fw_alt);
5705 return rc;
5706 }
5707 return 0;
5708}
5709
5710static int mwl8k_firmware_load_success(struct mwl8k_priv *priv);
5711static void mwl8k_fw_state_machine(const struct firmware *fw, void *context)
5712{
5713 struct mwl8k_priv *priv = context;
5714 struct mwl8k_device_info *di = priv->device_info;
5715 int rc;
5716
5717 switch (priv->fw_state) {
5718 case FW_STATE_INIT:
5719 if (!fw) {
5720 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
5721 pci_name(priv->pdev), di->helper_image);
5722 goto fail;
5723 }
5724 priv->fw_helper = fw;
5725 rc = mwl8k_request_fw(priv, priv->fw_pref, &priv->fw_ucode,
5726 true);
5727 if (rc && priv->fw_alt) {
5728 rc = mwl8k_request_alt_fw(priv);
5729 if (rc)
5730 goto fail;
5731 priv->fw_state = FW_STATE_LOADING_ALT;
5732 } else if (rc)
5733 goto fail;
5734 else
5735 priv->fw_state = FW_STATE_LOADING_PREF;
5736 break;
5737
5738 case FW_STATE_LOADING_PREF:
5739 if (!fw) {
5740 if (priv->fw_alt) {
5741 rc = mwl8k_request_alt_fw(priv);
5742 if (rc)
5743 goto fail;
5744 priv->fw_state = FW_STATE_LOADING_ALT;
5745 } else
5746 goto fail;
5747 } else {
5748 priv->fw_ucode = fw;
5749 rc = mwl8k_firmware_load_success(priv);
5750 if (rc)
5751 goto fail;
5752 else
5753 complete(&priv->firmware_loading_complete);
5754 }
5755 break;
5756
5757 case FW_STATE_LOADING_ALT:
5758 if (!fw) {
5759 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5760 pci_name(priv->pdev), di->helper_image);
5761 goto fail;
5762 }
5763 priv->fw_ucode = fw;
5764 rc = mwl8k_firmware_load_success(priv);
5765 if (rc)
5766 goto fail;
5767 else
5768 complete(&priv->firmware_loading_complete);
5769 break;
5770
5771 default:
5772 printk(KERN_ERR "%s: Unexpected firmware loading state: %d\n",
5773 MWL8K_NAME, priv->fw_state);
5774 BUG_ON(1);
5775 }
5776
5777 return;
5778
5779fail:
5780 priv->fw_state = FW_STATE_ERROR;
5781 complete(&priv->firmware_loading_complete);
5782 device_release_driver(&priv->pdev->dev);
5783 mwl8k_release_firmware(priv);
5784}
5785
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305786#define MAX_RESTART_ATTEMPTS 1
Brian Cavagnolo99020472010-11-12 17:23:52 -08005787static int mwl8k_init_firmware(struct ieee80211_hw *hw, char *fw_image,
5788 bool nowait)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005789{
5790 struct mwl8k_priv *priv = hw->priv;
5791 int rc;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305792 int count = MAX_RESTART_ATTEMPTS;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005793
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305794retry:
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005795 /* Reset firmware and hardware */
5796 mwl8k_hw_reset(priv);
5797
5798 /* Ask userland hotplug daemon for the device firmware */
Brian Cavagnolo99020472010-11-12 17:23:52 -08005799 rc = mwl8k_request_firmware(priv, fw_image, nowait);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005800 if (rc) {
5801 wiphy_err(hw->wiphy, "Firmware files not found\n");
5802 return rc;
5803 }
5804
Brian Cavagnolo99020472010-11-12 17:23:52 -08005805 if (nowait)
5806 return rc;
5807
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005808 /* Load firmware into hardware */
5809 rc = mwl8k_load_firmware(hw);
5810 if (rc)
5811 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5812
5813 /* Reclaim memory once firmware is successfully loaded */
5814 mwl8k_release_firmware(priv);
5815
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305816 if (rc && count) {
5817 /* FW did not start successfully;
5818 * lets try one more time
5819 */
5820 count--;
5821 wiphy_err(hw->wiphy, "Trying to reload the firmware again\n");
5822 msleep(20);
5823 goto retry;
5824 }
5825
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005826 return rc;
5827}
5828
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005829static int mwl8k_init_txqs(struct ieee80211_hw *hw)
5830{
5831 struct mwl8k_priv *priv = hw->priv;
5832 int rc = 0;
5833 int i;
5834
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005835 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005836 rc = mwl8k_txq_init(hw, i);
5837 if (rc)
5838 break;
5839 if (priv->ap_fw)
5840 iowrite32(priv->txq[i].txd_dma,
5841 priv->sram + priv->txq_offset[i]);
5842 }
5843 return rc;
5844}
5845
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005846/* initialize hw after successfully loading a firmware image */
5847static int mwl8k_probe_hw(struct ieee80211_hw *hw)
5848{
5849 struct mwl8k_priv *priv = hw->priv;
5850 int rc = 0;
5851 int i;
5852
5853 if (priv->ap_fw) {
5854 priv->rxd_ops = priv->device_info->ap_rxd_ops;
5855 if (priv->rxd_ops == NULL) {
5856 wiphy_err(hw->wiphy,
5857 "Driver does not have AP firmware image support for this hardware\n");
Alexey Khoroshilova2ca8ec2013-01-19 01:24:01 +04005858 rc = -ENOENT;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005859 goto err_stop_firmware;
5860 }
5861 } else {
5862 priv->rxd_ops = &rxd_sta_ops;
5863 }
5864
5865 priv->sniffer_enabled = false;
5866 priv->wmm_enabled = false;
5867 priv->pending_tx_pkts = 0;
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05305868 atomic_set(&priv->watchdog_event_pending, 0);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005869
5870 rc = mwl8k_rxq_init(hw, 0);
5871 if (rc)
5872 goto err_stop_firmware;
5873 rxq_refill(hw, 0, INT_MAX);
5874
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005875 /* For the sta firmware, we need to know the dma addresses of tx queues
5876 * before sending MWL8K_CMD_GET_HW_SPEC. So we must initialize them
5877 * prior to issuing this command. But for the AP case, we learn the
5878 * total number of queues from the result CMD_GET_HW_SPEC, so for this
5879 * case we must initialize the tx queues after.
5880 */
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07005881 priv->num_ampdu_queues = 0;
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005882 if (!priv->ap_fw) {
5883 rc = mwl8k_init_txqs(hw);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005884 if (rc)
5885 goto err_free_queues;
5886 }
5887
5888 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
5889 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005890 iowrite32(MWL8K_A2H_INT_TX_DONE|MWL8K_A2H_INT_RX_READY|
5891 MWL8K_A2H_INT_BA_WATCHDOG,
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005892 priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05305893 iowrite32(MWL8K_A2H_INT_OPC_DONE,
5894 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005895
5896 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
5897 IRQF_SHARED, MWL8K_NAME, hw);
5898 if (rc) {
5899 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
5900 goto err_free_queues;
5901 }
5902
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305903 /*
5904 * When hw restart is requested,
5905 * mac80211 will take care of clearing
5906 * the ampdu streams, so do not clear
5907 * the ampdu state here
5908 */
5909 if (!priv->hw_restart_in_progress)
5910 memset(priv->ampdu, 0, sizeof(priv->ampdu));
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005911
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005912 /*
5913 * Temporarily enable interrupts. Initial firmware host
5914 * commands use interrupts and avoid polling. Disable
5915 * interrupts when done.
5916 */
5917 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5918
5919 /* Get config data, mac addrs etc */
5920 if (priv->ap_fw) {
5921 rc = mwl8k_cmd_get_hw_spec_ap(hw);
5922 if (!rc)
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005923 rc = mwl8k_init_txqs(hw);
5924 if (!rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005925 rc = mwl8k_cmd_set_hw_spec(hw);
5926 } else {
5927 rc = mwl8k_cmd_get_hw_spec_sta(hw);
5928 }
5929 if (rc) {
5930 wiphy_err(hw->wiphy, "Cannot initialise firmware\n");
5931 goto err_free_irq;
5932 }
5933
5934 /* Turn radio off */
5935 rc = mwl8k_cmd_radio_disable(hw);
5936 if (rc) {
5937 wiphy_err(hw->wiphy, "Cannot disable\n");
5938 goto err_free_irq;
5939 }
5940
5941 /* Clear MAC address */
5942 rc = mwl8k_cmd_set_mac_addr(hw, NULL, "\x00\x00\x00\x00\x00\x00");
5943 if (rc) {
5944 wiphy_err(hw->wiphy, "Cannot clear MAC address\n");
5945 goto err_free_irq;
5946 }
5947
Yogesh Ashok Powara246ac32013-01-25 16:17:56 +05305948 /* Configure Antennas */
5949 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x3);
5950 if (rc)
5951 wiphy_warn(hw->wiphy, "failed to set # of RX antennas");
5952 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7);
5953 if (rc)
5954 wiphy_warn(hw->wiphy, "failed to set # of TX antennas");
5955
5956
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005957 /* Disable interrupts */
5958 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5959 free_irq(priv->pdev->irq, hw);
5960
5961 wiphy_info(hw->wiphy, "%s v%d, %pm, %s firmware %u.%u.%u.%u\n",
5962 priv->device_info->part_name,
5963 priv->hw_rev, hw->wiphy->perm_addr,
5964 priv->ap_fw ? "AP" : "STA",
5965 (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff,
5966 (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff);
5967
5968 return 0;
5969
5970err_free_irq:
5971 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5972 free_irq(priv->pdev->irq, hw);
5973
5974err_free_queues:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005975 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005976 mwl8k_txq_deinit(hw, i);
5977 mwl8k_rxq_deinit(hw, 0);
5978
5979err_stop_firmware:
5980 mwl8k_hw_reset(priv);
5981
5982 return rc;
5983}
5984
5985/*
5986 * invoke mwl8k_reload_firmware to change the firmware image after the device
5987 * has already been registered
5988 */
5989static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image)
5990{
5991 int i, rc = 0;
5992 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305993 struct mwl8k_vif *vif, *tmp_vif;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005994
5995 mwl8k_stop(hw);
5996 mwl8k_rxq_deinit(hw, 0);
5997
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305998 /*
5999 * All the existing interfaces are re-added by the ieee80211_reconfig;
6000 * which means driver should remove existing interfaces before calling
6001 * ieee80211_restart_hw
6002 */
6003 if (priv->hw_restart_in_progress)
6004 list_for_each_entry_safe(vif, tmp_vif, &priv->vif_list, list)
6005 mwl8k_remove_vif(priv, vif);
6006
Brian Cavagnoloe6007072011-03-17 11:58:44 -07006007 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006008 mwl8k_txq_deinit(hw, i);
6009
Brian Cavagnolo99020472010-11-12 17:23:52 -08006010 rc = mwl8k_init_firmware(hw, fw_image, false);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006011 if (rc)
6012 goto fail;
6013
6014 rc = mwl8k_probe_hw(hw);
6015 if (rc)
6016 goto fail;
6017
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05306018 if (priv->hw_restart_in_progress)
6019 return rc;
6020
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006021 rc = mwl8k_start(hw);
6022 if (rc)
6023 goto fail;
6024
6025 rc = mwl8k_config(hw, ~0);
6026 if (rc)
6027 goto fail;
6028
Brian Cavagnoloe6007072011-03-17 11:58:44 -07006029 for (i = 0; i < MWL8K_TX_WMM_QUEUES; i++) {
Eliad Peller8a3a3c82011-10-02 10:15:52 +02006030 rc = mwl8k_conf_tx(hw, NULL, i, &priv->wmm_params[i]);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006031 if (rc)
6032 goto fail;
6033 }
6034
6035 return rc;
6036
6037fail:
6038 printk(KERN_WARNING "mwl8k: Failed to reload firmware image.\n");
6039 return rc;
6040}
6041
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05306042static const struct ieee80211_iface_limit ap_if_limits[] = {
6043 { .max = 8, .types = BIT(NL80211_IFTYPE_AP) },
Yogesh Ashok Powar2acdaa72013-01-25 16:19:55 +05306044 { .max = 1, .types = BIT(NL80211_IFTYPE_STATION) },
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05306045};
6046
6047static const struct ieee80211_iface_combination ap_if_comb = {
6048 .limits = ap_if_limits,
6049 .n_limits = ARRAY_SIZE(ap_if_limits),
6050 .max_interfaces = 8,
6051 .num_different_channels = 1,
6052};
6053
6054
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006055static int mwl8k_firmware_load_success(struct mwl8k_priv *priv)
6056{
6057 struct ieee80211_hw *hw = priv->hw;
6058 int i, rc;
6059
Brian Cavagnolo99020472010-11-12 17:23:52 -08006060 rc = mwl8k_load_firmware(hw);
6061 mwl8k_release_firmware(priv);
6062 if (rc) {
6063 wiphy_err(hw->wiphy, "Cannot start firmware\n");
6064 return rc;
6065 }
6066
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006067 /*
6068 * Extra headroom is the size of the required DMA header
6069 * minus the size of the smallest 802.11 frame (CTS frame).
6070 */
6071 hw->extra_tx_headroom =
6072 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
6073
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05306074 hw->extra_tx_headroom -= priv->ap_fw ? REDUCED_TX_HEADROOM : 0;
6075
Brian Cavagnoloe6007072011-03-17 11:58:44 -07006076 hw->queues = MWL8K_TX_WMM_QUEUES;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006077
6078 /* Set rssi values to dBm */
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08006079 hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_HAS_RATE_CONTROL;
Yogesh Ashok Powar2a36a0e2011-08-29 17:12:44 +05306080
6081 /*
6082 * Ask mac80211 to not to trigger PS mode
6083 * based on PM bit of incoming frames.
6084 */
6085 if (priv->ap_fw)
6086 hw->flags |= IEEE80211_HW_AP_LINK_PS;
6087
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006088 hw->vif_data_size = sizeof(struct mwl8k_vif);
6089 hw->sta_data_size = sizeof(struct mwl8k_sta);
6090
6091 priv->macids_used = 0;
6092 INIT_LIST_HEAD(&priv->vif_list);
6093
6094 /* Set default radio state and preamble */
Rusty Russell3db1cd52011-12-19 13:56:45 +00006095 priv->radio_on = false;
6096 priv->radio_short_preamble = false;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006097
6098 /* Finalize join worker */
6099 INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07006100 /* Handle watchdog ba events */
6101 INIT_WORK(&priv->watchdog_ba_handle, mwl8k_watchdog_ba_events);
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05306102 /* To reload the firmware if it crashes */
6103 INIT_WORK(&priv->fw_reload, mwl8k_hw_restart_work);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006104
6105 /* TX reclaim and RX tasklets. */
6106 tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw);
6107 tasklet_disable(&priv->poll_tx_task);
6108 tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw);
6109 tasklet_disable(&priv->poll_rx_task);
6110
6111 /* Power management cookie */
6112 priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
6113 if (priv->cookie == NULL)
6114 return -ENOMEM;
6115
6116 mutex_init(&priv->fw_mutex);
6117 priv->fw_mutex_owner = NULL;
6118 priv->fw_mutex_depth = 0;
6119 priv->hostcmd_wait = NULL;
6120
6121 spin_lock_init(&priv->tx_lock);
6122
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07006123 spin_lock_init(&priv->stream_lock);
6124
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006125 priv->tx_wait = NULL;
6126
6127 rc = mwl8k_probe_hw(hw);
6128 if (rc)
6129 goto err_free_cookie;
6130
6131 hw->wiphy->interface_modes = 0;
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05306132
6133 if (priv->ap_macids_supported || priv->device_info->fw_image_ap) {
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006134 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP);
Yogesh Ashok Powar2acdaa72013-01-25 16:19:55 +05306135 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05306136 hw->wiphy->iface_combinations = &ap_if_comb;
6137 hw->wiphy->n_iface_combinations = 1;
6138 }
6139
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006140 if (priv->sta_macids_supported || priv->device_info->fw_image_sta)
6141 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
6142
6143 rc = ieee80211_register_hw(hw);
6144 if (rc) {
6145 wiphy_err(hw->wiphy, "Cannot register device\n");
6146 goto err_unprobe_hw;
6147 }
6148
6149 return 0;
6150
6151err_unprobe_hw:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07006152 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006153 mwl8k_txq_deinit(hw, i);
6154 mwl8k_rxq_deinit(hw, 0);
6155
6156err_free_cookie:
6157 if (priv->cookie != NULL)
6158 pci_free_consistent(priv->pdev, 4,
6159 priv->cookie, priv->cookie_dma);
6160
6161 return rc;
6162}
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05006163static int mwl8k_probe(struct pci_dev *pdev,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006164 const struct pci_device_id *id)
6165{
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006166 static int printed_version;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006167 struct ieee80211_hw *hw;
6168 struct mwl8k_priv *priv;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006169 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006170 int rc;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02006171
6172 if (!printed_version) {
6173 printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION);
6174 printed_version = 1;
6175 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006176
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01006177
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006178 rc = pci_enable_device(pdev);
6179 if (rc) {
6180 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
6181 MWL8K_NAME);
6182 return rc;
6183 }
6184
6185 rc = pci_request_regions(pdev, MWL8K_NAME);
6186 if (rc) {
6187 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
6188 MWL8K_NAME);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01006189 goto err_disable_device;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006190 }
6191
6192 pci_set_master(pdev);
6193
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01006194
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006195 hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
6196 if (hw == NULL) {
6197 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
6198 rc = -ENOMEM;
6199 goto err_free_reg;
6200 }
6201
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01006202 SET_IEEE80211_DEV(hw, &pdev->dev);
6203 pci_set_drvdata(pdev, hw);
6204
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006205 priv = hw->priv;
6206 priv->hw = hw;
6207 priv->pdev = pdev;
John W. Linvillebcb628d2009-11-06 16:40:16 -05006208 priv->device_info = &mwl8k_info_tbl[id->driver_data];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006209
Nishant Sarmukadam98929822013-03-01 17:13:01 +05306210 if (id->driver_data == MWL8764)
6211 priv->is_8764 = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006212
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006213 priv->sram = pci_iomap(pdev, 0, 0x10000);
6214 if (priv->sram == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07006215 wiphy_err(hw->wiphy, "Cannot map device SRAM\n");
Alexey Khoroshilova2ca8ec2013-01-19 01:24:01 +04006216 rc = -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006217 goto err_iounmap;
6218 }
6219
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006220 /*
6221 * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
6222 * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
6223 */
6224 priv->regs = pci_iomap(pdev, 1, 0x10000);
6225 if (priv->regs == NULL) {
6226 priv->regs = pci_iomap(pdev, 2, 0x10000);
6227 if (priv->regs == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07006228 wiphy_err(hw->wiphy, "Cannot map device registers\n");
Alexey Khoroshilova2ca8ec2013-01-19 01:24:01 +04006229 rc = -EIO;
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006230 goto err_iounmap;
6231 }
6232 }
6233
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006234 /*
Brian Cavagnolo99020472010-11-12 17:23:52 -08006235 * Choose the initial fw image depending on user input. If a second
6236 * image is available, make it the alternative image that will be
6237 * loaded if the first one fails.
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006238 */
Brian Cavagnolo99020472010-11-12 17:23:52 -08006239 init_completion(&priv->firmware_loading_complete);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006240 di = priv->device_info;
Brian Cavagnolo99020472010-11-12 17:23:52 -08006241 if (ap_mode_default && di->fw_image_ap) {
6242 priv->fw_pref = di->fw_image_ap;
6243 priv->fw_alt = di->fw_image_sta;
6244 } else if (!ap_mode_default && di->fw_image_sta) {
6245 priv->fw_pref = di->fw_image_sta;
6246 priv->fw_alt = di->fw_image_ap;
6247 } else if (ap_mode_default && !di->fw_image_ap && di->fw_image_sta) {
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006248 printk(KERN_WARNING "AP fw is unavailable. Using STA fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08006249 priv->fw_pref = di->fw_image_sta;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006250 } else if (!ap_mode_default && !di->fw_image_sta && di->fw_image_ap) {
6251 printk(KERN_WARNING "STA fw is unavailable. Using AP fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08006252 priv->fw_pref = di->fw_image_ap;
6253 }
6254 rc = mwl8k_init_firmware(hw, priv->fw_pref, true);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006255 if (rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006256 goto err_stop_firmware;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05306257
6258 priv->hw_restart_in_progress = false;
6259
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05306260 priv->running_bsses = 0;
6261
Brian Cavagnolo99020472010-11-12 17:23:52 -08006262 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006263
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01006264err_stop_firmware:
6265 mwl8k_hw_reset(priv);
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01006266
6267err_iounmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006268 if (priv->regs != NULL)
6269 pci_iounmap(pdev, priv->regs);
6270
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006271 if (priv->sram != NULL)
6272 pci_iounmap(pdev, priv->sram);
6273
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006274 ieee80211_free_hw(hw);
6275
6276err_free_reg:
6277 pci_release_regions(pdev);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01006278
6279err_disable_device:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006280 pci_disable_device(pdev);
6281
6282 return rc;
6283}
6284
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05006285static void mwl8k_remove(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006286{
6287 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
6288 struct mwl8k_priv *priv;
6289 int i;
6290
6291 if (hw == NULL)
6292 return;
6293 priv = hw->priv;
6294
Brian Cavagnolo99020472010-11-12 17:23:52 -08006295 wait_for_completion(&priv->firmware_loading_complete);
6296
6297 if (priv->fw_state == FW_STATE_ERROR) {
6298 mwl8k_hw_reset(priv);
6299 goto unmap;
6300 }
6301
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006302 ieee80211_stop_queues(hw);
6303
Lennert Buytenhek60aa5692009-08-03 21:59:09 +02006304 ieee80211_unregister_hw(hw);
6305
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01006306 /* Remove TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01006307 tasklet_kill(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01006308 tasklet_kill(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006309
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006310 /* Stop hardware */
6311 mwl8k_hw_reset(priv);
6312
6313 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07006314 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01006315 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006316
Brian Cavagnoloe6007072011-03-17 11:58:44 -07006317 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006318 mwl8k_txq_deinit(hw, i);
6319
6320 mwl8k_rxq_deinit(hw, 0);
6321
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02006322 pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006323
Brian Cavagnolo99020472010-11-12 17:23:52 -08006324unmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006325 pci_iounmap(pdev, priv->regs);
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006326 pci_iounmap(pdev, priv->sram);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006327 ieee80211_free_hw(hw);
6328 pci_release_regions(pdev);
6329 pci_disable_device(pdev);
6330}
6331
6332static struct pci_driver mwl8k_driver = {
6333 .name = MWL8K_NAME,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02006334 .id_table = mwl8k_pci_id_table,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006335 .probe = mwl8k_probe,
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05006336 .remove = mwl8k_remove,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006337};
6338
Axel Lin5b0a3b72012-04-14 10:38:36 +08006339module_pci_driver(mwl8k_driver);
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02006340
6341MODULE_DESCRIPTION(MWL8K_DESC);
6342MODULE_VERSION(MWL8K_VERSION);
6343MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
6344MODULE_LICENSE("GPL");