blob: 04442c6290a6a1f48a7a05dfe44e11bfd3c7fc9e [file] [log] [blame]
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001/*
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002 * drivers/net/wireless/mwl8k.c
3 * Driver for Marvell TOPDOG 802.11 Wireless cards
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004 *
Lennert Buytenheka5fb2972010-01-12 13:51:38 +01005 * Copyright (C) 2008, 2009, 2010 Marvell Semiconductor Inc.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006 *
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
10 */
11
12#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000013#include <linux/interrupt.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010014#include <linux/module.h>
15#include <linux/kernel.h>
Lennert Buytenhek3d76e822009-10-22 20:20:16 +020016#include <linux/sched.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010017#include <linux/spinlock.h>
18#include <linux/list.h>
19#include <linux/pci.h>
20#include <linux/delay.h>
21#include <linux/completion.h>
22#include <linux/etherdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010024#include <net/mac80211.h>
25#include <linux/moduleparam.h>
26#include <linux/firmware.h>
27#include <linux/workqueue.h>
28
29#define MWL8K_DESC "Marvell TOPDOG(R) 802.11 Wireless Network Driver"
30#define MWL8K_NAME KBUILD_MODNAME
Yogesh Ashok Powar00e8e692011-12-20 11:39:29 +053031#define MWL8K_VERSION "0.13"
Lennert Buytenheka66098d2009-03-10 10:13:33 +010032
Brian Cavagnolo0863ade2010-11-12 17:23:50 -080033/* Module parameters */
Rusty Russelleb939922011-12-19 14:08:01 +000034static bool ap_mode_default;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -080035module_param(ap_mode_default, bool, 0);
36MODULE_PARM_DESC(ap_mode_default,
37 "Set to 1 to make ap mode the default instead of sta mode");
38
Lennert Buytenheka66098d2009-03-10 10:13:33 +010039/* Register definitions */
40#define MWL8K_HIU_GEN_PTR 0x00000c10
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020041#define MWL8K_MODE_STA 0x0000005a
42#define MWL8K_MODE_AP 0x000000a5
Lennert Buytenheka66098d2009-03-10 10:13:33 +010043#define MWL8K_HIU_INT_CODE 0x00000c14
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020044#define MWL8K_FWSTA_READY 0xf0f1f2f4
45#define MWL8K_FWAP_READY 0xf1f2f4a5
46#define MWL8K_INT_CODE_CMD_FINISHED 0x00000005
Lennert Buytenheka66098d2009-03-10 10:13:33 +010047#define MWL8K_HIU_SCRATCH 0x00000c40
48
49/* Host->device communications */
50#define MWL8K_HIU_H2A_INTERRUPT_EVENTS 0x00000c18
51#define MWL8K_HIU_H2A_INTERRUPT_STATUS 0x00000c1c
52#define MWL8K_HIU_H2A_INTERRUPT_MASK 0x00000c20
53#define MWL8K_HIU_H2A_INTERRUPT_CLEAR_SEL 0x00000c24
54#define MWL8K_HIU_H2A_INTERRUPT_STATUS_MASK 0x00000c28
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020055#define MWL8K_H2A_INT_DUMMY (1 << 20)
56#define MWL8K_H2A_INT_RESET (1 << 15)
57#define MWL8K_H2A_INT_DOORBELL (1 << 1)
58#define MWL8K_H2A_INT_PPA_READY (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010059
60/* Device->host communications */
61#define MWL8K_HIU_A2H_INTERRUPT_EVENTS 0x00000c2c
62#define MWL8K_HIU_A2H_INTERRUPT_STATUS 0x00000c30
63#define MWL8K_HIU_A2H_INTERRUPT_MASK 0x00000c34
64#define MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL 0x00000c38
65#define MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK 0x00000c3c
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020066#define MWL8K_A2H_INT_DUMMY (1 << 20)
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -070067#define MWL8K_A2H_INT_BA_WATCHDOG (1 << 14)
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020068#define MWL8K_A2H_INT_CHNL_SWITCHED (1 << 11)
69#define MWL8K_A2H_INT_QUEUE_EMPTY (1 << 10)
70#define MWL8K_A2H_INT_RADAR_DETECT (1 << 7)
71#define MWL8K_A2H_INT_RADIO_ON (1 << 6)
72#define MWL8K_A2H_INT_RADIO_OFF (1 << 5)
73#define MWL8K_A2H_INT_MAC_EVENT (1 << 3)
74#define MWL8K_A2H_INT_OPC_DONE (1 << 2)
75#define MWL8K_A2H_INT_RX_READY (1 << 1)
76#define MWL8K_A2H_INT_TX_DONE (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010077
Pradeep Nemavat566875d2011-04-21 16:34:57 +053078/* HW micro second timer register
79 * located at offset 0xA600. This
80 * will be used to timestamp tx
81 * packets.
82 */
83
84#define MWL8K_HW_TIMER_REGISTER 0x0000a600
85
Lennert Buytenheka66098d2009-03-10 10:13:33 +010086#define MWL8K_A2H_EVENTS (MWL8K_A2H_INT_DUMMY | \
87 MWL8K_A2H_INT_CHNL_SWITCHED | \
88 MWL8K_A2H_INT_QUEUE_EMPTY | \
89 MWL8K_A2H_INT_RADAR_DETECT | \
90 MWL8K_A2H_INT_RADIO_ON | \
91 MWL8K_A2H_INT_RADIO_OFF | \
92 MWL8K_A2H_INT_MAC_EVENT | \
93 MWL8K_A2H_INT_OPC_DONE | \
94 MWL8K_A2H_INT_RX_READY | \
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -070095 MWL8K_A2H_INT_TX_DONE | \
96 MWL8K_A2H_INT_BA_WATCHDOG)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010097
Lennert Buytenheka66098d2009-03-10 10:13:33 +010098#define MWL8K_RX_QUEUES 1
Brian Cavagnoloe6007072011-03-17 11:58:44 -070099#define MWL8K_TX_WMM_QUEUES 4
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700100#define MWL8K_MAX_AMPDU_QUEUES 8
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700101#define MWL8K_MAX_TX_QUEUES (MWL8K_TX_WMM_QUEUES + MWL8K_MAX_AMPDU_QUEUES)
102#define mwl8k_tx_queues(priv) (MWL8K_TX_WMM_QUEUES + (priv)->num_ampdu_queues)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100103
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +0530104/* txpriorities are mapped with hw queues.
105 * Each hw queue has a txpriority.
106 */
107#define TOTAL_HW_TX_QUEUES 8
108
109/* Each HW queue can have one AMPDU stream.
110 * But, because one of the hw queue is reserved,
111 * maximum AMPDU queues that can be created are
112 * one short of total tx queues.
113 */
114#define MWL8K_NUM_AMPDU_STREAMS (TOTAL_HW_TX_QUEUES - 1)
115
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200116struct rxd_ops {
117 int rxd_size;
118 void (*rxd_init)(void *rxd, dma_addr_t next_dma_addr);
119 void (*rxd_refill)(void *rxd, dma_addr_t addr, int len);
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100120 int (*rxd_process)(void *rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -0400121 __le16 *qos, s8 *noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200122};
123
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200124struct mwl8k_device_info {
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200125 char *part_name;
126 char *helper_image;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800127 char *fw_image_sta;
128 char *fw_image_ap;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100129 struct rxd_ops *ap_rxd_ops;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -0800130 u32 fw_api_ap;
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200131};
132
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100133struct mwl8k_rx_queue {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200134 int rxd_count;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100135
136 /* hw receives here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200137 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100138
139 /* refill descs here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200140 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100141
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200142 void *rxd;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200143 dma_addr_t rxd_dma;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200144 struct {
145 struct sk_buff *skb;
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +0900146 DEFINE_DMA_UNMAP_ADDR(dma);
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200147 } *buf;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100148};
149
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100150struct mwl8k_tx_queue {
151 /* hw transmits here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200152 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100153
154 /* sw appends here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200155 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100156
Kalle Valo8ccbc3b2010-02-07 10:20:52 +0200157 unsigned int len;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200158 struct mwl8k_tx_desc *txd;
159 dma_addr_t txd_dma;
160 struct sk_buff **skb;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100161};
162
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700163enum {
164 AMPDU_NO_STREAM,
165 AMPDU_STREAM_NEW,
166 AMPDU_STREAM_IN_PROGRESS,
167 AMPDU_STREAM_ACTIVE,
168};
169
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700170struct mwl8k_ampdu_stream {
171 struct ieee80211_sta *sta;
172 u8 tid;
173 u8 state;
174 u8 idx;
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700175};
176
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100177struct mwl8k_priv {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100178 struct ieee80211_hw *hw;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100179 struct pci_dev *pdev;
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +0530180 int irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100181
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200182 struct mwl8k_device_info *device_info;
183
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100184 void __iomem *sram;
185 void __iomem *regs;
186
187 /* firmware */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800188 const struct firmware *fw_helper;
189 const struct firmware *fw_ucode;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100190
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100191 /* hardware/firmware parameters */
192 bool ap_fw;
193 struct rxd_ops *rxd_ops;
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100194 struct ieee80211_supported_band band_24;
195 struct ieee80211_channel channels_24[14];
196 struct ieee80211_rate rates_24[14];
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100197 struct ieee80211_supported_band band_50;
198 struct ieee80211_channel channels_50[4];
199 struct ieee80211_rate rates_50[9];
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100200 u32 ap_macids_supported;
201 u32 sta_macids_supported;
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100202
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700203 /* Ampdu stream information */
204 u8 num_ampdu_queues;
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700205 spinlock_t stream_lock;
206 struct mwl8k_ampdu_stream ampdu[MWL8K_MAX_AMPDU_QUEUES];
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700207 struct work_struct watchdog_ba_handle;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700208
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200209 /* firmware access */
210 struct mutex fw_mutex;
211 struct task_struct *fw_mutex_owner;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +0530212 struct task_struct *hw_restart_owner;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200213 int fw_mutex_depth;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200214 struct completion *hostcmd_wait;
215
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +0530216 atomic_t watchdog_event_pending;
217
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100218 /* lock held over TX and TX reap */
219 spinlock_t tx_lock;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100220
Lennert Buytenhek88de754a2009-10-22 20:19:37 +0200221 /* TX quiesce completion, protected by fw_mutex and tx_lock */
222 struct completion *tx_wait;
223
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100224 /* List of interfaces. */
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100225 u32 macids_used;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100226 struct list_head vif_list;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100227
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100228 /* power management status cookie from firmware */
229 u32 *cookie;
230 dma_addr_t cookie_dma;
231
232 u16 num_mcaddrs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100233 u8 hw_rev;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +0200234 u32 fw_rev;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100235
236 /*
237 * Running count of TX packets in flight, to avoid
238 * iterating over the transmit rings each time.
239 */
240 int pending_tx_pkts;
241
242 struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES];
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700243 struct mwl8k_tx_queue txq[MWL8K_MAX_TX_QUEUES];
244 u32 txq_offset[MWL8K_MAX_TX_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100245
Lennert Buytenhekc46563b2009-07-16 12:14:58 +0200246 bool radio_on;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +0200247 bool radio_short_preamble;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +0200248 bool sniffer_enabled;
Lennert Buytenhek0439b1f2009-07-16 12:34:02 +0200249 bool wmm_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100250
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100251 /* XXX need to convert this to handle multiple interfaces */
252 bool capture_beacon;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200253 u8 capture_bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100254 struct sk_buff *beacon_skb;
255
256 /*
257 * This FJ worker has to be global as it is scheduled from the
258 * RX handler. At this point we don't know which interface it
259 * belongs to until the list of bssids waiting to complete join
260 * is checked.
261 */
262 struct work_struct finalize_join_worker;
263
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +0100264 /* Tasklet to perform TX reclaim. */
265 struct tasklet_struct poll_tx_task;
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +0100266
267 /* Tasklet to perform RX. */
268 struct tasklet_struct poll_rx_task;
John W. Linville0d462bb2010-07-28 14:04:24 -0400269
270 /* Most recently reported noise in dBm */
271 s8 noise;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800272
273 /*
274 * preserve the queue configurations so they can be restored if/when
275 * the firmware image is swapped.
276 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700277 struct ieee80211_tx_queue_params wmm_params[MWL8K_TX_WMM_QUEUES];
Brian Cavagnolo99020472010-11-12 17:23:52 -0800278
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +0530279 /* To perform the task of reloading the firmware */
280 struct work_struct fw_reload;
281 bool hw_restart_in_progress;
282
Brian Cavagnolo99020472010-11-12 17:23:52 -0800283 /* async firmware loading state */
284 unsigned fw_state;
285 char *fw_pref;
286 char *fw_alt;
287 struct completion firmware_loading_complete;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100288};
289
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800290#define MAX_WEP_KEY_LEN 13
291#define NUM_WEP_KEYS 4
292
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100293/* Per interface specific private data */
294struct mwl8k_vif {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100295 struct list_head list;
296 struct ieee80211_vif *vif;
297
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100298 /* Firmware macid for this vif. */
299 int macid;
300
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +0100301 /* Non AMPDU sequence number assigned by driver. */
Lennert Buytenheka6804002010-01-04 21:55:42 +0100302 u16 seqno;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800303
304 /* Saved WEP keys */
305 struct {
306 u8 enabled;
307 u8 key[sizeof(struct ieee80211_key_conf) + MAX_WEP_KEY_LEN];
308 } wep_key_conf[NUM_WEP_KEYS];
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800309
310 /* BSSID */
311 u8 bssid[ETH_ALEN];
312
313 /* A flag to indicate is HW crypto is enabled for this bssid */
314 bool is_hw_crypto_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100315};
Lennert Buytenheka94cc972009-08-03 21:58:57 +0200316#define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv))
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800317#define IEEE80211_KEY_CONF(_u8) ((struct ieee80211_key_conf *)(_u8))
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100318
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700319struct tx_traffic_info {
320 u32 start_time;
321 u32 pkts;
322};
323
324#define MWL8K_MAX_TID 8
Lennert Buytenheka6804002010-01-04 21:55:42 +0100325struct mwl8k_sta {
326 /* Index into station database. Returned by UPDATE_STADB. */
327 u8 peer_id;
Nishant Sarmukadam170335432011-03-17 11:58:48 -0700328 u8 is_ampdu_allowed;
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700329 struct tx_traffic_info tx_stats[MWL8K_MAX_TID];
Lennert Buytenheka6804002010-01-04 21:55:42 +0100330};
331#define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv))
332
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100333static const struct ieee80211_channel mwl8k_channels_24[] = {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100334 { .center_freq = 2412, .hw_value = 1, },
335 { .center_freq = 2417, .hw_value = 2, },
336 { .center_freq = 2422, .hw_value = 3, },
337 { .center_freq = 2427, .hw_value = 4, },
338 { .center_freq = 2432, .hw_value = 5, },
339 { .center_freq = 2437, .hw_value = 6, },
340 { .center_freq = 2442, .hw_value = 7, },
341 { .center_freq = 2447, .hw_value = 8, },
342 { .center_freq = 2452, .hw_value = 9, },
343 { .center_freq = 2457, .hw_value = 10, },
344 { .center_freq = 2462, .hw_value = 11, },
Lennert Buytenhek647ca6b2009-11-30 18:32:20 +0100345 { .center_freq = 2467, .hw_value = 12, },
346 { .center_freq = 2472, .hw_value = 13, },
347 { .center_freq = 2484, .hw_value = 14, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100348};
349
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100350static const struct ieee80211_rate mwl8k_rates_24[] = {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100351 { .bitrate = 10, .hw_value = 2, },
352 { .bitrate = 20, .hw_value = 4, },
353 { .bitrate = 55, .hw_value = 11, },
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200354 { .bitrate = 110, .hw_value = 22, },
355 { .bitrate = 220, .hw_value = 44, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100356 { .bitrate = 60, .hw_value = 12, },
357 { .bitrate = 90, .hw_value = 18, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100358 { .bitrate = 120, .hw_value = 24, },
359 { .bitrate = 180, .hw_value = 36, },
360 { .bitrate = 240, .hw_value = 48, },
361 { .bitrate = 360, .hw_value = 72, },
362 { .bitrate = 480, .hw_value = 96, },
363 { .bitrate = 540, .hw_value = 108, },
Lennert Buytenhek140eb5e2009-11-30 18:11:44 +0100364 { .bitrate = 720, .hw_value = 144, },
365};
366
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100367static const struct ieee80211_channel mwl8k_channels_50[] = {
368 { .center_freq = 5180, .hw_value = 36, },
369 { .center_freq = 5200, .hw_value = 40, },
370 { .center_freq = 5220, .hw_value = 44, },
371 { .center_freq = 5240, .hw_value = 48, },
372};
373
374static const struct ieee80211_rate mwl8k_rates_50[] = {
375 { .bitrate = 60, .hw_value = 12, },
376 { .bitrate = 90, .hw_value = 18, },
377 { .bitrate = 120, .hw_value = 24, },
378 { .bitrate = 180, .hw_value = 36, },
379 { .bitrate = 240, .hw_value = 48, },
380 { .bitrate = 360, .hw_value = 72, },
381 { .bitrate = 480, .hw_value = 96, },
382 { .bitrate = 540, .hw_value = 108, },
383 { .bitrate = 720, .hw_value = 144, },
384};
385
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100386/* Set or get info from Firmware */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100387#define MWL8K_CMD_GET 0x0000
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800388#define MWL8K_CMD_SET 0x0001
389#define MWL8K_CMD_SET_LIST 0x0002
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100390
391/* Firmware command codes */
392#define MWL8K_CMD_CODE_DNLD 0x0001
393#define MWL8K_CMD_GET_HW_SPEC 0x0003
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200394#define MWL8K_CMD_SET_HW_SPEC 0x0004
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100395#define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010
396#define MWL8K_CMD_GET_STAT 0x0014
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200397#define MWL8K_CMD_RADIO_CONTROL 0x001c
398#define MWL8K_CMD_RF_TX_POWER 0x001e
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800399#define MWL8K_CMD_TX_POWER 0x001f
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200400#define MWL8K_CMD_RF_ANTENNA 0x0020
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100401#define MWL8K_CMD_SET_BEACON 0x0100 /* per-vif */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100402#define MWL8K_CMD_SET_PRE_SCAN 0x0107
403#define MWL8K_CMD_SET_POST_SCAN 0x0108
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200404#define MWL8K_CMD_SET_RF_CHANNEL 0x010a
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100405#define MWL8K_CMD_SET_AID 0x010d
406#define MWL8K_CMD_SET_RATE 0x0110
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200407#define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100408#define MWL8K_CMD_RTS_THRESHOLD 0x0113
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200409#define MWL8K_CMD_SET_SLOT 0x0114
410#define MWL8K_CMD_SET_EDCA_PARAMS 0x0115
411#define MWL8K_CMD_SET_WMM_MODE 0x0123
412#define MWL8K_CMD_MIMO_CONFIG 0x0125
413#define MWL8K_CMD_USE_FIXED_RATE 0x0126
414#define MWL8K_CMD_ENABLE_SNIFFER 0x0150
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100415#define MWL8K_CMD_SET_MAC_ADDR 0x0202 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200416#define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700417#define MWL8K_CMD_GET_WATCHDOG_BITMAP 0x0205
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +0530418#define MWL8K_CMD_DEL_MAC_ADDR 0x0206 /* per-vif */
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +0100419#define MWL8K_CMD_BSS_START 0x1100 /* per-vif */
420#define MWL8K_CMD_SET_NEW_STN 0x1111 /* per-vif */
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800421#define MWL8K_CMD_UPDATE_ENCRYPTION 0x1122 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200422#define MWL8K_CMD_UPDATE_STADB 0x1123
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700423#define MWL8K_CMD_BASTREAM 0x1125
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100424
John W. Linvilleb6037422010-07-20 13:55:00 -0400425static const char *mwl8k_cmd_name(__le16 cmd, char *buf, int bufsize)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100426{
John W. Linvilleb6037422010-07-20 13:55:00 -0400427 u16 command = le16_to_cpu(cmd);
428
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100429#define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\
430 snprintf(buf, bufsize, "%s", #x);\
431 return buf;\
432 } while (0)
John W. Linvilleb6037422010-07-20 13:55:00 -0400433 switch (command & ~0x8000) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100434 MWL8K_CMDNAME(CODE_DNLD);
435 MWL8K_CMDNAME(GET_HW_SPEC);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200436 MWL8K_CMDNAME(SET_HW_SPEC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100437 MWL8K_CMDNAME(MAC_MULTICAST_ADR);
438 MWL8K_CMDNAME(GET_STAT);
439 MWL8K_CMDNAME(RADIO_CONTROL);
440 MWL8K_CMDNAME(RF_TX_POWER);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800441 MWL8K_CMDNAME(TX_POWER);
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200442 MWL8K_CMDNAME(RF_ANTENNA);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100443 MWL8K_CMDNAME(SET_BEACON);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100444 MWL8K_CMDNAME(SET_PRE_SCAN);
445 MWL8K_CMDNAME(SET_POST_SCAN);
446 MWL8K_CMDNAME(SET_RF_CHANNEL);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100447 MWL8K_CMDNAME(SET_AID);
448 MWL8K_CMDNAME(SET_RATE);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200449 MWL8K_CMDNAME(SET_FINALIZE_JOIN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100450 MWL8K_CMDNAME(RTS_THRESHOLD);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200451 MWL8K_CMDNAME(SET_SLOT);
452 MWL8K_CMDNAME(SET_EDCA_PARAMS);
453 MWL8K_CMDNAME(SET_WMM_MODE);
454 MWL8K_CMDNAME(MIMO_CONFIG);
455 MWL8K_CMDNAME(USE_FIXED_RATE);
456 MWL8K_CMDNAME(ENABLE_SNIFFER);
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200457 MWL8K_CMDNAME(SET_MAC_ADDR);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200458 MWL8K_CMDNAME(SET_RATEADAPT_MODE);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100459 MWL8K_CMDNAME(BSS_START);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +0100460 MWL8K_CMDNAME(SET_NEW_STN);
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800461 MWL8K_CMDNAME(UPDATE_ENCRYPTION);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200462 MWL8K_CMDNAME(UPDATE_STADB);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700463 MWL8K_CMDNAME(BASTREAM);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700464 MWL8K_CMDNAME(GET_WATCHDOG_BITMAP);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100465 default:
466 snprintf(buf, bufsize, "0x%x", cmd);
467 }
468#undef MWL8K_CMDNAME
469
470 return buf;
471}
472
473/* Hardware and firmware reset */
474static void mwl8k_hw_reset(struct mwl8k_priv *priv)
475{
476 iowrite32(MWL8K_H2A_INT_RESET,
477 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
478 iowrite32(MWL8K_H2A_INT_RESET,
479 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
480 msleep(20);
481}
482
483/* Release fw image */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800484static void mwl8k_release_fw(const struct firmware **fw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100485{
486 if (*fw == NULL)
487 return;
488 release_firmware(*fw);
489 *fw = NULL;
490}
491
492static void mwl8k_release_firmware(struct mwl8k_priv *priv)
493{
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100494 mwl8k_release_fw(&priv->fw_ucode);
495 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100496}
497
Brian Cavagnolo99020472010-11-12 17:23:52 -0800498/* states for asynchronous f/w loading */
499static void mwl8k_fw_state_machine(const struct firmware *fw, void *context);
500enum {
501 FW_STATE_INIT = 0,
502 FW_STATE_LOADING_PREF,
503 FW_STATE_LOADING_ALT,
504 FW_STATE_ERROR,
505};
506
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100507/* Request fw image */
508static int mwl8k_request_fw(struct mwl8k_priv *priv,
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800509 const char *fname, const struct firmware **fw,
Brian Cavagnolo99020472010-11-12 17:23:52 -0800510 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100511{
512 /* release current image */
513 if (*fw != NULL)
514 mwl8k_release_fw(fw);
515
Brian Cavagnolo99020472010-11-12 17:23:52 -0800516 if (nowait)
517 return request_firmware_nowait(THIS_MODULE, 1, fname,
518 &priv->pdev->dev, GFP_KERNEL,
519 priv, mwl8k_fw_state_machine);
520 else
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800521 return request_firmware(fw, fname, &priv->pdev->dev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100522}
523
Brian Cavagnolo99020472010-11-12 17:23:52 -0800524static int mwl8k_request_firmware(struct mwl8k_priv *priv, char *fw_image,
525 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100526{
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200527 struct mwl8k_device_info *di = priv->device_info;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100528 int rc;
529
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200530 if (di->helper_image != NULL) {
Brian Cavagnolo99020472010-11-12 17:23:52 -0800531 if (nowait)
532 rc = mwl8k_request_fw(priv, di->helper_image,
533 &priv->fw_helper, true);
534 else
535 rc = mwl8k_request_fw(priv, di->helper_image,
536 &priv->fw_helper, false);
537 if (rc)
538 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
539 pci_name(priv->pdev), di->helper_image);
540
541 if (rc || nowait)
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200542 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100543 }
544
Brian Cavagnolo99020472010-11-12 17:23:52 -0800545 if (nowait) {
546 /*
547 * if we get here, no helper image is needed. Skip the
548 * FW_STATE_INIT state.
549 */
550 priv->fw_state = FW_STATE_LOADING_PREF;
551 rc = mwl8k_request_fw(priv, fw_image,
552 &priv->fw_ucode,
553 true);
554 } else
555 rc = mwl8k_request_fw(priv, fw_image,
556 &priv->fw_ucode, false);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100557 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200558 printk(KERN_ERR "%s: Error requesting firmware file %s\n",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800559 pci_name(priv->pdev), fw_image);
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100560 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100561 return rc;
562 }
563
564 return 0;
565}
566
567struct mwl8k_cmd_pkt {
568 __le16 code;
569 __le16 length;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100570 __u8 seq_num;
571 __u8 macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100572 __le16 result;
573 char payload[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000574} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100575
576/*
577 * Firmware loading.
578 */
579static int
580mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length)
581{
582 void __iomem *regs = priv->regs;
583 dma_addr_t dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100584 int loops;
585
586 dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE);
587 if (pci_dma_mapping_error(priv->pdev, dma_addr))
588 return -ENOMEM;
589
590 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
591 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
592 iowrite32(MWL8K_H2A_INT_DOORBELL,
593 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
594 iowrite32(MWL8K_H2A_INT_DUMMY,
595 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
596
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100597 loops = 1000;
598 do {
599 u32 int_code;
600
601 int_code = ioread32(regs + MWL8K_HIU_INT_CODE);
602 if (int_code == MWL8K_INT_CODE_CMD_FINISHED) {
603 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100604 break;
605 }
606
Lennert Buytenhek3d76e822009-10-22 20:20:16 +0200607 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100608 udelay(1);
609 } while (--loops);
610
611 pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE);
612
Lennert Buytenhekd4b70572009-07-16 12:44:45 +0200613 return loops ? 0 : -ETIMEDOUT;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100614}
615
616static int mwl8k_load_fw_image(struct mwl8k_priv *priv,
617 const u8 *data, size_t length)
618{
619 struct mwl8k_cmd_pkt *cmd;
620 int done;
621 int rc = 0;
622
623 cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL);
624 if (cmd == NULL)
625 return -ENOMEM;
626
627 cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD);
628 cmd->seq_num = 0;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100629 cmd->macid = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100630 cmd->result = 0;
631
632 done = 0;
633 while (length) {
634 int block_size = length > 256 ? 256 : length;
635
636 memcpy(cmd->payload, data + done, block_size);
637 cmd->length = cpu_to_le16(block_size);
638
639 rc = mwl8k_send_fw_load_cmd(priv, cmd,
640 sizeof(*cmd) + block_size);
641 if (rc)
642 break;
643
644 done += block_size;
645 length -= block_size;
646 }
647
648 if (!rc) {
649 cmd->length = 0;
650 rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd));
651 }
652
653 kfree(cmd);
654
655 return rc;
656}
657
658static int mwl8k_feed_fw_image(struct mwl8k_priv *priv,
659 const u8 *data, size_t length)
660{
661 unsigned char *buffer;
662 int may_continue, rc = 0;
663 u32 done, prev_block_size;
664
665 buffer = kmalloc(1024, GFP_KERNEL);
666 if (buffer == NULL)
667 return -ENOMEM;
668
669 done = 0;
670 prev_block_size = 0;
671 may_continue = 1000;
672 while (may_continue > 0) {
673 u32 block_size;
674
675 block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH);
676 if (block_size & 1) {
677 block_size &= ~1;
678 may_continue--;
679 } else {
680 done += prev_block_size;
681 length -= prev_block_size;
682 }
683
684 if (block_size > 1024 || block_size > length) {
685 rc = -EOVERFLOW;
686 break;
687 }
688
689 if (length == 0) {
690 rc = 0;
691 break;
692 }
693
694 if (block_size == 0) {
695 rc = -EPROTO;
696 may_continue--;
697 udelay(1);
698 continue;
699 }
700
701 prev_block_size = block_size;
702 memcpy(buffer, data + done, block_size);
703
704 rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size);
705 if (rc)
706 break;
707 }
708
709 if (!rc && length != 0)
710 rc = -EREMOTEIO;
711
712 kfree(buffer);
713
714 return rc;
715}
716
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200717static int mwl8k_load_firmware(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100718{
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200719 struct mwl8k_priv *priv = hw->priv;
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800720 const struct firmware *fw = priv->fw_ucode;
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200721 int rc;
722 int loops;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100723
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200724 if (!memcmp(fw->data, "\x01\x00\x00\x00", 4)) {
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800725 const struct firmware *helper = priv->fw_helper;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100726
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200727 if (helper == NULL) {
728 printk(KERN_ERR "%s: helper image needed but none "
729 "given\n", pci_name(priv->pdev));
730 return -EINVAL;
731 }
732
733 rc = mwl8k_load_fw_image(priv, helper->data, helper->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100734 if (rc) {
735 printk(KERN_ERR "%s: unable to load firmware "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200736 "helper image\n", pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100737 return rc;
738 }
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +0530739 msleep(20);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100740
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200741 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100742 } else {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200743 rc = mwl8k_load_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100744 }
745
746 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200747 printk(KERN_ERR "%s: unable to load firmware image\n",
748 pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100749 return rc;
750 }
751
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100752 iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100753
Lennert Buytenhek89b872e2009-11-30 18:13:20 +0100754 loops = 500000;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100755 do {
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200756 u32 ready_code;
757
758 ready_code = ioread32(priv->regs + MWL8K_HIU_INT_CODE);
759 if (ready_code == MWL8K_FWAP_READY) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000760 priv->ap_fw = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100761 break;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200762 } else if (ready_code == MWL8K_FWSTA_READY) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000763 priv->ap_fw = false;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200764 break;
765 }
766
767 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100768 udelay(1);
769 } while (--loops);
770
771 return loops ? 0 : -ETIMEDOUT;
772}
773
774
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100775/* DMA header used by firmware and hardware. */
776struct mwl8k_dma_data {
777 __le16 fwlen;
778 struct ieee80211_hdr wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100779 char data[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000780} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100781
782/* Routines to add/remove DMA header from skb. */
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100783static inline void mwl8k_remove_dma_header(struct sk_buff *skb, __le16 qos)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100784{
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100785 struct mwl8k_dma_data *tr;
786 int hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100787
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100788 tr = (struct mwl8k_dma_data *)skb->data;
789 hdrlen = ieee80211_hdrlen(tr->wh.frame_control);
790
791 if (hdrlen != sizeof(tr->wh)) {
792 if (ieee80211_is_data_qos(tr->wh.frame_control)) {
793 memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2);
794 *((__le16 *)(tr->data - 2)) = qos;
795 } else {
796 memmove(tr->data - hdrlen, &tr->wh, hdrlen);
797 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100798 }
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100799
800 if (hdrlen != sizeof(*tr))
801 skb_pull(skb, sizeof(*tr) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100802}
803
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530804#define REDUCED_TX_HEADROOM 8
805
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800806static void
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530807mwl8k_add_dma_header(struct mwl8k_priv *priv, struct sk_buff *skb,
808 int head_pad, int tail_pad)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100809{
810 struct ieee80211_hdr *wh;
Lennert Buytenhekca009302009-11-30 18:12:20 +0100811 int hdrlen;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800812 int reqd_hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100813 struct mwl8k_dma_data *tr;
814
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100815 /*
Lennert Buytenhekca009302009-11-30 18:12:20 +0100816 * Add a firmware DMA header; the firmware requires that we
817 * present a 2-byte payload length followed by a 4-address
818 * header (without QoS field), followed (optionally) by any
819 * WEP/ExtIV header (but only filled in for CCMP).
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100820 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100821 wh = (struct ieee80211_hdr *)skb->data;
822
823 hdrlen = ieee80211_hdrlen(wh->frame_control);
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530824
825 /*
826 * Check if skb_resize is required because of
827 * tx_headroom adjustment.
828 */
829 if (priv->ap_fw && (hdrlen < (sizeof(struct ieee80211_cts)
830 + REDUCED_TX_HEADROOM))) {
831 if (pskb_expand_head(skb, REDUCED_TX_HEADROOM, 0, GFP_ATOMIC)) {
832
833 wiphy_err(priv->hw->wiphy,
834 "Failed to reallocate TX buffer\n");
835 return;
836 }
837 skb->truesize += REDUCED_TX_HEADROOM;
838 }
839
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530840 reqd_hdrlen = sizeof(*tr) + head_pad;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800841
842 if (hdrlen != reqd_hdrlen)
843 skb_push(skb, reqd_hdrlen - hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100844
845 if (ieee80211_is_data_qos(wh->frame_control))
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800846 hdrlen -= IEEE80211_QOS_CTL_LEN;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100847
848 tr = (struct mwl8k_dma_data *)skb->data;
849 if (wh != &tr->wh)
850 memmove(&tr->wh, wh, hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100851 if (hdrlen != sizeof(tr->wh))
852 memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100853
854 /*
855 * Firmware length is the length of the fully formed "802.11
856 * payload". That is, everything except for the 802.11 header.
857 * This includes all crypto material including the MIC.
858 */
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800859 tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr) + tail_pad);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100860}
861
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530862static void mwl8k_encapsulate_tx_frame(struct mwl8k_priv *priv,
863 struct sk_buff *skb)
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800864{
865 struct ieee80211_hdr *wh;
866 struct ieee80211_tx_info *tx_info;
867 struct ieee80211_key_conf *key_conf;
868 int data_pad;
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530869 int head_pad = 0;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800870
871 wh = (struct ieee80211_hdr *)skb->data;
872
873 tx_info = IEEE80211_SKB_CB(skb);
874
875 key_conf = NULL;
876 if (ieee80211_is_data(wh->frame_control))
877 key_conf = tx_info->control.hw_key;
878
879 /*
880 * Make sure the packet header is in the DMA header format (4-address
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530881 * without QoS), and add head & tail padding when HW crypto is enabled.
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800882 *
883 * We have the following trailer padding requirements:
884 * - WEP: 4 trailer bytes (ICV)
885 * - TKIP: 12 trailer bytes (8 MIC + 4 ICV)
886 * - CCMP: 8 trailer bytes (MIC)
887 */
888 data_pad = 0;
889 if (key_conf != NULL) {
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530890 head_pad = key_conf->iv_len;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800891 switch (key_conf->cipher) {
892 case WLAN_CIPHER_SUITE_WEP40:
893 case WLAN_CIPHER_SUITE_WEP104:
894 data_pad = 4;
895 break;
896 case WLAN_CIPHER_SUITE_TKIP:
897 data_pad = 12;
898 break;
899 case WLAN_CIPHER_SUITE_CCMP:
900 data_pad = 8;
901 break;
902 }
903 }
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530904 mwl8k_add_dma_header(priv, skb, head_pad, data_pad);
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800905}
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100906
907/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100908 * Packet reception for 88w8366 AP firmware.
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200909 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100910struct mwl8k_rxd_8366_ap {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200911 __le16 pkt_len;
912 __u8 sq2;
913 __u8 rate;
914 __le32 pkt_phys_addr;
915 __le32 next_rxd_phys_addr;
916 __le16 qos_control;
917 __le16 htsig2;
918 __le32 hw_rssi_info;
919 __le32 hw_noise_floor_info;
920 __u8 noise_floor;
921 __u8 pad0[3];
922 __u8 rssi;
923 __u8 rx_status;
924 __u8 channel;
925 __u8 rx_ctrl;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000926} __packed;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200927
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100928#define MWL8K_8366_AP_RATE_INFO_MCS_FORMAT 0x80
929#define MWL8K_8366_AP_RATE_INFO_40MHZ 0x40
930#define MWL8K_8366_AP_RATE_INFO_RATEID(x) ((x) & 0x3f)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100931
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100932#define MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST 0x80
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200933
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800934/* 8366 AP rx_status bits */
935#define MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK 0x80
936#define MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR 0xFF
937#define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR 0x02
938#define MWL8K_8366_AP_RXSTAT_WEP_DECRYPT_ICV_ERR 0x04
939#define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_ICV_ERR 0x08
940
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100941static void mwl8k_rxd_8366_ap_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200942{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100943 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200944
945 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100946 rxd->rx_ctrl = MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200947}
948
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100949static void mwl8k_rxd_8366_ap_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200950{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100951 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200952
953 rxd->pkt_len = cpu_to_le16(len);
954 rxd->pkt_phys_addr = cpu_to_le32(addr);
955 wmb();
956 rxd->rx_ctrl = 0;
957}
958
959static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100960mwl8k_rxd_8366_ap_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -0400961 __le16 *qos, s8 *noise)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200962{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100963 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200964
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100965 if (!(rxd->rx_ctrl & MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200966 return -1;
967 rmb();
968
969 memset(status, 0, sizeof(*status));
970
971 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -0400972 *noise = -rxd->noise_floor;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200973
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100974 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_MCS_FORMAT) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200975 status->flag |= RX_FLAG_HT;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100976 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_40MHZ)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100977 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100978 status->rate_idx = MWL8K_8366_AP_RATE_INFO_RATEID(rxd->rate);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200979 } else {
980 int i;
981
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100982 for (i = 0; i < ARRAY_SIZE(mwl8k_rates_24); i++) {
983 if (mwl8k_rates_24[i].hw_value == rxd->rate) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200984 status->rate_idx = i;
985 break;
986 }
987 }
988 }
989
Lennert Buytenhek85478342010-01-12 13:48:56 +0100990 if (rxd->channel > 14) {
991 status->band = IEEE80211_BAND_5GHZ;
992 if (!(status->flag & RX_FLAG_HT))
993 status->rate_idx -= 5;
994 } else {
995 status->band = IEEE80211_BAND_2GHZ;
996 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +0900997 status->freq = ieee80211_channel_to_frequency(rxd->channel,
998 status->band);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200999
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001000 *qos = rxd->qos_control;
1001
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001002 if ((rxd->rx_status != MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR) &&
1003 (rxd->rx_status & MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK) &&
1004 (rxd->rx_status & MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR))
1005 status->flag |= RX_FLAG_MMIC_ERROR;
1006
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001007 return le16_to_cpu(rxd->pkt_len);
1008}
1009
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001010static struct rxd_ops rxd_8366_ap_ops = {
1011 .rxd_size = sizeof(struct mwl8k_rxd_8366_ap),
1012 .rxd_init = mwl8k_rxd_8366_ap_init,
1013 .rxd_refill = mwl8k_rxd_8366_ap_refill,
1014 .rxd_process = mwl8k_rxd_8366_ap_process,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02001015};
1016
1017/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001018 * Packet reception for STA firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001019 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001020struct mwl8k_rxd_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001021 __le16 pkt_len;
1022 __u8 link_quality;
1023 __u8 noise_level;
1024 __le32 pkt_phys_addr;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001025 __le32 next_rxd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001026 __le16 qos_control;
1027 __le16 rate_info;
1028 __le32 pad0[4];
1029 __u8 rssi;
1030 __u8 channel;
1031 __le16 pad1;
1032 __u8 rx_ctrl;
1033 __u8 rx_status;
1034 __u8 pad2[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +00001035} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001036
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001037#define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000
1038#define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3)
1039#define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f)
1040#define MWL8K_STA_RATE_INFO_40MHZ 0x0004
1041#define MWL8K_STA_RATE_INFO_SHORTGI 0x0002
1042#define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001043
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001044#define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001045#define MWL8K_STA_RX_CTRL_DECRYPT_ERROR 0x04
1046/* ICV=0 or MIC=1 */
1047#define MWL8K_STA_RX_CTRL_DEC_ERR_TYPE 0x08
1048/* Key is uploaded only in failure case */
1049#define MWL8K_STA_RX_CTRL_KEY_INDEX 0x30
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001050
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001051static void mwl8k_rxd_sta_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001052{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001053 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001054
1055 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001056 rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001057}
1058
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001059static void mwl8k_rxd_sta_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001060{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001061 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001062
1063 rxd->pkt_len = cpu_to_le16(len);
1064 rxd->pkt_phys_addr = cpu_to_le32(addr);
1065 wmb();
1066 rxd->rx_ctrl = 0;
1067}
1068
1069static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001070mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -04001071 __le16 *qos, s8 *noise)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001072{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001073 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001074 u16 rate_info;
1075
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001076 if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001077 return -1;
1078 rmb();
1079
1080 rate_info = le16_to_cpu(rxd->rate_info);
1081
1082 memset(status, 0, sizeof(*status));
1083
1084 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -04001085 *noise = -rxd->noise_level;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001086 status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info);
1087 status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001088
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001089 if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001090 status->flag |= RX_FLAG_SHORTPRE;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001091 if (rate_info & MWL8K_STA_RATE_INFO_40MHZ)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001092 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001093 if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001094 status->flag |= RX_FLAG_SHORT_GI;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001095 if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001096 status->flag |= RX_FLAG_HT;
1097
Lennert Buytenhek85478342010-01-12 13:48:56 +01001098 if (rxd->channel > 14) {
1099 status->band = IEEE80211_BAND_5GHZ;
1100 if (!(status->flag & RX_FLAG_HT))
1101 status->rate_idx -= 5;
1102 } else {
1103 status->band = IEEE80211_BAND_2GHZ;
1104 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001105 status->freq = ieee80211_channel_to_frequency(rxd->channel,
1106 status->band);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001107
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001108 *qos = rxd->qos_control;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001109 if ((rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DECRYPT_ERROR) &&
1110 (rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DEC_ERR_TYPE))
1111 status->flag |= RX_FLAG_MMIC_ERROR;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001112
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001113 return le16_to_cpu(rxd->pkt_len);
1114}
1115
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001116static struct rxd_ops rxd_sta_ops = {
1117 .rxd_size = sizeof(struct mwl8k_rxd_sta),
1118 .rxd_init = mwl8k_rxd_sta_init,
1119 .rxd_refill = mwl8k_rxd_sta_refill,
1120 .rxd_process = mwl8k_rxd_sta_process,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001121};
1122
1123
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001124#define MWL8K_RX_DESCS 256
1125#define MWL8K_RX_MAXSZ 3800
1126
1127static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
1128{
1129 struct mwl8k_priv *priv = hw->priv;
1130 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1131 int size;
1132 int i;
1133
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001134 rxq->rxd_count = 0;
1135 rxq->head = 0;
1136 rxq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001137
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001138 size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001139
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001140 rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma);
1141 if (rxq->rxd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001142 wiphy_err(hw->wiphy, "failed to alloc RX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001143 return -ENOMEM;
1144 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001145 memset(rxq->rxd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001146
Shan Weib9ede5f2011-03-08 11:02:03 +08001147 rxq->buf = kcalloc(MWL8K_RX_DESCS, sizeof(*rxq->buf), GFP_KERNEL);
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001148 if (rxq->buf == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001149 wiphy_err(hw->wiphy, "failed to alloc RX skbuff list\n");
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001150 pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001151 return -ENOMEM;
1152 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001153
1154 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001155 int desc_size;
1156 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001157 int nexti;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001158 dma_addr_t next_dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001159
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001160 desc_size = priv->rxd_ops->rxd_size;
1161 rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001162
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001163 nexti = i + 1;
1164 if (nexti == MWL8K_RX_DESCS)
1165 nexti = 0;
1166 next_dma_addr = rxq->rxd_dma + (nexti * desc_size);
1167
1168 priv->rxd_ops->rxd_init(rxd, next_dma_addr);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001169 }
1170
1171 return 0;
1172}
1173
1174static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
1175{
1176 struct mwl8k_priv *priv = hw->priv;
1177 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1178 int refilled;
1179
1180 refilled = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001181 while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001182 struct sk_buff *skb;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001183 dma_addr_t addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001184 int rx;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001185 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001186
1187 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
1188 if (skb == NULL)
1189 break;
1190
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001191 addr = pci_map_single(priv->pdev, skb->data,
1192 MWL8K_RX_MAXSZ, DMA_FROM_DEVICE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001193
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001194 rxq->rxd_count++;
1195 rx = rxq->tail++;
1196 if (rxq->tail == MWL8K_RX_DESCS)
1197 rxq->tail = 0;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001198 rxq->buf[rx].skb = skb;
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001199 dma_unmap_addr_set(&rxq->buf[rx], dma, addr);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001200
1201 rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size);
1202 priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001203
1204 refilled++;
1205 }
1206
1207 return refilled;
1208}
1209
1210/* Must be called only when the card's reception is completely halted */
1211static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
1212{
1213 struct mwl8k_priv *priv = hw->priv;
1214 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1215 int i;
1216
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001217 if (rxq->rxd == NULL)
1218 return;
1219
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001220 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001221 if (rxq->buf[i].skb != NULL) {
1222 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001223 dma_unmap_addr(&rxq->buf[i], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001224 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001225 dma_unmap_addr_set(&rxq->buf[i], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001226
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001227 kfree_skb(rxq->buf[i].skb);
1228 rxq->buf[i].skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001229 }
1230 }
1231
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001232 kfree(rxq->buf);
1233 rxq->buf = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001234
1235 pci_free_consistent(priv->pdev,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001236 MWL8K_RX_DESCS * priv->rxd_ops->rxd_size,
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001237 rxq->rxd, rxq->rxd_dma);
1238 rxq->rxd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001239}
1240
1241
1242/*
1243 * Scan a list of BSSIDs to process for finalize join.
1244 * Allows for extension to process multiple BSSIDs.
1245 */
1246static inline int
1247mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
1248{
1249 return priv->capture_beacon &&
1250 ieee80211_is_beacon(wh->frame_control) &&
Joe Perches2e42e472012-05-09 17:17:46 +00001251 ether_addr_equal(wh->addr3, priv->capture_bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001252}
1253
Lennert Buytenhek37797522009-10-22 20:19:45 +02001254static inline void mwl8k_save_beacon(struct ieee80211_hw *hw,
1255 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001256{
Lennert Buytenhek37797522009-10-22 20:19:45 +02001257 struct mwl8k_priv *priv = hw->priv;
1258
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001259 priv->capture_beacon = false;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001260 memset(priv->capture_bssid, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001261
1262 /*
1263 * Use GFP_ATOMIC as rxq_process is called from
1264 * the primary interrupt handler, memory allocation call
1265 * must not sleep.
1266 */
1267 priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
1268 if (priv->beacon_skb != NULL)
Lennert Buytenhek37797522009-10-22 20:19:45 +02001269 ieee80211_queue_work(hw, &priv->finalize_join_worker);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001270}
1271
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001272static inline struct mwl8k_vif *mwl8k_find_vif_bss(struct list_head *vif_list,
1273 u8 *bssid)
1274{
1275 struct mwl8k_vif *mwl8k_vif;
1276
1277 list_for_each_entry(mwl8k_vif,
1278 vif_list, list) {
1279 if (memcmp(bssid, mwl8k_vif->bssid,
1280 ETH_ALEN) == 0)
1281 return mwl8k_vif;
1282 }
1283
1284 return NULL;
1285}
1286
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001287static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
1288{
1289 struct mwl8k_priv *priv = hw->priv;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001290 struct mwl8k_vif *mwl8k_vif = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001291 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1292 int processed;
1293
1294 processed = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001295 while (rxq->rxd_count && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001296 struct sk_buff *skb;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001297 void *rxd;
1298 int pkt_len;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001299 struct ieee80211_rx_status status;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001300 struct ieee80211_hdr *wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001301 __le16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001302
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001303 skb = rxq->buf[rxq->head].skb;
Lennert Buytenhekd25f9f12009-08-03 21:58:26 +02001304 if (skb == NULL)
1305 break;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001306
1307 rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size);
1308
John W. Linville0d462bb2010-07-28 14:04:24 -04001309 pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos,
1310 &priv->noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001311 if (pkt_len < 0)
1312 break;
1313
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001314 rxq->buf[rxq->head].skb = NULL;
1315
1316 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001317 dma_unmap_addr(&rxq->buf[rxq->head], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001318 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001319 dma_unmap_addr_set(&rxq->buf[rxq->head], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001320
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001321 rxq->head++;
1322 if (rxq->head == MWL8K_RX_DESCS)
1323 rxq->head = 0;
1324
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001325 rxq->rxd_count--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001326
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001327 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001328
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001329 /*
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001330 * Check for a pending join operation. Save a
1331 * copy of the beacon and schedule a tasklet to
1332 * send a FINALIZE_JOIN command to the firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001333 */
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001334 if (mwl8k_capture_bssid(priv, (void *)skb->data))
Lennert Buytenhek37797522009-10-22 20:19:45 +02001335 mwl8k_save_beacon(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001336
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001337 if (ieee80211_has_protected(wh->frame_control)) {
1338
1339 /* Check if hw crypto has been enabled for
1340 * this bss. If yes, set the status flags
1341 * accordingly
1342 */
1343 mwl8k_vif = mwl8k_find_vif_bss(&priv->vif_list,
1344 wh->addr1);
1345
1346 if (mwl8k_vif != NULL &&
Joe Perches23677ce2012-02-09 11:17:23 +00001347 mwl8k_vif->is_hw_crypto_enabled) {
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001348 /*
1349 * When MMIC ERROR is encountered
1350 * by the firmware, payload is
1351 * dropped and only 32 bytes of
1352 * mwl8k Firmware header is sent
1353 * to the host.
1354 *
1355 * We need to add four bytes of
1356 * key information. In it
1357 * MAC80211 expects keyidx set to
1358 * 0 for triggering Counter
1359 * Measure of MMIC failure.
1360 */
1361 if (status.flag & RX_FLAG_MMIC_ERROR) {
1362 struct mwl8k_dma_data *tr;
1363 tr = (struct mwl8k_dma_data *)skb->data;
1364 memset((void *)&(tr->data), 0, 4);
1365 pkt_len += 4;
1366 }
1367
1368 if (!ieee80211_is_auth(wh->frame_control))
1369 status.flag |= RX_FLAG_IV_STRIPPED |
1370 RX_FLAG_DECRYPTED |
1371 RX_FLAG_MMIC_STRIPPED;
1372 }
1373 }
1374
1375 skb_put(skb, pkt_len);
1376 mwl8k_remove_dma_header(skb, qos);
Johannes Bergf1d58c22009-06-17 13:13:00 +02001377 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
1378 ieee80211_rx_irqsafe(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001379
1380 processed++;
1381 }
1382
1383 return processed;
1384}
1385
1386
1387/*
1388 * Packet transmission.
1389 */
1390
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001391#define MWL8K_TXD_STATUS_OK 0x00000001
1392#define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
1393#define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
1394#define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001395#define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001396
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001397#define MWL8K_QOS_QLEN_UNSPEC 0xff00
1398#define MWL8K_QOS_ACK_POLICY_MASK 0x0060
1399#define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000
1400#define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060
1401#define MWL8K_QOS_EOSP 0x0010
1402
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001403struct mwl8k_tx_desc {
1404 __le32 status;
1405 __u8 data_rate;
1406 __u8 tx_priority;
1407 __le16 qos_control;
1408 __le32 pkt_phys_addr;
1409 __le16 pkt_len;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001410 __u8 dest_MAC_addr[ETH_ALEN];
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001411 __le32 next_txd_phys_addr;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07001412 __le32 timestamp;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001413 __le16 rate_info;
1414 __u8 peer_id;
Brian Cavagnoloa1fe24b2010-11-12 17:23:47 -08001415 __u8 tx_frag_cnt;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001416} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001417
1418#define MWL8K_TX_DESCS 128
1419
1420static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1421{
1422 struct mwl8k_priv *priv = hw->priv;
1423 struct mwl8k_tx_queue *txq = priv->txq + index;
1424 int size;
1425 int i;
1426
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001427 txq->len = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001428 txq->head = 0;
1429 txq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001430
1431 size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1432
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001433 txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma);
1434 if (txq->txd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001435 wiphy_err(hw->wiphy, "failed to alloc TX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001436 return -ENOMEM;
1437 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001438 memset(txq->txd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001439
Shan Weib9ede5f2011-03-08 11:02:03 +08001440 txq->skb = kcalloc(MWL8K_TX_DESCS, sizeof(*txq->skb), GFP_KERNEL);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001441 if (txq->skb == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001442 wiphy_err(hw->wiphy, "failed to alloc TX skbuff list\n");
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001443 pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001444 return -ENOMEM;
1445 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001446
1447 for (i = 0; i < MWL8K_TX_DESCS; i++) {
1448 struct mwl8k_tx_desc *tx_desc;
1449 int nexti;
1450
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001451 tx_desc = txq->txd + i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001452 nexti = (i + 1) % MWL8K_TX_DESCS;
1453
1454 tx_desc->status = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001455 tx_desc->next_txd_phys_addr =
1456 cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001457 }
1458
1459 return 0;
1460}
1461
1462static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1463{
1464 iowrite32(MWL8K_H2A_INT_PPA_READY,
1465 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1466 iowrite32(MWL8K_H2A_INT_DUMMY,
1467 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1468 ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1469}
1470
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001471static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001472{
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001473 struct mwl8k_priv *priv = hw->priv;
1474 int i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001475
Brian Cavagnoloe6007072011-03-17 11:58:44 -07001476 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001477 struct mwl8k_tx_queue *txq = priv->txq + i;
1478 int fw_owned = 0;
1479 int drv_owned = 0;
1480 int unused = 0;
1481 int desc;
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001482
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001483 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001484 struct mwl8k_tx_desc *tx_desc = txq->txd + desc;
1485 u32 status;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001486
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001487 status = le32_to_cpu(tx_desc->status);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001488 if (status & MWL8K_TXD_STATUS_FW_OWNED)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001489 fw_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001490 else
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001491 drv_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001492
1493 if (tx_desc->pkt_len == 0)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001494 unused++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001495 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001496
Joe Perchesc96c31e2010-07-26 14:39:58 -07001497 wiphy_err(hw->wiphy,
1498 "txq[%d] len=%d head=%d tail=%d "
1499 "fw_owned=%d drv_owned=%d unused=%d\n",
1500 i,
1501 txq->len, txq->head, txq->tail,
1502 fw_owned, drv_owned, unused);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001503 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001504}
1505
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001506/*
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001507 * Must be called with priv->fw_mutex held and tx queues stopped.
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001508 */
Lennert Buytenhek62abd3c2010-01-08 18:28:34 +01001509#define MWL8K_TX_WAIT_TIMEOUT_MS 5000
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001510
Lennert Buytenhek950d5b02009-07-17 01:48:41 +02001511static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001512{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001513 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001514 DECLARE_COMPLETION_ONSTACK(tx_wait);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001515 int retry;
1516 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001517
1518 might_sleep();
1519
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05301520 /* Since fw restart is in progress, allow only the firmware
1521 * commands from the restart code and block the other
1522 * commands since they are going to fail in any case since
1523 * the firmware has crashed
1524 */
1525 if (priv->hw_restart_in_progress) {
1526 if (priv->hw_restart_owner == current)
1527 return 0;
1528 else
1529 return -EBUSY;
1530 }
1531
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05301532 if (atomic_read(&priv->watchdog_event_pending))
1533 return 0;
1534
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001535 /*
1536 * The TX queues are stopped at this point, so this test
1537 * doesn't need to take ->tx_lock.
1538 */
1539 if (!priv->pending_tx_pkts)
1540 return 0;
1541
1542 retry = 0;
1543 rc = 0;
1544
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001545 spin_lock_bh(&priv->tx_lock);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001546 priv->tx_wait = &tx_wait;
1547 while (!rc) {
1548 int oldcount;
1549 unsigned long timeout;
1550
1551 oldcount = priv->pending_tx_pkts;
1552
1553 spin_unlock_bh(&priv->tx_lock);
1554 timeout = wait_for_completion_timeout(&tx_wait,
1555 msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS));
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05301556
1557 if (atomic_read(&priv->watchdog_event_pending)) {
1558 spin_lock_bh(&priv->tx_lock);
1559 priv->tx_wait = NULL;
1560 spin_unlock_bh(&priv->tx_lock);
1561 return 0;
1562 }
1563
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001564 spin_lock_bh(&priv->tx_lock);
1565
1566 if (timeout) {
1567 WARN_ON(priv->pending_tx_pkts);
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301568 if (retry)
Joe Perchesc96c31e2010-07-26 14:39:58 -07001569 wiphy_notice(hw->wiphy, "tx rings drained\n");
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001570 break;
1571 }
1572
1573 if (priv->pending_tx_pkts < oldcount) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001574 wiphy_notice(hw->wiphy,
1575 "waiting for tx rings to drain (%d -> %d pkts)\n",
1576 oldcount, priv->pending_tx_pkts);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001577 retry = 1;
1578 continue;
1579 }
1580
1581 priv->tx_wait = NULL;
1582
Joe Perchesc96c31e2010-07-26 14:39:58 -07001583 wiphy_err(hw->wiphy, "tx rings stuck for %d ms\n",
1584 MWL8K_TX_WAIT_TIMEOUT_MS);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001585 mwl8k_dump_tx_rings(hw);
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05301586 priv->hw_restart_in_progress = true;
1587 ieee80211_queue_work(hw, &priv->fw_reload);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001588
1589 rc = -ETIMEDOUT;
1590 }
Nishant Sarmukadam9b0b11f2013-01-08 10:16:05 +05301591 priv->tx_wait = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001592 spin_unlock_bh(&priv->tx_lock);
1593
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001594 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001595}
1596
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02001597#define MWL8K_TXD_SUCCESS(status) \
1598 ((status) & (MWL8K_TXD_STATUS_OK | \
1599 MWL8K_TXD_STATUS_OK_RETRY | \
1600 MWL8K_TXD_STATUS_OK_MORE_RETRY))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001601
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001602static int mwl8k_tid_queue_mapping(u8 tid)
1603{
1604 BUG_ON(tid > 7);
1605
1606 switch (tid) {
1607 case 0:
1608 case 3:
1609 return IEEE80211_AC_BE;
1610 break;
1611 case 1:
1612 case 2:
1613 return IEEE80211_AC_BK;
1614 break;
1615 case 4:
1616 case 5:
1617 return IEEE80211_AC_VI;
1618 break;
1619 case 6:
1620 case 7:
1621 return IEEE80211_AC_VO;
1622 break;
1623 default:
1624 return -1;
1625 break;
1626 }
1627}
1628
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001629/* The firmware will fill in the rate information
1630 * for each packet that gets queued in the hardware
John W. Linville49adc5c2011-04-27 15:04:28 -04001631 * and these macros will interpret that info.
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001632 */
1633
John W. Linville49adc5c2011-04-27 15:04:28 -04001634#define RI_FORMAT(a) (a & 0x0001)
1635#define RI_RATE_ID_MCS(a) ((a & 0x01f8) >> 3)
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001636
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001637static int
1638mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001639{
1640 struct mwl8k_priv *priv = hw->priv;
1641 struct mwl8k_tx_queue *txq = priv->txq + index;
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001642 int processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001643
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001644 processed = 0;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001645 while (txq->len > 0 && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001646 int tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001647 struct mwl8k_tx_desc *tx_desc;
1648 unsigned long addr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001649 int size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001650 struct sk_buff *skb;
1651 struct ieee80211_tx_info *info;
1652 u32 status;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001653 struct ieee80211_sta *sta;
1654 struct mwl8k_sta *sta_info = NULL;
1655 u16 rate_info;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001656 struct ieee80211_hdr *wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001657
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001658 tx = txq->head;
1659 tx_desc = txq->txd + tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001660
1661 status = le32_to_cpu(tx_desc->status);
1662
1663 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1664 if (!force)
1665 break;
1666 tx_desc->status &=
1667 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1668 }
1669
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001670 txq->head = (tx + 1) % MWL8K_TX_DESCS;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001671 BUG_ON(txq->len == 0);
1672 txq->len--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001673 priv->pending_tx_pkts--;
1674
1675 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001676 size = le16_to_cpu(tx_desc->pkt_len);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001677 skb = txq->skb[tx];
1678 txq->skb[tx] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001679
1680 BUG_ON(skb == NULL);
1681 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1682
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001683 mwl8k_remove_dma_header(skb, tx_desc->qos_control);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001684
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001685 wh = (struct ieee80211_hdr *) skb->data;
1686
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001687 /* Mark descriptor as unused */
1688 tx_desc->pkt_phys_addr = 0;
1689 tx_desc->pkt_len = 0;
1690
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001691 info = IEEE80211_SKB_CB(skb);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001692 if (ieee80211_is_data(wh->frame_control)) {
Thomas Huehn89e11802012-07-11 13:21:41 +02001693 rcu_read_lock();
1694 sta = ieee80211_find_sta_by_ifaddr(hw, wh->addr1,
1695 wh->addr2);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001696 if (sta) {
1697 sta_info = MWL8K_STA(sta);
1698 BUG_ON(sta_info == NULL);
1699 rate_info = le16_to_cpu(tx_desc->rate_info);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001700 /* If rate is < 6.5 Mpbs for an ht station
1701 * do not form an ampdu. If the station is a
1702 * legacy station (format = 0), do not form an
1703 * ampdu
1704 */
John W. Linville49adc5c2011-04-27 15:04:28 -04001705 if (RI_RATE_ID_MCS(rate_info) < 1 ||
1706 RI_FORMAT(rate_info) == 0) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001707 sta_info->is_ampdu_allowed = false;
1708 } else {
1709 sta_info->is_ampdu_allowed = true;
1710 }
1711 }
Thomas Huehn89e11802012-07-11 13:21:41 +02001712 rcu_read_unlock();
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001713 }
1714
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001715 ieee80211_tx_info_clear_status(info);
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001716
1717 /* Rate control is happening in the firmware.
1718 * Ensure no tx rate is being reported.
1719 */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301720 info->status.rates[0].idx = -1;
1721 info->status.rates[0].count = 1;
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001722
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001723 if (MWL8K_TXD_SUCCESS(status))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001724 info->flags |= IEEE80211_TX_STAT_ACK;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001725
1726 ieee80211_tx_status_irqsafe(hw, skb);
1727
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001728 processed++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001729 }
1730
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001731 return processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001732}
1733
1734/* must be called only when the card's transmit is completely halted */
1735static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1736{
1737 struct mwl8k_priv *priv = hw->priv;
1738 struct mwl8k_tx_queue *txq = priv->txq + index;
1739
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001740 if (txq->txd == NULL)
1741 return;
1742
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001743 mwl8k_txq_reclaim(hw, index, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001744
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001745 kfree(txq->skb);
1746 txq->skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001747
1748 pci_free_consistent(priv->pdev,
1749 MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001750 txq->txd, txq->txd_dma);
1751 txq->txd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001752}
1753
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001754/* caller must hold priv->stream_lock when calling the stream functions */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301755static struct mwl8k_ampdu_stream *
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001756mwl8k_add_stream(struct ieee80211_hw *hw, struct ieee80211_sta *sta, u8 tid)
1757{
1758 struct mwl8k_ampdu_stream *stream;
1759 struct mwl8k_priv *priv = hw->priv;
1760 int i;
1761
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301762 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001763 stream = &priv->ampdu[i];
1764 if (stream->state == AMPDU_NO_STREAM) {
1765 stream->sta = sta;
1766 stream->state = AMPDU_STREAM_NEW;
1767 stream->tid = tid;
1768 stream->idx = i;
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001769 wiphy_debug(hw->wiphy, "Added a new stream for %pM %d",
1770 sta->addr, tid);
1771 return stream;
1772 }
1773 }
1774 return NULL;
1775}
1776
1777static int
1778mwl8k_start_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1779{
1780 int ret;
1781
1782 /* if the stream has already been started, don't start it again */
1783 if (stream->state != AMPDU_STREAM_NEW)
1784 return 0;
1785 ret = ieee80211_start_tx_ba_session(stream->sta, stream->tid, 0);
1786 if (ret)
1787 wiphy_debug(hw->wiphy, "Failed to start stream for %pM %d: "
1788 "%d\n", stream->sta->addr, stream->tid, ret);
1789 else
1790 wiphy_debug(hw->wiphy, "Started stream for %pM %d\n",
1791 stream->sta->addr, stream->tid);
1792 return ret;
1793}
1794
1795static void
1796mwl8k_remove_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1797{
1798 wiphy_debug(hw->wiphy, "Remove stream for %pM %d\n", stream->sta->addr,
1799 stream->tid);
1800 memset(stream, 0, sizeof(*stream));
1801}
1802
1803static struct mwl8k_ampdu_stream *
1804mwl8k_lookup_stream(struct ieee80211_hw *hw, u8 *addr, u8 tid)
1805{
1806 struct mwl8k_priv *priv = hw->priv;
1807 int i;
1808
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301809 for (i = 0; i < MWL8K_NUM_AMPDU_STREAMS; i++) {
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001810 struct mwl8k_ampdu_stream *stream;
1811 stream = &priv->ampdu[i];
1812 if (stream->state == AMPDU_NO_STREAM)
1813 continue;
1814 if (!memcmp(stream->sta->addr, addr, ETH_ALEN) &&
1815 stream->tid == tid)
1816 return stream;
1817 }
1818 return NULL;
1819}
1820
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001821#define MWL8K_AMPDU_PACKET_THRESHOLD 64
1822static inline bool mwl8k_ampdu_allowed(struct ieee80211_sta *sta, u8 tid)
1823{
1824 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1825 struct tx_traffic_info *tx_stats;
1826
1827 BUG_ON(tid >= MWL8K_MAX_TID);
1828 tx_stats = &sta_info->tx_stats[tid];
1829
1830 return sta_info->is_ampdu_allowed &&
1831 tx_stats->pkts > MWL8K_AMPDU_PACKET_THRESHOLD;
1832}
1833
1834static inline void mwl8k_tx_count_packet(struct ieee80211_sta *sta, u8 tid)
1835{
1836 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1837 struct tx_traffic_info *tx_stats;
1838
1839 BUG_ON(tid >= MWL8K_MAX_TID);
1840 tx_stats = &sta_info->tx_stats[tid];
1841
1842 if (tx_stats->start_time == 0)
1843 tx_stats->start_time = jiffies;
1844
1845 /* reset the packet count after each second elapses. If the number of
1846 * packets ever exceeds the ampdu_min_traffic threshold, we will allow
1847 * an ampdu stream to be started.
1848 */
1849 if (jiffies - tx_stats->start_time > HZ) {
1850 tx_stats->pkts = 0;
1851 tx_stats->start_time = 0;
1852 } else
1853 tx_stats->pkts++;
1854}
1855
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301856/* The hardware ampdu queues start from 5.
1857 * txpriorities for ampdu queues are
1858 * 5 6 7 0 1 2 3 4 ie., queue 5 is highest
1859 * and queue 3 is lowest (queue 4 is reserved)
1860 */
1861#define BA_QUEUE 5
1862
Johannes Berg7bb45682011-02-24 14:42:06 +01001863static void
Thomas Huehn36323f82012-07-23 21:33:42 +02001864mwl8k_txq_xmit(struct ieee80211_hw *hw,
1865 int index,
1866 struct ieee80211_sta *sta,
1867 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001868{
1869 struct mwl8k_priv *priv = hw->priv;
1870 struct ieee80211_tx_info *tx_info;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001871 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001872 struct ieee80211_hdr *wh;
1873 struct mwl8k_tx_queue *txq;
1874 struct mwl8k_tx_desc *tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001875 dma_addr_t dma;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001876 u32 txstatus;
1877 u8 txdatarate;
1878 u16 qos;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001879 int txpriority;
1880 u8 tid = 0;
1881 struct mwl8k_ampdu_stream *stream = NULL;
1882 bool start_ba_session = false;
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301883 bool mgmtframe = false;
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001884 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301885 bool eapol_frame = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001886
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001887 wh = (struct ieee80211_hdr *)skb->data;
1888 if (ieee80211_is_data_qos(wh->frame_control))
1889 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1890 else
1891 qos = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001892
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301893 if (skb->protocol == cpu_to_be16(ETH_P_PAE))
1894 eapol_frame = true;
1895
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301896 if (ieee80211_is_mgmt(wh->frame_control))
1897 mgmtframe = true;
1898
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001899 if (priv->ap_fw)
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05301900 mwl8k_encapsulate_tx_frame(priv, skb);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001901 else
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +05301902 mwl8k_add_dma_header(priv, skb, 0, 0);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001903
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001904 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001905
1906 tx_info = IEEE80211_SKB_CB(skb);
1907 mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001908
1909 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001910 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Lennert Buytenhek657232b2010-01-12 13:47:47 +01001911 wh->seq_ctrl |= cpu_to_le16(mwl8k_vif->seqno);
1912 mwl8k_vif->seqno += 0x10;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001913 }
1914
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001915 /* Setup firmware control bit fields for each frame type. */
1916 txstatus = 0;
1917 txdatarate = 0;
1918 if (ieee80211_is_mgmt(wh->frame_control) ||
1919 ieee80211_is_ctl(wh->frame_control)) {
1920 txdatarate = 0;
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001921 qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001922 } else if (ieee80211_is_data(wh->frame_control)) {
1923 txdatarate = 1;
1924 if (is_multicast_ether_addr(wh->addr1))
1925 txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX;
1926
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001927 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001928 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001929 qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001930 else
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001931 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001932 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001933
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001934 /* Queue ADDBA request in the respective data queue. While setting up
1935 * the ampdu stream, mac80211 queues further packets for that
1936 * particular ra/tid pair. However, packets piled up in the hardware
1937 * for that ra/tid pair will still go out. ADDBA request and the
1938 * related data packets going out from different queues asynchronously
1939 * will cause a shift in the receiver window which might result in
1940 * ampdu packets getting dropped at the receiver after the stream has
1941 * been setup.
1942 */
1943 if (unlikely(ieee80211_is_action(wh->frame_control) &&
1944 mgmt->u.action.category == WLAN_CATEGORY_BACK &&
1945 mgmt->u.action.u.addba_req.action_code == WLAN_ACTION_ADDBA_REQ &&
1946 priv->ap_fw)) {
1947 u16 capab = le16_to_cpu(mgmt->u.action.u.addba_req.capab);
1948 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
1949 index = mwl8k_tid_queue_mapping(tid);
1950 }
1951
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001952 txpriority = index;
1953
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05301954 if (priv->ap_fw && sta && sta->ht_cap.ht_supported && !eapol_frame &&
1955 ieee80211_is_data_qos(wh->frame_control)) {
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001956 tid = qos & 0xf;
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001957 mwl8k_tx_count_packet(sta, tid);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001958 spin_lock(&priv->stream_lock);
1959 stream = mwl8k_lookup_stream(hw, sta->addr, tid);
1960 if (stream != NULL) {
1961 if (stream->state == AMPDU_STREAM_ACTIVE) {
Yogesh Ashok Powar5f2a1492013-01-03 13:21:25 +05301962 WARN_ON(!(qos & MWL8K_QOS_ACK_POLICY_BLOCKACK));
Yogesh Ashok Powar7fb978b2013-01-03 13:22:56 +05301963 txpriority = (BA_QUEUE + stream->idx) %
1964 TOTAL_HW_TX_QUEUES;
1965 if (stream->idx <= 1)
1966 index = stream->idx +
1967 MWL8K_TX_WMM_QUEUES;
1968
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001969 } else if (stream->state == AMPDU_STREAM_NEW) {
1970 /* We get here if the driver sends us packets
1971 * after we've initiated a stream, but before
1972 * our ampdu_action routine has been called
1973 * with IEEE80211_AMPDU_TX_START to get the SSN
1974 * for the ADDBA request. So this packet can
1975 * go out with no risk of sequence number
1976 * mismatch. No special handling is required.
1977 */
1978 } else {
1979 /* Drop packets that would go out after the
1980 * ADDBA request was sent but before the ADDBA
1981 * response is received. If we don't do this,
1982 * the recipient would probably receive it
1983 * after the ADDBA request with SSN 0. This
1984 * will cause the recipient's BA receive window
1985 * to shift, which would cause the subsequent
1986 * packets in the BA stream to be discarded.
1987 * mac80211 queues our packets for us in this
1988 * case, so this is really just a safety check.
1989 */
1990 wiphy_warn(hw->wiphy,
1991 "Cannot send packet while ADDBA "
1992 "dialog is underway.\n");
1993 spin_unlock(&priv->stream_lock);
1994 dev_kfree_skb(skb);
1995 return;
1996 }
1997 } else {
1998 /* Defer calling mwl8k_start_stream so that the current
1999 * skb can go out before the ADDBA request. This
2000 * prevents sequence number mismatch at the recepient
2001 * as described above.
2002 */
Brian Cavagnolod0805c12011-04-12 11:06:28 -07002003 if (mwl8k_ampdu_allowed(sta, tid)) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07002004 stream = mwl8k_add_stream(hw, sta, tid);
2005 if (stream != NULL)
2006 start_ba_session = true;
2007 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002008 }
2009 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar5f2a1492013-01-03 13:21:25 +05302010 } else {
2011 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
2012 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002013 }
2014
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002015 dma = pci_map_single(priv->pdev, skb->data,
2016 skb->len, PCI_DMA_TODEVICE);
2017
2018 if (pci_dma_mapping_error(priv->pdev, dma)) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07002019 wiphy_debug(hw->wiphy,
2020 "failed to dma map skb, dropping TX frame.\n");
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002021 if (start_ba_session) {
2022 spin_lock(&priv->stream_lock);
2023 mwl8k_remove_stream(hw, stream);
2024 spin_unlock(&priv->stream_lock);
2025 }
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002026 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01002027 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002028 }
2029
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002030 spin_lock_bh(&priv->tx_lock);
2031
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002032 txq = priv->txq + index;
2033
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302034 /* Mgmt frames that go out frequently are probe
2035 * responses. Other mgmt frames got out relatively
2036 * infrequently. Hence reserve 2 buffers so that
2037 * other mgmt frames do not get dropped due to an
2038 * already queued probe response in one of the
2039 * reserved buffers.
2040 */
2041
2042 if (txq->len >= MWL8K_TX_DESCS - 2) {
Joe Perches23677ce2012-02-09 11:17:23 +00002043 if (!mgmtframe || txq->len == MWL8K_TX_DESCS) {
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302044 if (start_ba_session) {
2045 spin_lock(&priv->stream_lock);
2046 mwl8k_remove_stream(hw, stream);
2047 spin_unlock(&priv->stream_lock);
2048 }
2049 spin_unlock_bh(&priv->tx_lock);
Nishant Sarmukadamff7aa962012-11-06 19:22:48 +05302050 pci_unmap_single(priv->pdev, dma, skb->len,
2051 PCI_DMA_TODEVICE);
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05302052 dev_kfree_skb(skb);
2053 return;
Pradeep Nemavat3a7dbc32011-04-21 16:34:56 +05302054 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002055 }
2056
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002057 BUG_ON(txq->skb[txq->tail] != NULL);
2058 txq->skb[txq->tail] = skb;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002059
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002060 tx = txq->txd + txq->tail;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002061 tx->data_rate = txdatarate;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002062 tx->tx_priority = txpriority;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002063 tx->qos_control = cpu_to_le16(qos);
2064 tx->pkt_phys_addr = cpu_to_le32(dma);
2065 tx->pkt_len = cpu_to_le16(skb->len);
2066 tx->rate_info = 0;
Thomas Huehn36323f82012-07-23 21:33:42 +02002067 if (!priv->ap_fw && sta != NULL)
2068 tx->peer_id = MWL8K_STA(sta)->peer_id;
Lennert Buytenheka6804002010-01-04 21:55:42 +01002069 else
2070 tx->peer_id = 0;
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302071
Nishant Sarmukadame1f4d692012-11-06 19:23:01 +05302072 if (priv->ap_fw && ieee80211_is_data(wh->frame_control) && !eapol_frame)
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302073 tx->timestamp = cpu_to_le32(ioread32(priv->regs +
2074 MWL8K_HW_TIMER_REGISTER));
Nishant Sarmukadamb8d9e572012-11-06 19:23:15 +05302075 else
2076 tx->timestamp = 0;
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302077
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002078 wmb();
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002079 tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
2080
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02002081 txq->len++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002082 priv->pending_tx_pkts++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002083
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002084 txq->tail++;
2085 if (txq->tail == MWL8K_TX_DESCS)
2086 txq->tail = 0;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002087
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002088 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002089
2090 spin_unlock_bh(&priv->tx_lock);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002091
2092 /* Initiate the ampdu session here */
2093 if (start_ba_session) {
2094 spin_lock(&priv->stream_lock);
2095 if (mwl8k_start_stream(hw, stream))
2096 mwl8k_remove_stream(hw, stream);
2097 spin_unlock(&priv->stream_lock);
2098 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002099}
2100
2101
2102/*
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002103 * Firmware access.
2104 *
2105 * We have the following requirements for issuing firmware commands:
2106 * - Some commands require that the packet transmit path is idle when
2107 * the command is issued. (For simplicity, we'll just quiesce the
2108 * transmit path for every command.)
2109 * - There are certain sequences of commands that need to be issued to
2110 * the hardware sequentially, with no other intervening commands.
2111 *
2112 * This leads to an implementation of a "firmware lock" as a mutex that
2113 * can be taken recursively, and which is taken by both the low-level
2114 * command submission function (mwl8k_post_cmd) as well as any users of
2115 * that function that require issuing of an atomic sequence of commands,
2116 * and quiesces the transmit path whenever it's taken.
2117 */
2118static int mwl8k_fw_lock(struct ieee80211_hw *hw)
2119{
2120 struct mwl8k_priv *priv = hw->priv;
2121
2122 if (priv->fw_mutex_owner != current) {
2123 int rc;
2124
2125 mutex_lock(&priv->fw_mutex);
2126 ieee80211_stop_queues(hw);
2127
2128 rc = mwl8k_tx_wait_empty(hw);
2129 if (rc) {
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05302130 if (!priv->hw_restart_in_progress)
2131 ieee80211_wake_queues(hw);
2132
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002133 mutex_unlock(&priv->fw_mutex);
2134
2135 return rc;
2136 }
2137
2138 priv->fw_mutex_owner = current;
2139 }
2140
2141 priv->fw_mutex_depth++;
2142
2143 return 0;
2144}
2145
2146static void mwl8k_fw_unlock(struct ieee80211_hw *hw)
2147{
2148 struct mwl8k_priv *priv = hw->priv;
2149
2150 if (!--priv->fw_mutex_depth) {
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05302151 if (!priv->hw_restart_in_progress)
2152 ieee80211_wake_queues(hw);
2153
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002154 priv->fw_mutex_owner = NULL;
2155 mutex_unlock(&priv->fw_mutex);
2156 }
2157}
2158
2159
2160/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002161 * Command processing.
2162 */
2163
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002164/* Timeout firmware commands after 10s */
2165#define MWL8K_CMD_TIMEOUT_MS 10000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002166
2167static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
2168{
2169 DECLARE_COMPLETION_ONSTACK(cmd_wait);
2170 struct mwl8k_priv *priv = hw->priv;
2171 void __iomem *regs = priv->regs;
2172 dma_addr_t dma_addr;
2173 unsigned int dma_size;
2174 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002175 unsigned long timeout = 0;
2176 u8 buf[32];
2177
John W. Linvilleb6037422010-07-20 13:55:00 -04002178 cmd->result = (__force __le16) 0xffff;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002179 dma_size = le16_to_cpu(cmd->length);
2180 dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
2181 PCI_DMA_BIDIRECTIONAL);
2182 if (pci_dma_mapping_error(priv->pdev, dma_addr))
2183 return -ENOMEM;
2184
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002185 rc = mwl8k_fw_lock(hw);
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02002186 if (rc) {
2187 pci_unmap_single(priv->pdev, dma_addr, dma_size,
2188 PCI_DMA_BIDIRECTIONAL);
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002189 return rc;
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02002190 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002191
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002192 priv->hostcmd_wait = &cmd_wait;
2193 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
2194 iowrite32(MWL8K_H2A_INT_DOORBELL,
2195 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
2196 iowrite32(MWL8K_H2A_INT_DUMMY,
2197 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002198
2199 timeout = wait_for_completion_timeout(&cmd_wait,
2200 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
2201
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002202 priv->hostcmd_wait = NULL;
2203
2204 mwl8k_fw_unlock(hw);
2205
Lennert Buytenhek37055bd2009-08-03 21:58:47 +02002206 pci_unmap_single(priv->pdev, dma_addr, dma_size,
2207 PCI_DMA_BIDIRECTIONAL);
2208
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002209 if (!timeout) {
Joe Perches5db55842010-08-11 19:11:19 -07002210 wiphy_err(hw->wiphy, "Command %s timeout after %u ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002211 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2212 MWL8K_CMD_TIMEOUT_MS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002213 rc = -ETIMEDOUT;
2214 } else {
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002215 int ms;
2216
2217 ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout);
2218
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002219 rc = cmd->result ? -EINVAL : 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002220 if (rc)
Joe Perches5db55842010-08-11 19:11:19 -07002221 wiphy_err(hw->wiphy, "Command %s error 0x%x\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002222 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2223 le16_to_cpu(cmd->result));
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002224 else if (ms > 2000)
Joe Perches5db55842010-08-11 19:11:19 -07002225 wiphy_notice(hw->wiphy, "Command %s took %d ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002226 mwl8k_cmd_name(cmd->code,
2227 buf, sizeof(buf)),
2228 ms);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002229 }
2230
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002231 return rc;
2232}
2233
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +01002234static int mwl8k_post_pervif_cmd(struct ieee80211_hw *hw,
2235 struct ieee80211_vif *vif,
2236 struct mwl8k_cmd_pkt *cmd)
2237{
2238 if (vif != NULL)
2239 cmd->macid = MWL8K_VIF(vif)->macid;
2240 return mwl8k_post_cmd(hw, cmd);
2241}
2242
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002243/*
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002244 * Setup code shared between STA and AP firmware images.
2245 */
2246static void mwl8k_setup_2ghz_band(struct ieee80211_hw *hw)
2247{
2248 struct mwl8k_priv *priv = hw->priv;
2249
2250 BUILD_BUG_ON(sizeof(priv->channels_24) != sizeof(mwl8k_channels_24));
2251 memcpy(priv->channels_24, mwl8k_channels_24, sizeof(mwl8k_channels_24));
2252
2253 BUILD_BUG_ON(sizeof(priv->rates_24) != sizeof(mwl8k_rates_24));
2254 memcpy(priv->rates_24, mwl8k_rates_24, sizeof(mwl8k_rates_24));
2255
2256 priv->band_24.band = IEEE80211_BAND_2GHZ;
2257 priv->band_24.channels = priv->channels_24;
2258 priv->band_24.n_channels = ARRAY_SIZE(mwl8k_channels_24);
2259 priv->band_24.bitrates = priv->rates_24;
2260 priv->band_24.n_bitrates = ARRAY_SIZE(mwl8k_rates_24);
2261
2262 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band_24;
2263}
2264
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +01002265static void mwl8k_setup_5ghz_band(struct ieee80211_hw *hw)
2266{
2267 struct mwl8k_priv *priv = hw->priv;
2268
2269 BUILD_BUG_ON(sizeof(priv->channels_50) != sizeof(mwl8k_channels_50));
2270 memcpy(priv->channels_50, mwl8k_channels_50, sizeof(mwl8k_channels_50));
2271
2272 BUILD_BUG_ON(sizeof(priv->rates_50) != sizeof(mwl8k_rates_50));
2273 memcpy(priv->rates_50, mwl8k_rates_50, sizeof(mwl8k_rates_50));
2274
2275 priv->band_50.band = IEEE80211_BAND_5GHZ;
2276 priv->band_50.channels = priv->channels_50;
2277 priv->band_50.n_channels = ARRAY_SIZE(mwl8k_channels_50);
2278 priv->band_50.bitrates = priv->rates_50;
2279 priv->band_50.n_bitrates = ARRAY_SIZE(mwl8k_rates_50);
2280
2281 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &priv->band_50;
2282}
2283
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002284/*
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002285 * CMD_GET_HW_SPEC (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002286 */
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002287struct mwl8k_cmd_get_hw_spec_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002288 struct mwl8k_cmd_pkt header;
2289 __u8 hw_rev;
2290 __u8 host_interface;
2291 __le16 num_mcaddrs;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002292 __u8 perm_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002293 __le16 region_code;
2294 __le32 fw_rev;
2295 __le32 ps_cookie;
2296 __le32 caps;
2297 __u8 mcs_bitmap[16];
2298 __le32 rx_queue_ptr;
2299 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002300 __le32 tx_queue_ptrs[MWL8K_TX_WMM_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002301 __le32 caps2;
2302 __le32 num_tx_desc_per_queue;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002303 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002304} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002305
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002306#define MWL8K_CAP_MAX_AMSDU 0x20000000
2307#define MWL8K_CAP_GREENFIELD 0x08000000
2308#define MWL8K_CAP_AMPDU 0x04000000
2309#define MWL8K_CAP_RX_STBC 0x01000000
2310#define MWL8K_CAP_TX_STBC 0x00800000
2311#define MWL8K_CAP_SHORTGI_40MHZ 0x00400000
2312#define MWL8K_CAP_SHORTGI_20MHZ 0x00200000
2313#define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000
2314#define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000
2315#define MWL8K_CAP_DELAY_BA 0x00003000
2316#define MWL8K_CAP_MIMO 0x00000200
2317#define MWL8K_CAP_40MHZ 0x00000100
Lennert Buytenhek06953232010-01-12 13:49:41 +01002318#define MWL8K_CAP_BAND_MASK 0x00000007
2319#define MWL8K_CAP_5GHZ 0x00000004
2320#define MWL8K_CAP_2GHZ4 0x00000001
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002321
Lennert Buytenhek06953232010-01-12 13:49:41 +01002322static void
2323mwl8k_set_ht_caps(struct ieee80211_hw *hw,
2324 struct ieee80211_supported_band *band, u32 cap)
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002325{
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002326 int rx_streams;
2327 int tx_streams;
2328
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002329 band->ht_cap.ht_supported = 1;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002330
2331 if (cap & MWL8K_CAP_MAX_AMSDU)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002332 band->ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002333 if (cap & MWL8K_CAP_GREENFIELD)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002334 band->ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002335 if (cap & MWL8K_CAP_AMPDU) {
2336 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002337 band->ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
2338 band->ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002339 }
2340 if (cap & MWL8K_CAP_RX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002341 band->ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002342 if (cap & MWL8K_CAP_TX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002343 band->ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002344 if (cap & MWL8K_CAP_SHORTGI_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002345 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002346 if (cap & MWL8K_CAP_SHORTGI_20MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002347 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002348 if (cap & MWL8K_CAP_DELAY_BA)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002349 band->ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002350 if (cap & MWL8K_CAP_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002351 band->ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002352
2353 rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK);
2354 tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK);
2355
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002356 band->ht_cap.mcs.rx_mask[0] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002357 if (rx_streams >= 2)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002358 band->ht_cap.mcs.rx_mask[1] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002359 if (rx_streams >= 3)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002360 band->ht_cap.mcs.rx_mask[2] = 0xff;
2361 band->ht_cap.mcs.rx_mask[4] = 0x01;
2362 band->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002363
2364 if (rx_streams != tx_streams) {
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002365 band->ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
2366 band->ht_cap.mcs.tx_params |= (tx_streams - 1) <<
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002367 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
2368 }
2369}
2370
Lennert Buytenhek06953232010-01-12 13:49:41 +01002371static void
2372mwl8k_set_caps(struct ieee80211_hw *hw, u32 caps)
2373{
2374 struct mwl8k_priv *priv = hw->priv;
2375
2376 if ((caps & MWL8K_CAP_2GHZ4) || !(caps & MWL8K_CAP_BAND_MASK)) {
2377 mwl8k_setup_2ghz_band(hw);
2378 if (caps & MWL8K_CAP_MIMO)
2379 mwl8k_set_ht_caps(hw, &priv->band_24, caps);
2380 }
2381
2382 if (caps & MWL8K_CAP_5GHZ) {
2383 mwl8k_setup_5ghz_band(hw);
2384 if (caps & MWL8K_CAP_MIMO)
2385 mwl8k_set_ht_caps(hw, &priv->band_50, caps);
2386 }
2387}
2388
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002389static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002390{
2391 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002392 struct mwl8k_cmd_get_hw_spec_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002393 int rc;
2394 int i;
2395
2396 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2397 if (cmd == NULL)
2398 return -ENOMEM;
2399
2400 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2401 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2402
2403 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2404 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002405 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002406 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
2407 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002408 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002409 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002410 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002411
2412 rc = mwl8k_post_cmd(hw, &cmd->header);
2413
2414 if (!rc) {
2415 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2416 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002417 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002418 priv->hw_rev = cmd->hw_rev;
Lennert Buytenhek06953232010-01-12 13:49:41 +01002419 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002420 priv->ap_macids_supported = 0x00000000;
2421 priv->sta_macids_supported = 0x00000001;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002422 }
2423
2424 kfree(cmd);
2425 return rc;
2426}
2427
2428/*
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002429 * CMD_GET_HW_SPEC (AP version).
2430 */
2431struct mwl8k_cmd_get_hw_spec_ap {
2432 struct mwl8k_cmd_pkt header;
2433 __u8 hw_rev;
2434 __u8 host_interface;
2435 __le16 num_wcb;
2436 __le16 num_mcaddrs;
2437 __u8 perm_addr[ETH_ALEN];
2438 __le16 region_code;
2439 __le16 num_antenna;
2440 __le32 fw_rev;
2441 __le32 wcbbase0;
2442 __le32 rxwrptr;
2443 __le32 rxrdptr;
2444 __le32 ps_cookie;
2445 __le32 wcbbase1;
2446 __le32 wcbbase2;
2447 __le32 wcbbase3;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002448 __le32 fw_api_version;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002449 __le32 caps;
2450 __le32 num_of_ampdu_queues;
2451 __le32 wcbbase_ampdu[MWL8K_MAX_AMPDU_QUEUES];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002452} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002453
2454static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw)
2455{
2456 struct mwl8k_priv *priv = hw->priv;
2457 struct mwl8k_cmd_get_hw_spec_ap *cmd;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002458 int rc, i;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002459 u32 api_version;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002460
2461 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2462 if (cmd == NULL)
2463 return -ENOMEM;
2464
2465 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2466 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2467
2468 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2469 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2470
2471 rc = mwl8k_post_cmd(hw, &cmd->header);
2472
2473 if (!rc) {
2474 int off;
2475
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002476 api_version = le32_to_cpu(cmd->fw_api_version);
2477 if (priv->device_info->fw_api_ap != api_version) {
2478 printk(KERN_ERR "%s: Unsupported fw API version for %s."
2479 " Expected %d got %d.\n", MWL8K_NAME,
2480 priv->device_info->part_name,
2481 priv->device_info->fw_api_ap,
2482 api_version);
2483 rc = -EINVAL;
2484 goto done;
2485 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002486 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2487 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
2488 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
2489 priv->hw_rev = cmd->hw_rev;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002490 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002491 priv->ap_macids_supported = 0x000000ff;
2492 priv->sta_macids_supported = 0x00000000;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002493 priv->num_ampdu_queues = le32_to_cpu(cmd->num_of_ampdu_queues);
2494 if (priv->num_ampdu_queues > MWL8K_MAX_AMPDU_QUEUES) {
2495 wiphy_warn(hw->wiphy, "fw reported %d ampdu queues"
2496 " but we only support %d.\n",
2497 priv->num_ampdu_queues,
2498 MWL8K_MAX_AMPDU_QUEUES);
2499 priv->num_ampdu_queues = MWL8K_MAX_AMPDU_QUEUES;
2500 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002501 off = le32_to_cpu(cmd->rxwrptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002502 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002503
2504 off = le32_to_cpu(cmd->rxrdptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002505 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002506
Brian Cavagnolo73b46322011-03-17 11:58:41 -07002507 priv->txq_offset[0] = le32_to_cpu(cmd->wcbbase0) & 0xffff;
2508 priv->txq_offset[1] = le32_to_cpu(cmd->wcbbase1) & 0xffff;
2509 priv->txq_offset[2] = le32_to_cpu(cmd->wcbbase2) & 0xffff;
2510 priv->txq_offset[3] = le32_to_cpu(cmd->wcbbase3) & 0xffff;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002511
2512 for (i = 0; i < priv->num_ampdu_queues; i++)
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002513 priv->txq_offset[i + MWL8K_TX_WMM_QUEUES] =
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002514 le32_to_cpu(cmd->wcbbase_ampdu[i]) & 0xffff;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002515 }
2516
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002517done:
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002518 kfree(cmd);
2519 return rc;
2520}
2521
2522/*
2523 * CMD_SET_HW_SPEC.
2524 */
2525struct mwl8k_cmd_set_hw_spec {
2526 struct mwl8k_cmd_pkt header;
2527 __u8 hw_rev;
2528 __u8 host_interface;
2529 __le16 num_mcaddrs;
2530 __u8 perm_addr[ETH_ALEN];
2531 __le16 region_code;
2532 __le32 fw_rev;
2533 __le32 ps_cookie;
2534 __le32 caps;
2535 __le32 rx_queue_ptr;
2536 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002537 __le32 tx_queue_ptrs[MWL8K_MAX_TX_QUEUES];
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002538 __le32 flags;
2539 __le32 num_tx_desc_per_queue;
2540 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002541} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002542
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002543/* If enabled, MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY will cause
2544 * packets to expire 500 ms after the timestamp in the tx descriptor. That is,
2545 * the packets that are queued for more than 500ms, will be dropped in the
2546 * hardware. This helps minimizing the issues caused due to head-of-line
2547 * blocking where a slow client can hog the bandwidth and affect traffic to a
2548 * faster client.
2549 */
2550#define MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY 0x00000400
Nishant Sarmukadam3373b282011-06-13 16:26:15 +05302551#define MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR 0x00000200
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002552#define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080
2553#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP 0x00000020
2554#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON 0x00000010
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002555
2556static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw)
2557{
2558 struct mwl8k_priv *priv = hw->priv;
2559 struct mwl8k_cmd_set_hw_spec *cmd;
2560 int rc;
2561 int i;
2562
2563 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2564 if (cmd == NULL)
2565 return -ENOMEM;
2566
2567 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC);
2568 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2569
2570 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2571 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002572 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002573
2574 /*
2575 * Mac80211 stack has Q0 as highest priority and Q3 as lowest in
2576 * that order. Firmware has Q3 as highest priority and Q0 as lowest
2577 * in that order. Map Q3 of mac80211 to Q0 of firmware so that the
2578 * priority is interpreted the right way in firmware.
2579 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002580 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
2581 int j = mwl8k_tx_queues(priv) - 1 - i;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002582 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[j].txd_dma);
2583 }
2584
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002585 cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT |
2586 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP |
Nishant Sarmukadam31d291a2011-04-21 16:34:59 +05302587 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON |
Nishant Sarmukadam3373b282011-06-13 16:26:15 +05302588 MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY |
2589 MWL8K_SET_HW_SPEC_FLAG_GENERATE_CCMP_HDR);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002590 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
2591 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
2592
2593 rc = mwl8k_post_cmd(hw, &cmd->header);
2594 kfree(cmd);
2595
2596 return rc;
2597}
2598
2599/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002600 * CMD_MAC_MULTICAST_ADR.
2601 */
2602struct mwl8k_cmd_mac_multicast_adr {
2603 struct mwl8k_cmd_pkt header;
2604 __le16 action;
2605 __le16 numaddr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002606 __u8 addr[0][ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002607};
2608
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002609#define MWL8K_ENABLE_RX_DIRECTED 0x0001
2610#define MWL8K_ENABLE_RX_MULTICAST 0x0002
2611#define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004
2612#define MWL8K_ENABLE_RX_BROADCAST 0x0008
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002613
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002614static struct mwl8k_cmd_pkt *
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002615__mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti,
Jiri Pirko22bedad32010-04-01 21:22:57 +00002616 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002617{
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002618 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002619 struct mwl8k_cmd_mac_multicast_adr *cmd;
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002620 int size;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002621 int mc_count = 0;
2622
2623 if (mc_list)
2624 mc_count = netdev_hw_addr_list_count(mc_list);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002625
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002626 if (allmulti || mc_count > priv->num_mcaddrs) {
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002627 allmulti = 1;
2628 mc_count = 0;
2629 }
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002630
2631 size = sizeof(*cmd) + mc_count * ETH_ALEN;
2632
2633 cmd = kzalloc(size, GFP_ATOMIC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002634 if (cmd == NULL)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002635 return NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002636
2637 cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
2638 cmd->header.length = cpu_to_le16(size);
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002639 cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED |
2640 MWL8K_ENABLE_RX_BROADCAST);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002641
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002642 if (allmulti) {
2643 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST);
2644 } else if (mc_count) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002645 struct netdev_hw_addr *ha;
2646 int i = 0;
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002647
2648 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
2649 cmd->numaddr = cpu_to_le16(mc_count);
Jiri Pirko22bedad32010-04-01 21:22:57 +00002650 netdev_hw_addr_list_for_each(ha, mc_list) {
2651 memcpy(cmd->addr[i], ha->addr, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002652 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002653 }
2654
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002655 return &cmd->header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002656}
2657
2658/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002659 * CMD_GET_STAT.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002660 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002661struct mwl8k_cmd_get_stat {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002662 struct mwl8k_cmd_pkt header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002663 __le32 stats[64];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002664} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002665
2666#define MWL8K_STAT_ACK_FAILURE 9
2667#define MWL8K_STAT_RTS_FAILURE 12
2668#define MWL8K_STAT_FCS_ERROR 24
2669#define MWL8K_STAT_RTS_SUCCESS 11
2670
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002671static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw,
2672 struct ieee80211_low_level_stats *stats)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002673{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002674 struct mwl8k_cmd_get_stat *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002675 int rc;
2676
2677 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2678 if (cmd == NULL)
2679 return -ENOMEM;
2680
2681 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
2682 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002683
2684 rc = mwl8k_post_cmd(hw, &cmd->header);
2685 if (!rc) {
2686 stats->dot11ACKFailureCount =
2687 le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
2688 stats->dot11RTSFailureCount =
2689 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
2690 stats->dot11FCSErrorCount =
2691 le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
2692 stats->dot11RTSSuccessCount =
2693 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
2694 }
2695 kfree(cmd);
2696
2697 return rc;
2698}
2699
2700/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002701 * CMD_RADIO_CONTROL.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002702 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002703struct mwl8k_cmd_radio_control {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002704 struct mwl8k_cmd_pkt header;
2705 __le16 action;
2706 __le16 control;
2707 __le16 radio_on;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002708} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002709
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002710static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002711mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002712{
2713 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002714 struct mwl8k_cmd_radio_control *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002715 int rc;
2716
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002717 if (enable == priv->radio_on && !force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002718 return 0;
2719
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002720 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2721 if (cmd == NULL)
2722 return -ENOMEM;
2723
2724 cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
2725 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2726 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002727 cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002728 cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
2729
2730 rc = mwl8k_post_cmd(hw, &cmd->header);
2731 kfree(cmd);
2732
2733 if (!rc)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002734 priv->radio_on = enable;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002735
2736 return rc;
2737}
2738
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002739static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002740{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002741 return mwl8k_cmd_radio_control(hw, 0, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002742}
2743
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002744static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002745{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002746 return mwl8k_cmd_radio_control(hw, 1, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002747}
2748
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002749static int
2750mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
2751{
Lennert Buytenhek99200a992009-11-30 18:31:40 +01002752 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002753
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002754 priv->radio_short_preamble = short_preamble;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002755
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002756 return mwl8k_cmd_radio_control(hw, 1, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002757}
2758
2759/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002760 * CMD_RF_TX_POWER.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002761 */
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002762#define MWL8K_RF_TX_POWER_LEVEL_TOTAL 8
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002763
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002764struct mwl8k_cmd_rf_tx_power {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002765 struct mwl8k_cmd_pkt header;
2766 __le16 action;
2767 __le16 support_level;
2768 __le16 current_level;
2769 __le16 reserved;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002770 __le16 power_level_list[MWL8K_RF_TX_POWER_LEVEL_TOTAL];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002771} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002772
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002773static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw *hw, int dBm)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002774{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002775 struct mwl8k_cmd_rf_tx_power *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002776 int rc;
2777
2778 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2779 if (cmd == NULL)
2780 return -ENOMEM;
2781
2782 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
2783 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2784 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2785 cmd->support_level = cpu_to_le16(dBm);
2786
2787 rc = mwl8k_post_cmd(hw, &cmd->header);
2788 kfree(cmd);
2789
2790 return rc;
2791}
2792
2793/*
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002794 * CMD_TX_POWER.
2795 */
2796#define MWL8K_TX_POWER_LEVEL_TOTAL 12
2797
2798struct mwl8k_cmd_tx_power {
2799 struct mwl8k_cmd_pkt header;
2800 __le16 action;
2801 __le16 band;
2802 __le16 channel;
2803 __le16 bw;
2804 __le16 sub_ch;
2805 __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05302806} __packed;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002807
2808static int mwl8k_cmd_tx_power(struct ieee80211_hw *hw,
2809 struct ieee80211_conf *conf,
2810 unsigned short pwr)
2811{
2812 struct ieee80211_channel *channel = conf->channel;
2813 struct mwl8k_cmd_tx_power *cmd;
2814 int rc;
2815 int i;
2816
2817 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2818 if (cmd == NULL)
2819 return -ENOMEM;
2820
2821 cmd->header.code = cpu_to_le16(MWL8K_CMD_TX_POWER);
2822 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2823 cmd->action = cpu_to_le16(MWL8K_CMD_SET_LIST);
2824
2825 if (channel->band == IEEE80211_BAND_2GHZ)
2826 cmd->band = cpu_to_le16(0x1);
2827 else if (channel->band == IEEE80211_BAND_5GHZ)
2828 cmd->band = cpu_to_le16(0x4);
2829
Yogesh Ashok Powar604c4ef2012-01-17 15:45:15 +05302830 cmd->channel = cpu_to_le16(channel->hw_value);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002831
2832 if (conf->channel_type == NL80211_CHAN_NO_HT ||
2833 conf->channel_type == NL80211_CHAN_HT20) {
2834 cmd->bw = cpu_to_le16(0x2);
2835 } else {
2836 cmd->bw = cpu_to_le16(0x4);
2837 if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2838 cmd->sub_ch = cpu_to_le16(0x3);
2839 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2840 cmd->sub_ch = cpu_to_le16(0x1);
2841 }
2842
2843 for (i = 0; i < MWL8K_TX_POWER_LEVEL_TOTAL; i++)
2844 cmd->power_level_list[i] = cpu_to_le16(pwr);
2845
2846 rc = mwl8k_post_cmd(hw, &cmd->header);
2847 kfree(cmd);
2848
2849 return rc;
2850}
2851
2852/*
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002853 * CMD_RF_ANTENNA.
2854 */
2855struct mwl8k_cmd_rf_antenna {
2856 struct mwl8k_cmd_pkt header;
2857 __le16 antenna;
2858 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002859} __packed;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002860
2861#define MWL8K_RF_ANTENNA_RX 1
2862#define MWL8K_RF_ANTENNA_TX 2
2863
2864static int
2865mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask)
2866{
2867 struct mwl8k_cmd_rf_antenna *cmd;
2868 int rc;
2869
2870 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2871 if (cmd == NULL)
2872 return -ENOMEM;
2873
2874 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA);
2875 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2876 cmd->antenna = cpu_to_le16(antenna);
2877 cmd->mode = cpu_to_le16(mask);
2878
2879 rc = mwl8k_post_cmd(hw, &cmd->header);
2880 kfree(cmd);
2881
2882 return rc;
2883}
2884
2885/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002886 * CMD_SET_BEACON.
2887 */
2888struct mwl8k_cmd_set_beacon {
2889 struct mwl8k_cmd_pkt header;
2890 __le16 beacon_len;
2891 __u8 beacon[0];
2892};
2893
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002894static int mwl8k_cmd_set_beacon(struct ieee80211_hw *hw,
2895 struct ieee80211_vif *vif, u8 *beacon, int len)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002896{
2897 struct mwl8k_cmd_set_beacon *cmd;
2898 int rc;
2899
2900 cmd = kzalloc(sizeof(*cmd) + len, GFP_KERNEL);
2901 if (cmd == NULL)
2902 return -ENOMEM;
2903
2904 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_BEACON);
2905 cmd->header.length = cpu_to_le16(sizeof(*cmd) + len);
2906 cmd->beacon_len = cpu_to_le16(len);
2907 memcpy(cmd->beacon, beacon, len);
2908
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002909 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002910 kfree(cmd);
2911
2912 return rc;
2913}
2914
2915/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002916 * CMD_SET_PRE_SCAN.
2917 */
2918struct mwl8k_cmd_set_pre_scan {
2919 struct mwl8k_cmd_pkt header;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002920} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002921
2922static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
2923{
2924 struct mwl8k_cmd_set_pre_scan *cmd;
2925 int rc;
2926
2927 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2928 if (cmd == NULL)
2929 return -ENOMEM;
2930
2931 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
2932 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2933
2934 rc = mwl8k_post_cmd(hw, &cmd->header);
2935 kfree(cmd);
2936
2937 return rc;
2938}
2939
2940/*
2941 * CMD_SET_POST_SCAN.
2942 */
2943struct mwl8k_cmd_set_post_scan {
2944 struct mwl8k_cmd_pkt header;
2945 __le32 isibss;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002946 __u8 bssid[ETH_ALEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002947} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002948
2949static int
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002950mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002951{
2952 struct mwl8k_cmd_set_post_scan *cmd;
2953 int rc;
2954
2955 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2956 if (cmd == NULL)
2957 return -ENOMEM;
2958
2959 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
2960 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2961 cmd->isibss = 0;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002962 memcpy(cmd->bssid, mac, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002963
2964 rc = mwl8k_post_cmd(hw, &cmd->header);
2965 kfree(cmd);
2966
2967 return rc;
2968}
2969
2970/*
2971 * CMD_SET_RF_CHANNEL.
2972 */
2973struct mwl8k_cmd_set_rf_channel {
2974 struct mwl8k_cmd_pkt header;
2975 __le16 action;
2976 __u8 current_channel;
2977 __le32 channel_flags;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002978} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002979
2980static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002981 struct ieee80211_conf *conf)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002982{
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002983 struct ieee80211_channel *channel = conf->channel;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002984 struct mwl8k_cmd_set_rf_channel *cmd;
2985 int rc;
2986
2987 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2988 if (cmd == NULL)
2989 return -ENOMEM;
2990
2991 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
2992 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2993 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2994 cmd->current_channel = channel->hw_value;
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002995
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002996 if (channel->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002997 cmd->channel_flags |= cpu_to_le32(0x00000001);
Lennert Buytenhek42574ea2010-01-12 13:49:18 +01002998 else if (channel->band == IEEE80211_BAND_5GHZ)
2999 cmd->channel_flags |= cpu_to_le32(0x00000004);
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003000
3001 if (conf->channel_type == NL80211_CHAN_NO_HT ||
3002 conf->channel_type == NL80211_CHAN_HT20)
3003 cmd->channel_flags |= cpu_to_le32(0x00000080);
3004 else if (conf->channel_type == NL80211_CHAN_HT40MINUS)
3005 cmd->channel_flags |= cpu_to_le32(0x000001900);
3006 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
3007 cmd->channel_flags |= cpu_to_le32(0x000000900);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003008
3009 rc = mwl8k_post_cmd(hw, &cmd->header);
3010 kfree(cmd);
3011
3012 return rc;
3013}
3014
3015/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003016 * CMD_SET_AID.
3017 */
3018#define MWL8K_FRAME_PROT_DISABLED 0x00
3019#define MWL8K_FRAME_PROT_11G 0x07
3020#define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
3021#define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
3022
3023struct mwl8k_cmd_update_set_aid {
3024 struct mwl8k_cmd_pkt header;
3025 __le16 aid;
3026
3027 /* AP's MAC address (BSSID) */
3028 __u8 bssid[ETH_ALEN];
3029 __le16 protection_mode;
3030 __u8 supp_rates[14];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003031} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003032
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003033static void legacy_rate_mask_to_array(u8 *rates, u32 mask)
3034{
3035 int i;
3036 int j;
3037
3038 /*
3039 * Clear nonstandard rates 4 and 13.
3040 */
3041 mask &= 0x1fef;
3042
3043 for (i = 0, j = 0; i < 14; i++) {
3044 if (mask & (1 << i))
Lennert Buytenhek777ad372010-01-12 13:48:04 +01003045 rates[j++] = mwl8k_rates_24[i].hw_value;
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003046 }
3047}
3048
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003049static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003050mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
3051 struct ieee80211_vif *vif, u32 legacy_rate_mask)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003052{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003053 struct mwl8k_cmd_update_set_aid *cmd;
3054 u16 prot_mode;
3055 int rc;
3056
3057 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3058 if (cmd == NULL)
3059 return -ENOMEM;
3060
3061 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
3062 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003063 cmd->aid = cpu_to_le16(vif->bss_conf.aid);
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003064 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003065
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003066 if (vif->bss_conf.use_cts_prot) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003067 prot_mode = MWL8K_FRAME_PROT_11G;
3068 } else {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003069 switch (vif->bss_conf.ht_operation_mode &
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003070 IEEE80211_HT_OP_MODE_PROTECTION) {
3071 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
3072 prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
3073 break;
3074 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
3075 prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
3076 break;
3077 default:
3078 prot_mode = MWL8K_FRAME_PROT_DISABLED;
3079 break;
3080 }
3081 }
3082 cmd->protection_mode = cpu_to_le16(prot_mode);
3083
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003084 legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003085
3086 rc = mwl8k_post_cmd(hw, &cmd->header);
3087 kfree(cmd);
3088
3089 return rc;
3090}
3091
3092/*
3093 * CMD_SET_RATE.
3094 */
3095struct mwl8k_cmd_set_rate {
3096 struct mwl8k_cmd_pkt header;
3097 __u8 legacy_rates[14];
3098
3099 /* Bitmap for supported MCS codes. */
3100 __u8 mcs_set[16];
3101 __u8 reserved[16];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003102} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003103
3104static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003105mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003106 u32 legacy_rate_mask, u8 *mcs_rates)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003107{
3108 struct mwl8k_cmd_set_rate *cmd;
3109 int rc;
3110
3111 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3112 if (cmd == NULL)
3113 return -ENOMEM;
3114
3115 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE);
3116 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003117 legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003118 memcpy(cmd->mcs_set, mcs_rates, 16);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003119
3120 rc = mwl8k_post_cmd(hw, &cmd->header);
3121 kfree(cmd);
3122
3123 return rc;
3124}
3125
3126/*
3127 * CMD_FINALIZE_JOIN.
3128 */
3129#define MWL8K_FJ_BEACON_MAXLEN 128
3130
3131struct mwl8k_cmd_finalize_join {
3132 struct mwl8k_cmd_pkt header;
3133 __le32 sleep_interval; /* Number of beacon periods to sleep */
3134 __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003135} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003136
3137static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame,
3138 int framelen, int dtim)
3139{
3140 struct mwl8k_cmd_finalize_join *cmd;
3141 struct ieee80211_mgmt *payload = frame;
3142 int payload_len;
3143 int rc;
3144
3145 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3146 if (cmd == NULL)
3147 return -ENOMEM;
3148
3149 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN);
3150 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3151 cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
3152
3153 payload_len = framelen - ieee80211_hdrlen(payload->frame_control);
3154 if (payload_len < 0)
3155 payload_len = 0;
3156 else if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
3157 payload_len = MWL8K_FJ_BEACON_MAXLEN;
3158
3159 memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
3160
3161 rc = mwl8k_post_cmd(hw, &cmd->header);
3162 kfree(cmd);
3163
3164 return rc;
3165}
3166
3167/*
3168 * CMD_SET_RTS_THRESHOLD.
3169 */
3170struct mwl8k_cmd_set_rts_threshold {
3171 struct mwl8k_cmd_pkt header;
3172 __le16 action;
3173 __le16 threshold;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003174} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003175
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003176static int
3177mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw, int rts_thresh)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003178{
3179 struct mwl8k_cmd_set_rts_threshold *cmd;
3180 int rc;
3181
3182 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3183 if (cmd == NULL)
3184 return -ENOMEM;
3185
3186 cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
3187 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003188 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3189 cmd->threshold = cpu_to_le16(rts_thresh);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003190
3191 rc = mwl8k_post_cmd(hw, &cmd->header);
3192 kfree(cmd);
3193
3194 return rc;
3195}
3196
3197/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003198 * CMD_SET_SLOT.
3199 */
3200struct mwl8k_cmd_set_slot {
3201 struct mwl8k_cmd_pkt header;
3202 __le16 action;
3203 __u8 short_slot;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003204} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003205
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003206static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003207{
3208 struct mwl8k_cmd_set_slot *cmd;
3209 int rc;
3210
3211 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3212 if (cmd == NULL)
3213 return -ENOMEM;
3214
3215 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
3216 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3217 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003218 cmd->short_slot = short_slot_time;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003219
3220 rc = mwl8k_post_cmd(hw, &cmd->header);
3221 kfree(cmd);
3222
3223 return rc;
3224}
3225
3226/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003227 * CMD_SET_EDCA_PARAMS.
3228 */
3229struct mwl8k_cmd_set_edca_params {
3230 struct mwl8k_cmd_pkt header;
3231
3232 /* See MWL8K_SET_EDCA_XXX below */
3233 __le16 action;
3234
3235 /* TX opportunity in units of 32 us */
3236 __le16 txop;
3237
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003238 union {
3239 struct {
3240 /* Log exponent of max contention period: 0...15 */
3241 __le32 log_cw_max;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003242
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003243 /* Log exponent of min contention period: 0...15 */
3244 __le32 log_cw_min;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003245
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003246 /* Adaptive interframe spacing in units of 32us */
3247 __u8 aifs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003248
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003249 /* TX queue to configure */
3250 __u8 txq;
3251 } ap;
3252 struct {
3253 /* Log exponent of max contention period: 0...15 */
3254 __u8 log_cw_max;
3255
3256 /* Log exponent of min contention period: 0...15 */
3257 __u8 log_cw_min;
3258
3259 /* Adaptive interframe spacing in units of 32us */
3260 __u8 aifs;
3261
3262 /* TX queue to configure */
3263 __u8 txq;
3264 } sta;
3265 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003266} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003267
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003268#define MWL8K_SET_EDCA_CW 0x01
3269#define MWL8K_SET_EDCA_TXOP 0x02
3270#define MWL8K_SET_EDCA_AIFS 0x04
3271
3272#define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
3273 MWL8K_SET_EDCA_TXOP | \
3274 MWL8K_SET_EDCA_AIFS)
3275
3276static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003277mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
3278 __u16 cw_min, __u16 cw_max,
3279 __u8 aifs, __u16 txop)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003280{
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003281 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003282 struct mwl8k_cmd_set_edca_params *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003283 int rc;
3284
3285 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3286 if (cmd == NULL)
3287 return -ENOMEM;
3288
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003289 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
3290 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003291 cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
3292 cmd->txop = cpu_to_le16(txop);
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003293 if (priv->ap_fw) {
3294 cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1));
3295 cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1));
3296 cmd->ap.aifs = aifs;
3297 cmd->ap.txq = qnum;
3298 } else {
3299 cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1);
3300 cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1);
3301 cmd->sta.aifs = aifs;
3302 cmd->sta.txq = qnum;
3303 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003304
3305 rc = mwl8k_post_cmd(hw, &cmd->header);
3306 kfree(cmd);
3307
3308 return rc;
3309}
3310
3311/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003312 * CMD_SET_WMM_MODE.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003313 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003314struct mwl8k_cmd_set_wmm_mode {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003315 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003316 __le16 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003317} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003318
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003319static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw *hw, bool enable)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003320{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003321 struct mwl8k_priv *priv = hw->priv;
3322 struct mwl8k_cmd_set_wmm_mode *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003323 int rc;
3324
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003325 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3326 if (cmd == NULL)
3327 return -ENOMEM;
3328
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003329 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003330 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003331 cmd->action = cpu_to_le16(!!enable);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003332
3333 rc = mwl8k_post_cmd(hw, &cmd->header);
3334 kfree(cmd);
Lennert Buytenhek16cec432009-11-30 18:14:23 +01003335
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003336 if (!rc)
3337 priv->wmm_enabled = enable;
3338
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003339 return rc;
3340}
3341
3342/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003343 * CMD_MIMO_CONFIG.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003344 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003345struct mwl8k_cmd_mimo_config {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003346 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003347 __le32 action;
3348 __u8 rx_antenna_map;
3349 __u8 tx_antenna_map;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003350} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003351
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003352static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003353{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003354 struct mwl8k_cmd_mimo_config *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003355 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003356
3357 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_MIMO_CONFIG);
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_le32((u32)MWL8K_CMD_SET);
3364 cmd->rx_antenna_map = rx;
3365 cmd->tx_antenna_map = tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003366
3367 rc = mwl8k_post_cmd(hw, &cmd->header);
3368 kfree(cmd);
3369
3370 return rc;
3371}
3372
3373/*
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003374 * CMD_USE_FIXED_RATE (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003375 */
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003376struct mwl8k_cmd_use_fixed_rate_sta {
3377 struct mwl8k_cmd_pkt header;
3378 __le32 action;
3379 __le32 allow_rate_drop;
3380 __le32 num_rates;
3381 struct {
3382 __le32 is_ht_rate;
3383 __le32 enable_retry;
3384 __le32 rate;
3385 __le32 retry_count;
3386 } rate_entry[8];
3387 __le32 rate_type;
3388 __le32 reserved1;
3389 __le32 reserved2;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003390} __packed;
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003391
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003392#define MWL8K_USE_AUTO_RATE 0x0002
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003393#define MWL8K_UCAST_RATE 0
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003394
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003395static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003396{
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003397 struct mwl8k_cmd_use_fixed_rate_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003398 int rc;
3399
3400 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3401 if (cmd == NULL)
3402 return -ENOMEM;
3403
3404 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3405 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003406 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3407 cmd->rate_type = cpu_to_le32(MWL8K_UCAST_RATE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003408
3409 rc = mwl8k_post_cmd(hw, &cmd->header);
3410 kfree(cmd);
3411
3412 return rc;
3413}
3414
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003415/*
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003416 * CMD_USE_FIXED_RATE (AP version).
3417 */
3418struct mwl8k_cmd_use_fixed_rate_ap {
3419 struct mwl8k_cmd_pkt header;
3420 __le32 action;
3421 __le32 allow_rate_drop;
3422 __le32 num_rates;
3423 struct mwl8k_rate_entry_ap {
3424 __le32 is_ht_rate;
3425 __le32 enable_retry;
3426 __le32 rate;
3427 __le32 retry_count;
3428 } rate_entry[4];
3429 u8 multicast_rate;
3430 u8 multicast_rate_type;
3431 u8 management_rate;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003432} __packed;
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003433
3434static int
3435mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw *hw, int mcast, int mgmt)
3436{
3437 struct mwl8k_cmd_use_fixed_rate_ap *cmd;
3438 int rc;
3439
3440 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3441 if (cmd == NULL)
3442 return -ENOMEM;
3443
3444 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3445 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3446 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3447 cmd->multicast_rate = mcast;
3448 cmd->management_rate = mgmt;
3449
3450 rc = mwl8k_post_cmd(hw, &cmd->header);
3451 kfree(cmd);
3452
3453 return rc;
3454}
3455
3456/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003457 * CMD_ENABLE_SNIFFER.
3458 */
3459struct mwl8k_cmd_enable_sniffer {
3460 struct mwl8k_cmd_pkt header;
3461 __le32 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003462} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003463
3464static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable)
3465{
3466 struct mwl8k_cmd_enable_sniffer *cmd;
3467 int rc;
3468
3469 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3470 if (cmd == NULL)
3471 return -ENOMEM;
3472
3473 cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
3474 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3475 cmd->action = cpu_to_le32(!!enable);
3476
3477 rc = mwl8k_post_cmd(hw, &cmd->header);
3478 kfree(cmd);
3479
3480 return rc;
3481}
3482
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303483struct mwl8k_cmd_update_mac_addr {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003484 struct mwl8k_cmd_pkt header;
3485 union {
3486 struct {
3487 __le16 mac_type;
3488 __u8 mac_addr[ETH_ALEN];
3489 } mbss;
3490 __u8 mac_addr[ETH_ALEN];
3491 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003492} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003493
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003494#define MWL8K_MAC_TYPE_PRIMARY_CLIENT 0
3495#define MWL8K_MAC_TYPE_SECONDARY_CLIENT 1
3496#define MWL8K_MAC_TYPE_PRIMARY_AP 2
3497#define MWL8K_MAC_TYPE_SECONDARY_AP 3
Lennert Buytenheka9e00b12010-01-08 18:31:30 +01003498
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303499static int mwl8k_cmd_update_mac_addr(struct ieee80211_hw *hw,
3500 struct ieee80211_vif *vif, u8 *mac, bool set)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003501{
3502 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003503 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303504 struct mwl8k_cmd_update_mac_addr *cmd;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003505 int mac_type;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003506 int rc;
3507
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003508 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3509 if (vif != NULL && vif->type == NL80211_IFTYPE_STATION) {
3510 if (mwl8k_vif->macid + 1 == ffs(priv->sta_macids_supported))
3511 mac_type = MWL8K_MAC_TYPE_PRIMARY_CLIENT;
3512 else
3513 mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
3514 } else if (vif != NULL && vif->type == NL80211_IFTYPE_AP) {
3515 if (mwl8k_vif->macid + 1 == ffs(priv->ap_macids_supported))
3516 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3517 else
3518 mac_type = MWL8K_MAC_TYPE_SECONDARY_AP;
3519 }
3520
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003521 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3522 if (cmd == NULL)
3523 return -ENOMEM;
3524
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303525 if (set)
3526 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR);
3527 else
3528 cmd->header.code = cpu_to_le16(MWL8K_CMD_DEL_MAC_ADDR);
3529
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003530 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3531 if (priv->ap_fw) {
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003532 cmd->mbss.mac_type = cpu_to_le16(mac_type);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003533 memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN);
3534 } else {
3535 memcpy(cmd->mac_addr, mac, ETH_ALEN);
3536 }
3537
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003538 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003539 kfree(cmd);
3540
3541 return rc;
3542}
3543
3544/*
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05303545 * MWL8K_CMD_SET_MAC_ADDR.
3546 */
3547static inline int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw,
3548 struct ieee80211_vif *vif, u8 *mac)
3549{
3550 return mwl8k_cmd_update_mac_addr(hw, vif, mac, true);
3551}
3552
3553/*
3554 * MWL8K_CMD_DEL_MAC_ADDR.
3555 */
3556static inline int mwl8k_cmd_del_mac_addr(struct ieee80211_hw *hw,
3557 struct ieee80211_vif *vif, u8 *mac)
3558{
3559 return mwl8k_cmd_update_mac_addr(hw, vif, mac, false);
3560}
3561
3562/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003563 * CMD_SET_RATEADAPT_MODE.
3564 */
3565struct mwl8k_cmd_set_rate_adapt_mode {
3566 struct mwl8k_cmd_pkt header;
3567 __le16 action;
3568 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003569} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003570
3571static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode)
3572{
3573 struct mwl8k_cmd_set_rate_adapt_mode *cmd;
3574 int rc;
3575
3576 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3577 if (cmd == NULL)
3578 return -ENOMEM;
3579
3580 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
3581 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3582 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3583 cmd->mode = cpu_to_le16(mode);
3584
3585 rc = mwl8k_post_cmd(hw, &cmd->header);
3586 kfree(cmd);
3587
3588 return rc;
3589}
3590
3591/*
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003592 * CMD_GET_WATCHDOG_BITMAP.
3593 */
3594struct mwl8k_cmd_get_watchdog_bitmap {
3595 struct mwl8k_cmd_pkt header;
3596 u8 bitmap;
3597} __packed;
3598
3599static int mwl8k_cmd_get_watchdog_bitmap(struct ieee80211_hw *hw, u8 *bitmap)
3600{
3601 struct mwl8k_cmd_get_watchdog_bitmap *cmd;
3602 int rc;
3603
3604 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3605 if (cmd == NULL)
3606 return -ENOMEM;
3607
3608 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_WATCHDOG_BITMAP);
3609 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3610
3611 rc = mwl8k_post_cmd(hw, &cmd->header);
3612 if (!rc)
3613 *bitmap = cmd->bitmap;
3614
3615 kfree(cmd);
3616
3617 return rc;
3618}
3619
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303620#define MWL8K_WMM_QUEUE_NUMBER 3
3621
3622static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
3623 u8 idx);
3624
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003625static void mwl8k_watchdog_ba_events(struct work_struct *work)
3626{
3627 int rc;
3628 u8 bitmap = 0, stream_index;
3629 struct mwl8k_ampdu_stream *streams;
3630 struct mwl8k_priv *priv =
3631 container_of(work, struct mwl8k_priv, watchdog_ba_handle);
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303632 struct ieee80211_hw *hw = priv->hw;
3633 int i;
3634 u32 status = 0;
3635
3636 mwl8k_fw_lock(hw);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003637
3638 rc = mwl8k_cmd_get_watchdog_bitmap(priv->hw, &bitmap);
3639 if (rc)
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303640 goto done;
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003641
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303642 spin_lock(&priv->stream_lock);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003643
3644 /* the bitmap is the hw queue number. Map it to the ampdu queue. */
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303645 for (i = 0; i < TOTAL_HW_TX_QUEUES; i++) {
3646 if (bitmap & (1 << i)) {
3647 stream_index = (i + MWL8K_WMM_QUEUE_NUMBER) %
3648 TOTAL_HW_TX_QUEUES;
3649 streams = &priv->ampdu[stream_index];
3650 if (streams->state == AMPDU_STREAM_ACTIVE) {
3651 ieee80211_stop_tx_ba_session(streams->sta,
3652 streams->tid);
3653 spin_unlock(&priv->stream_lock);
3654 mwl8k_destroy_ba(hw, stream_index);
3655 spin_lock(&priv->stream_lock);
3656 }
3657 }
3658 }
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003659
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303660 spin_unlock(&priv->stream_lock);
3661done:
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05303662 atomic_dec(&priv->watchdog_event_pending);
Yogesh Ashok Powarcfacba12013-01-03 13:24:03 +05303663 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3664 iowrite32((status | MWL8K_A2H_INT_BA_WATCHDOG),
3665 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3666 mwl8k_fw_unlock(hw);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003667 return;
3668}
3669
3670
3671/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003672 * CMD_BSS_START.
3673 */
3674struct mwl8k_cmd_bss_start {
3675 struct mwl8k_cmd_pkt header;
3676 __le32 enable;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003677} __packed;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003678
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003679static int mwl8k_cmd_bss_start(struct ieee80211_hw *hw,
3680 struct ieee80211_vif *vif, int enable)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003681{
3682 struct mwl8k_cmd_bss_start *cmd;
3683 int rc;
3684
3685 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3686 if (cmd == NULL)
3687 return -ENOMEM;
3688
3689 cmd->header.code = cpu_to_le16(MWL8K_CMD_BSS_START);
3690 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3691 cmd->enable = cpu_to_le32(enable);
3692
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003693 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003694 kfree(cmd);
3695
3696 return rc;
3697}
3698
3699/*
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003700 * CMD_BASTREAM.
3701 */
3702
3703/*
3704 * UPSTREAM is tx direction
3705 */
3706#define BASTREAM_FLAG_DIRECTION_UPSTREAM 0x00
3707#define BASTREAM_FLAG_IMMEDIATE_TYPE 0x01
3708
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303709enum ba_stream_action_type {
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003710 MWL8K_BA_CREATE,
3711 MWL8K_BA_UPDATE,
3712 MWL8K_BA_DESTROY,
3713 MWL8K_BA_FLUSH,
3714 MWL8K_BA_CHECK,
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303715};
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003716
3717
3718struct mwl8k_create_ba_stream {
3719 __le32 flags;
3720 __le32 idle_thrs;
3721 __le32 bar_thrs;
3722 __le32 window_size;
3723 u8 peer_mac_addr[6];
3724 u8 dialog_token;
3725 u8 tid;
3726 u8 queue_id;
3727 u8 param_info;
3728 __le32 ba_context;
3729 u8 reset_seq_no_flag;
3730 __le16 curr_seq_no;
3731 u8 sta_src_mac_addr[6];
3732} __packed;
3733
3734struct mwl8k_destroy_ba_stream {
3735 __le32 flags;
3736 __le32 ba_context;
3737} __packed;
3738
3739struct mwl8k_cmd_bastream {
3740 struct mwl8k_cmd_pkt header;
3741 __le32 action;
3742 union {
3743 struct mwl8k_create_ba_stream create_params;
3744 struct mwl8k_destroy_ba_stream destroy_params;
3745 };
3746} __packed;
3747
3748static int
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303749mwl8k_check_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
3750 struct ieee80211_vif *vif)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003751{
3752 struct mwl8k_cmd_bastream *cmd;
3753 int rc;
3754
3755 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3756 if (cmd == NULL)
3757 return -ENOMEM;
3758
3759 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3760 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3761
3762 cmd->action = cpu_to_le32(MWL8K_BA_CHECK);
3763
3764 cmd->create_params.queue_id = stream->idx;
3765 memcpy(&cmd->create_params.peer_mac_addr[0], stream->sta->addr,
3766 ETH_ALEN);
3767 cmd->create_params.tid = stream->tid;
3768
3769 cmd->create_params.flags =
3770 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE) |
3771 cpu_to_le32(BASTREAM_FLAG_DIRECTION_UPSTREAM);
3772
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303773 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003774
3775 kfree(cmd);
3776
3777 return rc;
3778}
3779
3780static int
3781mwl8k_create_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303782 u8 buf_size, struct ieee80211_vif *vif)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003783{
3784 struct mwl8k_cmd_bastream *cmd;
3785 int rc;
3786
3787 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3788 if (cmd == NULL)
3789 return -ENOMEM;
3790
3791
3792 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3793 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3794
3795 cmd->action = cpu_to_le32(MWL8K_BA_CREATE);
3796
3797 cmd->create_params.bar_thrs = cpu_to_le32((u32)buf_size);
3798 cmd->create_params.window_size = cpu_to_le32((u32)buf_size);
3799 cmd->create_params.queue_id = stream->idx;
3800
3801 memcpy(cmd->create_params.peer_mac_addr, stream->sta->addr, ETH_ALEN);
3802 cmd->create_params.tid = stream->tid;
3803 cmd->create_params.curr_seq_no = cpu_to_le16(0);
3804 cmd->create_params.reset_seq_no_flag = 1;
3805
3806 cmd->create_params.param_info =
3807 (stream->sta->ht_cap.ampdu_factor &
3808 IEEE80211_HT_AMPDU_PARM_FACTOR) |
3809 ((stream->sta->ht_cap.ampdu_density << 2) &
3810 IEEE80211_HT_AMPDU_PARM_DENSITY);
3811
3812 cmd->create_params.flags =
3813 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE |
3814 BASTREAM_FLAG_DIRECTION_UPSTREAM);
3815
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05303816 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003817
3818 wiphy_debug(hw->wiphy, "Created a BA stream for %pM : tid %d\n",
3819 stream->sta->addr, stream->tid);
3820 kfree(cmd);
3821
3822 return rc;
3823}
3824
3825static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05303826 u8 idx)
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003827{
3828 struct mwl8k_cmd_bastream *cmd;
3829
3830 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3831 if (cmd == NULL)
3832 return;
3833
3834 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3835 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3836 cmd->action = cpu_to_le32(MWL8K_BA_DESTROY);
3837
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05303838 cmd->destroy_params.ba_context = cpu_to_le32(idx);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003839 mwl8k_post_cmd(hw, &cmd->header);
3840
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05303841 wiphy_debug(hw->wiphy, "Deleted BA stream index %d\n", idx);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003842
3843 kfree(cmd);
3844}
3845
3846/*
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003847 * CMD_SET_NEW_STN.
3848 */
3849struct mwl8k_cmd_set_new_stn {
3850 struct mwl8k_cmd_pkt header;
3851 __le16 aid;
3852 __u8 mac_addr[6];
3853 __le16 stn_id;
3854 __le16 action;
3855 __le16 rsvd;
3856 __le32 legacy_rates;
3857 __u8 ht_rates[4];
3858 __le16 cap_info;
3859 __le16 ht_capabilities_info;
3860 __u8 mac_ht_param_info;
3861 __u8 rev;
3862 __u8 control_channel;
3863 __u8 add_channel;
3864 __le16 op_mode;
3865 __le16 stbc;
3866 __u8 add_qos_info;
3867 __u8 is_qos_sta;
3868 __le32 fw_sta_ptr;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003869} __packed;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003870
3871#define MWL8K_STA_ACTION_ADD 0
3872#define MWL8K_STA_ACTION_REMOVE 2
3873
3874static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw *hw,
3875 struct ieee80211_vif *vif,
3876 struct ieee80211_sta *sta)
3877{
3878 struct mwl8k_cmd_set_new_stn *cmd;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003879 u32 rates;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003880 int rc;
3881
3882 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3883 if (cmd == NULL)
3884 return -ENOMEM;
3885
3886 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3887 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3888 cmd->aid = cpu_to_le16(sta->aid);
3889 memcpy(cmd->mac_addr, sta->addr, ETH_ALEN);
3890 cmd->stn_id = cpu_to_le16(sta->aid);
3891 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_ADD);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003892 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
3893 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
3894 else
3895 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
3896 cmd->legacy_rates = cpu_to_le32(rates);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003897 if (sta->ht_cap.ht_supported) {
3898 cmd->ht_rates[0] = sta->ht_cap.mcs.rx_mask[0];
3899 cmd->ht_rates[1] = sta->ht_cap.mcs.rx_mask[1];
3900 cmd->ht_rates[2] = sta->ht_cap.mcs.rx_mask[2];
3901 cmd->ht_rates[3] = sta->ht_cap.mcs.rx_mask[3];
3902 cmd->ht_capabilities_info = cpu_to_le16(sta->ht_cap.cap);
3903 cmd->mac_ht_param_info = (sta->ht_cap.ampdu_factor & 3) |
3904 ((sta->ht_cap.ampdu_density & 7) << 2);
3905 cmd->is_qos_sta = 1;
3906 }
3907
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003908 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003909 kfree(cmd);
3910
3911 return rc;
3912}
3913
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003914static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw *hw,
3915 struct ieee80211_vif *vif)
3916{
3917 struct mwl8k_cmd_set_new_stn *cmd;
3918 int rc;
3919
3920 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3921 if (cmd == NULL)
3922 return -ENOMEM;
3923
3924 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3925 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3926 memcpy(cmd->mac_addr, vif->addr, ETH_ALEN);
3927
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003928 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003929 kfree(cmd);
3930
3931 return rc;
3932}
3933
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003934static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw *hw,
3935 struct ieee80211_vif *vif, u8 *addr)
3936{
3937 struct mwl8k_cmd_set_new_stn *cmd;
3938 int rc;
3939
3940 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3941 if (cmd == NULL)
3942 return -ENOMEM;
3943
3944 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3945 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3946 memcpy(cmd->mac_addr, addr, ETH_ALEN);
3947 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_REMOVE);
3948
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003949 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003950 kfree(cmd);
3951
3952 return rc;
3953}
3954
3955/*
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08003956 * CMD_UPDATE_ENCRYPTION.
3957 */
3958
3959#define MAX_ENCR_KEY_LENGTH 16
3960#define MIC_KEY_LENGTH 8
3961
3962struct mwl8k_cmd_update_encryption {
3963 struct mwl8k_cmd_pkt header;
3964
3965 __le32 action;
3966 __le32 reserved;
3967 __u8 mac_addr[6];
3968 __u8 encr_type;
3969
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303970} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08003971
3972struct mwl8k_cmd_set_key {
3973 struct mwl8k_cmd_pkt header;
3974
3975 __le32 action;
3976 __le32 reserved;
3977 __le16 length;
3978 __le16 key_type_id;
3979 __le32 key_info;
3980 __le32 key_id;
3981 __le16 key_len;
3982 __u8 key_material[MAX_ENCR_KEY_LENGTH];
3983 __u8 tkip_tx_mic_key[MIC_KEY_LENGTH];
3984 __u8 tkip_rx_mic_key[MIC_KEY_LENGTH];
3985 __le16 tkip_rsc_low;
3986 __le32 tkip_rsc_high;
3987 __le16 tkip_tsc_low;
3988 __le32 tkip_tsc_high;
3989 __u8 mac_addr[6];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303990} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08003991
3992enum {
3993 MWL8K_ENCR_ENABLE,
3994 MWL8K_ENCR_SET_KEY,
3995 MWL8K_ENCR_REMOVE_KEY,
3996 MWL8K_ENCR_SET_GROUP_KEY,
3997};
3998
3999#define MWL8K_UPDATE_ENCRYPTION_TYPE_WEP 0
4000#define MWL8K_UPDATE_ENCRYPTION_TYPE_DISABLE 1
4001#define MWL8K_UPDATE_ENCRYPTION_TYPE_TKIP 4
4002#define MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED 7
4003#define MWL8K_UPDATE_ENCRYPTION_TYPE_AES 8
4004
4005enum {
4006 MWL8K_ALG_WEP,
4007 MWL8K_ALG_TKIP,
4008 MWL8K_ALG_CCMP,
4009};
4010
4011#define MWL8K_KEY_FLAG_TXGROUPKEY 0x00000004
4012#define MWL8K_KEY_FLAG_PAIRWISE 0x00000008
4013#define MWL8K_KEY_FLAG_TSC_VALID 0x00000040
4014#define MWL8K_KEY_FLAG_WEP_TXKEY 0x01000000
4015#define MWL8K_KEY_FLAG_MICKEY_VALID 0x02000000
4016
4017static int mwl8k_cmd_update_encryption_enable(struct ieee80211_hw *hw,
4018 struct ieee80211_vif *vif,
4019 u8 *addr,
4020 u8 encr_type)
4021{
4022 struct mwl8k_cmd_update_encryption *cmd;
4023 int rc;
4024
4025 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4026 if (cmd == NULL)
4027 return -ENOMEM;
4028
4029 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
4030 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4031 cmd->action = cpu_to_le32(MWL8K_ENCR_ENABLE);
4032 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4033 cmd->encr_type = encr_type;
4034
4035 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4036 kfree(cmd);
4037
4038 return rc;
4039}
4040
4041static int mwl8k_encryption_set_cmd_info(struct mwl8k_cmd_set_key *cmd,
4042 u8 *addr,
4043 struct ieee80211_key_conf *key)
4044{
4045 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
4046 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4047 cmd->length = cpu_to_le16(sizeof(*cmd) -
4048 offsetof(struct mwl8k_cmd_set_key, length));
4049 cmd->key_id = cpu_to_le32(key->keyidx);
4050 cmd->key_len = cpu_to_le16(key->keylen);
4051 memcpy(cmd->mac_addr, addr, ETH_ALEN);
4052
4053 switch (key->cipher) {
4054 case WLAN_CIPHER_SUITE_WEP40:
4055 case WLAN_CIPHER_SUITE_WEP104:
4056 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_WEP);
4057 if (key->keyidx == 0)
4058 cmd->key_info = cpu_to_le32(MWL8K_KEY_FLAG_WEP_TXKEY);
4059
4060 break;
4061 case WLAN_CIPHER_SUITE_TKIP:
4062 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_TKIP);
4063 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4064 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
4065 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
4066 cmd->key_info |= cpu_to_le32(MWL8K_KEY_FLAG_MICKEY_VALID
4067 | MWL8K_KEY_FLAG_TSC_VALID);
4068 break;
4069 case WLAN_CIPHER_SUITE_CCMP:
4070 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_CCMP);
4071 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4072 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
4073 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
4074 break;
4075 default:
4076 return -ENOTSUPP;
4077 }
4078
4079 return 0;
4080}
4081
4082static int mwl8k_cmd_encryption_set_key(struct ieee80211_hw *hw,
4083 struct ieee80211_vif *vif,
4084 u8 *addr,
4085 struct ieee80211_key_conf *key)
4086{
4087 struct mwl8k_cmd_set_key *cmd;
4088 int rc;
4089 int keymlen;
4090 u32 action;
4091 u8 idx;
4092 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4093
4094 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4095 if (cmd == NULL)
4096 return -ENOMEM;
4097
4098 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4099 if (rc < 0)
4100 goto done;
4101
4102 idx = key->keyidx;
4103
4104 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
4105 action = MWL8K_ENCR_SET_KEY;
4106 else
4107 action = MWL8K_ENCR_SET_GROUP_KEY;
4108
4109 switch (key->cipher) {
4110 case WLAN_CIPHER_SUITE_WEP40:
4111 case WLAN_CIPHER_SUITE_WEP104:
4112 if (!mwl8k_vif->wep_key_conf[idx].enabled) {
4113 memcpy(mwl8k_vif->wep_key_conf[idx].key, key,
4114 sizeof(*key) + key->keylen);
4115 mwl8k_vif->wep_key_conf[idx].enabled = 1;
4116 }
4117
Yogesh Ashok Powar9b571e22011-05-04 17:22:16 +05304118 keymlen = key->keylen;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004119 action = MWL8K_ENCR_SET_KEY;
4120 break;
4121 case WLAN_CIPHER_SUITE_TKIP:
4122 keymlen = MAX_ENCR_KEY_LENGTH + 2 * MIC_KEY_LENGTH;
4123 break;
4124 case WLAN_CIPHER_SUITE_CCMP:
4125 keymlen = key->keylen;
4126 break;
4127 default:
4128 rc = -ENOTSUPP;
4129 goto done;
4130 }
4131
4132 memcpy(cmd->key_material, key->key, keymlen);
4133 cmd->action = cpu_to_le32(action);
4134
4135 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4136done:
4137 kfree(cmd);
4138
4139 return rc;
4140}
4141
4142static int mwl8k_cmd_encryption_remove_key(struct ieee80211_hw *hw,
4143 struct ieee80211_vif *vif,
4144 u8 *addr,
4145 struct ieee80211_key_conf *key)
4146{
4147 struct mwl8k_cmd_set_key *cmd;
4148 int rc;
4149 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4150
4151 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4152 if (cmd == NULL)
4153 return -ENOMEM;
4154
4155 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4156 if (rc < 0)
4157 goto done;
4158
4159 if (key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
Dan Carpenterd981e052012-01-17 10:33:31 +03004160 key->cipher == WLAN_CIPHER_SUITE_WEP104)
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004161 mwl8k_vif->wep_key_conf[key->keyidx].enabled = 0;
4162
4163 cmd->action = cpu_to_le32(MWL8K_ENCR_REMOVE_KEY);
4164
4165 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4166done:
4167 kfree(cmd);
4168
4169 return rc;
4170}
4171
4172static int mwl8k_set_key(struct ieee80211_hw *hw,
4173 enum set_key_cmd cmd_param,
4174 struct ieee80211_vif *vif,
4175 struct ieee80211_sta *sta,
4176 struct ieee80211_key_conf *key)
4177{
4178 int rc = 0;
4179 u8 encr_type;
4180 u8 *addr;
4181 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4182
4183 if (vif->type == NL80211_IFTYPE_STATION)
4184 return -EOPNOTSUPP;
4185
4186 if (sta == NULL)
Yogesh Ashok Powarff7e9f92012-01-27 16:08:27 +05304187 addr = vif->addr;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004188 else
4189 addr = sta->addr;
4190
4191 if (cmd_param == SET_KEY) {
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004192 rc = mwl8k_cmd_encryption_set_key(hw, vif, addr, key);
4193 if (rc)
4194 goto out;
4195
4196 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40)
4197 || (key->cipher == WLAN_CIPHER_SUITE_WEP104))
4198 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_WEP;
4199 else
4200 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED;
4201
4202 rc = mwl8k_cmd_update_encryption_enable(hw, vif, addr,
4203 encr_type);
4204 if (rc)
4205 goto out;
4206
4207 mwl8k_vif->is_hw_crypto_enabled = true;
4208
4209 } else {
4210 rc = mwl8k_cmd_encryption_remove_key(hw, vif, addr, key);
4211
4212 if (rc)
4213 goto out;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004214 }
4215out:
4216 return rc;
4217}
4218
4219/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004220 * CMD_UPDATE_STADB.
4221 */
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004222struct ewc_ht_info {
4223 __le16 control1;
4224 __le16 control2;
4225 __le16 control3;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004226} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004227
4228struct peer_capability_info {
4229 /* Peer type - AP vs. STA. */
4230 __u8 peer_type;
4231
4232 /* Basic 802.11 capabilities from assoc resp. */
4233 __le16 basic_caps;
4234
4235 /* Set if peer supports 802.11n high throughput (HT). */
4236 __u8 ht_support;
4237
4238 /* Valid if HT is supported. */
4239 __le16 ht_caps;
4240 __u8 extended_ht_caps;
4241 struct ewc_ht_info ewc_info;
4242
4243 /* Legacy rate table. Intersection of our rates and peer rates. */
4244 __u8 legacy_rates[12];
4245
4246 /* HT rate table. Intersection of our rates and peer rates. */
4247 __u8 ht_rates[16];
4248 __u8 pad[16];
4249
4250 /* If set, interoperability mode, no proprietary extensions. */
4251 __u8 interop;
4252 __u8 pad2;
4253 __u8 station_id;
4254 __le16 amsdu_enabled;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004255} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004256
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004257struct mwl8k_cmd_update_stadb {
4258 struct mwl8k_cmd_pkt header;
4259
4260 /* See STADB_ACTION_TYPE */
4261 __le32 action;
4262
4263 /* Peer MAC address */
4264 __u8 peer_addr[ETH_ALEN];
4265
4266 __le32 reserved;
4267
4268 /* Peer info - valid during add/update. */
4269 struct peer_capability_info peer_info;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004270} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004271
Lennert Buytenheka6804002010-01-04 21:55:42 +01004272#define MWL8K_STA_DB_MODIFY_ENTRY 1
4273#define MWL8K_STA_DB_DEL_ENTRY 2
4274
4275/* Peer Entry flags - used to define the type of the peer node */
4276#define MWL8K_PEER_TYPE_ACCESSPOINT 2
4277
4278static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw,
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004279 struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004280 struct ieee80211_sta *sta)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004281{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004282 struct mwl8k_cmd_update_stadb *cmd;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004283 struct peer_capability_info *p;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004284 u32 rates;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004285 int rc;
4286
4287 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4288 if (cmd == NULL)
4289 return -ENOMEM;
4290
4291 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4292 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka6804002010-01-04 21:55:42 +01004293 cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004294 memcpy(cmd->peer_addr, sta->addr, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004295
Lennert Buytenheka6804002010-01-04 21:55:42 +01004296 p = &cmd->peer_info;
4297 p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
4298 p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004299 p->ht_support = sta->ht_cap.ht_supported;
John W. Linvilleb6037422010-07-20 13:55:00 -04004300 p->ht_caps = cpu_to_le16(sta->ht_cap.cap);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004301 p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) |
4302 ((sta->ht_cap.ampdu_density & 7) << 2);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004303 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4304 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
4305 else
4306 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4307 legacy_rate_mask_to_array(p->legacy_rates, rates);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004308 memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16);
Lennert Buytenheka6804002010-01-04 21:55:42 +01004309 p->interop = 1;
4310 p->amsdu_enabled = 0;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004311
Lennert Buytenheka6804002010-01-04 21:55:42 +01004312 rc = mwl8k_post_cmd(hw, &cmd->header);
4313 kfree(cmd);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004314
Lennert Buytenheka6804002010-01-04 21:55:42 +01004315 return rc ? rc : p->station_id;
4316}
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004317
Lennert Buytenheka6804002010-01-04 21:55:42 +01004318static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw,
4319 struct ieee80211_vif *vif, u8 *addr)
4320{
4321 struct mwl8k_cmd_update_stadb *cmd;
4322 int rc;
4323
4324 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4325 if (cmd == NULL)
4326 return -ENOMEM;
4327
4328 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4329 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4330 cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY);
4331 memcpy(cmd->peer_addr, addr, ETH_ALEN);
4332
4333 rc = mwl8k_post_cmd(hw, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004334 kfree(cmd);
4335
4336 return rc;
4337}
4338
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004339
4340/*
4341 * Interrupt handling.
4342 */
4343static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
4344{
4345 struct ieee80211_hw *hw = dev_id;
4346 struct mwl8k_priv *priv = hw->priv;
4347 u32 status;
4348
4349 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004350 if (!status)
4351 return IRQ_NONE;
4352
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004353 if (status & MWL8K_A2H_INT_TX_DONE) {
4354 status &= ~MWL8K_A2H_INT_TX_DONE;
4355 tasklet_schedule(&priv->poll_tx_task);
4356 }
4357
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004358 if (status & MWL8K_A2H_INT_RX_READY) {
4359 status &= ~MWL8K_A2H_INT_RX_READY;
4360 tasklet_schedule(&priv->poll_rx_task);
4361 }
4362
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004363 if (status & MWL8K_A2H_INT_BA_WATCHDOG) {
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05304364 iowrite32(~MWL8K_A2H_INT_BA_WATCHDOG,
4365 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
4366
4367 atomic_inc(&priv->watchdog_event_pending);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004368 status &= ~MWL8K_A2H_INT_BA_WATCHDOG;
4369 ieee80211_queue_work(hw, &priv->watchdog_ba_handle);
4370 }
4371
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004372 if (status)
4373 iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004374
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004375 if (status & MWL8K_A2H_INT_OPC_DONE) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004376 if (priv->hostcmd_wait != NULL)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004377 complete(priv->hostcmd_wait);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004378 }
4379
4380 if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004381 if (!mutex_is_locked(&priv->fw_mutex) &&
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02004382 priv->radio_on && priv->pending_tx_pkts)
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004383 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004384 }
4385
4386 return IRQ_HANDLED;
4387}
4388
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004389static void mwl8k_tx_poll(unsigned long data)
4390{
4391 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4392 struct mwl8k_priv *priv = hw->priv;
4393 int limit;
4394 int i;
4395
4396 limit = 32;
4397
4398 spin_lock_bh(&priv->tx_lock);
4399
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004400 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004401 limit -= mwl8k_txq_reclaim(hw, i, limit, 0);
4402
4403 if (!priv->pending_tx_pkts && priv->tx_wait != NULL) {
4404 complete(priv->tx_wait);
4405 priv->tx_wait = NULL;
4406 }
4407
4408 spin_unlock_bh(&priv->tx_lock);
4409
4410 if (limit) {
4411 writel(~MWL8K_A2H_INT_TX_DONE,
4412 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4413 } else {
4414 tasklet_schedule(&priv->poll_tx_task);
4415 }
4416}
4417
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004418static void mwl8k_rx_poll(unsigned long data)
4419{
4420 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4421 struct mwl8k_priv *priv = hw->priv;
4422 int limit;
4423
4424 limit = 32;
4425 limit -= rxq_process(hw, 0, limit);
4426 limit -= rxq_refill(hw, 0, limit);
4427
4428 if (limit) {
4429 writel(~MWL8K_A2H_INT_RX_READY,
4430 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4431 } else {
4432 tasklet_schedule(&priv->poll_rx_task);
4433 }
4434}
4435
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004436
4437/*
4438 * Core driver operations.
4439 */
Thomas Huehn36323f82012-07-23 21:33:42 +02004440static void mwl8k_tx(struct ieee80211_hw *hw,
4441 struct ieee80211_tx_control *control,
4442 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004443{
4444 struct mwl8k_priv *priv = hw->priv;
4445 int index = skb_get_queue_mapping(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004446
Lennert Buytenhek9189c102010-01-12 13:47:32 +01004447 if (!priv->radio_on) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004448 wiphy_debug(hw->wiphy,
4449 "dropped TX frame since radio disabled\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004450 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01004451 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004452 }
4453
Thomas Huehn36323f82012-07-23 21:33:42 +02004454 mwl8k_txq_xmit(hw, index, control->sta, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004455}
4456
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004457static int mwl8k_start(struct ieee80211_hw *hw)
4458{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004459 struct mwl8k_priv *priv = hw->priv;
4460 int rc;
4461
Joe Perchesa0607fd2009-11-18 23:29:17 -08004462 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004463 IRQF_SHARED, MWL8K_NAME, hw);
4464 if (rc) {
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304465 priv->irq = -1;
Joe Perches5db55842010-08-11 19:11:19 -07004466 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004467 return -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004468 }
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304469 priv->irq = priv->pdev->irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004470
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004471 /* Enable TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004472 tasklet_enable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004473 tasklet_enable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004474
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004475 /* Enable interrupts */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02004476 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05304477 iowrite32(MWL8K_A2H_EVENTS,
4478 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004479
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004480 rc = mwl8k_fw_lock(hw);
4481 if (!rc) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004482 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004483
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004484 if (!priv->ap_fw) {
4485 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004486 rc = mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004487
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004488 if (!rc)
4489 rc = mwl8k_cmd_set_pre_scan(hw);
4490
4491 if (!rc)
4492 rc = mwl8k_cmd_set_post_scan(hw,
4493 "\x00\x00\x00\x00\x00\x00");
4494 }
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004495
4496 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004497 rc = mwl8k_cmd_set_rateadapt_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004498
4499 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004500 rc = mwl8k_cmd_set_wmm_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004501
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004502 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004503 }
4504
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004505 if (rc) {
4506 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
4507 free_irq(priv->pdev->irq, hw);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304508 priv->irq = -1;
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004509 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004510 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004511 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004512
4513 return rc;
4514}
4515
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004516static void mwl8k_stop(struct ieee80211_hw *hw)
4517{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004518 struct mwl8k_priv *priv = hw->priv;
4519 int i;
4520
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304521 if (!priv->hw_restart_in_progress)
4522 mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004523
4524 ieee80211_stop_queues(hw);
4525
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004526 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004527 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304528 if (priv->irq != -1) {
4529 free_irq(priv->pdev->irq, hw);
4530 priv->irq = -1;
4531 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004532
4533 /* Stop finalize join worker */
4534 cancel_work_sync(&priv->finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004535 cancel_work_sync(&priv->watchdog_ba_handle);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004536 if (priv->beacon_skb != NULL)
4537 dev_kfree_skb(priv->beacon_skb);
4538
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004539 /* Stop TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004540 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004541 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004542
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004543 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004544 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01004545 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004546}
4547
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004548static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image);
4549
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004550static int mwl8k_add_interface(struct ieee80211_hw *hw,
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004551 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004552{
4553 struct mwl8k_priv *priv = hw->priv;
4554 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004555 u32 macids_supported;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004556 int macid, rc;
4557 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004558
4559 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004560 * Reject interface creation if sniffer mode is active, as
4561 * STA operation is mutually exclusive with hardware sniffer
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004562 * mode. (Sniffer mode is only used on STA firmware.)
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004563 */
4564 if (priv->sniffer_enabled) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004565 wiphy_info(hw->wiphy,
4566 "unable to create STA interface because sniffer mode is enabled\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004567 return -EINVAL;
4568 }
4569
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004570 di = priv->device_info;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004571 switch (vif->type) {
4572 case NL80211_IFTYPE_AP:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004573 if (!priv->ap_fw && di->fw_image_ap) {
4574 /* we must load the ap fw to meet this request */
4575 if (!list_empty(&priv->vif_list))
4576 return -EBUSY;
4577 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4578 if (rc)
4579 return rc;
4580 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004581 macids_supported = priv->ap_macids_supported;
4582 break;
4583 case NL80211_IFTYPE_STATION:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004584 if (priv->ap_fw && di->fw_image_sta) {
4585 /* we must load the sta fw to meet this request */
4586 if (!list_empty(&priv->vif_list))
4587 return -EBUSY;
4588 rc = mwl8k_reload_firmware(hw, di->fw_image_sta);
4589 if (rc)
4590 return rc;
4591 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004592 macids_supported = priv->sta_macids_supported;
4593 break;
4594 default:
4595 return -EINVAL;
4596 }
4597
4598 macid = ffs(macids_supported & ~priv->macids_used);
4599 if (!macid--)
4600 return -EBUSY;
4601
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004602 /* Setup driver private area. */
Johannes Berg1ed32e42009-12-23 13:15:45 +01004603 mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004604 memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004605 mwl8k_vif->vif = vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004606 mwl8k_vif->macid = macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004607 mwl8k_vif->seqno = 0;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004608 memcpy(mwl8k_vif->bssid, vif->addr, ETH_ALEN);
4609 mwl8k_vif->is_hw_crypto_enabled = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004610
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004611 /* Set the mac address. */
4612 mwl8k_cmd_set_mac_addr(hw, vif, vif->addr);
4613
4614 if (priv->ap_fw)
4615 mwl8k_cmd_set_new_stn_add_self(hw, vif);
4616
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004617 priv->macids_used |= 1 << mwl8k_vif->macid;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004618 list_add_tail(&mwl8k_vif->list, &priv->vif_list);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004619
4620 return 0;
4621}
4622
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304623static void mwl8k_remove_vif(struct mwl8k_priv *priv, struct mwl8k_vif *vif)
4624{
4625 /* Has ieee80211_restart_hw re-added the removed interfaces? */
4626 if (!priv->macids_used)
4627 return;
4628
4629 priv->macids_used &= ~(1 << vif->macid);
4630 list_del(&vif->list);
4631}
4632
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004633static void mwl8k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004634 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004635{
4636 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004637 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004638
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004639 if (priv->ap_fw)
4640 mwl8k_cmd_set_new_stn_del(hw, vif, vif->addr);
4641
Yogesh Ashok Powar197a4e42012-02-01 16:19:54 +05304642 mwl8k_cmd_del_mac_addr(hw, vif, vif->addr);
Lennert Buytenhek32060e12009-10-22 20:20:04 +02004643
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05304644 mwl8k_remove_vif(priv, mwl8k_vif);
4645}
4646
4647static void mwl8k_hw_restart_work(struct work_struct *work)
4648{
4649 struct mwl8k_priv *priv =
4650 container_of(work, struct mwl8k_priv, fw_reload);
4651 struct ieee80211_hw *hw = priv->hw;
4652 struct mwl8k_device_info *di;
4653 int rc;
4654
4655 /* If some command is waiting for a response, clear it */
4656 if (priv->hostcmd_wait != NULL) {
4657 complete(priv->hostcmd_wait);
4658 priv->hostcmd_wait = NULL;
4659 }
4660
4661 priv->hw_restart_owner = current;
4662 di = priv->device_info;
4663 mwl8k_fw_lock(hw);
4664
4665 if (priv->ap_fw)
4666 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4667 else
4668 rc = mwl8k_reload_firmware(hw, di->fw_image_sta);
4669
4670 if (rc)
4671 goto fail;
4672
4673 priv->hw_restart_owner = NULL;
4674 priv->hw_restart_in_progress = false;
4675
4676 /*
4677 * This unlock will wake up the queues and
4678 * also opens the command path for other
4679 * commands
4680 */
4681 mwl8k_fw_unlock(hw);
4682
4683 ieee80211_restart_hw(hw);
4684
4685 wiphy_err(hw->wiphy, "Firmware restarted successfully\n");
4686
4687 return;
4688fail:
4689 mwl8k_fw_unlock(hw);
4690
4691 wiphy_err(hw->wiphy, "Firmware restart failed\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004692}
4693
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004694static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004695{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004696 struct ieee80211_conf *conf = &hw->conf;
4697 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004698 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004699
Lennert Buytenhek7595d672009-08-17 23:59:40 +02004700 if (conf->flags & IEEE80211_CONF_IDLE) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004701 mwl8k_cmd_radio_disable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004702 return 0;
Lennert Buytenhek7595d672009-08-17 23:59:40 +02004703 }
4704
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004705 rc = mwl8k_fw_lock(hw);
4706 if (rc)
4707 return rc;
4708
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004709 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004710 if (rc)
4711 goto out;
4712
Lennert Buytenhek610677d2010-01-04 21:56:46 +01004713 rc = mwl8k_cmd_set_rf_channel(hw, conf);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004714 if (rc)
4715 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004716
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004717 if (conf->power_level > 18)
4718 conf->power_level = 18;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004719
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004720 if (priv->ap_fw) {
Nishant Sarmukadam03217082011-04-05 14:18:09 +05304721
4722 if (conf->flags & IEEE80211_CONF_CHANGE_POWER) {
4723 rc = mwl8k_cmd_tx_power(hw, conf, conf->power_level);
4724 if (rc)
4725 goto out;
4726 }
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004727
Nishant Sarmukadamda62b762011-02-17 14:45:16 -08004728 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x3);
4729 if (rc)
4730 wiphy_warn(hw->wiphy, "failed to set # of RX antennas");
4731 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7);
4732 if (rc)
4733 wiphy_warn(hw->wiphy, "failed to set # of TX antennas");
4734
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004735 } else {
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004736 rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level);
4737 if (rc)
4738 goto out;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004739 rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7);
4740 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004741
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004742out:
4743 mwl8k_fw_unlock(hw);
4744
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004745 return rc;
4746}
4747
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004748static void
4749mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4750 struct ieee80211_bss_conf *info, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004751{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004752 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304753 u32 ap_legacy_rates = 0;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004754 u8 ap_mcs_rates[16];
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004755 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004756
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004757 if (mwl8k_fw_lock(hw))
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004758 return;
4759
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004760 /*
4761 * No need to capture a beacon if we're no longer associated.
4762 */
4763 if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc)
4764 priv->capture_beacon = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004765
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004766 /*
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004767 * Get the AP's legacy and MCS rates.
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004768 */
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004769 if (vif->bss_conf.assoc) {
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004770 struct ieee80211_sta *ap;
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004771
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004772 rcu_read_lock();
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004773
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004774 ap = ieee80211_find_sta(vif, vif->bss_conf.bssid);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004775 if (ap == NULL) {
4776 rcu_read_unlock();
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004777 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004778 }
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004779
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004780 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) {
4781 ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ];
4782 } else {
4783 ap_legacy_rates =
4784 ap->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4785 }
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004786 memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004787
4788 rcu_read_unlock();
4789 }
4790
4791 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc) {
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004792 rc = mwl8k_cmd_set_rate(hw, vif, ap_legacy_rates, ap_mcs_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004793 if (rc)
4794 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004795
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01004796 rc = mwl8k_cmd_use_fixed_rate_sta(hw);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004797 if (rc)
4798 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004799 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004800
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004801 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004802 rc = mwl8k_set_radio_preamble(hw,
4803 vif->bss_conf.use_short_preamble);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004804 if (rc)
4805 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004806 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004807
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004808 if (changed & BSS_CHANGED_ERP_SLOT) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004809 rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004810 if (rc)
4811 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004812 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004813
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004814 if (vif->bss_conf.assoc &&
4815 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_ERP_CTS_PROT |
4816 BSS_CHANGED_HT))) {
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004817 rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004818 if (rc)
4819 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004820 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004821
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004822 if (vif->bss_conf.assoc &&
4823 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004824 /*
4825 * Finalize the join. Tell rx handler to process
4826 * next beacon from our BSSID.
4827 */
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01004828 memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004829 priv->capture_beacon = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004830 }
4831
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004832out:
4833 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004834}
4835
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004836static void
4837mwl8k_bss_info_changed_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4838 struct ieee80211_bss_conf *info, u32 changed)
4839{
4840 int rc;
4841
4842 if (mwl8k_fw_lock(hw))
4843 return;
4844
4845 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
4846 rc = mwl8k_set_radio_preamble(hw,
4847 vif->bss_conf.use_short_preamble);
4848 if (rc)
4849 goto out;
4850 }
4851
4852 if (changed & BSS_CHANGED_BASIC_RATES) {
4853 int idx;
4854 int rate;
4855
4856 /*
4857 * Use lowest supported basic rate for multicasts
4858 * and management frames (such as probe responses --
4859 * beacons will always go out at 1 Mb/s).
4860 */
4861 idx = ffs(vif->bss_conf.basic_rates);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004862 if (idx)
4863 idx--;
4864
4865 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4866 rate = mwl8k_rates_24[idx].hw_value;
4867 else
4868 rate = mwl8k_rates_50[idx].hw_value;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004869
4870 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
4871 }
4872
4873 if (changed & (BSS_CHANGED_BEACON_INT | BSS_CHANGED_BEACON)) {
4874 struct sk_buff *skb;
4875
4876 skb = ieee80211_beacon_get(hw, vif);
4877 if (skb != NULL) {
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004878 mwl8k_cmd_set_beacon(hw, vif, skb->data, skb->len);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004879 kfree_skb(skb);
4880 }
4881 }
4882
4883 if (changed & BSS_CHANGED_BEACON_ENABLED)
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004884 mwl8k_cmd_bss_start(hw, vif, info->enable_beacon);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004885
4886out:
4887 mwl8k_fw_unlock(hw);
4888}
4889
4890static void
4891mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4892 struct ieee80211_bss_conf *info, u32 changed)
4893{
4894 struct mwl8k_priv *priv = hw->priv;
4895
4896 if (!priv->ap_fw)
4897 mwl8k_bss_info_changed_sta(hw, vif, info, changed);
4898 else
4899 mwl8k_bss_info_changed_ap(hw, vif, info, changed);
4900}
4901
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02004902static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw,
Jiri Pirko22bedad32010-04-01 21:22:57 +00004903 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02004904{
4905 struct mwl8k_cmd_pkt *cmd;
4906
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004907 /*
4908 * Synthesize and return a command packet that programs the
4909 * hardware multicast address filter. At this point we don't
4910 * know whether FIF_ALLMULTI is being requested, but if it is,
4911 * we'll end up throwing this packet away and creating a new
4912 * one in mwl8k_configure_filter().
4913 */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004914 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_list);
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02004915
4916 return (unsigned long)cmd;
4917}
4918
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004919static int
4920mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw,
4921 unsigned int changed_flags,
4922 unsigned int *total_flags)
4923{
4924 struct mwl8k_priv *priv = hw->priv;
4925
4926 /*
4927 * Hardware sniffer mode is mutually exclusive with STA
4928 * operation, so refuse to enable sniffer mode if a STA
4929 * interface is active.
4930 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004931 if (!list_empty(&priv->vif_list)) {
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004932 if (net_ratelimit())
Joe Perchesc96c31e2010-07-26 14:39:58 -07004933 wiphy_info(hw->wiphy,
4934 "not enabling sniffer mode because STA interface is active\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004935 return 0;
4936 }
4937
4938 if (!priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004939 if (mwl8k_cmd_enable_sniffer(hw, 1))
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004940 return 0;
4941 priv->sniffer_enabled = true;
4942 }
4943
4944 *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI |
4945 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL |
4946 FIF_OTHER_BSS;
4947
4948 return 1;
4949}
4950
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004951static struct mwl8k_vif *mwl8k_first_vif(struct mwl8k_priv *priv)
4952{
4953 if (!list_empty(&priv->vif_list))
4954 return list_entry(priv->vif_list.next, struct mwl8k_vif, list);
4955
4956 return NULL;
4957}
4958
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004959static void mwl8k_configure_filter(struct ieee80211_hw *hw,
4960 unsigned int changed_flags,
4961 unsigned int *total_flags,
4962 u64 multicast)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004963{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004964 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004965 struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast;
4966
4967 /*
Lennert Buytenhekc0adae22009-10-22 20:21:36 +02004968 * AP firmware doesn't allow fine-grained control over
4969 * the receive filter.
4970 */
4971 if (priv->ap_fw) {
4972 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
4973 kfree(cmd);
4974 return;
4975 }
4976
4977 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004978 * Enable hardware sniffer mode if FIF_CONTROL or
4979 * FIF_OTHER_BSS is requested.
4980 */
4981 if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) &&
4982 mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) {
4983 kfree(cmd);
4984 return;
4985 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004986
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004987 /* Clear unsupported feature flags */
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004988 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004989
Lennert Buytenhek90852f72010-01-02 10:31:42 +01004990 if (mwl8k_fw_lock(hw)) {
4991 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004992 return;
Lennert Buytenhek90852f72010-01-02 10:31:42 +01004993 }
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004994
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004995 if (priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004996 mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004997 priv->sniffer_enabled = false;
4998 }
4999
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005000 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005001 if (*total_flags & FIF_BCN_PRBRESP_PROMISC) {
5002 /*
5003 * Disable the BSS filter.
5004 */
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005005 mwl8k_cmd_set_pre_scan(hw);
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005006 } else {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005007 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01005008 const u8 *bssid;
Lennert Buytenheka94cc972009-08-03 21:58:57 +02005009
Lennert Buytenhek77165d82009-10-22 20:19:53 +02005010 /*
5011 * Enable the BSS filter.
5012 *
5013 * If there is an active STA interface, use that
5014 * interface's BSSID, otherwise use a dummy one
5015 * (where the OUI part needs to be nonzero for
5016 * the BSSID to be accepted by POST_SCAN).
5017 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005018 mwl8k_vif = mwl8k_first_vif(priv);
5019 if (mwl8k_vif != NULL)
5020 bssid = mwl8k_vif->vif->bss_conf.bssid;
5021 else
5022 bssid = "\x01\x00\x00\x00\x00\x00";
Lennert Buytenheka94cc972009-08-03 21:58:57 +02005023
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005024 mwl8k_cmd_set_post_scan(hw, bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005025 }
5026 }
5027
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005028 /*
5029 * If FIF_ALLMULTI is being requested, throw away the command
5030 * packet that ->prepare_multicast() built and replace it with
5031 * a command packet that enables reception of all multicast
5032 * packets.
5033 */
5034 if (*total_flags & FIF_ALLMULTI) {
5035 kfree(cmd);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005036 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, NULL);
Lennert Buytenhek447ced02009-10-22 20:19:50 +02005037 }
5038
5039 if (cmd != NULL) {
5040 mwl8k_post_cmd(hw, cmd);
5041 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005042 }
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02005043
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02005044 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005045}
5046
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005047static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
5048{
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01005049 return mwl8k_cmd_set_rts_threshold(hw, value);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005050}
5051
Johannes Berg4a6967b2010-02-19 19:18:37 +01005052static int mwl8k_sta_remove(struct ieee80211_hw *hw,
5053 struct ieee80211_vif *vif,
5054 struct ieee80211_sta *sta)
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005055{
5056 struct mwl8k_priv *priv = hw->priv;
5057
Johannes Berg4a6967b2010-02-19 19:18:37 +01005058 if (priv->ap_fw)
5059 return mwl8k_cmd_set_new_stn_del(hw, vif, sta->addr);
5060 else
5061 return mwl8k_cmd_update_stadb_del(hw, vif, sta->addr);
5062}
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005063
Johannes Berg4a6967b2010-02-19 19:18:37 +01005064static int mwl8k_sta_add(struct ieee80211_hw *hw,
5065 struct ieee80211_vif *vif,
5066 struct ieee80211_sta *sta)
5067{
5068 struct mwl8k_priv *priv = hw->priv;
5069 int ret;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005070 int i;
5071 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
5072 struct ieee80211_key_conf *key;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005073
Johannes Berg4a6967b2010-02-19 19:18:37 +01005074 if (!priv->ap_fw) {
5075 ret = mwl8k_cmd_update_stadb_add(hw, vif, sta);
5076 if (ret >= 0) {
5077 MWL8K_STA(sta)->peer_id = ret;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07005078 if (sta->ht_cap.ht_supported)
5079 MWL8K_STA(sta)->is_ampdu_allowed = true;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005080 ret = 0;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005081 }
Johannes Berg4a6967b2010-02-19 19:18:37 +01005082
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08005083 } else {
5084 ret = mwl8k_cmd_set_new_stn_add(hw, vif, sta);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005085 }
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01005086
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08005087 for (i = 0; i < NUM_WEP_KEYS; i++) {
5088 key = IEEE80211_KEY_CONF(mwl8k_vif->wep_key_conf[i].key);
5089 if (mwl8k_vif->wep_key_conf[i].enabled)
5090 mwl8k_set_key(hw, SET_KEY, vif, sta, key);
5091 }
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005092 return ret;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01005093}
5094
Eliad Peller8a3a3c82011-10-02 10:15:52 +02005095static int mwl8k_conf_tx(struct ieee80211_hw *hw,
5096 struct ieee80211_vif *vif, u16 queue,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005097 const struct ieee80211_tx_queue_params *params)
5098{
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005099 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005100 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005101
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005102 rc = mwl8k_fw_lock(hw);
5103 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005104 BUG_ON(queue > MWL8K_TX_WMM_QUEUES - 1);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005105 memcpy(&priv->wmm_params[queue], params, sizeof(*params));
5106
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005107 if (!priv->wmm_enabled)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005108 rc = mwl8k_cmd_set_wmm_mode(hw, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005109
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005110 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005111 int q = MWL8K_TX_WMM_QUEUES - 1 - queue;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005112 rc = mwl8k_cmd_set_edca_params(hw, q,
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005113 params->cw_min,
5114 params->cw_max,
5115 params->aifs,
5116 params->txop);
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08005117 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005118
5119 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005120 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02005121
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005122 return rc;
5123}
5124
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005125static int mwl8k_get_stats(struct ieee80211_hw *hw,
5126 struct ieee80211_low_level_stats *stats)
5127{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01005128 return mwl8k_cmd_get_stat(hw, stats);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005129}
5130
John W. Linville0d462bb2010-07-28 14:04:24 -04005131static int mwl8k_get_survey(struct ieee80211_hw *hw, int idx,
5132 struct survey_info *survey)
5133{
5134 struct mwl8k_priv *priv = hw->priv;
5135 struct ieee80211_conf *conf = &hw->conf;
5136
5137 if (idx != 0)
5138 return -ENOENT;
5139
5140 survey->channel = conf->channel;
5141 survey->filled = SURVEY_INFO_NOISE_DBM;
5142 survey->noise = priv->noise;
5143
5144 return 0;
5145}
5146
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005147#define MAX_AMPDU_ATTEMPTS 5
5148
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005149static int
5150mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5151 enum ieee80211_ampdu_mlme_action action,
Johannes Berg0b01f032011-01-18 13:51:05 +01005152 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
5153 u8 buf_size)
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005154{
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005155
5156 int i, rc = 0;
5157 struct mwl8k_priv *priv = hw->priv;
5158 struct mwl8k_ampdu_stream *stream;
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305159 u8 *addr = sta->addr, idx;
Yogesh Ashok Powarfd712f52012-11-06 19:22:35 +05305160 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005161
5162 if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
5163 return -ENOTSUPP;
5164
5165 spin_lock(&priv->stream_lock);
5166 stream = mwl8k_lookup_stream(hw, addr, tid);
5167
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005168 switch (action) {
5169 case IEEE80211_AMPDU_RX_START:
5170 case IEEE80211_AMPDU_RX_STOP:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005171 break;
5172 case IEEE80211_AMPDU_TX_START:
5173 /* By the time we get here the hw queues may contain outgoing
5174 * packets for this RA/TID that are not part of this BA
5175 * session. The hw will assign sequence numbers to these
5176 * packets as they go out. So if we query the hw for its next
5177 * sequence number and use that for the SSN here, it may end up
5178 * being wrong, which will lead to sequence number mismatch at
5179 * the recipient. To avoid this, we reset the sequence number
5180 * to O for the first MPDU in this BA stream.
5181 */
5182 *ssn = 0;
5183 if (stream == NULL) {
5184 /* This means that somebody outside this driver called
5185 * ieee80211_start_tx_ba_session. This is unexpected
5186 * because we do our own rate control. Just warn and
5187 * move on.
5188 */
5189 wiphy_warn(hw->wiphy, "Unexpected call to %s. "
5190 "Proceeding anyway.\n", __func__);
5191 stream = mwl8k_add_stream(hw, sta, tid);
5192 }
5193 if (stream == NULL) {
5194 wiphy_debug(hw->wiphy, "no free AMPDU streams\n");
5195 rc = -EBUSY;
5196 break;
5197 }
5198 stream->state = AMPDU_STREAM_IN_PROGRESS;
5199
5200 /* Release the lock before we do the time consuming stuff */
5201 spin_unlock(&priv->stream_lock);
5202 for (i = 0; i < MAX_AMPDU_ATTEMPTS; i++) {
Yogesh Ashok Powarfd712f52012-11-06 19:22:35 +05305203
5204 /* Check if link is still valid */
5205 if (!sta_info->is_ampdu_allowed) {
5206 spin_lock(&priv->stream_lock);
5207 mwl8k_remove_stream(hw, stream);
5208 spin_unlock(&priv->stream_lock);
5209 return -EBUSY;
5210 }
5211
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05305212 rc = mwl8k_check_ba(hw, stream, vif);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005213
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305214 /* If HW restart is in progress mwl8k_post_cmd will
5215 * return -EBUSY. Avoid retrying mwl8k_check_ba in
5216 * such cases
5217 */
5218 if (!rc || rc == -EBUSY)
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005219 break;
5220 /*
5221 * HW queues take time to be flushed, give them
5222 * sufficient time
5223 */
5224
5225 msleep(1000);
5226 }
5227 spin_lock(&priv->stream_lock);
5228 if (rc) {
5229 wiphy_err(hw->wiphy, "Stream for tid %d busy after %d"
5230 " attempts\n", tid, MAX_AMPDU_ATTEMPTS);
5231 mwl8k_remove_stream(hw, stream);
5232 rc = -EBUSY;
5233 break;
5234 }
5235 ieee80211_start_tx_ba_cb_irqsafe(vif, addr, tid);
5236 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02005237 case IEEE80211_AMPDU_TX_STOP_CONT:
5238 case IEEE80211_AMPDU_TX_STOP_FLUSH:
5239 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305240 if (stream) {
5241 if (stream->state == AMPDU_STREAM_ACTIVE) {
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305242 idx = stream->idx;
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305243 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305244 mwl8k_destroy_ba(hw, idx);
Yogesh Ashok Powareca107f2011-12-20 11:37:08 +05305245 spin_lock(&priv->stream_lock);
5246 }
5247 mwl8k_remove_stream(hw, stream);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005248 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005249 ieee80211_stop_tx_ba_cb_irqsafe(vif, addr, tid);
5250 break;
5251 case IEEE80211_AMPDU_TX_OPERATIONAL:
5252 BUG_ON(stream == NULL);
5253 BUG_ON(stream->state != AMPDU_STREAM_IN_PROGRESS);
5254 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powarf95275c2012-11-08 19:10:44 +05305255 rc = mwl8k_create_ba(hw, stream, buf_size, vif);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005256 spin_lock(&priv->stream_lock);
5257 if (!rc)
5258 stream->state = AMPDU_STREAM_ACTIVE;
5259 else {
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305260 idx = stream->idx;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005261 spin_unlock(&priv->stream_lock);
Yogesh Ashok Powar07f6dda2013-01-03 13:23:33 +05305262 mwl8k_destroy_ba(hw, idx);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005263 spin_lock(&priv->stream_lock);
5264 wiphy_debug(hw->wiphy,
5265 "Failed adding stream for sta %pM tid %d\n",
5266 addr, tid);
5267 mwl8k_remove_stream(hw, stream);
5268 }
5269 break;
5270
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005271 default:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005272 rc = -ENOTSUPP;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005273 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005274
5275 spin_unlock(&priv->stream_lock);
5276 return rc;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005277}
5278
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005279static const struct ieee80211_ops mwl8k_ops = {
5280 .tx = mwl8k_tx,
5281 .start = mwl8k_start,
5282 .stop = mwl8k_stop,
5283 .add_interface = mwl8k_add_interface,
5284 .remove_interface = mwl8k_remove_interface,
5285 .config = mwl8k_config,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005286 .bss_info_changed = mwl8k_bss_info_changed,
Johannes Berg3ac64be2009-08-17 16:16:53 +02005287 .prepare_multicast = mwl8k_prepare_multicast,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005288 .configure_filter = mwl8k_configure_filter,
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005289 .set_key = mwl8k_set_key,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005290 .set_rts_threshold = mwl8k_set_rts_threshold,
Johannes Berg4a6967b2010-02-19 19:18:37 +01005291 .sta_add = mwl8k_sta_add,
5292 .sta_remove = mwl8k_sta_remove,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005293 .conf_tx = mwl8k_conf_tx,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005294 .get_stats = mwl8k_get_stats,
John W. Linville0d462bb2010-07-28 14:04:24 -04005295 .get_survey = mwl8k_get_survey,
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005296 .ampdu_action = mwl8k_ampdu_action,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005297};
5298
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005299static void mwl8k_finalize_join_worker(struct work_struct *work)
5300{
5301 struct mwl8k_priv *priv =
5302 container_of(work, struct mwl8k_priv, finalize_join_worker);
5303 struct sk_buff *skb = priv->beacon_skb;
Johannes Berg56007a02010-01-26 14:19:52 +01005304 struct ieee80211_mgmt *mgmt = (void *)skb->data;
5305 int len = skb->len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
5306 const u8 *tim = cfg80211_find_ie(WLAN_EID_TIM,
5307 mgmt->u.beacon.variable, len);
5308 int dtim_period = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005309
Johannes Berg56007a02010-01-26 14:19:52 +01005310 if (tim && tim[1] >= 2)
5311 dtim_period = tim[3];
5312
5313 mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len, dtim_period);
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005314
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005315 dev_kfree_skb(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005316 priv->beacon_skb = NULL;
5317}
5318
John W. Linvillebcb628d2009-11-06 16:40:16 -05005319enum {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005320 MWL8363 = 0,
5321 MWL8687,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005322 MWL8366,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02005323};
5324
Yogesh Ashok Powarc2f2e202013-01-03 13:24:44 +05305325#define MWL8K_8366_AP_FW_API 3
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005326#define _MWL8K_8366_AP_FW(api) "mwl8k/fmimage_8366_ap-" #api ".fw"
5327#define MWL8K_8366_AP_FW(api) _MWL8K_8366_AP_FW(api)
5328
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05005329static struct mwl8k_device_info mwl8k_info_tbl[] = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005330 [MWL8363] = {
5331 .part_name = "88w8363",
5332 .helper_image = "mwl8k/helper_8363.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005333 .fw_image_sta = "mwl8k/fmimage_8363.fw",
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005334 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005335 [MWL8687] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005336 .part_name = "88w8687",
5337 .helper_image = "mwl8k/helper_8687.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005338 .fw_image_sta = "mwl8k/fmimage_8687.fw",
John W. Linvillebcb628d2009-11-06 16:40:16 -05005339 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005340 [MWL8366] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005341 .part_name = "88w8366",
5342 .helper_image = "mwl8k/helper_8366.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005343 .fw_image_sta = "mwl8k/fmimage_8366.fw",
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005344 .fw_image_ap = MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API),
5345 .fw_api_ap = MWL8K_8366_AP_FW_API,
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01005346 .ap_rxd_ops = &rxd_8366_ap_ops,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005347 },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005348};
5349
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005350MODULE_FIRMWARE("mwl8k/helper_8363.fw");
5351MODULE_FIRMWARE("mwl8k/fmimage_8363.fw");
5352MODULE_FIRMWARE("mwl8k/helper_8687.fw");
5353MODULE_FIRMWARE("mwl8k/fmimage_8687.fw");
5354MODULE_FIRMWARE("mwl8k/helper_8366.fw");
5355MODULE_FIRMWARE("mwl8k/fmimage_8366.fw");
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005356MODULE_FIRMWARE(MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API));
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005357
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005358static DEFINE_PCI_DEVICE_TABLE(mwl8k_pci_id_table) = {
Benjamin Larssone5868ba2010-03-19 01:46:10 +01005359 { PCI_VDEVICE(MARVELL, 0x2a0a), .driver_data = MWL8363, },
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005360 { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, },
5361 { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005362 { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, },
5363 { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, },
5364 { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, },
Lennert Buytenhekca665272010-01-12 13:47:53 +01005365 { PCI_VDEVICE(MARVELL, 0x2a43), .driver_data = MWL8366, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005366 { },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005367};
5368MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table);
5369
Brian Cavagnolo99020472010-11-12 17:23:52 -08005370static int mwl8k_request_alt_fw(struct mwl8k_priv *priv)
5371{
5372 int rc;
5373 printk(KERN_ERR "%s: Error requesting preferred fw %s.\n"
5374 "Trying alternative firmware %s\n", pci_name(priv->pdev),
5375 priv->fw_pref, priv->fw_alt);
5376 rc = mwl8k_request_fw(priv, priv->fw_alt, &priv->fw_ucode, true);
5377 if (rc) {
5378 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5379 pci_name(priv->pdev), priv->fw_alt);
5380 return rc;
5381 }
5382 return 0;
5383}
5384
5385static int mwl8k_firmware_load_success(struct mwl8k_priv *priv);
5386static void mwl8k_fw_state_machine(const struct firmware *fw, void *context)
5387{
5388 struct mwl8k_priv *priv = context;
5389 struct mwl8k_device_info *di = priv->device_info;
5390 int rc;
5391
5392 switch (priv->fw_state) {
5393 case FW_STATE_INIT:
5394 if (!fw) {
5395 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
5396 pci_name(priv->pdev), di->helper_image);
5397 goto fail;
5398 }
5399 priv->fw_helper = fw;
5400 rc = mwl8k_request_fw(priv, priv->fw_pref, &priv->fw_ucode,
5401 true);
5402 if (rc && priv->fw_alt) {
5403 rc = mwl8k_request_alt_fw(priv);
5404 if (rc)
5405 goto fail;
5406 priv->fw_state = FW_STATE_LOADING_ALT;
5407 } else if (rc)
5408 goto fail;
5409 else
5410 priv->fw_state = FW_STATE_LOADING_PREF;
5411 break;
5412
5413 case FW_STATE_LOADING_PREF:
5414 if (!fw) {
5415 if (priv->fw_alt) {
5416 rc = mwl8k_request_alt_fw(priv);
5417 if (rc)
5418 goto fail;
5419 priv->fw_state = FW_STATE_LOADING_ALT;
5420 } else
5421 goto fail;
5422 } else {
5423 priv->fw_ucode = fw;
5424 rc = mwl8k_firmware_load_success(priv);
5425 if (rc)
5426 goto fail;
5427 else
5428 complete(&priv->firmware_loading_complete);
5429 }
5430 break;
5431
5432 case FW_STATE_LOADING_ALT:
5433 if (!fw) {
5434 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5435 pci_name(priv->pdev), di->helper_image);
5436 goto fail;
5437 }
5438 priv->fw_ucode = fw;
5439 rc = mwl8k_firmware_load_success(priv);
5440 if (rc)
5441 goto fail;
5442 else
5443 complete(&priv->firmware_loading_complete);
5444 break;
5445
5446 default:
5447 printk(KERN_ERR "%s: Unexpected firmware loading state: %d\n",
5448 MWL8K_NAME, priv->fw_state);
5449 BUG_ON(1);
5450 }
5451
5452 return;
5453
5454fail:
5455 priv->fw_state = FW_STATE_ERROR;
5456 complete(&priv->firmware_loading_complete);
5457 device_release_driver(&priv->pdev->dev);
5458 mwl8k_release_firmware(priv);
5459}
5460
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305461#define MAX_RESTART_ATTEMPTS 1
Brian Cavagnolo99020472010-11-12 17:23:52 -08005462static int mwl8k_init_firmware(struct ieee80211_hw *hw, char *fw_image,
5463 bool nowait)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005464{
5465 struct mwl8k_priv *priv = hw->priv;
5466 int rc;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305467 int count = MAX_RESTART_ATTEMPTS;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005468
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305469retry:
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005470 /* Reset firmware and hardware */
5471 mwl8k_hw_reset(priv);
5472
5473 /* Ask userland hotplug daemon for the device firmware */
Brian Cavagnolo99020472010-11-12 17:23:52 -08005474 rc = mwl8k_request_firmware(priv, fw_image, nowait);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005475 if (rc) {
5476 wiphy_err(hw->wiphy, "Firmware files not found\n");
5477 return rc;
5478 }
5479
Brian Cavagnolo99020472010-11-12 17:23:52 -08005480 if (nowait)
5481 return rc;
5482
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005483 /* Load firmware into hardware */
5484 rc = mwl8k_load_firmware(hw);
5485 if (rc)
5486 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5487
5488 /* Reclaim memory once firmware is successfully loaded */
5489 mwl8k_release_firmware(priv);
5490
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305491 if (rc && count) {
5492 /* FW did not start successfully;
5493 * lets try one more time
5494 */
5495 count--;
5496 wiphy_err(hw->wiphy, "Trying to reload the firmware again\n");
5497 msleep(20);
5498 goto retry;
5499 }
5500
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005501 return rc;
5502}
5503
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005504static int mwl8k_init_txqs(struct ieee80211_hw *hw)
5505{
5506 struct mwl8k_priv *priv = hw->priv;
5507 int rc = 0;
5508 int i;
5509
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005510 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005511 rc = mwl8k_txq_init(hw, i);
5512 if (rc)
5513 break;
5514 if (priv->ap_fw)
5515 iowrite32(priv->txq[i].txd_dma,
5516 priv->sram + priv->txq_offset[i]);
5517 }
5518 return rc;
5519}
5520
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005521/* initialize hw after successfully loading a firmware image */
5522static int mwl8k_probe_hw(struct ieee80211_hw *hw)
5523{
5524 struct mwl8k_priv *priv = hw->priv;
5525 int rc = 0;
5526 int i;
5527
5528 if (priv->ap_fw) {
5529 priv->rxd_ops = priv->device_info->ap_rxd_ops;
5530 if (priv->rxd_ops == NULL) {
5531 wiphy_err(hw->wiphy,
5532 "Driver does not have AP firmware image support for this hardware\n");
5533 goto err_stop_firmware;
5534 }
5535 } else {
5536 priv->rxd_ops = &rxd_sta_ops;
5537 }
5538
5539 priv->sniffer_enabled = false;
5540 priv->wmm_enabled = false;
5541 priv->pending_tx_pkts = 0;
Yogesh Ashok Powarc27a54d2013-01-03 13:24:19 +05305542 atomic_set(&priv->watchdog_event_pending, 0);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005543
5544 rc = mwl8k_rxq_init(hw, 0);
5545 if (rc)
5546 goto err_stop_firmware;
5547 rxq_refill(hw, 0, INT_MAX);
5548
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005549 /* For the sta firmware, we need to know the dma addresses of tx queues
5550 * before sending MWL8K_CMD_GET_HW_SPEC. So we must initialize them
5551 * prior to issuing this command. But for the AP case, we learn the
5552 * total number of queues from the result CMD_GET_HW_SPEC, so for this
5553 * case we must initialize the tx queues after.
5554 */
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07005555 priv->num_ampdu_queues = 0;
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005556 if (!priv->ap_fw) {
5557 rc = mwl8k_init_txqs(hw);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005558 if (rc)
5559 goto err_free_queues;
5560 }
5561
5562 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
5563 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005564 iowrite32(MWL8K_A2H_INT_TX_DONE|MWL8K_A2H_INT_RX_READY|
5565 MWL8K_A2H_INT_BA_WATCHDOG,
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005566 priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05305567 iowrite32(MWL8K_A2H_INT_OPC_DONE,
5568 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005569
5570 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
5571 IRQF_SHARED, MWL8K_NAME, hw);
5572 if (rc) {
5573 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
5574 goto err_free_queues;
5575 }
5576
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305577 /*
5578 * When hw restart is requested,
5579 * mac80211 will take care of clearing
5580 * the ampdu streams, so do not clear
5581 * the ampdu state here
5582 */
5583 if (!priv->hw_restart_in_progress)
5584 memset(priv->ampdu, 0, sizeof(priv->ampdu));
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005585
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005586 /*
5587 * Temporarily enable interrupts. Initial firmware host
5588 * commands use interrupts and avoid polling. Disable
5589 * interrupts when done.
5590 */
5591 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5592
5593 /* Get config data, mac addrs etc */
5594 if (priv->ap_fw) {
5595 rc = mwl8k_cmd_get_hw_spec_ap(hw);
5596 if (!rc)
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005597 rc = mwl8k_init_txqs(hw);
5598 if (!rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005599 rc = mwl8k_cmd_set_hw_spec(hw);
5600 } else {
5601 rc = mwl8k_cmd_get_hw_spec_sta(hw);
5602 }
5603 if (rc) {
5604 wiphy_err(hw->wiphy, "Cannot initialise firmware\n");
5605 goto err_free_irq;
5606 }
5607
5608 /* Turn radio off */
5609 rc = mwl8k_cmd_radio_disable(hw);
5610 if (rc) {
5611 wiphy_err(hw->wiphy, "Cannot disable\n");
5612 goto err_free_irq;
5613 }
5614
5615 /* Clear MAC address */
5616 rc = mwl8k_cmd_set_mac_addr(hw, NULL, "\x00\x00\x00\x00\x00\x00");
5617 if (rc) {
5618 wiphy_err(hw->wiphy, "Cannot clear MAC address\n");
5619 goto err_free_irq;
5620 }
5621
5622 /* Disable interrupts */
5623 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5624 free_irq(priv->pdev->irq, hw);
5625
5626 wiphy_info(hw->wiphy, "%s v%d, %pm, %s firmware %u.%u.%u.%u\n",
5627 priv->device_info->part_name,
5628 priv->hw_rev, hw->wiphy->perm_addr,
5629 priv->ap_fw ? "AP" : "STA",
5630 (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff,
5631 (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff);
5632
5633 return 0;
5634
5635err_free_irq:
5636 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5637 free_irq(priv->pdev->irq, hw);
5638
5639err_free_queues:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005640 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005641 mwl8k_txq_deinit(hw, i);
5642 mwl8k_rxq_deinit(hw, 0);
5643
5644err_stop_firmware:
5645 mwl8k_hw_reset(priv);
5646
5647 return rc;
5648}
5649
5650/*
5651 * invoke mwl8k_reload_firmware to change the firmware image after the device
5652 * has already been registered
5653 */
5654static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image)
5655{
5656 int i, rc = 0;
5657 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305658 struct mwl8k_vif *vif, *tmp_vif;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005659
5660 mwl8k_stop(hw);
5661 mwl8k_rxq_deinit(hw, 0);
5662
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305663 /*
5664 * All the existing interfaces are re-added by the ieee80211_reconfig;
5665 * which means driver should remove existing interfaces before calling
5666 * ieee80211_restart_hw
5667 */
5668 if (priv->hw_restart_in_progress)
5669 list_for_each_entry_safe(vif, tmp_vif, &priv->vif_list, list)
5670 mwl8k_remove_vif(priv, vif);
5671
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005672 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005673 mwl8k_txq_deinit(hw, i);
5674
Brian Cavagnolo99020472010-11-12 17:23:52 -08005675 rc = mwl8k_init_firmware(hw, fw_image, false);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005676 if (rc)
5677 goto fail;
5678
5679 rc = mwl8k_probe_hw(hw);
5680 if (rc)
5681 goto fail;
5682
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305683 if (priv->hw_restart_in_progress)
5684 return rc;
5685
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005686 rc = mwl8k_start(hw);
5687 if (rc)
5688 goto fail;
5689
5690 rc = mwl8k_config(hw, ~0);
5691 if (rc)
5692 goto fail;
5693
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005694 for (i = 0; i < MWL8K_TX_WMM_QUEUES; i++) {
Eliad Peller8a3a3c82011-10-02 10:15:52 +02005695 rc = mwl8k_conf_tx(hw, NULL, i, &priv->wmm_params[i]);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005696 if (rc)
5697 goto fail;
5698 }
5699
5700 return rc;
5701
5702fail:
5703 printk(KERN_WARNING "mwl8k: Failed to reload firmware image.\n");
5704 return rc;
5705}
5706
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305707static const struct ieee80211_iface_limit ap_if_limits[] = {
5708 { .max = 8, .types = BIT(NL80211_IFTYPE_AP) },
5709};
5710
5711static const struct ieee80211_iface_combination ap_if_comb = {
5712 .limits = ap_if_limits,
5713 .n_limits = ARRAY_SIZE(ap_if_limits),
5714 .max_interfaces = 8,
5715 .num_different_channels = 1,
5716};
5717
5718
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005719static int mwl8k_firmware_load_success(struct mwl8k_priv *priv)
5720{
5721 struct ieee80211_hw *hw = priv->hw;
5722 int i, rc;
5723
Brian Cavagnolo99020472010-11-12 17:23:52 -08005724 rc = mwl8k_load_firmware(hw);
5725 mwl8k_release_firmware(priv);
5726 if (rc) {
5727 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5728 return rc;
5729 }
5730
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005731 /*
5732 * Extra headroom is the size of the required DMA header
5733 * minus the size of the smallest 802.11 frame (CTS frame).
5734 */
5735 hw->extra_tx_headroom =
5736 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
5737
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05305738 hw->extra_tx_headroom -= priv->ap_fw ? REDUCED_TX_HEADROOM : 0;
5739
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005740 hw->channel_change_time = 10;
5741
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005742 hw->queues = MWL8K_TX_WMM_QUEUES;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005743
5744 /* Set rssi values to dBm */
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08005745 hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_HAS_RATE_CONTROL;
Yogesh Ashok Powar2a36a0e2011-08-29 17:12:44 +05305746
5747 /*
5748 * Ask mac80211 to not to trigger PS mode
5749 * based on PM bit of incoming frames.
5750 */
5751 if (priv->ap_fw)
5752 hw->flags |= IEEE80211_HW_AP_LINK_PS;
5753
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005754 hw->vif_data_size = sizeof(struct mwl8k_vif);
5755 hw->sta_data_size = sizeof(struct mwl8k_sta);
5756
5757 priv->macids_used = 0;
5758 INIT_LIST_HEAD(&priv->vif_list);
5759
5760 /* Set default radio state and preamble */
Rusty Russell3db1cd52011-12-19 13:56:45 +00005761 priv->radio_on = false;
5762 priv->radio_short_preamble = false;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005763
5764 /* Finalize join worker */
5765 INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005766 /* Handle watchdog ba events */
5767 INIT_WORK(&priv->watchdog_ba_handle, mwl8k_watchdog_ba_events);
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305768 /* To reload the firmware if it crashes */
5769 INIT_WORK(&priv->fw_reload, mwl8k_hw_restart_work);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005770
5771 /* TX reclaim and RX tasklets. */
5772 tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw);
5773 tasklet_disable(&priv->poll_tx_task);
5774 tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw);
5775 tasklet_disable(&priv->poll_rx_task);
5776
5777 /* Power management cookie */
5778 priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
5779 if (priv->cookie == NULL)
5780 return -ENOMEM;
5781
5782 mutex_init(&priv->fw_mutex);
5783 priv->fw_mutex_owner = NULL;
5784 priv->fw_mutex_depth = 0;
5785 priv->hostcmd_wait = NULL;
5786
5787 spin_lock_init(&priv->tx_lock);
5788
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005789 spin_lock_init(&priv->stream_lock);
5790
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005791 priv->tx_wait = NULL;
5792
5793 rc = mwl8k_probe_hw(hw);
5794 if (rc)
5795 goto err_free_cookie;
5796
5797 hw->wiphy->interface_modes = 0;
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305798
5799 if (priv->ap_macids_supported || priv->device_info->fw_image_ap) {
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005800 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP);
Yogesh Ashok Powar5d377fc2012-11-06 19:22:16 +05305801 hw->wiphy->iface_combinations = &ap_if_comb;
5802 hw->wiphy->n_iface_combinations = 1;
5803 }
5804
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005805 if (priv->sta_macids_supported || priv->device_info->fw_image_sta)
5806 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
5807
5808 rc = ieee80211_register_hw(hw);
5809 if (rc) {
5810 wiphy_err(hw->wiphy, "Cannot register device\n");
5811 goto err_unprobe_hw;
5812 }
5813
5814 return 0;
5815
5816err_unprobe_hw:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005817 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005818 mwl8k_txq_deinit(hw, i);
5819 mwl8k_rxq_deinit(hw, 0);
5820
5821err_free_cookie:
5822 if (priv->cookie != NULL)
5823 pci_free_consistent(priv->pdev, 4,
5824 priv->cookie, priv->cookie_dma);
5825
5826 return rc;
5827}
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05005828static int mwl8k_probe(struct pci_dev *pdev,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005829 const struct pci_device_id *id)
5830{
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005831 static int printed_version;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005832 struct ieee80211_hw *hw;
5833 struct mwl8k_priv *priv;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005834 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005835 int rc;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02005836
5837 if (!printed_version) {
5838 printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION);
5839 printed_version = 1;
5840 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005841
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005842
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005843 rc = pci_enable_device(pdev);
5844 if (rc) {
5845 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
5846 MWL8K_NAME);
5847 return rc;
5848 }
5849
5850 rc = pci_request_regions(pdev, MWL8K_NAME);
5851 if (rc) {
5852 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
5853 MWL8K_NAME);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01005854 goto err_disable_device;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005855 }
5856
5857 pci_set_master(pdev);
5858
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005859
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005860 hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
5861 if (hw == NULL) {
5862 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
5863 rc = -ENOMEM;
5864 goto err_free_reg;
5865 }
5866
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005867 SET_IEEE80211_DEV(hw, &pdev->dev);
5868 pci_set_drvdata(pdev, hw);
5869
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005870 priv = hw->priv;
5871 priv->hw = hw;
5872 priv->pdev = pdev;
John W. Linvillebcb628d2009-11-06 16:40:16 -05005873 priv->device_info = &mwl8k_info_tbl[id->driver_data];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005874
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005875
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005876 priv->sram = pci_iomap(pdev, 0, 0x10000);
5877 if (priv->sram == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07005878 wiphy_err(hw->wiphy, "Cannot map device SRAM\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005879 goto err_iounmap;
5880 }
5881
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005882 /*
5883 * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
5884 * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
5885 */
5886 priv->regs = pci_iomap(pdev, 1, 0x10000);
5887 if (priv->regs == NULL) {
5888 priv->regs = pci_iomap(pdev, 2, 0x10000);
5889 if (priv->regs == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07005890 wiphy_err(hw->wiphy, "Cannot map device registers\n");
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005891 goto err_iounmap;
5892 }
5893 }
5894
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005895 /*
Brian Cavagnolo99020472010-11-12 17:23:52 -08005896 * Choose the initial fw image depending on user input. If a second
5897 * image is available, make it the alternative image that will be
5898 * loaded if the first one fails.
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005899 */
Brian Cavagnolo99020472010-11-12 17:23:52 -08005900 init_completion(&priv->firmware_loading_complete);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005901 di = priv->device_info;
Brian Cavagnolo99020472010-11-12 17:23:52 -08005902 if (ap_mode_default && di->fw_image_ap) {
5903 priv->fw_pref = di->fw_image_ap;
5904 priv->fw_alt = di->fw_image_sta;
5905 } else if (!ap_mode_default && di->fw_image_sta) {
5906 priv->fw_pref = di->fw_image_sta;
5907 priv->fw_alt = di->fw_image_ap;
5908 } else if (ap_mode_default && !di->fw_image_ap && di->fw_image_sta) {
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005909 printk(KERN_WARNING "AP fw is unavailable. Using STA fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08005910 priv->fw_pref = di->fw_image_sta;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005911 } else if (!ap_mode_default && !di->fw_image_sta && di->fw_image_ap) {
5912 printk(KERN_WARNING "STA fw is unavailable. Using AP fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08005913 priv->fw_pref = di->fw_image_ap;
5914 }
5915 rc = mwl8k_init_firmware(hw, priv->fw_pref, true);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005916 if (rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005917 goto err_stop_firmware;
Yogesh Ashok Powar6b6accc2011-12-30 16:35:27 +05305918
5919 priv->hw_restart_in_progress = false;
5920
Brian Cavagnolo99020472010-11-12 17:23:52 -08005921 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005922
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005923err_stop_firmware:
5924 mwl8k_hw_reset(priv);
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005925
5926err_iounmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005927 if (priv->regs != NULL)
5928 pci_iounmap(pdev, priv->regs);
5929
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005930 if (priv->sram != NULL)
5931 pci_iounmap(pdev, priv->sram);
5932
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005933 pci_set_drvdata(pdev, NULL);
5934 ieee80211_free_hw(hw);
5935
5936err_free_reg:
5937 pci_release_regions(pdev);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01005938
5939err_disable_device:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005940 pci_disable_device(pdev);
5941
5942 return rc;
5943}
5944
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05005945static void mwl8k_remove(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005946{
5947 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
5948 struct mwl8k_priv *priv;
5949 int i;
5950
5951 if (hw == NULL)
5952 return;
5953 priv = hw->priv;
5954
Brian Cavagnolo99020472010-11-12 17:23:52 -08005955 wait_for_completion(&priv->firmware_loading_complete);
5956
5957 if (priv->fw_state == FW_STATE_ERROR) {
5958 mwl8k_hw_reset(priv);
5959 goto unmap;
5960 }
5961
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005962 ieee80211_stop_queues(hw);
5963
Lennert Buytenhek60aa5692009-08-03 21:59:09 +02005964 ieee80211_unregister_hw(hw);
5965
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01005966 /* Remove TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01005967 tasklet_kill(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01005968 tasklet_kill(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005969
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005970 /* Stop hardware */
5971 mwl8k_hw_reset(priv);
5972
5973 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005974 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01005975 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005976
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005977 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005978 mwl8k_txq_deinit(hw, i);
5979
5980 mwl8k_rxq_deinit(hw, 0);
5981
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02005982 pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005983
Brian Cavagnolo99020472010-11-12 17:23:52 -08005984unmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005985 pci_iounmap(pdev, priv->regs);
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005986 pci_iounmap(pdev, priv->sram);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005987 pci_set_drvdata(pdev, NULL);
5988 ieee80211_free_hw(hw);
5989 pci_release_regions(pdev);
5990 pci_disable_device(pdev);
5991}
5992
5993static struct pci_driver mwl8k_driver = {
5994 .name = MWL8K_NAME,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005995 .id_table = mwl8k_pci_id_table,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005996 .probe = mwl8k_probe,
Bill Pemberton8dee5ee2012-12-03 09:56:36 -05005997 .remove = mwl8k_remove,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005998};
5999
Axel Lin5b0a3b72012-04-14 10:38:36 +08006000module_pci_driver(mwl8k_driver);
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02006001
6002MODULE_DESCRIPTION(MWL8K_DESC);
6003MODULE_VERSION(MWL8K_VERSION);
6004MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
6005MODULE_LICENSE("GPL");