blob: 63ee8cfe322b0d3e832a7e6473fec94e3a7b51b7 [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>
13#include <linux/module.h>
14#include <linux/kernel.h>
Lennert Buytenhek3d76e822009-10-22 20:20:16 +020015#include <linux/sched.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010016#include <linux/spinlock.h>
17#include <linux/list.h>
18#include <linux/pci.h>
19#include <linux/delay.h>
20#include <linux/completion.h>
21#include <linux/etherdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010023#include <net/mac80211.h>
24#include <linux/moduleparam.h>
25#include <linux/firmware.h>
26#include <linux/workqueue.h>
27
28#define MWL8K_DESC "Marvell TOPDOG(R) 802.11 Wireless Network Driver"
29#define MWL8K_NAME KBUILD_MODNAME
Lennert Buytenheka5fb2972010-01-12 13:51:38 +010030#define MWL8K_VERSION "0.12"
Lennert Buytenheka66098d2009-03-10 10:13:33 +010031
Brian Cavagnolo0863ade2010-11-12 17:23:50 -080032/* Module parameters */
33static unsigned ap_mode_default;
34module_param(ap_mode_default, bool, 0);
35MODULE_PARM_DESC(ap_mode_default,
36 "Set to 1 to make ap mode the default instead of sta mode");
37
Lennert Buytenheka66098d2009-03-10 10:13:33 +010038/* Register definitions */
39#define MWL8K_HIU_GEN_PTR 0x00000c10
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020040#define MWL8K_MODE_STA 0x0000005a
41#define MWL8K_MODE_AP 0x000000a5
Lennert Buytenheka66098d2009-03-10 10:13:33 +010042#define MWL8K_HIU_INT_CODE 0x00000c14
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020043#define MWL8K_FWSTA_READY 0xf0f1f2f4
44#define MWL8K_FWAP_READY 0xf1f2f4a5
45#define MWL8K_INT_CODE_CMD_FINISHED 0x00000005
Lennert Buytenheka66098d2009-03-10 10:13:33 +010046#define MWL8K_HIU_SCRATCH 0x00000c40
47
48/* Host->device communications */
49#define MWL8K_HIU_H2A_INTERRUPT_EVENTS 0x00000c18
50#define MWL8K_HIU_H2A_INTERRUPT_STATUS 0x00000c1c
51#define MWL8K_HIU_H2A_INTERRUPT_MASK 0x00000c20
52#define MWL8K_HIU_H2A_INTERRUPT_CLEAR_SEL 0x00000c24
53#define MWL8K_HIU_H2A_INTERRUPT_STATUS_MASK 0x00000c28
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020054#define MWL8K_H2A_INT_DUMMY (1 << 20)
55#define MWL8K_H2A_INT_RESET (1 << 15)
56#define MWL8K_H2A_INT_DOORBELL (1 << 1)
57#define MWL8K_H2A_INT_PPA_READY (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010058
59/* Device->host communications */
60#define MWL8K_HIU_A2H_INTERRUPT_EVENTS 0x00000c2c
61#define MWL8K_HIU_A2H_INTERRUPT_STATUS 0x00000c30
62#define MWL8K_HIU_A2H_INTERRUPT_MASK 0x00000c34
63#define MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL 0x00000c38
64#define MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK 0x00000c3c
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020065#define MWL8K_A2H_INT_DUMMY (1 << 20)
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -070066#define MWL8K_A2H_INT_BA_WATCHDOG (1 << 14)
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020067#define MWL8K_A2H_INT_CHNL_SWITCHED (1 << 11)
68#define MWL8K_A2H_INT_QUEUE_EMPTY (1 << 10)
69#define MWL8K_A2H_INT_RADAR_DETECT (1 << 7)
70#define MWL8K_A2H_INT_RADIO_ON (1 << 6)
71#define MWL8K_A2H_INT_RADIO_OFF (1 << 5)
72#define MWL8K_A2H_INT_MAC_EVENT (1 << 3)
73#define MWL8K_A2H_INT_OPC_DONE (1 << 2)
74#define MWL8K_A2H_INT_RX_READY (1 << 1)
75#define MWL8K_A2H_INT_TX_DONE (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010076
Pradeep Nemavat566875d2011-04-21 16:34:57 +053077/* HW micro second timer register
78 * located at offset 0xA600. This
79 * will be used to timestamp tx
80 * packets.
81 */
82
83#define MWL8K_HW_TIMER_REGISTER 0x0000a600
84
Lennert Buytenheka66098d2009-03-10 10:13:33 +010085#define MWL8K_A2H_EVENTS (MWL8K_A2H_INT_DUMMY | \
86 MWL8K_A2H_INT_CHNL_SWITCHED | \
87 MWL8K_A2H_INT_QUEUE_EMPTY | \
88 MWL8K_A2H_INT_RADAR_DETECT | \
89 MWL8K_A2H_INT_RADIO_ON | \
90 MWL8K_A2H_INT_RADIO_OFF | \
91 MWL8K_A2H_INT_MAC_EVENT | \
92 MWL8K_A2H_INT_OPC_DONE | \
93 MWL8K_A2H_INT_RX_READY | \
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -070094 MWL8K_A2H_INT_TX_DONE | \
95 MWL8K_A2H_INT_BA_WATCHDOG)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010096
Lennert Buytenheka66098d2009-03-10 10:13:33 +010097#define MWL8K_RX_QUEUES 1
Brian Cavagnoloe6007072011-03-17 11:58:44 -070098#define MWL8K_TX_WMM_QUEUES 4
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -070099#define MWL8K_MAX_AMPDU_QUEUES 8
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700100#define MWL8K_MAX_TX_QUEUES (MWL8K_TX_WMM_QUEUES + MWL8K_MAX_AMPDU_QUEUES)
101#define mwl8k_tx_queues(priv) (MWL8K_TX_WMM_QUEUES + (priv)->num_ampdu_queues)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100102
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200103struct rxd_ops {
104 int rxd_size;
105 void (*rxd_init)(void *rxd, dma_addr_t next_dma_addr);
106 void (*rxd_refill)(void *rxd, dma_addr_t addr, int len);
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100107 int (*rxd_process)(void *rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -0400108 __le16 *qos, s8 *noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200109};
110
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200111struct mwl8k_device_info {
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200112 char *part_name;
113 char *helper_image;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800114 char *fw_image_sta;
115 char *fw_image_ap;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100116 struct rxd_ops *ap_rxd_ops;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -0800117 u32 fw_api_ap;
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200118};
119
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100120struct mwl8k_rx_queue {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200121 int rxd_count;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100122
123 /* hw receives here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200124 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100125
126 /* refill descs here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200127 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100128
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200129 void *rxd;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200130 dma_addr_t rxd_dma;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200131 struct {
132 struct sk_buff *skb;
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +0900133 DEFINE_DMA_UNMAP_ADDR(dma);
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200134 } *buf;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100135};
136
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100137struct mwl8k_tx_queue {
138 /* hw transmits here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200139 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100140
141 /* sw appends here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200142 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100143
Kalle Valo8ccbc3b2010-02-07 10:20:52 +0200144 unsigned int len;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200145 struct mwl8k_tx_desc *txd;
146 dma_addr_t txd_dma;
147 struct sk_buff **skb;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100148};
149
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700150enum {
151 AMPDU_NO_STREAM,
152 AMPDU_STREAM_NEW,
153 AMPDU_STREAM_IN_PROGRESS,
154 AMPDU_STREAM_ACTIVE,
155};
156
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700157struct mwl8k_ampdu_stream {
158 struct ieee80211_sta *sta;
159 u8 tid;
160 u8 state;
161 u8 idx;
162 u8 txq_idx; /* index of this stream in priv->txq */
163};
164
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100165struct mwl8k_priv {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100166 struct ieee80211_hw *hw;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100167 struct pci_dev *pdev;
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +0530168 int irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100169
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200170 struct mwl8k_device_info *device_info;
171
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100172 void __iomem *sram;
173 void __iomem *regs;
174
175 /* firmware */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800176 const struct firmware *fw_helper;
177 const struct firmware *fw_ucode;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100178
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100179 /* hardware/firmware parameters */
180 bool ap_fw;
181 struct rxd_ops *rxd_ops;
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100182 struct ieee80211_supported_band band_24;
183 struct ieee80211_channel channels_24[14];
184 struct ieee80211_rate rates_24[14];
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100185 struct ieee80211_supported_band band_50;
186 struct ieee80211_channel channels_50[4];
187 struct ieee80211_rate rates_50[9];
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100188 u32 ap_macids_supported;
189 u32 sta_macids_supported;
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100190
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700191 /* Ampdu stream information */
192 u8 num_ampdu_queues;
Brian Cavagnoloac109fd2011-03-17 11:58:45 -0700193 spinlock_t stream_lock;
194 struct mwl8k_ampdu_stream ampdu[MWL8K_MAX_AMPDU_QUEUES];
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700195 struct work_struct watchdog_ba_handle;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -0700196
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200197 /* firmware access */
198 struct mutex fw_mutex;
199 struct task_struct *fw_mutex_owner;
200 int fw_mutex_depth;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200201 struct completion *hostcmd_wait;
202
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100203 /* lock held over TX and TX reap */
204 spinlock_t tx_lock;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100205
Lennert Buytenhek88de754a2009-10-22 20:19:37 +0200206 /* TX quiesce completion, protected by fw_mutex and tx_lock */
207 struct completion *tx_wait;
208
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100209 /* List of interfaces. */
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100210 u32 macids_used;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100211 struct list_head vif_list;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100212
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100213 /* power management status cookie from firmware */
214 u32 *cookie;
215 dma_addr_t cookie_dma;
216
217 u16 num_mcaddrs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100218 u8 hw_rev;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +0200219 u32 fw_rev;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100220
221 /*
222 * Running count of TX packets in flight, to avoid
223 * iterating over the transmit rings each time.
224 */
225 int pending_tx_pkts;
226
227 struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES];
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700228 struct mwl8k_tx_queue txq[MWL8K_MAX_TX_QUEUES];
229 u32 txq_offset[MWL8K_MAX_TX_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100230
Lennert Buytenhekc46563b2009-07-16 12:14:58 +0200231 bool radio_on;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +0200232 bool radio_short_preamble;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +0200233 bool sniffer_enabled;
Lennert Buytenhek0439b1f2009-07-16 12:34:02 +0200234 bool wmm_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100235
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100236 /* XXX need to convert this to handle multiple interfaces */
237 bool capture_beacon;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200238 u8 capture_bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100239 struct sk_buff *beacon_skb;
240
241 /*
242 * This FJ worker has to be global as it is scheduled from the
243 * RX handler. At this point we don't know which interface it
244 * belongs to until the list of bssids waiting to complete join
245 * is checked.
246 */
247 struct work_struct finalize_join_worker;
248
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +0100249 /* Tasklet to perform TX reclaim. */
250 struct tasklet_struct poll_tx_task;
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +0100251
252 /* Tasklet to perform RX. */
253 struct tasklet_struct poll_rx_task;
John W. Linville0d462bb2010-07-28 14:04:24 -0400254
255 /* Most recently reported noise in dBm */
256 s8 noise;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800257
258 /*
259 * preserve the queue configurations so they can be restored if/when
260 * the firmware image is swapped.
261 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -0700262 struct ieee80211_tx_queue_params wmm_params[MWL8K_TX_WMM_QUEUES];
Brian Cavagnolo99020472010-11-12 17:23:52 -0800263
264 /* async firmware loading state */
265 unsigned fw_state;
266 char *fw_pref;
267 char *fw_alt;
268 struct completion firmware_loading_complete;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100269};
270
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800271#define MAX_WEP_KEY_LEN 13
272#define NUM_WEP_KEYS 4
273
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100274/* Per interface specific private data */
275struct mwl8k_vif {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100276 struct list_head list;
277 struct ieee80211_vif *vif;
278
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100279 /* Firmware macid for this vif. */
280 int macid;
281
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +0100282 /* Non AMPDU sequence number assigned by driver. */
Lennert Buytenheka6804002010-01-04 21:55:42 +0100283 u16 seqno;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800284
285 /* Saved WEP keys */
286 struct {
287 u8 enabled;
288 u8 key[sizeof(struct ieee80211_key_conf) + MAX_WEP_KEY_LEN];
289 } wep_key_conf[NUM_WEP_KEYS];
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800290
291 /* BSSID */
292 u8 bssid[ETH_ALEN];
293
294 /* A flag to indicate is HW crypto is enabled for this bssid */
295 bool is_hw_crypto_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100296};
Lennert Buytenheka94cc972009-08-03 21:58:57 +0200297#define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv))
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800298#define IEEE80211_KEY_CONF(_u8) ((struct ieee80211_key_conf *)(_u8))
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100299
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700300struct tx_traffic_info {
301 u32 start_time;
302 u32 pkts;
303};
304
305#define MWL8K_MAX_TID 8
Lennert Buytenheka6804002010-01-04 21:55:42 +0100306struct mwl8k_sta {
307 /* Index into station database. Returned by UPDATE_STADB. */
308 u8 peer_id;
Nishant Sarmukadam17033542011-03-17 11:58:48 -0700309 u8 is_ampdu_allowed;
Brian Cavagnolod0805c12011-04-12 11:06:28 -0700310 struct tx_traffic_info tx_stats[MWL8K_MAX_TID];
Lennert Buytenheka6804002010-01-04 21:55:42 +0100311};
312#define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv))
313
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100314static const struct ieee80211_channel mwl8k_channels_24[] = {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100315 { .center_freq = 2412, .hw_value = 1, },
316 { .center_freq = 2417, .hw_value = 2, },
317 { .center_freq = 2422, .hw_value = 3, },
318 { .center_freq = 2427, .hw_value = 4, },
319 { .center_freq = 2432, .hw_value = 5, },
320 { .center_freq = 2437, .hw_value = 6, },
321 { .center_freq = 2442, .hw_value = 7, },
322 { .center_freq = 2447, .hw_value = 8, },
323 { .center_freq = 2452, .hw_value = 9, },
324 { .center_freq = 2457, .hw_value = 10, },
325 { .center_freq = 2462, .hw_value = 11, },
Lennert Buytenhek647ca6b2009-11-30 18:32:20 +0100326 { .center_freq = 2467, .hw_value = 12, },
327 { .center_freq = 2472, .hw_value = 13, },
328 { .center_freq = 2484, .hw_value = 14, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100329};
330
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100331static const struct ieee80211_rate mwl8k_rates_24[] = {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100332 { .bitrate = 10, .hw_value = 2, },
333 { .bitrate = 20, .hw_value = 4, },
334 { .bitrate = 55, .hw_value = 11, },
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200335 { .bitrate = 110, .hw_value = 22, },
336 { .bitrate = 220, .hw_value = 44, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100337 { .bitrate = 60, .hw_value = 12, },
338 { .bitrate = 90, .hw_value = 18, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100339 { .bitrate = 120, .hw_value = 24, },
340 { .bitrate = 180, .hw_value = 36, },
341 { .bitrate = 240, .hw_value = 48, },
342 { .bitrate = 360, .hw_value = 72, },
343 { .bitrate = 480, .hw_value = 96, },
344 { .bitrate = 540, .hw_value = 108, },
Lennert Buytenhek140eb5e2009-11-30 18:11:44 +0100345 { .bitrate = 720, .hw_value = 144, },
346};
347
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100348static const struct ieee80211_channel mwl8k_channels_50[] = {
349 { .center_freq = 5180, .hw_value = 36, },
350 { .center_freq = 5200, .hw_value = 40, },
351 { .center_freq = 5220, .hw_value = 44, },
352 { .center_freq = 5240, .hw_value = 48, },
353};
354
355static const struct ieee80211_rate mwl8k_rates_50[] = {
356 { .bitrate = 60, .hw_value = 12, },
357 { .bitrate = 90, .hw_value = 18, },
358 { .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, },
364 { .bitrate = 720, .hw_value = 144, },
365};
366
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100367/* Set or get info from Firmware */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100368#define MWL8K_CMD_GET 0x0000
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800369#define MWL8K_CMD_SET 0x0001
370#define MWL8K_CMD_SET_LIST 0x0002
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100371
372/* Firmware command codes */
373#define MWL8K_CMD_CODE_DNLD 0x0001
374#define MWL8K_CMD_GET_HW_SPEC 0x0003
Lennert Buytenhek42fba212009-10-22 20:21:30 +0200375#define MWL8K_CMD_SET_HW_SPEC 0x0004
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100376#define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010
377#define MWL8K_CMD_GET_STAT 0x0014
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200378#define MWL8K_CMD_RADIO_CONTROL 0x001c
379#define MWL8K_CMD_RF_TX_POWER 0x001e
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800380#define MWL8K_CMD_TX_POWER 0x001f
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200381#define MWL8K_CMD_RF_ANTENNA 0x0020
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +0100382#define MWL8K_CMD_SET_BEACON 0x0100 /* per-vif */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100383#define MWL8K_CMD_SET_PRE_SCAN 0x0107
384#define MWL8K_CMD_SET_POST_SCAN 0x0108
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200385#define MWL8K_CMD_SET_RF_CHANNEL 0x010a
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100386#define MWL8K_CMD_SET_AID 0x010d
387#define MWL8K_CMD_SET_RATE 0x0110
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200388#define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100389#define MWL8K_CMD_RTS_THRESHOLD 0x0113
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200390#define MWL8K_CMD_SET_SLOT 0x0114
391#define MWL8K_CMD_SET_EDCA_PARAMS 0x0115
392#define MWL8K_CMD_SET_WMM_MODE 0x0123
393#define MWL8K_CMD_MIMO_CONFIG 0x0125
394#define MWL8K_CMD_USE_FIXED_RATE 0x0126
395#define MWL8K_CMD_ENABLE_SNIFFER 0x0150
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +0100396#define MWL8K_CMD_SET_MAC_ADDR 0x0202 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200397#define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700398#define MWL8K_CMD_GET_WATCHDOG_BITMAP 0x0205
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +0100399#define MWL8K_CMD_BSS_START 0x1100 /* per-vif */
400#define MWL8K_CMD_SET_NEW_STN 0x1111 /* per-vif */
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800401#define MWL8K_CMD_UPDATE_ENCRYPTION 0x1122 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200402#define MWL8K_CMD_UPDATE_STADB 0x1123
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700403#define MWL8K_CMD_BASTREAM 0x1125
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100404
John W. Linvilleb6037422010-07-20 13:55:00 -0400405static const char *mwl8k_cmd_name(__le16 cmd, char *buf, int bufsize)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100406{
John W. Linvilleb6037422010-07-20 13:55:00 -0400407 u16 command = le16_to_cpu(cmd);
408
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100409#define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\
410 snprintf(buf, bufsize, "%s", #x);\
411 return buf;\
412 } while (0)
John W. Linvilleb6037422010-07-20 13:55:00 -0400413 switch (command & ~0x8000) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100414 MWL8K_CMDNAME(CODE_DNLD);
415 MWL8K_CMDNAME(GET_HW_SPEC);
Lennert Buytenhek42fba212009-10-22 20:21:30 +0200416 MWL8K_CMDNAME(SET_HW_SPEC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100417 MWL8K_CMDNAME(MAC_MULTICAST_ADR);
418 MWL8K_CMDNAME(GET_STAT);
419 MWL8K_CMDNAME(RADIO_CONTROL);
420 MWL8K_CMDNAME(RF_TX_POWER);
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -0800421 MWL8K_CMDNAME(TX_POWER);
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200422 MWL8K_CMDNAME(RF_ANTENNA);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100423 MWL8K_CMDNAME(SET_BEACON);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100424 MWL8K_CMDNAME(SET_PRE_SCAN);
425 MWL8K_CMDNAME(SET_POST_SCAN);
426 MWL8K_CMDNAME(SET_RF_CHANNEL);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100427 MWL8K_CMDNAME(SET_AID);
428 MWL8K_CMDNAME(SET_RATE);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200429 MWL8K_CMDNAME(SET_FINALIZE_JOIN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100430 MWL8K_CMDNAME(RTS_THRESHOLD);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200431 MWL8K_CMDNAME(SET_SLOT);
432 MWL8K_CMDNAME(SET_EDCA_PARAMS);
433 MWL8K_CMDNAME(SET_WMM_MODE);
434 MWL8K_CMDNAME(MIMO_CONFIG);
435 MWL8K_CMDNAME(USE_FIXED_RATE);
436 MWL8K_CMDNAME(ENABLE_SNIFFER);
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200437 MWL8K_CMDNAME(SET_MAC_ADDR);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200438 MWL8K_CMDNAME(SET_RATEADAPT_MODE);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100439 MWL8K_CMDNAME(BSS_START);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +0100440 MWL8K_CMDNAME(SET_NEW_STN);
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -0800441 MWL8K_CMDNAME(UPDATE_ENCRYPTION);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200442 MWL8K_CMDNAME(UPDATE_STADB);
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -0700443 MWL8K_CMDNAME(BASTREAM);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -0700444 MWL8K_CMDNAME(GET_WATCHDOG_BITMAP);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100445 default:
446 snprintf(buf, bufsize, "0x%x", cmd);
447 }
448#undef MWL8K_CMDNAME
449
450 return buf;
451}
452
453/* Hardware and firmware reset */
454static void mwl8k_hw_reset(struct mwl8k_priv *priv)
455{
456 iowrite32(MWL8K_H2A_INT_RESET,
457 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
458 iowrite32(MWL8K_H2A_INT_RESET,
459 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
460 msleep(20);
461}
462
463/* Release fw image */
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800464static void mwl8k_release_fw(const struct firmware **fw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100465{
466 if (*fw == NULL)
467 return;
468 release_firmware(*fw);
469 *fw = NULL;
470}
471
472static void mwl8k_release_firmware(struct mwl8k_priv *priv)
473{
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100474 mwl8k_release_fw(&priv->fw_ucode);
475 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100476}
477
Brian Cavagnolo99020472010-11-12 17:23:52 -0800478/* states for asynchronous f/w loading */
479static void mwl8k_fw_state_machine(const struct firmware *fw, void *context);
480enum {
481 FW_STATE_INIT = 0,
482 FW_STATE_LOADING_PREF,
483 FW_STATE_LOADING_ALT,
484 FW_STATE_ERROR,
485};
486
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100487/* Request fw image */
488static int mwl8k_request_fw(struct mwl8k_priv *priv,
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800489 const char *fname, const struct firmware **fw,
Brian Cavagnolo99020472010-11-12 17:23:52 -0800490 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100491{
492 /* release current image */
493 if (*fw != NULL)
494 mwl8k_release_fw(fw);
495
Brian Cavagnolo99020472010-11-12 17:23:52 -0800496 if (nowait)
497 return request_firmware_nowait(THIS_MODULE, 1, fname,
498 &priv->pdev->dev, GFP_KERNEL,
499 priv, mwl8k_fw_state_machine);
500 else
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800501 return request_firmware(fw, fname, &priv->pdev->dev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100502}
503
Brian Cavagnolo99020472010-11-12 17:23:52 -0800504static int mwl8k_request_firmware(struct mwl8k_priv *priv, char *fw_image,
505 bool nowait)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100506{
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200507 struct mwl8k_device_info *di = priv->device_info;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100508 int rc;
509
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200510 if (di->helper_image != NULL) {
Brian Cavagnolo99020472010-11-12 17:23:52 -0800511 if (nowait)
512 rc = mwl8k_request_fw(priv, di->helper_image,
513 &priv->fw_helper, true);
514 else
515 rc = mwl8k_request_fw(priv, di->helper_image,
516 &priv->fw_helper, false);
517 if (rc)
518 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
519 pci_name(priv->pdev), di->helper_image);
520
521 if (rc || nowait)
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200522 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100523 }
524
Brian Cavagnolo99020472010-11-12 17:23:52 -0800525 if (nowait) {
526 /*
527 * if we get here, no helper image is needed. Skip the
528 * FW_STATE_INIT state.
529 */
530 priv->fw_state = FW_STATE_LOADING_PREF;
531 rc = mwl8k_request_fw(priv, fw_image,
532 &priv->fw_ucode,
533 true);
534 } else
535 rc = mwl8k_request_fw(priv, fw_image,
536 &priv->fw_ucode, false);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100537 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200538 printk(KERN_ERR "%s: Error requesting firmware file %s\n",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -0800539 pci_name(priv->pdev), fw_image);
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100540 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100541 return rc;
542 }
543
544 return 0;
545}
546
547struct mwl8k_cmd_pkt {
548 __le16 code;
549 __le16 length;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100550 __u8 seq_num;
551 __u8 macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100552 __le16 result;
553 char payload[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000554} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100555
556/*
557 * Firmware loading.
558 */
559static int
560mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length)
561{
562 void __iomem *regs = priv->regs;
563 dma_addr_t dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100564 int loops;
565
566 dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE);
567 if (pci_dma_mapping_error(priv->pdev, dma_addr))
568 return -ENOMEM;
569
570 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
571 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
572 iowrite32(MWL8K_H2A_INT_DOORBELL,
573 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
574 iowrite32(MWL8K_H2A_INT_DUMMY,
575 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
576
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100577 loops = 1000;
578 do {
579 u32 int_code;
580
581 int_code = ioread32(regs + MWL8K_HIU_INT_CODE);
582 if (int_code == MWL8K_INT_CODE_CMD_FINISHED) {
583 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100584 break;
585 }
586
Lennert Buytenhek3d76e822009-10-22 20:20:16 +0200587 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100588 udelay(1);
589 } while (--loops);
590
591 pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE);
592
Lennert Buytenhekd4b705702009-07-16 12:44:45 +0200593 return loops ? 0 : -ETIMEDOUT;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100594}
595
596static int mwl8k_load_fw_image(struct mwl8k_priv *priv,
597 const u8 *data, size_t length)
598{
599 struct mwl8k_cmd_pkt *cmd;
600 int done;
601 int rc = 0;
602
603 cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL);
604 if (cmd == NULL)
605 return -ENOMEM;
606
607 cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD);
608 cmd->seq_num = 0;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100609 cmd->macid = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100610 cmd->result = 0;
611
612 done = 0;
613 while (length) {
614 int block_size = length > 256 ? 256 : length;
615
616 memcpy(cmd->payload, data + done, block_size);
617 cmd->length = cpu_to_le16(block_size);
618
619 rc = mwl8k_send_fw_load_cmd(priv, cmd,
620 sizeof(*cmd) + block_size);
621 if (rc)
622 break;
623
624 done += block_size;
625 length -= block_size;
626 }
627
628 if (!rc) {
629 cmd->length = 0;
630 rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd));
631 }
632
633 kfree(cmd);
634
635 return rc;
636}
637
638static int mwl8k_feed_fw_image(struct mwl8k_priv *priv,
639 const u8 *data, size_t length)
640{
641 unsigned char *buffer;
642 int may_continue, rc = 0;
643 u32 done, prev_block_size;
644
645 buffer = kmalloc(1024, GFP_KERNEL);
646 if (buffer == NULL)
647 return -ENOMEM;
648
649 done = 0;
650 prev_block_size = 0;
651 may_continue = 1000;
652 while (may_continue > 0) {
653 u32 block_size;
654
655 block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH);
656 if (block_size & 1) {
657 block_size &= ~1;
658 may_continue--;
659 } else {
660 done += prev_block_size;
661 length -= prev_block_size;
662 }
663
664 if (block_size > 1024 || block_size > length) {
665 rc = -EOVERFLOW;
666 break;
667 }
668
669 if (length == 0) {
670 rc = 0;
671 break;
672 }
673
674 if (block_size == 0) {
675 rc = -EPROTO;
676 may_continue--;
677 udelay(1);
678 continue;
679 }
680
681 prev_block_size = block_size;
682 memcpy(buffer, data + done, block_size);
683
684 rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size);
685 if (rc)
686 break;
687 }
688
689 if (!rc && length != 0)
690 rc = -EREMOTEIO;
691
692 kfree(buffer);
693
694 return rc;
695}
696
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200697static int mwl8k_load_firmware(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100698{
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200699 struct mwl8k_priv *priv = hw->priv;
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800700 const struct firmware *fw = priv->fw_ucode;
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200701 int rc;
702 int loops;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100703
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200704 if (!memcmp(fw->data, "\x01\x00\x00\x00", 4)) {
Brian Cavagnolod1f9e412010-11-12 17:23:53 -0800705 const struct firmware *helper = priv->fw_helper;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100706
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200707 if (helper == NULL) {
708 printk(KERN_ERR "%s: helper image needed but none "
709 "given\n", pci_name(priv->pdev));
710 return -EINVAL;
711 }
712
713 rc = mwl8k_load_fw_image(priv, helper->data, helper->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100714 if (rc) {
715 printk(KERN_ERR "%s: unable to load firmware "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200716 "helper image\n", pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100717 return rc;
718 }
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +0530719 msleep(20);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100720
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200721 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100722 } else {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200723 rc = mwl8k_load_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100724 }
725
726 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200727 printk(KERN_ERR "%s: unable to load firmware image\n",
728 pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100729 return rc;
730 }
731
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100732 iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100733
Lennert Buytenhek89b872e2009-11-30 18:13:20 +0100734 loops = 500000;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100735 do {
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200736 u32 ready_code;
737
738 ready_code = ioread32(priv->regs + MWL8K_HIU_INT_CODE);
739 if (ready_code == MWL8K_FWAP_READY) {
740 priv->ap_fw = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100741 break;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200742 } else if (ready_code == MWL8K_FWSTA_READY) {
743 priv->ap_fw = 0;
744 break;
745 }
746
747 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100748 udelay(1);
749 } while (--loops);
750
751 return loops ? 0 : -ETIMEDOUT;
752}
753
754
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100755/* DMA header used by firmware and hardware. */
756struct mwl8k_dma_data {
757 __le16 fwlen;
758 struct ieee80211_hdr wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100759 char data[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000760} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100761
762/* Routines to add/remove DMA header from skb. */
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100763static inline void mwl8k_remove_dma_header(struct sk_buff *skb, __le16 qos)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100764{
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100765 struct mwl8k_dma_data *tr;
766 int hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100767
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100768 tr = (struct mwl8k_dma_data *)skb->data;
769 hdrlen = ieee80211_hdrlen(tr->wh.frame_control);
770
771 if (hdrlen != sizeof(tr->wh)) {
772 if (ieee80211_is_data_qos(tr->wh.frame_control)) {
773 memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2);
774 *((__le16 *)(tr->data - 2)) = qos;
775 } else {
776 memmove(tr->data - hdrlen, &tr->wh, hdrlen);
777 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100778 }
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100779
780 if (hdrlen != sizeof(*tr))
781 skb_pull(skb, sizeof(*tr) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100782}
783
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800784static void
785mwl8k_add_dma_header(struct sk_buff *skb, int tail_pad)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100786{
787 struct ieee80211_hdr *wh;
Lennert Buytenhekca009302009-11-30 18:12:20 +0100788 int hdrlen;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800789 int reqd_hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100790 struct mwl8k_dma_data *tr;
791
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100792 /*
Lennert Buytenhekca009302009-11-30 18:12:20 +0100793 * Add a firmware DMA header; the firmware requires that we
794 * present a 2-byte payload length followed by a 4-address
795 * header (without QoS field), followed (optionally) by any
796 * WEP/ExtIV header (but only filled in for CCMP).
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100797 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100798 wh = (struct ieee80211_hdr *)skb->data;
799
800 hdrlen = ieee80211_hdrlen(wh->frame_control);
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800801 reqd_hdrlen = sizeof(*tr);
802
803 if (hdrlen != reqd_hdrlen)
804 skb_push(skb, reqd_hdrlen - hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100805
806 if (ieee80211_is_data_qos(wh->frame_control))
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800807 hdrlen -= IEEE80211_QOS_CTL_LEN;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100808
809 tr = (struct mwl8k_dma_data *)skb->data;
810 if (wh != &tr->wh)
811 memmove(&tr->wh, wh, hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100812 if (hdrlen != sizeof(tr->wh))
813 memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100814
815 /*
816 * Firmware length is the length of the fully formed "802.11
817 * payload". That is, everything except for the 802.11 header.
818 * This includes all crypto material including the MIC.
819 */
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800820 tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr) + tail_pad);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100821}
822
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800823static void mwl8k_encapsulate_tx_frame(struct sk_buff *skb)
824{
825 struct ieee80211_hdr *wh;
826 struct ieee80211_tx_info *tx_info;
827 struct ieee80211_key_conf *key_conf;
828 int data_pad;
829
830 wh = (struct ieee80211_hdr *)skb->data;
831
832 tx_info = IEEE80211_SKB_CB(skb);
833
834 key_conf = NULL;
835 if (ieee80211_is_data(wh->frame_control))
836 key_conf = tx_info->control.hw_key;
837
838 /*
839 * Make sure the packet header is in the DMA header format (4-address
840 * without QoS), the necessary crypto padding between the header and the
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +0530841 * payload has already been provided by mac80211, but it doesn't add
842 * tail padding when HW crypto is enabled.
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800843 *
844 * We have the following trailer padding requirements:
845 * - WEP: 4 trailer bytes (ICV)
846 * - TKIP: 12 trailer bytes (8 MIC + 4 ICV)
847 * - CCMP: 8 trailer bytes (MIC)
848 */
849 data_pad = 0;
850 if (key_conf != NULL) {
851 switch (key_conf->cipher) {
852 case WLAN_CIPHER_SUITE_WEP40:
853 case WLAN_CIPHER_SUITE_WEP104:
854 data_pad = 4;
855 break;
856 case WLAN_CIPHER_SUITE_TKIP:
857 data_pad = 12;
858 break;
859 case WLAN_CIPHER_SUITE_CCMP:
860 data_pad = 8;
861 break;
862 }
863 }
864 mwl8k_add_dma_header(skb, data_pad);
865}
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100866
867/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100868 * Packet reception for 88w8366 AP firmware.
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200869 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100870struct mwl8k_rxd_8366_ap {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200871 __le16 pkt_len;
872 __u8 sq2;
873 __u8 rate;
874 __le32 pkt_phys_addr;
875 __le32 next_rxd_phys_addr;
876 __le16 qos_control;
877 __le16 htsig2;
878 __le32 hw_rssi_info;
879 __le32 hw_noise_floor_info;
880 __u8 noise_floor;
881 __u8 pad0[3];
882 __u8 rssi;
883 __u8 rx_status;
884 __u8 channel;
885 __u8 rx_ctrl;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000886} __packed;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200887
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100888#define MWL8K_8366_AP_RATE_INFO_MCS_FORMAT 0x80
889#define MWL8K_8366_AP_RATE_INFO_40MHZ 0x40
890#define MWL8K_8366_AP_RATE_INFO_RATEID(x) ((x) & 0x3f)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100891
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100892#define MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST 0x80
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200893
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800894/* 8366 AP rx_status bits */
895#define MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK 0x80
896#define MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR 0xFF
897#define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR 0x02
898#define MWL8K_8366_AP_RXSTAT_WEP_DECRYPT_ICV_ERR 0x04
899#define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_ICV_ERR 0x08
900
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100901static void mwl8k_rxd_8366_ap_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200902{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100903 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200904
905 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100906 rxd->rx_ctrl = MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200907}
908
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100909static void mwl8k_rxd_8366_ap_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200910{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100911 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200912
913 rxd->pkt_len = cpu_to_le16(len);
914 rxd->pkt_phys_addr = cpu_to_le32(addr);
915 wmb();
916 rxd->rx_ctrl = 0;
917}
918
919static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100920mwl8k_rxd_8366_ap_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -0400921 __le16 *qos, s8 *noise)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200922{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100923 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200924
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100925 if (!(rxd->rx_ctrl & MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200926 return -1;
927 rmb();
928
929 memset(status, 0, sizeof(*status));
930
931 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -0400932 *noise = -rxd->noise_floor;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200933
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100934 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_MCS_FORMAT) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200935 status->flag |= RX_FLAG_HT;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100936 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_40MHZ)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100937 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100938 status->rate_idx = MWL8K_8366_AP_RATE_INFO_RATEID(rxd->rate);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200939 } else {
940 int i;
941
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100942 for (i = 0; i < ARRAY_SIZE(mwl8k_rates_24); i++) {
943 if (mwl8k_rates_24[i].hw_value == rxd->rate) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200944 status->rate_idx = i;
945 break;
946 }
947 }
948 }
949
Lennert Buytenhek85478342010-01-12 13:48:56 +0100950 if (rxd->channel > 14) {
951 status->band = IEEE80211_BAND_5GHZ;
952 if (!(status->flag & RX_FLAG_HT))
953 status->rate_idx -= 5;
954 } else {
955 status->band = IEEE80211_BAND_2GHZ;
956 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +0900957 status->freq = ieee80211_channel_to_frequency(rxd->channel,
958 status->band);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200959
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100960 *qos = rxd->qos_control;
961
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800962 if ((rxd->rx_status != MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR) &&
963 (rxd->rx_status & MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK) &&
964 (rxd->rx_status & MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR))
965 status->flag |= RX_FLAG_MMIC_ERROR;
966
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200967 return le16_to_cpu(rxd->pkt_len);
968}
969
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100970static struct rxd_ops rxd_8366_ap_ops = {
971 .rxd_size = sizeof(struct mwl8k_rxd_8366_ap),
972 .rxd_init = mwl8k_rxd_8366_ap_init,
973 .rxd_refill = mwl8k_rxd_8366_ap_refill,
974 .rxd_process = mwl8k_rxd_8366_ap_process,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200975};
976
977/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100978 * Packet reception for STA firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100979 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100980struct mwl8k_rxd_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100981 __le16 pkt_len;
982 __u8 link_quality;
983 __u8 noise_level;
984 __le32 pkt_phys_addr;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200985 __le32 next_rxd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100986 __le16 qos_control;
987 __le16 rate_info;
988 __le32 pad0[4];
989 __u8 rssi;
990 __u8 channel;
991 __le16 pad1;
992 __u8 rx_ctrl;
993 __u8 rx_status;
994 __u8 pad2[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000995} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100996
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100997#define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000
998#define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3)
999#define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f)
1000#define MWL8K_STA_RATE_INFO_40MHZ 0x0004
1001#define MWL8K_STA_RATE_INFO_SHORTGI 0x0002
1002#define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001003
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001004#define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001005#define MWL8K_STA_RX_CTRL_DECRYPT_ERROR 0x04
1006/* ICV=0 or MIC=1 */
1007#define MWL8K_STA_RX_CTRL_DEC_ERR_TYPE 0x08
1008/* Key is uploaded only in failure case */
1009#define MWL8K_STA_RX_CTRL_KEY_INDEX 0x30
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001010
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001011static void mwl8k_rxd_sta_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001012{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001013 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001014
1015 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001016 rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001017}
1018
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001019static void mwl8k_rxd_sta_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001020{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001021 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001022
1023 rxd->pkt_len = cpu_to_le16(len);
1024 rxd->pkt_phys_addr = cpu_to_le32(addr);
1025 wmb();
1026 rxd->rx_ctrl = 0;
1027}
1028
1029static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001030mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -04001031 __le16 *qos, s8 *noise)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001032{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001033 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001034 u16 rate_info;
1035
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001036 if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001037 return -1;
1038 rmb();
1039
1040 rate_info = le16_to_cpu(rxd->rate_info);
1041
1042 memset(status, 0, sizeof(*status));
1043
1044 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -04001045 *noise = -rxd->noise_level;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001046 status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info);
1047 status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001048
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001049 if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001050 status->flag |= RX_FLAG_SHORTPRE;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001051 if (rate_info & MWL8K_STA_RATE_INFO_40MHZ)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001052 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001053 if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001054 status->flag |= RX_FLAG_SHORT_GI;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001055 if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001056 status->flag |= RX_FLAG_HT;
1057
Lennert Buytenhek85478342010-01-12 13:48:56 +01001058 if (rxd->channel > 14) {
1059 status->band = IEEE80211_BAND_5GHZ;
1060 if (!(status->flag & RX_FLAG_HT))
1061 status->rate_idx -= 5;
1062 } else {
1063 status->band = IEEE80211_BAND_2GHZ;
1064 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001065 status->freq = ieee80211_channel_to_frequency(rxd->channel,
1066 status->band);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001067
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001068 *qos = rxd->qos_control;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001069 if ((rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DECRYPT_ERROR) &&
1070 (rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DEC_ERR_TYPE))
1071 status->flag |= RX_FLAG_MMIC_ERROR;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001072
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001073 return le16_to_cpu(rxd->pkt_len);
1074}
1075
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001076static struct rxd_ops rxd_sta_ops = {
1077 .rxd_size = sizeof(struct mwl8k_rxd_sta),
1078 .rxd_init = mwl8k_rxd_sta_init,
1079 .rxd_refill = mwl8k_rxd_sta_refill,
1080 .rxd_process = mwl8k_rxd_sta_process,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001081};
1082
1083
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001084#define MWL8K_RX_DESCS 256
1085#define MWL8K_RX_MAXSZ 3800
1086
1087static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
1088{
1089 struct mwl8k_priv *priv = hw->priv;
1090 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1091 int size;
1092 int i;
1093
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001094 rxq->rxd_count = 0;
1095 rxq->head = 0;
1096 rxq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001097
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001098 size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001099
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001100 rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma);
1101 if (rxq->rxd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001102 wiphy_err(hw->wiphy, "failed to alloc RX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001103 return -ENOMEM;
1104 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001105 memset(rxq->rxd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001106
Shan Weib9ede5f2011-03-08 11:02:03 +08001107 rxq->buf = kcalloc(MWL8K_RX_DESCS, sizeof(*rxq->buf), GFP_KERNEL);
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001108 if (rxq->buf == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001109 wiphy_err(hw->wiphy, "failed to alloc RX skbuff list\n");
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001110 pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001111 return -ENOMEM;
1112 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001113
1114 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001115 int desc_size;
1116 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001117 int nexti;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001118 dma_addr_t next_dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001119
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001120 desc_size = priv->rxd_ops->rxd_size;
1121 rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001122
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001123 nexti = i + 1;
1124 if (nexti == MWL8K_RX_DESCS)
1125 nexti = 0;
1126 next_dma_addr = rxq->rxd_dma + (nexti * desc_size);
1127
1128 priv->rxd_ops->rxd_init(rxd, next_dma_addr);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001129 }
1130
1131 return 0;
1132}
1133
1134static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
1135{
1136 struct mwl8k_priv *priv = hw->priv;
1137 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1138 int refilled;
1139
1140 refilled = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001141 while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001142 struct sk_buff *skb;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001143 dma_addr_t addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001144 int rx;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001145 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001146
1147 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
1148 if (skb == NULL)
1149 break;
1150
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001151 addr = pci_map_single(priv->pdev, skb->data,
1152 MWL8K_RX_MAXSZ, DMA_FROM_DEVICE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001153
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001154 rxq->rxd_count++;
1155 rx = rxq->tail++;
1156 if (rxq->tail == MWL8K_RX_DESCS)
1157 rxq->tail = 0;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001158 rxq->buf[rx].skb = skb;
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001159 dma_unmap_addr_set(&rxq->buf[rx], dma, addr);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001160
1161 rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size);
1162 priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001163
1164 refilled++;
1165 }
1166
1167 return refilled;
1168}
1169
1170/* Must be called only when the card's reception is completely halted */
1171static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
1172{
1173 struct mwl8k_priv *priv = hw->priv;
1174 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1175 int i;
1176
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001177 if (rxq->rxd == NULL)
1178 return;
1179
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001180 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001181 if (rxq->buf[i].skb != NULL) {
1182 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001183 dma_unmap_addr(&rxq->buf[i], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001184 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001185 dma_unmap_addr_set(&rxq->buf[i], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001186
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001187 kfree_skb(rxq->buf[i].skb);
1188 rxq->buf[i].skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001189 }
1190 }
1191
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001192 kfree(rxq->buf);
1193 rxq->buf = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001194
1195 pci_free_consistent(priv->pdev,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001196 MWL8K_RX_DESCS * priv->rxd_ops->rxd_size,
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001197 rxq->rxd, rxq->rxd_dma);
1198 rxq->rxd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001199}
1200
1201
1202/*
1203 * Scan a list of BSSIDs to process for finalize join.
1204 * Allows for extension to process multiple BSSIDs.
1205 */
1206static inline int
1207mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
1208{
1209 return priv->capture_beacon &&
1210 ieee80211_is_beacon(wh->frame_control) &&
1211 !compare_ether_addr(wh->addr3, priv->capture_bssid);
1212}
1213
Lennert Buytenhek37797522009-10-22 20:19:45 +02001214static inline void mwl8k_save_beacon(struct ieee80211_hw *hw,
1215 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001216{
Lennert Buytenhek37797522009-10-22 20:19:45 +02001217 struct mwl8k_priv *priv = hw->priv;
1218
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001219 priv->capture_beacon = false;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001220 memset(priv->capture_bssid, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001221
1222 /*
1223 * Use GFP_ATOMIC as rxq_process is called from
1224 * the primary interrupt handler, memory allocation call
1225 * must not sleep.
1226 */
1227 priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
1228 if (priv->beacon_skb != NULL)
Lennert Buytenhek37797522009-10-22 20:19:45 +02001229 ieee80211_queue_work(hw, &priv->finalize_join_worker);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001230}
1231
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001232static inline struct mwl8k_vif *mwl8k_find_vif_bss(struct list_head *vif_list,
1233 u8 *bssid)
1234{
1235 struct mwl8k_vif *mwl8k_vif;
1236
1237 list_for_each_entry(mwl8k_vif,
1238 vif_list, list) {
1239 if (memcmp(bssid, mwl8k_vif->bssid,
1240 ETH_ALEN) == 0)
1241 return mwl8k_vif;
1242 }
1243
1244 return NULL;
1245}
1246
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001247static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
1248{
1249 struct mwl8k_priv *priv = hw->priv;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001250 struct mwl8k_vif *mwl8k_vif = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001251 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1252 int processed;
1253
1254 processed = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001255 while (rxq->rxd_count && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001256 struct sk_buff *skb;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001257 void *rxd;
1258 int pkt_len;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001259 struct ieee80211_rx_status status;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001260 struct ieee80211_hdr *wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001261 __le16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001262
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001263 skb = rxq->buf[rxq->head].skb;
Lennert Buytenhekd25f9f12009-08-03 21:58:26 +02001264 if (skb == NULL)
1265 break;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001266
1267 rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size);
1268
John W. Linville0d462bb2010-07-28 14:04:24 -04001269 pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos,
1270 &priv->noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001271 if (pkt_len < 0)
1272 break;
1273
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001274 rxq->buf[rxq->head].skb = NULL;
1275
1276 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001277 dma_unmap_addr(&rxq->buf[rxq->head], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001278 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001279 dma_unmap_addr_set(&rxq->buf[rxq->head], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001280
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001281 rxq->head++;
1282 if (rxq->head == MWL8K_RX_DESCS)
1283 rxq->head = 0;
1284
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001285 rxq->rxd_count--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001286
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001287 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001288
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001289 /*
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001290 * Check for a pending join operation. Save a
1291 * copy of the beacon and schedule a tasklet to
1292 * send a FINALIZE_JOIN command to the firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001293 */
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001294 if (mwl8k_capture_bssid(priv, (void *)skb->data))
Lennert Buytenhek37797522009-10-22 20:19:45 +02001295 mwl8k_save_beacon(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001296
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001297 if (ieee80211_has_protected(wh->frame_control)) {
1298
1299 /* Check if hw crypto has been enabled for
1300 * this bss. If yes, set the status flags
1301 * accordingly
1302 */
1303 mwl8k_vif = mwl8k_find_vif_bss(&priv->vif_list,
1304 wh->addr1);
1305
1306 if (mwl8k_vif != NULL &&
1307 mwl8k_vif->is_hw_crypto_enabled == true) {
1308 /*
1309 * When MMIC ERROR is encountered
1310 * by the firmware, payload is
1311 * dropped and only 32 bytes of
1312 * mwl8k Firmware header is sent
1313 * to the host.
1314 *
1315 * We need to add four bytes of
1316 * key information. In it
1317 * MAC80211 expects keyidx set to
1318 * 0 for triggering Counter
1319 * Measure of MMIC failure.
1320 */
1321 if (status.flag & RX_FLAG_MMIC_ERROR) {
1322 struct mwl8k_dma_data *tr;
1323 tr = (struct mwl8k_dma_data *)skb->data;
1324 memset((void *)&(tr->data), 0, 4);
1325 pkt_len += 4;
1326 }
1327
1328 if (!ieee80211_is_auth(wh->frame_control))
1329 status.flag |= RX_FLAG_IV_STRIPPED |
1330 RX_FLAG_DECRYPTED |
1331 RX_FLAG_MMIC_STRIPPED;
1332 }
1333 }
1334
1335 skb_put(skb, pkt_len);
1336 mwl8k_remove_dma_header(skb, qos);
Johannes Bergf1d58c22009-06-17 13:13:00 +02001337 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
1338 ieee80211_rx_irqsafe(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001339
1340 processed++;
1341 }
1342
1343 return processed;
1344}
1345
1346
1347/*
1348 * Packet transmission.
1349 */
1350
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001351#define MWL8K_TXD_STATUS_OK 0x00000001
1352#define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
1353#define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
1354#define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001355#define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001356
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001357#define MWL8K_QOS_QLEN_UNSPEC 0xff00
1358#define MWL8K_QOS_ACK_POLICY_MASK 0x0060
1359#define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000
1360#define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060
1361#define MWL8K_QOS_EOSP 0x0010
1362
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001363struct mwl8k_tx_desc {
1364 __le32 status;
1365 __u8 data_rate;
1366 __u8 tx_priority;
1367 __le16 qos_control;
1368 __le32 pkt_phys_addr;
1369 __le16 pkt_len;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001370 __u8 dest_MAC_addr[ETH_ALEN];
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001371 __le32 next_txd_phys_addr;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07001372 __le32 timestamp;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001373 __le16 rate_info;
1374 __u8 peer_id;
Brian Cavagnoloa1fe24b2010-11-12 17:23:47 -08001375 __u8 tx_frag_cnt;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001376} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001377
1378#define MWL8K_TX_DESCS 128
1379
1380static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1381{
1382 struct mwl8k_priv *priv = hw->priv;
1383 struct mwl8k_tx_queue *txq = priv->txq + index;
1384 int size;
1385 int i;
1386
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001387 txq->len = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001388 txq->head = 0;
1389 txq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001390
1391 size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1392
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001393 txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma);
1394 if (txq->txd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001395 wiphy_err(hw->wiphy, "failed to alloc TX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001396 return -ENOMEM;
1397 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001398 memset(txq->txd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001399
Shan Weib9ede5f2011-03-08 11:02:03 +08001400 txq->skb = kcalloc(MWL8K_TX_DESCS, sizeof(*txq->skb), GFP_KERNEL);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001401 if (txq->skb == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001402 wiphy_err(hw->wiphy, "failed to alloc TX skbuff list\n");
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001403 pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001404 return -ENOMEM;
1405 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001406
1407 for (i = 0; i < MWL8K_TX_DESCS; i++) {
1408 struct mwl8k_tx_desc *tx_desc;
1409 int nexti;
1410
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001411 tx_desc = txq->txd + i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001412 nexti = (i + 1) % MWL8K_TX_DESCS;
1413
1414 tx_desc->status = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001415 tx_desc->next_txd_phys_addr =
1416 cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001417 }
1418
1419 return 0;
1420}
1421
1422static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1423{
1424 iowrite32(MWL8K_H2A_INT_PPA_READY,
1425 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1426 iowrite32(MWL8K_H2A_INT_DUMMY,
1427 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1428 ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1429}
1430
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001431static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001432{
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001433 struct mwl8k_priv *priv = hw->priv;
1434 int i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001435
Brian Cavagnoloe6007072011-03-17 11:58:44 -07001436 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001437 struct mwl8k_tx_queue *txq = priv->txq + i;
1438 int fw_owned = 0;
1439 int drv_owned = 0;
1440 int unused = 0;
1441 int desc;
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001442
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001443 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001444 struct mwl8k_tx_desc *tx_desc = txq->txd + desc;
1445 u32 status;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001446
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001447 status = le32_to_cpu(tx_desc->status);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001448 if (status & MWL8K_TXD_STATUS_FW_OWNED)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001449 fw_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001450 else
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001451 drv_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001452
1453 if (tx_desc->pkt_len == 0)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001454 unused++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001455 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001456
Joe Perchesc96c31e2010-07-26 14:39:58 -07001457 wiphy_err(hw->wiphy,
1458 "txq[%d] len=%d head=%d tail=%d "
1459 "fw_owned=%d drv_owned=%d unused=%d\n",
1460 i,
1461 txq->len, txq->head, txq->tail,
1462 fw_owned, drv_owned, unused);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001463 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001464}
1465
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001466/*
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001467 * Must be called with priv->fw_mutex held and tx queues stopped.
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001468 */
Lennert Buytenhek62abd3c2010-01-08 18:28:34 +01001469#define MWL8K_TX_WAIT_TIMEOUT_MS 5000
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001470
Lennert Buytenhek950d5b02009-07-17 01:48:41 +02001471static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001472{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001473 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001474 DECLARE_COMPLETION_ONSTACK(tx_wait);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001475 int retry;
1476 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001477
1478 might_sleep();
1479
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001480 /*
1481 * The TX queues are stopped at this point, so this test
1482 * doesn't need to take ->tx_lock.
1483 */
1484 if (!priv->pending_tx_pkts)
1485 return 0;
1486
1487 retry = 0;
1488 rc = 0;
1489
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001490 spin_lock_bh(&priv->tx_lock);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001491 priv->tx_wait = &tx_wait;
1492 while (!rc) {
1493 int oldcount;
1494 unsigned long timeout;
1495
1496 oldcount = priv->pending_tx_pkts;
1497
1498 spin_unlock_bh(&priv->tx_lock);
1499 timeout = wait_for_completion_timeout(&tx_wait,
1500 msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS));
1501 spin_lock_bh(&priv->tx_lock);
1502
1503 if (timeout) {
1504 WARN_ON(priv->pending_tx_pkts);
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301505 if (retry)
Joe Perchesc96c31e2010-07-26 14:39:58 -07001506 wiphy_notice(hw->wiphy, "tx rings drained\n");
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001507 break;
1508 }
1509
1510 if (priv->pending_tx_pkts < oldcount) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001511 wiphy_notice(hw->wiphy,
1512 "waiting for tx rings to drain (%d -> %d pkts)\n",
1513 oldcount, priv->pending_tx_pkts);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001514 retry = 1;
1515 continue;
1516 }
1517
1518 priv->tx_wait = NULL;
1519
Joe Perchesc96c31e2010-07-26 14:39:58 -07001520 wiphy_err(hw->wiphy, "tx rings stuck for %d ms\n",
1521 MWL8K_TX_WAIT_TIMEOUT_MS);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001522 mwl8k_dump_tx_rings(hw);
1523
1524 rc = -ETIMEDOUT;
1525 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001526 spin_unlock_bh(&priv->tx_lock);
1527
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001528 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001529}
1530
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02001531#define MWL8K_TXD_SUCCESS(status) \
1532 ((status) & (MWL8K_TXD_STATUS_OK | \
1533 MWL8K_TXD_STATUS_OK_RETRY | \
1534 MWL8K_TXD_STATUS_OK_MORE_RETRY))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001535
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001536static int mwl8k_tid_queue_mapping(u8 tid)
1537{
1538 BUG_ON(tid > 7);
1539
1540 switch (tid) {
1541 case 0:
1542 case 3:
1543 return IEEE80211_AC_BE;
1544 break;
1545 case 1:
1546 case 2:
1547 return IEEE80211_AC_BK;
1548 break;
1549 case 4:
1550 case 5:
1551 return IEEE80211_AC_VI;
1552 break;
1553 case 6:
1554 case 7:
1555 return IEEE80211_AC_VO;
1556 break;
1557 default:
1558 return -1;
1559 break;
1560 }
1561}
1562
Nishant Sarmukadam17033542011-03-17 11:58:48 -07001563/* The firmware will fill in the rate information
1564 * for each packet that gets queued in the hardware
1565 * in this structure
1566 */
1567
1568struct rateinfo {
1569 __le16 format:1;
1570 __le16 short_gi:1;
1571 __le16 band_width:1;
1572 __le16 rate_id_mcs:6;
1573 __le16 adv_coding:2;
1574 __le16 antenna:2;
1575 __le16 act_sub_chan:2;
1576 __le16 preamble_type:1;
1577 __le16 power_id:4;
1578 __le16 antenna2:1;
1579 __le16 reserved:1;
1580 __le16 tx_bf_frame:1;
1581 __le16 green_field:1;
1582} __packed;
1583
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001584static int
1585mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001586{
1587 struct mwl8k_priv *priv = hw->priv;
1588 struct mwl8k_tx_queue *txq = priv->txq + index;
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001589 int processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001590
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001591 processed = 0;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001592 while (txq->len > 0 && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001593 int tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001594 struct mwl8k_tx_desc *tx_desc;
1595 unsigned long addr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001596 int size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001597 struct sk_buff *skb;
1598 struct ieee80211_tx_info *info;
1599 u32 status;
Nishant Sarmukadam17033542011-03-17 11:58:48 -07001600 struct ieee80211_sta *sta;
1601 struct mwl8k_sta *sta_info = NULL;
1602 u16 rate_info;
1603 struct rateinfo *rate;
1604 struct ieee80211_hdr *wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001605
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001606 tx = txq->head;
1607 tx_desc = txq->txd + tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001608
1609 status = le32_to_cpu(tx_desc->status);
1610
1611 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1612 if (!force)
1613 break;
1614 tx_desc->status &=
1615 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1616 }
1617
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001618 txq->head = (tx + 1) % MWL8K_TX_DESCS;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001619 BUG_ON(txq->len == 0);
1620 txq->len--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001621 priv->pending_tx_pkts--;
1622
1623 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001624 size = le16_to_cpu(tx_desc->pkt_len);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001625 skb = txq->skb[tx];
1626 txq->skb[tx] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001627
1628 BUG_ON(skb == NULL);
1629 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1630
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001631 mwl8k_remove_dma_header(skb, tx_desc->qos_control);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001632
Nishant Sarmukadam17033542011-03-17 11:58:48 -07001633 wh = (struct ieee80211_hdr *) skb->data;
1634
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001635 /* Mark descriptor as unused */
1636 tx_desc->pkt_phys_addr = 0;
1637 tx_desc->pkt_len = 0;
1638
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001639 info = IEEE80211_SKB_CB(skb);
Nishant Sarmukadam17033542011-03-17 11:58:48 -07001640 if (ieee80211_is_data(wh->frame_control)) {
1641 sta = info->control.sta;
1642 if (sta) {
1643 sta_info = MWL8K_STA(sta);
1644 BUG_ON(sta_info == NULL);
1645 rate_info = le16_to_cpu(tx_desc->rate_info);
1646 rate = (struct rateinfo *)&rate_info;
1647 /* If rate is < 6.5 Mpbs for an ht station
1648 * do not form an ampdu. If the station is a
1649 * legacy station (format = 0), do not form an
1650 * ampdu
1651 */
1652 if (rate->rate_id_mcs < 1 ||
1653 rate->format == 0) {
1654 sta_info->is_ampdu_allowed = false;
1655 } else {
1656 sta_info->is_ampdu_allowed = true;
1657 }
1658 }
1659 }
1660
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001661 ieee80211_tx_info_clear_status(info);
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001662
1663 /* Rate control is happening in the firmware.
1664 * Ensure no tx rate is being reported.
1665 */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301666 info->status.rates[0].idx = -1;
1667 info->status.rates[0].count = 1;
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001668
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001669 if (MWL8K_TXD_SUCCESS(status))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001670 info->flags |= IEEE80211_TX_STAT_ACK;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001671
1672 ieee80211_tx_status_irqsafe(hw, skb);
1673
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001674 processed++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001675 }
1676
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001677 return processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001678}
1679
1680/* must be called only when the card's transmit is completely halted */
1681static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1682{
1683 struct mwl8k_priv *priv = hw->priv;
1684 struct mwl8k_tx_queue *txq = priv->txq + index;
1685
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001686 if (txq->txd == NULL)
1687 return;
1688
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001689 mwl8k_txq_reclaim(hw, index, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001690
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001691 kfree(txq->skb);
1692 txq->skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001693
1694 pci_free_consistent(priv->pdev,
1695 MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001696 txq->txd, txq->txd_dma);
1697 txq->txd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001698}
1699
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001700/* caller must hold priv->stream_lock when calling the stream functions */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301701static struct mwl8k_ampdu_stream *
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001702mwl8k_add_stream(struct ieee80211_hw *hw, struct ieee80211_sta *sta, u8 tid)
1703{
1704 struct mwl8k_ampdu_stream *stream;
1705 struct mwl8k_priv *priv = hw->priv;
1706 int i;
1707
1708 for (i = 0; i < priv->num_ampdu_queues; i++) {
1709 stream = &priv->ampdu[i];
1710 if (stream->state == AMPDU_NO_STREAM) {
1711 stream->sta = sta;
1712 stream->state = AMPDU_STREAM_NEW;
1713 stream->tid = tid;
1714 stream->idx = i;
1715 stream->txq_idx = MWL8K_TX_WMM_QUEUES + i;
1716 wiphy_debug(hw->wiphy, "Added a new stream for %pM %d",
1717 sta->addr, tid);
1718 return stream;
1719 }
1720 }
1721 return NULL;
1722}
1723
1724static int
1725mwl8k_start_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1726{
1727 int ret;
1728
1729 /* if the stream has already been started, don't start it again */
1730 if (stream->state != AMPDU_STREAM_NEW)
1731 return 0;
1732 ret = ieee80211_start_tx_ba_session(stream->sta, stream->tid, 0);
1733 if (ret)
1734 wiphy_debug(hw->wiphy, "Failed to start stream for %pM %d: "
1735 "%d\n", stream->sta->addr, stream->tid, ret);
1736 else
1737 wiphy_debug(hw->wiphy, "Started stream for %pM %d\n",
1738 stream->sta->addr, stream->tid);
1739 return ret;
1740}
1741
1742static void
1743mwl8k_remove_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1744{
1745 wiphy_debug(hw->wiphy, "Remove stream for %pM %d\n", stream->sta->addr,
1746 stream->tid);
1747 memset(stream, 0, sizeof(*stream));
1748}
1749
1750static struct mwl8k_ampdu_stream *
1751mwl8k_lookup_stream(struct ieee80211_hw *hw, u8 *addr, u8 tid)
1752{
1753 struct mwl8k_priv *priv = hw->priv;
1754 int i;
1755
1756 for (i = 0 ; i < priv->num_ampdu_queues; i++) {
1757 struct mwl8k_ampdu_stream *stream;
1758 stream = &priv->ampdu[i];
1759 if (stream->state == AMPDU_NO_STREAM)
1760 continue;
1761 if (!memcmp(stream->sta->addr, addr, ETH_ALEN) &&
1762 stream->tid == tid)
1763 return stream;
1764 }
1765 return NULL;
1766}
1767
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001768#define MWL8K_AMPDU_PACKET_THRESHOLD 64
1769static inline bool mwl8k_ampdu_allowed(struct ieee80211_sta *sta, u8 tid)
1770{
1771 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1772 struct tx_traffic_info *tx_stats;
1773
1774 BUG_ON(tid >= MWL8K_MAX_TID);
1775 tx_stats = &sta_info->tx_stats[tid];
1776
1777 return sta_info->is_ampdu_allowed &&
1778 tx_stats->pkts > MWL8K_AMPDU_PACKET_THRESHOLD;
1779}
1780
1781static inline void mwl8k_tx_count_packet(struct ieee80211_sta *sta, u8 tid)
1782{
1783 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1784 struct tx_traffic_info *tx_stats;
1785
1786 BUG_ON(tid >= MWL8K_MAX_TID);
1787 tx_stats = &sta_info->tx_stats[tid];
1788
1789 if (tx_stats->start_time == 0)
1790 tx_stats->start_time = jiffies;
1791
1792 /* reset the packet count after each second elapses. If the number of
1793 * packets ever exceeds the ampdu_min_traffic threshold, we will allow
1794 * an ampdu stream to be started.
1795 */
1796 if (jiffies - tx_stats->start_time > HZ) {
1797 tx_stats->pkts = 0;
1798 tx_stats->start_time = 0;
1799 } else
1800 tx_stats->pkts++;
1801}
1802
Johannes Berg7bb45682011-02-24 14:42:06 +01001803static void
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001804mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb)
1805{
1806 struct mwl8k_priv *priv = hw->priv;
1807 struct ieee80211_tx_info *tx_info;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001808 struct mwl8k_vif *mwl8k_vif;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001809 struct ieee80211_sta *sta;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001810 struct ieee80211_hdr *wh;
1811 struct mwl8k_tx_queue *txq;
1812 struct mwl8k_tx_desc *tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001813 dma_addr_t dma;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001814 u32 txstatus;
1815 u8 txdatarate;
1816 u16 qos;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001817 int txpriority;
1818 u8 tid = 0;
1819 struct mwl8k_ampdu_stream *stream = NULL;
1820 bool start_ba_session = false;
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301821 bool mgmtframe = false;
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001822 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001823
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001824 wh = (struct ieee80211_hdr *)skb->data;
1825 if (ieee80211_is_data_qos(wh->frame_control))
1826 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1827 else
1828 qos = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001829
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301830 if (ieee80211_is_mgmt(wh->frame_control))
1831 mgmtframe = true;
1832
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001833 if (priv->ap_fw)
1834 mwl8k_encapsulate_tx_frame(skb);
1835 else
1836 mwl8k_add_dma_header(skb, 0);
1837
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001838 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001839
1840 tx_info = IEEE80211_SKB_CB(skb);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001841 sta = tx_info->control.sta;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001842 mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001843
1844 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001845 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Lennert Buytenhek657232b2010-01-12 13:47:47 +01001846 wh->seq_ctrl |= cpu_to_le16(mwl8k_vif->seqno);
1847 mwl8k_vif->seqno += 0x10;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001848 }
1849
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001850 /* Setup firmware control bit fields for each frame type. */
1851 txstatus = 0;
1852 txdatarate = 0;
1853 if (ieee80211_is_mgmt(wh->frame_control) ||
1854 ieee80211_is_ctl(wh->frame_control)) {
1855 txdatarate = 0;
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001856 qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001857 } else if (ieee80211_is_data(wh->frame_control)) {
1858 txdatarate = 1;
1859 if (is_multicast_ether_addr(wh->addr1))
1860 txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX;
1861
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001862 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001863 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001864 qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001865 else
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001866 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001867 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001868
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001869 /* Queue ADDBA request in the respective data queue. While setting up
1870 * the ampdu stream, mac80211 queues further packets for that
1871 * particular ra/tid pair. However, packets piled up in the hardware
1872 * for that ra/tid pair will still go out. ADDBA request and the
1873 * related data packets going out from different queues asynchronously
1874 * will cause a shift in the receiver window which might result in
1875 * ampdu packets getting dropped at the receiver after the stream has
1876 * been setup.
1877 */
1878 if (unlikely(ieee80211_is_action(wh->frame_control) &&
1879 mgmt->u.action.category == WLAN_CATEGORY_BACK &&
1880 mgmt->u.action.u.addba_req.action_code == WLAN_ACTION_ADDBA_REQ &&
1881 priv->ap_fw)) {
1882 u16 capab = le16_to_cpu(mgmt->u.action.u.addba_req.capab);
1883 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
1884 index = mwl8k_tid_queue_mapping(tid);
1885 }
1886
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001887 txpriority = index;
1888
1889 if (ieee80211_is_data_qos(wh->frame_control) &&
1890 skb->protocol != cpu_to_be16(ETH_P_PAE) &&
1891 sta->ht_cap.ht_supported && priv->ap_fw) {
1892 tid = qos & 0xf;
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001893 mwl8k_tx_count_packet(sta, tid);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001894 spin_lock(&priv->stream_lock);
1895 stream = mwl8k_lookup_stream(hw, sta->addr, tid);
1896 if (stream != NULL) {
1897 if (stream->state == AMPDU_STREAM_ACTIVE) {
1898 txpriority = stream->txq_idx;
1899 index = stream->txq_idx;
1900 } else if (stream->state == AMPDU_STREAM_NEW) {
1901 /* We get here if the driver sends us packets
1902 * after we've initiated a stream, but before
1903 * our ampdu_action routine has been called
1904 * with IEEE80211_AMPDU_TX_START to get the SSN
1905 * for the ADDBA request. So this packet can
1906 * go out with no risk of sequence number
1907 * mismatch. No special handling is required.
1908 */
1909 } else {
1910 /* Drop packets that would go out after the
1911 * ADDBA request was sent but before the ADDBA
1912 * response is received. If we don't do this,
1913 * the recipient would probably receive it
1914 * after the ADDBA request with SSN 0. This
1915 * will cause the recipient's BA receive window
1916 * to shift, which would cause the subsequent
1917 * packets in the BA stream to be discarded.
1918 * mac80211 queues our packets for us in this
1919 * case, so this is really just a safety check.
1920 */
1921 wiphy_warn(hw->wiphy,
1922 "Cannot send packet while ADDBA "
1923 "dialog is underway.\n");
1924 spin_unlock(&priv->stream_lock);
1925 dev_kfree_skb(skb);
1926 return;
1927 }
1928 } else {
1929 /* Defer calling mwl8k_start_stream so that the current
1930 * skb can go out before the ADDBA request. This
1931 * prevents sequence number mismatch at the recepient
1932 * as described above.
1933 */
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001934 if (mwl8k_ampdu_allowed(sta, tid)) {
Nishant Sarmukadam17033542011-03-17 11:58:48 -07001935 stream = mwl8k_add_stream(hw, sta, tid);
1936 if (stream != NULL)
1937 start_ba_session = true;
1938 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001939 }
1940 spin_unlock(&priv->stream_lock);
1941 }
1942
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001943 dma = pci_map_single(priv->pdev, skb->data,
1944 skb->len, PCI_DMA_TODEVICE);
1945
1946 if (pci_dma_mapping_error(priv->pdev, dma)) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001947 wiphy_debug(hw->wiphy,
1948 "failed to dma map skb, dropping TX frame.\n");
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001949 if (start_ba_session) {
1950 spin_lock(&priv->stream_lock);
1951 mwl8k_remove_stream(hw, stream);
1952 spin_unlock(&priv->stream_lock);
1953 }
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001954 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001955 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001956 }
1957
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001958 spin_lock_bh(&priv->tx_lock);
1959
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001960 txq = priv->txq + index;
1961
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301962 /* Mgmt frames that go out frequently are probe
1963 * responses. Other mgmt frames got out relatively
1964 * infrequently. Hence reserve 2 buffers so that
1965 * other mgmt frames do not get dropped due to an
1966 * already queued probe response in one of the
1967 * reserved buffers.
1968 */
1969
1970 if (txq->len >= MWL8K_TX_DESCS - 2) {
1971 if (mgmtframe == false ||
1972 txq->len == MWL8K_TX_DESCS) {
1973 if (start_ba_session) {
1974 spin_lock(&priv->stream_lock);
1975 mwl8k_remove_stream(hw, stream);
1976 spin_unlock(&priv->stream_lock);
1977 }
1978 spin_unlock_bh(&priv->tx_lock);
1979 dev_kfree_skb(skb);
1980 return;
Pradeep Nemavat3a7dbc32011-04-21 16:34:56 +05301981 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001982 }
1983
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001984 BUG_ON(txq->skb[txq->tail] != NULL);
1985 txq->skb[txq->tail] = skb;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001986
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001987 tx = txq->txd + txq->tail;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001988 tx->data_rate = txdatarate;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001989 tx->tx_priority = txpriority;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001990 tx->qos_control = cpu_to_le16(qos);
1991 tx->pkt_phys_addr = cpu_to_le32(dma);
1992 tx->pkt_len = cpu_to_le16(skb->len);
1993 tx->rate_info = 0;
Lennert Buytenheka6804002010-01-04 21:55:42 +01001994 if (!priv->ap_fw && tx_info->control.sta != NULL)
1995 tx->peer_id = MWL8K_STA(tx_info->control.sta)->peer_id;
1996 else
1997 tx->peer_id = 0;
Pradeep Nemavat566875d2011-04-21 16:34:57 +05301998
1999 if (priv->ap_fw)
2000 tx->timestamp = cpu_to_le32(ioread32(priv->regs +
2001 MWL8K_HW_TIMER_REGISTER));
2002
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002003 wmb();
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002004 tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
2005
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02002006 txq->len++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002007 priv->pending_tx_pkts++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002008
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002009 txq->tail++;
2010 if (txq->tail == MWL8K_TX_DESCS)
2011 txq->tail = 0;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002012
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002013 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002014
2015 spin_unlock_bh(&priv->tx_lock);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002016
2017 /* Initiate the ampdu session here */
2018 if (start_ba_session) {
2019 spin_lock(&priv->stream_lock);
2020 if (mwl8k_start_stream(hw, stream))
2021 mwl8k_remove_stream(hw, stream);
2022 spin_unlock(&priv->stream_lock);
2023 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002024}
2025
2026
2027/*
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002028 * Firmware access.
2029 *
2030 * We have the following requirements for issuing firmware commands:
2031 * - Some commands require that the packet transmit path is idle when
2032 * the command is issued. (For simplicity, we'll just quiesce the
2033 * transmit path for every command.)
2034 * - There are certain sequences of commands that need to be issued to
2035 * the hardware sequentially, with no other intervening commands.
2036 *
2037 * This leads to an implementation of a "firmware lock" as a mutex that
2038 * can be taken recursively, and which is taken by both the low-level
2039 * command submission function (mwl8k_post_cmd) as well as any users of
2040 * that function that require issuing of an atomic sequence of commands,
2041 * and quiesces the transmit path whenever it's taken.
2042 */
2043static int mwl8k_fw_lock(struct ieee80211_hw *hw)
2044{
2045 struct mwl8k_priv *priv = hw->priv;
2046
2047 if (priv->fw_mutex_owner != current) {
2048 int rc;
2049
2050 mutex_lock(&priv->fw_mutex);
2051 ieee80211_stop_queues(hw);
2052
2053 rc = mwl8k_tx_wait_empty(hw);
2054 if (rc) {
2055 ieee80211_wake_queues(hw);
2056 mutex_unlock(&priv->fw_mutex);
2057
2058 return rc;
2059 }
2060
2061 priv->fw_mutex_owner = current;
2062 }
2063
2064 priv->fw_mutex_depth++;
2065
2066 return 0;
2067}
2068
2069static void mwl8k_fw_unlock(struct ieee80211_hw *hw)
2070{
2071 struct mwl8k_priv *priv = hw->priv;
2072
2073 if (!--priv->fw_mutex_depth) {
2074 ieee80211_wake_queues(hw);
2075 priv->fw_mutex_owner = NULL;
2076 mutex_unlock(&priv->fw_mutex);
2077 }
2078}
2079
2080
2081/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002082 * Command processing.
2083 */
2084
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01002085/* Timeout firmware commands after 10s */
2086#define MWL8K_CMD_TIMEOUT_MS 10000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002087
2088static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
2089{
2090 DECLARE_COMPLETION_ONSTACK(cmd_wait);
2091 struct mwl8k_priv *priv = hw->priv;
2092 void __iomem *regs = priv->regs;
2093 dma_addr_t dma_addr;
2094 unsigned int dma_size;
2095 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002096 unsigned long timeout = 0;
2097 u8 buf[32];
2098
John W. Linvilleb6037422010-07-20 13:55:00 -04002099 cmd->result = (__force __le16) 0xffff;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002100 dma_size = le16_to_cpu(cmd->length);
2101 dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
2102 PCI_DMA_BIDIRECTIONAL);
2103 if (pci_dma_mapping_error(priv->pdev, dma_addr))
2104 return -ENOMEM;
2105
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002106 rc = mwl8k_fw_lock(hw);
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02002107 if (rc) {
2108 pci_unmap_single(priv->pdev, dma_addr, dma_size,
2109 PCI_DMA_BIDIRECTIONAL);
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002110 return rc;
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02002111 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002112
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002113 priv->hostcmd_wait = &cmd_wait;
2114 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
2115 iowrite32(MWL8K_H2A_INT_DOORBELL,
2116 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
2117 iowrite32(MWL8K_H2A_INT_DUMMY,
2118 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002119
2120 timeout = wait_for_completion_timeout(&cmd_wait,
2121 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
2122
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002123 priv->hostcmd_wait = NULL;
2124
2125 mwl8k_fw_unlock(hw);
2126
Lennert Buytenhek37055bd2009-08-03 21:58:47 +02002127 pci_unmap_single(priv->pdev, dma_addr, dma_size,
2128 PCI_DMA_BIDIRECTIONAL);
2129
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002130 if (!timeout) {
Joe Perches5db55842010-08-11 19:11:19 -07002131 wiphy_err(hw->wiphy, "Command %s timeout after %u ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002132 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2133 MWL8K_CMD_TIMEOUT_MS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002134 rc = -ETIMEDOUT;
2135 } else {
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01002136 int ms;
2137
2138 ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout);
2139
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002140 rc = cmd->result ? -EINVAL : 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002141 if (rc)
Joe Perches5db55842010-08-11 19:11:19 -07002142 wiphy_err(hw->wiphy, "Command %s error 0x%x\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002143 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2144 le16_to_cpu(cmd->result));
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01002145 else if (ms > 2000)
Joe Perches5db55842010-08-11 19:11:19 -07002146 wiphy_notice(hw->wiphy, "Command %s took %d ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002147 mwl8k_cmd_name(cmd->code,
2148 buf, sizeof(buf)),
2149 ms);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002150 }
2151
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002152 return rc;
2153}
2154
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +01002155static int mwl8k_post_pervif_cmd(struct ieee80211_hw *hw,
2156 struct ieee80211_vif *vif,
2157 struct mwl8k_cmd_pkt *cmd)
2158{
2159 if (vif != NULL)
2160 cmd->macid = MWL8K_VIF(vif)->macid;
2161 return mwl8k_post_cmd(hw, cmd);
2162}
2163
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002164/*
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002165 * Setup code shared between STA and AP firmware images.
2166 */
2167static void mwl8k_setup_2ghz_band(struct ieee80211_hw *hw)
2168{
2169 struct mwl8k_priv *priv = hw->priv;
2170
2171 BUILD_BUG_ON(sizeof(priv->channels_24) != sizeof(mwl8k_channels_24));
2172 memcpy(priv->channels_24, mwl8k_channels_24, sizeof(mwl8k_channels_24));
2173
2174 BUILD_BUG_ON(sizeof(priv->rates_24) != sizeof(mwl8k_rates_24));
2175 memcpy(priv->rates_24, mwl8k_rates_24, sizeof(mwl8k_rates_24));
2176
2177 priv->band_24.band = IEEE80211_BAND_2GHZ;
2178 priv->band_24.channels = priv->channels_24;
2179 priv->band_24.n_channels = ARRAY_SIZE(mwl8k_channels_24);
2180 priv->band_24.bitrates = priv->rates_24;
2181 priv->band_24.n_bitrates = ARRAY_SIZE(mwl8k_rates_24);
2182
2183 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band_24;
2184}
2185
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +01002186static void mwl8k_setup_5ghz_band(struct ieee80211_hw *hw)
2187{
2188 struct mwl8k_priv *priv = hw->priv;
2189
2190 BUILD_BUG_ON(sizeof(priv->channels_50) != sizeof(mwl8k_channels_50));
2191 memcpy(priv->channels_50, mwl8k_channels_50, sizeof(mwl8k_channels_50));
2192
2193 BUILD_BUG_ON(sizeof(priv->rates_50) != sizeof(mwl8k_rates_50));
2194 memcpy(priv->rates_50, mwl8k_rates_50, sizeof(mwl8k_rates_50));
2195
2196 priv->band_50.band = IEEE80211_BAND_5GHZ;
2197 priv->band_50.channels = priv->channels_50;
2198 priv->band_50.n_channels = ARRAY_SIZE(mwl8k_channels_50);
2199 priv->band_50.bitrates = priv->rates_50;
2200 priv->band_50.n_bitrates = ARRAY_SIZE(mwl8k_rates_50);
2201
2202 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &priv->band_50;
2203}
2204
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002205/*
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02002206 * CMD_GET_HW_SPEC (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002207 */
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02002208struct mwl8k_cmd_get_hw_spec_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002209 struct mwl8k_cmd_pkt header;
2210 __u8 hw_rev;
2211 __u8 host_interface;
2212 __le16 num_mcaddrs;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002213 __u8 perm_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002214 __le16 region_code;
2215 __le32 fw_rev;
2216 __le32 ps_cookie;
2217 __le32 caps;
2218 __u8 mcs_bitmap[16];
2219 __le32 rx_queue_ptr;
2220 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002221 __le32 tx_queue_ptrs[MWL8K_TX_WMM_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002222 __le32 caps2;
2223 __le32 num_tx_desc_per_queue;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002224 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002225} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002226
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002227#define MWL8K_CAP_MAX_AMSDU 0x20000000
2228#define MWL8K_CAP_GREENFIELD 0x08000000
2229#define MWL8K_CAP_AMPDU 0x04000000
2230#define MWL8K_CAP_RX_STBC 0x01000000
2231#define MWL8K_CAP_TX_STBC 0x00800000
2232#define MWL8K_CAP_SHORTGI_40MHZ 0x00400000
2233#define MWL8K_CAP_SHORTGI_20MHZ 0x00200000
2234#define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000
2235#define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000
2236#define MWL8K_CAP_DELAY_BA 0x00003000
2237#define MWL8K_CAP_MIMO 0x00000200
2238#define MWL8K_CAP_40MHZ 0x00000100
Lennert Buytenhek06953232010-01-12 13:49:41 +01002239#define MWL8K_CAP_BAND_MASK 0x00000007
2240#define MWL8K_CAP_5GHZ 0x00000004
2241#define MWL8K_CAP_2GHZ4 0x00000001
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002242
Lennert Buytenhek06953232010-01-12 13:49:41 +01002243static void
2244mwl8k_set_ht_caps(struct ieee80211_hw *hw,
2245 struct ieee80211_supported_band *band, u32 cap)
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002246{
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002247 int rx_streams;
2248 int tx_streams;
2249
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002250 band->ht_cap.ht_supported = 1;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002251
2252 if (cap & MWL8K_CAP_MAX_AMSDU)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002253 band->ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002254 if (cap & MWL8K_CAP_GREENFIELD)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002255 band->ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002256 if (cap & MWL8K_CAP_AMPDU) {
2257 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002258 band->ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
2259 band->ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002260 }
2261 if (cap & MWL8K_CAP_RX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002262 band->ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002263 if (cap & MWL8K_CAP_TX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002264 band->ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002265 if (cap & MWL8K_CAP_SHORTGI_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002266 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002267 if (cap & MWL8K_CAP_SHORTGI_20MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002268 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002269 if (cap & MWL8K_CAP_DELAY_BA)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002270 band->ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002271 if (cap & MWL8K_CAP_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002272 band->ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002273
2274 rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK);
2275 tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK);
2276
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002277 band->ht_cap.mcs.rx_mask[0] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002278 if (rx_streams >= 2)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002279 band->ht_cap.mcs.rx_mask[1] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002280 if (rx_streams >= 3)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002281 band->ht_cap.mcs.rx_mask[2] = 0xff;
2282 band->ht_cap.mcs.rx_mask[4] = 0x01;
2283 band->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002284
2285 if (rx_streams != tx_streams) {
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002286 band->ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
2287 band->ht_cap.mcs.tx_params |= (tx_streams - 1) <<
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002288 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
2289 }
2290}
2291
Lennert Buytenhek06953232010-01-12 13:49:41 +01002292static void
2293mwl8k_set_caps(struct ieee80211_hw *hw, u32 caps)
2294{
2295 struct mwl8k_priv *priv = hw->priv;
2296
2297 if ((caps & MWL8K_CAP_2GHZ4) || !(caps & MWL8K_CAP_BAND_MASK)) {
2298 mwl8k_setup_2ghz_band(hw);
2299 if (caps & MWL8K_CAP_MIMO)
2300 mwl8k_set_ht_caps(hw, &priv->band_24, caps);
2301 }
2302
2303 if (caps & MWL8K_CAP_5GHZ) {
2304 mwl8k_setup_5ghz_band(hw);
2305 if (caps & MWL8K_CAP_MIMO)
2306 mwl8k_set_ht_caps(hw, &priv->band_50, caps);
2307 }
2308}
2309
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02002310static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002311{
2312 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02002313 struct mwl8k_cmd_get_hw_spec_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002314 int rc;
2315 int i;
2316
2317 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2318 if (cmd == NULL)
2319 return -ENOMEM;
2320
2321 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2322 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2323
2324 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2325 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002326 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002327 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
2328 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002329 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002330 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002331 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002332
2333 rc = mwl8k_post_cmd(hw, &cmd->header);
2334
2335 if (!rc) {
2336 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2337 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002338 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002339 priv->hw_rev = cmd->hw_rev;
Lennert Buytenhek06953232010-01-12 13:49:41 +01002340 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002341 priv->ap_macids_supported = 0x00000000;
2342 priv->sta_macids_supported = 0x00000001;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002343 }
2344
2345 kfree(cmd);
2346 return rc;
2347}
2348
2349/*
Lennert Buytenhek42fba212009-10-22 20:21:30 +02002350 * CMD_GET_HW_SPEC (AP version).
2351 */
2352struct mwl8k_cmd_get_hw_spec_ap {
2353 struct mwl8k_cmd_pkt header;
2354 __u8 hw_rev;
2355 __u8 host_interface;
2356 __le16 num_wcb;
2357 __le16 num_mcaddrs;
2358 __u8 perm_addr[ETH_ALEN];
2359 __le16 region_code;
2360 __le16 num_antenna;
2361 __le32 fw_rev;
2362 __le32 wcbbase0;
2363 __le32 rxwrptr;
2364 __le32 rxrdptr;
2365 __le32 ps_cookie;
2366 __le32 wcbbase1;
2367 __le32 wcbbase2;
2368 __le32 wcbbase3;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002369 __le32 fw_api_version;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002370 __le32 caps;
2371 __le32 num_of_ampdu_queues;
2372 __le32 wcbbase_ampdu[MWL8K_MAX_AMPDU_QUEUES];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002373} __packed;
Lennert Buytenhek42fba212009-10-22 20:21:30 +02002374
2375static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw)
2376{
2377 struct mwl8k_priv *priv = hw->priv;
2378 struct mwl8k_cmd_get_hw_spec_ap *cmd;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002379 int rc, i;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002380 u32 api_version;
Lennert Buytenhek42fba212009-10-22 20:21:30 +02002381
2382 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2383 if (cmd == NULL)
2384 return -ENOMEM;
2385
2386 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2387 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2388
2389 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2390 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2391
2392 rc = mwl8k_post_cmd(hw, &cmd->header);
2393
2394 if (!rc) {
2395 int off;
2396
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002397 api_version = le32_to_cpu(cmd->fw_api_version);
2398 if (priv->device_info->fw_api_ap != api_version) {
2399 printk(KERN_ERR "%s: Unsupported fw API version for %s."
2400 " Expected %d got %d.\n", MWL8K_NAME,
2401 priv->device_info->part_name,
2402 priv->device_info->fw_api_ap,
2403 api_version);
2404 rc = -EINVAL;
2405 goto done;
2406 }
Lennert Buytenhek42fba212009-10-22 20:21:30 +02002407 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2408 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
2409 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
2410 priv->hw_rev = cmd->hw_rev;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002411 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002412 priv->ap_macids_supported = 0x000000ff;
2413 priv->sta_macids_supported = 0x00000000;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002414 priv->num_ampdu_queues = le32_to_cpu(cmd->num_of_ampdu_queues);
2415 if (priv->num_ampdu_queues > MWL8K_MAX_AMPDU_QUEUES) {
2416 wiphy_warn(hw->wiphy, "fw reported %d ampdu queues"
2417 " but we only support %d.\n",
2418 priv->num_ampdu_queues,
2419 MWL8K_MAX_AMPDU_QUEUES);
2420 priv->num_ampdu_queues = MWL8K_MAX_AMPDU_QUEUES;
2421 }
Lennert Buytenhek42fba212009-10-22 20:21:30 +02002422 off = le32_to_cpu(cmd->rxwrptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002423 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba212009-10-22 20:21:30 +02002424
2425 off = le32_to_cpu(cmd->rxrdptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002426 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba212009-10-22 20:21:30 +02002427
Brian Cavagnolo73b46322011-03-17 11:58:41 -07002428 priv->txq_offset[0] = le32_to_cpu(cmd->wcbbase0) & 0xffff;
2429 priv->txq_offset[1] = le32_to_cpu(cmd->wcbbase1) & 0xffff;
2430 priv->txq_offset[2] = le32_to_cpu(cmd->wcbbase2) & 0xffff;
2431 priv->txq_offset[3] = le32_to_cpu(cmd->wcbbase3) & 0xffff;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002432
2433 for (i = 0; i < priv->num_ampdu_queues; i++)
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002434 priv->txq_offset[i + MWL8K_TX_WMM_QUEUES] =
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002435 le32_to_cpu(cmd->wcbbase_ampdu[i]) & 0xffff;
Lennert Buytenhek42fba212009-10-22 20:21:30 +02002436 }
2437
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002438done:
Lennert Buytenhek42fba212009-10-22 20:21:30 +02002439 kfree(cmd);
2440 return rc;
2441}
2442
2443/*
2444 * CMD_SET_HW_SPEC.
2445 */
2446struct mwl8k_cmd_set_hw_spec {
2447 struct mwl8k_cmd_pkt header;
2448 __u8 hw_rev;
2449 __u8 host_interface;
2450 __le16 num_mcaddrs;
2451 __u8 perm_addr[ETH_ALEN];
2452 __le16 region_code;
2453 __le32 fw_rev;
2454 __le32 ps_cookie;
2455 __le32 caps;
2456 __le32 rx_queue_ptr;
2457 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002458 __le32 tx_queue_ptrs[MWL8K_MAX_TX_QUEUES];
Lennert Buytenhek42fba212009-10-22 20:21:30 +02002459 __le32 flags;
2460 __le32 num_tx_desc_per_queue;
2461 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002462} __packed;
Lennert Buytenhek42fba212009-10-22 20:21:30 +02002463
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002464/* If enabled, MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY will cause
2465 * packets to expire 500 ms after the timestamp in the tx descriptor. That is,
2466 * the packets that are queued for more than 500ms, will be dropped in the
2467 * hardware. This helps minimizing the issues caused due to head-of-line
2468 * blocking where a slow client can hog the bandwidth and affect traffic to a
2469 * faster client.
2470 */
2471#define MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY 0x00000400
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002472#define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080
2473#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP 0x00000020
2474#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON 0x00000010
Lennert Buytenhek42fba212009-10-22 20:21:30 +02002475
2476static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw)
2477{
2478 struct mwl8k_priv *priv = hw->priv;
2479 struct mwl8k_cmd_set_hw_spec *cmd;
2480 int rc;
2481 int i;
2482
2483 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2484 if (cmd == NULL)
2485 return -ENOMEM;
2486
2487 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC);
2488 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2489
2490 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2491 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002492 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002493
2494 /*
2495 * Mac80211 stack has Q0 as highest priority and Q3 as lowest in
2496 * that order. Firmware has Q3 as highest priority and Q0 as lowest
2497 * in that order. Map Q3 of mac80211 to Q0 of firmware so that the
2498 * priority is interpreted the right way in firmware.
2499 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002500 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
2501 int j = mwl8k_tx_queues(priv) - 1 - i;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002502 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[j].txd_dma);
2503 }
2504
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002505 cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT |
2506 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP |
2507 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON);
Lennert Buytenhek42fba212009-10-22 20:21:30 +02002508 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
2509 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
2510
2511 rc = mwl8k_post_cmd(hw, &cmd->header);
2512 kfree(cmd);
2513
2514 return rc;
2515}
2516
2517/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002518 * CMD_MAC_MULTICAST_ADR.
2519 */
2520struct mwl8k_cmd_mac_multicast_adr {
2521 struct mwl8k_cmd_pkt header;
2522 __le16 action;
2523 __le16 numaddr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002524 __u8 addr[0][ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002525};
2526
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002527#define MWL8K_ENABLE_RX_DIRECTED 0x0001
2528#define MWL8K_ENABLE_RX_MULTICAST 0x0002
2529#define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004
2530#define MWL8K_ENABLE_RX_BROADCAST 0x0008
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002531
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002532static struct mwl8k_cmd_pkt *
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002533__mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti,
Jiri Pirko22bedad2010-04-01 21:22:57 +00002534 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002535{
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002536 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002537 struct mwl8k_cmd_mac_multicast_adr *cmd;
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002538 int size;
Jiri Pirko22bedad2010-04-01 21:22:57 +00002539 int mc_count = 0;
2540
2541 if (mc_list)
2542 mc_count = netdev_hw_addr_list_count(mc_list);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002543
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002544 if (allmulti || mc_count > priv->num_mcaddrs) {
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002545 allmulti = 1;
2546 mc_count = 0;
2547 }
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002548
2549 size = sizeof(*cmd) + mc_count * ETH_ALEN;
2550
2551 cmd = kzalloc(size, GFP_ATOMIC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002552 if (cmd == NULL)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002553 return NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002554
2555 cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
2556 cmd->header.length = cpu_to_le16(size);
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002557 cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED |
2558 MWL8K_ENABLE_RX_BROADCAST);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002559
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002560 if (allmulti) {
2561 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST);
2562 } else if (mc_count) {
Jiri Pirko22bedad2010-04-01 21:22:57 +00002563 struct netdev_hw_addr *ha;
2564 int i = 0;
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002565
2566 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
2567 cmd->numaddr = cpu_to_le16(mc_count);
Jiri Pirko22bedad2010-04-01 21:22:57 +00002568 netdev_hw_addr_list_for_each(ha, mc_list) {
2569 memcpy(cmd->addr[i], ha->addr, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002570 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002571 }
2572
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002573 return &cmd->header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002574}
2575
2576/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002577 * CMD_GET_STAT.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002578 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002579struct mwl8k_cmd_get_stat {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002580 struct mwl8k_cmd_pkt header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002581 __le32 stats[64];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002582} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002583
2584#define MWL8K_STAT_ACK_FAILURE 9
2585#define MWL8K_STAT_RTS_FAILURE 12
2586#define MWL8K_STAT_FCS_ERROR 24
2587#define MWL8K_STAT_RTS_SUCCESS 11
2588
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002589static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw,
2590 struct ieee80211_low_level_stats *stats)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002591{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002592 struct mwl8k_cmd_get_stat *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002593 int rc;
2594
2595 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2596 if (cmd == NULL)
2597 return -ENOMEM;
2598
2599 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
2600 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002601
2602 rc = mwl8k_post_cmd(hw, &cmd->header);
2603 if (!rc) {
2604 stats->dot11ACKFailureCount =
2605 le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
2606 stats->dot11RTSFailureCount =
2607 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
2608 stats->dot11FCSErrorCount =
2609 le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
2610 stats->dot11RTSSuccessCount =
2611 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
2612 }
2613 kfree(cmd);
2614
2615 return rc;
2616}
2617
2618/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002619 * CMD_RADIO_CONTROL.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002620 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002621struct mwl8k_cmd_radio_control {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002622 struct mwl8k_cmd_pkt header;
2623 __le16 action;
2624 __le16 control;
2625 __le16 radio_on;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002626} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002627
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002628static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002629mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002630{
2631 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002632 struct mwl8k_cmd_radio_control *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002633 int rc;
2634
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002635 if (enable == priv->radio_on && !force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002636 return 0;
2637
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002638 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2639 if (cmd == NULL)
2640 return -ENOMEM;
2641
2642 cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
2643 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2644 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002645 cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002646 cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
2647
2648 rc = mwl8k_post_cmd(hw, &cmd->header);
2649 kfree(cmd);
2650
2651 if (!rc)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002652 priv->radio_on = enable;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002653
2654 return rc;
2655}
2656
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002657static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002658{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002659 return mwl8k_cmd_radio_control(hw, 0, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002660}
2661
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002662static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002663{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002664 return mwl8k_cmd_radio_control(hw, 1, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002665}
2666
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002667static int
2668mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
2669{
Lennert Buytenhek99200a992009-11-30 18:31:40 +01002670 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002671
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002672 priv->radio_short_preamble = short_preamble;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002673
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002674 return mwl8k_cmd_radio_control(hw, 1, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002675}
2676
2677/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002678 * CMD_RF_TX_POWER.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002679 */
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002680#define MWL8K_RF_TX_POWER_LEVEL_TOTAL 8
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002681
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002682struct mwl8k_cmd_rf_tx_power {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002683 struct mwl8k_cmd_pkt header;
2684 __le16 action;
2685 __le16 support_level;
2686 __le16 current_level;
2687 __le16 reserved;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002688 __le16 power_level_list[MWL8K_RF_TX_POWER_LEVEL_TOTAL];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002689} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002690
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002691static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw *hw, int dBm)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002692{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002693 struct mwl8k_cmd_rf_tx_power *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002694 int rc;
2695
2696 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2697 if (cmd == NULL)
2698 return -ENOMEM;
2699
2700 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
2701 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2702 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2703 cmd->support_level = cpu_to_le16(dBm);
2704
2705 rc = mwl8k_post_cmd(hw, &cmd->header);
2706 kfree(cmd);
2707
2708 return rc;
2709}
2710
2711/*
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002712 * CMD_TX_POWER.
2713 */
2714#define MWL8K_TX_POWER_LEVEL_TOTAL 12
2715
2716struct mwl8k_cmd_tx_power {
2717 struct mwl8k_cmd_pkt header;
2718 __le16 action;
2719 __le16 band;
2720 __le16 channel;
2721 __le16 bw;
2722 __le16 sub_ch;
2723 __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05302724} __packed;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002725
2726static int mwl8k_cmd_tx_power(struct ieee80211_hw *hw,
2727 struct ieee80211_conf *conf,
2728 unsigned short pwr)
2729{
2730 struct ieee80211_channel *channel = conf->channel;
2731 struct mwl8k_cmd_tx_power *cmd;
2732 int rc;
2733 int i;
2734
2735 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2736 if (cmd == NULL)
2737 return -ENOMEM;
2738
2739 cmd->header.code = cpu_to_le16(MWL8K_CMD_TX_POWER);
2740 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2741 cmd->action = cpu_to_le16(MWL8K_CMD_SET_LIST);
2742
2743 if (channel->band == IEEE80211_BAND_2GHZ)
2744 cmd->band = cpu_to_le16(0x1);
2745 else if (channel->band == IEEE80211_BAND_5GHZ)
2746 cmd->band = cpu_to_le16(0x4);
2747
2748 cmd->channel = channel->hw_value;
2749
2750 if (conf->channel_type == NL80211_CHAN_NO_HT ||
2751 conf->channel_type == NL80211_CHAN_HT20) {
2752 cmd->bw = cpu_to_le16(0x2);
2753 } else {
2754 cmd->bw = cpu_to_le16(0x4);
2755 if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2756 cmd->sub_ch = cpu_to_le16(0x3);
2757 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2758 cmd->sub_ch = cpu_to_le16(0x1);
2759 }
2760
2761 for (i = 0; i < MWL8K_TX_POWER_LEVEL_TOTAL; i++)
2762 cmd->power_level_list[i] = cpu_to_le16(pwr);
2763
2764 rc = mwl8k_post_cmd(hw, &cmd->header);
2765 kfree(cmd);
2766
2767 return rc;
2768}
2769
2770/*
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002771 * CMD_RF_ANTENNA.
2772 */
2773struct mwl8k_cmd_rf_antenna {
2774 struct mwl8k_cmd_pkt header;
2775 __le16 antenna;
2776 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002777} __packed;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002778
2779#define MWL8K_RF_ANTENNA_RX 1
2780#define MWL8K_RF_ANTENNA_TX 2
2781
2782static int
2783mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask)
2784{
2785 struct mwl8k_cmd_rf_antenna *cmd;
2786 int rc;
2787
2788 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2789 if (cmd == NULL)
2790 return -ENOMEM;
2791
2792 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA);
2793 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2794 cmd->antenna = cpu_to_le16(antenna);
2795 cmd->mode = cpu_to_le16(mask);
2796
2797 rc = mwl8k_post_cmd(hw, &cmd->header);
2798 kfree(cmd);
2799
2800 return rc;
2801}
2802
2803/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002804 * CMD_SET_BEACON.
2805 */
2806struct mwl8k_cmd_set_beacon {
2807 struct mwl8k_cmd_pkt header;
2808 __le16 beacon_len;
2809 __u8 beacon[0];
2810};
2811
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01002812static int mwl8k_cmd_set_beacon(struct ieee80211_hw *hw,
2813 struct ieee80211_vif *vif, u8 *beacon, int len)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002814{
2815 struct mwl8k_cmd_set_beacon *cmd;
2816 int rc;
2817
2818 cmd = kzalloc(sizeof(*cmd) + len, GFP_KERNEL);
2819 if (cmd == NULL)
2820 return -ENOMEM;
2821
2822 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_BEACON);
2823 cmd->header.length = cpu_to_le16(sizeof(*cmd) + len);
2824 cmd->beacon_len = cpu_to_le16(len);
2825 memcpy(cmd->beacon, beacon, len);
2826
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01002827 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002828 kfree(cmd);
2829
2830 return rc;
2831}
2832
2833/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002834 * CMD_SET_PRE_SCAN.
2835 */
2836struct mwl8k_cmd_set_pre_scan {
2837 struct mwl8k_cmd_pkt header;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002838} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002839
2840static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
2841{
2842 struct mwl8k_cmd_set_pre_scan *cmd;
2843 int rc;
2844
2845 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2846 if (cmd == NULL)
2847 return -ENOMEM;
2848
2849 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
2850 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2851
2852 rc = mwl8k_post_cmd(hw, &cmd->header);
2853 kfree(cmd);
2854
2855 return rc;
2856}
2857
2858/*
2859 * CMD_SET_POST_SCAN.
2860 */
2861struct mwl8k_cmd_set_post_scan {
2862 struct mwl8k_cmd_pkt header;
2863 __le32 isibss;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002864 __u8 bssid[ETH_ALEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002865} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002866
2867static int
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002868mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002869{
2870 struct mwl8k_cmd_set_post_scan *cmd;
2871 int rc;
2872
2873 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2874 if (cmd == NULL)
2875 return -ENOMEM;
2876
2877 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
2878 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2879 cmd->isibss = 0;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002880 memcpy(cmd->bssid, mac, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002881
2882 rc = mwl8k_post_cmd(hw, &cmd->header);
2883 kfree(cmd);
2884
2885 return rc;
2886}
2887
2888/*
2889 * CMD_SET_RF_CHANNEL.
2890 */
2891struct mwl8k_cmd_set_rf_channel {
2892 struct mwl8k_cmd_pkt header;
2893 __le16 action;
2894 __u8 current_channel;
2895 __le32 channel_flags;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002896} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002897
2898static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002899 struct ieee80211_conf *conf)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002900{
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002901 struct ieee80211_channel *channel = conf->channel;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002902 struct mwl8k_cmd_set_rf_channel *cmd;
2903 int rc;
2904
2905 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2906 if (cmd == NULL)
2907 return -ENOMEM;
2908
2909 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
2910 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2911 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2912 cmd->current_channel = channel->hw_value;
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002913
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002914 if (channel->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002915 cmd->channel_flags |= cpu_to_le32(0x00000001);
Lennert Buytenhek42574ea2010-01-12 13:49:18 +01002916 else if (channel->band == IEEE80211_BAND_5GHZ)
2917 cmd->channel_flags |= cpu_to_le32(0x00000004);
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002918
2919 if (conf->channel_type == NL80211_CHAN_NO_HT ||
2920 conf->channel_type == NL80211_CHAN_HT20)
2921 cmd->channel_flags |= cpu_to_le32(0x00000080);
2922 else if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2923 cmd->channel_flags |= cpu_to_le32(0x000001900);
2924 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2925 cmd->channel_flags |= cpu_to_le32(0x000000900);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002926
2927 rc = mwl8k_post_cmd(hw, &cmd->header);
2928 kfree(cmd);
2929
2930 return rc;
2931}
2932
2933/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002934 * CMD_SET_AID.
2935 */
2936#define MWL8K_FRAME_PROT_DISABLED 0x00
2937#define MWL8K_FRAME_PROT_11G 0x07
2938#define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
2939#define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
2940
2941struct mwl8k_cmd_update_set_aid {
2942 struct mwl8k_cmd_pkt header;
2943 __le16 aid;
2944
2945 /* AP's MAC address (BSSID) */
2946 __u8 bssid[ETH_ALEN];
2947 __le16 protection_mode;
2948 __u8 supp_rates[14];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002949} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002950
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002951static void legacy_rate_mask_to_array(u8 *rates, u32 mask)
2952{
2953 int i;
2954 int j;
2955
2956 /*
2957 * Clear nonstandard rates 4 and 13.
2958 */
2959 mask &= 0x1fef;
2960
2961 for (i = 0, j = 0; i < 14; i++) {
2962 if (mask & (1 << i))
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002963 rates[j++] = mwl8k_rates_24[i].hw_value;
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002964 }
2965}
2966
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002967static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002968mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
2969 struct ieee80211_vif *vif, u32 legacy_rate_mask)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002970{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002971 struct mwl8k_cmd_update_set_aid *cmd;
2972 u16 prot_mode;
2973 int rc;
2974
2975 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2976 if (cmd == NULL)
2977 return -ENOMEM;
2978
2979 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
2980 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002981 cmd->aid = cpu_to_le16(vif->bss_conf.aid);
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002982 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002983
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002984 if (vif->bss_conf.use_cts_prot) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002985 prot_mode = MWL8K_FRAME_PROT_11G;
2986 } else {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002987 switch (vif->bss_conf.ht_operation_mode &
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002988 IEEE80211_HT_OP_MODE_PROTECTION) {
2989 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
2990 prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
2991 break;
2992 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
2993 prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
2994 break;
2995 default:
2996 prot_mode = MWL8K_FRAME_PROT_DISABLED;
2997 break;
2998 }
2999 }
3000 cmd->protection_mode = cpu_to_le16(prot_mode);
3001
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003002 legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003003
3004 rc = mwl8k_post_cmd(hw, &cmd->header);
3005 kfree(cmd);
3006
3007 return rc;
3008}
3009
3010/*
3011 * CMD_SET_RATE.
3012 */
3013struct mwl8k_cmd_set_rate {
3014 struct mwl8k_cmd_pkt header;
3015 __u8 legacy_rates[14];
3016
3017 /* Bitmap for supported MCS codes. */
3018 __u8 mcs_set[16];
3019 __u8 reserved[16];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003020} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003021
3022static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003023mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003024 u32 legacy_rate_mask, u8 *mcs_rates)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003025{
3026 struct mwl8k_cmd_set_rate *cmd;
3027 int rc;
3028
3029 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3030 if (cmd == NULL)
3031 return -ENOMEM;
3032
3033 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE);
3034 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003035 legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003036 memcpy(cmd->mcs_set, mcs_rates, 16);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003037
3038 rc = mwl8k_post_cmd(hw, &cmd->header);
3039 kfree(cmd);
3040
3041 return rc;
3042}
3043
3044/*
3045 * CMD_FINALIZE_JOIN.
3046 */
3047#define MWL8K_FJ_BEACON_MAXLEN 128
3048
3049struct mwl8k_cmd_finalize_join {
3050 struct mwl8k_cmd_pkt header;
3051 __le32 sleep_interval; /* Number of beacon periods to sleep */
3052 __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003053} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003054
3055static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame,
3056 int framelen, int dtim)
3057{
3058 struct mwl8k_cmd_finalize_join *cmd;
3059 struct ieee80211_mgmt *payload = frame;
3060 int payload_len;
3061 int rc;
3062
3063 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3064 if (cmd == NULL)
3065 return -ENOMEM;
3066
3067 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN);
3068 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3069 cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
3070
3071 payload_len = framelen - ieee80211_hdrlen(payload->frame_control);
3072 if (payload_len < 0)
3073 payload_len = 0;
3074 else if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
3075 payload_len = MWL8K_FJ_BEACON_MAXLEN;
3076
3077 memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
3078
3079 rc = mwl8k_post_cmd(hw, &cmd->header);
3080 kfree(cmd);
3081
3082 return rc;
3083}
3084
3085/*
3086 * CMD_SET_RTS_THRESHOLD.
3087 */
3088struct mwl8k_cmd_set_rts_threshold {
3089 struct mwl8k_cmd_pkt header;
3090 __le16 action;
3091 __le16 threshold;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003092} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003093
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003094static int
3095mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw, int rts_thresh)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003096{
3097 struct mwl8k_cmd_set_rts_threshold *cmd;
3098 int rc;
3099
3100 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3101 if (cmd == NULL)
3102 return -ENOMEM;
3103
3104 cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
3105 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003106 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3107 cmd->threshold = cpu_to_le16(rts_thresh);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003108
3109 rc = mwl8k_post_cmd(hw, &cmd->header);
3110 kfree(cmd);
3111
3112 return rc;
3113}
3114
3115/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003116 * CMD_SET_SLOT.
3117 */
3118struct mwl8k_cmd_set_slot {
3119 struct mwl8k_cmd_pkt header;
3120 __le16 action;
3121 __u8 short_slot;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003122} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003123
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003124static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003125{
3126 struct mwl8k_cmd_set_slot *cmd;
3127 int rc;
3128
3129 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3130 if (cmd == NULL)
3131 return -ENOMEM;
3132
3133 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
3134 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3135 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003136 cmd->short_slot = short_slot_time;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003137
3138 rc = mwl8k_post_cmd(hw, &cmd->header);
3139 kfree(cmd);
3140
3141 return rc;
3142}
3143
3144/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003145 * CMD_SET_EDCA_PARAMS.
3146 */
3147struct mwl8k_cmd_set_edca_params {
3148 struct mwl8k_cmd_pkt header;
3149
3150 /* See MWL8K_SET_EDCA_XXX below */
3151 __le16 action;
3152
3153 /* TX opportunity in units of 32 us */
3154 __le16 txop;
3155
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003156 union {
3157 struct {
3158 /* Log exponent of max contention period: 0...15 */
3159 __le32 log_cw_max;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003160
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003161 /* Log exponent of min contention period: 0...15 */
3162 __le32 log_cw_min;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003163
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003164 /* Adaptive interframe spacing in units of 32us */
3165 __u8 aifs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003166
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003167 /* TX queue to configure */
3168 __u8 txq;
3169 } ap;
3170 struct {
3171 /* Log exponent of max contention period: 0...15 */
3172 __u8 log_cw_max;
3173
3174 /* Log exponent of min contention period: 0...15 */
3175 __u8 log_cw_min;
3176
3177 /* Adaptive interframe spacing in units of 32us */
3178 __u8 aifs;
3179
3180 /* TX queue to configure */
3181 __u8 txq;
3182 } sta;
3183 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003184} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003185
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003186#define MWL8K_SET_EDCA_CW 0x01
3187#define MWL8K_SET_EDCA_TXOP 0x02
3188#define MWL8K_SET_EDCA_AIFS 0x04
3189
3190#define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
3191 MWL8K_SET_EDCA_TXOP | \
3192 MWL8K_SET_EDCA_AIFS)
3193
3194static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003195mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
3196 __u16 cw_min, __u16 cw_max,
3197 __u8 aifs, __u16 txop)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003198{
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003199 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003200 struct mwl8k_cmd_set_edca_params *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003201 int rc;
3202
3203 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3204 if (cmd == NULL)
3205 return -ENOMEM;
3206
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003207 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
3208 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003209 cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
3210 cmd->txop = cpu_to_le16(txop);
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003211 if (priv->ap_fw) {
3212 cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1));
3213 cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1));
3214 cmd->ap.aifs = aifs;
3215 cmd->ap.txq = qnum;
3216 } else {
3217 cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1);
3218 cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1);
3219 cmd->sta.aifs = aifs;
3220 cmd->sta.txq = qnum;
3221 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003222
3223 rc = mwl8k_post_cmd(hw, &cmd->header);
3224 kfree(cmd);
3225
3226 return rc;
3227}
3228
3229/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003230 * CMD_SET_WMM_MODE.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003231 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003232struct mwl8k_cmd_set_wmm_mode {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003233 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003234 __le16 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003235} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003236
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003237static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw *hw, bool enable)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003238{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003239 struct mwl8k_priv *priv = hw->priv;
3240 struct mwl8k_cmd_set_wmm_mode *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003241 int rc;
3242
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003243 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3244 if (cmd == NULL)
3245 return -ENOMEM;
3246
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003247 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003248 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003249 cmd->action = cpu_to_le16(!!enable);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003250
3251 rc = mwl8k_post_cmd(hw, &cmd->header);
3252 kfree(cmd);
Lennert Buytenhek16cec432009-11-30 18:14:23 +01003253
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003254 if (!rc)
3255 priv->wmm_enabled = enable;
3256
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003257 return rc;
3258}
3259
3260/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003261 * CMD_MIMO_CONFIG.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003262 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003263struct mwl8k_cmd_mimo_config {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003264 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003265 __le32 action;
3266 __u8 rx_antenna_map;
3267 __u8 tx_antenna_map;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003268} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003269
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003270static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003271{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003272 struct mwl8k_cmd_mimo_config *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003273 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003274
3275 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3276 if (cmd == NULL)
3277 return -ENOMEM;
3278
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003279 cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003280 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003281 cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET);
3282 cmd->rx_antenna_map = rx;
3283 cmd->tx_antenna_map = tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003284
3285 rc = mwl8k_post_cmd(hw, &cmd->header);
3286 kfree(cmd);
3287
3288 return rc;
3289}
3290
3291/*
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003292 * CMD_USE_FIXED_RATE (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003293 */
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003294struct mwl8k_cmd_use_fixed_rate_sta {
3295 struct mwl8k_cmd_pkt header;
3296 __le32 action;
3297 __le32 allow_rate_drop;
3298 __le32 num_rates;
3299 struct {
3300 __le32 is_ht_rate;
3301 __le32 enable_retry;
3302 __le32 rate;
3303 __le32 retry_count;
3304 } rate_entry[8];
3305 __le32 rate_type;
3306 __le32 reserved1;
3307 __le32 reserved2;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003308} __packed;
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003309
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003310#define MWL8K_USE_AUTO_RATE 0x0002
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003311#define MWL8K_UCAST_RATE 0
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003312
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003313static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003314{
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003315 struct mwl8k_cmd_use_fixed_rate_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003316 int rc;
3317
3318 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3319 if (cmd == NULL)
3320 return -ENOMEM;
3321
3322 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3323 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003324 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3325 cmd->rate_type = cpu_to_le32(MWL8K_UCAST_RATE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003326
3327 rc = mwl8k_post_cmd(hw, &cmd->header);
3328 kfree(cmd);
3329
3330 return rc;
3331}
3332
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003333/*
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003334 * CMD_USE_FIXED_RATE (AP version).
3335 */
3336struct mwl8k_cmd_use_fixed_rate_ap {
3337 struct mwl8k_cmd_pkt header;
3338 __le32 action;
3339 __le32 allow_rate_drop;
3340 __le32 num_rates;
3341 struct mwl8k_rate_entry_ap {
3342 __le32 is_ht_rate;
3343 __le32 enable_retry;
3344 __le32 rate;
3345 __le32 retry_count;
3346 } rate_entry[4];
3347 u8 multicast_rate;
3348 u8 multicast_rate_type;
3349 u8 management_rate;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003350} __packed;
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003351
3352static int
3353mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw *hw, int mcast, int mgmt)
3354{
3355 struct mwl8k_cmd_use_fixed_rate_ap *cmd;
3356 int rc;
3357
3358 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3359 if (cmd == NULL)
3360 return -ENOMEM;
3361
3362 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3363 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3364 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3365 cmd->multicast_rate = mcast;
3366 cmd->management_rate = mgmt;
3367
3368 rc = mwl8k_post_cmd(hw, &cmd->header);
3369 kfree(cmd);
3370
3371 return rc;
3372}
3373
3374/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003375 * CMD_ENABLE_SNIFFER.
3376 */
3377struct mwl8k_cmd_enable_sniffer {
3378 struct mwl8k_cmd_pkt header;
3379 __le32 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003380} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003381
3382static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable)
3383{
3384 struct mwl8k_cmd_enable_sniffer *cmd;
3385 int rc;
3386
3387 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3388 if (cmd == NULL)
3389 return -ENOMEM;
3390
3391 cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
3392 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3393 cmd->action = cpu_to_le32(!!enable);
3394
3395 rc = mwl8k_post_cmd(hw, &cmd->header);
3396 kfree(cmd);
3397
3398 return rc;
3399}
3400
3401/*
3402 * CMD_SET_MAC_ADDR.
3403 */
3404struct mwl8k_cmd_set_mac_addr {
3405 struct mwl8k_cmd_pkt header;
3406 union {
3407 struct {
3408 __le16 mac_type;
3409 __u8 mac_addr[ETH_ALEN];
3410 } mbss;
3411 __u8 mac_addr[ETH_ALEN];
3412 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003413} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003414
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003415#define MWL8K_MAC_TYPE_PRIMARY_CLIENT 0
3416#define MWL8K_MAC_TYPE_SECONDARY_CLIENT 1
3417#define MWL8K_MAC_TYPE_PRIMARY_AP 2
3418#define MWL8K_MAC_TYPE_SECONDARY_AP 3
Lennert Buytenheka9e00b12010-01-08 18:31:30 +01003419
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01003420static int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw,
3421 struct ieee80211_vif *vif, u8 *mac)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003422{
3423 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003424 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003425 struct mwl8k_cmd_set_mac_addr *cmd;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003426 int mac_type;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003427 int rc;
3428
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003429 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3430 if (vif != NULL && vif->type == NL80211_IFTYPE_STATION) {
3431 if (mwl8k_vif->macid + 1 == ffs(priv->sta_macids_supported))
3432 mac_type = MWL8K_MAC_TYPE_PRIMARY_CLIENT;
3433 else
3434 mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
3435 } else if (vif != NULL && vif->type == NL80211_IFTYPE_AP) {
3436 if (mwl8k_vif->macid + 1 == ffs(priv->ap_macids_supported))
3437 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3438 else
3439 mac_type = MWL8K_MAC_TYPE_SECONDARY_AP;
3440 }
3441
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003442 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3443 if (cmd == NULL)
3444 return -ENOMEM;
3445
3446 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR);
3447 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3448 if (priv->ap_fw) {
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003449 cmd->mbss.mac_type = cpu_to_le16(mac_type);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003450 memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN);
3451 } else {
3452 memcpy(cmd->mac_addr, mac, ETH_ALEN);
3453 }
3454
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01003455 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003456 kfree(cmd);
3457
3458 return rc;
3459}
3460
3461/*
3462 * CMD_SET_RATEADAPT_MODE.
3463 */
3464struct mwl8k_cmd_set_rate_adapt_mode {
3465 struct mwl8k_cmd_pkt header;
3466 __le16 action;
3467 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003468} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003469
3470static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode)
3471{
3472 struct mwl8k_cmd_set_rate_adapt_mode *cmd;
3473 int rc;
3474
3475 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3476 if (cmd == NULL)
3477 return -ENOMEM;
3478
3479 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
3480 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3481 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3482 cmd->mode = cpu_to_le16(mode);
3483
3484 rc = mwl8k_post_cmd(hw, &cmd->header);
3485 kfree(cmd);
3486
3487 return rc;
3488}
3489
3490/*
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003491 * CMD_GET_WATCHDOG_BITMAP.
3492 */
3493struct mwl8k_cmd_get_watchdog_bitmap {
3494 struct mwl8k_cmd_pkt header;
3495 u8 bitmap;
3496} __packed;
3497
3498static int mwl8k_cmd_get_watchdog_bitmap(struct ieee80211_hw *hw, u8 *bitmap)
3499{
3500 struct mwl8k_cmd_get_watchdog_bitmap *cmd;
3501 int rc;
3502
3503 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3504 if (cmd == NULL)
3505 return -ENOMEM;
3506
3507 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_WATCHDOG_BITMAP);
3508 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3509
3510 rc = mwl8k_post_cmd(hw, &cmd->header);
3511 if (!rc)
3512 *bitmap = cmd->bitmap;
3513
3514 kfree(cmd);
3515
3516 return rc;
3517}
3518
3519#define INVALID_BA 0xAA
3520static void mwl8k_watchdog_ba_events(struct work_struct *work)
3521{
3522 int rc;
3523 u8 bitmap = 0, stream_index;
3524 struct mwl8k_ampdu_stream *streams;
3525 struct mwl8k_priv *priv =
3526 container_of(work, struct mwl8k_priv, watchdog_ba_handle);
3527
3528 rc = mwl8k_cmd_get_watchdog_bitmap(priv->hw, &bitmap);
3529 if (rc)
3530 return;
3531
3532 if (bitmap == INVALID_BA)
3533 return;
3534
3535 /* the bitmap is the hw queue number. Map it to the ampdu queue. */
3536 stream_index = bitmap - MWL8K_TX_WMM_QUEUES;
3537
3538 BUG_ON(stream_index >= priv->num_ampdu_queues);
3539
3540 streams = &priv->ampdu[stream_index];
3541
3542 if (streams->state == AMPDU_STREAM_ACTIVE)
3543 ieee80211_stop_tx_ba_session(streams->sta, streams->tid);
3544
3545 return;
3546}
3547
3548
3549/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003550 * CMD_BSS_START.
3551 */
3552struct mwl8k_cmd_bss_start {
3553 struct mwl8k_cmd_pkt header;
3554 __le32 enable;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003555} __packed;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003556
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01003557static int mwl8k_cmd_bss_start(struct ieee80211_hw *hw,
3558 struct ieee80211_vif *vif, int enable)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003559{
3560 struct mwl8k_cmd_bss_start *cmd;
3561 int rc;
3562
3563 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3564 if (cmd == NULL)
3565 return -ENOMEM;
3566
3567 cmd->header.code = cpu_to_le16(MWL8K_CMD_BSS_START);
3568 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3569 cmd->enable = cpu_to_le32(enable);
3570
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01003571 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003572 kfree(cmd);
3573
3574 return rc;
3575}
3576
3577/*
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003578 * CMD_BASTREAM.
3579 */
3580
3581/*
3582 * UPSTREAM is tx direction
3583 */
3584#define BASTREAM_FLAG_DIRECTION_UPSTREAM 0x00
3585#define BASTREAM_FLAG_IMMEDIATE_TYPE 0x01
3586
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303587enum ba_stream_action_type {
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003588 MWL8K_BA_CREATE,
3589 MWL8K_BA_UPDATE,
3590 MWL8K_BA_DESTROY,
3591 MWL8K_BA_FLUSH,
3592 MWL8K_BA_CHECK,
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303593};
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003594
3595
3596struct mwl8k_create_ba_stream {
3597 __le32 flags;
3598 __le32 idle_thrs;
3599 __le32 bar_thrs;
3600 __le32 window_size;
3601 u8 peer_mac_addr[6];
3602 u8 dialog_token;
3603 u8 tid;
3604 u8 queue_id;
3605 u8 param_info;
3606 __le32 ba_context;
3607 u8 reset_seq_no_flag;
3608 __le16 curr_seq_no;
3609 u8 sta_src_mac_addr[6];
3610} __packed;
3611
3612struct mwl8k_destroy_ba_stream {
3613 __le32 flags;
3614 __le32 ba_context;
3615} __packed;
3616
3617struct mwl8k_cmd_bastream {
3618 struct mwl8k_cmd_pkt header;
3619 __le32 action;
3620 union {
3621 struct mwl8k_create_ba_stream create_params;
3622 struct mwl8k_destroy_ba_stream destroy_params;
3623 };
3624} __packed;
3625
3626static int
3627mwl8k_check_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
3628{
3629 struct mwl8k_cmd_bastream *cmd;
3630 int rc;
3631
3632 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3633 if (cmd == NULL)
3634 return -ENOMEM;
3635
3636 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3637 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3638
3639 cmd->action = cpu_to_le32(MWL8K_BA_CHECK);
3640
3641 cmd->create_params.queue_id = stream->idx;
3642 memcpy(&cmd->create_params.peer_mac_addr[0], stream->sta->addr,
3643 ETH_ALEN);
3644 cmd->create_params.tid = stream->tid;
3645
3646 cmd->create_params.flags =
3647 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE) |
3648 cpu_to_le32(BASTREAM_FLAG_DIRECTION_UPSTREAM);
3649
3650 rc = mwl8k_post_cmd(hw, &cmd->header);
3651
3652 kfree(cmd);
3653
3654 return rc;
3655}
3656
3657static int
3658mwl8k_create_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
3659 u8 buf_size)
3660{
3661 struct mwl8k_cmd_bastream *cmd;
3662 int rc;
3663
3664 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3665 if (cmd == NULL)
3666 return -ENOMEM;
3667
3668
3669 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3670 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3671
3672 cmd->action = cpu_to_le32(MWL8K_BA_CREATE);
3673
3674 cmd->create_params.bar_thrs = cpu_to_le32((u32)buf_size);
3675 cmd->create_params.window_size = cpu_to_le32((u32)buf_size);
3676 cmd->create_params.queue_id = stream->idx;
3677
3678 memcpy(cmd->create_params.peer_mac_addr, stream->sta->addr, ETH_ALEN);
3679 cmd->create_params.tid = stream->tid;
3680 cmd->create_params.curr_seq_no = cpu_to_le16(0);
3681 cmd->create_params.reset_seq_no_flag = 1;
3682
3683 cmd->create_params.param_info =
3684 (stream->sta->ht_cap.ampdu_factor &
3685 IEEE80211_HT_AMPDU_PARM_FACTOR) |
3686 ((stream->sta->ht_cap.ampdu_density << 2) &
3687 IEEE80211_HT_AMPDU_PARM_DENSITY);
3688
3689 cmd->create_params.flags =
3690 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE |
3691 BASTREAM_FLAG_DIRECTION_UPSTREAM);
3692
3693 rc = mwl8k_post_cmd(hw, &cmd->header);
3694
3695 wiphy_debug(hw->wiphy, "Created a BA stream for %pM : tid %d\n",
3696 stream->sta->addr, stream->tid);
3697 kfree(cmd);
3698
3699 return rc;
3700}
3701
3702static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
3703 struct mwl8k_ampdu_stream *stream)
3704{
3705 struct mwl8k_cmd_bastream *cmd;
3706
3707 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3708 if (cmd == NULL)
3709 return;
3710
3711 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3712 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3713 cmd->action = cpu_to_le32(MWL8K_BA_DESTROY);
3714
3715 cmd->destroy_params.ba_context = cpu_to_le32(stream->idx);
3716 mwl8k_post_cmd(hw, &cmd->header);
3717
3718 wiphy_debug(hw->wiphy, "Deleted BA stream index %d\n", stream->idx);
3719
3720 kfree(cmd);
3721}
3722
3723/*
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003724 * CMD_SET_NEW_STN.
3725 */
3726struct mwl8k_cmd_set_new_stn {
3727 struct mwl8k_cmd_pkt header;
3728 __le16 aid;
3729 __u8 mac_addr[6];
3730 __le16 stn_id;
3731 __le16 action;
3732 __le16 rsvd;
3733 __le32 legacy_rates;
3734 __u8 ht_rates[4];
3735 __le16 cap_info;
3736 __le16 ht_capabilities_info;
3737 __u8 mac_ht_param_info;
3738 __u8 rev;
3739 __u8 control_channel;
3740 __u8 add_channel;
3741 __le16 op_mode;
3742 __le16 stbc;
3743 __u8 add_qos_info;
3744 __u8 is_qos_sta;
3745 __le32 fw_sta_ptr;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003746} __packed;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003747
3748#define MWL8K_STA_ACTION_ADD 0
3749#define MWL8K_STA_ACTION_REMOVE 2
3750
3751static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw *hw,
3752 struct ieee80211_vif *vif,
3753 struct ieee80211_sta *sta)
3754{
3755 struct mwl8k_cmd_set_new_stn *cmd;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003756 u32 rates;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003757 int rc;
3758
3759 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3760 if (cmd == NULL)
3761 return -ENOMEM;
3762
3763 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3764 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3765 cmd->aid = cpu_to_le16(sta->aid);
3766 memcpy(cmd->mac_addr, sta->addr, ETH_ALEN);
3767 cmd->stn_id = cpu_to_le16(sta->aid);
3768 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_ADD);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003769 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
3770 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
3771 else
3772 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
3773 cmd->legacy_rates = cpu_to_le32(rates);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003774 if (sta->ht_cap.ht_supported) {
3775 cmd->ht_rates[0] = sta->ht_cap.mcs.rx_mask[0];
3776 cmd->ht_rates[1] = sta->ht_cap.mcs.rx_mask[1];
3777 cmd->ht_rates[2] = sta->ht_cap.mcs.rx_mask[2];
3778 cmd->ht_rates[3] = sta->ht_cap.mcs.rx_mask[3];
3779 cmd->ht_capabilities_info = cpu_to_le16(sta->ht_cap.cap);
3780 cmd->mac_ht_param_info = (sta->ht_cap.ampdu_factor & 3) |
3781 ((sta->ht_cap.ampdu_density & 7) << 2);
3782 cmd->is_qos_sta = 1;
3783 }
3784
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01003785 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003786 kfree(cmd);
3787
3788 return rc;
3789}
3790
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003791static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw *hw,
3792 struct ieee80211_vif *vif)
3793{
3794 struct mwl8k_cmd_set_new_stn *cmd;
3795 int rc;
3796
3797 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3798 if (cmd == NULL)
3799 return -ENOMEM;
3800
3801 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3802 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3803 memcpy(cmd->mac_addr, vif->addr, ETH_ALEN);
3804
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01003805 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003806 kfree(cmd);
3807
3808 return rc;
3809}
3810
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003811static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw *hw,
3812 struct ieee80211_vif *vif, u8 *addr)
3813{
3814 struct mwl8k_cmd_set_new_stn *cmd;
3815 int rc;
3816
3817 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3818 if (cmd == NULL)
3819 return -ENOMEM;
3820
3821 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3822 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3823 memcpy(cmd->mac_addr, addr, ETH_ALEN);
3824 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_REMOVE);
3825
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01003826 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003827 kfree(cmd);
3828
3829 return rc;
3830}
3831
3832/*
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08003833 * CMD_UPDATE_ENCRYPTION.
3834 */
3835
3836#define MAX_ENCR_KEY_LENGTH 16
3837#define MIC_KEY_LENGTH 8
3838
3839struct mwl8k_cmd_update_encryption {
3840 struct mwl8k_cmd_pkt header;
3841
3842 __le32 action;
3843 __le32 reserved;
3844 __u8 mac_addr[6];
3845 __u8 encr_type;
3846
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303847} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08003848
3849struct mwl8k_cmd_set_key {
3850 struct mwl8k_cmd_pkt header;
3851
3852 __le32 action;
3853 __le32 reserved;
3854 __le16 length;
3855 __le16 key_type_id;
3856 __le32 key_info;
3857 __le32 key_id;
3858 __le16 key_len;
3859 __u8 key_material[MAX_ENCR_KEY_LENGTH];
3860 __u8 tkip_tx_mic_key[MIC_KEY_LENGTH];
3861 __u8 tkip_rx_mic_key[MIC_KEY_LENGTH];
3862 __le16 tkip_rsc_low;
3863 __le32 tkip_rsc_high;
3864 __le16 tkip_tsc_low;
3865 __le32 tkip_tsc_high;
3866 __u8 mac_addr[6];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303867} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08003868
3869enum {
3870 MWL8K_ENCR_ENABLE,
3871 MWL8K_ENCR_SET_KEY,
3872 MWL8K_ENCR_REMOVE_KEY,
3873 MWL8K_ENCR_SET_GROUP_KEY,
3874};
3875
3876#define MWL8K_UPDATE_ENCRYPTION_TYPE_WEP 0
3877#define MWL8K_UPDATE_ENCRYPTION_TYPE_DISABLE 1
3878#define MWL8K_UPDATE_ENCRYPTION_TYPE_TKIP 4
3879#define MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED 7
3880#define MWL8K_UPDATE_ENCRYPTION_TYPE_AES 8
3881
3882enum {
3883 MWL8K_ALG_WEP,
3884 MWL8K_ALG_TKIP,
3885 MWL8K_ALG_CCMP,
3886};
3887
3888#define MWL8K_KEY_FLAG_TXGROUPKEY 0x00000004
3889#define MWL8K_KEY_FLAG_PAIRWISE 0x00000008
3890#define MWL8K_KEY_FLAG_TSC_VALID 0x00000040
3891#define MWL8K_KEY_FLAG_WEP_TXKEY 0x01000000
3892#define MWL8K_KEY_FLAG_MICKEY_VALID 0x02000000
3893
3894static int mwl8k_cmd_update_encryption_enable(struct ieee80211_hw *hw,
3895 struct ieee80211_vif *vif,
3896 u8 *addr,
3897 u8 encr_type)
3898{
3899 struct mwl8k_cmd_update_encryption *cmd;
3900 int rc;
3901
3902 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3903 if (cmd == NULL)
3904 return -ENOMEM;
3905
3906 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
3907 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3908 cmd->action = cpu_to_le32(MWL8K_ENCR_ENABLE);
3909 memcpy(cmd->mac_addr, addr, ETH_ALEN);
3910 cmd->encr_type = encr_type;
3911
3912 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
3913 kfree(cmd);
3914
3915 return rc;
3916}
3917
3918static int mwl8k_encryption_set_cmd_info(struct mwl8k_cmd_set_key *cmd,
3919 u8 *addr,
3920 struct ieee80211_key_conf *key)
3921{
3922 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
3923 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3924 cmd->length = cpu_to_le16(sizeof(*cmd) -
3925 offsetof(struct mwl8k_cmd_set_key, length));
3926 cmd->key_id = cpu_to_le32(key->keyidx);
3927 cmd->key_len = cpu_to_le16(key->keylen);
3928 memcpy(cmd->mac_addr, addr, ETH_ALEN);
3929
3930 switch (key->cipher) {
3931 case WLAN_CIPHER_SUITE_WEP40:
3932 case WLAN_CIPHER_SUITE_WEP104:
3933 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_WEP);
3934 if (key->keyidx == 0)
3935 cmd->key_info = cpu_to_le32(MWL8K_KEY_FLAG_WEP_TXKEY);
3936
3937 break;
3938 case WLAN_CIPHER_SUITE_TKIP:
3939 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_TKIP);
3940 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
3941 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
3942 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
3943 cmd->key_info |= cpu_to_le32(MWL8K_KEY_FLAG_MICKEY_VALID
3944 | MWL8K_KEY_FLAG_TSC_VALID);
3945 break;
3946 case WLAN_CIPHER_SUITE_CCMP:
3947 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_CCMP);
3948 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
3949 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
3950 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
3951 break;
3952 default:
3953 return -ENOTSUPP;
3954 }
3955
3956 return 0;
3957}
3958
3959static int mwl8k_cmd_encryption_set_key(struct ieee80211_hw *hw,
3960 struct ieee80211_vif *vif,
3961 u8 *addr,
3962 struct ieee80211_key_conf *key)
3963{
3964 struct mwl8k_cmd_set_key *cmd;
3965 int rc;
3966 int keymlen;
3967 u32 action;
3968 u8 idx;
3969 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
3970
3971 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3972 if (cmd == NULL)
3973 return -ENOMEM;
3974
3975 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
3976 if (rc < 0)
3977 goto done;
3978
3979 idx = key->keyidx;
3980
3981 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
3982 action = MWL8K_ENCR_SET_KEY;
3983 else
3984 action = MWL8K_ENCR_SET_GROUP_KEY;
3985
3986 switch (key->cipher) {
3987 case WLAN_CIPHER_SUITE_WEP40:
3988 case WLAN_CIPHER_SUITE_WEP104:
3989 if (!mwl8k_vif->wep_key_conf[idx].enabled) {
3990 memcpy(mwl8k_vif->wep_key_conf[idx].key, key,
3991 sizeof(*key) + key->keylen);
3992 mwl8k_vif->wep_key_conf[idx].enabled = 1;
3993 }
3994
3995 keymlen = 0;
3996 action = MWL8K_ENCR_SET_KEY;
3997 break;
3998 case WLAN_CIPHER_SUITE_TKIP:
3999 keymlen = MAX_ENCR_KEY_LENGTH + 2 * MIC_KEY_LENGTH;
4000 break;
4001 case WLAN_CIPHER_SUITE_CCMP:
4002 keymlen = key->keylen;
4003 break;
4004 default:
4005 rc = -ENOTSUPP;
4006 goto done;
4007 }
4008
4009 memcpy(cmd->key_material, key->key, keymlen);
4010 cmd->action = cpu_to_le32(action);
4011
4012 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4013done:
4014 kfree(cmd);
4015
4016 return rc;
4017}
4018
4019static int mwl8k_cmd_encryption_remove_key(struct ieee80211_hw *hw,
4020 struct ieee80211_vif *vif,
4021 u8 *addr,
4022 struct ieee80211_key_conf *key)
4023{
4024 struct mwl8k_cmd_set_key *cmd;
4025 int rc;
4026 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4027
4028 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4029 if (cmd == NULL)
4030 return -ENOMEM;
4031
4032 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4033 if (rc < 0)
4034 goto done;
4035
4036 if (key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
4037 WLAN_CIPHER_SUITE_WEP104)
4038 mwl8k_vif->wep_key_conf[key->keyidx].enabled = 0;
4039
4040 cmd->action = cpu_to_le32(MWL8K_ENCR_REMOVE_KEY);
4041
4042 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4043done:
4044 kfree(cmd);
4045
4046 return rc;
4047}
4048
4049static int mwl8k_set_key(struct ieee80211_hw *hw,
4050 enum set_key_cmd cmd_param,
4051 struct ieee80211_vif *vif,
4052 struct ieee80211_sta *sta,
4053 struct ieee80211_key_conf *key)
4054{
4055 int rc = 0;
4056 u8 encr_type;
4057 u8 *addr;
4058 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4059
4060 if (vif->type == NL80211_IFTYPE_STATION)
4061 return -EOPNOTSUPP;
4062
4063 if (sta == NULL)
4064 addr = hw->wiphy->perm_addr;
4065 else
4066 addr = sta->addr;
4067
4068 if (cmd_param == SET_KEY) {
4069 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
4070 rc = mwl8k_cmd_encryption_set_key(hw, vif, addr, key);
4071 if (rc)
4072 goto out;
4073
4074 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40)
4075 || (key->cipher == WLAN_CIPHER_SUITE_WEP104))
4076 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_WEP;
4077 else
4078 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED;
4079
4080 rc = mwl8k_cmd_update_encryption_enable(hw, vif, addr,
4081 encr_type);
4082 if (rc)
4083 goto out;
4084
4085 mwl8k_vif->is_hw_crypto_enabled = true;
4086
4087 } else {
4088 rc = mwl8k_cmd_encryption_remove_key(hw, vif, addr, key);
4089
4090 if (rc)
4091 goto out;
4092
4093 mwl8k_vif->is_hw_crypto_enabled = false;
4094
4095 }
4096out:
4097 return rc;
4098}
4099
4100/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004101 * CMD_UPDATE_STADB.
4102 */
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004103struct ewc_ht_info {
4104 __le16 control1;
4105 __le16 control2;
4106 __le16 control3;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004107} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004108
4109struct peer_capability_info {
4110 /* Peer type - AP vs. STA. */
4111 __u8 peer_type;
4112
4113 /* Basic 802.11 capabilities from assoc resp. */
4114 __le16 basic_caps;
4115
4116 /* Set if peer supports 802.11n high throughput (HT). */
4117 __u8 ht_support;
4118
4119 /* Valid if HT is supported. */
4120 __le16 ht_caps;
4121 __u8 extended_ht_caps;
4122 struct ewc_ht_info ewc_info;
4123
4124 /* Legacy rate table. Intersection of our rates and peer rates. */
4125 __u8 legacy_rates[12];
4126
4127 /* HT rate table. Intersection of our rates and peer rates. */
4128 __u8 ht_rates[16];
4129 __u8 pad[16];
4130
4131 /* If set, interoperability mode, no proprietary extensions. */
4132 __u8 interop;
4133 __u8 pad2;
4134 __u8 station_id;
4135 __le16 amsdu_enabled;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004136} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004137
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004138struct mwl8k_cmd_update_stadb {
4139 struct mwl8k_cmd_pkt header;
4140
4141 /* See STADB_ACTION_TYPE */
4142 __le32 action;
4143
4144 /* Peer MAC address */
4145 __u8 peer_addr[ETH_ALEN];
4146
4147 __le32 reserved;
4148
4149 /* Peer info - valid during add/update. */
4150 struct peer_capability_info peer_info;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004151} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004152
Lennert Buytenheka6804002010-01-04 21:55:42 +01004153#define MWL8K_STA_DB_MODIFY_ENTRY 1
4154#define MWL8K_STA_DB_DEL_ENTRY 2
4155
4156/* Peer Entry flags - used to define the type of the peer node */
4157#define MWL8K_PEER_TYPE_ACCESSPOINT 2
4158
4159static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw,
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004160 struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004161 struct ieee80211_sta *sta)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004162{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004163 struct mwl8k_cmd_update_stadb *cmd;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004164 struct peer_capability_info *p;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004165 u32 rates;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004166 int rc;
4167
4168 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4169 if (cmd == NULL)
4170 return -ENOMEM;
4171
4172 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4173 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka6804002010-01-04 21:55:42 +01004174 cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004175 memcpy(cmd->peer_addr, sta->addr, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004176
Lennert Buytenheka6804002010-01-04 21:55:42 +01004177 p = &cmd->peer_info;
4178 p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
4179 p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004180 p->ht_support = sta->ht_cap.ht_supported;
John W. Linvilleb6037422010-07-20 13:55:00 -04004181 p->ht_caps = cpu_to_le16(sta->ht_cap.cap);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004182 p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) |
4183 ((sta->ht_cap.ampdu_density & 7) << 2);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004184 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4185 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
4186 else
4187 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4188 legacy_rate_mask_to_array(p->legacy_rates, rates);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004189 memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16);
Lennert Buytenheka6804002010-01-04 21:55:42 +01004190 p->interop = 1;
4191 p->amsdu_enabled = 0;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004192
Lennert Buytenheka6804002010-01-04 21:55:42 +01004193 rc = mwl8k_post_cmd(hw, &cmd->header);
4194 kfree(cmd);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004195
Lennert Buytenheka6804002010-01-04 21:55:42 +01004196 return rc ? rc : p->station_id;
4197}
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004198
Lennert Buytenheka6804002010-01-04 21:55:42 +01004199static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw,
4200 struct ieee80211_vif *vif, u8 *addr)
4201{
4202 struct mwl8k_cmd_update_stadb *cmd;
4203 int rc;
4204
4205 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4206 if (cmd == NULL)
4207 return -ENOMEM;
4208
4209 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4210 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4211 cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY);
4212 memcpy(cmd->peer_addr, addr, ETH_ALEN);
4213
4214 rc = mwl8k_post_cmd(hw, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004215 kfree(cmd);
4216
4217 return rc;
4218}
4219
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004220
4221/*
4222 * Interrupt handling.
4223 */
4224static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
4225{
4226 struct ieee80211_hw *hw = dev_id;
4227 struct mwl8k_priv *priv = hw->priv;
4228 u32 status;
4229
4230 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004231 if (!status)
4232 return IRQ_NONE;
4233
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004234 if (status & MWL8K_A2H_INT_TX_DONE) {
4235 status &= ~MWL8K_A2H_INT_TX_DONE;
4236 tasklet_schedule(&priv->poll_tx_task);
4237 }
4238
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004239 if (status & MWL8K_A2H_INT_RX_READY) {
4240 status &= ~MWL8K_A2H_INT_RX_READY;
4241 tasklet_schedule(&priv->poll_rx_task);
4242 }
4243
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004244 if (status & MWL8K_A2H_INT_BA_WATCHDOG) {
4245 status &= ~MWL8K_A2H_INT_BA_WATCHDOG;
4246 ieee80211_queue_work(hw, &priv->watchdog_ba_handle);
4247 }
4248
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004249 if (status)
4250 iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004251
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004252 if (status & MWL8K_A2H_INT_OPC_DONE) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004253 if (priv->hostcmd_wait != NULL)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004254 complete(priv->hostcmd_wait);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004255 }
4256
4257 if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004258 if (!mutex_is_locked(&priv->fw_mutex) &&
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02004259 priv->radio_on && priv->pending_tx_pkts)
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004260 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004261 }
4262
4263 return IRQ_HANDLED;
4264}
4265
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004266static void mwl8k_tx_poll(unsigned long data)
4267{
4268 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4269 struct mwl8k_priv *priv = hw->priv;
4270 int limit;
4271 int i;
4272
4273 limit = 32;
4274
4275 spin_lock_bh(&priv->tx_lock);
4276
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004277 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004278 limit -= mwl8k_txq_reclaim(hw, i, limit, 0);
4279
4280 if (!priv->pending_tx_pkts && priv->tx_wait != NULL) {
4281 complete(priv->tx_wait);
4282 priv->tx_wait = NULL;
4283 }
4284
4285 spin_unlock_bh(&priv->tx_lock);
4286
4287 if (limit) {
4288 writel(~MWL8K_A2H_INT_TX_DONE,
4289 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4290 } else {
4291 tasklet_schedule(&priv->poll_tx_task);
4292 }
4293}
4294
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004295static void mwl8k_rx_poll(unsigned long data)
4296{
4297 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4298 struct mwl8k_priv *priv = hw->priv;
4299 int limit;
4300
4301 limit = 32;
4302 limit -= rxq_process(hw, 0, limit);
4303 limit -= rxq_refill(hw, 0, limit);
4304
4305 if (limit) {
4306 writel(~MWL8K_A2H_INT_RX_READY,
4307 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4308 } else {
4309 tasklet_schedule(&priv->poll_rx_task);
4310 }
4311}
4312
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004313
4314/*
4315 * Core driver operations.
4316 */
Johannes Berg7bb45682011-02-24 14:42:06 +01004317static void mwl8k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004318{
4319 struct mwl8k_priv *priv = hw->priv;
4320 int index = skb_get_queue_mapping(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004321
Lennert Buytenhek9189c102010-01-12 13:47:32 +01004322 if (!priv->radio_on) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004323 wiphy_debug(hw->wiphy,
4324 "dropped TX frame since radio disabled\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004325 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01004326 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004327 }
4328
Johannes Berg7bb45682011-02-24 14:42:06 +01004329 mwl8k_txq_xmit(hw, index, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004330}
4331
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004332static int mwl8k_start(struct ieee80211_hw *hw)
4333{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004334 struct mwl8k_priv *priv = hw->priv;
4335 int rc;
4336
Joe Perchesa0607fd2009-11-18 23:29:17 -08004337 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004338 IRQF_SHARED, MWL8K_NAME, hw);
4339 if (rc) {
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304340 priv->irq = -1;
Joe Perches5db55842010-08-11 19:11:19 -07004341 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004342 return -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004343 }
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304344 priv->irq = priv->pdev->irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004345
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004346 /* Enable TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004347 tasklet_enable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004348 tasklet_enable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004349
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004350 /* Enable interrupts */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02004351 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05304352 iowrite32(MWL8K_A2H_EVENTS,
4353 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004354
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004355 rc = mwl8k_fw_lock(hw);
4356 if (!rc) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004357 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004358
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004359 if (!priv->ap_fw) {
4360 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004361 rc = mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004362
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004363 if (!rc)
4364 rc = mwl8k_cmd_set_pre_scan(hw);
4365
4366 if (!rc)
4367 rc = mwl8k_cmd_set_post_scan(hw,
4368 "\x00\x00\x00\x00\x00\x00");
4369 }
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004370
4371 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004372 rc = mwl8k_cmd_set_rateadapt_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004373
4374 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004375 rc = mwl8k_cmd_set_wmm_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004376
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004377 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004378 }
4379
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004380 if (rc) {
4381 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
4382 free_irq(priv->pdev->irq, hw);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304383 priv->irq = -1;
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004384 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004385 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004386 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004387
4388 return rc;
4389}
4390
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004391static void mwl8k_stop(struct ieee80211_hw *hw)
4392{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004393 struct mwl8k_priv *priv = hw->priv;
4394 int i;
4395
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004396 mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004397
4398 ieee80211_stop_queues(hw);
4399
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004400 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004401 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304402 if (priv->irq != -1) {
4403 free_irq(priv->pdev->irq, hw);
4404 priv->irq = -1;
4405 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004406
4407 /* Stop finalize join worker */
4408 cancel_work_sync(&priv->finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004409 cancel_work_sync(&priv->watchdog_ba_handle);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004410 if (priv->beacon_skb != NULL)
4411 dev_kfree_skb(priv->beacon_skb);
4412
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004413 /* Stop TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004414 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004415 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004416
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004417 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004418 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01004419 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004420}
4421
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004422static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image);
4423
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004424static int mwl8k_add_interface(struct ieee80211_hw *hw,
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004425 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004426{
4427 struct mwl8k_priv *priv = hw->priv;
4428 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004429 u32 macids_supported;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004430 int macid, rc;
4431 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004432
4433 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004434 * Reject interface creation if sniffer mode is active, as
4435 * STA operation is mutually exclusive with hardware sniffer
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004436 * mode. (Sniffer mode is only used on STA firmware.)
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004437 */
4438 if (priv->sniffer_enabled) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004439 wiphy_info(hw->wiphy,
4440 "unable to create STA interface because sniffer mode is enabled\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004441 return -EINVAL;
4442 }
4443
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004444 di = priv->device_info;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004445 switch (vif->type) {
4446 case NL80211_IFTYPE_AP:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004447 if (!priv->ap_fw && di->fw_image_ap) {
4448 /* we must load the ap fw to meet this request */
4449 if (!list_empty(&priv->vif_list))
4450 return -EBUSY;
4451 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4452 if (rc)
4453 return rc;
4454 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004455 macids_supported = priv->ap_macids_supported;
4456 break;
4457 case NL80211_IFTYPE_STATION:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004458 if (priv->ap_fw && di->fw_image_sta) {
4459 /* we must load the sta fw to meet this request */
4460 if (!list_empty(&priv->vif_list))
4461 return -EBUSY;
4462 rc = mwl8k_reload_firmware(hw, di->fw_image_sta);
4463 if (rc)
4464 return rc;
4465 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004466 macids_supported = priv->sta_macids_supported;
4467 break;
4468 default:
4469 return -EINVAL;
4470 }
4471
4472 macid = ffs(macids_supported & ~priv->macids_used);
4473 if (!macid--)
4474 return -EBUSY;
4475
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004476 /* Setup driver private area. */
Johannes Berg1ed32e42009-12-23 13:15:45 +01004477 mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004478 memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004479 mwl8k_vif->vif = vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004480 mwl8k_vif->macid = macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004481 mwl8k_vif->seqno = 0;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004482 memcpy(mwl8k_vif->bssid, vif->addr, ETH_ALEN);
4483 mwl8k_vif->is_hw_crypto_enabled = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004484
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01004485 /* Set the mac address. */
4486 mwl8k_cmd_set_mac_addr(hw, vif, vif->addr);
4487
4488 if (priv->ap_fw)
4489 mwl8k_cmd_set_new_stn_add_self(hw, vif);
4490
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004491 priv->macids_used |= 1 << mwl8k_vif->macid;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004492 list_add_tail(&mwl8k_vif->list, &priv->vif_list);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004493
4494 return 0;
4495}
4496
4497static void mwl8k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004498 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004499{
4500 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004501 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004502
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004503 if (priv->ap_fw)
4504 mwl8k_cmd_set_new_stn_del(hw, vif, vif->addr);
4505
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01004506 mwl8k_cmd_set_mac_addr(hw, vif, "\x00\x00\x00\x00\x00\x00");
Lennert Buytenhek32060e12009-10-22 20:20:04 +02004507
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004508 priv->macids_used &= ~(1 << mwl8k_vif->macid);
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004509 list_del(&mwl8k_vif->list);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004510}
4511
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004512static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004513{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004514 struct ieee80211_conf *conf = &hw->conf;
4515 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004516 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004517
Lennert Buytenhek7595d672009-08-17 23:59:40 +02004518 if (conf->flags & IEEE80211_CONF_IDLE) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004519 mwl8k_cmd_radio_disable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004520 return 0;
Lennert Buytenhek7595d672009-08-17 23:59:40 +02004521 }
4522
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004523 rc = mwl8k_fw_lock(hw);
4524 if (rc)
4525 return rc;
4526
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004527 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004528 if (rc)
4529 goto out;
4530
Lennert Buytenhek610677d2010-01-04 21:56:46 +01004531 rc = mwl8k_cmd_set_rf_channel(hw, conf);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004532 if (rc)
4533 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004534
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004535 if (conf->power_level > 18)
4536 conf->power_level = 18;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004537
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004538 if (priv->ap_fw) {
Nishant Sarmukadam03217082011-04-05 14:18:09 +05304539
4540 if (conf->flags & IEEE80211_CONF_CHANGE_POWER) {
4541 rc = mwl8k_cmd_tx_power(hw, conf, conf->power_level);
4542 if (rc)
4543 goto out;
4544 }
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004545
Nishant Sarmukadamda62b762011-02-17 14:45:16 -08004546 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x3);
4547 if (rc)
4548 wiphy_warn(hw->wiphy, "failed to set # of RX antennas");
4549 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7);
4550 if (rc)
4551 wiphy_warn(hw->wiphy, "failed to set # of TX antennas");
4552
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004553 } else {
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004554 rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level);
4555 if (rc)
4556 goto out;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004557 rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7);
4558 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004559
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004560out:
4561 mwl8k_fw_unlock(hw);
4562
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004563 return rc;
4564}
4565
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004566static void
4567mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4568 struct ieee80211_bss_conf *info, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004569{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004570 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304571 u32 ap_legacy_rates = 0;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004572 u8 ap_mcs_rates[16];
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004573 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004574
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004575 if (mwl8k_fw_lock(hw))
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004576 return;
4577
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004578 /*
4579 * No need to capture a beacon if we're no longer associated.
4580 */
4581 if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc)
4582 priv->capture_beacon = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004583
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004584 /*
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004585 * Get the AP's legacy and MCS rates.
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004586 */
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004587 if (vif->bss_conf.assoc) {
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004588 struct ieee80211_sta *ap;
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004589
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004590 rcu_read_lock();
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004591
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004592 ap = ieee80211_find_sta(vif, vif->bss_conf.bssid);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004593 if (ap == NULL) {
4594 rcu_read_unlock();
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004595 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004596 }
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004597
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004598 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) {
4599 ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ];
4600 } else {
4601 ap_legacy_rates =
4602 ap->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4603 }
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004604 memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004605
4606 rcu_read_unlock();
4607 }
4608
4609 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc) {
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004610 rc = mwl8k_cmd_set_rate(hw, vif, ap_legacy_rates, ap_mcs_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004611 if (rc)
4612 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004613
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01004614 rc = mwl8k_cmd_use_fixed_rate_sta(hw);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004615 if (rc)
4616 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004617 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004618
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004619 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004620 rc = mwl8k_set_radio_preamble(hw,
4621 vif->bss_conf.use_short_preamble);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004622 if (rc)
4623 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004624 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004625
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004626 if (changed & BSS_CHANGED_ERP_SLOT) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004627 rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004628 if (rc)
4629 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004630 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004631
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004632 if (vif->bss_conf.assoc &&
4633 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_ERP_CTS_PROT |
4634 BSS_CHANGED_HT))) {
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004635 rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004636 if (rc)
4637 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004638 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004639
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004640 if (vif->bss_conf.assoc &&
4641 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004642 /*
4643 * Finalize the join. Tell rx handler to process
4644 * next beacon from our BSSID.
4645 */
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01004646 memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004647 priv->capture_beacon = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004648 }
4649
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004650out:
4651 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004652}
4653
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004654static void
4655mwl8k_bss_info_changed_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4656 struct ieee80211_bss_conf *info, u32 changed)
4657{
4658 int rc;
4659
4660 if (mwl8k_fw_lock(hw))
4661 return;
4662
4663 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
4664 rc = mwl8k_set_radio_preamble(hw,
4665 vif->bss_conf.use_short_preamble);
4666 if (rc)
4667 goto out;
4668 }
4669
4670 if (changed & BSS_CHANGED_BASIC_RATES) {
4671 int idx;
4672 int rate;
4673
4674 /*
4675 * Use lowest supported basic rate for multicasts
4676 * and management frames (such as probe responses --
4677 * beacons will always go out at 1 Mb/s).
4678 */
4679 idx = ffs(vif->bss_conf.basic_rates);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004680 if (idx)
4681 idx--;
4682
4683 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4684 rate = mwl8k_rates_24[idx].hw_value;
4685 else
4686 rate = mwl8k_rates_50[idx].hw_value;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004687
4688 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
4689 }
4690
4691 if (changed & (BSS_CHANGED_BEACON_INT | BSS_CHANGED_BEACON)) {
4692 struct sk_buff *skb;
4693
4694 skb = ieee80211_beacon_get(hw, vif);
4695 if (skb != NULL) {
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01004696 mwl8k_cmd_set_beacon(hw, vif, skb->data, skb->len);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004697 kfree_skb(skb);
4698 }
4699 }
4700
4701 if (changed & BSS_CHANGED_BEACON_ENABLED)
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01004702 mwl8k_cmd_bss_start(hw, vif, info->enable_beacon);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004703
4704out:
4705 mwl8k_fw_unlock(hw);
4706}
4707
4708static void
4709mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4710 struct ieee80211_bss_conf *info, u32 changed)
4711{
4712 struct mwl8k_priv *priv = hw->priv;
4713
4714 if (!priv->ap_fw)
4715 mwl8k_bss_info_changed_sta(hw, vif, info, changed);
4716 else
4717 mwl8k_bss_info_changed_ap(hw, vif, info, changed);
4718}
4719
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02004720static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw,
Jiri Pirko22bedad2010-04-01 21:22:57 +00004721 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02004722{
4723 struct mwl8k_cmd_pkt *cmd;
4724
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004725 /*
4726 * Synthesize and return a command packet that programs the
4727 * hardware multicast address filter. At this point we don't
4728 * know whether FIF_ALLMULTI is being requested, but if it is,
4729 * we'll end up throwing this packet away and creating a new
4730 * one in mwl8k_configure_filter().
4731 */
Jiri Pirko22bedad2010-04-01 21:22:57 +00004732 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_list);
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02004733
4734 return (unsigned long)cmd;
4735}
4736
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004737static int
4738mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw,
4739 unsigned int changed_flags,
4740 unsigned int *total_flags)
4741{
4742 struct mwl8k_priv *priv = hw->priv;
4743
4744 /*
4745 * Hardware sniffer mode is mutually exclusive with STA
4746 * operation, so refuse to enable sniffer mode if a STA
4747 * interface is active.
4748 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004749 if (!list_empty(&priv->vif_list)) {
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004750 if (net_ratelimit())
Joe Perchesc96c31e2010-07-26 14:39:58 -07004751 wiphy_info(hw->wiphy,
4752 "not enabling sniffer mode because STA interface is active\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004753 return 0;
4754 }
4755
4756 if (!priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004757 if (mwl8k_cmd_enable_sniffer(hw, 1))
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004758 return 0;
4759 priv->sniffer_enabled = true;
4760 }
4761
4762 *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI |
4763 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL |
4764 FIF_OTHER_BSS;
4765
4766 return 1;
4767}
4768
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004769static struct mwl8k_vif *mwl8k_first_vif(struct mwl8k_priv *priv)
4770{
4771 if (!list_empty(&priv->vif_list))
4772 return list_entry(priv->vif_list.next, struct mwl8k_vif, list);
4773
4774 return NULL;
4775}
4776
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004777static void mwl8k_configure_filter(struct ieee80211_hw *hw,
4778 unsigned int changed_flags,
4779 unsigned int *total_flags,
4780 u64 multicast)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004781{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004782 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004783 struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast;
4784
4785 /*
Lennert Buytenhekc0adae22009-10-22 20:21:36 +02004786 * AP firmware doesn't allow fine-grained control over
4787 * the receive filter.
4788 */
4789 if (priv->ap_fw) {
4790 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
4791 kfree(cmd);
4792 return;
4793 }
4794
4795 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004796 * Enable hardware sniffer mode if FIF_CONTROL or
4797 * FIF_OTHER_BSS is requested.
4798 */
4799 if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) &&
4800 mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) {
4801 kfree(cmd);
4802 return;
4803 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004804
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004805 /* Clear unsupported feature flags */
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004806 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004807
Lennert Buytenhek90852f72010-01-02 10:31:42 +01004808 if (mwl8k_fw_lock(hw)) {
4809 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004810 return;
Lennert Buytenhek90852f72010-01-02 10:31:42 +01004811 }
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004812
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004813 if (priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004814 mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004815 priv->sniffer_enabled = false;
4816 }
4817
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004818 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
Lennert Buytenhek77165d82009-10-22 20:19:53 +02004819 if (*total_flags & FIF_BCN_PRBRESP_PROMISC) {
4820 /*
4821 * Disable the BSS filter.
4822 */
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004823 mwl8k_cmd_set_pre_scan(hw);
Lennert Buytenhek77165d82009-10-22 20:19:53 +02004824 } else {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004825 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01004826 const u8 *bssid;
Lennert Buytenheka94cc972009-08-03 21:58:57 +02004827
Lennert Buytenhek77165d82009-10-22 20:19:53 +02004828 /*
4829 * Enable the BSS filter.
4830 *
4831 * If there is an active STA interface, use that
4832 * interface's BSSID, otherwise use a dummy one
4833 * (where the OUI part needs to be nonzero for
4834 * the BSSID to be accepted by POST_SCAN).
4835 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004836 mwl8k_vif = mwl8k_first_vif(priv);
4837 if (mwl8k_vif != NULL)
4838 bssid = mwl8k_vif->vif->bss_conf.bssid;
4839 else
4840 bssid = "\x01\x00\x00\x00\x00\x00";
Lennert Buytenheka94cc972009-08-03 21:58:57 +02004841
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004842 mwl8k_cmd_set_post_scan(hw, bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004843 }
4844 }
4845
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004846 /*
4847 * If FIF_ALLMULTI is being requested, throw away the command
4848 * packet that ->prepare_multicast() built and replace it with
4849 * a command packet that enables reception of all multicast
4850 * packets.
4851 */
4852 if (*total_flags & FIF_ALLMULTI) {
4853 kfree(cmd);
Jiri Pirko22bedad2010-04-01 21:22:57 +00004854 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, NULL);
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004855 }
4856
4857 if (cmd != NULL) {
4858 mwl8k_post_cmd(hw, cmd);
4859 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004860 }
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02004861
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004862 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004863}
4864
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004865static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
4866{
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01004867 return mwl8k_cmd_set_rts_threshold(hw, value);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004868}
4869
Johannes Berg4a6967b2010-02-19 19:18:37 +01004870static int mwl8k_sta_remove(struct ieee80211_hw *hw,
4871 struct ieee80211_vif *vif,
4872 struct ieee80211_sta *sta)
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004873{
4874 struct mwl8k_priv *priv = hw->priv;
4875
Johannes Berg4a6967b2010-02-19 19:18:37 +01004876 if (priv->ap_fw)
4877 return mwl8k_cmd_set_new_stn_del(hw, vif, sta->addr);
4878 else
4879 return mwl8k_cmd_update_stadb_del(hw, vif, sta->addr);
4880}
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004881
Johannes Berg4a6967b2010-02-19 19:18:37 +01004882static int mwl8k_sta_add(struct ieee80211_hw *hw,
4883 struct ieee80211_vif *vif,
4884 struct ieee80211_sta *sta)
4885{
4886 struct mwl8k_priv *priv = hw->priv;
4887 int ret;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004888 int i;
4889 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4890 struct ieee80211_key_conf *key;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004891
Johannes Berg4a6967b2010-02-19 19:18:37 +01004892 if (!priv->ap_fw) {
4893 ret = mwl8k_cmd_update_stadb_add(hw, vif, sta);
4894 if (ret >= 0) {
4895 MWL8K_STA(sta)->peer_id = ret;
Nishant Sarmukadam17033542011-03-17 11:58:48 -07004896 if (sta->ht_cap.ht_supported)
4897 MWL8K_STA(sta)->is_ampdu_allowed = true;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004898 ret = 0;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004899 }
Johannes Berg4a6967b2010-02-19 19:18:37 +01004900
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004901 } else {
4902 ret = mwl8k_cmd_set_new_stn_add(hw, vif, sta);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004903 }
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004904
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004905 for (i = 0; i < NUM_WEP_KEYS; i++) {
4906 key = IEEE80211_KEY_CONF(mwl8k_vif->wep_key_conf[i].key);
4907 if (mwl8k_vif->wep_key_conf[i].enabled)
4908 mwl8k_set_key(hw, SET_KEY, vif, sta, key);
4909 }
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004910 return ret;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01004911}
4912
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004913static int mwl8k_conf_tx(struct ieee80211_hw *hw, u16 queue,
4914 const struct ieee80211_tx_queue_params *params)
4915{
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02004916 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004917 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004918
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02004919 rc = mwl8k_fw_lock(hw);
4920 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004921 BUG_ON(queue > MWL8K_TX_WMM_QUEUES - 1);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004922 memcpy(&priv->wmm_params[queue], params, sizeof(*params));
4923
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02004924 if (!priv->wmm_enabled)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004925 rc = mwl8k_cmd_set_wmm_mode(hw, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004926
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08004927 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004928 int q = MWL8K_TX_WMM_QUEUES - 1 - queue;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08004929 rc = mwl8k_cmd_set_edca_params(hw, q,
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004930 params->cw_min,
4931 params->cw_max,
4932 params->aifs,
4933 params->txop);
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08004934 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02004935
4936 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004937 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02004938
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004939 return rc;
4940}
4941
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004942static int mwl8k_get_stats(struct ieee80211_hw *hw,
4943 struct ieee80211_low_level_stats *stats)
4944{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004945 return mwl8k_cmd_get_stat(hw, stats);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004946}
4947
John W. Linville0d462bb2010-07-28 14:04:24 -04004948static int mwl8k_get_survey(struct ieee80211_hw *hw, int idx,
4949 struct survey_info *survey)
4950{
4951 struct mwl8k_priv *priv = hw->priv;
4952 struct ieee80211_conf *conf = &hw->conf;
4953
4954 if (idx != 0)
4955 return -ENOENT;
4956
4957 survey->channel = conf->channel;
4958 survey->filled = SURVEY_INFO_NOISE_DBM;
4959 survey->noise = priv->noise;
4960
4961 return 0;
4962}
4963
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07004964#define MAX_AMPDU_ATTEMPTS 5
4965
Lennert Buytenheka2292d82010-01-04 21:58:12 +01004966static int
4967mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4968 enum ieee80211_ampdu_mlme_action action,
Johannes Berg0b01f032011-01-18 13:51:05 +01004969 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
4970 u8 buf_size)
Lennert Buytenheka2292d82010-01-04 21:58:12 +01004971{
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07004972
4973 int i, rc = 0;
4974 struct mwl8k_priv *priv = hw->priv;
4975 struct mwl8k_ampdu_stream *stream;
4976 u8 *addr = sta->addr;
4977
4978 if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
4979 return -ENOTSUPP;
4980
4981 spin_lock(&priv->stream_lock);
4982 stream = mwl8k_lookup_stream(hw, addr, tid);
4983
Lennert Buytenheka2292d82010-01-04 21:58:12 +01004984 switch (action) {
4985 case IEEE80211_AMPDU_RX_START:
4986 case IEEE80211_AMPDU_RX_STOP:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07004987 break;
4988 case IEEE80211_AMPDU_TX_START:
4989 /* By the time we get here the hw queues may contain outgoing
4990 * packets for this RA/TID that are not part of this BA
4991 * session. The hw will assign sequence numbers to these
4992 * packets as they go out. So if we query the hw for its next
4993 * sequence number and use that for the SSN here, it may end up
4994 * being wrong, which will lead to sequence number mismatch at
4995 * the recipient. To avoid this, we reset the sequence number
4996 * to O for the first MPDU in this BA stream.
4997 */
4998 *ssn = 0;
4999 if (stream == NULL) {
5000 /* This means that somebody outside this driver called
5001 * ieee80211_start_tx_ba_session. This is unexpected
5002 * because we do our own rate control. Just warn and
5003 * move on.
5004 */
5005 wiphy_warn(hw->wiphy, "Unexpected call to %s. "
5006 "Proceeding anyway.\n", __func__);
5007 stream = mwl8k_add_stream(hw, sta, tid);
5008 }
5009 if (stream == NULL) {
5010 wiphy_debug(hw->wiphy, "no free AMPDU streams\n");
5011 rc = -EBUSY;
5012 break;
5013 }
5014 stream->state = AMPDU_STREAM_IN_PROGRESS;
5015
5016 /* Release the lock before we do the time consuming stuff */
5017 spin_unlock(&priv->stream_lock);
5018 for (i = 0; i < MAX_AMPDU_ATTEMPTS; i++) {
5019 rc = mwl8k_check_ba(hw, stream);
5020
5021 if (!rc)
5022 break;
5023 /*
5024 * HW queues take time to be flushed, give them
5025 * sufficient time
5026 */
5027
5028 msleep(1000);
5029 }
5030 spin_lock(&priv->stream_lock);
5031 if (rc) {
5032 wiphy_err(hw->wiphy, "Stream for tid %d busy after %d"
5033 " attempts\n", tid, MAX_AMPDU_ATTEMPTS);
5034 mwl8k_remove_stream(hw, stream);
5035 rc = -EBUSY;
5036 break;
5037 }
5038 ieee80211_start_tx_ba_cb_irqsafe(vif, addr, tid);
5039 break;
5040 case IEEE80211_AMPDU_TX_STOP:
5041 if (stream == NULL)
5042 break;
5043 if (stream->state == AMPDU_STREAM_ACTIVE) {
5044 spin_unlock(&priv->stream_lock);
5045 mwl8k_destroy_ba(hw, stream);
5046 spin_lock(&priv->stream_lock);
5047 }
5048 mwl8k_remove_stream(hw, stream);
5049 ieee80211_stop_tx_ba_cb_irqsafe(vif, addr, tid);
5050 break;
5051 case IEEE80211_AMPDU_TX_OPERATIONAL:
5052 BUG_ON(stream == NULL);
5053 BUG_ON(stream->state != AMPDU_STREAM_IN_PROGRESS);
5054 spin_unlock(&priv->stream_lock);
5055 rc = mwl8k_create_ba(hw, stream, buf_size);
5056 spin_lock(&priv->stream_lock);
5057 if (!rc)
5058 stream->state = AMPDU_STREAM_ACTIVE;
5059 else {
5060 spin_unlock(&priv->stream_lock);
5061 mwl8k_destroy_ba(hw, stream);
5062 spin_lock(&priv->stream_lock);
5063 wiphy_debug(hw->wiphy,
5064 "Failed adding stream for sta %pM tid %d\n",
5065 addr, tid);
5066 mwl8k_remove_stream(hw, stream);
5067 }
5068 break;
5069
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005070 default:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005071 rc = -ENOTSUPP;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005072 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005073
5074 spin_unlock(&priv->stream_lock);
5075 return rc;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005076}
5077
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005078static const struct ieee80211_ops mwl8k_ops = {
5079 .tx = mwl8k_tx,
5080 .start = mwl8k_start,
5081 .stop = mwl8k_stop,
5082 .add_interface = mwl8k_add_interface,
5083 .remove_interface = mwl8k_remove_interface,
5084 .config = mwl8k_config,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005085 .bss_info_changed = mwl8k_bss_info_changed,
Johannes Berg3ac64be2009-08-17 16:16:53 +02005086 .prepare_multicast = mwl8k_prepare_multicast,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005087 .configure_filter = mwl8k_configure_filter,
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005088 .set_key = mwl8k_set_key,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005089 .set_rts_threshold = mwl8k_set_rts_threshold,
Johannes Berg4a6967b2010-02-19 19:18:37 +01005090 .sta_add = mwl8k_sta_add,
5091 .sta_remove = mwl8k_sta_remove,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005092 .conf_tx = mwl8k_conf_tx,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005093 .get_stats = mwl8k_get_stats,
John W. Linville0d462bb2010-07-28 14:04:24 -04005094 .get_survey = mwl8k_get_survey,
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005095 .ampdu_action = mwl8k_ampdu_action,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005096};
5097
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005098static void mwl8k_finalize_join_worker(struct work_struct *work)
5099{
5100 struct mwl8k_priv *priv =
5101 container_of(work, struct mwl8k_priv, finalize_join_worker);
5102 struct sk_buff *skb = priv->beacon_skb;
Johannes Berg56007a02010-01-26 14:19:52 +01005103 struct ieee80211_mgmt *mgmt = (void *)skb->data;
5104 int len = skb->len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
5105 const u8 *tim = cfg80211_find_ie(WLAN_EID_TIM,
5106 mgmt->u.beacon.variable, len);
5107 int dtim_period = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005108
Johannes Berg56007a02010-01-26 14:19:52 +01005109 if (tim && tim[1] >= 2)
5110 dtim_period = tim[3];
5111
5112 mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len, dtim_period);
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005113
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005114 dev_kfree_skb(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005115 priv->beacon_skb = NULL;
5116}
5117
John W. Linvillebcb628d2009-11-06 16:40:16 -05005118enum {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005119 MWL8363 = 0,
5120 MWL8687,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005121 MWL8366,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02005122};
5123
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07005124#define MWL8K_8366_AP_FW_API 2
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005125#define _MWL8K_8366_AP_FW(api) "mwl8k/fmimage_8366_ap-" #api ".fw"
5126#define MWL8K_8366_AP_FW(api) _MWL8K_8366_AP_FW(api)
5127
John W. Linvillebcb628d2009-11-06 16:40:16 -05005128static struct mwl8k_device_info mwl8k_info_tbl[] __devinitdata = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005129 [MWL8363] = {
5130 .part_name = "88w8363",
5131 .helper_image = "mwl8k/helper_8363.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005132 .fw_image_sta = "mwl8k/fmimage_8363.fw",
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005133 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005134 [MWL8687] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005135 .part_name = "88w8687",
5136 .helper_image = "mwl8k/helper_8687.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005137 .fw_image_sta = "mwl8k/fmimage_8687.fw",
John W. Linvillebcb628d2009-11-06 16:40:16 -05005138 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005139 [MWL8366] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005140 .part_name = "88w8366",
5141 .helper_image = "mwl8k/helper_8366.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005142 .fw_image_sta = "mwl8k/fmimage_8366.fw",
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005143 .fw_image_ap = MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API),
5144 .fw_api_ap = MWL8K_8366_AP_FW_API,
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01005145 .ap_rxd_ops = &rxd_8366_ap_ops,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005146 },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005147};
5148
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005149MODULE_FIRMWARE("mwl8k/helper_8363.fw");
5150MODULE_FIRMWARE("mwl8k/fmimage_8363.fw");
5151MODULE_FIRMWARE("mwl8k/helper_8687.fw");
5152MODULE_FIRMWARE("mwl8k/fmimage_8687.fw");
5153MODULE_FIRMWARE("mwl8k/helper_8366.fw");
5154MODULE_FIRMWARE("mwl8k/fmimage_8366.fw");
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005155MODULE_FIRMWARE(MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API));
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005156
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005157static DEFINE_PCI_DEVICE_TABLE(mwl8k_pci_id_table) = {
Benjamin Larssone5868ba2010-03-19 01:46:10 +01005158 { PCI_VDEVICE(MARVELL, 0x2a0a), .driver_data = MWL8363, },
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005159 { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, },
5160 { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005161 { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, },
5162 { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, },
5163 { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, },
Lennert Buytenhekca665272010-01-12 13:47:53 +01005164 { PCI_VDEVICE(MARVELL, 0x2a43), .driver_data = MWL8366, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005165 { },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005166};
5167MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table);
5168
Brian Cavagnolo99020472010-11-12 17:23:52 -08005169static int mwl8k_request_alt_fw(struct mwl8k_priv *priv)
5170{
5171 int rc;
5172 printk(KERN_ERR "%s: Error requesting preferred fw %s.\n"
5173 "Trying alternative firmware %s\n", pci_name(priv->pdev),
5174 priv->fw_pref, priv->fw_alt);
5175 rc = mwl8k_request_fw(priv, priv->fw_alt, &priv->fw_ucode, true);
5176 if (rc) {
5177 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5178 pci_name(priv->pdev), priv->fw_alt);
5179 return rc;
5180 }
5181 return 0;
5182}
5183
5184static int mwl8k_firmware_load_success(struct mwl8k_priv *priv);
5185static void mwl8k_fw_state_machine(const struct firmware *fw, void *context)
5186{
5187 struct mwl8k_priv *priv = context;
5188 struct mwl8k_device_info *di = priv->device_info;
5189 int rc;
5190
5191 switch (priv->fw_state) {
5192 case FW_STATE_INIT:
5193 if (!fw) {
5194 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
5195 pci_name(priv->pdev), di->helper_image);
5196 goto fail;
5197 }
5198 priv->fw_helper = fw;
5199 rc = mwl8k_request_fw(priv, priv->fw_pref, &priv->fw_ucode,
5200 true);
5201 if (rc && priv->fw_alt) {
5202 rc = mwl8k_request_alt_fw(priv);
5203 if (rc)
5204 goto fail;
5205 priv->fw_state = FW_STATE_LOADING_ALT;
5206 } else if (rc)
5207 goto fail;
5208 else
5209 priv->fw_state = FW_STATE_LOADING_PREF;
5210 break;
5211
5212 case FW_STATE_LOADING_PREF:
5213 if (!fw) {
5214 if (priv->fw_alt) {
5215 rc = mwl8k_request_alt_fw(priv);
5216 if (rc)
5217 goto fail;
5218 priv->fw_state = FW_STATE_LOADING_ALT;
5219 } else
5220 goto fail;
5221 } else {
5222 priv->fw_ucode = fw;
5223 rc = mwl8k_firmware_load_success(priv);
5224 if (rc)
5225 goto fail;
5226 else
5227 complete(&priv->firmware_loading_complete);
5228 }
5229 break;
5230
5231 case FW_STATE_LOADING_ALT:
5232 if (!fw) {
5233 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5234 pci_name(priv->pdev), di->helper_image);
5235 goto fail;
5236 }
5237 priv->fw_ucode = fw;
5238 rc = mwl8k_firmware_load_success(priv);
5239 if (rc)
5240 goto fail;
5241 else
5242 complete(&priv->firmware_loading_complete);
5243 break;
5244
5245 default:
5246 printk(KERN_ERR "%s: Unexpected firmware loading state: %d\n",
5247 MWL8K_NAME, priv->fw_state);
5248 BUG_ON(1);
5249 }
5250
5251 return;
5252
5253fail:
5254 priv->fw_state = FW_STATE_ERROR;
5255 complete(&priv->firmware_loading_complete);
5256 device_release_driver(&priv->pdev->dev);
5257 mwl8k_release_firmware(priv);
5258}
5259
5260static int mwl8k_init_firmware(struct ieee80211_hw *hw, char *fw_image,
5261 bool nowait)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005262{
5263 struct mwl8k_priv *priv = hw->priv;
5264 int rc;
5265
5266 /* Reset firmware and hardware */
5267 mwl8k_hw_reset(priv);
5268
5269 /* Ask userland hotplug daemon for the device firmware */
Brian Cavagnolo99020472010-11-12 17:23:52 -08005270 rc = mwl8k_request_firmware(priv, fw_image, nowait);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005271 if (rc) {
5272 wiphy_err(hw->wiphy, "Firmware files not found\n");
5273 return rc;
5274 }
5275
Brian Cavagnolo99020472010-11-12 17:23:52 -08005276 if (nowait)
5277 return rc;
5278
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005279 /* Load firmware into hardware */
5280 rc = mwl8k_load_firmware(hw);
5281 if (rc)
5282 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5283
5284 /* Reclaim memory once firmware is successfully loaded */
5285 mwl8k_release_firmware(priv);
5286
5287 return rc;
5288}
5289
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005290static int mwl8k_init_txqs(struct ieee80211_hw *hw)
5291{
5292 struct mwl8k_priv *priv = hw->priv;
5293 int rc = 0;
5294 int i;
5295
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005296 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005297 rc = mwl8k_txq_init(hw, i);
5298 if (rc)
5299 break;
5300 if (priv->ap_fw)
5301 iowrite32(priv->txq[i].txd_dma,
5302 priv->sram + priv->txq_offset[i]);
5303 }
5304 return rc;
5305}
5306
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005307/* initialize hw after successfully loading a firmware image */
5308static int mwl8k_probe_hw(struct ieee80211_hw *hw)
5309{
5310 struct mwl8k_priv *priv = hw->priv;
5311 int rc = 0;
5312 int i;
5313
5314 if (priv->ap_fw) {
5315 priv->rxd_ops = priv->device_info->ap_rxd_ops;
5316 if (priv->rxd_ops == NULL) {
5317 wiphy_err(hw->wiphy,
5318 "Driver does not have AP firmware image support for this hardware\n");
5319 goto err_stop_firmware;
5320 }
5321 } else {
5322 priv->rxd_ops = &rxd_sta_ops;
5323 }
5324
5325 priv->sniffer_enabled = false;
5326 priv->wmm_enabled = false;
5327 priv->pending_tx_pkts = 0;
5328
5329 rc = mwl8k_rxq_init(hw, 0);
5330 if (rc)
5331 goto err_stop_firmware;
5332 rxq_refill(hw, 0, INT_MAX);
5333
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005334 /* For the sta firmware, we need to know the dma addresses of tx queues
5335 * before sending MWL8K_CMD_GET_HW_SPEC. So we must initialize them
5336 * prior to issuing this command. But for the AP case, we learn the
5337 * total number of queues from the result CMD_GET_HW_SPEC, so for this
5338 * case we must initialize the tx queues after.
5339 */
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07005340 priv->num_ampdu_queues = 0;
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005341 if (!priv->ap_fw) {
5342 rc = mwl8k_init_txqs(hw);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005343 if (rc)
5344 goto err_free_queues;
5345 }
5346
5347 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
5348 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005349 iowrite32(MWL8K_A2H_INT_TX_DONE|MWL8K_A2H_INT_RX_READY|
5350 MWL8K_A2H_INT_BA_WATCHDOG,
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005351 priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05305352 iowrite32(MWL8K_A2H_INT_OPC_DONE,
5353 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005354
5355 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
5356 IRQF_SHARED, MWL8K_NAME, hw);
5357 if (rc) {
5358 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
5359 goto err_free_queues;
5360 }
5361
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005362 memset(priv->ampdu, 0, sizeof(priv->ampdu));
5363
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005364 /*
5365 * Temporarily enable interrupts. Initial firmware host
5366 * commands use interrupts and avoid polling. Disable
5367 * interrupts when done.
5368 */
5369 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5370
5371 /* Get config data, mac addrs etc */
5372 if (priv->ap_fw) {
5373 rc = mwl8k_cmd_get_hw_spec_ap(hw);
5374 if (!rc)
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005375 rc = mwl8k_init_txqs(hw);
5376 if (!rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005377 rc = mwl8k_cmd_set_hw_spec(hw);
5378 } else {
5379 rc = mwl8k_cmd_get_hw_spec_sta(hw);
5380 }
5381 if (rc) {
5382 wiphy_err(hw->wiphy, "Cannot initialise firmware\n");
5383 goto err_free_irq;
5384 }
5385
5386 /* Turn radio off */
5387 rc = mwl8k_cmd_radio_disable(hw);
5388 if (rc) {
5389 wiphy_err(hw->wiphy, "Cannot disable\n");
5390 goto err_free_irq;
5391 }
5392
5393 /* Clear MAC address */
5394 rc = mwl8k_cmd_set_mac_addr(hw, NULL, "\x00\x00\x00\x00\x00\x00");
5395 if (rc) {
5396 wiphy_err(hw->wiphy, "Cannot clear MAC address\n");
5397 goto err_free_irq;
5398 }
5399
5400 /* Disable interrupts */
5401 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5402 free_irq(priv->pdev->irq, hw);
5403
5404 wiphy_info(hw->wiphy, "%s v%d, %pm, %s firmware %u.%u.%u.%u\n",
5405 priv->device_info->part_name,
5406 priv->hw_rev, hw->wiphy->perm_addr,
5407 priv->ap_fw ? "AP" : "STA",
5408 (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff,
5409 (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff);
5410
5411 return 0;
5412
5413err_free_irq:
5414 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5415 free_irq(priv->pdev->irq, hw);
5416
5417err_free_queues:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005418 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005419 mwl8k_txq_deinit(hw, i);
5420 mwl8k_rxq_deinit(hw, 0);
5421
5422err_stop_firmware:
5423 mwl8k_hw_reset(priv);
5424
5425 return rc;
5426}
5427
5428/*
5429 * invoke mwl8k_reload_firmware to change the firmware image after the device
5430 * has already been registered
5431 */
5432static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image)
5433{
5434 int i, rc = 0;
5435 struct mwl8k_priv *priv = hw->priv;
5436
5437 mwl8k_stop(hw);
5438 mwl8k_rxq_deinit(hw, 0);
5439
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005440 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005441 mwl8k_txq_deinit(hw, i);
5442
Brian Cavagnolo99020472010-11-12 17:23:52 -08005443 rc = mwl8k_init_firmware(hw, fw_image, false);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005444 if (rc)
5445 goto fail;
5446
5447 rc = mwl8k_probe_hw(hw);
5448 if (rc)
5449 goto fail;
5450
5451 rc = mwl8k_start(hw);
5452 if (rc)
5453 goto fail;
5454
5455 rc = mwl8k_config(hw, ~0);
5456 if (rc)
5457 goto fail;
5458
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005459 for (i = 0; i < MWL8K_TX_WMM_QUEUES; i++) {
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005460 rc = mwl8k_conf_tx(hw, i, &priv->wmm_params[i]);
5461 if (rc)
5462 goto fail;
5463 }
5464
5465 return rc;
5466
5467fail:
5468 printk(KERN_WARNING "mwl8k: Failed to reload firmware image.\n");
5469 return rc;
5470}
5471
5472static int mwl8k_firmware_load_success(struct mwl8k_priv *priv)
5473{
5474 struct ieee80211_hw *hw = priv->hw;
5475 int i, rc;
5476
Brian Cavagnolo99020472010-11-12 17:23:52 -08005477 rc = mwl8k_load_firmware(hw);
5478 mwl8k_release_firmware(priv);
5479 if (rc) {
5480 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5481 return rc;
5482 }
5483
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005484 /*
5485 * Extra headroom is the size of the required DMA header
5486 * minus the size of the smallest 802.11 frame (CTS frame).
5487 */
5488 hw->extra_tx_headroom =
5489 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
5490
5491 hw->channel_change_time = 10;
5492
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005493 hw->queues = MWL8K_TX_WMM_QUEUES;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005494
5495 /* Set rssi values to dBm */
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08005496 hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_HAS_RATE_CONTROL;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005497 hw->vif_data_size = sizeof(struct mwl8k_vif);
5498 hw->sta_data_size = sizeof(struct mwl8k_sta);
5499
5500 priv->macids_used = 0;
5501 INIT_LIST_HEAD(&priv->vif_list);
5502
5503 /* Set default radio state and preamble */
5504 priv->radio_on = 0;
5505 priv->radio_short_preamble = 0;
5506
5507 /* Finalize join worker */
5508 INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005509 /* Handle watchdog ba events */
5510 INIT_WORK(&priv->watchdog_ba_handle, mwl8k_watchdog_ba_events);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005511
5512 /* TX reclaim and RX tasklets. */
5513 tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw);
5514 tasklet_disable(&priv->poll_tx_task);
5515 tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw);
5516 tasklet_disable(&priv->poll_rx_task);
5517
5518 /* Power management cookie */
5519 priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
5520 if (priv->cookie == NULL)
5521 return -ENOMEM;
5522
5523 mutex_init(&priv->fw_mutex);
5524 priv->fw_mutex_owner = NULL;
5525 priv->fw_mutex_depth = 0;
5526 priv->hostcmd_wait = NULL;
5527
5528 spin_lock_init(&priv->tx_lock);
5529
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005530 spin_lock_init(&priv->stream_lock);
5531
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005532 priv->tx_wait = NULL;
5533
5534 rc = mwl8k_probe_hw(hw);
5535 if (rc)
5536 goto err_free_cookie;
5537
5538 hw->wiphy->interface_modes = 0;
5539 if (priv->ap_macids_supported || priv->device_info->fw_image_ap)
5540 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP);
5541 if (priv->sta_macids_supported || priv->device_info->fw_image_sta)
5542 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
5543
5544 rc = ieee80211_register_hw(hw);
5545 if (rc) {
5546 wiphy_err(hw->wiphy, "Cannot register device\n");
5547 goto err_unprobe_hw;
5548 }
5549
5550 return 0;
5551
5552err_unprobe_hw:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005553 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005554 mwl8k_txq_deinit(hw, i);
5555 mwl8k_rxq_deinit(hw, 0);
5556
5557err_free_cookie:
5558 if (priv->cookie != NULL)
5559 pci_free_consistent(priv->pdev, 4,
5560 priv->cookie, priv->cookie_dma);
5561
5562 return rc;
5563}
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005564static int __devinit mwl8k_probe(struct pci_dev *pdev,
5565 const struct pci_device_id *id)
5566{
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005567 static int printed_version;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005568 struct ieee80211_hw *hw;
5569 struct mwl8k_priv *priv;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005570 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005571 int rc;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02005572
5573 if (!printed_version) {
5574 printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION);
5575 printed_version = 1;
5576 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005577
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005578
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005579 rc = pci_enable_device(pdev);
5580 if (rc) {
5581 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
5582 MWL8K_NAME);
5583 return rc;
5584 }
5585
5586 rc = pci_request_regions(pdev, MWL8K_NAME);
5587 if (rc) {
5588 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
5589 MWL8K_NAME);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01005590 goto err_disable_device;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005591 }
5592
5593 pci_set_master(pdev);
5594
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005595
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005596 hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
5597 if (hw == NULL) {
5598 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
5599 rc = -ENOMEM;
5600 goto err_free_reg;
5601 }
5602
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005603 SET_IEEE80211_DEV(hw, &pdev->dev);
5604 pci_set_drvdata(pdev, hw);
5605
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005606 priv = hw->priv;
5607 priv->hw = hw;
5608 priv->pdev = pdev;
John W. Linvillebcb628d2009-11-06 16:40:16 -05005609 priv->device_info = &mwl8k_info_tbl[id->driver_data];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005610
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005611
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005612 priv->sram = pci_iomap(pdev, 0, 0x10000);
5613 if (priv->sram == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07005614 wiphy_err(hw->wiphy, "Cannot map device SRAM\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005615 goto err_iounmap;
5616 }
5617
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005618 /*
5619 * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
5620 * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
5621 */
5622 priv->regs = pci_iomap(pdev, 1, 0x10000);
5623 if (priv->regs == NULL) {
5624 priv->regs = pci_iomap(pdev, 2, 0x10000);
5625 if (priv->regs == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07005626 wiphy_err(hw->wiphy, "Cannot map device registers\n");
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005627 goto err_iounmap;
5628 }
5629 }
5630
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005631 /*
Brian Cavagnolo99020472010-11-12 17:23:52 -08005632 * Choose the initial fw image depending on user input. If a second
5633 * image is available, make it the alternative image that will be
5634 * loaded if the first one fails.
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005635 */
Brian Cavagnolo99020472010-11-12 17:23:52 -08005636 init_completion(&priv->firmware_loading_complete);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005637 di = priv->device_info;
Brian Cavagnolo99020472010-11-12 17:23:52 -08005638 if (ap_mode_default && di->fw_image_ap) {
5639 priv->fw_pref = di->fw_image_ap;
5640 priv->fw_alt = di->fw_image_sta;
5641 } else if (!ap_mode_default && di->fw_image_sta) {
5642 priv->fw_pref = di->fw_image_sta;
5643 priv->fw_alt = di->fw_image_ap;
5644 } else if (ap_mode_default && !di->fw_image_ap && di->fw_image_sta) {
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005645 printk(KERN_WARNING "AP fw is unavailable. Using STA fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08005646 priv->fw_pref = di->fw_image_sta;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005647 } else if (!ap_mode_default && !di->fw_image_sta && di->fw_image_ap) {
5648 printk(KERN_WARNING "STA fw is unavailable. Using AP fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08005649 priv->fw_pref = di->fw_image_ap;
5650 }
5651 rc = mwl8k_init_firmware(hw, priv->fw_pref, true);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005652 if (rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005653 goto err_stop_firmware;
Brian Cavagnolo99020472010-11-12 17:23:52 -08005654 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005655
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005656err_stop_firmware:
5657 mwl8k_hw_reset(priv);
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005658
5659err_iounmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005660 if (priv->regs != NULL)
5661 pci_iounmap(pdev, priv->regs);
5662
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005663 if (priv->sram != NULL)
5664 pci_iounmap(pdev, priv->sram);
5665
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005666 pci_set_drvdata(pdev, NULL);
5667 ieee80211_free_hw(hw);
5668
5669err_free_reg:
5670 pci_release_regions(pdev);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01005671
5672err_disable_device:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005673 pci_disable_device(pdev);
5674
5675 return rc;
5676}
5677
Joerg Albert230f7af2009-04-18 02:10:45 +02005678static void __devexit mwl8k_shutdown(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005679{
5680 printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__);
5681}
5682
Joerg Albert230f7af2009-04-18 02:10:45 +02005683static void __devexit mwl8k_remove(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005684{
5685 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
5686 struct mwl8k_priv *priv;
5687 int i;
5688
5689 if (hw == NULL)
5690 return;
5691 priv = hw->priv;
5692
Brian Cavagnolo99020472010-11-12 17:23:52 -08005693 wait_for_completion(&priv->firmware_loading_complete);
5694
5695 if (priv->fw_state == FW_STATE_ERROR) {
5696 mwl8k_hw_reset(priv);
5697 goto unmap;
5698 }
5699
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005700 ieee80211_stop_queues(hw);
5701
Lennert Buytenhek60aa5692009-08-03 21:59:09 +02005702 ieee80211_unregister_hw(hw);
5703
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01005704 /* Remove TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01005705 tasklet_kill(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01005706 tasklet_kill(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005707
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005708 /* Stop hardware */
5709 mwl8k_hw_reset(priv);
5710
5711 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005712 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01005713 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005714
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005715 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005716 mwl8k_txq_deinit(hw, i);
5717
5718 mwl8k_rxq_deinit(hw, 0);
5719
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02005720 pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005721
Brian Cavagnolo99020472010-11-12 17:23:52 -08005722unmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005723 pci_iounmap(pdev, priv->regs);
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005724 pci_iounmap(pdev, priv->sram);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005725 pci_set_drvdata(pdev, NULL);
5726 ieee80211_free_hw(hw);
5727 pci_release_regions(pdev);
5728 pci_disable_device(pdev);
5729}
5730
5731static struct pci_driver mwl8k_driver = {
5732 .name = MWL8K_NAME,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005733 .id_table = mwl8k_pci_id_table,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005734 .probe = mwl8k_probe,
5735 .remove = __devexit_p(mwl8k_remove),
5736 .shutdown = __devexit_p(mwl8k_shutdown),
5737};
5738
5739static int __init mwl8k_init(void)
5740{
5741 return pci_register_driver(&mwl8k_driver);
5742}
5743
5744static void __exit mwl8k_exit(void)
5745{
5746 pci_unregister_driver(&mwl8k_driver);
5747}
5748
5749module_init(mwl8k_init);
5750module_exit(mwl8k_exit);
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02005751
5752MODULE_DESCRIPTION(MWL8K_DESC);
5753MODULE_VERSION(MWL8K_VERSION);
5754MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
5755MODULE_LICENSE("GPL");