blob: 9f9a1449e812869d7d3b9df5cc09e4a27b64c9c5 [file] [log] [blame]
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001/*
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002 * drivers/net/wireless/mwl8k.c
3 * Driver for Marvell TOPDOG 802.11 Wireless cards
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004 *
Lennert Buytenheka5fb2972010-01-12 13:51:38 +01005 * Copyright (C) 2008, 2009, 2010 Marvell Semiconductor Inc.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006 *
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
10 */
11
12#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000013#include <linux/interrupt.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010014#include <linux/module.h>
15#include <linux/kernel.h>
Lennert Buytenhek3d76e822009-10-22 20:20:16 +020016#include <linux/sched.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010017#include <linux/spinlock.h>
18#include <linux/list.h>
19#include <linux/pci.h>
20#include <linux/delay.h>
21#include <linux/completion.h>
22#include <linux/etherdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010024#include <net/mac80211.h>
25#include <linux/moduleparam.h>
26#include <linux/firmware.h>
27#include <linux/workqueue.h>
28
29#define MWL8K_DESC "Marvell TOPDOG(R) 802.11 Wireless Network Driver"
30#define MWL8K_NAME KBUILD_MODNAME
Yogesh Ashok Powar00e8e692011-12-20 11:39:29 +053031#define MWL8K_VERSION "0.13"
Lennert Buytenheka66098d2009-03-10 10:13:33 +010032
Brian Cavagnolo0863ade2010-11-12 17:23:50 -080033/* Module parameters */
Rusty Russelleb939922011-12-19 14:08:01 +000034static bool ap_mode_default;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -080035module_param(ap_mode_default, bool, 0);
36MODULE_PARM_DESC(ap_mode_default,
37 "Set to 1 to make ap mode the default instead of sta mode");
38
Lennert Buytenheka66098d2009-03-10 10:13:33 +010039/* Register definitions */
40#define MWL8K_HIU_GEN_PTR 0x00000c10
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020041#define MWL8K_MODE_STA 0x0000005a
42#define MWL8K_MODE_AP 0x000000a5
Lennert Buytenheka66098d2009-03-10 10:13:33 +010043#define MWL8K_HIU_INT_CODE 0x00000c14
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020044#define MWL8K_FWSTA_READY 0xf0f1f2f4
45#define MWL8K_FWAP_READY 0xf1f2f4a5
46#define MWL8K_INT_CODE_CMD_FINISHED 0x00000005
Lennert Buytenheka66098d2009-03-10 10:13:33 +010047#define MWL8K_HIU_SCRATCH 0x00000c40
48
49/* Host->device communications */
50#define MWL8K_HIU_H2A_INTERRUPT_EVENTS 0x00000c18
51#define MWL8K_HIU_H2A_INTERRUPT_STATUS 0x00000c1c
52#define MWL8K_HIU_H2A_INTERRUPT_MASK 0x00000c20
53#define MWL8K_HIU_H2A_INTERRUPT_CLEAR_SEL 0x00000c24
54#define MWL8K_HIU_H2A_INTERRUPT_STATUS_MASK 0x00000c28
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020055#define MWL8K_H2A_INT_DUMMY (1 << 20)
56#define MWL8K_H2A_INT_RESET (1 << 15)
57#define MWL8K_H2A_INT_DOORBELL (1 << 1)
58#define MWL8K_H2A_INT_PPA_READY (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010059
60/* Device->host communications */
61#define MWL8K_HIU_A2H_INTERRUPT_EVENTS 0x00000c2c
62#define MWL8K_HIU_A2H_INTERRUPT_STATUS 0x00000c30
63#define MWL8K_HIU_A2H_INTERRUPT_MASK 0x00000c34
64#define MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL 0x00000c38
65#define MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK 0x00000c3c
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020066#define MWL8K_A2H_INT_DUMMY (1 << 20)
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -070067#define MWL8K_A2H_INT_BA_WATCHDOG (1 << 14)
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020068#define MWL8K_A2H_INT_CHNL_SWITCHED (1 << 11)
69#define MWL8K_A2H_INT_QUEUE_EMPTY (1 << 10)
70#define MWL8K_A2H_INT_RADAR_DETECT (1 << 7)
71#define MWL8K_A2H_INT_RADIO_ON (1 << 6)
72#define MWL8K_A2H_INT_RADIO_OFF (1 << 5)
73#define MWL8K_A2H_INT_MAC_EVENT (1 << 3)
74#define MWL8K_A2H_INT_OPC_DONE (1 << 2)
75#define MWL8K_A2H_INT_RX_READY (1 << 1)
76#define MWL8K_A2H_INT_TX_DONE (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010077
Pradeep Nemavat566875d2011-04-21 16:34:57 +053078/* HW micro second timer register
79 * located at offset 0xA600. This
80 * will be used to timestamp tx
81 * packets.
82 */
83
84#define MWL8K_HW_TIMER_REGISTER 0x0000a600
85
Lennert Buytenheka66098d2009-03-10 10:13:33 +010086#define MWL8K_A2H_EVENTS (MWL8K_A2H_INT_DUMMY | \
87 MWL8K_A2H_INT_CHNL_SWITCHED | \
88 MWL8K_A2H_INT_QUEUE_EMPTY | \
89 MWL8K_A2H_INT_RADAR_DETECT | \
90 MWL8K_A2H_INT_RADIO_ON | \
91 MWL8K_A2H_INT_RADIO_OFF | \
92 MWL8K_A2H_INT_MAC_EVENT | \
93 MWL8K_A2H_INT_OPC_DONE | \
94 MWL8K_A2H_INT_RX_READY | \
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -070095 MWL8K_A2H_INT_TX_DONE | \
96 MWL8K_A2H_INT_BA_WATCHDOG)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010097
Lennert Buytenheka66098d2009-03-10 10:13:33 +010098#define MWL8K_RX_QUEUES 1
Brian Cavagnoloe6007072011-03-17 11:58:44 -070099#define MWL8K_TX_WMM_QUEUES 4
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700100#define MWL8K_MAX_AMPDU_QUEUES 8
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700101#define MWL8K_MAX_TX_QUEUES (MWL8K_TX_WMM_QUEUES + MWL8K_MAX_AMPDU_QUEUES)
102#define mwl8k_tx_queues(priv) (MWL8K_TX_WMM_QUEUES + (priv)->num_ampdu_queues)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100103
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +0530104/* txpriorities are mapped with hw queues.
105 * Each hw queue has a txpriority.
106 */
107#define TOTAL_HW_TX_QUEUES 8
108
109/* Each HW queue can have one AMPDU stream.
110 * But, because one of the hw queue is reserved,
111 * maximum AMPDU queues that can be created are
112 * one short of total tx queues.
113 */
114#define MWL8K_NUM_AMPDU_STREAMS (TOTAL_HW_TX_QUEUES - 1)
115
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200116struct rxd_ops {
117 int rxd_size;
118 void (*rxd_init)(void *rxd, dma_addr_t next_dma_addr);
119 void (*rxd_refill)(void *rxd, dma_addr_t addr, int len);
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100120 int (*rxd_process)(void *rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -0400121 __le16 *qos, s8 *noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200122};
123
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200124struct mwl8k_device_info {
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200125 char *part_name;
126 char *helper_image;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800127 char *fw_image_sta;
128 char *fw_image_ap;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100129 struct rxd_ops *ap_rxd_ops;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -0800130 u32 fw_api_ap;
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200131};
132
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100133struct mwl8k_rx_queue {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200134 int rxd_count;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100135
136 /* hw receives here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200137 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100138
139 /* refill descs here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200140 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100141
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200142 void *rxd;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200143 dma_addr_t rxd_dma;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200144 struct {
145 struct sk_buff *skb;
FUJITA Tomonori53b1b3e12010-04-02 13:10:38 +0900146 DEFINE_DMA_UNMAP_ADDR(dma);
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200147 } *buf;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100148};
149
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100150struct mwl8k_tx_queue {
151 /* hw transmits here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200152 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100153
154 /* sw appends here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200155 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100156
Kalle Valo8ccbc3b2010-02-07 10:20:52 +0200157 unsigned int len;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200158 struct mwl8k_tx_desc *txd;
159 dma_addr_t txd_dma;
160 struct sk_buff **skb;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100161};
162
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700163enum {
164 AMPDU_NO_STREAM,
165 AMPDU_STREAM_NEW,
166 AMPDU_STREAM_IN_PROGRESS,
167 AMPDU_STREAM_ACTIVE,
168};
169
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700170struct mwl8k_ampdu_stream {
171 struct ieee80211_sta *sta;
172 u8 tid;
173 u8 state;
174 u8 idx;
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700175};
176
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100177struct mwl8k_priv {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100178 struct ieee80211_hw *hw;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100179 struct pci_dev *pdev;
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +0530180 int irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100181
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200182 struct mwl8k_device_info *device_info;
183
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100184 void __iomem *sram;
185 void __iomem *regs;
186
187 /* firmware */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800188 const struct firmware *fw_helper;
189 const struct firmware *fw_ucode;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100190
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100191 /* hardware/firmware parameters */
192 bool ap_fw;
193 struct rxd_ops *rxd_ops;
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100194 struct ieee80211_supported_band band_24;
195 struct ieee80211_channel channels_24[14];
196 struct ieee80211_rate rates_24[14];
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100197 struct ieee80211_supported_band band_50;
198 struct ieee80211_channel channels_50[4];
199 struct ieee80211_rate rates_50[9];
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100200 u32 ap_macids_supported;
201 u32 sta_macids_supported;
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100202
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700203 /* Ampdu stream information */
204 u8 num_ampdu_queues;
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700205 spinlock_t stream_lock;
206 struct mwl8k_ampdu_stream ampdu[MWL8K_MAX_AMPDU_QUEUES];
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700207 struct work_struct watchdog_ba_handle;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700208
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200209 /* firmware access */
210 struct mutex fw_mutex;
211 struct task_struct *fw_mutex_owner;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +0530212 struct task_struct *hw_restart_owner;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200213 int fw_mutex_depth;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200214 struct completion *hostcmd_wait;
215
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +0530216 atomic_t watchdog_event_pending;
217
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100218 /* lock held over TX and TX reap */
219 spinlock_t tx_lock;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100220
Lennert Buytenhek88de754a2009-10-22 20:19:37 +0200221 /* TX quiesce completion, protected by fw_mutex and tx_lock */
222 struct completion *tx_wait;
223
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100224 /* List of interfaces. */
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100225 u32 macids_used;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100226 struct list_head vif_list;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100227
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100228 /* power management status cookie from firmware */
229 u32 *cookie;
230 dma_addr_t cookie_dma;
231
232 u16 num_mcaddrs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100233 u8 hw_rev;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +0200234 u32 fw_rev;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100235
236 /*
237 * Running count of TX packets in flight, to avoid
238 * iterating over the transmit rings each time.
239 */
240 int pending_tx_pkts;
241
242 struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES];
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700243 struct mwl8k_tx_queue txq[MWL8K_MAX_TX_QUEUES];
244 u32 txq_offset[MWL8K_MAX_TX_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100245
Lennert Buytenhekc46563b2009-07-16 12:14:58 +0200246 bool radio_on;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +0200247 bool radio_short_preamble;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +0200248 bool sniffer_enabled;
Lennert Buytenhek0439b1f2009-07-16 12:34:02 +0200249 bool wmm_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100250
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100251 /* XXX need to convert this to handle multiple interfaces */
252 bool capture_beacon;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200253 u8 capture_bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100254 struct sk_buff *beacon_skb;
255
256 /*
257 * This FJ worker has to be global as it is scheduled from the
258 * RX handler. At this point we don't know which interface it
259 * belongs to until the list of bssids waiting to complete join
260 * is checked.
261 */
262 struct work_struct finalize_join_worker;
263
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +0100264 /* Tasklet to perform TX reclaim. */
265 struct tasklet_struct poll_tx_task;
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +0100266
267 /* Tasklet to perform RX. */
268 struct tasklet_struct poll_rx_task;
John W. Linville0d462bb2010-07-28 14:04:24 -0400269
270 /* Most recently reported noise in dBm */
271 s8 noise;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800272
273 /*
274 * preserve the queue configurations so they can be restored if/when
275 * the firmware image is swapped.
276 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700277 struct ieee80211_tx_queue_params wmm_params[MWL8K_TX_WMM_QUEUES];
Brian Cavagnolo99020472010-11-12 17:23:52 -0800278
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +0530279 /* To perform the task of reloading the firmware */
280 struct work_struct fw_reload;
281 bool hw_restart_in_progress;
282
Brian Cavagnolo99020472010-11-12 17:23:52 -0800283 /* async firmware loading state */
284 unsigned fw_state;
285 char *fw_pref;
286 char *fw_alt;
287 struct completion firmware_loading_complete;
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +0530288
289 /* bitmap of running BSSes */
290 u32 running_bsses;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100291};
292
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800293#define MAX_WEP_KEY_LEN 13
294#define NUM_WEP_KEYS 4
295
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100296/* Per interface specific private data */
297struct mwl8k_vif {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100298 struct list_head list;
299 struct ieee80211_vif *vif;
300
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100301 /* Firmware macid for this vif. */
302 int macid;
303
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +0100304 /* Non AMPDU sequence number assigned by driver. */
Lennert Buytenheka6804002010-01-04 21:55:42 +0100305 u16 seqno;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800306
307 /* Saved WEP keys */
308 struct {
309 u8 enabled;
310 u8 key[sizeof(struct ieee80211_key_conf) + MAX_WEP_KEY_LEN];
311 } wep_key_conf[NUM_WEP_KEYS];
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800312
313 /* BSSID */
314 u8 bssid[ETH_ALEN];
315
316 /* A flag to indicate is HW crypto is enabled for this bssid */
317 bool is_hw_crypto_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100318};
Lennert Buytenheka94cc972009-08-03 21:58:57 +0200319#define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv))
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800320#define IEEE80211_KEY_CONF(_u8) ((struct ieee80211_key_conf *)(_u8))
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100321
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700322struct tx_traffic_info {
323 u32 start_time;
324 u32 pkts;
325};
326
327#define MWL8K_MAX_TID 8
Lennert Buytenheka6804002010-01-04 21:55:42 +0100328struct mwl8k_sta {
329 /* Index into station database. Returned by UPDATE_STADB. */
330 u8 peer_id;
Nishant Sarmukadam170335432011-03-17 11:58:48 -0700331 u8 is_ampdu_allowed;
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700332 struct tx_traffic_info tx_stats[MWL8K_MAX_TID];
Lennert Buytenheka6804002010-01-04 21:55:42 +0100333};
334#define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv))
335
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100336static const struct ieee80211_channel mwl8k_channels_24[] = {
Jonas Gorskid786f672013-02-08 16:07:25 +0100337 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2412, .hw_value = 1, },
338 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2417, .hw_value = 2, },
339 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2422, .hw_value = 3, },
340 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2427, .hw_value = 4, },
341 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2432, .hw_value = 5, },
342 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2437, .hw_value = 6, },
343 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2442, .hw_value = 7, },
344 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2447, .hw_value = 8, },
345 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2452, .hw_value = 9, },
346 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2457, .hw_value = 10, },
347 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2462, .hw_value = 11, },
348 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2467, .hw_value = 12, },
349 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2472, .hw_value = 13, },
350 { .band = IEEE80211_BAND_2GHZ, .center_freq = 2484, .hw_value = 14, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100351};
352
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100353static const struct ieee80211_rate mwl8k_rates_24[] = {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100354 { .bitrate = 10, .hw_value = 2, },
355 { .bitrate = 20, .hw_value = 4, },
356 { .bitrate = 55, .hw_value = 11, },
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200357 { .bitrate = 110, .hw_value = 22, },
358 { .bitrate = 220, .hw_value = 44, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100359 { .bitrate = 60, .hw_value = 12, },
360 { .bitrate = 90, .hw_value = 18, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100361 { .bitrate = 120, .hw_value = 24, },
362 { .bitrate = 180, .hw_value = 36, },
363 { .bitrate = 240, .hw_value = 48, },
364 { .bitrate = 360, .hw_value = 72, },
365 { .bitrate = 480, .hw_value = 96, },
366 { .bitrate = 540, .hw_value = 108, },
Lennert Buytenhek140eb5e2009-11-30 18:11:44 +0100367 { .bitrate = 720, .hw_value = 144, },
368};
369
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100370static const struct ieee80211_channel mwl8k_channels_50[] = {
Jonas Gorskid786f672013-02-08 16:07:25 +0100371 { .band = IEEE80211_BAND_5GHZ, .center_freq = 5180, .hw_value = 36, },
372 { .band = IEEE80211_BAND_5GHZ, .center_freq = 5200, .hw_value = 40, },
373 { .band = IEEE80211_BAND_5GHZ, .center_freq = 5220, .hw_value = 44, },
374 { .band = IEEE80211_BAND_5GHZ, .center_freq = 5240, .hw_value = 48, },
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100375};
376
377static const struct ieee80211_rate mwl8k_rates_50[] = {
378 { .bitrate = 60, .hw_value = 12, },
379 { .bitrate = 90, .hw_value = 18, },
380 { .bitrate = 120, .hw_value = 24, },
381 { .bitrate = 180, .hw_value = 36, },
382 { .bitrate = 240, .hw_value = 48, },
383 { .bitrate = 360, .hw_value = 72, },
384 { .bitrate = 480, .hw_value = 96, },
385 { .bitrate = 540, .hw_value = 108, },
386 { .bitrate = 720, .hw_value = 144, },
387};
388
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100389/* Set or get info from Firmware */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100390#define MWL8K_CMD_GET 0x0000
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800391#define MWL8K_CMD_SET 0x0001
392#define MWL8K_CMD_SET_LIST 0x0002
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100393
394/* Firmware command codes */
395#define MWL8K_CMD_CODE_DNLD 0x0001
396#define MWL8K_CMD_GET_HW_SPEC 0x0003
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200397#define MWL8K_CMD_SET_HW_SPEC 0x0004
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100398#define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010
399#define MWL8K_CMD_GET_STAT 0x0014
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200400#define MWL8K_CMD_RADIO_CONTROL 0x001c
401#define MWL8K_CMD_RF_TX_POWER 0x001e
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800402#define MWL8K_CMD_TX_POWER 0x001f
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200403#define MWL8K_CMD_RF_ANTENNA 0x0020
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100404#define MWL8K_CMD_SET_BEACON 0x0100 /* per-vif */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100405#define MWL8K_CMD_SET_PRE_SCAN 0x0107
406#define MWL8K_CMD_SET_POST_SCAN 0x0108
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200407#define MWL8K_CMD_SET_RF_CHANNEL 0x010a
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100408#define MWL8K_CMD_SET_AID 0x010d
409#define MWL8K_CMD_SET_RATE 0x0110
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200410#define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100411#define MWL8K_CMD_RTS_THRESHOLD 0x0113
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200412#define MWL8K_CMD_SET_SLOT 0x0114
413#define MWL8K_CMD_SET_EDCA_PARAMS 0x0115
414#define MWL8K_CMD_SET_WMM_MODE 0x0123
415#define MWL8K_CMD_MIMO_CONFIG 0x0125
416#define MWL8K_CMD_USE_FIXED_RATE 0x0126
417#define MWL8K_CMD_ENABLE_SNIFFER 0x0150
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100418#define MWL8K_CMD_SET_MAC_ADDR 0x0202 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200419#define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700420#define MWL8K_CMD_GET_WATCHDOG_BITMAP 0x0205
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +0530421#define MWL8K_CMD_DEL_MAC_ADDR 0x0206 /* per-vif */
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100422#define MWL8K_CMD_BSS_START 0x1100 /* per-vif */
423#define MWL8K_CMD_SET_NEW_STN 0x1111 /* per-vif */
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800424#define MWL8K_CMD_UPDATE_ENCRYPTION 0x1122 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200425#define MWL8K_CMD_UPDATE_STADB 0x1123
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700426#define MWL8K_CMD_BASTREAM 0x1125
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100427
John W. Linvilleb6037422010-07-20 13:55:00 -0400428static const char *mwl8k_cmd_name(__le16 cmd, char *buf, int bufsize)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100429{
John W. Linvilleb6037422010-07-20 13:55:00 -0400430 u16 command = le16_to_cpu(cmd);
431
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100432#define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\
433 snprintf(buf, bufsize, "%s", #x);\
434 return buf;\
435 } while (0)
John W. Linvilleb6037422010-07-20 13:55:00 -0400436 switch (command & ~0x8000) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100437 MWL8K_CMDNAME(CODE_DNLD);
438 MWL8K_CMDNAME(GET_HW_SPEC);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200439 MWL8K_CMDNAME(SET_HW_SPEC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100440 MWL8K_CMDNAME(MAC_MULTICAST_ADR);
441 MWL8K_CMDNAME(GET_STAT);
442 MWL8K_CMDNAME(RADIO_CONTROL);
443 MWL8K_CMDNAME(RF_TX_POWER);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800444 MWL8K_CMDNAME(TX_POWER);
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200445 MWL8K_CMDNAME(RF_ANTENNA);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100446 MWL8K_CMDNAME(SET_BEACON);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100447 MWL8K_CMDNAME(SET_PRE_SCAN);
448 MWL8K_CMDNAME(SET_POST_SCAN);
449 MWL8K_CMDNAME(SET_RF_CHANNEL);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100450 MWL8K_CMDNAME(SET_AID);
451 MWL8K_CMDNAME(SET_RATE);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200452 MWL8K_CMDNAME(SET_FINALIZE_JOIN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100453 MWL8K_CMDNAME(RTS_THRESHOLD);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200454 MWL8K_CMDNAME(SET_SLOT);
455 MWL8K_CMDNAME(SET_EDCA_PARAMS);
456 MWL8K_CMDNAME(SET_WMM_MODE);
457 MWL8K_CMDNAME(MIMO_CONFIG);
458 MWL8K_CMDNAME(USE_FIXED_RATE);
459 MWL8K_CMDNAME(ENABLE_SNIFFER);
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200460 MWL8K_CMDNAME(SET_MAC_ADDR);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200461 MWL8K_CMDNAME(SET_RATEADAPT_MODE);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100462 MWL8K_CMDNAME(BSS_START);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +0100463 MWL8K_CMDNAME(SET_NEW_STN);
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800464 MWL8K_CMDNAME(UPDATE_ENCRYPTION);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200465 MWL8K_CMDNAME(UPDATE_STADB);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700466 MWL8K_CMDNAME(BASTREAM);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700467 MWL8K_CMDNAME(GET_WATCHDOG_BITMAP);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100468 default:
469 snprintf(buf, bufsize, "0x%x", cmd);
470 }
471#undef MWL8K_CMDNAME
472
473 return buf;
474}
475
476/* Hardware and firmware reset */
477static void mwl8k_hw_reset(struct mwl8k_priv *priv)
478{
479 iowrite32(MWL8K_H2A_INT_RESET,
480 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
481 iowrite32(MWL8K_H2A_INT_RESET,
482 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
483 msleep(20);
484}
485
486/* Release fw image */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800487static void mwl8k_release_fw(const struct firmware **fw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100488{
489 if (*fw == NULL)
490 return;
491 release_firmware(*fw);
492 *fw = NULL;
493}
494
495static void mwl8k_release_firmware(struct mwl8k_priv *priv)
496{
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100497 mwl8k_release_fw(&priv->fw_ucode);
498 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100499}
500
Brian Cavagnolo99020472010-11-12 17:23:52 -0800501/* states for asynchronous f/w loading */
502static void mwl8k_fw_state_machine(const struct firmware *fw, void *context);
503enum {
504 FW_STATE_INIT = 0,
505 FW_STATE_LOADING_PREF,
506 FW_STATE_LOADING_ALT,
507 FW_STATE_ERROR,
508};
509
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100510/* Request fw image */
511static int mwl8k_request_fw(struct mwl8k_priv *priv,
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800512 const char *fname, const struct firmware **fw,
Brian Cavagnolo99020472010-11-12 17:23:52 -0800513 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100514{
515 /* release current image */
516 if (*fw != NULL)
517 mwl8k_release_fw(fw);
518
Brian Cavagnolo99020472010-11-12 17:23:52 -0800519 if (nowait)
520 return request_firmware_nowait(THIS_MODULE, 1, fname,
521 &priv->pdev->dev, GFP_KERNEL,
522 priv, mwl8k_fw_state_machine);
523 else
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800524 return request_firmware(fw, fname, &priv->pdev->dev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100525}
526
Brian Cavagnolo99020472010-11-12 17:23:52 -0800527static int mwl8k_request_firmware(struct mwl8k_priv *priv, char *fw_image,
528 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100529{
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200530 struct mwl8k_device_info *di = priv->device_info;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100531 int rc;
532
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200533 if (di->helper_image != NULL) {
Brian Cavagnolo99020472010-11-12 17:23:52 -0800534 if (nowait)
535 rc = mwl8k_request_fw(priv, di->helper_image,
536 &priv->fw_helper, true);
537 else
538 rc = mwl8k_request_fw(priv, di->helper_image,
539 &priv->fw_helper, false);
540 if (rc)
541 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
542 pci_name(priv->pdev), di->helper_image);
543
544 if (rc || nowait)
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200545 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100546 }
547
Brian Cavagnolo99020472010-11-12 17:23:52 -0800548 if (nowait) {
549 /*
550 * if we get here, no helper image is needed. Skip the
551 * FW_STATE_INIT state.
552 */
553 priv->fw_state = FW_STATE_LOADING_PREF;
554 rc = mwl8k_request_fw(priv, fw_image,
555 &priv->fw_ucode,
556 true);
557 } else
558 rc = mwl8k_request_fw(priv, fw_image,
559 &priv->fw_ucode, false);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100560 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200561 printk(KERN_ERR "%s: Error requesting firmware file %s\n",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800562 pci_name(priv->pdev), fw_image);
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100563 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100564 return rc;
565 }
566
567 return 0;
568}
569
570struct mwl8k_cmd_pkt {
571 __le16 code;
572 __le16 length;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100573 __u8 seq_num;
574 __u8 macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100575 __le16 result;
576 char payload[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000577} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100578
579/*
580 * Firmware loading.
581 */
582static int
583mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length)
584{
585 void __iomem *regs = priv->regs;
586 dma_addr_t dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100587 int loops;
588
589 dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE);
590 if (pci_dma_mapping_error(priv->pdev, dma_addr))
591 return -ENOMEM;
592
593 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
594 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
595 iowrite32(MWL8K_H2A_INT_DOORBELL,
596 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
597 iowrite32(MWL8K_H2A_INT_DUMMY,
598 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
599
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100600 loops = 1000;
601 do {
602 u32 int_code;
603
604 int_code = ioread32(regs + MWL8K_HIU_INT_CODE);
605 if (int_code == MWL8K_INT_CODE_CMD_FINISHED) {
606 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100607 break;
608 }
609
Lennert Buytenhek3d76e822009-10-22 20:20:16 +0200610 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100611 udelay(1);
612 } while (--loops);
613
614 pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE);
615
Lennert Buytenhekd4b70572009-07-16 12:44:45 +0200616 return loops ? 0 : -ETIMEDOUT;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100617}
618
619static int mwl8k_load_fw_image(struct mwl8k_priv *priv,
620 const u8 *data, size_t length)
621{
622 struct mwl8k_cmd_pkt *cmd;
623 int done;
624 int rc = 0;
625
626 cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL);
627 if (cmd == NULL)
628 return -ENOMEM;
629
630 cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD);
631 cmd->seq_num = 0;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100632 cmd->macid = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100633 cmd->result = 0;
634
635 done = 0;
636 while (length) {
637 int block_size = length > 256 ? 256 : length;
638
639 memcpy(cmd->payload, data + done, block_size);
640 cmd->length = cpu_to_le16(block_size);
641
642 rc = mwl8k_send_fw_load_cmd(priv, cmd,
643 sizeof(*cmd) + block_size);
644 if (rc)
645 break;
646
647 done += block_size;
648 length -= block_size;
649 }
650
651 if (!rc) {
652 cmd->length = 0;
653 rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd));
654 }
655
656 kfree(cmd);
657
658 return rc;
659}
660
661static int mwl8k_feed_fw_image(struct mwl8k_priv *priv,
662 const u8 *data, size_t length)
663{
664 unsigned char *buffer;
665 int may_continue, rc = 0;
666 u32 done, prev_block_size;
667
668 buffer = kmalloc(1024, GFP_KERNEL);
669 if (buffer == NULL)
670 return -ENOMEM;
671
672 done = 0;
673 prev_block_size = 0;
674 may_continue = 1000;
675 while (may_continue > 0) {
676 u32 block_size;
677
678 block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH);
679 if (block_size & 1) {
680 block_size &= ~1;
681 may_continue--;
682 } else {
683 done += prev_block_size;
684 length -= prev_block_size;
685 }
686
687 if (block_size > 1024 || block_size > length) {
688 rc = -EOVERFLOW;
689 break;
690 }
691
692 if (length == 0) {
693 rc = 0;
694 break;
695 }
696
697 if (block_size == 0) {
698 rc = -EPROTO;
699 may_continue--;
700 udelay(1);
701 continue;
702 }
703
704 prev_block_size = block_size;
705 memcpy(buffer, data + done, block_size);
706
707 rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size);
708 if (rc)
709 break;
710 }
711
712 if (!rc && length != 0)
713 rc = -EREMOTEIO;
714
715 kfree(buffer);
716
717 return rc;
718}
719
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200720static int mwl8k_load_firmware(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100721{
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200722 struct mwl8k_priv *priv = hw->priv;
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800723 const struct firmware *fw = priv->fw_ucode;
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200724 int rc;
725 int loops;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100726
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200727 if (!memcmp(fw->data, "\x01\x00\x00\x00", 4)) {
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800728 const struct firmware *helper = priv->fw_helper;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100729
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200730 if (helper == NULL) {
731 printk(KERN_ERR "%s: helper image needed but none "
732 "given\n", pci_name(priv->pdev));
733 return -EINVAL;
734 }
735
736 rc = mwl8k_load_fw_image(priv, helper->data, helper->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100737 if (rc) {
738 printk(KERN_ERR "%s: unable to load firmware "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200739 "helper image\n", pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100740 return rc;
741 }
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +0530742 msleep(20);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100743
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200744 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100745 } else {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200746 rc = mwl8k_load_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100747 }
748
749 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200750 printk(KERN_ERR "%s: unable to load firmware image\n",
751 pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100752 return rc;
753 }
754
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100755 iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100756
Lennert Buytenhek89b872e2009-11-30 18:13:20 +0100757 loops = 500000;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100758 do {
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200759 u32 ready_code;
760
761 ready_code = ioread32(priv->regs + MWL8K_HIU_INT_CODE);
762 if (ready_code == MWL8K_FWAP_READY) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000763 priv->ap_fw = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100764 break;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200765 } else if (ready_code == MWL8K_FWSTA_READY) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000766 priv->ap_fw = false;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200767 break;
768 }
769
770 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100771 udelay(1);
772 } while (--loops);
773
774 return loops ? 0 : -ETIMEDOUT;
775}
776
777
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100778/* DMA header used by firmware and hardware. */
779struct mwl8k_dma_data {
780 __le16 fwlen;
781 struct ieee80211_hdr wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100782 char data[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000783} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100784
785/* Routines to add/remove DMA header from skb. */
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100786static inline void mwl8k_remove_dma_header(struct sk_buff *skb, __le16 qos)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100787{
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100788 struct mwl8k_dma_data *tr;
789 int hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100790
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100791 tr = (struct mwl8k_dma_data *)skb->data;
792 hdrlen = ieee80211_hdrlen(tr->wh.frame_control);
793
794 if (hdrlen != sizeof(tr->wh)) {
795 if (ieee80211_is_data_qos(tr->wh.frame_control)) {
796 memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2);
797 *((__le16 *)(tr->data - 2)) = qos;
798 } else {
799 memmove(tr->data - hdrlen, &tr->wh, hdrlen);
800 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100801 }
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100802
803 if (hdrlen != sizeof(*tr))
804 skb_pull(skb, sizeof(*tr) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100805}
806
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530807#define REDUCED_TX_HEADROOM 8
808
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800809static void
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530810mwl8k_add_dma_header(struct mwl8k_priv *priv, struct sk_buff *skb,
811 int head_pad, int tail_pad)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100812{
813 struct ieee80211_hdr *wh;
Lennert Buytenhekca009302009-11-30 18:12:20 +0100814 int hdrlen;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800815 int reqd_hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100816 struct mwl8k_dma_data *tr;
817
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100818 /*
Lennert Buytenhekca009302009-11-30 18:12:20 +0100819 * Add a firmware DMA header; the firmware requires that we
820 * present a 2-byte payload length followed by a 4-address
821 * header (without QoS field), followed (optionally) by any
822 * WEP/ExtIV header (but only filled in for CCMP).
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100823 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100824 wh = (struct ieee80211_hdr *)skb->data;
825
826 hdrlen = ieee80211_hdrlen(wh->frame_control);
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530827
828 /*
829 * Check if skb_resize is required because of
830 * tx_headroom adjustment.
831 */
832 if (priv->ap_fw && (hdrlen < (sizeof(struct ieee80211_cts)
833 + REDUCED_TX_HEADROOM))) {
834 if (pskb_expand_head(skb, REDUCED_TX_HEADROOM, 0, GFP_ATOMIC)) {
835
836 wiphy_err(priv->hw->wiphy,
837 "Failed to reallocate TX buffer\n");
838 return;
839 }
840 skb->truesize += REDUCED_TX_HEADROOM;
841 }
842
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530843 reqd_hdrlen = sizeof(*tr) + head_pad;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800844
845 if (hdrlen != reqd_hdrlen)
846 skb_push(skb, reqd_hdrlen - hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100847
848 if (ieee80211_is_data_qos(wh->frame_control))
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800849 hdrlen -= IEEE80211_QOS_CTL_LEN;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100850
851 tr = (struct mwl8k_dma_data *)skb->data;
852 if (wh != &tr->wh)
853 memmove(&tr->wh, wh, hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100854 if (hdrlen != sizeof(tr->wh))
855 memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100856
857 /*
858 * Firmware length is the length of the fully formed "802.11
859 * payload". That is, everything except for the 802.11 header.
860 * This includes all crypto material including the MIC.
861 */
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800862 tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr) + tail_pad);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100863}
864
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530865static void mwl8k_encapsulate_tx_frame(struct mwl8k_priv *priv,
866 struct sk_buff *skb)
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800867{
868 struct ieee80211_hdr *wh;
869 struct ieee80211_tx_info *tx_info;
870 struct ieee80211_key_conf *key_conf;
871 int data_pad;
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530872 int head_pad = 0;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800873
874 wh = (struct ieee80211_hdr *)skb->data;
875
876 tx_info = IEEE80211_SKB_CB(skb);
877
878 key_conf = NULL;
879 if (ieee80211_is_data(wh->frame_control))
880 key_conf = tx_info->control.hw_key;
881
882 /*
883 * Make sure the packet header is in the DMA header format (4-address
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530884 * without QoS), and add head & tail padding when HW crypto is enabled.
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800885 *
886 * We have the following trailer padding requirements:
887 * - WEP: 4 trailer bytes (ICV)
888 * - TKIP: 12 trailer bytes (8 MIC + 4 ICV)
889 * - CCMP: 8 trailer bytes (MIC)
890 */
891 data_pad = 0;
892 if (key_conf != NULL) {
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530893 head_pad = key_conf->iv_len;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800894 switch (key_conf->cipher) {
895 case WLAN_CIPHER_SUITE_WEP40:
896 case WLAN_CIPHER_SUITE_WEP104:
897 data_pad = 4;
898 break;
899 case WLAN_CIPHER_SUITE_TKIP:
900 data_pad = 12;
901 break;
902 case WLAN_CIPHER_SUITE_CCMP:
903 data_pad = 8;
904 break;
905 }
906 }
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530907 mwl8k_add_dma_header(priv, skb, head_pad, data_pad);
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800908}
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100909
910/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100911 * Packet reception for 88w8366 AP firmware.
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200912 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100913struct mwl8k_rxd_8366_ap {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200914 __le16 pkt_len;
915 __u8 sq2;
916 __u8 rate;
917 __le32 pkt_phys_addr;
918 __le32 next_rxd_phys_addr;
919 __le16 qos_control;
920 __le16 htsig2;
921 __le32 hw_rssi_info;
922 __le32 hw_noise_floor_info;
923 __u8 noise_floor;
924 __u8 pad0[3];
925 __u8 rssi;
926 __u8 rx_status;
927 __u8 channel;
928 __u8 rx_ctrl;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000929} __packed;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200930
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100931#define MWL8K_8366_AP_RATE_INFO_MCS_FORMAT 0x80
932#define MWL8K_8366_AP_RATE_INFO_40MHZ 0x40
933#define MWL8K_8366_AP_RATE_INFO_RATEID(x) ((x) & 0x3f)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100934
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100935#define MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST 0x80
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200936
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800937/* 8366 AP rx_status bits */
938#define MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK 0x80
939#define MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR 0xFF
940#define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR 0x02
941#define MWL8K_8366_AP_RXSTAT_WEP_DECRYPT_ICV_ERR 0x04
942#define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_ICV_ERR 0x08
943
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100944static void mwl8k_rxd_8366_ap_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200945{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100946 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200947
948 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100949 rxd->rx_ctrl = MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200950}
951
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100952static void mwl8k_rxd_8366_ap_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200953{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100954 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200955
956 rxd->pkt_len = cpu_to_le16(len);
957 rxd->pkt_phys_addr = cpu_to_le32(addr);
958 wmb();
959 rxd->rx_ctrl = 0;
960}
961
962static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100963mwl8k_rxd_8366_ap_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -0400964 __le16 *qos, s8 *noise)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200965{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100966 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200967
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100968 if (!(rxd->rx_ctrl & MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200969 return -1;
970 rmb();
971
972 memset(status, 0, sizeof(*status));
973
974 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -0400975 *noise = -rxd->noise_floor;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200976
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100977 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_MCS_FORMAT) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200978 status->flag |= RX_FLAG_HT;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100979 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_40MHZ)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100980 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100981 status->rate_idx = MWL8K_8366_AP_RATE_INFO_RATEID(rxd->rate);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200982 } else {
983 int i;
984
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100985 for (i = 0; i < ARRAY_SIZE(mwl8k_rates_24); i++) {
986 if (mwl8k_rates_24[i].hw_value == rxd->rate) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200987 status->rate_idx = i;
988 break;
989 }
990 }
991 }
992
Lennert Buytenhek85478342010-01-12 13:48:56 +0100993 if (rxd->channel > 14) {
994 status->band = IEEE80211_BAND_5GHZ;
995 if (!(status->flag & RX_FLAG_HT))
996 status->rate_idx -= 5;
997 } else {
998 status->band = IEEE80211_BAND_2GHZ;
999 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001000 status->freq = ieee80211_channel_to_frequency(rxd->channel,
1001 status->band);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001002
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001003 *qos = rxd->qos_control;
1004
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001005 if ((rxd->rx_status != MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR) &&
1006 (rxd->rx_status & MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK) &&
1007 (rxd->rx_status & MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR))
1008 status->flag |= RX_FLAG_MMIC_ERROR;
1009
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001010 return le16_to_cpu(rxd->pkt_len);
1011}
1012
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001013static struct rxd_ops rxd_8366_ap_ops = {
1014 .rxd_size = sizeof(struct mwl8k_rxd_8366_ap),
1015 .rxd_init = mwl8k_rxd_8366_ap_init,
1016 .rxd_refill = mwl8k_rxd_8366_ap_refill,
1017 .rxd_process = mwl8k_rxd_8366_ap_process,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001018};
1019
1020/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001021 * Packet reception for STA firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001022 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001023struct mwl8k_rxd_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001024 __le16 pkt_len;
1025 __u8 link_quality;
1026 __u8 noise_level;
1027 __le32 pkt_phys_addr;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001028 __le32 next_rxd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001029 __le16 qos_control;
1030 __le16 rate_info;
1031 __le32 pad0[4];
1032 __u8 rssi;
1033 __u8 channel;
1034 __le16 pad1;
1035 __u8 rx_ctrl;
1036 __u8 rx_status;
1037 __u8 pad2[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +00001038} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001039
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001040#define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000
1041#define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3)
1042#define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f)
1043#define MWL8K_STA_RATE_INFO_40MHZ 0x0004
1044#define MWL8K_STA_RATE_INFO_SHORTGI 0x0002
1045#define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001046
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001047#define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001048#define MWL8K_STA_RX_CTRL_DECRYPT_ERROR 0x04
1049/* ICV=0 or MIC=1 */
1050#define MWL8K_STA_RX_CTRL_DEC_ERR_TYPE 0x08
1051/* Key is uploaded only in failure case */
1052#define MWL8K_STA_RX_CTRL_KEY_INDEX 0x30
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001053
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001054static void mwl8k_rxd_sta_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001055{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001056 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001057
1058 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001059 rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001060}
1061
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001062static void mwl8k_rxd_sta_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001063{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001064 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001065
1066 rxd->pkt_len = cpu_to_le16(len);
1067 rxd->pkt_phys_addr = cpu_to_le32(addr);
1068 wmb();
1069 rxd->rx_ctrl = 0;
1070}
1071
1072static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001073mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -04001074 __le16 *qos, s8 *noise)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001075{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001076 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001077 u16 rate_info;
1078
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001079 if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001080 return -1;
1081 rmb();
1082
1083 rate_info = le16_to_cpu(rxd->rate_info);
1084
1085 memset(status, 0, sizeof(*status));
1086
1087 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -04001088 *noise = -rxd->noise_level;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001089 status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info);
1090 status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001091
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001092 if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001093 status->flag |= RX_FLAG_SHORTPRE;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001094 if (rate_info & MWL8K_STA_RATE_INFO_40MHZ)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001095 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001096 if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001097 status->flag |= RX_FLAG_SHORT_GI;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001098 if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001099 status->flag |= RX_FLAG_HT;
1100
Lennert Buytenhek85478342010-01-12 13:48:56 +01001101 if (rxd->channel > 14) {
1102 status->band = IEEE80211_BAND_5GHZ;
1103 if (!(status->flag & RX_FLAG_HT))
1104 status->rate_idx -= 5;
1105 } else {
1106 status->band = IEEE80211_BAND_2GHZ;
1107 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001108 status->freq = ieee80211_channel_to_frequency(rxd->channel,
1109 status->band);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001110
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001111 *qos = rxd->qos_control;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001112 if ((rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DECRYPT_ERROR) &&
1113 (rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DEC_ERR_TYPE))
1114 status->flag |= RX_FLAG_MMIC_ERROR;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001115
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001116 return le16_to_cpu(rxd->pkt_len);
1117}
1118
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001119static struct rxd_ops rxd_sta_ops = {
1120 .rxd_size = sizeof(struct mwl8k_rxd_sta),
1121 .rxd_init = mwl8k_rxd_sta_init,
1122 .rxd_refill = mwl8k_rxd_sta_refill,
1123 .rxd_process = mwl8k_rxd_sta_process,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001124};
1125
1126
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001127#define MWL8K_RX_DESCS 256
1128#define MWL8K_RX_MAXSZ 3800
1129
1130static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
1131{
1132 struct mwl8k_priv *priv = hw->priv;
1133 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1134 int size;
1135 int i;
1136
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001137 rxq->rxd_count = 0;
1138 rxq->head = 0;
1139 rxq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001140
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001141 size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001142
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001143 rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma);
1144 if (rxq->rxd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001145 wiphy_err(hw->wiphy, "failed to alloc RX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001146 return -ENOMEM;
1147 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001148 memset(rxq->rxd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001149
Shan Weib9ede5f2011-03-08 11:02:03 +08001150 rxq->buf = kcalloc(MWL8K_RX_DESCS, sizeof(*rxq->buf), GFP_KERNEL);
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001151 if (rxq->buf == NULL) {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001152 pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001153 return -ENOMEM;
1154 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001155
1156 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001157 int desc_size;
1158 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001159 int nexti;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001160 dma_addr_t next_dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001161
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001162 desc_size = priv->rxd_ops->rxd_size;
1163 rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001164
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001165 nexti = i + 1;
1166 if (nexti == MWL8K_RX_DESCS)
1167 nexti = 0;
1168 next_dma_addr = rxq->rxd_dma + (nexti * desc_size);
1169
1170 priv->rxd_ops->rxd_init(rxd, next_dma_addr);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001171 }
1172
1173 return 0;
1174}
1175
1176static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
1177{
1178 struct mwl8k_priv *priv = hw->priv;
1179 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1180 int refilled;
1181
1182 refilled = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001183 while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001184 struct sk_buff *skb;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001185 dma_addr_t addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001186 int rx;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001187 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001188
1189 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
1190 if (skb == NULL)
1191 break;
1192
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001193 addr = pci_map_single(priv->pdev, skb->data,
1194 MWL8K_RX_MAXSZ, DMA_FROM_DEVICE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001195
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001196 rxq->rxd_count++;
1197 rx = rxq->tail++;
1198 if (rxq->tail == MWL8K_RX_DESCS)
1199 rxq->tail = 0;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001200 rxq->buf[rx].skb = skb;
FUJITA Tomonori53b1b3e12010-04-02 13:10:38 +09001201 dma_unmap_addr_set(&rxq->buf[rx], dma, addr);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001202
1203 rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size);
1204 priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001205
1206 refilled++;
1207 }
1208
1209 return refilled;
1210}
1211
1212/* Must be called only when the card's reception is completely halted */
1213static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
1214{
1215 struct mwl8k_priv *priv = hw->priv;
1216 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1217 int i;
1218
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001219 if (rxq->rxd == NULL)
1220 return;
1221
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001222 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001223 if (rxq->buf[i].skb != NULL) {
1224 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e12010-04-02 13:10:38 +09001225 dma_unmap_addr(&rxq->buf[i], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001226 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e12010-04-02 13:10:38 +09001227 dma_unmap_addr_set(&rxq->buf[i], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001228
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001229 kfree_skb(rxq->buf[i].skb);
1230 rxq->buf[i].skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001231 }
1232 }
1233
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001234 kfree(rxq->buf);
1235 rxq->buf = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001236
1237 pci_free_consistent(priv->pdev,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001238 MWL8K_RX_DESCS * priv->rxd_ops->rxd_size,
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001239 rxq->rxd, rxq->rxd_dma);
1240 rxq->rxd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001241}
1242
1243
1244/*
1245 * Scan a list of BSSIDs to process for finalize join.
1246 * Allows for extension to process multiple BSSIDs.
1247 */
1248static inline int
1249mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
1250{
1251 return priv->capture_beacon &&
1252 ieee80211_is_beacon(wh->frame_control) &&
Joe Perches2e42e472012-05-09 17:17:46 +00001253 ether_addr_equal(wh->addr3, priv->capture_bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001254}
1255
Lennert Buytenhek37797522009-10-22 20:19:45 +02001256static inline void mwl8k_save_beacon(struct ieee80211_hw *hw,
1257 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001258{
Lennert Buytenhek37797522009-10-22 20:19:45 +02001259 struct mwl8k_priv *priv = hw->priv;
1260
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001261 priv->capture_beacon = false;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001262 memset(priv->capture_bssid, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001263
1264 /*
1265 * Use GFP_ATOMIC as rxq_process is called from
1266 * the primary interrupt handler, memory allocation call
1267 * must not sleep.
1268 */
1269 priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
1270 if (priv->beacon_skb != NULL)
Lennert Buytenhek37797522009-10-22 20:19:45 +02001271 ieee80211_queue_work(hw, &priv->finalize_join_worker);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001272}
1273
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001274static inline struct mwl8k_vif *mwl8k_find_vif_bss(struct list_head *vif_list,
1275 u8 *bssid)
1276{
1277 struct mwl8k_vif *mwl8k_vif;
1278
1279 list_for_each_entry(mwl8k_vif,
1280 vif_list, list) {
1281 if (memcmp(bssid, mwl8k_vif->bssid,
1282 ETH_ALEN) == 0)
1283 return mwl8k_vif;
1284 }
1285
1286 return NULL;
1287}
1288
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001289static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
1290{
1291 struct mwl8k_priv *priv = hw->priv;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001292 struct mwl8k_vif *mwl8k_vif = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001293 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1294 int processed;
1295
1296 processed = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001297 while (rxq->rxd_count && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001298 struct sk_buff *skb;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001299 void *rxd;
1300 int pkt_len;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001301 struct ieee80211_rx_status status;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001302 struct ieee80211_hdr *wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001303 __le16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001304
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001305 skb = rxq->buf[rxq->head].skb;
Lennert Buytenhekd25f9f12009-08-03 21:58:26 +02001306 if (skb == NULL)
1307 break;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001308
1309 rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size);
1310
John W. Linville0d462bb2010-07-28 14:04:24 -04001311 pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos,
1312 &priv->noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001313 if (pkt_len < 0)
1314 break;
1315
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001316 rxq->buf[rxq->head].skb = NULL;
1317
1318 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e12010-04-02 13:10:38 +09001319 dma_unmap_addr(&rxq->buf[rxq->head], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001320 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e12010-04-02 13:10:38 +09001321 dma_unmap_addr_set(&rxq->buf[rxq->head], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001322
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001323 rxq->head++;
1324 if (rxq->head == MWL8K_RX_DESCS)
1325 rxq->head = 0;
1326
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001327 rxq->rxd_count--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001328
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001329 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001330
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001331 /*
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001332 * Check for a pending join operation. Save a
1333 * copy of the beacon and schedule a tasklet to
1334 * send a FINALIZE_JOIN command to the firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001335 */
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001336 if (mwl8k_capture_bssid(priv, (void *)skb->data))
Lennert Buytenhek37797522009-10-22 20:19:45 +02001337 mwl8k_save_beacon(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001338
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001339 if (ieee80211_has_protected(wh->frame_control)) {
1340
1341 /* Check if hw crypto has been enabled for
1342 * this bss. If yes, set the status flags
1343 * accordingly
1344 */
1345 mwl8k_vif = mwl8k_find_vif_bss(&priv->vif_list,
1346 wh->addr1);
1347
1348 if (mwl8k_vif != NULL &&
Joe Perches23677ce2012-02-09 11:17:23 +00001349 mwl8k_vif->is_hw_crypto_enabled) {
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001350 /*
1351 * When MMIC ERROR is encountered
1352 * by the firmware, payload is
1353 * dropped and only 32 bytes of
1354 * mwl8k Firmware header is sent
1355 * to the host.
1356 *
1357 * We need to add four bytes of
1358 * key information. In it
1359 * MAC80211 expects keyidx set to
1360 * 0 for triggering Counter
1361 * Measure of MMIC failure.
1362 */
1363 if (status.flag & RX_FLAG_MMIC_ERROR) {
1364 struct mwl8k_dma_data *tr;
1365 tr = (struct mwl8k_dma_data *)skb->data;
1366 memset((void *)&(tr->data), 0, 4);
1367 pkt_len += 4;
1368 }
1369
1370 if (!ieee80211_is_auth(wh->frame_control))
1371 status.flag |= RX_FLAG_IV_STRIPPED |
1372 RX_FLAG_DECRYPTED |
1373 RX_FLAG_MMIC_STRIPPED;
1374 }
1375 }
1376
1377 skb_put(skb, pkt_len);
1378 mwl8k_remove_dma_header(skb, qos);
Johannes Bergf1d58c22009-06-17 13:13:00 +02001379 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
1380 ieee80211_rx_irqsafe(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001381
1382 processed++;
1383 }
1384
1385 return processed;
1386}
1387
1388
1389/*
1390 * Packet transmission.
1391 */
1392
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001393#define MWL8K_TXD_STATUS_OK 0x00000001
1394#define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
1395#define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
1396#define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001397#define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001398
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001399#define MWL8K_QOS_QLEN_UNSPEC 0xff00
1400#define MWL8K_QOS_ACK_POLICY_MASK 0x0060
1401#define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000
1402#define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060
1403#define MWL8K_QOS_EOSP 0x0010
1404
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001405struct mwl8k_tx_desc {
1406 __le32 status;
1407 __u8 data_rate;
1408 __u8 tx_priority;
1409 __le16 qos_control;
1410 __le32 pkt_phys_addr;
1411 __le16 pkt_len;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001412 __u8 dest_MAC_addr[ETH_ALEN];
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001413 __le32 next_txd_phys_addr;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07001414 __le32 timestamp;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001415 __le16 rate_info;
1416 __u8 peer_id;
Brian Cavagnoloa1fe24b2010-11-12 17:23:47 -08001417 __u8 tx_frag_cnt;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001418} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001419
1420#define MWL8K_TX_DESCS 128
1421
1422static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1423{
1424 struct mwl8k_priv *priv = hw->priv;
1425 struct mwl8k_tx_queue *txq = priv->txq + index;
1426 int size;
1427 int i;
1428
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001429 txq->len = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001430 txq->head = 0;
1431 txq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001432
1433 size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1434
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001435 txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma);
1436 if (txq->txd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001437 wiphy_err(hw->wiphy, "failed to alloc TX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001438 return -ENOMEM;
1439 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001440 memset(txq->txd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001441
Shan Weib9ede5f2011-03-08 11:02:03 +08001442 txq->skb = kcalloc(MWL8K_TX_DESCS, sizeof(*txq->skb), GFP_KERNEL);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001443 if (txq->skb == NULL) {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001444 pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001445 return -ENOMEM;
1446 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001447
1448 for (i = 0; i < MWL8K_TX_DESCS; i++) {
1449 struct mwl8k_tx_desc *tx_desc;
1450 int nexti;
1451
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001452 tx_desc = txq->txd + i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001453 nexti = (i + 1) % MWL8K_TX_DESCS;
1454
1455 tx_desc->status = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001456 tx_desc->next_txd_phys_addr =
1457 cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001458 }
1459
1460 return 0;
1461}
1462
1463static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1464{
1465 iowrite32(MWL8K_H2A_INT_PPA_READY,
1466 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1467 iowrite32(MWL8K_H2A_INT_DUMMY,
1468 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1469 ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1470}
1471
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001472static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001473{
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001474 struct mwl8k_priv *priv = hw->priv;
1475 int i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001476
Brian Cavagnoloe6007072011-03-17 11:58:44 -07001477 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001478 struct mwl8k_tx_queue *txq = priv->txq + i;
1479 int fw_owned = 0;
1480 int drv_owned = 0;
1481 int unused = 0;
1482 int desc;
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001483
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001484 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001485 struct mwl8k_tx_desc *tx_desc = txq->txd + desc;
1486 u32 status;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001487
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001488 status = le32_to_cpu(tx_desc->status);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001489 if (status & MWL8K_TXD_STATUS_FW_OWNED)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001490 fw_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001491 else
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001492 drv_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001493
1494 if (tx_desc->pkt_len == 0)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001495 unused++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001496 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001497
Joe Perchesc96c31e2010-07-26 14:39:58 -07001498 wiphy_err(hw->wiphy,
1499 "txq[%d] len=%d head=%d tail=%d "
1500 "fw_owned=%d drv_owned=%d unused=%d\n",
1501 i,
1502 txq->len, txq->head, txq->tail,
1503 fw_owned, drv_owned, unused);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001504 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001505}
1506
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001507/*
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001508 * Must be called with priv->fw_mutex held and tx queues stopped.
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001509 */
Lennert Buytenhek62abd3c2010-01-08 18:28:34 +01001510#define MWL8K_TX_WAIT_TIMEOUT_MS 5000
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001511
Lennert Buytenhek950d5b02009-07-17 01:48:41 +02001512static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001513{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001514 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001515 DECLARE_COMPLETION_ONSTACK(tx_wait);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001516 int retry;
1517 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001518
1519 might_sleep();
1520
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05301521 /* Since fw restart is in progress, allow only the firmware
1522 * commands from the restart code and block the other
1523 * commands since they are going to fail in any case since
1524 * the firmware has crashed
1525 */
1526 if (priv->hw_restart_in_progress) {
1527 if (priv->hw_restart_owner == current)
1528 return 0;
1529 else
1530 return -EBUSY;
1531 }
1532
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05301533 if (atomic_read(&priv->watchdog_event_pending))
1534 return 0;
1535
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001536 /*
1537 * The TX queues are stopped at this point, so this test
1538 * doesn't need to take ->tx_lock.
1539 */
1540 if (!priv->pending_tx_pkts)
1541 return 0;
1542
1543 retry = 0;
1544 rc = 0;
1545
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001546 spin_lock_bh(&priv->tx_lock);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001547 priv->tx_wait = &tx_wait;
1548 while (!rc) {
1549 int oldcount;
1550 unsigned long timeout;
1551
1552 oldcount = priv->pending_tx_pkts;
1553
1554 spin_unlock_bh(&priv->tx_lock);
1555 timeout = wait_for_completion_timeout(&tx_wait,
1556 msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS));
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05301557
1558 if (atomic_read(&priv->watchdog_event_pending)) {
1559 spin_lock_bh(&priv->tx_lock);
1560 priv->tx_wait = NULL;
1561 spin_unlock_bh(&priv->tx_lock);
1562 return 0;
1563 }
1564
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001565 spin_lock_bh(&priv->tx_lock);
1566
1567 if (timeout) {
1568 WARN_ON(priv->pending_tx_pkts);
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301569 if (retry)
Joe Perchesc96c31e2010-07-26 14:39:58 -07001570 wiphy_notice(hw->wiphy, "tx rings drained\n");
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001571 break;
1572 }
1573
1574 if (priv->pending_tx_pkts < oldcount) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001575 wiphy_notice(hw->wiphy,
1576 "waiting for tx rings to drain (%d -> %d pkts)\n",
1577 oldcount, priv->pending_tx_pkts);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001578 retry = 1;
1579 continue;
1580 }
1581
1582 priv->tx_wait = NULL;
1583
Joe Perchesc96c31e2010-07-26 14:39:58 -07001584 wiphy_err(hw->wiphy, "tx rings stuck for %d ms\n",
1585 MWL8K_TX_WAIT_TIMEOUT_MS);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001586 mwl8k_dump_tx_rings(hw);
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05301587 priv->hw_restart_in_progress = true;
1588 ieee80211_queue_work(hw, &priv->fw_reload);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001589
1590 rc = -ETIMEDOUT;
1591 }
Nishant Sarmukadam9b0b11f2013-01-08 10:16:05 +05301592 priv->tx_wait = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001593 spin_unlock_bh(&priv->tx_lock);
1594
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001595 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001596}
1597
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02001598#define MWL8K_TXD_SUCCESS(status) \
1599 ((status) & (MWL8K_TXD_STATUS_OK | \
1600 MWL8K_TXD_STATUS_OK_RETRY | \
1601 MWL8K_TXD_STATUS_OK_MORE_RETRY))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001602
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001603static int mwl8k_tid_queue_mapping(u8 tid)
1604{
1605 BUG_ON(tid > 7);
1606
1607 switch (tid) {
1608 case 0:
1609 case 3:
1610 return IEEE80211_AC_BE;
1611 break;
1612 case 1:
1613 case 2:
1614 return IEEE80211_AC_BK;
1615 break;
1616 case 4:
1617 case 5:
1618 return IEEE80211_AC_VI;
1619 break;
1620 case 6:
1621 case 7:
1622 return IEEE80211_AC_VO;
1623 break;
1624 default:
1625 return -1;
1626 break;
1627 }
1628}
1629
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001630/* The firmware will fill in the rate information
1631 * for each packet that gets queued in the hardware
John W. Linville49adc5c2011-04-27 15:04:28 -04001632 * and these macros will interpret that info.
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001633 */
1634
John W. Linville49adc5c2011-04-27 15:04:28 -04001635#define RI_FORMAT(a) (a & 0x0001)
1636#define RI_RATE_ID_MCS(a) ((a & 0x01f8) >> 3)
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001637
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001638static int
1639mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001640{
1641 struct mwl8k_priv *priv = hw->priv;
1642 struct mwl8k_tx_queue *txq = priv->txq + index;
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001643 int processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001644
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001645 processed = 0;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001646 while (txq->len > 0 && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001647 int tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001648 struct mwl8k_tx_desc *tx_desc;
1649 unsigned long addr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001650 int size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001651 struct sk_buff *skb;
1652 struct ieee80211_tx_info *info;
1653 u32 status;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001654 struct ieee80211_sta *sta;
1655 struct mwl8k_sta *sta_info = NULL;
1656 u16 rate_info;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001657 struct ieee80211_hdr *wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001658
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001659 tx = txq->head;
1660 tx_desc = txq->txd + tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001661
1662 status = le32_to_cpu(tx_desc->status);
1663
1664 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1665 if (!force)
1666 break;
1667 tx_desc->status &=
1668 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1669 }
1670
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001671 txq->head = (tx + 1) % MWL8K_TX_DESCS;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001672 BUG_ON(txq->len == 0);
1673 txq->len--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001674 priv->pending_tx_pkts--;
1675
1676 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001677 size = le16_to_cpu(tx_desc->pkt_len);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001678 skb = txq->skb[tx];
1679 txq->skb[tx] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001680
1681 BUG_ON(skb == NULL);
1682 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1683
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001684 mwl8k_remove_dma_header(skb, tx_desc->qos_control);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001685
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001686 wh = (struct ieee80211_hdr *) skb->data;
1687
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001688 /* Mark descriptor as unused */
1689 tx_desc->pkt_phys_addr = 0;
1690 tx_desc->pkt_len = 0;
1691
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001692 info = IEEE80211_SKB_CB(skb);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001693 if (ieee80211_is_data(wh->frame_control)) {
Thomas Huehn89e11802012-07-11 13:21:41 +02001694 rcu_read_lock();
1695 sta = ieee80211_find_sta_by_ifaddr(hw, wh->addr1,
1696 wh->addr2);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001697 if (sta) {
1698 sta_info = MWL8K_STA(sta);
1699 BUG_ON(sta_info == NULL);
1700 rate_info = le16_to_cpu(tx_desc->rate_info);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001701 /* If rate is < 6.5 Mpbs for an ht station
1702 * do not form an ampdu. If the station is a
1703 * legacy station (format = 0), do not form an
1704 * ampdu
1705 */
John W. Linville49adc5c2011-04-27 15:04:28 -04001706 if (RI_RATE_ID_MCS(rate_info) < 1 ||
1707 RI_FORMAT(rate_info) == 0) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001708 sta_info->is_ampdu_allowed = false;
1709 } else {
1710 sta_info->is_ampdu_allowed = true;
1711 }
1712 }
Thomas Huehn89e11802012-07-11 13:21:41 +02001713 rcu_read_unlock();
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001714 }
1715
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001716 ieee80211_tx_info_clear_status(info);
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001717
1718 /* Rate control is happening in the firmware.
1719 * Ensure no tx rate is being reported.
1720 */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301721 info->status.rates[0].idx = -1;
1722 info->status.rates[0].count = 1;
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001723
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001724 if (MWL8K_TXD_SUCCESS(status))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001725 info->flags |= IEEE80211_TX_STAT_ACK;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001726
1727 ieee80211_tx_status_irqsafe(hw, skb);
1728
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001729 processed++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001730 }
1731
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001732 return processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001733}
1734
1735/* must be called only when the card's transmit is completely halted */
1736static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1737{
1738 struct mwl8k_priv *priv = hw->priv;
1739 struct mwl8k_tx_queue *txq = priv->txq + index;
1740
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001741 if (txq->txd == NULL)
1742 return;
1743
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001744 mwl8k_txq_reclaim(hw, index, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001745
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001746 kfree(txq->skb);
1747 txq->skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001748
1749 pci_free_consistent(priv->pdev,
1750 MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001751 txq->txd, txq->txd_dma);
1752 txq->txd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001753}
1754
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001755/* caller must hold priv->stream_lock when calling the stream functions */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301756static struct mwl8k_ampdu_stream *
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001757mwl8k_add_stream(struct ieee80211_hw *hw, struct ieee80211_sta *sta, u8 tid)
1758{
1759 struct mwl8k_ampdu_stream *stream;
1760 struct mwl8k_priv *priv = hw->priv;
1761 int i;
1762
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301763 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001764 stream = &priv->ampdu[i];
1765 if (stream->state == AMPDU_NO_STREAM) {
1766 stream->sta = sta;
1767 stream->state = AMPDU_STREAM_NEW;
1768 stream->tid = tid;
1769 stream->idx = i;
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001770 wiphy_debug(hw->wiphy, "Added a new stream for %pM %d",
1771 sta->addr, tid);
1772 return stream;
1773 }
1774 }
1775 return NULL;
1776}
1777
1778static int
1779mwl8k_start_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1780{
1781 int ret;
1782
1783 /* if the stream has already been started, don't start it again */
1784 if (stream->state != AMPDU_STREAM_NEW)
1785 return 0;
1786 ret = ieee80211_start_tx_ba_session(stream->sta, stream->tid, 0);
1787 if (ret)
1788 wiphy_debug(hw->wiphy, "Failed to start stream for %pM %d: "
1789 "%d\n", stream->sta->addr, stream->tid, ret);
1790 else
1791 wiphy_debug(hw->wiphy, "Started stream for %pM %d\n",
1792 stream->sta->addr, stream->tid);
1793 return ret;
1794}
1795
1796static void
1797mwl8k_remove_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1798{
1799 wiphy_debug(hw->wiphy, "Remove stream for %pM %d\n", stream->sta->addr,
1800 stream->tid);
1801 memset(stream, 0, sizeof(*stream));
1802}
1803
1804static struct mwl8k_ampdu_stream *
1805mwl8k_lookup_stream(struct ieee80211_hw *hw, u8 *addr, u8 tid)
1806{
1807 struct mwl8k_priv *priv = hw->priv;
1808 int i;
1809
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301810 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001811 struct mwl8k_ampdu_stream *stream;
1812 stream = &priv->ampdu[i];
1813 if (stream->state == AMPDU_NO_STREAM)
1814 continue;
1815 if (!memcmp(stream->sta->addr, addr, ETH_ALEN) &&
1816 stream->tid == tid)
1817 return stream;
1818 }
1819 return NULL;
1820}
1821
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001822#define MWL8K_AMPDU_PACKET_THRESHOLD 64
1823static inline bool mwl8k_ampdu_allowed(struct ieee80211_sta *sta, u8 tid)
1824{
1825 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1826 struct tx_traffic_info *tx_stats;
1827
1828 BUG_ON(tid >= MWL8K_MAX_TID);
1829 tx_stats = &sta_info->tx_stats[tid];
1830
1831 return sta_info->is_ampdu_allowed &&
1832 tx_stats->pkts > MWL8K_AMPDU_PACKET_THRESHOLD;
1833}
1834
1835static inline void mwl8k_tx_count_packet(struct ieee80211_sta *sta, u8 tid)
1836{
1837 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1838 struct tx_traffic_info *tx_stats;
1839
1840 BUG_ON(tid >= MWL8K_MAX_TID);
1841 tx_stats = &sta_info->tx_stats[tid];
1842
1843 if (tx_stats->start_time == 0)
1844 tx_stats->start_time = jiffies;
1845
1846 /* reset the packet count after each second elapses. If the number of
1847 * packets ever exceeds the ampdu_min_traffic threshold, we will allow
1848 * an ampdu stream to be started.
1849 */
1850 if (jiffies - tx_stats->start_time > HZ) {
1851 tx_stats->pkts = 0;
1852 tx_stats->start_time = 0;
1853 } else
1854 tx_stats->pkts++;
1855}
1856
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301857/* The hardware ampdu queues start from 5.
1858 * txpriorities for ampdu queues are
1859 * 5 6 7 0 1 2 3 4 ie., queue 5 is highest
1860 * and queue 3 is lowest (queue 4 is reserved)
1861 */
1862#define BA_QUEUE 5
1863
Johannes Berg7bb45682011-02-24 14:42:06 +01001864static void
Thomas Huehn36323f82012-07-23 21:33:42 +02001865mwl8k_txq_xmit(struct ieee80211_hw *hw,
1866 int index,
1867 struct ieee80211_sta *sta,
1868 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001869{
1870 struct mwl8k_priv *priv = hw->priv;
1871 struct ieee80211_tx_info *tx_info;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001872 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001873 struct ieee80211_hdr *wh;
1874 struct mwl8k_tx_queue *txq;
1875 struct mwl8k_tx_desc *tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001876 dma_addr_t dma;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001877 u32 txstatus;
1878 u8 txdatarate;
1879 u16 qos;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001880 int txpriority;
1881 u8 tid = 0;
1882 struct mwl8k_ampdu_stream *stream = NULL;
1883 bool start_ba_session = false;
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301884 bool mgmtframe = false;
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001885 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301886 bool eapol_frame = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001887
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001888 wh = (struct ieee80211_hdr *)skb->data;
1889 if (ieee80211_is_data_qos(wh->frame_control))
1890 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1891 else
1892 qos = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001893
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301894 if (skb->protocol == cpu_to_be16(ETH_P_PAE))
1895 eapol_frame = true;
1896
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301897 if (ieee80211_is_mgmt(wh->frame_control))
1898 mgmtframe = true;
1899
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001900 if (priv->ap_fw)
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05301901 mwl8k_encapsulate_tx_frame(priv, skb);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001902 else
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +05301903 mwl8k_add_dma_header(priv, skb, 0, 0);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001904
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001905 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001906
1907 tx_info = IEEE80211_SKB_CB(skb);
1908 mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001909
1910 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001911 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Lennert Buytenhek657232b2010-01-12 13:47:47 +01001912 wh->seq_ctrl |= cpu_to_le16(mwl8k_vif->seqno);
1913 mwl8k_vif->seqno += 0x10;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001914 }
1915
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001916 /* Setup firmware control bit fields for each frame type. */
1917 txstatus = 0;
1918 txdatarate = 0;
1919 if (ieee80211_is_mgmt(wh->frame_control) ||
1920 ieee80211_is_ctl(wh->frame_control)) {
1921 txdatarate = 0;
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001922 qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001923 } else if (ieee80211_is_data(wh->frame_control)) {
1924 txdatarate = 1;
1925 if (is_multicast_ether_addr(wh->addr1))
1926 txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX;
1927
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001928 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001929 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001930 qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001931 else
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001932 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001933 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001934
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001935 /* Queue ADDBA request in the respective data queue. While setting up
1936 * the ampdu stream, mac80211 queues further packets for that
1937 * particular ra/tid pair. However, packets piled up in the hardware
1938 * for that ra/tid pair will still go out. ADDBA request and the
1939 * related data packets going out from different queues asynchronously
1940 * will cause a shift in the receiver window which might result in
1941 * ampdu packets getting dropped at the receiver after the stream has
1942 * been setup.
1943 */
1944 if (unlikely(ieee80211_is_action(wh->frame_control) &&
1945 mgmt->u.action.category == WLAN_CATEGORY_BACK &&
1946 mgmt->u.action.u.addba_req.action_code == WLAN_ACTION_ADDBA_REQ &&
1947 priv->ap_fw)) {
1948 u16 capab = le16_to_cpu(mgmt->u.action.u.addba_req.capab);
1949 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
1950 index = mwl8k_tid_queue_mapping(tid);
1951 }
1952
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001953 txpriority = index;
1954
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301955 if (priv->ap_fw && sta && sta->ht_cap.ht_supported && !eapol_frame &&
1956 ieee80211_is_data_qos(wh->frame_control)) {
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001957 tid = qos & 0xf;
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001958 mwl8k_tx_count_packet(sta, tid);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001959 spin_lock(&priv->stream_lock);
1960 stream = mwl8k_lookup_stream(hw, sta->addr, tid);
1961 if (stream != NULL) {
1962 if (stream->state == AMPDU_STREAM_ACTIVE) {
Yogesh Ashok Powar5f2a1492013-01-03 13:21:25 +05301963 WARN_ON(!(qos & MWL8K_QOS_ACK_POLICY_BLOCKACK));
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301964 txpriority = (BA_QUEUE + stream->idx) %
1965 TOTAL_HW_TX_QUEUES;
1966 if (stream->idx <= 1)
1967 index = stream->idx +
1968 MWL8K_TX_WMM_QUEUES;
1969
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001970 } else if (stream->state == AMPDU_STREAM_NEW) {
1971 /* We get here if the driver sends us packets
1972 * after we've initiated a stream, but before
1973 * our ampdu_action routine has been called
1974 * with IEEE80211_AMPDU_TX_START to get the SSN
1975 * for the ADDBA request. So this packet can
1976 * go out with no risk of sequence number
1977 * mismatch. No special handling is required.
1978 */
1979 } else {
1980 /* Drop packets that would go out after the
1981 * ADDBA request was sent but before the ADDBA
1982 * response is received. If we don't do this,
1983 * the recipient would probably receive it
1984 * after the ADDBA request with SSN 0. This
1985 * will cause the recipient's BA receive window
1986 * to shift, which would cause the subsequent
1987 * packets in the BA stream to be discarded.
1988 * mac80211 queues our packets for us in this
1989 * case, so this is really just a safety check.
1990 */
1991 wiphy_warn(hw->wiphy,
1992 "Cannot send packet while ADDBA "
1993 "dialog is underway.\n");
1994 spin_unlock(&priv->stream_lock);
1995 dev_kfree_skb(skb);
1996 return;
1997 }
1998 } else {
1999 /* Defer calling mwl8k_start_stream so that the current
2000 * skb can go out before the ADDBA request. This
2001 * prevents sequence number mismatch at the recepient
2002 * as described above.
2003 */
Brian Cavagnolod0805c12011-04-12 11:06:28 -07002004 if (mwl8k_ampdu_allowed(sta, tid)) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07002005 stream = mwl8k_add_stream(hw, sta, tid);
2006 if (stream != NULL)
2007 start_ba_session = true;
2008 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002009 }
2010 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar5f2a1492013-01-03 13:21:25 +05302011 } else {
2012 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
2013 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002014 }
2015
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002016 dma = pci_map_single(priv->pdev, skb->data,
2017 skb->len, PCI_DMA_TODEVICE);
2018
2019 if (pci_dma_mapping_error(priv->pdev, dma)) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07002020 wiphy_debug(hw->wiphy,
2021 "failed to dma map skb, dropping TX frame.\n");
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002022 if (start_ba_session) {
2023 spin_lock(&priv->stream_lock);
2024 mwl8k_remove_stream(hw, stream);
2025 spin_unlock(&priv->stream_lock);
2026 }
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002027 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01002028 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002029 }
2030
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002031 spin_lock_bh(&priv->tx_lock);
2032
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002033 txq = priv->txq + index;
2034
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302035 /* Mgmt frames that go out frequently are probe
2036 * responses. Other mgmt frames got out relatively
2037 * infrequently. Hence reserve 2 buffers so that
2038 * other mgmt frames do not get dropped due to an
2039 * already queued probe response in one of the
2040 * reserved buffers.
2041 */
2042
2043 if (txq->len >= MWL8K_TX_DESCS - 2) {
Joe Perches23677ce2012-02-09 11:17:23 +00002044 if (!mgmtframe || txq->len == MWL8K_TX_DESCS) {
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302045 if (start_ba_session) {
2046 spin_lock(&priv->stream_lock);
2047 mwl8k_remove_stream(hw, stream);
2048 spin_unlock(&priv->stream_lock);
2049 }
2050 spin_unlock_bh(&priv->tx_lock);
Nishant Sarmukadamff7aa962012-11-06 19:22:48 +05302051 pci_unmap_single(priv->pdev, dma, skb->len,
2052 PCI_DMA_TODEVICE);
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302053 dev_kfree_skb(skb);
2054 return;
Pradeep Nemavat3a7dbc32011-04-21 16:34:56 +05302055 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002056 }
2057
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002058 BUG_ON(txq->skb[txq->tail] != NULL);
2059 txq->skb[txq->tail] = skb;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002060
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002061 tx = txq->txd + txq->tail;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002062 tx->data_rate = txdatarate;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002063 tx->tx_priority = txpriority;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002064 tx->qos_control = cpu_to_le16(qos);
2065 tx->pkt_phys_addr = cpu_to_le32(dma);
2066 tx->pkt_len = cpu_to_le16(skb->len);
2067 tx->rate_info = 0;
Thomas Huehn36323f82012-07-23 21:33:42 +02002068 if (!priv->ap_fw && sta != NULL)
2069 tx->peer_id = MWL8K_STA(sta)->peer_id;
Lennert Buytenheka6804002010-01-04 21:55:42 +01002070 else
2071 tx->peer_id = 0;
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302072
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05302073 if (priv->ap_fw && ieee80211_is_data(wh->frame_control) && !eapol_frame)
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302074 tx->timestamp = cpu_to_le32(ioread32(priv->regs +
2075 MWL8K_HW_TIMER_REGISTER));
Nishant Sarmukadamb8d9e572012-11-06 19:23:15 +05302076 else
2077 tx->timestamp = 0;
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302078
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002079 wmb();
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002080 tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
2081
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02002082 txq->len++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002083 priv->pending_tx_pkts++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002084
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002085 txq->tail++;
2086 if (txq->tail == MWL8K_TX_DESCS)
2087 txq->tail = 0;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002088
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002089 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002090
2091 spin_unlock_bh(&priv->tx_lock);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002092
2093 /* Initiate the ampdu session here */
2094 if (start_ba_session) {
2095 spin_lock(&priv->stream_lock);
2096 if (mwl8k_start_stream(hw, stream))
2097 mwl8k_remove_stream(hw, stream);
2098 spin_unlock(&priv->stream_lock);
2099 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002100}
2101
2102
2103/*
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002104 * Firmware access.
2105 *
2106 * We have the following requirements for issuing firmware commands:
2107 * - Some commands require that the packet transmit path is idle when
2108 * the command is issued. (For simplicity, we'll just quiesce the
2109 * transmit path for every command.)
2110 * - There are certain sequences of commands that need to be issued to
2111 * the hardware sequentially, with no other intervening commands.
2112 *
2113 * This leads to an implementation of a "firmware lock" as a mutex that
2114 * can be taken recursively, and which is taken by both the low-level
2115 * command submission function (mwl8k_post_cmd) as well as any users of
2116 * that function that require issuing of an atomic sequence of commands,
2117 * and quiesces the transmit path whenever it's taken.
2118 */
2119static int mwl8k_fw_lock(struct ieee80211_hw *hw)
2120{
2121 struct mwl8k_priv *priv = hw->priv;
2122
2123 if (priv->fw_mutex_owner != current) {
2124 int rc;
2125
2126 mutex_lock(&priv->fw_mutex);
2127 ieee80211_stop_queues(hw);
2128
2129 rc = mwl8k_tx_wait_empty(hw);
2130 if (rc) {
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05302131 if (!priv->hw_restart_in_progress)
2132 ieee80211_wake_queues(hw);
2133
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002134 mutex_unlock(&priv->fw_mutex);
2135
2136 return rc;
2137 }
2138
2139 priv->fw_mutex_owner = current;
2140 }
2141
2142 priv->fw_mutex_depth++;
2143
2144 return 0;
2145}
2146
2147static void mwl8k_fw_unlock(struct ieee80211_hw *hw)
2148{
2149 struct mwl8k_priv *priv = hw->priv;
2150
2151 if (!--priv->fw_mutex_depth) {
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05302152 if (!priv->hw_restart_in_progress)
2153 ieee80211_wake_queues(hw);
2154
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002155 priv->fw_mutex_owner = NULL;
2156 mutex_unlock(&priv->fw_mutex);
2157 }
2158}
2159
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05302160static void mwl8k_enable_bsses(struct ieee80211_hw *hw, bool enable,
2161 u32 bitmap);
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002162
2163/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002164 * Command processing.
2165 */
2166
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01002167/* Timeout firmware commands after 10s */
2168#define MWL8K_CMD_TIMEOUT_MS 10000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002169
2170static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
2171{
2172 DECLARE_COMPLETION_ONSTACK(cmd_wait);
2173 struct mwl8k_priv *priv = hw->priv;
2174 void __iomem *regs = priv->regs;
2175 dma_addr_t dma_addr;
2176 unsigned int dma_size;
2177 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002178 unsigned long timeout = 0;
2179 u8 buf[32];
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05302180 u32 bitmap = 0;
2181
2182 wiphy_dbg(hw->wiphy, "Posting %s [%d]\n",
2183 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)), cmd->macid);
2184
2185 /* Before posting firmware commands that could change the hardware
2186 * characteristics, make sure that all BSSes are stopped temporary.
2187 * Enable these stopped BSSes after completion of the commands
2188 */
2189
2190 rc = mwl8k_fw_lock(hw);
2191 if (rc)
2192 return rc;
2193
2194 if (priv->ap_fw && priv->running_bsses) {
2195 switch (le16_to_cpu(cmd->code)) {
2196 case MWL8K_CMD_SET_RF_CHANNEL:
2197 case MWL8K_CMD_RADIO_CONTROL:
2198 case MWL8K_CMD_RF_TX_POWER:
2199 case MWL8K_CMD_TX_POWER:
2200 case MWL8K_CMD_RF_ANTENNA:
2201 case MWL8K_CMD_RTS_THRESHOLD:
2202 case MWL8K_CMD_MIMO_CONFIG:
2203 bitmap = priv->running_bsses;
2204 mwl8k_enable_bsses(hw, false, bitmap);
2205 break;
2206 }
2207 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002208
John W. Linvilleb6037422010-07-20 13:55:00 -04002209 cmd->result = (__force __le16) 0xffff;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002210 dma_size = le16_to_cpu(cmd->length);
2211 dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
2212 PCI_DMA_BIDIRECTIONAL);
2213 if (pci_dma_mapping_error(priv->pdev, dma_addr))
2214 return -ENOMEM;
2215
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002216 priv->hostcmd_wait = &cmd_wait;
2217 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
2218 iowrite32(MWL8K_H2A_INT_DOORBELL,
2219 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
2220 iowrite32(MWL8K_H2A_INT_DUMMY,
2221 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002222
2223 timeout = wait_for_completion_timeout(&cmd_wait,
2224 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
2225
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002226 priv->hostcmd_wait = NULL;
2227
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002228
Lennert Buytenhek37055bd2009-08-03 21:58:47 +02002229 pci_unmap_single(priv->pdev, dma_addr, dma_size,
2230 PCI_DMA_BIDIRECTIONAL);
2231
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002232 if (!timeout) {
Joe Perches5db55842010-08-11 19:11:19 -07002233 wiphy_err(hw->wiphy, "Command %s timeout after %u ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002234 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2235 MWL8K_CMD_TIMEOUT_MS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002236 rc = -ETIMEDOUT;
2237 } else {
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01002238 int ms;
2239
2240 ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout);
2241
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002242 rc = cmd->result ? -EINVAL : 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002243 if (rc)
Joe Perches5db55842010-08-11 19:11:19 -07002244 wiphy_err(hw->wiphy, "Command %s error 0x%x\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002245 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2246 le16_to_cpu(cmd->result));
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01002247 else if (ms > 2000)
Joe Perches5db55842010-08-11 19:11:19 -07002248 wiphy_notice(hw->wiphy, "Command %s took %d ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002249 mwl8k_cmd_name(cmd->code,
2250 buf, sizeof(buf)),
2251 ms);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002252 }
2253
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05302254 if (bitmap)
2255 mwl8k_enable_bsses(hw, true, bitmap);
2256
2257 mwl8k_fw_unlock(hw);
2258
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002259 return rc;
2260}
2261
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +01002262static int mwl8k_post_pervif_cmd(struct ieee80211_hw *hw,
2263 struct ieee80211_vif *vif,
2264 struct mwl8k_cmd_pkt *cmd)
2265{
2266 if (vif != NULL)
2267 cmd->macid = MWL8K_VIF(vif)->macid;
2268 return mwl8k_post_cmd(hw, cmd);
2269}
2270
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002271/*
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002272 * Setup code shared between STA and AP firmware images.
2273 */
2274static void mwl8k_setup_2ghz_band(struct ieee80211_hw *hw)
2275{
2276 struct mwl8k_priv *priv = hw->priv;
2277
2278 BUILD_BUG_ON(sizeof(priv->channels_24) != sizeof(mwl8k_channels_24));
2279 memcpy(priv->channels_24, mwl8k_channels_24, sizeof(mwl8k_channels_24));
2280
2281 BUILD_BUG_ON(sizeof(priv->rates_24) != sizeof(mwl8k_rates_24));
2282 memcpy(priv->rates_24, mwl8k_rates_24, sizeof(mwl8k_rates_24));
2283
2284 priv->band_24.band = IEEE80211_BAND_2GHZ;
2285 priv->band_24.channels = priv->channels_24;
2286 priv->band_24.n_channels = ARRAY_SIZE(mwl8k_channels_24);
2287 priv->band_24.bitrates = priv->rates_24;
2288 priv->band_24.n_bitrates = ARRAY_SIZE(mwl8k_rates_24);
2289
2290 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band_24;
2291}
2292
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +01002293static void mwl8k_setup_5ghz_band(struct ieee80211_hw *hw)
2294{
2295 struct mwl8k_priv *priv = hw->priv;
2296
2297 BUILD_BUG_ON(sizeof(priv->channels_50) != sizeof(mwl8k_channels_50));
2298 memcpy(priv->channels_50, mwl8k_channels_50, sizeof(mwl8k_channels_50));
2299
2300 BUILD_BUG_ON(sizeof(priv->rates_50) != sizeof(mwl8k_rates_50));
2301 memcpy(priv->rates_50, mwl8k_rates_50, sizeof(mwl8k_rates_50));
2302
2303 priv->band_50.band = IEEE80211_BAND_5GHZ;
2304 priv->band_50.channels = priv->channels_50;
2305 priv->band_50.n_channels = ARRAY_SIZE(mwl8k_channels_50);
2306 priv->band_50.bitrates = priv->rates_50;
2307 priv->band_50.n_bitrates = ARRAY_SIZE(mwl8k_rates_50);
2308
2309 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &priv->band_50;
2310}
2311
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002312/*
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02002313 * CMD_GET_HW_SPEC (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002314 */
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02002315struct mwl8k_cmd_get_hw_spec_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002316 struct mwl8k_cmd_pkt header;
2317 __u8 hw_rev;
2318 __u8 host_interface;
2319 __le16 num_mcaddrs;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002320 __u8 perm_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002321 __le16 region_code;
2322 __le32 fw_rev;
2323 __le32 ps_cookie;
2324 __le32 caps;
2325 __u8 mcs_bitmap[16];
2326 __le32 rx_queue_ptr;
2327 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002328 __le32 tx_queue_ptrs[MWL8K_TX_WMM_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002329 __le32 caps2;
2330 __le32 num_tx_desc_per_queue;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002331 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002332} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002333
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002334#define MWL8K_CAP_MAX_AMSDU 0x20000000
2335#define MWL8K_CAP_GREENFIELD 0x08000000
2336#define MWL8K_CAP_AMPDU 0x04000000
2337#define MWL8K_CAP_RX_STBC 0x01000000
2338#define MWL8K_CAP_TX_STBC 0x00800000
2339#define MWL8K_CAP_SHORTGI_40MHZ 0x00400000
2340#define MWL8K_CAP_SHORTGI_20MHZ 0x00200000
2341#define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000
2342#define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000
2343#define MWL8K_CAP_DELAY_BA 0x00003000
2344#define MWL8K_CAP_MIMO 0x00000200
2345#define MWL8K_CAP_40MHZ 0x00000100
Lennert Buytenhek06953232010-01-12 13:49:41 +01002346#define MWL8K_CAP_BAND_MASK 0x00000007
2347#define MWL8K_CAP_5GHZ 0x00000004
2348#define MWL8K_CAP_2GHZ4 0x00000001
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002349
Lennert Buytenhek06953232010-01-12 13:49:41 +01002350static void
2351mwl8k_set_ht_caps(struct ieee80211_hw *hw,
2352 struct ieee80211_supported_band *band, u32 cap)
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002353{
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002354 int rx_streams;
2355 int tx_streams;
2356
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002357 band->ht_cap.ht_supported = 1;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002358
2359 if (cap & MWL8K_CAP_MAX_AMSDU)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002360 band->ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002361 if (cap & MWL8K_CAP_GREENFIELD)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002362 band->ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002363 if (cap & MWL8K_CAP_AMPDU) {
2364 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002365 band->ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
2366 band->ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002367 }
2368 if (cap & MWL8K_CAP_RX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002369 band->ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002370 if (cap & MWL8K_CAP_TX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002371 band->ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002372 if (cap & MWL8K_CAP_SHORTGI_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002373 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002374 if (cap & MWL8K_CAP_SHORTGI_20MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002375 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002376 if (cap & MWL8K_CAP_DELAY_BA)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002377 band->ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002378 if (cap & MWL8K_CAP_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002379 band->ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002380
2381 rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK);
2382 tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK);
2383
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002384 band->ht_cap.mcs.rx_mask[0] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002385 if (rx_streams >= 2)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002386 band->ht_cap.mcs.rx_mask[1] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002387 if (rx_streams >= 3)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002388 band->ht_cap.mcs.rx_mask[2] = 0xff;
2389 band->ht_cap.mcs.rx_mask[4] = 0x01;
2390 band->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002391
2392 if (rx_streams != tx_streams) {
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002393 band->ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
2394 band->ht_cap.mcs.tx_params |= (tx_streams - 1) <<
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002395 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
2396 }
2397}
2398
Lennert Buytenhek06953232010-01-12 13:49:41 +01002399static void
2400mwl8k_set_caps(struct ieee80211_hw *hw, u32 caps)
2401{
2402 struct mwl8k_priv *priv = hw->priv;
2403
2404 if ((caps & MWL8K_CAP_2GHZ4) || !(caps & MWL8K_CAP_BAND_MASK)) {
2405 mwl8k_setup_2ghz_band(hw);
2406 if (caps & MWL8K_CAP_MIMO)
2407 mwl8k_set_ht_caps(hw, &priv->band_24, caps);
2408 }
2409
2410 if (caps & MWL8K_CAP_5GHZ) {
2411 mwl8k_setup_5ghz_band(hw);
2412 if (caps & MWL8K_CAP_MIMO)
2413 mwl8k_set_ht_caps(hw, &priv->band_50, caps);
2414 }
2415}
2416
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02002417static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002418{
2419 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02002420 struct mwl8k_cmd_get_hw_spec_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002421 int rc;
2422 int i;
2423
2424 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2425 if (cmd == NULL)
2426 return -ENOMEM;
2427
2428 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2429 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2430
2431 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2432 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002433 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002434 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
2435 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002436 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002437 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002438 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002439
2440 rc = mwl8k_post_cmd(hw, &cmd->header);
2441
2442 if (!rc) {
2443 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2444 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002445 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002446 priv->hw_rev = cmd->hw_rev;
Lennert Buytenhek06953232010-01-12 13:49:41 +01002447 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002448 priv->ap_macids_supported = 0x00000000;
2449 priv->sta_macids_supported = 0x00000001;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002450 }
2451
2452 kfree(cmd);
2453 return rc;
2454}
2455
2456/*
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002457 * CMD_GET_HW_SPEC (AP version).
2458 */
2459struct mwl8k_cmd_get_hw_spec_ap {
2460 struct mwl8k_cmd_pkt header;
2461 __u8 hw_rev;
2462 __u8 host_interface;
2463 __le16 num_wcb;
2464 __le16 num_mcaddrs;
2465 __u8 perm_addr[ETH_ALEN];
2466 __le16 region_code;
2467 __le16 num_antenna;
2468 __le32 fw_rev;
2469 __le32 wcbbase0;
2470 __le32 rxwrptr;
2471 __le32 rxrdptr;
2472 __le32 ps_cookie;
2473 __le32 wcbbase1;
2474 __le32 wcbbase2;
2475 __le32 wcbbase3;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002476 __le32 fw_api_version;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002477 __le32 caps;
2478 __le32 num_of_ampdu_queues;
2479 __le32 wcbbase_ampdu[MWL8K_MAX_AMPDU_QUEUES];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002480} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002481
2482static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw)
2483{
2484 struct mwl8k_priv *priv = hw->priv;
2485 struct mwl8k_cmd_get_hw_spec_ap *cmd;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002486 int rc, i;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002487 u32 api_version;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002488
2489 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2490 if (cmd == NULL)
2491 return -ENOMEM;
2492
2493 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2494 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2495
2496 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2497 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2498
2499 rc = mwl8k_post_cmd(hw, &cmd->header);
2500
2501 if (!rc) {
2502 int off;
2503
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002504 api_version = le32_to_cpu(cmd->fw_api_version);
2505 if (priv->device_info->fw_api_ap != api_version) {
2506 printk(KERN_ERR "%s: Unsupported fw API version for %s."
2507 " Expected %d got %d.\n", MWL8K_NAME,
2508 priv->device_info->part_name,
2509 priv->device_info->fw_api_ap,
2510 api_version);
2511 rc = -EINVAL;
2512 goto done;
2513 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002514 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2515 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
2516 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
2517 priv->hw_rev = cmd->hw_rev;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002518 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002519 priv->ap_macids_supported = 0x000000ff;
Yogesh Ashok Poward59c1cf2013-01-25 16:20:03 +05302520 priv->sta_macids_supported = 0x00000100;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002521 priv->num_ampdu_queues = le32_to_cpu(cmd->num_of_ampdu_queues);
2522 if (priv->num_ampdu_queues > MWL8K_MAX_AMPDU_QUEUES) {
2523 wiphy_warn(hw->wiphy, "fw reported %d ampdu queues"
2524 " but we only support %d.\n",
2525 priv->num_ampdu_queues,
2526 MWL8K_MAX_AMPDU_QUEUES);
2527 priv->num_ampdu_queues = MWL8K_MAX_AMPDU_QUEUES;
2528 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002529 off = le32_to_cpu(cmd->rxwrptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002530 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002531
2532 off = le32_to_cpu(cmd->rxrdptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002533 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002534
Brian Cavagnolo73b46322011-03-17 11:58:41 -07002535 priv->txq_offset[0] = le32_to_cpu(cmd->wcbbase0) & 0xffff;
2536 priv->txq_offset[1] = le32_to_cpu(cmd->wcbbase1) & 0xffff;
2537 priv->txq_offset[2] = le32_to_cpu(cmd->wcbbase2) & 0xffff;
2538 priv->txq_offset[3] = le32_to_cpu(cmd->wcbbase3) & 0xffff;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002539
2540 for (i = 0; i < priv->num_ampdu_queues; i++)
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002541 priv->txq_offset[i + MWL8K_TX_WMM_QUEUES] =
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002542 le32_to_cpu(cmd->wcbbase_ampdu[i]) & 0xffff;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002543 }
2544
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002545done:
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002546 kfree(cmd);
2547 return rc;
2548}
2549
2550/*
2551 * CMD_SET_HW_SPEC.
2552 */
2553struct mwl8k_cmd_set_hw_spec {
2554 struct mwl8k_cmd_pkt header;
2555 __u8 hw_rev;
2556 __u8 host_interface;
2557 __le16 num_mcaddrs;
2558 __u8 perm_addr[ETH_ALEN];
2559 __le16 region_code;
2560 __le32 fw_rev;
2561 __le32 ps_cookie;
2562 __le32 caps;
2563 __le32 rx_queue_ptr;
2564 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002565 __le32 tx_queue_ptrs[MWL8K_MAX_TX_QUEUES];
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002566 __le32 flags;
2567 __le32 num_tx_desc_per_queue;
2568 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002569} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002570
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002571/* If enabled, MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY will cause
2572 * packets to expire 500 ms after the timestamp in the tx descriptor. That is,
2573 * the packets that are queued for more than 500ms, will be dropped in the
2574 * hardware. This helps minimizing the issues caused due to head-of-line
2575 * blocking where a slow client can hog the bandwidth and affect traffic to a
2576 * faster client.
2577 */
2578#define MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY 0x00000400
Nishant Sarmukadam3373b282011-06-13 16:26:15 +05302579#define MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR 0x00000200
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002580#define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080
2581#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP 0x00000020
2582#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON 0x00000010
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002583
2584static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw)
2585{
2586 struct mwl8k_priv *priv = hw->priv;
2587 struct mwl8k_cmd_set_hw_spec *cmd;
2588 int rc;
2589 int i;
2590
2591 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2592 if (cmd == NULL)
2593 return -ENOMEM;
2594
2595 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC);
2596 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2597
2598 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2599 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002600 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002601
2602 /*
2603 * Mac80211 stack has Q0 as highest priority and Q3 as lowest in
2604 * that order. Firmware has Q3 as highest priority and Q0 as lowest
2605 * in that order. Map Q3 of mac80211 to Q0 of firmware so that the
2606 * priority is interpreted the right way in firmware.
2607 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002608 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
2609 int j = mwl8k_tx_queues(priv) - 1 - i;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002610 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[j].txd_dma);
2611 }
2612
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002613 cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT |
2614 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP |
Nishant Sarmukadam31d291a2011-04-21 16:34:59 +05302615 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON |
Nishant Sarmukadam3373b282011-06-13 16:26:15 +05302616 MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY |
2617 MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002618 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
2619 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
2620
2621 rc = mwl8k_post_cmd(hw, &cmd->header);
2622 kfree(cmd);
2623
2624 return rc;
2625}
2626
2627/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002628 * CMD_MAC_MULTICAST_ADR.
2629 */
2630struct mwl8k_cmd_mac_multicast_adr {
2631 struct mwl8k_cmd_pkt header;
2632 __le16 action;
2633 __le16 numaddr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002634 __u8 addr[0][ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002635};
2636
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002637#define MWL8K_ENABLE_RX_DIRECTED 0x0001
2638#define MWL8K_ENABLE_RX_MULTICAST 0x0002
2639#define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004
2640#define MWL8K_ENABLE_RX_BROADCAST 0x0008
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002641
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002642static struct mwl8k_cmd_pkt *
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002643__mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti,
Jiri Pirko22bedad2010-04-01 21:22:57 +00002644 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002645{
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002646 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002647 struct mwl8k_cmd_mac_multicast_adr *cmd;
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002648 int size;
Jiri Pirko22bedad2010-04-01 21:22:57 +00002649 int mc_count = 0;
2650
2651 if (mc_list)
2652 mc_count = netdev_hw_addr_list_count(mc_list);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002653
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002654 if (allmulti || mc_count > priv->num_mcaddrs) {
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002655 allmulti = 1;
2656 mc_count = 0;
2657 }
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002658
2659 size = sizeof(*cmd) + mc_count * ETH_ALEN;
2660
2661 cmd = kzalloc(size, GFP_ATOMIC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002662 if (cmd == NULL)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002663 return NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002664
2665 cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
2666 cmd->header.length = cpu_to_le16(size);
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002667 cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED |
2668 MWL8K_ENABLE_RX_BROADCAST);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002669
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002670 if (allmulti) {
2671 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST);
2672 } else if (mc_count) {
Jiri Pirko22bedad2010-04-01 21:22:57 +00002673 struct netdev_hw_addr *ha;
2674 int i = 0;
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002675
2676 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
2677 cmd->numaddr = cpu_to_le16(mc_count);
Jiri Pirko22bedad2010-04-01 21:22:57 +00002678 netdev_hw_addr_list_for_each(ha, mc_list) {
2679 memcpy(cmd->addr[i], ha->addr, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002680 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002681 }
2682
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002683 return &cmd->header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002684}
2685
2686/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002687 * CMD_GET_STAT.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002688 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002689struct mwl8k_cmd_get_stat {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002690 struct mwl8k_cmd_pkt header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002691 __le32 stats[64];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002692} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002693
2694#define MWL8K_STAT_ACK_FAILURE 9
2695#define MWL8K_STAT_RTS_FAILURE 12
2696#define MWL8K_STAT_FCS_ERROR 24
2697#define MWL8K_STAT_RTS_SUCCESS 11
2698
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002699static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw,
2700 struct ieee80211_low_level_stats *stats)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002701{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002702 struct mwl8k_cmd_get_stat *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002703 int rc;
2704
2705 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2706 if (cmd == NULL)
2707 return -ENOMEM;
2708
2709 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
2710 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002711
2712 rc = mwl8k_post_cmd(hw, &cmd->header);
2713 if (!rc) {
2714 stats->dot11ACKFailureCount =
2715 le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
2716 stats->dot11RTSFailureCount =
2717 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
2718 stats->dot11FCSErrorCount =
2719 le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
2720 stats->dot11RTSSuccessCount =
2721 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
2722 }
2723 kfree(cmd);
2724
2725 return rc;
2726}
2727
2728/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002729 * CMD_RADIO_CONTROL.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002730 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002731struct mwl8k_cmd_radio_control {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002732 struct mwl8k_cmd_pkt header;
2733 __le16 action;
2734 __le16 control;
2735 __le16 radio_on;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002736} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002737
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002738static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002739mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002740{
2741 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002742 struct mwl8k_cmd_radio_control *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002743 int rc;
2744
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002745 if (enable == priv->radio_on && !force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002746 return 0;
2747
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002748 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2749 if (cmd == NULL)
2750 return -ENOMEM;
2751
2752 cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
2753 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2754 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002755 cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002756 cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
2757
2758 rc = mwl8k_post_cmd(hw, &cmd->header);
2759 kfree(cmd);
2760
2761 if (!rc)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002762 priv->radio_on = enable;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002763
2764 return rc;
2765}
2766
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002767static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002768{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002769 return mwl8k_cmd_radio_control(hw, 0, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002770}
2771
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002772static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002773{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002774 return mwl8k_cmd_radio_control(hw, 1, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002775}
2776
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002777static int
2778mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
2779{
Lennert Buytenhek99200a992009-11-30 18:31:40 +01002780 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002781
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002782 priv->radio_short_preamble = short_preamble;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002783
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002784 return mwl8k_cmd_radio_control(hw, 1, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002785}
2786
2787/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002788 * CMD_RF_TX_POWER.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002789 */
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002790#define MWL8K_RF_TX_POWER_LEVEL_TOTAL 8
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002791
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002792struct mwl8k_cmd_rf_tx_power {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002793 struct mwl8k_cmd_pkt header;
2794 __le16 action;
2795 __le16 support_level;
2796 __le16 current_level;
2797 __le16 reserved;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002798 __le16 power_level_list[MWL8K_RF_TX_POWER_LEVEL_TOTAL];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002799} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002800
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002801static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw *hw, int dBm)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002802{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002803 struct mwl8k_cmd_rf_tx_power *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002804 int rc;
2805
2806 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2807 if (cmd == NULL)
2808 return -ENOMEM;
2809
2810 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
2811 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2812 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2813 cmd->support_level = cpu_to_le16(dBm);
2814
2815 rc = mwl8k_post_cmd(hw, &cmd->header);
2816 kfree(cmd);
2817
2818 return rc;
2819}
2820
2821/*
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002822 * CMD_TX_POWER.
2823 */
2824#define MWL8K_TX_POWER_LEVEL_TOTAL 12
2825
2826struct mwl8k_cmd_tx_power {
2827 struct mwl8k_cmd_pkt header;
2828 __le16 action;
2829 __le16 band;
2830 __le16 channel;
2831 __le16 bw;
2832 __le16 sub_ch;
2833 __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05302834} __packed;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002835
2836static int mwl8k_cmd_tx_power(struct ieee80211_hw *hw,
2837 struct ieee80211_conf *conf,
2838 unsigned short pwr)
2839{
Karl Beldan675a0b02013-03-25 16:26:57 +01002840 struct ieee80211_channel *channel = conf->chandef.chan;
2841 enum nl80211_channel_type channel_type =
2842 cfg80211_get_chandef_type(&conf->chandef);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002843 struct mwl8k_cmd_tx_power *cmd;
2844 int rc;
2845 int i;
2846
2847 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2848 if (cmd == NULL)
2849 return -ENOMEM;
2850
2851 cmd->header.code = cpu_to_le16(MWL8K_CMD_TX_POWER);
2852 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2853 cmd->action = cpu_to_le16(MWL8K_CMD_SET_LIST);
2854
2855 if (channel->band == IEEE80211_BAND_2GHZ)
2856 cmd->band = cpu_to_le16(0x1);
2857 else if (channel->band == IEEE80211_BAND_5GHZ)
2858 cmd->band = cpu_to_le16(0x4);
2859
Yogesh Ashok Powar604c4ef2012-01-17 15:45:15 +05302860 cmd->channel = cpu_to_le16(channel->hw_value);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002861
Karl Beldan675a0b02013-03-25 16:26:57 +01002862 if (channel_type == NL80211_CHAN_NO_HT ||
2863 channel_type == NL80211_CHAN_HT20) {
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002864 cmd->bw = cpu_to_le16(0x2);
2865 } else {
2866 cmd->bw = cpu_to_le16(0x4);
Karl Beldan675a0b02013-03-25 16:26:57 +01002867 if (channel_type == NL80211_CHAN_HT40MINUS)
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002868 cmd->sub_ch = cpu_to_le16(0x3);
Karl Beldan675a0b02013-03-25 16:26:57 +01002869 else if (channel_type == NL80211_CHAN_HT40PLUS)
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002870 cmd->sub_ch = cpu_to_le16(0x1);
2871 }
2872
2873 for (i = 0; i < MWL8K_TX_POWER_LEVEL_TOTAL; i++)
2874 cmd->power_level_list[i] = cpu_to_le16(pwr);
2875
2876 rc = mwl8k_post_cmd(hw, &cmd->header);
2877 kfree(cmd);
2878
2879 return rc;
2880}
2881
2882/*
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002883 * CMD_RF_ANTENNA.
2884 */
2885struct mwl8k_cmd_rf_antenna {
2886 struct mwl8k_cmd_pkt header;
2887 __le16 antenna;
2888 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002889} __packed;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002890
2891#define MWL8K_RF_ANTENNA_RX 1
2892#define MWL8K_RF_ANTENNA_TX 2
2893
2894static int
2895mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask)
2896{
2897 struct mwl8k_cmd_rf_antenna *cmd;
2898 int rc;
2899
2900 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2901 if (cmd == NULL)
2902 return -ENOMEM;
2903
2904 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA);
2905 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2906 cmd->antenna = cpu_to_le16(antenna);
2907 cmd->mode = cpu_to_le16(mask);
2908
2909 rc = mwl8k_post_cmd(hw, &cmd->header);
2910 kfree(cmd);
2911
2912 return rc;
2913}
2914
2915/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002916 * CMD_SET_BEACON.
2917 */
2918struct mwl8k_cmd_set_beacon {
2919 struct mwl8k_cmd_pkt header;
2920 __le16 beacon_len;
2921 __u8 beacon[0];
2922};
2923
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002924static int mwl8k_cmd_set_beacon(struct ieee80211_hw *hw,
2925 struct ieee80211_vif *vif, u8 *beacon, int len)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002926{
2927 struct mwl8k_cmd_set_beacon *cmd;
2928 int rc;
2929
2930 cmd = kzalloc(sizeof(*cmd) + len, GFP_KERNEL);
2931 if (cmd == NULL)
2932 return -ENOMEM;
2933
2934 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_BEACON);
2935 cmd->header.length = cpu_to_le16(sizeof(*cmd) + len);
2936 cmd->beacon_len = cpu_to_le16(len);
2937 memcpy(cmd->beacon, beacon, len);
2938
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002939 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002940 kfree(cmd);
2941
2942 return rc;
2943}
2944
2945/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002946 * CMD_SET_PRE_SCAN.
2947 */
2948struct mwl8k_cmd_set_pre_scan {
2949 struct mwl8k_cmd_pkt header;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002950} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002951
2952static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
2953{
2954 struct mwl8k_cmd_set_pre_scan *cmd;
2955 int rc;
2956
2957 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2958 if (cmd == NULL)
2959 return -ENOMEM;
2960
2961 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
2962 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2963
2964 rc = mwl8k_post_cmd(hw, &cmd->header);
2965 kfree(cmd);
2966
2967 return rc;
2968}
2969
2970/*
2971 * CMD_SET_POST_SCAN.
2972 */
2973struct mwl8k_cmd_set_post_scan {
2974 struct mwl8k_cmd_pkt header;
2975 __le32 isibss;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002976 __u8 bssid[ETH_ALEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002977} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002978
2979static int
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002980mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002981{
2982 struct mwl8k_cmd_set_post_scan *cmd;
2983 int rc;
2984
2985 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2986 if (cmd == NULL)
2987 return -ENOMEM;
2988
2989 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
2990 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2991 cmd->isibss = 0;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002992 memcpy(cmd->bssid, mac, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002993
2994 rc = mwl8k_post_cmd(hw, &cmd->header);
2995 kfree(cmd);
2996
2997 return rc;
2998}
2999
3000/*
3001 * CMD_SET_RF_CHANNEL.
3002 */
3003struct mwl8k_cmd_set_rf_channel {
3004 struct mwl8k_cmd_pkt header;
3005 __le16 action;
3006 __u8 current_channel;
3007 __le32 channel_flags;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003008} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003009
3010static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003011 struct ieee80211_conf *conf)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003012{
Karl Beldan675a0b02013-03-25 16:26:57 +01003013 struct ieee80211_channel *channel = conf->chandef.chan;
3014 enum nl80211_channel_type channel_type =
3015 cfg80211_get_chandef_type(&conf->chandef);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003016 struct mwl8k_cmd_set_rf_channel *cmd;
3017 int rc;
3018
3019 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3020 if (cmd == NULL)
3021 return -ENOMEM;
3022
3023 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
3024 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3025 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3026 cmd->current_channel = channel->hw_value;
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003027
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003028 if (channel->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003029 cmd->channel_flags |= cpu_to_le32(0x00000001);
Lennert Buytenhek42574ea2010-01-12 13:49:18 +01003030 else if (channel->band == IEEE80211_BAND_5GHZ)
3031 cmd->channel_flags |= cpu_to_le32(0x00000004);
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003032
Karl Beldan675a0b02013-03-25 16:26:57 +01003033 if (channel_type == NL80211_CHAN_NO_HT ||
3034 channel_type == NL80211_CHAN_HT20)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003035 cmd->channel_flags |= cpu_to_le32(0x00000080);
Karl Beldan675a0b02013-03-25 16:26:57 +01003036 else if (channel_type == NL80211_CHAN_HT40MINUS)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003037 cmd->channel_flags |= cpu_to_le32(0x000001900);
Karl Beldan675a0b02013-03-25 16:26:57 +01003038 else if (channel_type == NL80211_CHAN_HT40PLUS)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003039 cmd->channel_flags |= cpu_to_le32(0x000000900);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003040
3041 rc = mwl8k_post_cmd(hw, &cmd->header);
3042 kfree(cmd);
3043
3044 return rc;
3045}
3046
3047/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003048 * CMD_SET_AID.
3049 */
3050#define MWL8K_FRAME_PROT_DISABLED 0x00
3051#define MWL8K_FRAME_PROT_11G 0x07
3052#define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
3053#define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
3054
3055struct mwl8k_cmd_update_set_aid {
3056 struct mwl8k_cmd_pkt header;
3057 __le16 aid;
3058
3059 /* AP's MAC address (BSSID) */
3060 __u8 bssid[ETH_ALEN];
3061 __le16 protection_mode;
3062 __u8 supp_rates[14];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003063} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003064
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003065static void legacy_rate_mask_to_array(u8 *rates, u32 mask)
3066{
3067 int i;
3068 int j;
3069
3070 /*
3071 * Clear nonstandard rates 4 and 13.
3072 */
3073 mask &= 0x1fef;
3074
3075 for (i = 0, j = 0; i < 14; i++) {
3076 if (mask & (1 << i))
Lennert Buytenhek777ad372010-01-12 13:48:04 +01003077 rates[j++] = mwl8k_rates_24[i].hw_value;
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003078 }
3079}
3080
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003081static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003082mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
3083 struct ieee80211_vif *vif, u32 legacy_rate_mask)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003084{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003085 struct mwl8k_cmd_update_set_aid *cmd;
3086 u16 prot_mode;
3087 int rc;
3088
3089 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3090 if (cmd == NULL)
3091 return -ENOMEM;
3092
3093 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
3094 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003095 cmd->aid = cpu_to_le16(vif->bss_conf.aid);
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003096 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003097
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003098 if (vif->bss_conf.use_cts_prot) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003099 prot_mode = MWL8K_FRAME_PROT_11G;
3100 } else {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003101 switch (vif->bss_conf.ht_operation_mode &
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003102 IEEE80211_HT_OP_MODE_PROTECTION) {
3103 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
3104 prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
3105 break;
3106 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
3107 prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
3108 break;
3109 default:
3110 prot_mode = MWL8K_FRAME_PROT_DISABLED;
3111 break;
3112 }
3113 }
3114 cmd->protection_mode = cpu_to_le16(prot_mode);
3115
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003116 legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003117
3118 rc = mwl8k_post_cmd(hw, &cmd->header);
3119 kfree(cmd);
3120
3121 return rc;
3122}
3123
3124/*
3125 * CMD_SET_RATE.
3126 */
3127struct mwl8k_cmd_set_rate {
3128 struct mwl8k_cmd_pkt header;
3129 __u8 legacy_rates[14];
3130
3131 /* Bitmap for supported MCS codes. */
3132 __u8 mcs_set[16];
3133 __u8 reserved[16];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003134} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003135
3136static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003137mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003138 u32 legacy_rate_mask, u8 *mcs_rates)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003139{
3140 struct mwl8k_cmd_set_rate *cmd;
3141 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_RATE);
3148 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003149 legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003150 memcpy(cmd->mcs_set, mcs_rates, 16);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003151
3152 rc = mwl8k_post_cmd(hw, &cmd->header);
3153 kfree(cmd);
3154
3155 return rc;
3156}
3157
3158/*
3159 * CMD_FINALIZE_JOIN.
3160 */
3161#define MWL8K_FJ_BEACON_MAXLEN 128
3162
3163struct mwl8k_cmd_finalize_join {
3164 struct mwl8k_cmd_pkt header;
3165 __le32 sleep_interval; /* Number of beacon periods to sleep */
3166 __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003167} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003168
3169static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame,
3170 int framelen, int dtim)
3171{
3172 struct mwl8k_cmd_finalize_join *cmd;
3173 struct ieee80211_mgmt *payload = frame;
3174 int payload_len;
3175 int rc;
3176
3177 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3178 if (cmd == NULL)
3179 return -ENOMEM;
3180
3181 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN);
3182 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3183 cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
3184
3185 payload_len = framelen - ieee80211_hdrlen(payload->frame_control);
3186 if (payload_len < 0)
3187 payload_len = 0;
3188 else if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
3189 payload_len = MWL8K_FJ_BEACON_MAXLEN;
3190
3191 memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
3192
3193 rc = mwl8k_post_cmd(hw, &cmd->header);
3194 kfree(cmd);
3195
3196 return rc;
3197}
3198
3199/*
3200 * CMD_SET_RTS_THRESHOLD.
3201 */
3202struct mwl8k_cmd_set_rts_threshold {
3203 struct mwl8k_cmd_pkt header;
3204 __le16 action;
3205 __le16 threshold;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003206} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003207
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003208static int
3209mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw, int rts_thresh)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003210{
3211 struct mwl8k_cmd_set_rts_threshold *cmd;
3212 int rc;
3213
3214 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3215 if (cmd == NULL)
3216 return -ENOMEM;
3217
3218 cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
3219 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003220 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3221 cmd->threshold = cpu_to_le16(rts_thresh);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003222
3223 rc = mwl8k_post_cmd(hw, &cmd->header);
3224 kfree(cmd);
3225
3226 return rc;
3227}
3228
3229/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003230 * CMD_SET_SLOT.
3231 */
3232struct mwl8k_cmd_set_slot {
3233 struct mwl8k_cmd_pkt header;
3234 __le16 action;
3235 __u8 short_slot;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003236} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003237
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003238static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003239{
3240 struct mwl8k_cmd_set_slot *cmd;
3241 int rc;
3242
3243 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3244 if (cmd == NULL)
3245 return -ENOMEM;
3246
3247 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
3248 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3249 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003250 cmd->short_slot = short_slot_time;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003251
3252 rc = mwl8k_post_cmd(hw, &cmd->header);
3253 kfree(cmd);
3254
3255 return rc;
3256}
3257
3258/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003259 * CMD_SET_EDCA_PARAMS.
3260 */
3261struct mwl8k_cmd_set_edca_params {
3262 struct mwl8k_cmd_pkt header;
3263
3264 /* See MWL8K_SET_EDCA_XXX below */
3265 __le16 action;
3266
3267 /* TX opportunity in units of 32 us */
3268 __le16 txop;
3269
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003270 union {
3271 struct {
3272 /* Log exponent of max contention period: 0...15 */
3273 __le32 log_cw_max;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003274
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003275 /* Log exponent of min contention period: 0...15 */
3276 __le32 log_cw_min;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003277
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003278 /* Adaptive interframe spacing in units of 32us */
3279 __u8 aifs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003280
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003281 /* TX queue to configure */
3282 __u8 txq;
3283 } ap;
3284 struct {
3285 /* Log exponent of max contention period: 0...15 */
3286 __u8 log_cw_max;
3287
3288 /* Log exponent of min contention period: 0...15 */
3289 __u8 log_cw_min;
3290
3291 /* Adaptive interframe spacing in units of 32us */
3292 __u8 aifs;
3293
3294 /* TX queue to configure */
3295 __u8 txq;
3296 } sta;
3297 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003298} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003299
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003300#define MWL8K_SET_EDCA_CW 0x01
3301#define MWL8K_SET_EDCA_TXOP 0x02
3302#define MWL8K_SET_EDCA_AIFS 0x04
3303
3304#define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
3305 MWL8K_SET_EDCA_TXOP | \
3306 MWL8K_SET_EDCA_AIFS)
3307
3308static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003309mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
3310 __u16 cw_min, __u16 cw_max,
3311 __u8 aifs, __u16 txop)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003312{
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003313 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003314 struct mwl8k_cmd_set_edca_params *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003315 int rc;
3316
3317 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3318 if (cmd == NULL)
3319 return -ENOMEM;
3320
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003321 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
3322 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003323 cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
3324 cmd->txop = cpu_to_le16(txop);
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003325 if (priv->ap_fw) {
3326 cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1));
3327 cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1));
3328 cmd->ap.aifs = aifs;
3329 cmd->ap.txq = qnum;
3330 } else {
3331 cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1);
3332 cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1);
3333 cmd->sta.aifs = aifs;
3334 cmd->sta.txq = qnum;
3335 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003336
3337 rc = mwl8k_post_cmd(hw, &cmd->header);
3338 kfree(cmd);
3339
3340 return rc;
3341}
3342
3343/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003344 * CMD_SET_WMM_MODE.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003345 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003346struct mwl8k_cmd_set_wmm_mode {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003347 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003348 __le16 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003349} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003350
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003351static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw *hw, bool enable)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003352{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003353 struct mwl8k_priv *priv = hw->priv;
3354 struct mwl8k_cmd_set_wmm_mode *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003355 int rc;
3356
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003357 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3358 if (cmd == NULL)
3359 return -ENOMEM;
3360
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003361 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003362 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003363 cmd->action = cpu_to_le16(!!enable);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003364
3365 rc = mwl8k_post_cmd(hw, &cmd->header);
3366 kfree(cmd);
Lennert Buytenhek16cec432009-11-30 18:14:23 +01003367
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003368 if (!rc)
3369 priv->wmm_enabled = enable;
3370
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003371 return rc;
3372}
3373
3374/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003375 * CMD_MIMO_CONFIG.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003376 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003377struct mwl8k_cmd_mimo_config {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003378 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003379 __le32 action;
3380 __u8 rx_antenna_map;
3381 __u8 tx_antenna_map;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003382} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003383
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003384static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003385{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003386 struct mwl8k_cmd_mimo_config *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003387 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003388
3389 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3390 if (cmd == NULL)
3391 return -ENOMEM;
3392
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003393 cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003394 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003395 cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET);
3396 cmd->rx_antenna_map = rx;
3397 cmd->tx_antenna_map = tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003398
3399 rc = mwl8k_post_cmd(hw, &cmd->header);
3400 kfree(cmd);
3401
3402 return rc;
3403}
3404
3405/*
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003406 * CMD_USE_FIXED_RATE (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003407 */
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003408struct mwl8k_cmd_use_fixed_rate_sta {
3409 struct mwl8k_cmd_pkt header;
3410 __le32 action;
3411 __le32 allow_rate_drop;
3412 __le32 num_rates;
3413 struct {
3414 __le32 is_ht_rate;
3415 __le32 enable_retry;
3416 __le32 rate;
3417 __le32 retry_count;
3418 } rate_entry[8];
3419 __le32 rate_type;
3420 __le32 reserved1;
3421 __le32 reserved2;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003422} __packed;
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003423
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003424#define MWL8K_USE_AUTO_RATE 0x0002
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003425#define MWL8K_UCAST_RATE 0
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003426
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003427static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003428{
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003429 struct mwl8k_cmd_use_fixed_rate_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003430 int rc;
3431
3432 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3433 if (cmd == NULL)
3434 return -ENOMEM;
3435
3436 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3437 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003438 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3439 cmd->rate_type = cpu_to_le32(MWL8K_UCAST_RATE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003440
3441 rc = mwl8k_post_cmd(hw, &cmd->header);
3442 kfree(cmd);
3443
3444 return rc;
3445}
3446
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003447/*
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003448 * CMD_USE_FIXED_RATE (AP version).
3449 */
3450struct mwl8k_cmd_use_fixed_rate_ap {
3451 struct mwl8k_cmd_pkt header;
3452 __le32 action;
3453 __le32 allow_rate_drop;
3454 __le32 num_rates;
3455 struct mwl8k_rate_entry_ap {
3456 __le32 is_ht_rate;
3457 __le32 enable_retry;
3458 __le32 rate;
3459 __le32 retry_count;
3460 } rate_entry[4];
3461 u8 multicast_rate;
3462 u8 multicast_rate_type;
3463 u8 management_rate;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003464} __packed;
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003465
3466static int
3467mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw *hw, int mcast, int mgmt)
3468{
3469 struct mwl8k_cmd_use_fixed_rate_ap *cmd;
3470 int rc;
3471
3472 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3473 if (cmd == NULL)
3474 return -ENOMEM;
3475
3476 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3477 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3478 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3479 cmd->multicast_rate = mcast;
3480 cmd->management_rate = mgmt;
3481
3482 rc = mwl8k_post_cmd(hw, &cmd->header);
3483 kfree(cmd);
3484
3485 return rc;
3486}
3487
3488/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003489 * CMD_ENABLE_SNIFFER.
3490 */
3491struct mwl8k_cmd_enable_sniffer {
3492 struct mwl8k_cmd_pkt header;
3493 __le32 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003494} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003495
3496static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable)
3497{
3498 struct mwl8k_cmd_enable_sniffer *cmd;
3499 int rc;
3500
3501 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3502 if (cmd == NULL)
3503 return -ENOMEM;
3504
3505 cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
3506 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3507 cmd->action = cpu_to_le32(!!enable);
3508
3509 rc = mwl8k_post_cmd(hw, &cmd->header);
3510 kfree(cmd);
3511
3512 return rc;
3513}
3514
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303515struct mwl8k_cmd_update_mac_addr {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003516 struct mwl8k_cmd_pkt header;
3517 union {
3518 struct {
3519 __le16 mac_type;
3520 __u8 mac_addr[ETH_ALEN];
3521 } mbss;
3522 __u8 mac_addr[ETH_ALEN];
3523 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003524} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003525
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003526#define MWL8K_MAC_TYPE_PRIMARY_CLIENT 0
3527#define MWL8K_MAC_TYPE_SECONDARY_CLIENT 1
3528#define MWL8K_MAC_TYPE_PRIMARY_AP 2
3529#define MWL8K_MAC_TYPE_SECONDARY_AP 3
Lennert Buytenheka9e00b12010-01-08 18:31:30 +01003530
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303531static int mwl8k_cmd_update_mac_addr(struct ieee80211_hw *hw,
3532 struct ieee80211_vif *vif, u8 *mac, bool set)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003533{
3534 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003535 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303536 struct mwl8k_cmd_update_mac_addr *cmd;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003537 int mac_type;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003538 int rc;
3539
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003540 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3541 if (vif != NULL && vif->type == NL80211_IFTYPE_STATION) {
3542 if (mwl8k_vif->macid + 1 == ffs(priv->sta_macids_supported))
Yogesh Ashok Powaraf458832013-01-25 16:20:12 +05303543 if (priv->ap_fw)
3544 mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
3545 else
3546 mac_type = MWL8K_MAC_TYPE_PRIMARY_CLIENT;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003547 else
3548 mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
3549 } else if (vif != NULL && vif->type == NL80211_IFTYPE_AP) {
3550 if (mwl8k_vif->macid + 1 == ffs(priv->ap_macids_supported))
3551 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3552 else
3553 mac_type = MWL8K_MAC_TYPE_SECONDARY_AP;
3554 }
3555
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003556 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3557 if (cmd == NULL)
3558 return -ENOMEM;
3559
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303560 if (set)
3561 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR);
3562 else
3563 cmd->header.code = cpu_to_le16(MWL8K_CMD_DEL_MAC_ADDR);
3564
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003565 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3566 if (priv->ap_fw) {
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003567 cmd->mbss.mac_type = cpu_to_le16(mac_type);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003568 memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN);
3569 } else {
3570 memcpy(cmd->mac_addr, mac, ETH_ALEN);
3571 }
3572
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003573 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003574 kfree(cmd);
3575
3576 return rc;
3577}
3578
3579/*
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303580 * MWL8K_CMD_SET_MAC_ADDR.
3581 */
3582static inline int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw,
3583 struct ieee80211_vif *vif, u8 *mac)
3584{
3585 return mwl8k_cmd_update_mac_addr(hw, vif, mac, true);
3586}
3587
3588/*
3589 * MWL8K_CMD_DEL_MAC_ADDR.
3590 */
3591static inline int mwl8k_cmd_del_mac_addr(struct ieee80211_hw *hw,
3592 struct ieee80211_vif *vif, u8 *mac)
3593{
3594 return mwl8k_cmd_update_mac_addr(hw, vif, mac, false);
3595}
3596
3597/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003598 * CMD_SET_RATEADAPT_MODE.
3599 */
3600struct mwl8k_cmd_set_rate_adapt_mode {
3601 struct mwl8k_cmd_pkt header;
3602 __le16 action;
3603 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003604} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003605
3606static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode)
3607{
3608 struct mwl8k_cmd_set_rate_adapt_mode *cmd;
3609 int rc;
3610
3611 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3612 if (cmd == NULL)
3613 return -ENOMEM;
3614
3615 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
3616 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3617 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3618 cmd->mode = cpu_to_le16(mode);
3619
3620 rc = mwl8k_post_cmd(hw, &cmd->header);
3621 kfree(cmd);
3622
3623 return rc;
3624}
3625
3626/*
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003627 * CMD_GET_WATCHDOG_BITMAP.
3628 */
3629struct mwl8k_cmd_get_watchdog_bitmap {
3630 struct mwl8k_cmd_pkt header;
3631 u8 bitmap;
3632} __packed;
3633
3634static int mwl8k_cmd_get_watchdog_bitmap(struct ieee80211_hw *hw, u8 *bitmap)
3635{
3636 struct mwl8k_cmd_get_watchdog_bitmap *cmd;
3637 int rc;
3638
3639 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3640 if (cmd == NULL)
3641 return -ENOMEM;
3642
3643 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_WATCHDOG_BITMAP);
3644 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3645
3646 rc = mwl8k_post_cmd(hw, &cmd->header);
3647 if (!rc)
3648 *bitmap = cmd->bitmap;
3649
3650 kfree(cmd);
3651
3652 return rc;
3653}
3654
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303655#define MWL8K_WMM_QUEUE_NUMBER 3
3656
3657static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
3658 u8 idx);
3659
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003660static void mwl8k_watchdog_ba_events(struct work_struct *work)
3661{
3662 int rc;
3663 u8 bitmap = 0, stream_index;
3664 struct mwl8k_ampdu_stream *streams;
3665 struct mwl8k_priv *priv =
3666 container_of(work, struct mwl8k_priv, watchdog_ba_handle);
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303667 struct ieee80211_hw *hw = priv->hw;
3668 int i;
3669 u32 status = 0;
3670
3671 mwl8k_fw_lock(hw);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003672
3673 rc = mwl8k_cmd_get_watchdog_bitmap(priv->hw, &bitmap);
3674 if (rc)
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303675 goto done;
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003676
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303677 spin_lock(&priv->stream_lock);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003678
3679 /* the bitmap is the hw queue number. Map it to the ampdu queue. */
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303680 for (i = 0; i < TOTAL_HW_TX_QUEUES; i++) {
3681 if (bitmap & (1 << i)) {
3682 stream_index = (i + MWL8K_WMM_QUEUE_NUMBER) %
3683 TOTAL_HW_TX_QUEUES;
3684 streams = &priv->ampdu[stream_index];
3685 if (streams->state == AMPDU_STREAM_ACTIVE) {
3686 ieee80211_stop_tx_ba_session(streams->sta,
3687 streams->tid);
3688 spin_unlock(&priv->stream_lock);
3689 mwl8k_destroy_ba(hw, stream_index);
3690 spin_lock(&priv->stream_lock);
3691 }
3692 }
3693 }
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003694
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303695 spin_unlock(&priv->stream_lock);
3696done:
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05303697 atomic_dec(&priv->watchdog_event_pending);
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303698 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3699 iowrite32((status | MWL8K_A2H_INT_BA_WATCHDOG),
3700 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3701 mwl8k_fw_unlock(hw);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003702 return;
3703}
3704
3705
3706/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003707 * CMD_BSS_START.
3708 */
3709struct mwl8k_cmd_bss_start {
3710 struct mwl8k_cmd_pkt header;
3711 __le32 enable;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003712} __packed;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003713
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003714static int mwl8k_cmd_bss_start(struct ieee80211_hw *hw,
3715 struct ieee80211_vif *vif, int enable)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003716{
3717 struct mwl8k_cmd_bss_start *cmd;
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303718 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
3719 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003720 int rc;
3721
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303722 if (enable && (priv->running_bsses & (1 << mwl8k_vif->macid)))
3723 return 0;
3724
3725 if (!enable && !(priv->running_bsses & (1 << mwl8k_vif->macid)))
3726 return 0;
3727
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003728 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3729 if (cmd == NULL)
3730 return -ENOMEM;
3731
3732 cmd->header.code = cpu_to_le16(MWL8K_CMD_BSS_START);
3733 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3734 cmd->enable = cpu_to_le32(enable);
3735
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003736 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003737 kfree(cmd);
3738
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303739 if (!rc) {
3740 if (enable)
3741 priv->running_bsses |= (1 << mwl8k_vif->macid);
3742 else
3743 priv->running_bsses &= ~(1 << mwl8k_vif->macid);
3744 }
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003745 return rc;
3746}
3747
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05303748static void mwl8k_enable_bsses(struct ieee80211_hw *hw, bool enable, u32 bitmap)
3749{
3750 struct mwl8k_priv *priv = hw->priv;
3751 struct mwl8k_vif *mwl8k_vif, *tmp_vif;
3752 struct ieee80211_vif *vif;
3753
3754 list_for_each_entry_safe(mwl8k_vif, tmp_vif, &priv->vif_list, list) {
3755 vif = mwl8k_vif->vif;
3756
3757 if (!(bitmap & (1 << mwl8k_vif->macid)))
3758 continue;
3759
3760 if (vif->type == NL80211_IFTYPE_AP)
3761 mwl8k_cmd_bss_start(hw, vif, enable);
3762 }
3763}
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003764/*
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003765 * CMD_BASTREAM.
3766 */
3767
3768/*
3769 * UPSTREAM is tx direction
3770 */
3771#define BASTREAM_FLAG_DIRECTION_UPSTREAM 0x00
3772#define BASTREAM_FLAG_IMMEDIATE_TYPE 0x01
3773
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303774enum ba_stream_action_type {
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003775 MWL8K_BA_CREATE,
3776 MWL8K_BA_UPDATE,
3777 MWL8K_BA_DESTROY,
3778 MWL8K_BA_FLUSH,
3779 MWL8K_BA_CHECK,
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303780};
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003781
3782
3783struct mwl8k_create_ba_stream {
3784 __le32 flags;
3785 __le32 idle_thrs;
3786 __le32 bar_thrs;
3787 __le32 window_size;
3788 u8 peer_mac_addr[6];
3789 u8 dialog_token;
3790 u8 tid;
3791 u8 queue_id;
3792 u8 param_info;
3793 __le32 ba_context;
3794 u8 reset_seq_no_flag;
3795 __le16 curr_seq_no;
3796 u8 sta_src_mac_addr[6];
3797} __packed;
3798
3799struct mwl8k_destroy_ba_stream {
3800 __le32 flags;
3801 __le32 ba_context;
3802} __packed;
3803
3804struct mwl8k_cmd_bastream {
3805 struct mwl8k_cmd_pkt header;
3806 __le32 action;
3807 union {
3808 struct mwl8k_create_ba_stream create_params;
3809 struct mwl8k_destroy_ba_stream destroy_params;
3810 };
3811} __packed;
3812
3813static int
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303814mwl8k_check_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
3815 struct ieee80211_vif *vif)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003816{
3817 struct mwl8k_cmd_bastream *cmd;
3818 int rc;
3819
3820 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3821 if (cmd == NULL)
3822 return -ENOMEM;
3823
3824 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3825 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3826
3827 cmd->action = cpu_to_le32(MWL8K_BA_CHECK);
3828
3829 cmd->create_params.queue_id = stream->idx;
3830 memcpy(&cmd->create_params.peer_mac_addr[0], stream->sta->addr,
3831 ETH_ALEN);
3832 cmd->create_params.tid = stream->tid;
3833
3834 cmd->create_params.flags =
3835 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE) |
3836 cpu_to_le32(BASTREAM_FLAG_DIRECTION_UPSTREAM);
3837
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303838 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003839
3840 kfree(cmd);
3841
3842 return rc;
3843}
3844
3845static int
3846mwl8k_create_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303847 u8 buf_size, struct ieee80211_vif *vif)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003848{
3849 struct mwl8k_cmd_bastream *cmd;
3850 int rc;
3851
3852 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3853 if (cmd == NULL)
3854 return -ENOMEM;
3855
3856
3857 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3858 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3859
3860 cmd->action = cpu_to_le32(MWL8K_BA_CREATE);
3861
3862 cmd->create_params.bar_thrs = cpu_to_le32((u32)buf_size);
3863 cmd->create_params.window_size = cpu_to_le32((u32)buf_size);
3864 cmd->create_params.queue_id = stream->idx;
3865
3866 memcpy(cmd->create_params.peer_mac_addr, stream->sta->addr, ETH_ALEN);
3867 cmd->create_params.tid = stream->tid;
3868 cmd->create_params.curr_seq_no = cpu_to_le16(0);
3869 cmd->create_params.reset_seq_no_flag = 1;
3870
3871 cmd->create_params.param_info =
3872 (stream->sta->ht_cap.ampdu_factor &
3873 IEEE80211_HT_AMPDU_PARM_FACTOR) |
3874 ((stream->sta->ht_cap.ampdu_density << 2) &
3875 IEEE80211_HT_AMPDU_PARM_DENSITY);
3876
3877 cmd->create_params.flags =
3878 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE |
3879 BASTREAM_FLAG_DIRECTION_UPSTREAM);
3880
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303881 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003882
3883 wiphy_debug(hw->wiphy, "Created a BA stream for %pM : tid %d\n",
3884 stream->sta->addr, stream->tid);
3885 kfree(cmd);
3886
3887 return rc;
3888}
3889
3890static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05303891 u8 idx)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003892{
3893 struct mwl8k_cmd_bastream *cmd;
3894
3895 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3896 if (cmd == NULL)
3897 return;
3898
3899 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3900 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3901 cmd->action = cpu_to_le32(MWL8K_BA_DESTROY);
3902
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05303903 cmd->destroy_params.ba_context = cpu_to_le32(idx);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003904 mwl8k_post_cmd(hw, &cmd->header);
3905
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05303906 wiphy_debug(hw->wiphy, "Deleted BA stream index %d\n", idx);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003907
3908 kfree(cmd);
3909}
3910
3911/*
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003912 * CMD_SET_NEW_STN.
3913 */
3914struct mwl8k_cmd_set_new_stn {
3915 struct mwl8k_cmd_pkt header;
3916 __le16 aid;
3917 __u8 mac_addr[6];
3918 __le16 stn_id;
3919 __le16 action;
3920 __le16 rsvd;
3921 __le32 legacy_rates;
3922 __u8 ht_rates[4];
3923 __le16 cap_info;
3924 __le16 ht_capabilities_info;
3925 __u8 mac_ht_param_info;
3926 __u8 rev;
3927 __u8 control_channel;
3928 __u8 add_channel;
3929 __le16 op_mode;
3930 __le16 stbc;
3931 __u8 add_qos_info;
3932 __u8 is_qos_sta;
3933 __le32 fw_sta_ptr;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003934} __packed;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003935
3936#define MWL8K_STA_ACTION_ADD 0
3937#define MWL8K_STA_ACTION_REMOVE 2
3938
3939static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw *hw,
3940 struct ieee80211_vif *vif,
3941 struct ieee80211_sta *sta)
3942{
3943 struct mwl8k_cmd_set_new_stn *cmd;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003944 u32 rates;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003945 int rc;
3946
3947 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3948 if (cmd == NULL)
3949 return -ENOMEM;
3950
3951 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3952 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3953 cmd->aid = cpu_to_le16(sta->aid);
3954 memcpy(cmd->mac_addr, sta->addr, ETH_ALEN);
3955 cmd->stn_id = cpu_to_le16(sta->aid);
3956 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_ADD);
Karl Beldan675a0b02013-03-25 16:26:57 +01003957 if (hw->conf.chandef.chan->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003958 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
3959 else
3960 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
3961 cmd->legacy_rates = cpu_to_le32(rates);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003962 if (sta->ht_cap.ht_supported) {
3963 cmd->ht_rates[0] = sta->ht_cap.mcs.rx_mask[0];
3964 cmd->ht_rates[1] = sta->ht_cap.mcs.rx_mask[1];
3965 cmd->ht_rates[2] = sta->ht_cap.mcs.rx_mask[2];
3966 cmd->ht_rates[3] = sta->ht_cap.mcs.rx_mask[3];
3967 cmd->ht_capabilities_info = cpu_to_le16(sta->ht_cap.cap);
3968 cmd->mac_ht_param_info = (sta->ht_cap.ampdu_factor & 3) |
3969 ((sta->ht_cap.ampdu_density & 7) << 2);
3970 cmd->is_qos_sta = 1;
3971 }
3972
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003973 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003974 kfree(cmd);
3975
3976 return rc;
3977}
3978
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003979static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw *hw,
3980 struct ieee80211_vif *vif)
3981{
3982 struct mwl8k_cmd_set_new_stn *cmd;
3983 int rc;
3984
3985 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3986 if (cmd == NULL)
3987 return -ENOMEM;
3988
3989 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3990 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3991 memcpy(cmd->mac_addr, vif->addr, ETH_ALEN);
3992
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003993 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003994 kfree(cmd);
3995
3996 return rc;
3997}
3998
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003999static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw *hw,
4000 struct ieee80211_vif *vif, u8 *addr)
4001{
4002 struct mwl8k_cmd_set_new_stn *cmd;
Yogesh Ashok Powar0dd13a42013-01-08 10:16:37 +05304003 struct mwl8k_priv *priv = hw->priv;
4004 int rc, i;
4005 u8 idx;
4006
4007 spin_lock(&priv->stream_lock);
4008 /* Destroy any active ampdu streams for this sta */
4009 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
4010 struct mwl8k_ampdu_stream *s;
4011 s = &priv->ampdu[i];
4012 if (s->state != AMPDU_NO_STREAM) {
4013 if (memcmp(s->sta->addr, addr, ETH_ALEN) == 0) {
4014 if (s->state == AMPDU_STREAM_ACTIVE) {
4015 idx = s->idx;
4016 spin_unlock(&priv->stream_lock);
4017 mwl8k_destroy_ba(hw, idx);
4018 spin_lock(&priv->stream_lock);
4019 } else if (s->state == AMPDU_STREAM_NEW) {
4020 mwl8k_remove_stream(hw, s);
4021 }
4022 }
4023 }
4024 }
4025
4026 spin_unlock(&priv->stream_lock);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004027
4028 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4029 if (cmd == NULL)
4030 return -ENOMEM;
4031
4032 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
4033 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4034 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4035 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_REMOVE);
4036
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004037 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004038 kfree(cmd);
4039
4040 return rc;
4041}
4042
4043/*
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004044 * CMD_UPDATE_ENCRYPTION.
4045 */
4046
4047#define MAX_ENCR_KEY_LENGTH 16
4048#define MIC_KEY_LENGTH 8
4049
4050struct mwl8k_cmd_update_encryption {
4051 struct mwl8k_cmd_pkt header;
4052
4053 __le32 action;
4054 __le32 reserved;
4055 __u8 mac_addr[6];
4056 __u8 encr_type;
4057
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304058} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004059
4060struct mwl8k_cmd_set_key {
4061 struct mwl8k_cmd_pkt header;
4062
4063 __le32 action;
4064 __le32 reserved;
4065 __le16 length;
4066 __le16 key_type_id;
4067 __le32 key_info;
4068 __le32 key_id;
4069 __le16 key_len;
4070 __u8 key_material[MAX_ENCR_KEY_LENGTH];
4071 __u8 tkip_tx_mic_key[MIC_KEY_LENGTH];
4072 __u8 tkip_rx_mic_key[MIC_KEY_LENGTH];
4073 __le16 tkip_rsc_low;
4074 __le32 tkip_rsc_high;
4075 __le16 tkip_tsc_low;
4076 __le32 tkip_tsc_high;
4077 __u8 mac_addr[6];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304078} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004079
4080enum {
4081 MWL8K_ENCR_ENABLE,
4082 MWL8K_ENCR_SET_KEY,
4083 MWL8K_ENCR_REMOVE_KEY,
4084 MWL8K_ENCR_SET_GROUP_KEY,
4085};
4086
4087#define MWL8K_UPDATE_ENCRYPTION_TYPE_WEP 0
4088#define MWL8K_UPDATE_ENCRYPTION_TYPE_DISABLE 1
4089#define MWL8K_UPDATE_ENCRYPTION_TYPE_TKIP 4
4090#define MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED 7
4091#define MWL8K_UPDATE_ENCRYPTION_TYPE_AES 8
4092
4093enum {
4094 MWL8K_ALG_WEP,
4095 MWL8K_ALG_TKIP,
4096 MWL8K_ALG_CCMP,
4097};
4098
4099#define MWL8K_KEY_FLAG_TXGROUPKEY 0x00000004
4100#define MWL8K_KEY_FLAG_PAIRWISE 0x00000008
4101#define MWL8K_KEY_FLAG_TSC_VALID 0x00000040
4102#define MWL8K_KEY_FLAG_WEP_TXKEY 0x01000000
4103#define MWL8K_KEY_FLAG_MICKEY_VALID 0x02000000
4104
4105static int mwl8k_cmd_update_encryption_enable(struct ieee80211_hw *hw,
4106 struct ieee80211_vif *vif,
4107 u8 *addr,
4108 u8 encr_type)
4109{
4110 struct mwl8k_cmd_update_encryption *cmd;
4111 int rc;
4112
4113 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4114 if (cmd == NULL)
4115 return -ENOMEM;
4116
4117 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
4118 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4119 cmd->action = cpu_to_le32(MWL8K_ENCR_ENABLE);
4120 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4121 cmd->encr_type = encr_type;
4122
4123 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4124 kfree(cmd);
4125
4126 return rc;
4127}
4128
4129static int mwl8k_encryption_set_cmd_info(struct mwl8k_cmd_set_key *cmd,
4130 u8 *addr,
4131 struct ieee80211_key_conf *key)
4132{
4133 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
4134 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4135 cmd->length = cpu_to_le16(sizeof(*cmd) -
4136 offsetof(struct mwl8k_cmd_set_key, length));
4137 cmd->key_id = cpu_to_le32(key->keyidx);
4138 cmd->key_len = cpu_to_le16(key->keylen);
4139 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4140
4141 switch (key->cipher) {
4142 case WLAN_CIPHER_SUITE_WEP40:
4143 case WLAN_CIPHER_SUITE_WEP104:
4144 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_WEP);
4145 if (key->keyidx == 0)
4146 cmd->key_info = cpu_to_le32(MWL8K_KEY_FLAG_WEP_TXKEY);
4147
4148 break;
4149 case WLAN_CIPHER_SUITE_TKIP:
4150 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_TKIP);
4151 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4152 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
4153 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
4154 cmd->key_info |= cpu_to_le32(MWL8K_KEY_FLAG_MICKEY_VALID
4155 | MWL8K_KEY_FLAG_TSC_VALID);
4156 break;
4157 case WLAN_CIPHER_SUITE_CCMP:
4158 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_CCMP);
4159 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4160 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
4161 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
4162 break;
4163 default:
4164 return -ENOTSUPP;
4165 }
4166
4167 return 0;
4168}
4169
4170static int mwl8k_cmd_encryption_set_key(struct ieee80211_hw *hw,
4171 struct ieee80211_vif *vif,
4172 u8 *addr,
4173 struct ieee80211_key_conf *key)
4174{
4175 struct mwl8k_cmd_set_key *cmd;
4176 int rc;
4177 int keymlen;
4178 u32 action;
4179 u8 idx;
4180 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4181
4182 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4183 if (cmd == NULL)
4184 return -ENOMEM;
4185
4186 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4187 if (rc < 0)
4188 goto done;
4189
4190 idx = key->keyidx;
4191
4192 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4193 action = MWL8K_ENCR_SET_KEY;
4194 else
4195 action = MWL8K_ENCR_SET_GROUP_KEY;
4196
4197 switch (key->cipher) {
4198 case WLAN_CIPHER_SUITE_WEP40:
4199 case WLAN_CIPHER_SUITE_WEP104:
4200 if (!mwl8k_vif->wep_key_conf[idx].enabled) {
4201 memcpy(mwl8k_vif->wep_key_conf[idx].key, key,
4202 sizeof(*key) + key->keylen);
4203 mwl8k_vif->wep_key_conf[idx].enabled = 1;
4204 }
4205
Yogesh Ashok Powar9b571e22011-05-04 17:22:16 +05304206 keymlen = key->keylen;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004207 action = MWL8K_ENCR_SET_KEY;
4208 break;
4209 case WLAN_CIPHER_SUITE_TKIP:
4210 keymlen = MAX_ENCR_KEY_LENGTH + 2 * MIC_KEY_LENGTH;
4211 break;
4212 case WLAN_CIPHER_SUITE_CCMP:
4213 keymlen = key->keylen;
4214 break;
4215 default:
4216 rc = -ENOTSUPP;
4217 goto done;
4218 }
4219
4220 memcpy(cmd->key_material, key->key, keymlen);
4221 cmd->action = cpu_to_le32(action);
4222
4223 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4224done:
4225 kfree(cmd);
4226
4227 return rc;
4228}
4229
4230static int mwl8k_cmd_encryption_remove_key(struct ieee80211_hw *hw,
4231 struct ieee80211_vif *vif,
4232 u8 *addr,
4233 struct ieee80211_key_conf *key)
4234{
4235 struct mwl8k_cmd_set_key *cmd;
4236 int rc;
4237 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4238
4239 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4240 if (cmd == NULL)
4241 return -ENOMEM;
4242
4243 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4244 if (rc < 0)
4245 goto done;
4246
4247 if (key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
Dan Carpenterd981e052012-01-17 10:33:31 +03004248 key->cipher == WLAN_CIPHER_SUITE_WEP104)
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004249 mwl8k_vif->wep_key_conf[key->keyidx].enabled = 0;
4250
4251 cmd->action = cpu_to_le32(MWL8K_ENCR_REMOVE_KEY);
4252
4253 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4254done:
4255 kfree(cmd);
4256
4257 return rc;
4258}
4259
4260static int mwl8k_set_key(struct ieee80211_hw *hw,
4261 enum set_key_cmd cmd_param,
4262 struct ieee80211_vif *vif,
4263 struct ieee80211_sta *sta,
4264 struct ieee80211_key_conf *key)
4265{
4266 int rc = 0;
4267 u8 encr_type;
4268 u8 *addr;
4269 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Yogesh Ashok Powar751930c2013-01-25 16:20:28 +05304270 struct mwl8k_priv *priv = hw->priv;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004271
Yogesh Ashok Powar751930c2013-01-25 16:20:28 +05304272 if (vif->type == NL80211_IFTYPE_STATION && !priv->ap_fw)
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004273 return -EOPNOTSUPP;
4274
4275 if (sta == NULL)
Yogesh Ashok Powarff7e9f92012-01-27 16:08:27 +05304276 addr = vif->addr;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004277 else
4278 addr = sta->addr;
4279
4280 if (cmd_param == SET_KEY) {
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004281 rc = mwl8k_cmd_encryption_set_key(hw, vif, addr, key);
4282 if (rc)
4283 goto out;
4284
4285 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40)
4286 || (key->cipher == WLAN_CIPHER_SUITE_WEP104))
4287 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_WEP;
4288 else
4289 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED;
4290
4291 rc = mwl8k_cmd_update_encryption_enable(hw, vif, addr,
4292 encr_type);
4293 if (rc)
4294 goto out;
4295
4296 mwl8k_vif->is_hw_crypto_enabled = true;
4297
4298 } else {
4299 rc = mwl8k_cmd_encryption_remove_key(hw, vif, addr, key);
4300
4301 if (rc)
4302 goto out;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004303 }
4304out:
4305 return rc;
4306}
4307
4308/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004309 * CMD_UPDATE_STADB.
4310 */
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004311struct ewc_ht_info {
4312 __le16 control1;
4313 __le16 control2;
4314 __le16 control3;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004315} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004316
4317struct peer_capability_info {
4318 /* Peer type - AP vs. STA. */
4319 __u8 peer_type;
4320
4321 /* Basic 802.11 capabilities from assoc resp. */
4322 __le16 basic_caps;
4323
4324 /* Set if peer supports 802.11n high throughput (HT). */
4325 __u8 ht_support;
4326
4327 /* Valid if HT is supported. */
4328 __le16 ht_caps;
4329 __u8 extended_ht_caps;
4330 struct ewc_ht_info ewc_info;
4331
4332 /* Legacy rate table. Intersection of our rates and peer rates. */
4333 __u8 legacy_rates[12];
4334
4335 /* HT rate table. Intersection of our rates and peer rates. */
4336 __u8 ht_rates[16];
4337 __u8 pad[16];
4338
4339 /* If set, interoperability mode, no proprietary extensions. */
4340 __u8 interop;
4341 __u8 pad2;
4342 __u8 station_id;
4343 __le16 amsdu_enabled;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004344} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004345
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004346struct mwl8k_cmd_update_stadb {
4347 struct mwl8k_cmd_pkt header;
4348
4349 /* See STADB_ACTION_TYPE */
4350 __le32 action;
4351
4352 /* Peer MAC address */
4353 __u8 peer_addr[ETH_ALEN];
4354
4355 __le32 reserved;
4356
4357 /* Peer info - valid during add/update. */
4358 struct peer_capability_info peer_info;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004359} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004360
Lennert Buytenheka6804002010-01-04 21:55:42 +01004361#define MWL8K_STA_DB_MODIFY_ENTRY 1
4362#define MWL8K_STA_DB_DEL_ENTRY 2
4363
4364/* Peer Entry flags - used to define the type of the peer node */
4365#define MWL8K_PEER_TYPE_ACCESSPOINT 2
4366
4367static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw,
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004368 struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004369 struct ieee80211_sta *sta)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004370{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004371 struct mwl8k_cmd_update_stadb *cmd;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004372 struct peer_capability_info *p;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004373 u32 rates;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004374 int rc;
4375
4376 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4377 if (cmd == NULL)
4378 return -ENOMEM;
4379
4380 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4381 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka6804002010-01-04 21:55:42 +01004382 cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004383 memcpy(cmd->peer_addr, sta->addr, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004384
Lennert Buytenheka6804002010-01-04 21:55:42 +01004385 p = &cmd->peer_info;
4386 p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
4387 p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004388 p->ht_support = sta->ht_cap.ht_supported;
John W. Linvilleb6037422010-07-20 13:55:00 -04004389 p->ht_caps = cpu_to_le16(sta->ht_cap.cap);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004390 p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) |
4391 ((sta->ht_cap.ampdu_density & 7) << 2);
Karl Beldan675a0b02013-03-25 16:26:57 +01004392 if (hw->conf.chandef.chan->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004393 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
4394 else
4395 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4396 legacy_rate_mask_to_array(p->legacy_rates, rates);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004397 memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16);
Lennert Buytenheka6804002010-01-04 21:55:42 +01004398 p->interop = 1;
4399 p->amsdu_enabled = 0;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004400
Lennert Buytenheka6804002010-01-04 21:55:42 +01004401 rc = mwl8k_post_cmd(hw, &cmd->header);
Nickolai Zeldovichc4f74d32013-01-06 20:27:22 -05004402 if (!rc)
4403 rc = p->station_id;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004404 kfree(cmd);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004405
Nickolai Zeldovichc4f74d32013-01-06 20:27:22 -05004406 return rc;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004407}
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004408
Lennert Buytenheka6804002010-01-04 21:55:42 +01004409static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw,
4410 struct ieee80211_vif *vif, u8 *addr)
4411{
4412 struct mwl8k_cmd_update_stadb *cmd;
4413 int rc;
4414
4415 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4416 if (cmd == NULL)
4417 return -ENOMEM;
4418
4419 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4420 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4421 cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY);
4422 memcpy(cmd->peer_addr, addr, ETH_ALEN);
4423
4424 rc = mwl8k_post_cmd(hw, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004425 kfree(cmd);
4426
4427 return rc;
4428}
4429
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004430
4431/*
4432 * Interrupt handling.
4433 */
4434static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
4435{
4436 struct ieee80211_hw *hw = dev_id;
4437 struct mwl8k_priv *priv = hw->priv;
4438 u32 status;
4439
4440 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004441 if (!status)
4442 return IRQ_NONE;
4443
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004444 if (status & MWL8K_A2H_INT_TX_DONE) {
4445 status &= ~MWL8K_A2H_INT_TX_DONE;
4446 tasklet_schedule(&priv->poll_tx_task);
4447 }
4448
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004449 if (status & MWL8K_A2H_INT_RX_READY) {
4450 status &= ~MWL8K_A2H_INT_RX_READY;
4451 tasklet_schedule(&priv->poll_rx_task);
4452 }
4453
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004454 if (status & MWL8K_A2H_INT_BA_WATCHDOG) {
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05304455 iowrite32(~MWL8K_A2H_INT_BA_WATCHDOG,
4456 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
4457
4458 atomic_inc(&priv->watchdog_event_pending);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004459 status &= ~MWL8K_A2H_INT_BA_WATCHDOG;
4460 ieee80211_queue_work(hw, &priv->watchdog_ba_handle);
4461 }
4462
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004463 if (status)
4464 iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004465
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004466 if (status & MWL8K_A2H_INT_OPC_DONE) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004467 if (priv->hostcmd_wait != NULL)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004468 complete(priv->hostcmd_wait);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004469 }
4470
4471 if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004472 if (!mutex_is_locked(&priv->fw_mutex) &&
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02004473 priv->radio_on && priv->pending_tx_pkts)
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004474 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004475 }
4476
4477 return IRQ_HANDLED;
4478}
4479
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004480static void mwl8k_tx_poll(unsigned long data)
4481{
4482 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4483 struct mwl8k_priv *priv = hw->priv;
4484 int limit;
4485 int i;
4486
4487 limit = 32;
4488
4489 spin_lock_bh(&priv->tx_lock);
4490
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004491 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004492 limit -= mwl8k_txq_reclaim(hw, i, limit, 0);
4493
4494 if (!priv->pending_tx_pkts && priv->tx_wait != NULL) {
4495 complete(priv->tx_wait);
4496 priv->tx_wait = NULL;
4497 }
4498
4499 spin_unlock_bh(&priv->tx_lock);
4500
4501 if (limit) {
4502 writel(~MWL8K_A2H_INT_TX_DONE,
4503 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4504 } else {
4505 tasklet_schedule(&priv->poll_tx_task);
4506 }
4507}
4508
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004509static void mwl8k_rx_poll(unsigned long data)
4510{
4511 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4512 struct mwl8k_priv *priv = hw->priv;
4513 int limit;
4514
4515 limit = 32;
4516 limit -= rxq_process(hw, 0, limit);
4517 limit -= rxq_refill(hw, 0, limit);
4518
4519 if (limit) {
4520 writel(~MWL8K_A2H_INT_RX_READY,
4521 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4522 } else {
4523 tasklet_schedule(&priv->poll_rx_task);
4524 }
4525}
4526
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004527
4528/*
4529 * Core driver operations.
4530 */
Thomas Huehn36323f82012-07-23 21:33:42 +02004531static void mwl8k_tx(struct ieee80211_hw *hw,
4532 struct ieee80211_tx_control *control,
4533 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004534{
4535 struct mwl8k_priv *priv = hw->priv;
4536 int index = skb_get_queue_mapping(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004537
Lennert Buytenhek9189c102010-01-12 13:47:32 +01004538 if (!priv->radio_on) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004539 wiphy_debug(hw->wiphy,
4540 "dropped TX frame since radio disabled\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004541 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01004542 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004543 }
4544
Thomas Huehn36323f82012-07-23 21:33:42 +02004545 mwl8k_txq_xmit(hw, index, control->sta, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004546}
4547
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004548static int mwl8k_start(struct ieee80211_hw *hw)
4549{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004550 struct mwl8k_priv *priv = hw->priv;
4551 int rc;
4552
Joe Perchesa0607fd2009-11-18 23:29:17 -08004553 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004554 IRQF_SHARED, MWL8K_NAME, hw);
4555 if (rc) {
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304556 priv->irq = -1;
Joe Perches5db55842010-08-11 19:11:19 -07004557 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004558 return -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004559 }
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304560 priv->irq = priv->pdev->irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004561
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004562 /* Enable TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004563 tasklet_enable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004564 tasklet_enable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004565
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004566 /* Enable interrupts */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02004567 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05304568 iowrite32(MWL8K_A2H_EVENTS,
4569 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004570
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004571 rc = mwl8k_fw_lock(hw);
4572 if (!rc) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004573 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004574
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004575 if (!priv->ap_fw) {
4576 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004577 rc = mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004578
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004579 if (!rc)
4580 rc = mwl8k_cmd_set_pre_scan(hw);
4581
4582 if (!rc)
4583 rc = mwl8k_cmd_set_post_scan(hw,
4584 "\x00\x00\x00\x00\x00\x00");
4585 }
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004586
4587 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004588 rc = mwl8k_cmd_set_rateadapt_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004589
4590 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004591 rc = mwl8k_cmd_set_wmm_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004592
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004593 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004594 }
4595
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004596 if (rc) {
4597 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
4598 free_irq(priv->pdev->irq, hw);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304599 priv->irq = -1;
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004600 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004601 tasklet_disable(&priv->poll_rx_task);
Nishant Sarmukadam4850b6d2013-01-08 12:10:53 +05304602 } else {
4603 ieee80211_wake_queues(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004604 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004605
4606 return rc;
4607}
4608
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004609static void mwl8k_stop(struct ieee80211_hw *hw)
4610{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004611 struct mwl8k_priv *priv = hw->priv;
4612 int i;
4613
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304614 if (!priv->hw_restart_in_progress)
4615 mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004616
4617 ieee80211_stop_queues(hw);
4618
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004619 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004620 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304621 if (priv->irq != -1) {
4622 free_irq(priv->pdev->irq, hw);
4623 priv->irq = -1;
4624 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004625
4626 /* Stop finalize join worker */
4627 cancel_work_sync(&priv->finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004628 cancel_work_sync(&priv->watchdog_ba_handle);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004629 if (priv->beacon_skb != NULL)
4630 dev_kfree_skb(priv->beacon_skb);
4631
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004632 /* Stop TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004633 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004634 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004635
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004636 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004637 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01004638 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004639}
4640
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004641static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image);
4642
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004643static int mwl8k_add_interface(struct ieee80211_hw *hw,
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004644 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004645{
4646 struct mwl8k_priv *priv = hw->priv;
4647 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004648 u32 macids_supported;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004649 int macid, rc;
4650 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004651
4652 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004653 * Reject interface creation if sniffer mode is active, as
4654 * STA operation is mutually exclusive with hardware sniffer
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004655 * mode. (Sniffer mode is only used on STA firmware.)
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004656 */
4657 if (priv->sniffer_enabled) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004658 wiphy_info(hw->wiphy,
4659 "unable to create STA interface because sniffer mode is enabled\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004660 return -EINVAL;
4661 }
4662
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004663 di = priv->device_info;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004664 switch (vif->type) {
4665 case NL80211_IFTYPE_AP:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004666 if (!priv->ap_fw && di->fw_image_ap) {
4667 /* we must load the ap fw to meet this request */
4668 if (!list_empty(&priv->vif_list))
4669 return -EBUSY;
4670 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4671 if (rc)
4672 return rc;
4673 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004674 macids_supported = priv->ap_macids_supported;
4675 break;
4676 case NL80211_IFTYPE_STATION:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004677 if (priv->ap_fw && di->fw_image_sta) {
Yogesh Ashok Poward59c1cf2013-01-25 16:20:03 +05304678 if (!list_empty(&priv->vif_list)) {
4679 wiphy_warn(hw->wiphy, "AP interface is running.\n"
4680 "Adding STA interface for WDS");
4681 } else {
4682 /* we must load the sta fw to
4683 * meet this request.
4684 */
4685 rc = mwl8k_reload_firmware(hw,
4686 di->fw_image_sta);
4687 if (rc)
4688 return rc;
4689 }
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004690 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004691 macids_supported = priv->sta_macids_supported;
4692 break;
4693 default:
4694 return -EINVAL;
4695 }
4696
4697 macid = ffs(macids_supported & ~priv->macids_used);
4698 if (!macid--)
4699 return -EBUSY;
4700
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004701 /* Setup driver private area. */
Johannes Berg1ed32e42009-12-23 13:15:45 +01004702 mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004703 memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004704 mwl8k_vif->vif = vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004705 mwl8k_vif->macid = macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004706 mwl8k_vif->seqno = 0;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004707 memcpy(mwl8k_vif->bssid, vif->addr, ETH_ALEN);
4708 mwl8k_vif->is_hw_crypto_enabled = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004709
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004710 /* Set the mac address. */
4711 mwl8k_cmd_set_mac_addr(hw, vif, vif->addr);
4712
Yogesh Ashok Poward994a1c2013-01-25 16:20:35 +05304713 if (vif->type == NL80211_IFTYPE_AP)
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004714 mwl8k_cmd_set_new_stn_add_self(hw, vif);
4715
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004716 priv->macids_used |= 1 << mwl8k_vif->macid;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004717 list_add_tail(&mwl8k_vif->list, &priv->vif_list);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004718
4719 return 0;
4720}
4721
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304722static void mwl8k_remove_vif(struct mwl8k_priv *priv, struct mwl8k_vif *vif)
4723{
4724 /* Has ieee80211_restart_hw re-added the removed interfaces? */
4725 if (!priv->macids_used)
4726 return;
4727
4728 priv->macids_used &= ~(1 << vif->macid);
4729 list_del(&vif->list);
4730}
4731
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004732static void mwl8k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004733 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004734{
4735 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004736 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004737
Yogesh Ashok Poward994a1c2013-01-25 16:20:35 +05304738 if (vif->type == NL80211_IFTYPE_AP)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004739 mwl8k_cmd_set_new_stn_del(hw, vif, vif->addr);
4740
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05304741 mwl8k_cmd_del_mac_addr(hw, vif, vif->addr);
Lennert Buytenhek32060e12009-10-22 20:20:04 +02004742
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304743 mwl8k_remove_vif(priv, mwl8k_vif);
4744}
4745
4746static void mwl8k_hw_restart_work(struct work_struct *work)
4747{
4748 struct mwl8k_priv *priv =
4749 container_of(work, struct mwl8k_priv, fw_reload);
4750 struct ieee80211_hw *hw = priv->hw;
4751 struct mwl8k_device_info *di;
4752 int rc;
4753
4754 /* If some command is waiting for a response, clear it */
4755 if (priv->hostcmd_wait != NULL) {
4756 complete(priv->hostcmd_wait);
4757 priv->hostcmd_wait = NULL;
4758 }
4759
4760 priv->hw_restart_owner = current;
4761 di = priv->device_info;
4762 mwl8k_fw_lock(hw);
4763
4764 if (priv->ap_fw)
4765 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4766 else
4767 rc = mwl8k_reload_firmware(hw, di->fw_image_sta);
4768
4769 if (rc)
4770 goto fail;
4771
4772 priv->hw_restart_owner = NULL;
4773 priv->hw_restart_in_progress = false;
4774
4775 /*
4776 * This unlock will wake up the queues and
4777 * also opens the command path for other
4778 * commands
4779 */
4780 mwl8k_fw_unlock(hw);
4781
4782 ieee80211_restart_hw(hw);
4783
4784 wiphy_err(hw->wiphy, "Firmware restarted successfully\n");
4785
4786 return;
4787fail:
4788 mwl8k_fw_unlock(hw);
4789
4790 wiphy_err(hw->wiphy, "Firmware restart failed\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004791}
4792
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004793static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004794{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004795 struct ieee80211_conf *conf = &hw->conf;
4796 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004797 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004798
Lennert Buytenhek7595d672009-08-17 23:59:40 +02004799 if (conf->flags & IEEE80211_CONF_IDLE) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004800 mwl8k_cmd_radio_disable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004801 return 0;
Lennert Buytenhek7595d672009-08-17 23:59:40 +02004802 }
4803
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004804 rc = mwl8k_fw_lock(hw);
4805 if (rc)
4806 return rc;
4807
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004808 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004809 if (rc)
4810 goto out;
4811
Yogesh Ashok Powar0f4316b2013-01-25 16:17:45 +05304812 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
4813 rc = mwl8k_cmd_set_rf_channel(hw, conf);
4814 if (rc)
4815 goto out;
4816 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004817
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004818 if (conf->power_level > 18)
4819 conf->power_level = 18;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004820
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004821 if (priv->ap_fw) {
Nishant Sarmukadam03217082011-04-05 14:18:09 +05304822
4823 if (conf->flags & IEEE80211_CONF_CHANGE_POWER) {
4824 rc = mwl8k_cmd_tx_power(hw, conf, conf->power_level);
4825 if (rc)
4826 goto out;
4827 }
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004828
Nishant Sarmukadamda62b762011-02-17 14:45:16 -08004829
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004830 } else {
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004831 rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level);
4832 if (rc)
4833 goto out;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004834 rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7);
4835 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004836
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004837out:
4838 mwl8k_fw_unlock(hw);
4839
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004840 return rc;
4841}
4842
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004843static void
4844mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4845 struct ieee80211_bss_conf *info, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004846{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004847 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304848 u32 ap_legacy_rates = 0;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004849 u8 ap_mcs_rates[16];
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004850 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004851
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004852 if (mwl8k_fw_lock(hw))
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004853 return;
4854
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004855 /*
4856 * No need to capture a beacon if we're no longer associated.
4857 */
4858 if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc)
4859 priv->capture_beacon = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004860
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004861 /*
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004862 * Get the AP's legacy and MCS rates.
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004863 */
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004864 if (vif->bss_conf.assoc) {
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004865 struct ieee80211_sta *ap;
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004866
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004867 rcu_read_lock();
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004868
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004869 ap = ieee80211_find_sta(vif, vif->bss_conf.bssid);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004870 if (ap == NULL) {
4871 rcu_read_unlock();
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004872 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004873 }
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004874
Karl Beldan675a0b02013-03-25 16:26:57 +01004875 if (hw->conf.chandef.chan->band == IEEE80211_BAND_2GHZ) {
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004876 ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ];
4877 } else {
4878 ap_legacy_rates =
4879 ap->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4880 }
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004881 memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004882
4883 rcu_read_unlock();
4884 }
4885
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05304886 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc &&
4887 !priv->ap_fw) {
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004888 rc = mwl8k_cmd_set_rate(hw, vif, ap_legacy_rates, ap_mcs_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004889 if (rc)
4890 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004891
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01004892 rc = mwl8k_cmd_use_fixed_rate_sta(hw);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004893 if (rc)
4894 goto out;
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05304895 } else {
4896 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc &&
4897 priv->ap_fw) {
4898 int idx;
4899 int rate;
4900
4901 /* Use AP firmware specific rate command.
4902 */
4903 idx = ffs(vif->bss_conf.basic_rates);
4904 if (idx)
4905 idx--;
4906
Karl Beldan675a0b02013-03-25 16:26:57 +01004907 if (hw->conf.chandef.chan->band == IEEE80211_BAND_2GHZ)
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05304908 rate = mwl8k_rates_24[idx].hw_value;
4909 else
4910 rate = mwl8k_rates_50[idx].hw_value;
4911
4912 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
4913 }
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004914 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004915
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004916 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004917 rc = mwl8k_set_radio_preamble(hw,
4918 vif->bss_conf.use_short_preamble);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004919 if (rc)
4920 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004921 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004922
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05304923 if ((changed & BSS_CHANGED_ERP_SLOT) && !priv->ap_fw) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004924 rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004925 if (rc)
4926 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004927 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004928
Yogesh Ashok Powardcee7432013-01-25 16:20:50 +05304929 if (vif->bss_conf.assoc && !priv->ap_fw &&
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004930 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_ERP_CTS_PROT |
4931 BSS_CHANGED_HT))) {
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004932 rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004933 if (rc)
4934 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004935 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004936
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004937 if (vif->bss_conf.assoc &&
4938 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004939 /*
4940 * Finalize the join. Tell rx handler to process
4941 * next beacon from our BSSID.
4942 */
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01004943 memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004944 priv->capture_beacon = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004945 }
4946
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004947out:
4948 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004949}
4950
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004951static void
4952mwl8k_bss_info_changed_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4953 struct ieee80211_bss_conf *info, u32 changed)
4954{
4955 int rc;
4956
4957 if (mwl8k_fw_lock(hw))
4958 return;
4959
4960 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
4961 rc = mwl8k_set_radio_preamble(hw,
4962 vif->bss_conf.use_short_preamble);
4963 if (rc)
4964 goto out;
4965 }
4966
4967 if (changed & BSS_CHANGED_BASIC_RATES) {
4968 int idx;
4969 int rate;
4970
4971 /*
4972 * Use lowest supported basic rate for multicasts
4973 * and management frames (such as probe responses --
4974 * beacons will always go out at 1 Mb/s).
4975 */
4976 idx = ffs(vif->bss_conf.basic_rates);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004977 if (idx)
4978 idx--;
4979
Karl Beldan675a0b02013-03-25 16:26:57 +01004980 if (hw->conf.chandef.chan->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004981 rate = mwl8k_rates_24[idx].hw_value;
4982 else
4983 rate = mwl8k_rates_50[idx].hw_value;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004984
4985 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
4986 }
4987
4988 if (changed & (BSS_CHANGED_BEACON_INT | BSS_CHANGED_BEACON)) {
4989 struct sk_buff *skb;
4990
4991 skb = ieee80211_beacon_get(hw, vif);
4992 if (skb != NULL) {
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004993 mwl8k_cmd_set_beacon(hw, vif, skb->data, skb->len);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004994 kfree_skb(skb);
4995 }
4996 }
4997
4998 if (changed & BSS_CHANGED_BEACON_ENABLED)
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004999 mwl8k_cmd_bss_start(hw, vif, info->enable_beacon);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005000
5001out:
5002 mwl8k_fw_unlock(hw);
5003}
5004
5005static void
5006mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5007 struct ieee80211_bss_conf *info, u32 changed)
5008{
Yogesh Ashok Powar41bf9112013-01-25 16:20:42 +05305009 if (vif->type == NL80211_IFTYPE_STATION)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005010 mwl8k_bss_info_changed_sta(hw, vif, info, changed);
Yogesh Ashok Powar41bf9112013-01-25 16:20:42 +05305011 if (vif->type == NL80211_IFTYPE_AP)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01005012 mwl8k_bss_info_changed_ap(hw, vif, info, changed);
5013}
5014
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02005015static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw,
Jiri Pirko22bedad2010-04-01 21:22:57 +00005016 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02005017{
5018 struct mwl8k_cmd_pkt *cmd;
5019
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005020 /*
5021 * Synthesize and return a command packet that programs the
5022 * hardware multicast address filter. At this point we don't
5023 * know whether FIF_ALLMULTI is being requested, but if it is,
5024 * we'll end up throwing this packet away and creating a new
5025 * one in mwl8k_configure_filter().
5026 */
Jiri Pirko22bedad2010-04-01 21:22:57 +00005027 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_list);
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02005028
5029 return (unsigned long)cmd;
5030}
5031
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005032static int
5033mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw,
5034 unsigned int changed_flags,
5035 unsigned int *total_flags)
5036{
5037 struct mwl8k_priv *priv = hw->priv;
5038
5039 /*
5040 * Hardware sniffer mode is mutually exclusive with STA
5041 * operation, so refuse to enable sniffer mode if a STA
5042 * interface is active.
5043 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005044 if (!list_empty(&priv->vif_list)) {
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005045 if (net_ratelimit())
Joe Perchesc96c31e2010-07-26 14:39:58 -07005046 wiphy_info(hw->wiphy,
5047 "not enabling sniffer mode because STA interface is active\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005048 return 0;
5049 }
5050
5051 if (!priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005052 if (mwl8k_cmd_enable_sniffer(hw, 1))
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005053 return 0;
5054 priv->sniffer_enabled = true;
5055 }
5056
5057 *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI |
5058 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL |
5059 FIF_OTHER_BSS;
5060
5061 return 1;
5062}
5063
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005064static struct mwl8k_vif *mwl8k_first_vif(struct mwl8k_priv *priv)
5065{
5066 if (!list_empty(&priv->vif_list))
5067 return list_entry(priv->vif_list.next, struct mwl8k_vif, list);
5068
5069 return NULL;
5070}
5071
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005072static void mwl8k_configure_filter(struct ieee80211_hw *hw,
5073 unsigned int changed_flags,
5074 unsigned int *total_flags,
5075 u64 multicast)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005076{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005077 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005078 struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast;
5079
5080 /*
Lennert Buytenhekc0adae22009-10-22 20:21:36 +02005081 * AP firmware doesn't allow fine-grained control over
5082 * the receive filter.
5083 */
5084 if (priv->ap_fw) {
5085 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
5086 kfree(cmd);
5087 return;
5088 }
5089
5090 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005091 * Enable hardware sniffer mode if FIF_CONTROL or
5092 * FIF_OTHER_BSS is requested.
5093 */
5094 if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) &&
5095 mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) {
5096 kfree(cmd);
5097 return;
5098 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005099
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005100 /* Clear unsupported feature flags */
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005101 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005102
Lennert Buytenhek90852f72010-01-02 10:31:42 +01005103 if (mwl8k_fw_lock(hw)) {
5104 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005105 return;
Lennert Buytenhek90852f72010-01-02 10:31:42 +01005106 }
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005107
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005108 if (priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005109 mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02005110 priv->sniffer_enabled = false;
5111 }
5112
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005113 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005114 if (*total_flags & FIF_BCN_PRBRESP_PROMISC) {
5115 /*
5116 * Disable the BSS filter.
5117 */
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005118 mwl8k_cmd_set_pre_scan(hw);
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005119 } else {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005120 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01005121 const u8 *bssid;
Lennert Buytenheka94cc972009-08-03 21:58:57 +02005122
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005123 /*
5124 * Enable the BSS filter.
5125 *
5126 * If there is an active STA interface, use that
5127 * interface's BSSID, otherwise use a dummy one
5128 * (where the OUI part needs to be nonzero for
5129 * the BSSID to be accepted by POST_SCAN).
5130 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005131 mwl8k_vif = mwl8k_first_vif(priv);
5132 if (mwl8k_vif != NULL)
5133 bssid = mwl8k_vif->vif->bss_conf.bssid;
5134 else
5135 bssid = "\x01\x00\x00\x00\x00\x00";
Lennert Buytenheka94cc972009-08-03 21:58:57 +02005136
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005137 mwl8k_cmd_set_post_scan(hw, bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005138 }
5139 }
5140
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005141 /*
5142 * If FIF_ALLMULTI is being requested, throw away the command
5143 * packet that ->prepare_multicast() built and replace it with
5144 * a command packet that enables reception of all multicast
5145 * packets.
5146 */
5147 if (*total_flags & FIF_ALLMULTI) {
5148 kfree(cmd);
Jiri Pirko22bedad2010-04-01 21:22:57 +00005149 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, NULL);
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005150 }
5151
5152 if (cmd != NULL) {
5153 mwl8k_post_cmd(hw, cmd);
5154 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005155 }
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02005156
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005157 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005158}
5159
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005160static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
5161{
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01005162 return mwl8k_cmd_set_rts_threshold(hw, value);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005163}
5164
Johannes Berg4a6967b2010-02-19 19:18:37 +01005165static int mwl8k_sta_remove(struct ieee80211_hw *hw,
5166 struct ieee80211_vif *vif,
5167 struct ieee80211_sta *sta)
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005168{
5169 struct mwl8k_priv *priv = hw->priv;
5170
Johannes Berg4a6967b2010-02-19 19:18:37 +01005171 if (priv->ap_fw)
5172 return mwl8k_cmd_set_new_stn_del(hw, vif, sta->addr);
5173 else
5174 return mwl8k_cmd_update_stadb_del(hw, vif, sta->addr);
5175}
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005176
Johannes Berg4a6967b2010-02-19 19:18:37 +01005177static int mwl8k_sta_add(struct ieee80211_hw *hw,
5178 struct ieee80211_vif *vif,
5179 struct ieee80211_sta *sta)
5180{
5181 struct mwl8k_priv *priv = hw->priv;
5182 int ret;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005183 int i;
5184 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
5185 struct ieee80211_key_conf *key;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005186
Johannes Berg4a6967b2010-02-19 19:18:37 +01005187 if (!priv->ap_fw) {
5188 ret = mwl8k_cmd_update_stadb_add(hw, vif, sta);
5189 if (ret >= 0) {
5190 MWL8K_STA(sta)->peer_id = ret;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07005191 if (sta->ht_cap.ht_supported)
5192 MWL8K_STA(sta)->is_ampdu_allowed = true;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005193 ret = 0;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005194 }
Johannes Berg4a6967b2010-02-19 19:18:37 +01005195
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08005196 } else {
5197 ret = mwl8k_cmd_set_new_stn_add(hw, vif, sta);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005198 }
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005199
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08005200 for (i = 0; i < NUM_WEP_KEYS; i++) {
5201 key = IEEE80211_KEY_CONF(mwl8k_vif->wep_key_conf[i].key);
5202 if (mwl8k_vif->wep_key_conf[i].enabled)
5203 mwl8k_set_key(hw, SET_KEY, vif, sta, key);
5204 }
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005205 return ret;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01005206}
5207
Eliad Peller8a3a3c82011-10-02 10:15:52 +02005208static int mwl8k_conf_tx(struct ieee80211_hw *hw,
5209 struct ieee80211_vif *vif, u16 queue,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005210 const struct ieee80211_tx_queue_params *params)
5211{
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005212 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005213 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005214
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005215 rc = mwl8k_fw_lock(hw);
5216 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005217 BUG_ON(queue > MWL8K_TX_WMM_QUEUES - 1);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005218 memcpy(&priv->wmm_params[queue], params, sizeof(*params));
5219
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005220 if (!priv->wmm_enabled)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005221 rc = mwl8k_cmd_set_wmm_mode(hw, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005222
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005223 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005224 int q = MWL8K_TX_WMM_QUEUES - 1 - queue;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005225 rc = mwl8k_cmd_set_edca_params(hw, q,
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005226 params->cw_min,
5227 params->cw_max,
5228 params->aifs,
5229 params->txop);
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005230 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005231
5232 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005233 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005234
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005235 return rc;
5236}
5237
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005238static int mwl8k_get_stats(struct ieee80211_hw *hw,
5239 struct ieee80211_low_level_stats *stats)
5240{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005241 return mwl8k_cmd_get_stat(hw, stats);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005242}
5243
John W. Linville0d462bb2010-07-28 14:04:24 -04005244static int mwl8k_get_survey(struct ieee80211_hw *hw, int idx,
5245 struct survey_info *survey)
5246{
5247 struct mwl8k_priv *priv = hw->priv;
5248 struct ieee80211_conf *conf = &hw->conf;
5249
5250 if (idx != 0)
5251 return -ENOENT;
5252
Karl Beldan675a0b02013-03-25 16:26:57 +01005253 survey->channel = conf->chandef.chan;
John W. Linville0d462bb2010-07-28 14:04:24 -04005254 survey->filled = SURVEY_INFO_NOISE_DBM;
5255 survey->noise = priv->noise;
5256
5257 return 0;
5258}
5259
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005260#define MAX_AMPDU_ATTEMPTS 5
5261
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005262static int
5263mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5264 enum ieee80211_ampdu_mlme_action action,
Johannes Berg0b01f032011-01-18 13:51:05 +01005265 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
5266 u8 buf_size)
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005267{
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005268
5269 int i, rc = 0;
5270 struct mwl8k_priv *priv = hw->priv;
5271 struct mwl8k_ampdu_stream *stream;
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305272 u8 *addr = sta->addr, idx;
Yogesh Ashok Powarfd712f52012-11-06 19:22:35 +05305273 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005274
5275 if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
5276 return -ENOTSUPP;
5277
5278 spin_lock(&priv->stream_lock);
5279 stream = mwl8k_lookup_stream(hw, addr, tid);
5280
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005281 switch (action) {
5282 case IEEE80211_AMPDU_RX_START:
5283 case IEEE80211_AMPDU_RX_STOP:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005284 break;
5285 case IEEE80211_AMPDU_TX_START:
5286 /* By the time we get here the hw queues may contain outgoing
5287 * packets for this RA/TID that are not part of this BA
5288 * session. The hw will assign sequence numbers to these
5289 * packets as they go out. So if we query the hw for its next
5290 * sequence number and use that for the SSN here, it may end up
5291 * being wrong, which will lead to sequence number mismatch at
5292 * the recipient. To avoid this, we reset the sequence number
5293 * to O for the first MPDU in this BA stream.
5294 */
5295 *ssn = 0;
5296 if (stream == NULL) {
5297 /* This means that somebody outside this driver called
5298 * ieee80211_start_tx_ba_session. This is unexpected
5299 * because we do our own rate control. Just warn and
5300 * move on.
5301 */
5302 wiphy_warn(hw->wiphy, "Unexpected call to %s. "
5303 "Proceeding anyway.\n", __func__);
5304 stream = mwl8k_add_stream(hw, sta, tid);
5305 }
5306 if (stream == NULL) {
5307 wiphy_debug(hw->wiphy, "no free AMPDU streams\n");
5308 rc = -EBUSY;
5309 break;
5310 }
5311 stream->state = AMPDU_STREAM_IN_PROGRESS;
5312
5313 /* Release the lock before we do the time consuming stuff */
5314 spin_unlock(&priv->stream_lock);
5315 for (i = 0; i < MAX_AMPDU_ATTEMPTS; i++) {
Yogesh Ashok Powarfd712f52012-11-06 19:22:35 +05305316
5317 /* Check if link is still valid */
5318 if (!sta_info->is_ampdu_allowed) {
5319 spin_lock(&priv->stream_lock);
5320 mwl8k_remove_stream(hw, stream);
5321 spin_unlock(&priv->stream_lock);
5322 return -EBUSY;
5323 }
5324
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05305325 rc = mwl8k_check_ba(hw, stream, vif);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005326
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305327 /* If HW restart is in progress mwl8k_post_cmd will
5328 * return -EBUSY. Avoid retrying mwl8k_check_ba in
5329 * such cases
5330 */
5331 if (!rc || rc == -EBUSY)
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005332 break;
5333 /*
5334 * HW queues take time to be flushed, give them
5335 * sufficient time
5336 */
5337
5338 msleep(1000);
5339 }
5340 spin_lock(&priv->stream_lock);
5341 if (rc) {
5342 wiphy_err(hw->wiphy, "Stream for tid %d busy after %d"
5343 " attempts\n", tid, MAX_AMPDU_ATTEMPTS);
5344 mwl8k_remove_stream(hw, stream);
5345 rc = -EBUSY;
5346 break;
5347 }
5348 ieee80211_start_tx_ba_cb_irqsafe(vif, addr, tid);
5349 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02005350 case IEEE80211_AMPDU_TX_STOP_CONT:
5351 case IEEE80211_AMPDU_TX_STOP_FLUSH:
5352 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305353 if (stream) {
5354 if (stream->state == AMPDU_STREAM_ACTIVE) {
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305355 idx = stream->idx;
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305356 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305357 mwl8k_destroy_ba(hw, idx);
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305358 spin_lock(&priv->stream_lock);
5359 }
5360 mwl8k_remove_stream(hw, stream);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005361 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005362 ieee80211_stop_tx_ba_cb_irqsafe(vif, addr, tid);
5363 break;
5364 case IEEE80211_AMPDU_TX_OPERATIONAL:
5365 BUG_ON(stream == NULL);
5366 BUG_ON(stream->state != AMPDU_STREAM_IN_PROGRESS);
5367 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05305368 rc = mwl8k_create_ba(hw, stream, buf_size, vif);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005369 spin_lock(&priv->stream_lock);
5370 if (!rc)
5371 stream->state = AMPDU_STREAM_ACTIVE;
5372 else {
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305373 idx = stream->idx;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005374 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305375 mwl8k_destroy_ba(hw, idx);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005376 spin_lock(&priv->stream_lock);
5377 wiphy_debug(hw->wiphy,
5378 "Failed adding stream for sta %pM tid %d\n",
5379 addr, tid);
5380 mwl8k_remove_stream(hw, stream);
5381 }
5382 break;
5383
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005384 default:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005385 rc = -ENOTSUPP;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005386 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005387
5388 spin_unlock(&priv->stream_lock);
5389 return rc;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005390}
5391
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005392static const struct ieee80211_ops mwl8k_ops = {
5393 .tx = mwl8k_tx,
5394 .start = mwl8k_start,
5395 .stop = mwl8k_stop,
5396 .add_interface = mwl8k_add_interface,
5397 .remove_interface = mwl8k_remove_interface,
5398 .config = mwl8k_config,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005399 .bss_info_changed = mwl8k_bss_info_changed,
Johannes Berg3ac64be2009-08-17 16:16:53 +02005400 .prepare_multicast = mwl8k_prepare_multicast,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005401 .configure_filter = mwl8k_configure_filter,
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005402 .set_key = mwl8k_set_key,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005403 .set_rts_threshold = mwl8k_set_rts_threshold,
Johannes Berg4a6967b2010-02-19 19:18:37 +01005404 .sta_add = mwl8k_sta_add,
5405 .sta_remove = mwl8k_sta_remove,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005406 .conf_tx = mwl8k_conf_tx,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005407 .get_stats = mwl8k_get_stats,
John W. Linville0d462bb2010-07-28 14:04:24 -04005408 .get_survey = mwl8k_get_survey,
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005409 .ampdu_action = mwl8k_ampdu_action,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005410};
5411
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005412static void mwl8k_finalize_join_worker(struct work_struct *work)
5413{
5414 struct mwl8k_priv *priv =
5415 container_of(work, struct mwl8k_priv, finalize_join_worker);
5416 struct sk_buff *skb = priv->beacon_skb;
Johannes Berg56007a02010-01-26 14:19:52 +01005417 struct ieee80211_mgmt *mgmt = (void *)skb->data;
5418 int len = skb->len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
5419 const u8 *tim = cfg80211_find_ie(WLAN_EID_TIM,
5420 mgmt->u.beacon.variable, len);
5421 int dtim_period = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005422
Johannes Berg56007a02010-01-26 14:19:52 +01005423 if (tim && tim[1] >= 2)
5424 dtim_period = tim[3];
5425
5426 mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len, dtim_period);
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005427
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005428 dev_kfree_skb(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005429 priv->beacon_skb = NULL;
5430}
5431
John W. Linvillebcb628d2009-11-06 16:40:16 -05005432enum {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005433 MWL8363 = 0,
5434 MWL8687,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005435 MWL8366,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02005436};
5437
Yogesh Ashok Powarc2f2e202013-01-03 13:24:44 +05305438#define MWL8K_8366_AP_FW_API 3
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005439#define _MWL8K_8366_AP_FW(api) "mwl8k/fmimage_8366_ap-" #api ".fw"
5440#define MWL8K_8366_AP_FW(api) _MWL8K_8366_AP_FW(api)
5441
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05005442static struct mwl8k_device_info mwl8k_info_tbl[] = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005443 [MWL8363] = {
5444 .part_name = "88w8363",
5445 .helper_image = "mwl8k/helper_8363.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005446 .fw_image_sta = "mwl8k/fmimage_8363.fw",
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005447 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005448 [MWL8687] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005449 .part_name = "88w8687",
5450 .helper_image = "mwl8k/helper_8687.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005451 .fw_image_sta = "mwl8k/fmimage_8687.fw",
John W. Linvillebcb628d2009-11-06 16:40:16 -05005452 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005453 [MWL8366] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005454 .part_name = "88w8366",
5455 .helper_image = "mwl8k/helper_8366.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005456 .fw_image_sta = "mwl8k/fmimage_8366.fw",
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005457 .fw_image_ap = MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API),
5458 .fw_api_ap = MWL8K_8366_AP_FW_API,
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01005459 .ap_rxd_ops = &rxd_8366_ap_ops,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005460 },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005461};
5462
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005463MODULE_FIRMWARE("mwl8k/helper_8363.fw");
5464MODULE_FIRMWARE("mwl8k/fmimage_8363.fw");
5465MODULE_FIRMWARE("mwl8k/helper_8687.fw");
5466MODULE_FIRMWARE("mwl8k/fmimage_8687.fw");
5467MODULE_FIRMWARE("mwl8k/helper_8366.fw");
5468MODULE_FIRMWARE("mwl8k/fmimage_8366.fw");
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005469MODULE_FIRMWARE(MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API));
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005470
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005471static DEFINE_PCI_DEVICE_TABLE(mwl8k_pci_id_table) = {
Benjamin Larssone5868ba2010-03-19 01:46:10 +01005472 { PCI_VDEVICE(MARVELL, 0x2a0a), .driver_data = MWL8363, },
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005473 { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, },
5474 { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005475 { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, },
5476 { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, },
5477 { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, },
Jonas Gorskifc5bc162013-02-05 16:59:17 +01005478 { PCI_VDEVICE(MARVELL, 0x2a41), .driver_data = MWL8366, },
5479 { PCI_VDEVICE(MARVELL, 0x2a42), .driver_data = MWL8366, },
Lennert Buytenhekca665272010-01-12 13:47:53 +01005480 { PCI_VDEVICE(MARVELL, 0x2a43), .driver_data = MWL8366, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005481 { },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005482};
5483MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table);
5484
Brian Cavagnolo99020472010-11-12 17:23:52 -08005485static int mwl8k_request_alt_fw(struct mwl8k_priv *priv)
5486{
5487 int rc;
5488 printk(KERN_ERR "%s: Error requesting preferred fw %s.\n"
5489 "Trying alternative firmware %s\n", pci_name(priv->pdev),
5490 priv->fw_pref, priv->fw_alt);
5491 rc = mwl8k_request_fw(priv, priv->fw_alt, &priv->fw_ucode, true);
5492 if (rc) {
5493 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5494 pci_name(priv->pdev), priv->fw_alt);
5495 return rc;
5496 }
5497 return 0;
5498}
5499
5500static int mwl8k_firmware_load_success(struct mwl8k_priv *priv);
5501static void mwl8k_fw_state_machine(const struct firmware *fw, void *context)
5502{
5503 struct mwl8k_priv *priv = context;
5504 struct mwl8k_device_info *di = priv->device_info;
5505 int rc;
5506
5507 switch (priv->fw_state) {
5508 case FW_STATE_INIT:
5509 if (!fw) {
5510 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
5511 pci_name(priv->pdev), di->helper_image);
5512 goto fail;
5513 }
5514 priv->fw_helper = fw;
5515 rc = mwl8k_request_fw(priv, priv->fw_pref, &priv->fw_ucode,
5516 true);
5517 if (rc && priv->fw_alt) {
5518 rc = mwl8k_request_alt_fw(priv);
5519 if (rc)
5520 goto fail;
5521 priv->fw_state = FW_STATE_LOADING_ALT;
5522 } else if (rc)
5523 goto fail;
5524 else
5525 priv->fw_state = FW_STATE_LOADING_PREF;
5526 break;
5527
5528 case FW_STATE_LOADING_PREF:
5529 if (!fw) {
5530 if (priv->fw_alt) {
5531 rc = mwl8k_request_alt_fw(priv);
5532 if (rc)
5533 goto fail;
5534 priv->fw_state = FW_STATE_LOADING_ALT;
5535 } else
5536 goto fail;
5537 } else {
5538 priv->fw_ucode = fw;
5539 rc = mwl8k_firmware_load_success(priv);
5540 if (rc)
5541 goto fail;
5542 else
5543 complete(&priv->firmware_loading_complete);
5544 }
5545 break;
5546
5547 case FW_STATE_LOADING_ALT:
5548 if (!fw) {
5549 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5550 pci_name(priv->pdev), di->helper_image);
5551 goto fail;
5552 }
5553 priv->fw_ucode = fw;
5554 rc = mwl8k_firmware_load_success(priv);
5555 if (rc)
5556 goto fail;
5557 else
5558 complete(&priv->firmware_loading_complete);
5559 break;
5560
5561 default:
5562 printk(KERN_ERR "%s: Unexpected firmware loading state: %d\n",
5563 MWL8K_NAME, priv->fw_state);
5564 BUG_ON(1);
5565 }
5566
5567 return;
5568
5569fail:
5570 priv->fw_state = FW_STATE_ERROR;
5571 complete(&priv->firmware_loading_complete);
5572 device_release_driver(&priv->pdev->dev);
5573 mwl8k_release_firmware(priv);
5574}
5575
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305576#define MAX_RESTART_ATTEMPTS 1
Brian Cavagnolo99020472010-11-12 17:23:52 -08005577static int mwl8k_init_firmware(struct ieee80211_hw *hw, char *fw_image,
5578 bool nowait)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005579{
5580 struct mwl8k_priv *priv = hw->priv;
5581 int rc;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305582 int count = MAX_RESTART_ATTEMPTS;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005583
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305584retry:
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005585 /* Reset firmware and hardware */
5586 mwl8k_hw_reset(priv);
5587
5588 /* Ask userland hotplug daemon for the device firmware */
Brian Cavagnolo99020472010-11-12 17:23:52 -08005589 rc = mwl8k_request_firmware(priv, fw_image, nowait);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005590 if (rc) {
5591 wiphy_err(hw->wiphy, "Firmware files not found\n");
5592 return rc;
5593 }
5594
Brian Cavagnolo99020472010-11-12 17:23:52 -08005595 if (nowait)
5596 return rc;
5597
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005598 /* Load firmware into hardware */
5599 rc = mwl8k_load_firmware(hw);
5600 if (rc)
5601 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5602
5603 /* Reclaim memory once firmware is successfully loaded */
5604 mwl8k_release_firmware(priv);
5605
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305606 if (rc && count) {
5607 /* FW did not start successfully;
5608 * lets try one more time
5609 */
5610 count--;
5611 wiphy_err(hw->wiphy, "Trying to reload the firmware again\n");
5612 msleep(20);
5613 goto retry;
5614 }
5615
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005616 return rc;
5617}
5618
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005619static int mwl8k_init_txqs(struct ieee80211_hw *hw)
5620{
5621 struct mwl8k_priv *priv = hw->priv;
5622 int rc = 0;
5623 int i;
5624
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005625 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005626 rc = mwl8k_txq_init(hw, i);
5627 if (rc)
5628 break;
5629 if (priv->ap_fw)
5630 iowrite32(priv->txq[i].txd_dma,
5631 priv->sram + priv->txq_offset[i]);
5632 }
5633 return rc;
5634}
5635
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005636/* initialize hw after successfully loading a firmware image */
5637static int mwl8k_probe_hw(struct ieee80211_hw *hw)
5638{
5639 struct mwl8k_priv *priv = hw->priv;
5640 int rc = 0;
5641 int i;
5642
5643 if (priv->ap_fw) {
5644 priv->rxd_ops = priv->device_info->ap_rxd_ops;
5645 if (priv->rxd_ops == NULL) {
5646 wiphy_err(hw->wiphy,
5647 "Driver does not have AP firmware image support for this hardware\n");
Alexey Khoroshilova2ca8ec2013-01-19 01:24:01 +04005648 rc = -ENOENT;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005649 goto err_stop_firmware;
5650 }
5651 } else {
5652 priv->rxd_ops = &rxd_sta_ops;
5653 }
5654
5655 priv->sniffer_enabled = false;
5656 priv->wmm_enabled = false;
5657 priv->pending_tx_pkts = 0;
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05305658 atomic_set(&priv->watchdog_event_pending, 0);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005659
5660 rc = mwl8k_rxq_init(hw, 0);
5661 if (rc)
5662 goto err_stop_firmware;
5663 rxq_refill(hw, 0, INT_MAX);
5664
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005665 /* For the sta firmware, we need to know the dma addresses of tx queues
5666 * before sending MWL8K_CMD_GET_HW_SPEC. So we must initialize them
5667 * prior to issuing this command. But for the AP case, we learn the
5668 * total number of queues from the result CMD_GET_HW_SPEC, so for this
5669 * case we must initialize the tx queues after.
5670 */
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07005671 priv->num_ampdu_queues = 0;
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005672 if (!priv->ap_fw) {
5673 rc = mwl8k_init_txqs(hw);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005674 if (rc)
5675 goto err_free_queues;
5676 }
5677
5678 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
5679 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005680 iowrite32(MWL8K_A2H_INT_TX_DONE|MWL8K_A2H_INT_RX_READY|
5681 MWL8K_A2H_INT_BA_WATCHDOG,
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005682 priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05305683 iowrite32(MWL8K_A2H_INT_OPC_DONE,
5684 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005685
5686 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
5687 IRQF_SHARED, MWL8K_NAME, hw);
5688 if (rc) {
5689 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
5690 goto err_free_queues;
5691 }
5692
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305693 /*
5694 * When hw restart is requested,
5695 * mac80211 will take care of clearing
5696 * the ampdu streams, so do not clear
5697 * the ampdu state here
5698 */
5699 if (!priv->hw_restart_in_progress)
5700 memset(priv->ampdu, 0, sizeof(priv->ampdu));
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005701
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005702 /*
5703 * Temporarily enable interrupts. Initial firmware host
5704 * commands use interrupts and avoid polling. Disable
5705 * interrupts when done.
5706 */
5707 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5708
5709 /* Get config data, mac addrs etc */
5710 if (priv->ap_fw) {
5711 rc = mwl8k_cmd_get_hw_spec_ap(hw);
5712 if (!rc)
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005713 rc = mwl8k_init_txqs(hw);
5714 if (!rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005715 rc = mwl8k_cmd_set_hw_spec(hw);
5716 } else {
5717 rc = mwl8k_cmd_get_hw_spec_sta(hw);
5718 }
5719 if (rc) {
5720 wiphy_err(hw->wiphy, "Cannot initialise firmware\n");
5721 goto err_free_irq;
5722 }
5723
5724 /* Turn radio off */
5725 rc = mwl8k_cmd_radio_disable(hw);
5726 if (rc) {
5727 wiphy_err(hw->wiphy, "Cannot disable\n");
5728 goto err_free_irq;
5729 }
5730
5731 /* Clear MAC address */
5732 rc = mwl8k_cmd_set_mac_addr(hw, NULL, "\x00\x00\x00\x00\x00\x00");
5733 if (rc) {
5734 wiphy_err(hw->wiphy, "Cannot clear MAC address\n");
5735 goto err_free_irq;
5736 }
5737
Yogesh Ashok Powara246ac32013-01-25 16:17:56 +05305738 /* Configure Antennas */
5739 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x3);
5740 if (rc)
5741 wiphy_warn(hw->wiphy, "failed to set # of RX antennas");
5742 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7);
5743 if (rc)
5744 wiphy_warn(hw->wiphy, "failed to set # of TX antennas");
5745
5746
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005747 /* Disable interrupts */
5748 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5749 free_irq(priv->pdev->irq, hw);
5750
5751 wiphy_info(hw->wiphy, "%s v%d, %pm, %s firmware %u.%u.%u.%u\n",
5752 priv->device_info->part_name,
5753 priv->hw_rev, hw->wiphy->perm_addr,
5754 priv->ap_fw ? "AP" : "STA",
5755 (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff,
5756 (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff);
5757
5758 return 0;
5759
5760err_free_irq:
5761 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5762 free_irq(priv->pdev->irq, hw);
5763
5764err_free_queues:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005765 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005766 mwl8k_txq_deinit(hw, i);
5767 mwl8k_rxq_deinit(hw, 0);
5768
5769err_stop_firmware:
5770 mwl8k_hw_reset(priv);
5771
5772 return rc;
5773}
5774
5775/*
5776 * invoke mwl8k_reload_firmware to change the firmware image after the device
5777 * has already been registered
5778 */
5779static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image)
5780{
5781 int i, rc = 0;
5782 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305783 struct mwl8k_vif *vif, *tmp_vif;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005784
5785 mwl8k_stop(hw);
5786 mwl8k_rxq_deinit(hw, 0);
5787
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305788 /*
5789 * All the existing interfaces are re-added by the ieee80211_reconfig;
5790 * which means driver should remove existing interfaces before calling
5791 * ieee80211_restart_hw
5792 */
5793 if (priv->hw_restart_in_progress)
5794 list_for_each_entry_safe(vif, tmp_vif, &priv->vif_list, list)
5795 mwl8k_remove_vif(priv, vif);
5796
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005797 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005798 mwl8k_txq_deinit(hw, i);
5799
Brian Cavagnolo99020472010-11-12 17:23:52 -08005800 rc = mwl8k_init_firmware(hw, fw_image, false);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005801 if (rc)
5802 goto fail;
5803
5804 rc = mwl8k_probe_hw(hw);
5805 if (rc)
5806 goto fail;
5807
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305808 if (priv->hw_restart_in_progress)
5809 return rc;
5810
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005811 rc = mwl8k_start(hw);
5812 if (rc)
5813 goto fail;
5814
5815 rc = mwl8k_config(hw, ~0);
5816 if (rc)
5817 goto fail;
5818
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005819 for (i = 0; i < MWL8K_TX_WMM_QUEUES; i++) {
Eliad Peller8a3a3c82011-10-02 10:15:52 +02005820 rc = mwl8k_conf_tx(hw, NULL, i, &priv->wmm_params[i]);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005821 if (rc)
5822 goto fail;
5823 }
5824
5825 return rc;
5826
5827fail:
5828 printk(KERN_WARNING "mwl8k: Failed to reload firmware image.\n");
5829 return rc;
5830}
5831
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305832static const struct ieee80211_iface_limit ap_if_limits[] = {
5833 { .max = 8, .types = BIT(NL80211_IFTYPE_AP) },
Yogesh Ashok Powar2acdaa72013-01-25 16:19:55 +05305834 { .max = 1, .types = BIT(NL80211_IFTYPE_STATION) },
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305835};
5836
5837static const struct ieee80211_iface_combination ap_if_comb = {
5838 .limits = ap_if_limits,
5839 .n_limits = ARRAY_SIZE(ap_if_limits),
5840 .max_interfaces = 8,
5841 .num_different_channels = 1,
5842};
5843
5844
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005845static int mwl8k_firmware_load_success(struct mwl8k_priv *priv)
5846{
5847 struct ieee80211_hw *hw = priv->hw;
5848 int i, rc;
5849
Brian Cavagnolo99020472010-11-12 17:23:52 -08005850 rc = mwl8k_load_firmware(hw);
5851 mwl8k_release_firmware(priv);
5852 if (rc) {
5853 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5854 return rc;
5855 }
5856
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005857 /*
5858 * Extra headroom is the size of the required DMA header
5859 * minus the size of the smallest 802.11 frame (CTS frame).
5860 */
5861 hw->extra_tx_headroom =
5862 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
5863
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05305864 hw->extra_tx_headroom -= priv->ap_fw ? REDUCED_TX_HEADROOM : 0;
5865
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005866 hw->channel_change_time = 10;
5867
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005868 hw->queues = MWL8K_TX_WMM_QUEUES;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005869
5870 /* Set rssi values to dBm */
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08005871 hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_HAS_RATE_CONTROL;
Yogesh Ashok Powar2a36a0e2011-08-29 17:12:44 +05305872
5873 /*
5874 * Ask mac80211 to not to trigger PS mode
5875 * based on PM bit of incoming frames.
5876 */
5877 if (priv->ap_fw)
5878 hw->flags |= IEEE80211_HW_AP_LINK_PS;
5879
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005880 hw->vif_data_size = sizeof(struct mwl8k_vif);
5881 hw->sta_data_size = sizeof(struct mwl8k_sta);
5882
5883 priv->macids_used = 0;
5884 INIT_LIST_HEAD(&priv->vif_list);
5885
5886 /* Set default radio state and preamble */
Rusty Russell3db1cd52011-12-19 13:56:45 +00005887 priv->radio_on = false;
5888 priv->radio_short_preamble = false;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005889
5890 /* Finalize join worker */
5891 INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005892 /* Handle watchdog ba events */
5893 INIT_WORK(&priv->watchdog_ba_handle, mwl8k_watchdog_ba_events);
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305894 /* To reload the firmware if it crashes */
5895 INIT_WORK(&priv->fw_reload, mwl8k_hw_restart_work);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005896
5897 /* TX reclaim and RX tasklets. */
5898 tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw);
5899 tasklet_disable(&priv->poll_tx_task);
5900 tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw);
5901 tasklet_disable(&priv->poll_rx_task);
5902
5903 /* Power management cookie */
5904 priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
5905 if (priv->cookie == NULL)
5906 return -ENOMEM;
5907
5908 mutex_init(&priv->fw_mutex);
5909 priv->fw_mutex_owner = NULL;
5910 priv->fw_mutex_depth = 0;
5911 priv->hostcmd_wait = NULL;
5912
5913 spin_lock_init(&priv->tx_lock);
5914
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005915 spin_lock_init(&priv->stream_lock);
5916
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005917 priv->tx_wait = NULL;
5918
5919 rc = mwl8k_probe_hw(hw);
5920 if (rc)
5921 goto err_free_cookie;
5922
5923 hw->wiphy->interface_modes = 0;
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305924
5925 if (priv->ap_macids_supported || priv->device_info->fw_image_ap) {
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005926 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP);
Yogesh Ashok Powar2acdaa72013-01-25 16:19:55 +05305927 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305928 hw->wiphy->iface_combinations = &ap_if_comb;
5929 hw->wiphy->n_iface_combinations = 1;
5930 }
5931
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005932 if (priv->sta_macids_supported || priv->device_info->fw_image_sta)
5933 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
5934
5935 rc = ieee80211_register_hw(hw);
5936 if (rc) {
5937 wiphy_err(hw->wiphy, "Cannot register device\n");
5938 goto err_unprobe_hw;
5939 }
5940
5941 return 0;
5942
5943err_unprobe_hw:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005944 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005945 mwl8k_txq_deinit(hw, i);
5946 mwl8k_rxq_deinit(hw, 0);
5947
5948err_free_cookie:
5949 if (priv->cookie != NULL)
5950 pci_free_consistent(priv->pdev, 4,
5951 priv->cookie, priv->cookie_dma);
5952
5953 return rc;
5954}
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05005955static int mwl8k_probe(struct pci_dev *pdev,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005956 const struct pci_device_id *id)
5957{
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005958 static int printed_version;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005959 struct ieee80211_hw *hw;
5960 struct mwl8k_priv *priv;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005961 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005962 int rc;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02005963
5964 if (!printed_version) {
5965 printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION);
5966 printed_version = 1;
5967 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005968
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005969
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005970 rc = pci_enable_device(pdev);
5971 if (rc) {
5972 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
5973 MWL8K_NAME);
5974 return rc;
5975 }
5976
5977 rc = pci_request_regions(pdev, MWL8K_NAME);
5978 if (rc) {
5979 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
5980 MWL8K_NAME);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01005981 goto err_disable_device;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005982 }
5983
5984 pci_set_master(pdev);
5985
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005986
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005987 hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
5988 if (hw == NULL) {
5989 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
5990 rc = -ENOMEM;
5991 goto err_free_reg;
5992 }
5993
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005994 SET_IEEE80211_DEV(hw, &pdev->dev);
5995 pci_set_drvdata(pdev, hw);
5996
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005997 priv = hw->priv;
5998 priv->hw = hw;
5999 priv->pdev = pdev;
John W. Linvillebcb628d2009-11-06 16:40:16 -05006000 priv->device_info = &mwl8k_info_tbl[id->driver_data];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006001
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006002
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006003 priv->sram = pci_iomap(pdev, 0, 0x10000);
6004 if (priv->sram == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07006005 wiphy_err(hw->wiphy, "Cannot map device SRAM\n");
Alexey Khoroshilova2ca8ec2013-01-19 01:24:01 +04006006 rc = -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006007 goto err_iounmap;
6008 }
6009
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006010 /*
6011 * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
6012 * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
6013 */
6014 priv->regs = pci_iomap(pdev, 1, 0x10000);
6015 if (priv->regs == NULL) {
6016 priv->regs = pci_iomap(pdev, 2, 0x10000);
6017 if (priv->regs == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07006018 wiphy_err(hw->wiphy, "Cannot map device registers\n");
Alexey Khoroshilova2ca8ec2013-01-19 01:24:01 +04006019 rc = -EIO;
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006020 goto err_iounmap;
6021 }
6022 }
6023
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006024 /*
Brian Cavagnolo99020472010-11-12 17:23:52 -08006025 * Choose the initial fw image depending on user input. If a second
6026 * image is available, make it the alternative image that will be
6027 * loaded if the first one fails.
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006028 */
Brian Cavagnolo99020472010-11-12 17:23:52 -08006029 init_completion(&priv->firmware_loading_complete);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006030 di = priv->device_info;
Brian Cavagnolo99020472010-11-12 17:23:52 -08006031 if (ap_mode_default && di->fw_image_ap) {
6032 priv->fw_pref = di->fw_image_ap;
6033 priv->fw_alt = di->fw_image_sta;
6034 } else if (!ap_mode_default && di->fw_image_sta) {
6035 priv->fw_pref = di->fw_image_sta;
6036 priv->fw_alt = di->fw_image_ap;
6037 } else if (ap_mode_default && !di->fw_image_ap && di->fw_image_sta) {
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006038 printk(KERN_WARNING "AP fw is unavailable. Using STA fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08006039 priv->fw_pref = di->fw_image_sta;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08006040 } else if (!ap_mode_default && !di->fw_image_sta && di->fw_image_ap) {
6041 printk(KERN_WARNING "STA fw is unavailable. Using AP fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08006042 priv->fw_pref = di->fw_image_ap;
6043 }
6044 rc = mwl8k_init_firmware(hw, priv->fw_pref, true);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006045 if (rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08006046 goto err_stop_firmware;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05306047
6048 priv->hw_restart_in_progress = false;
6049
Yogesh Ashok Poware882efc2013-01-25 16:17:32 +05306050 priv->running_bsses = 0;
6051
Brian Cavagnolo99020472010-11-12 17:23:52 -08006052 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006053
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01006054err_stop_firmware:
6055 mwl8k_hw_reset(priv);
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01006056
6057err_iounmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006058 if (priv->regs != NULL)
6059 pci_iounmap(pdev, priv->regs);
6060
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006061 if (priv->sram != NULL)
6062 pci_iounmap(pdev, priv->sram);
6063
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006064 pci_set_drvdata(pdev, NULL);
6065 ieee80211_free_hw(hw);
6066
6067err_free_reg:
6068 pci_release_regions(pdev);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01006069
6070err_disable_device:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006071 pci_disable_device(pdev);
6072
6073 return rc;
6074}
6075
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05006076static void mwl8k_remove(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006077{
6078 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
6079 struct mwl8k_priv *priv;
6080 int i;
6081
6082 if (hw == NULL)
6083 return;
6084 priv = hw->priv;
6085
Brian Cavagnolo99020472010-11-12 17:23:52 -08006086 wait_for_completion(&priv->firmware_loading_complete);
6087
6088 if (priv->fw_state == FW_STATE_ERROR) {
6089 mwl8k_hw_reset(priv);
6090 goto unmap;
6091 }
6092
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006093 ieee80211_stop_queues(hw);
6094
Lennert Buytenhek60aa5692009-08-03 21:59:09 +02006095 ieee80211_unregister_hw(hw);
6096
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01006097 /* Remove TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01006098 tasklet_kill(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01006099 tasklet_kill(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006100
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006101 /* Stop hardware */
6102 mwl8k_hw_reset(priv);
6103
6104 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07006105 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01006106 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006107
Brian Cavagnoloe6007072011-03-17 11:58:44 -07006108 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006109 mwl8k_txq_deinit(hw, i);
6110
6111 mwl8k_rxq_deinit(hw, 0);
6112
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02006113 pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006114
Brian Cavagnolo99020472010-11-12 17:23:52 -08006115unmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006116 pci_iounmap(pdev, priv->regs);
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02006117 pci_iounmap(pdev, priv->sram);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006118 pci_set_drvdata(pdev, NULL);
6119 ieee80211_free_hw(hw);
6120 pci_release_regions(pdev);
6121 pci_disable_device(pdev);
6122}
6123
6124static struct pci_driver mwl8k_driver = {
6125 .name = MWL8K_NAME,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02006126 .id_table = mwl8k_pci_id_table,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006127 .probe = mwl8k_probe,
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05006128 .remove = mwl8k_remove,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006129};
6130
Axel Lin5b0a3b72012-04-14 10:38:36 +08006131module_pci_driver(mwl8k_driver);
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02006132
6133MODULE_DESCRIPTION(MWL8K_DESC);
6134MODULE_VERSION(MWL8K_VERSION);
6135MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
6136MODULE_LICENSE("GPL");