blob: 32261189bcef9065eac5cf14b961497a79a58f93 [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 Sarmukadam170335432011-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 Buytenhek42fba21d2009-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 Buytenhekaa21d0f62010-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 Buytenhekaa21d0f62010-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 Buytenhekaa21d0f62010-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 Buytenhek42fba21d2009-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 Buytenhekd4b70572009-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
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530784#define REDUCED_TX_HEADROOM 8
785
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800786static void
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530787mwl8k_add_dma_header(struct mwl8k_priv *priv, struct sk_buff *skb,
788 int head_pad, int tail_pad)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100789{
790 struct ieee80211_hdr *wh;
Lennert Buytenhekca009302009-11-30 18:12:20 +0100791 int hdrlen;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800792 int reqd_hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100793 struct mwl8k_dma_data *tr;
794
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100795 /*
Lennert Buytenhekca009302009-11-30 18:12:20 +0100796 * Add a firmware DMA header; the firmware requires that we
797 * present a 2-byte payload length followed by a 4-address
798 * header (without QoS field), followed (optionally) by any
799 * WEP/ExtIV header (but only filled in for CCMP).
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100800 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100801 wh = (struct ieee80211_hdr *)skb->data;
802
803 hdrlen = ieee80211_hdrlen(wh->frame_control);
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530804
805 /*
806 * Check if skb_resize is required because of
807 * tx_headroom adjustment.
808 */
809 if (priv->ap_fw && (hdrlen < (sizeof(struct ieee80211_cts)
810 + REDUCED_TX_HEADROOM))) {
811 if (pskb_expand_head(skb, REDUCED_TX_HEADROOM, 0, GFP_ATOMIC)) {
812
813 wiphy_err(priv->hw->wiphy,
814 "Failed to reallocate TX buffer\n");
815 return;
816 }
817 skb->truesize += REDUCED_TX_HEADROOM;
818 }
819
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530820 reqd_hdrlen = sizeof(*tr) + head_pad;
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800821
822 if (hdrlen != reqd_hdrlen)
823 skb_push(skb, reqd_hdrlen - hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100824
825 if (ieee80211_is_data_qos(wh->frame_control))
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800826 hdrlen -= IEEE80211_QOS_CTL_LEN;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100827
828 tr = (struct mwl8k_dma_data *)skb->data;
829 if (wh != &tr->wh)
830 memmove(&tr->wh, wh, hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100831 if (hdrlen != sizeof(tr->wh))
832 memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100833
834 /*
835 * Firmware length is the length of the fully formed "802.11
836 * payload". That is, everything except for the 802.11 header.
837 * This includes all crypto material including the MIC.
838 */
Nishant Sarmukadam252486a2010-12-30 11:23:31 -0800839 tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr) + tail_pad);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100840}
841
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +0530842static void mwl8k_encapsulate_tx_frame(struct mwl8k_priv *priv,
843 struct sk_buff *skb)
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800844{
845 struct ieee80211_hdr *wh;
846 struct ieee80211_tx_info *tx_info;
847 struct ieee80211_key_conf *key_conf;
848 int data_pad;
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530849 int head_pad = 0;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800850
851 wh = (struct ieee80211_hdr *)skb->data;
852
853 tx_info = IEEE80211_SKB_CB(skb);
854
855 key_conf = NULL;
856 if (ieee80211_is_data(wh->frame_control))
857 key_conf = tx_info->control.hw_key;
858
859 /*
860 * Make sure the packet header is in the DMA header format (4-address
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530861 * without QoS), and add head & tail padding when HW crypto is enabled.
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800862 *
863 * We have the following trailer padding requirements:
864 * - WEP: 4 trailer bytes (ICV)
865 * - TKIP: 12 trailer bytes (8 MIC + 4 ICV)
866 * - CCMP: 8 trailer bytes (MIC)
867 */
868 data_pad = 0;
869 if (key_conf != NULL) {
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530870 head_pad = key_conf->iv_len;
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800871 switch (key_conf->cipher) {
872 case WLAN_CIPHER_SUITE_WEP40:
873 case WLAN_CIPHER_SUITE_WEP104:
874 data_pad = 4;
875 break;
876 case WLAN_CIPHER_SUITE_TKIP:
877 data_pad = 12;
878 break;
879 case WLAN_CIPHER_SUITE_CCMP:
880 data_pad = 8;
881 break;
882 }
883 }
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +0530884 mwl8k_add_dma_header(priv, skb, head_pad, data_pad);
Nishant Sarmukadame53d9b92010-12-30 11:23:32 -0800885}
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100886
887/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100888 * Packet reception for 88w8366 AP firmware.
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200889 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100890struct mwl8k_rxd_8366_ap {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200891 __le16 pkt_len;
892 __u8 sq2;
893 __u8 rate;
894 __le32 pkt_phys_addr;
895 __le32 next_rxd_phys_addr;
896 __le16 qos_control;
897 __le16 htsig2;
898 __le32 hw_rssi_info;
899 __le32 hw_noise_floor_info;
900 __u8 noise_floor;
901 __u8 pad0[3];
902 __u8 rssi;
903 __u8 rx_status;
904 __u8 channel;
905 __u8 rx_ctrl;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000906} __packed;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200907
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100908#define MWL8K_8366_AP_RATE_INFO_MCS_FORMAT 0x80
909#define MWL8K_8366_AP_RATE_INFO_40MHZ 0x40
910#define MWL8K_8366_AP_RATE_INFO_RATEID(x) ((x) & 0x3f)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100911
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100912#define MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST 0x80
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200913
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800914/* 8366 AP rx_status bits */
915#define MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK 0x80
916#define MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR 0xFF
917#define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR 0x02
918#define MWL8K_8366_AP_RXSTAT_WEP_DECRYPT_ICV_ERR 0x04
919#define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_ICV_ERR 0x08
920
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100921static void mwl8k_rxd_8366_ap_init(void *_rxd, dma_addr_t next_dma_addr)
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
925 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100926 rxd->rx_ctrl = MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200927}
928
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100929static void mwl8k_rxd_8366_ap_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200930{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100931 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200932
933 rxd->pkt_len = cpu_to_le16(len);
934 rxd->pkt_phys_addr = cpu_to_le32(addr);
935 wmb();
936 rxd->rx_ctrl = 0;
937}
938
939static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100940mwl8k_rxd_8366_ap_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -0400941 __le16 *qos, s8 *noise)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200942{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100943 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200944
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100945 if (!(rxd->rx_ctrl & MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200946 return -1;
947 rmb();
948
949 memset(status, 0, sizeof(*status));
950
951 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -0400952 *noise = -rxd->noise_floor;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200953
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100954 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_MCS_FORMAT) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200955 status->flag |= RX_FLAG_HT;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100956 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_40MHZ)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100957 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100958 status->rate_idx = MWL8K_8366_AP_RATE_INFO_RATEID(rxd->rate);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200959 } else {
960 int i;
961
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100962 for (i = 0; i < ARRAY_SIZE(mwl8k_rates_24); i++) {
963 if (mwl8k_rates_24[i].hw_value == rxd->rate) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200964 status->rate_idx = i;
965 break;
966 }
967 }
968 }
969
Lennert Buytenhek85478342010-01-12 13:48:56 +0100970 if (rxd->channel > 14) {
971 status->band = IEEE80211_BAND_5GHZ;
972 if (!(status->flag & RX_FLAG_HT))
973 status->rate_idx -= 5;
974 } else {
975 status->band = IEEE80211_BAND_2GHZ;
976 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +0900977 status->freq = ieee80211_channel_to_frequency(rxd->channel,
978 status->band);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200979
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100980 *qos = rxd->qos_control;
981
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -0800982 if ((rxd->rx_status != MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR) &&
983 (rxd->rx_status & MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK) &&
984 (rxd->rx_status & MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR))
985 status->flag |= RX_FLAG_MMIC_ERROR;
986
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200987 return le16_to_cpu(rxd->pkt_len);
988}
989
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100990static struct rxd_ops rxd_8366_ap_ops = {
991 .rxd_size = sizeof(struct mwl8k_rxd_8366_ap),
992 .rxd_init = mwl8k_rxd_8366_ap_init,
993 .rxd_refill = mwl8k_rxd_8366_ap_refill,
994 .rxd_process = mwl8k_rxd_8366_ap_process,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200995};
996
997/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100998 * Packet reception for STA firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100999 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001000struct mwl8k_rxd_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001001 __le16 pkt_len;
1002 __u8 link_quality;
1003 __u8 noise_level;
1004 __le32 pkt_phys_addr;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001005 __le32 next_rxd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001006 __le16 qos_control;
1007 __le16 rate_info;
1008 __le32 pad0[4];
1009 __u8 rssi;
1010 __u8 channel;
1011 __le16 pad1;
1012 __u8 rx_ctrl;
1013 __u8 rx_status;
1014 __u8 pad2[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +00001015} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001016
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001017#define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000
1018#define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3)
1019#define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f)
1020#define MWL8K_STA_RATE_INFO_40MHZ 0x0004
1021#define MWL8K_STA_RATE_INFO_SHORTGI 0x0002
1022#define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001023
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001024#define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001025#define MWL8K_STA_RX_CTRL_DECRYPT_ERROR 0x04
1026/* ICV=0 or MIC=1 */
1027#define MWL8K_STA_RX_CTRL_DEC_ERR_TYPE 0x08
1028/* Key is uploaded only in failure case */
1029#define MWL8K_STA_RX_CTRL_KEY_INDEX 0x30
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001030
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001031static void mwl8k_rxd_sta_init(void *_rxd, dma_addr_t next_dma_addr)
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
1035 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001036 rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001037}
1038
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001039static void mwl8k_rxd_sta_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001040{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001041 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001042
1043 rxd->pkt_len = cpu_to_le16(len);
1044 rxd->pkt_phys_addr = cpu_to_le32(addr);
1045 wmb();
1046 rxd->rx_ctrl = 0;
1047}
1048
1049static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001050mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status,
John W. Linville0d462bb2010-07-28 14:04:24 -04001051 __le16 *qos, s8 *noise)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001052{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001053 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001054 u16 rate_info;
1055
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001056 if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001057 return -1;
1058 rmb();
1059
1060 rate_info = le16_to_cpu(rxd->rate_info);
1061
1062 memset(status, 0, sizeof(*status));
1063
1064 status->signal = -rxd->rssi;
John W. Linville0d462bb2010-07-28 14:04:24 -04001065 *noise = -rxd->noise_level;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001066 status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info);
1067 status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001068
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001069 if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001070 status->flag |= RX_FLAG_SHORTPRE;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001071 if (rate_info & MWL8K_STA_RATE_INFO_40MHZ)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001072 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001073 if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001074 status->flag |= RX_FLAG_SHORT_GI;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001075 if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001076 status->flag |= RX_FLAG_HT;
1077
Lennert Buytenhek85478342010-01-12 13:48:56 +01001078 if (rxd->channel > 14) {
1079 status->band = IEEE80211_BAND_5GHZ;
1080 if (!(status->flag & RX_FLAG_HT))
1081 status->rate_idx -= 5;
1082 } else {
1083 status->band = IEEE80211_BAND_2GHZ;
1084 }
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001085 status->freq = ieee80211_channel_to_frequency(rxd->channel,
1086 status->band);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001087
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001088 *qos = rxd->qos_control;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001089 if ((rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DECRYPT_ERROR) &&
1090 (rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DEC_ERR_TYPE))
1091 status->flag |= RX_FLAG_MMIC_ERROR;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001092
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001093 return le16_to_cpu(rxd->pkt_len);
1094}
1095
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01001096static struct rxd_ops rxd_sta_ops = {
1097 .rxd_size = sizeof(struct mwl8k_rxd_sta),
1098 .rxd_init = mwl8k_rxd_sta_init,
1099 .rxd_refill = mwl8k_rxd_sta_refill,
1100 .rxd_process = mwl8k_rxd_sta_process,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001101};
1102
1103
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001104#define MWL8K_RX_DESCS 256
1105#define MWL8K_RX_MAXSZ 3800
1106
1107static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
1108{
1109 struct mwl8k_priv *priv = hw->priv;
1110 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1111 int size;
1112 int i;
1113
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001114 rxq->rxd_count = 0;
1115 rxq->head = 0;
1116 rxq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001117
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001118 size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001119
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001120 rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma);
1121 if (rxq->rxd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001122 wiphy_err(hw->wiphy, "failed to alloc RX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001123 return -ENOMEM;
1124 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001125 memset(rxq->rxd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001126
Shan Weib9ede5f2011-03-08 11:02:03 +08001127 rxq->buf = kcalloc(MWL8K_RX_DESCS, sizeof(*rxq->buf), GFP_KERNEL);
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001128 if (rxq->buf == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001129 wiphy_err(hw->wiphy, "failed to alloc RX skbuff list\n");
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001130 pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001131 return -ENOMEM;
1132 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001133
1134 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001135 int desc_size;
1136 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001137 int nexti;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001138 dma_addr_t next_dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001139
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001140 desc_size = priv->rxd_ops->rxd_size;
1141 rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001142
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001143 nexti = i + 1;
1144 if (nexti == MWL8K_RX_DESCS)
1145 nexti = 0;
1146 next_dma_addr = rxq->rxd_dma + (nexti * desc_size);
1147
1148 priv->rxd_ops->rxd_init(rxd, next_dma_addr);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001149 }
1150
1151 return 0;
1152}
1153
1154static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
1155{
1156 struct mwl8k_priv *priv = hw->priv;
1157 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1158 int refilled;
1159
1160 refilled = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001161 while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001162 struct sk_buff *skb;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001163 dma_addr_t addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001164 int rx;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001165 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001166
1167 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
1168 if (skb == NULL)
1169 break;
1170
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001171 addr = pci_map_single(priv->pdev, skb->data,
1172 MWL8K_RX_MAXSZ, DMA_FROM_DEVICE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001173
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001174 rxq->rxd_count++;
1175 rx = rxq->tail++;
1176 if (rxq->tail == MWL8K_RX_DESCS)
1177 rxq->tail = 0;
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001178 rxq->buf[rx].skb = skb;
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001179 dma_unmap_addr_set(&rxq->buf[rx], dma, addr);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001180
1181 rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size);
1182 priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001183
1184 refilled++;
1185 }
1186
1187 return refilled;
1188}
1189
1190/* Must be called only when the card's reception is completely halted */
1191static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
1192{
1193 struct mwl8k_priv *priv = hw->priv;
1194 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1195 int i;
1196
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001197 if (rxq->rxd == NULL)
1198 return;
1199
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001200 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001201 if (rxq->buf[i].skb != NULL) {
1202 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001203 dma_unmap_addr(&rxq->buf[i], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001204 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001205 dma_unmap_addr_set(&rxq->buf[i], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001206
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001207 kfree_skb(rxq->buf[i].skb);
1208 rxq->buf[i].skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001209 }
1210 }
1211
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001212 kfree(rxq->buf);
1213 rxq->buf = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001214
1215 pci_free_consistent(priv->pdev,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001216 MWL8K_RX_DESCS * priv->rxd_ops->rxd_size,
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001217 rxq->rxd, rxq->rxd_dma);
1218 rxq->rxd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001219}
1220
1221
1222/*
1223 * Scan a list of BSSIDs to process for finalize join.
1224 * Allows for extension to process multiple BSSIDs.
1225 */
1226static inline int
1227mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
1228{
1229 return priv->capture_beacon &&
1230 ieee80211_is_beacon(wh->frame_control) &&
1231 !compare_ether_addr(wh->addr3, priv->capture_bssid);
1232}
1233
Lennert Buytenhek37797522009-10-22 20:19:45 +02001234static inline void mwl8k_save_beacon(struct ieee80211_hw *hw,
1235 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001236{
Lennert Buytenhek37797522009-10-22 20:19:45 +02001237 struct mwl8k_priv *priv = hw->priv;
1238
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001239 priv->capture_beacon = false;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001240 memset(priv->capture_bssid, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001241
1242 /*
1243 * Use GFP_ATOMIC as rxq_process is called from
1244 * the primary interrupt handler, memory allocation call
1245 * must not sleep.
1246 */
1247 priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
1248 if (priv->beacon_skb != NULL)
Lennert Buytenhek37797522009-10-22 20:19:45 +02001249 ieee80211_queue_work(hw, &priv->finalize_join_worker);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001250}
1251
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001252static inline struct mwl8k_vif *mwl8k_find_vif_bss(struct list_head *vif_list,
1253 u8 *bssid)
1254{
1255 struct mwl8k_vif *mwl8k_vif;
1256
1257 list_for_each_entry(mwl8k_vif,
1258 vif_list, list) {
1259 if (memcmp(bssid, mwl8k_vif->bssid,
1260 ETH_ALEN) == 0)
1261 return mwl8k_vif;
1262 }
1263
1264 return NULL;
1265}
1266
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001267static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
1268{
1269 struct mwl8k_priv *priv = hw->priv;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001270 struct mwl8k_vif *mwl8k_vif = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001271 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1272 int processed;
1273
1274 processed = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001275 while (rxq->rxd_count && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001276 struct sk_buff *skb;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001277 void *rxd;
1278 int pkt_len;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001279 struct ieee80211_rx_status status;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001280 struct ieee80211_hdr *wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001281 __le16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001282
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001283 skb = rxq->buf[rxq->head].skb;
Lennert Buytenhekd25f9f12009-08-03 21:58:26 +02001284 if (skb == NULL)
1285 break;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001286
1287 rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size);
1288
John W. Linville0d462bb2010-07-28 14:04:24 -04001289 pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos,
1290 &priv->noise);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001291 if (pkt_len < 0)
1292 break;
1293
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001294 rxq->buf[rxq->head].skb = NULL;
1295
1296 pci_unmap_single(priv->pdev,
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001297 dma_unmap_addr(&rxq->buf[rxq->head], dma),
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001298 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
FUJITA Tomonori53b1b3e2010-04-02 13:10:38 +09001299 dma_unmap_addr_set(&rxq->buf[rxq->head], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001300
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001301 rxq->head++;
1302 if (rxq->head == MWL8K_RX_DESCS)
1303 rxq->head = 0;
1304
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001305 rxq->rxd_count--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001306
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001307 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001308
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001309 /*
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001310 * Check for a pending join operation. Save a
1311 * copy of the beacon and schedule a tasklet to
1312 * send a FINALIZE_JOIN command to the firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001313 */
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001314 if (mwl8k_capture_bssid(priv, (void *)skb->data))
Lennert Buytenhek37797522009-10-22 20:19:45 +02001315 mwl8k_save_beacon(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001316
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001317 if (ieee80211_has_protected(wh->frame_control)) {
1318
1319 /* Check if hw crypto has been enabled for
1320 * this bss. If yes, set the status flags
1321 * accordingly
1322 */
1323 mwl8k_vif = mwl8k_find_vif_bss(&priv->vif_list,
1324 wh->addr1);
1325
1326 if (mwl8k_vif != NULL &&
1327 mwl8k_vif->is_hw_crypto_enabled == true) {
1328 /*
1329 * When MMIC ERROR is encountered
1330 * by the firmware, payload is
1331 * dropped and only 32 bytes of
1332 * mwl8k Firmware header is sent
1333 * to the host.
1334 *
1335 * We need to add four bytes of
1336 * key information. In it
1337 * MAC80211 expects keyidx set to
1338 * 0 for triggering Counter
1339 * Measure of MMIC failure.
1340 */
1341 if (status.flag & RX_FLAG_MMIC_ERROR) {
1342 struct mwl8k_dma_data *tr;
1343 tr = (struct mwl8k_dma_data *)skb->data;
1344 memset((void *)&(tr->data), 0, 4);
1345 pkt_len += 4;
1346 }
1347
1348 if (!ieee80211_is_auth(wh->frame_control))
1349 status.flag |= RX_FLAG_IV_STRIPPED |
1350 RX_FLAG_DECRYPTED |
1351 RX_FLAG_MMIC_STRIPPED;
1352 }
1353 }
1354
1355 skb_put(skb, pkt_len);
1356 mwl8k_remove_dma_header(skb, qos);
Johannes Bergf1d58c22009-06-17 13:13:00 +02001357 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
1358 ieee80211_rx_irqsafe(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001359
1360 processed++;
1361 }
1362
1363 return processed;
1364}
1365
1366
1367/*
1368 * Packet transmission.
1369 */
1370
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001371#define MWL8K_TXD_STATUS_OK 0x00000001
1372#define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
1373#define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
1374#define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001375#define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001376
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001377#define MWL8K_QOS_QLEN_UNSPEC 0xff00
1378#define MWL8K_QOS_ACK_POLICY_MASK 0x0060
1379#define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000
1380#define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060
1381#define MWL8K_QOS_EOSP 0x0010
1382
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001383struct mwl8k_tx_desc {
1384 __le32 status;
1385 __u8 data_rate;
1386 __u8 tx_priority;
1387 __le16 qos_control;
1388 __le32 pkt_phys_addr;
1389 __le16 pkt_len;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001390 __u8 dest_MAC_addr[ETH_ALEN];
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001391 __le32 next_txd_phys_addr;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07001392 __le32 timestamp;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001393 __le16 rate_info;
1394 __u8 peer_id;
Brian Cavagnoloa1fe24b2010-11-12 17:23:47 -08001395 __u8 tx_frag_cnt;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001396} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001397
1398#define MWL8K_TX_DESCS 128
1399
1400static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1401{
1402 struct mwl8k_priv *priv = hw->priv;
1403 struct mwl8k_tx_queue *txq = priv->txq + index;
1404 int size;
1405 int i;
1406
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001407 txq->len = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001408 txq->head = 0;
1409 txq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001410
1411 size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1412
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001413 txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma);
1414 if (txq->txd == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001415 wiphy_err(hw->wiphy, "failed to alloc TX descriptors\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001416 return -ENOMEM;
1417 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001418 memset(txq->txd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001419
Shan Weib9ede5f2011-03-08 11:02:03 +08001420 txq->skb = kcalloc(MWL8K_TX_DESCS, sizeof(*txq->skb), GFP_KERNEL);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001421 if (txq->skb == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07001422 wiphy_err(hw->wiphy, "failed to alloc TX skbuff list\n");
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001423 pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001424 return -ENOMEM;
1425 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001426
1427 for (i = 0; i < MWL8K_TX_DESCS; i++) {
1428 struct mwl8k_tx_desc *tx_desc;
1429 int nexti;
1430
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001431 tx_desc = txq->txd + i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001432 nexti = (i + 1) % MWL8K_TX_DESCS;
1433
1434 tx_desc->status = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001435 tx_desc->next_txd_phys_addr =
1436 cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001437 }
1438
1439 return 0;
1440}
1441
1442static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1443{
1444 iowrite32(MWL8K_H2A_INT_PPA_READY,
1445 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1446 iowrite32(MWL8K_H2A_INT_DUMMY,
1447 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1448 ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1449}
1450
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001451static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001452{
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001453 struct mwl8k_priv *priv = hw->priv;
1454 int i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001455
Brian Cavagnoloe6007072011-03-17 11:58:44 -07001456 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001457 struct mwl8k_tx_queue *txq = priv->txq + i;
1458 int fw_owned = 0;
1459 int drv_owned = 0;
1460 int unused = 0;
1461 int desc;
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001462
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001463 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001464 struct mwl8k_tx_desc *tx_desc = txq->txd + desc;
1465 u32 status;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001466
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001467 status = le32_to_cpu(tx_desc->status);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001468 if (status & MWL8K_TXD_STATUS_FW_OWNED)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001469 fw_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001470 else
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001471 drv_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001472
1473 if (tx_desc->pkt_len == 0)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001474 unused++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001475 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001476
Joe Perchesc96c31e2010-07-26 14:39:58 -07001477 wiphy_err(hw->wiphy,
1478 "txq[%d] len=%d head=%d tail=%d "
1479 "fw_owned=%d drv_owned=%d unused=%d\n",
1480 i,
1481 txq->len, txq->head, txq->tail,
1482 fw_owned, drv_owned, unused);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001483 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001484}
1485
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001486/*
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001487 * Must be called with priv->fw_mutex held and tx queues stopped.
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001488 */
Lennert Buytenhek62abd3c2010-01-08 18:28:34 +01001489#define MWL8K_TX_WAIT_TIMEOUT_MS 5000
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001490
Lennert Buytenhek950d5b02009-07-17 01:48:41 +02001491static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001492{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001493 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001494 DECLARE_COMPLETION_ONSTACK(tx_wait);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001495 int retry;
1496 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001497
1498 might_sleep();
1499
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001500 /*
1501 * The TX queues are stopped at this point, so this test
1502 * doesn't need to take ->tx_lock.
1503 */
1504 if (!priv->pending_tx_pkts)
1505 return 0;
1506
1507 retry = 0;
1508 rc = 0;
1509
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001510 spin_lock_bh(&priv->tx_lock);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001511 priv->tx_wait = &tx_wait;
1512 while (!rc) {
1513 int oldcount;
1514 unsigned long timeout;
1515
1516 oldcount = priv->pending_tx_pkts;
1517
1518 spin_unlock_bh(&priv->tx_lock);
1519 timeout = wait_for_completion_timeout(&tx_wait,
1520 msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS));
1521 spin_lock_bh(&priv->tx_lock);
1522
1523 if (timeout) {
1524 WARN_ON(priv->pending_tx_pkts);
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301525 if (retry)
Joe Perchesc96c31e2010-07-26 14:39:58 -07001526 wiphy_notice(hw->wiphy, "tx rings drained\n");
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001527 break;
1528 }
1529
1530 if (priv->pending_tx_pkts < oldcount) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001531 wiphy_notice(hw->wiphy,
1532 "waiting for tx rings to drain (%d -> %d pkts)\n",
1533 oldcount, priv->pending_tx_pkts);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001534 retry = 1;
1535 continue;
1536 }
1537
1538 priv->tx_wait = NULL;
1539
Joe Perchesc96c31e2010-07-26 14:39:58 -07001540 wiphy_err(hw->wiphy, "tx rings stuck for %d ms\n",
1541 MWL8K_TX_WAIT_TIMEOUT_MS);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001542 mwl8k_dump_tx_rings(hw);
1543
1544 rc = -ETIMEDOUT;
1545 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001546 spin_unlock_bh(&priv->tx_lock);
1547
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001548 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001549}
1550
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02001551#define MWL8K_TXD_SUCCESS(status) \
1552 ((status) & (MWL8K_TXD_STATUS_OK | \
1553 MWL8K_TXD_STATUS_OK_RETRY | \
1554 MWL8K_TXD_STATUS_OK_MORE_RETRY))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001555
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001556static int mwl8k_tid_queue_mapping(u8 tid)
1557{
1558 BUG_ON(tid > 7);
1559
1560 switch (tid) {
1561 case 0:
1562 case 3:
1563 return IEEE80211_AC_BE;
1564 break;
1565 case 1:
1566 case 2:
1567 return IEEE80211_AC_BK;
1568 break;
1569 case 4:
1570 case 5:
1571 return IEEE80211_AC_VI;
1572 break;
1573 case 6:
1574 case 7:
1575 return IEEE80211_AC_VO;
1576 break;
1577 default:
1578 return -1;
1579 break;
1580 }
1581}
1582
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001583/* The firmware will fill in the rate information
1584 * for each packet that gets queued in the hardware
John W. Linville49adc5c2011-04-27 15:04:28 -04001585 * and these macros will interpret that info.
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001586 */
1587
John W. Linville49adc5c2011-04-27 15:04:28 -04001588#define RI_FORMAT(a) (a & 0x0001)
1589#define RI_RATE_ID_MCS(a) ((a & 0x01f8) >> 3)
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001590
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001591static int
1592mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001593{
1594 struct mwl8k_priv *priv = hw->priv;
1595 struct mwl8k_tx_queue *txq = priv->txq + index;
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001596 int processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001597
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001598 processed = 0;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001599 while (txq->len > 0 && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001600 int tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001601 struct mwl8k_tx_desc *tx_desc;
1602 unsigned long addr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001603 int size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001604 struct sk_buff *skb;
1605 struct ieee80211_tx_info *info;
1606 u32 status;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001607 struct ieee80211_sta *sta;
1608 struct mwl8k_sta *sta_info = NULL;
1609 u16 rate_info;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001610 struct ieee80211_hdr *wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001611
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001612 tx = txq->head;
1613 tx_desc = txq->txd + tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001614
1615 status = le32_to_cpu(tx_desc->status);
1616
1617 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1618 if (!force)
1619 break;
1620 tx_desc->status &=
1621 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1622 }
1623
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001624 txq->head = (tx + 1) % MWL8K_TX_DESCS;
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02001625 BUG_ON(txq->len == 0);
1626 txq->len--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001627 priv->pending_tx_pkts--;
1628
1629 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001630 size = le16_to_cpu(tx_desc->pkt_len);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001631 skb = txq->skb[tx];
1632 txq->skb[tx] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001633
1634 BUG_ON(skb == NULL);
1635 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1636
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001637 mwl8k_remove_dma_header(skb, tx_desc->qos_control);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001638
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001639 wh = (struct ieee80211_hdr *) skb->data;
1640
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001641 /* Mark descriptor as unused */
1642 tx_desc->pkt_phys_addr = 0;
1643 tx_desc->pkt_len = 0;
1644
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001645 info = IEEE80211_SKB_CB(skb);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001646 if (ieee80211_is_data(wh->frame_control)) {
1647 sta = info->control.sta;
1648 if (sta) {
1649 sta_info = MWL8K_STA(sta);
1650 BUG_ON(sta_info == NULL);
1651 rate_info = le16_to_cpu(tx_desc->rate_info);
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001652 /* If rate is < 6.5 Mpbs for an ht station
1653 * do not form an ampdu. If the station is a
1654 * legacy station (format = 0), do not form an
1655 * ampdu
1656 */
John W. Linville49adc5c2011-04-27 15:04:28 -04001657 if (RI_RATE_ID_MCS(rate_info) < 1 ||
1658 RI_FORMAT(rate_info) == 0) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001659 sta_info->is_ampdu_allowed = false;
1660 } else {
1661 sta_info->is_ampdu_allowed = true;
1662 }
1663 }
1664 }
1665
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001666 ieee80211_tx_info_clear_status(info);
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001667
1668 /* Rate control is happening in the firmware.
1669 * Ensure no tx rate is being reported.
1670 */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301671 info->status.rates[0].idx = -1;
1672 info->status.rates[0].count = 1;
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08001673
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001674 if (MWL8K_TXD_SUCCESS(status))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001675 info->flags |= IEEE80211_TX_STAT_ACK;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001676
1677 ieee80211_tx_status_irqsafe(hw, skb);
1678
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001679 processed++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001680 }
1681
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001682 return processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001683}
1684
1685/* must be called only when the card's transmit is completely halted */
1686static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1687{
1688 struct mwl8k_priv *priv = hw->priv;
1689 struct mwl8k_tx_queue *txq = priv->txq + index;
1690
Brian Cavagnolo73b46322011-03-17 11:58:41 -07001691 if (txq->txd == NULL)
1692 return;
1693
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001694 mwl8k_txq_reclaim(hw, index, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001695
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001696 kfree(txq->skb);
1697 txq->skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001698
1699 pci_free_consistent(priv->pdev,
1700 MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001701 txq->txd, txq->txd_dma);
1702 txq->txd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001703}
1704
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001705/* caller must hold priv->stream_lock when calling the stream functions */
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05301706static struct mwl8k_ampdu_stream *
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07001707mwl8k_add_stream(struct ieee80211_hw *hw, struct ieee80211_sta *sta, u8 tid)
1708{
1709 struct mwl8k_ampdu_stream *stream;
1710 struct mwl8k_priv *priv = hw->priv;
1711 int i;
1712
1713 for (i = 0; i < priv->num_ampdu_queues; i++) {
1714 stream = &priv->ampdu[i];
1715 if (stream->state == AMPDU_NO_STREAM) {
1716 stream->sta = sta;
1717 stream->state = AMPDU_STREAM_NEW;
1718 stream->tid = tid;
1719 stream->idx = i;
1720 stream->txq_idx = MWL8K_TX_WMM_QUEUES + i;
1721 wiphy_debug(hw->wiphy, "Added a new stream for %pM %d",
1722 sta->addr, tid);
1723 return stream;
1724 }
1725 }
1726 return NULL;
1727}
1728
1729static int
1730mwl8k_start_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1731{
1732 int ret;
1733
1734 /* if the stream has already been started, don't start it again */
1735 if (stream->state != AMPDU_STREAM_NEW)
1736 return 0;
1737 ret = ieee80211_start_tx_ba_session(stream->sta, stream->tid, 0);
1738 if (ret)
1739 wiphy_debug(hw->wiphy, "Failed to start stream for %pM %d: "
1740 "%d\n", stream->sta->addr, stream->tid, ret);
1741 else
1742 wiphy_debug(hw->wiphy, "Started stream for %pM %d\n",
1743 stream->sta->addr, stream->tid);
1744 return ret;
1745}
1746
1747static void
1748mwl8k_remove_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
1749{
1750 wiphy_debug(hw->wiphy, "Remove stream for %pM %d\n", stream->sta->addr,
1751 stream->tid);
1752 memset(stream, 0, sizeof(*stream));
1753}
1754
1755static struct mwl8k_ampdu_stream *
1756mwl8k_lookup_stream(struct ieee80211_hw *hw, u8 *addr, u8 tid)
1757{
1758 struct mwl8k_priv *priv = hw->priv;
1759 int i;
1760
1761 for (i = 0 ; i < priv->num_ampdu_queues; i++) {
1762 struct mwl8k_ampdu_stream *stream;
1763 stream = &priv->ampdu[i];
1764 if (stream->state == AMPDU_NO_STREAM)
1765 continue;
1766 if (!memcmp(stream->sta->addr, addr, ETH_ALEN) &&
1767 stream->tid == tid)
1768 return stream;
1769 }
1770 return NULL;
1771}
1772
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001773#define MWL8K_AMPDU_PACKET_THRESHOLD 64
1774static inline bool mwl8k_ampdu_allowed(struct ieee80211_sta *sta, u8 tid)
1775{
1776 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1777 struct tx_traffic_info *tx_stats;
1778
1779 BUG_ON(tid >= MWL8K_MAX_TID);
1780 tx_stats = &sta_info->tx_stats[tid];
1781
1782 return sta_info->is_ampdu_allowed &&
1783 tx_stats->pkts > MWL8K_AMPDU_PACKET_THRESHOLD;
1784}
1785
1786static inline void mwl8k_tx_count_packet(struct ieee80211_sta *sta, u8 tid)
1787{
1788 struct mwl8k_sta *sta_info = MWL8K_STA(sta);
1789 struct tx_traffic_info *tx_stats;
1790
1791 BUG_ON(tid >= MWL8K_MAX_TID);
1792 tx_stats = &sta_info->tx_stats[tid];
1793
1794 if (tx_stats->start_time == 0)
1795 tx_stats->start_time = jiffies;
1796
1797 /* reset the packet count after each second elapses. If the number of
1798 * packets ever exceeds the ampdu_min_traffic threshold, we will allow
1799 * an ampdu stream to be started.
1800 */
1801 if (jiffies - tx_stats->start_time > HZ) {
1802 tx_stats->pkts = 0;
1803 tx_stats->start_time = 0;
1804 } else
1805 tx_stats->pkts++;
1806}
1807
Johannes Berg7bb45682011-02-24 14:42:06 +01001808static void
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001809mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb)
1810{
1811 struct mwl8k_priv *priv = hw->priv;
1812 struct ieee80211_tx_info *tx_info;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001813 struct mwl8k_vif *mwl8k_vif;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001814 struct ieee80211_sta *sta;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001815 struct ieee80211_hdr *wh;
1816 struct mwl8k_tx_queue *txq;
1817 struct mwl8k_tx_desc *tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001818 dma_addr_t dma;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001819 u32 txstatus;
1820 u8 txdatarate;
1821 u16 qos;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001822 int txpriority;
1823 u8 tid = 0;
1824 struct mwl8k_ampdu_stream *stream = NULL;
1825 bool start_ba_session = false;
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301826 bool mgmtframe = false;
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001827 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001828
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001829 wh = (struct ieee80211_hdr *)skb->data;
1830 if (ieee80211_is_data_qos(wh->frame_control))
1831 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1832 else
1833 qos = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001834
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301835 if (ieee80211_is_mgmt(wh->frame_control))
1836 mgmtframe = true;
1837
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001838 if (priv->ap_fw)
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05301839 mwl8k_encapsulate_tx_frame(priv, skb);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001840 else
Yogesh Ashok Poware4eefec2011-05-05 16:30:48 +05301841 mwl8k_add_dma_header(priv, skb, 0, 0);
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08001842
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001843 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001844
1845 tx_info = IEEE80211_SKB_CB(skb);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001846 sta = tx_info->control.sta;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001847 mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001848
1849 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001850 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Lennert Buytenhek657232b2010-01-12 13:47:47 +01001851 wh->seq_ctrl |= cpu_to_le16(mwl8k_vif->seqno);
1852 mwl8k_vif->seqno += 0x10;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001853 }
1854
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001855 /* Setup firmware control bit fields for each frame type. */
1856 txstatus = 0;
1857 txdatarate = 0;
1858 if (ieee80211_is_mgmt(wh->frame_control) ||
1859 ieee80211_is_ctl(wh->frame_control)) {
1860 txdatarate = 0;
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001861 qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001862 } else if (ieee80211_is_data(wh->frame_control)) {
1863 txdatarate = 1;
1864 if (is_multicast_ether_addr(wh->addr1))
1865 txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX;
1866
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001867 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001868 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001869 qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001870 else
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001871 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001872 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001873
Nishant Sarmukadama0e7c6c2011-03-17 11:58:49 -07001874 /* Queue ADDBA request in the respective data queue. While setting up
1875 * the ampdu stream, mac80211 queues further packets for that
1876 * particular ra/tid pair. However, packets piled up in the hardware
1877 * for that ra/tid pair will still go out. ADDBA request and the
1878 * related data packets going out from different queues asynchronously
1879 * will cause a shift in the receiver window which might result in
1880 * ampdu packets getting dropped at the receiver after the stream has
1881 * been setup.
1882 */
1883 if (unlikely(ieee80211_is_action(wh->frame_control) &&
1884 mgmt->u.action.category == WLAN_CATEGORY_BACK &&
1885 mgmt->u.action.u.addba_req.action_code == WLAN_ACTION_ADDBA_REQ &&
1886 priv->ap_fw)) {
1887 u16 capab = le16_to_cpu(mgmt->u.action.u.addba_req.capab);
1888 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
1889 index = mwl8k_tid_queue_mapping(tid);
1890 }
1891
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001892 txpriority = index;
1893
1894 if (ieee80211_is_data_qos(wh->frame_control) &&
1895 skb->protocol != cpu_to_be16(ETH_P_PAE) &&
1896 sta->ht_cap.ht_supported && priv->ap_fw) {
1897 tid = qos & 0xf;
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001898 mwl8k_tx_count_packet(sta, tid);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001899 spin_lock(&priv->stream_lock);
1900 stream = mwl8k_lookup_stream(hw, sta->addr, tid);
1901 if (stream != NULL) {
1902 if (stream->state == AMPDU_STREAM_ACTIVE) {
1903 txpriority = stream->txq_idx;
1904 index = stream->txq_idx;
1905 } else if (stream->state == AMPDU_STREAM_NEW) {
1906 /* We get here if the driver sends us packets
1907 * after we've initiated a stream, but before
1908 * our ampdu_action routine has been called
1909 * with IEEE80211_AMPDU_TX_START to get the SSN
1910 * for the ADDBA request. So this packet can
1911 * go out with no risk of sequence number
1912 * mismatch. No special handling is required.
1913 */
1914 } else {
1915 /* Drop packets that would go out after the
1916 * ADDBA request was sent but before the ADDBA
1917 * response is received. If we don't do this,
1918 * the recipient would probably receive it
1919 * after the ADDBA request with SSN 0. This
1920 * will cause the recipient's BA receive window
1921 * to shift, which would cause the subsequent
1922 * packets in the BA stream to be discarded.
1923 * mac80211 queues our packets for us in this
1924 * case, so this is really just a safety check.
1925 */
1926 wiphy_warn(hw->wiphy,
1927 "Cannot send packet while ADDBA "
1928 "dialog is underway.\n");
1929 spin_unlock(&priv->stream_lock);
1930 dev_kfree_skb(skb);
1931 return;
1932 }
1933 } else {
1934 /* Defer calling mwl8k_start_stream so that the current
1935 * skb can go out before the ADDBA request. This
1936 * prevents sequence number mismatch at the recepient
1937 * as described above.
1938 */
Brian Cavagnolod0805c12011-04-12 11:06:28 -07001939 if (mwl8k_ampdu_allowed(sta, tid)) {
Nishant Sarmukadam170335432011-03-17 11:58:48 -07001940 stream = mwl8k_add_stream(hw, sta, tid);
1941 if (stream != NULL)
1942 start_ba_session = true;
1943 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001944 }
1945 spin_unlock(&priv->stream_lock);
1946 }
1947
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001948 dma = pci_map_single(priv->pdev, skb->data,
1949 skb->len, PCI_DMA_TODEVICE);
1950
1951 if (pci_dma_mapping_error(priv->pdev, dma)) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001952 wiphy_debug(hw->wiphy,
1953 "failed to dma map skb, dropping TX frame.\n");
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001954 if (start_ba_session) {
1955 spin_lock(&priv->stream_lock);
1956 mwl8k_remove_stream(hw, stream);
1957 spin_unlock(&priv->stream_lock);
1958 }
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001959 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001960 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001961 }
1962
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001963 spin_lock_bh(&priv->tx_lock);
1964
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001965 txq = priv->txq + index;
1966
Nishant Sarmukadam3a769882011-04-21 16:34:58 +05301967 /* Mgmt frames that go out frequently are probe
1968 * responses. Other mgmt frames got out relatively
1969 * infrequently. Hence reserve 2 buffers so that
1970 * other mgmt frames do not get dropped due to an
1971 * already queued probe response in one of the
1972 * reserved buffers.
1973 */
1974
1975 if (txq->len >= MWL8K_TX_DESCS - 2) {
1976 if (mgmtframe == false ||
1977 txq->len == MWL8K_TX_DESCS) {
1978 if (start_ba_session) {
1979 spin_lock(&priv->stream_lock);
1980 mwl8k_remove_stream(hw, stream);
1981 spin_unlock(&priv->stream_lock);
1982 }
1983 spin_unlock_bh(&priv->tx_lock);
1984 dev_kfree_skb(skb);
1985 return;
Pradeep Nemavat3a7dbc32011-04-21 16:34:56 +05301986 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001987 }
1988
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001989 BUG_ON(txq->skb[txq->tail] != NULL);
1990 txq->skb[txq->tail] = skb;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001991
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001992 tx = txq->txd + txq->tail;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001993 tx->data_rate = txdatarate;
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07001994 tx->tx_priority = txpriority;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001995 tx->qos_control = cpu_to_le16(qos);
1996 tx->pkt_phys_addr = cpu_to_le32(dma);
1997 tx->pkt_len = cpu_to_le16(skb->len);
1998 tx->rate_info = 0;
Lennert Buytenheka6804002010-01-04 21:55:42 +01001999 if (!priv->ap_fw && tx_info->control.sta != NULL)
2000 tx->peer_id = MWL8K_STA(tx_info->control.sta)->peer_id;
2001 else
2002 tx->peer_id = 0;
Pradeep Nemavat566875d2011-04-21 16:34:57 +05302003
2004 if (priv->ap_fw)
2005 tx->timestamp = cpu_to_le32(ioread32(priv->regs +
2006 MWL8K_HW_TIMER_REGISTER));
2007
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002008 wmb();
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002009 tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
2010
Kalle Valo8ccbc3b2010-02-07 10:20:52 +02002011 txq->len++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002012 priv->pending_tx_pkts++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002013
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002014 txq->tail++;
2015 if (txq->tail == MWL8K_TX_DESCS)
2016 txq->tail = 0;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002017
Lennert Buytenhek23b33902009-07-17 05:21:04 +02002018 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002019
2020 spin_unlock_bh(&priv->tx_lock);
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07002021
2022 /* Initiate the ampdu session here */
2023 if (start_ba_session) {
2024 spin_lock(&priv->stream_lock);
2025 if (mwl8k_start_stream(hw, stream))
2026 mwl8k_remove_stream(hw, stream);
2027 spin_unlock(&priv->stream_lock);
2028 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002029}
2030
2031
2032/*
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002033 * Firmware access.
2034 *
2035 * We have the following requirements for issuing firmware commands:
2036 * - Some commands require that the packet transmit path is idle when
2037 * the command is issued. (For simplicity, we'll just quiesce the
2038 * transmit path for every command.)
2039 * - There are certain sequences of commands that need to be issued to
2040 * the hardware sequentially, with no other intervening commands.
2041 *
2042 * This leads to an implementation of a "firmware lock" as a mutex that
2043 * can be taken recursively, and which is taken by both the low-level
2044 * command submission function (mwl8k_post_cmd) as well as any users of
2045 * that function that require issuing of an atomic sequence of commands,
2046 * and quiesces the transmit path whenever it's taken.
2047 */
2048static int mwl8k_fw_lock(struct ieee80211_hw *hw)
2049{
2050 struct mwl8k_priv *priv = hw->priv;
2051
2052 if (priv->fw_mutex_owner != current) {
2053 int rc;
2054
2055 mutex_lock(&priv->fw_mutex);
2056 ieee80211_stop_queues(hw);
2057
2058 rc = mwl8k_tx_wait_empty(hw);
2059 if (rc) {
2060 ieee80211_wake_queues(hw);
2061 mutex_unlock(&priv->fw_mutex);
2062
2063 return rc;
2064 }
2065
2066 priv->fw_mutex_owner = current;
2067 }
2068
2069 priv->fw_mutex_depth++;
2070
2071 return 0;
2072}
2073
2074static void mwl8k_fw_unlock(struct ieee80211_hw *hw)
2075{
2076 struct mwl8k_priv *priv = hw->priv;
2077
2078 if (!--priv->fw_mutex_depth) {
2079 ieee80211_wake_queues(hw);
2080 priv->fw_mutex_owner = NULL;
2081 mutex_unlock(&priv->fw_mutex);
2082 }
2083}
2084
2085
2086/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002087 * Command processing.
2088 */
2089
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002090/* Timeout firmware commands after 10s */
2091#define MWL8K_CMD_TIMEOUT_MS 10000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002092
2093static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
2094{
2095 DECLARE_COMPLETION_ONSTACK(cmd_wait);
2096 struct mwl8k_priv *priv = hw->priv;
2097 void __iomem *regs = priv->regs;
2098 dma_addr_t dma_addr;
2099 unsigned int dma_size;
2100 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002101 unsigned long timeout = 0;
2102 u8 buf[32];
2103
John W. Linvilleb6037422010-07-20 13:55:00 -04002104 cmd->result = (__force __le16) 0xffff;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002105 dma_size = le16_to_cpu(cmd->length);
2106 dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
2107 PCI_DMA_BIDIRECTIONAL);
2108 if (pci_dma_mapping_error(priv->pdev, dma_addr))
2109 return -ENOMEM;
2110
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002111 rc = mwl8k_fw_lock(hw);
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02002112 if (rc) {
2113 pci_unmap_single(priv->pdev, dma_addr, dma_size,
2114 PCI_DMA_BIDIRECTIONAL);
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002115 return rc;
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02002116 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002117
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002118 priv->hostcmd_wait = &cmd_wait;
2119 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
2120 iowrite32(MWL8K_H2A_INT_DOORBELL,
2121 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
2122 iowrite32(MWL8K_H2A_INT_DUMMY,
2123 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002124
2125 timeout = wait_for_completion_timeout(&cmd_wait,
2126 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
2127
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002128 priv->hostcmd_wait = NULL;
2129
2130 mwl8k_fw_unlock(hw);
2131
Lennert Buytenhek37055bd2009-08-03 21:58:47 +02002132 pci_unmap_single(priv->pdev, dma_addr, dma_size,
2133 PCI_DMA_BIDIRECTIONAL);
2134
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002135 if (!timeout) {
Joe Perches5db55842010-08-11 19:11:19 -07002136 wiphy_err(hw->wiphy, "Command %s timeout after %u ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002137 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2138 MWL8K_CMD_TIMEOUT_MS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002139 rc = -ETIMEDOUT;
2140 } else {
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002141 int ms;
2142
2143 ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout);
2144
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002145 rc = cmd->result ? -EINVAL : 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002146 if (rc)
Joe Perches5db55842010-08-11 19:11:19 -07002147 wiphy_err(hw->wiphy, "Command %s error 0x%x\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002148 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
2149 le16_to_cpu(cmd->result));
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01002150 else if (ms > 2000)
Joe Perches5db55842010-08-11 19:11:19 -07002151 wiphy_notice(hw->wiphy, "Command %s took %d ms\n",
Joe Perchesc96c31e2010-07-26 14:39:58 -07002152 mwl8k_cmd_name(cmd->code,
2153 buf, sizeof(buf)),
2154 ms);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002155 }
2156
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002157 return rc;
2158}
2159
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +01002160static int mwl8k_post_pervif_cmd(struct ieee80211_hw *hw,
2161 struct ieee80211_vif *vif,
2162 struct mwl8k_cmd_pkt *cmd)
2163{
2164 if (vif != NULL)
2165 cmd->macid = MWL8K_VIF(vif)->macid;
2166 return mwl8k_post_cmd(hw, cmd);
2167}
2168
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002169/*
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002170 * Setup code shared between STA and AP firmware images.
2171 */
2172static void mwl8k_setup_2ghz_band(struct ieee80211_hw *hw)
2173{
2174 struct mwl8k_priv *priv = hw->priv;
2175
2176 BUILD_BUG_ON(sizeof(priv->channels_24) != sizeof(mwl8k_channels_24));
2177 memcpy(priv->channels_24, mwl8k_channels_24, sizeof(mwl8k_channels_24));
2178
2179 BUILD_BUG_ON(sizeof(priv->rates_24) != sizeof(mwl8k_rates_24));
2180 memcpy(priv->rates_24, mwl8k_rates_24, sizeof(mwl8k_rates_24));
2181
2182 priv->band_24.band = IEEE80211_BAND_2GHZ;
2183 priv->band_24.channels = priv->channels_24;
2184 priv->band_24.n_channels = ARRAY_SIZE(mwl8k_channels_24);
2185 priv->band_24.bitrates = priv->rates_24;
2186 priv->band_24.n_bitrates = ARRAY_SIZE(mwl8k_rates_24);
2187
2188 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band_24;
2189}
2190
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +01002191static void mwl8k_setup_5ghz_band(struct ieee80211_hw *hw)
2192{
2193 struct mwl8k_priv *priv = hw->priv;
2194
2195 BUILD_BUG_ON(sizeof(priv->channels_50) != sizeof(mwl8k_channels_50));
2196 memcpy(priv->channels_50, mwl8k_channels_50, sizeof(mwl8k_channels_50));
2197
2198 BUILD_BUG_ON(sizeof(priv->rates_50) != sizeof(mwl8k_rates_50));
2199 memcpy(priv->rates_50, mwl8k_rates_50, sizeof(mwl8k_rates_50));
2200
2201 priv->band_50.band = IEEE80211_BAND_5GHZ;
2202 priv->band_50.channels = priv->channels_50;
2203 priv->band_50.n_channels = ARRAY_SIZE(mwl8k_channels_50);
2204 priv->band_50.bitrates = priv->rates_50;
2205 priv->band_50.n_bitrates = ARRAY_SIZE(mwl8k_rates_50);
2206
2207 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &priv->band_50;
2208}
2209
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01002210/*
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002211 * CMD_GET_HW_SPEC (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002212 */
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002213struct mwl8k_cmd_get_hw_spec_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002214 struct mwl8k_cmd_pkt header;
2215 __u8 hw_rev;
2216 __u8 host_interface;
2217 __le16 num_mcaddrs;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002218 __u8 perm_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002219 __le16 region_code;
2220 __le32 fw_rev;
2221 __le32 ps_cookie;
2222 __le32 caps;
2223 __u8 mcs_bitmap[16];
2224 __le32 rx_queue_ptr;
2225 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002226 __le32 tx_queue_ptrs[MWL8K_TX_WMM_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002227 __le32 caps2;
2228 __le32 num_tx_desc_per_queue;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002229 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002230} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002231
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002232#define MWL8K_CAP_MAX_AMSDU 0x20000000
2233#define MWL8K_CAP_GREENFIELD 0x08000000
2234#define MWL8K_CAP_AMPDU 0x04000000
2235#define MWL8K_CAP_RX_STBC 0x01000000
2236#define MWL8K_CAP_TX_STBC 0x00800000
2237#define MWL8K_CAP_SHORTGI_40MHZ 0x00400000
2238#define MWL8K_CAP_SHORTGI_20MHZ 0x00200000
2239#define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000
2240#define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000
2241#define MWL8K_CAP_DELAY_BA 0x00003000
2242#define MWL8K_CAP_MIMO 0x00000200
2243#define MWL8K_CAP_40MHZ 0x00000100
Lennert Buytenhek06953232010-01-12 13:49:41 +01002244#define MWL8K_CAP_BAND_MASK 0x00000007
2245#define MWL8K_CAP_5GHZ 0x00000004
2246#define MWL8K_CAP_2GHZ4 0x00000001
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002247
Lennert Buytenhek06953232010-01-12 13:49:41 +01002248static void
2249mwl8k_set_ht_caps(struct ieee80211_hw *hw,
2250 struct ieee80211_supported_band *band, u32 cap)
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002251{
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002252 int rx_streams;
2253 int tx_streams;
2254
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002255 band->ht_cap.ht_supported = 1;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002256
2257 if (cap & MWL8K_CAP_MAX_AMSDU)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002258 band->ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002259 if (cap & MWL8K_CAP_GREENFIELD)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002260 band->ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002261 if (cap & MWL8K_CAP_AMPDU) {
2262 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002263 band->ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
2264 band->ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002265 }
2266 if (cap & MWL8K_CAP_RX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002267 band->ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002268 if (cap & MWL8K_CAP_TX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002269 band->ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002270 if (cap & MWL8K_CAP_SHORTGI_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002271 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002272 if (cap & MWL8K_CAP_SHORTGI_20MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002273 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002274 if (cap & MWL8K_CAP_DELAY_BA)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002275 band->ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002276 if (cap & MWL8K_CAP_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002277 band->ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002278
2279 rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK);
2280 tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK);
2281
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002282 band->ht_cap.mcs.rx_mask[0] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002283 if (rx_streams >= 2)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002284 band->ht_cap.mcs.rx_mask[1] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002285 if (rx_streams >= 3)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002286 band->ht_cap.mcs.rx_mask[2] = 0xff;
2287 band->ht_cap.mcs.rx_mask[4] = 0x01;
2288 band->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002289
2290 if (rx_streams != tx_streams) {
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002291 band->ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
2292 band->ht_cap.mcs.tx_params |= (tx_streams - 1) <<
Lennert Buytenhek341c9792010-01-04 21:58:40 +01002293 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
2294 }
2295}
2296
Lennert Buytenhek06953232010-01-12 13:49:41 +01002297static void
2298mwl8k_set_caps(struct ieee80211_hw *hw, u32 caps)
2299{
2300 struct mwl8k_priv *priv = hw->priv;
2301
2302 if ((caps & MWL8K_CAP_2GHZ4) || !(caps & MWL8K_CAP_BAND_MASK)) {
2303 mwl8k_setup_2ghz_band(hw);
2304 if (caps & MWL8K_CAP_MIMO)
2305 mwl8k_set_ht_caps(hw, &priv->band_24, caps);
2306 }
2307
2308 if (caps & MWL8K_CAP_5GHZ) {
2309 mwl8k_setup_5ghz_band(hw);
2310 if (caps & MWL8K_CAP_MIMO)
2311 mwl8k_set_ht_caps(hw, &priv->band_50, caps);
2312 }
2313}
2314
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002315static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002316{
2317 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02002318 struct mwl8k_cmd_get_hw_spec_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002319 int rc;
2320 int i;
2321
2322 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2323 if (cmd == NULL)
2324 return -ENOMEM;
2325
2326 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2327 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2328
2329 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2330 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002331 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002332 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
2333 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002334 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002335 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002336 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002337
2338 rc = mwl8k_post_cmd(hw, &cmd->header);
2339
2340 if (!rc) {
2341 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2342 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02002343 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002344 priv->hw_rev = cmd->hw_rev;
Lennert Buytenhek06953232010-01-12 13:49:41 +01002345 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002346 priv->ap_macids_supported = 0x00000000;
2347 priv->sta_macids_supported = 0x00000001;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002348 }
2349
2350 kfree(cmd);
2351 return rc;
2352}
2353
2354/*
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002355 * CMD_GET_HW_SPEC (AP version).
2356 */
2357struct mwl8k_cmd_get_hw_spec_ap {
2358 struct mwl8k_cmd_pkt header;
2359 __u8 hw_rev;
2360 __u8 host_interface;
2361 __le16 num_wcb;
2362 __le16 num_mcaddrs;
2363 __u8 perm_addr[ETH_ALEN];
2364 __le16 region_code;
2365 __le16 num_antenna;
2366 __le32 fw_rev;
2367 __le32 wcbbase0;
2368 __le32 rxwrptr;
2369 __le32 rxrdptr;
2370 __le32 ps_cookie;
2371 __le32 wcbbase1;
2372 __le32 wcbbase2;
2373 __le32 wcbbase3;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002374 __le32 fw_api_version;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002375 __le32 caps;
2376 __le32 num_of_ampdu_queues;
2377 __le32 wcbbase_ampdu[MWL8K_MAX_AMPDU_QUEUES];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002378} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002379
2380static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw)
2381{
2382 struct mwl8k_priv *priv = hw->priv;
2383 struct mwl8k_cmd_get_hw_spec_ap *cmd;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002384 int rc, i;
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002385 u32 api_version;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002386
2387 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2388 if (cmd == NULL)
2389 return -ENOMEM;
2390
2391 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
2392 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2393
2394 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
2395 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2396
2397 rc = mwl8k_post_cmd(hw, &cmd->header);
2398
2399 if (!rc) {
2400 int off;
2401
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002402 api_version = le32_to_cpu(cmd->fw_api_version);
2403 if (priv->device_info->fw_api_ap != api_version) {
2404 printk(KERN_ERR "%s: Unsupported fw API version for %s."
2405 " Expected %d got %d.\n", MWL8K_NAME,
2406 priv->device_info->part_name,
2407 priv->device_info->fw_api_ap,
2408 api_version);
2409 rc = -EINVAL;
2410 goto done;
2411 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002412 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
2413 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
2414 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
2415 priv->hw_rev = cmd->hw_rev;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002416 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002417 priv->ap_macids_supported = 0x000000ff;
2418 priv->sta_macids_supported = 0x00000000;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002419 priv->num_ampdu_queues = le32_to_cpu(cmd->num_of_ampdu_queues);
2420 if (priv->num_ampdu_queues > MWL8K_MAX_AMPDU_QUEUES) {
2421 wiphy_warn(hw->wiphy, "fw reported %d ampdu queues"
2422 " but we only support %d.\n",
2423 priv->num_ampdu_queues,
2424 MWL8K_MAX_AMPDU_QUEUES);
2425 priv->num_ampdu_queues = MWL8K_MAX_AMPDU_QUEUES;
2426 }
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002427 off = le32_to_cpu(cmd->rxwrptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002428 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002429
2430 off = le32_to_cpu(cmd->rxrdptr) & 0xffff;
John W. Linvilleb6037422010-07-20 13:55:00 -04002431 iowrite32(priv->rxq[0].rxd_dma, priv->sram + off);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002432
Brian Cavagnolo73b46322011-03-17 11:58:41 -07002433 priv->txq_offset[0] = le32_to_cpu(cmd->wcbbase0) & 0xffff;
2434 priv->txq_offset[1] = le32_to_cpu(cmd->wcbbase1) & 0xffff;
2435 priv->txq_offset[2] = le32_to_cpu(cmd->wcbbase2) & 0xffff;
2436 priv->txq_offset[3] = le32_to_cpu(cmd->wcbbase3) & 0xffff;
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002437
2438 for (i = 0; i < priv->num_ampdu_queues; i++)
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002439 priv->txq_offset[i + MWL8K_TX_WMM_QUEUES] =
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002440 le32_to_cpu(cmd->wcbbase_ampdu[i]) & 0xffff;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002441 }
2442
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08002443done:
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002444 kfree(cmd);
2445 return rc;
2446}
2447
2448/*
2449 * CMD_SET_HW_SPEC.
2450 */
2451struct mwl8k_cmd_set_hw_spec {
2452 struct mwl8k_cmd_pkt header;
2453 __u8 hw_rev;
2454 __u8 host_interface;
2455 __le16 num_mcaddrs;
2456 __u8 perm_addr[ETH_ALEN];
2457 __le16 region_code;
2458 __le32 fw_rev;
2459 __le32 ps_cookie;
2460 __le32 caps;
2461 __le32 rx_queue_ptr;
2462 __le32 num_tx_queues;
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002463 __le32 tx_queue_ptrs[MWL8K_MAX_TX_QUEUES];
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002464 __le32 flags;
2465 __le32 num_tx_desc_per_queue;
2466 __le32 total_rxd;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002467} __packed;
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002468
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07002469/* If enabled, MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY will cause
2470 * packets to expire 500 ms after the timestamp in the tx descriptor. That is,
2471 * the packets that are queued for more than 500ms, will be dropped in the
2472 * hardware. This helps minimizing the issues caused due to head-of-line
2473 * blocking where a slow client can hog the bandwidth and affect traffic to a
2474 * faster client.
2475 */
2476#define MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY 0x00000400
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002477#define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080
2478#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP 0x00000020
2479#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON 0x00000010
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002480
2481static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw)
2482{
2483 struct mwl8k_priv *priv = hw->priv;
2484 struct mwl8k_cmd_set_hw_spec *cmd;
2485 int rc;
2486 int i;
2487
2488 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2489 if (cmd == NULL)
2490 return -ENOMEM;
2491
2492 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC);
2493 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2494
2495 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
2496 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002497 cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv));
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002498
2499 /*
2500 * Mac80211 stack has Q0 as highest priority and Q3 as lowest in
2501 * that order. Firmware has Q3 as highest priority and Q0 as lowest
2502 * in that order. Map Q3 of mac80211 to Q0 of firmware so that the
2503 * priority is interpreted the right way in firmware.
2504 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07002505 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
2506 int j = mwl8k_tx_queues(priv) - 1 - i;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08002507 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[j].txd_dma);
2508 }
2509
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002510 cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT |
2511 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP |
Nishant Sarmukadam31d291a2011-04-21 16:34:59 +05302512 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON |
2513 MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02002514 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
2515 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
2516
2517 rc = mwl8k_post_cmd(hw, &cmd->header);
2518 kfree(cmd);
2519
2520 return rc;
2521}
2522
2523/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002524 * CMD_MAC_MULTICAST_ADR.
2525 */
2526struct mwl8k_cmd_mac_multicast_adr {
2527 struct mwl8k_cmd_pkt header;
2528 __le16 action;
2529 __le16 numaddr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002530 __u8 addr[0][ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002531};
2532
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002533#define MWL8K_ENABLE_RX_DIRECTED 0x0001
2534#define MWL8K_ENABLE_RX_MULTICAST 0x0002
2535#define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004
2536#define MWL8K_ENABLE_RX_BROADCAST 0x0008
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002537
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002538static struct mwl8k_cmd_pkt *
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002539__mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti,
Jiri Pirko22bedad32010-04-01 21:22:57 +00002540 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002541{
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002542 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002543 struct mwl8k_cmd_mac_multicast_adr *cmd;
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002544 int size;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002545 int mc_count = 0;
2546
2547 if (mc_list)
2548 mc_count = netdev_hw_addr_list_count(mc_list);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002549
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002550 if (allmulti || mc_count > priv->num_mcaddrs) {
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002551 allmulti = 1;
2552 mc_count = 0;
2553 }
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002554
2555 size = sizeof(*cmd) + mc_count * ETH_ALEN;
2556
2557 cmd = kzalloc(size, GFP_ATOMIC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002558 if (cmd == NULL)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002559 return NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002560
2561 cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
2562 cmd->header.length = cpu_to_le16(size);
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002563 cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED |
2564 MWL8K_ENABLE_RX_BROADCAST);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002565
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002566 if (allmulti) {
2567 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST);
2568 } else if (mc_count) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002569 struct netdev_hw_addr *ha;
2570 int i = 0;
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02002571
2572 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
2573 cmd->numaddr = cpu_to_le16(mc_count);
Jiri Pirko22bedad32010-04-01 21:22:57 +00002574 netdev_hw_addr_list_for_each(ha, mc_list) {
2575 memcpy(cmd->addr[i], ha->addr, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002576 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002577 }
2578
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002579 return &cmd->header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002580}
2581
2582/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002583 * CMD_GET_STAT.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002584 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002585struct mwl8k_cmd_get_stat {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002586 struct mwl8k_cmd_pkt header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002587 __le32 stats[64];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002588} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002589
2590#define MWL8K_STAT_ACK_FAILURE 9
2591#define MWL8K_STAT_RTS_FAILURE 12
2592#define MWL8K_STAT_FCS_ERROR 24
2593#define MWL8K_STAT_RTS_SUCCESS 11
2594
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002595static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw,
2596 struct ieee80211_low_level_stats *stats)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002597{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002598 struct mwl8k_cmd_get_stat *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002599 int rc;
2600
2601 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2602 if (cmd == NULL)
2603 return -ENOMEM;
2604
2605 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
2606 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002607
2608 rc = mwl8k_post_cmd(hw, &cmd->header);
2609 if (!rc) {
2610 stats->dot11ACKFailureCount =
2611 le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
2612 stats->dot11RTSFailureCount =
2613 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
2614 stats->dot11FCSErrorCount =
2615 le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
2616 stats->dot11RTSSuccessCount =
2617 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
2618 }
2619 kfree(cmd);
2620
2621 return rc;
2622}
2623
2624/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002625 * CMD_RADIO_CONTROL.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002626 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002627struct mwl8k_cmd_radio_control {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002628 struct mwl8k_cmd_pkt header;
2629 __le16 action;
2630 __le16 control;
2631 __le16 radio_on;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002632} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002633
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002634static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002635mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002636{
2637 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002638 struct mwl8k_cmd_radio_control *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002639 int rc;
2640
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002641 if (enable == priv->radio_on && !force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002642 return 0;
2643
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002644 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2645 if (cmd == NULL)
2646 return -ENOMEM;
2647
2648 cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
2649 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2650 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002651 cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002652 cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
2653
2654 rc = mwl8k_post_cmd(hw, &cmd->header);
2655 kfree(cmd);
2656
2657 if (!rc)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002658 priv->radio_on = enable;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002659
2660 return rc;
2661}
2662
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002663static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002664{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002665 return mwl8k_cmd_radio_control(hw, 0, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002666}
2667
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002668static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002669{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002670 return mwl8k_cmd_radio_control(hw, 1, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002671}
2672
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002673static int
2674mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
2675{
Lennert Buytenhek99200a992009-11-30 18:31:40 +01002676 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002677
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002678 priv->radio_short_preamble = short_preamble;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002679
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002680 return mwl8k_cmd_radio_control(hw, 1, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002681}
2682
2683/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002684 * CMD_RF_TX_POWER.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002685 */
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002686#define MWL8K_RF_TX_POWER_LEVEL_TOTAL 8
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002687
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002688struct mwl8k_cmd_rf_tx_power {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002689 struct mwl8k_cmd_pkt header;
2690 __le16 action;
2691 __le16 support_level;
2692 __le16 current_level;
2693 __le16 reserved;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002694 __le16 power_level_list[MWL8K_RF_TX_POWER_LEVEL_TOTAL];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002695} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002696
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002697static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw *hw, int dBm)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002698{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002699 struct mwl8k_cmd_rf_tx_power *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002700 int rc;
2701
2702 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2703 if (cmd == NULL)
2704 return -ENOMEM;
2705
2706 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
2707 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2708 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2709 cmd->support_level = cpu_to_le16(dBm);
2710
2711 rc = mwl8k_post_cmd(hw, &cmd->header);
2712 kfree(cmd);
2713
2714 return rc;
2715}
2716
2717/*
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002718 * CMD_TX_POWER.
2719 */
2720#define MWL8K_TX_POWER_LEVEL_TOTAL 12
2721
2722struct mwl8k_cmd_tx_power {
2723 struct mwl8k_cmd_pkt header;
2724 __le16 action;
2725 __le16 band;
2726 __le16 channel;
2727 __le16 bw;
2728 __le16 sub_ch;
2729 __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05302730} __packed;
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08002731
2732static int mwl8k_cmd_tx_power(struct ieee80211_hw *hw,
2733 struct ieee80211_conf *conf,
2734 unsigned short pwr)
2735{
2736 struct ieee80211_channel *channel = conf->channel;
2737 struct mwl8k_cmd_tx_power *cmd;
2738 int rc;
2739 int i;
2740
2741 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2742 if (cmd == NULL)
2743 return -ENOMEM;
2744
2745 cmd->header.code = cpu_to_le16(MWL8K_CMD_TX_POWER);
2746 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2747 cmd->action = cpu_to_le16(MWL8K_CMD_SET_LIST);
2748
2749 if (channel->band == IEEE80211_BAND_2GHZ)
2750 cmd->band = cpu_to_le16(0x1);
2751 else if (channel->band == IEEE80211_BAND_5GHZ)
2752 cmd->band = cpu_to_le16(0x4);
2753
2754 cmd->channel = channel->hw_value;
2755
2756 if (conf->channel_type == NL80211_CHAN_NO_HT ||
2757 conf->channel_type == NL80211_CHAN_HT20) {
2758 cmd->bw = cpu_to_le16(0x2);
2759 } else {
2760 cmd->bw = cpu_to_le16(0x4);
2761 if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2762 cmd->sub_ch = cpu_to_le16(0x3);
2763 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2764 cmd->sub_ch = cpu_to_le16(0x1);
2765 }
2766
2767 for (i = 0; i < MWL8K_TX_POWER_LEVEL_TOTAL; i++)
2768 cmd->power_level_list[i] = cpu_to_le16(pwr);
2769
2770 rc = mwl8k_post_cmd(hw, &cmd->header);
2771 kfree(cmd);
2772
2773 return rc;
2774}
2775
2776/*
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002777 * CMD_RF_ANTENNA.
2778 */
2779struct mwl8k_cmd_rf_antenna {
2780 struct mwl8k_cmd_pkt header;
2781 __le16 antenna;
2782 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002783} __packed;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002784
2785#define MWL8K_RF_ANTENNA_RX 1
2786#define MWL8K_RF_ANTENNA_TX 2
2787
2788static int
2789mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask)
2790{
2791 struct mwl8k_cmd_rf_antenna *cmd;
2792 int rc;
2793
2794 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2795 if (cmd == NULL)
2796 return -ENOMEM;
2797
2798 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA);
2799 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2800 cmd->antenna = cpu_to_le16(antenna);
2801 cmd->mode = cpu_to_le16(mask);
2802
2803 rc = mwl8k_post_cmd(hw, &cmd->header);
2804 kfree(cmd);
2805
2806 return rc;
2807}
2808
2809/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002810 * CMD_SET_BEACON.
2811 */
2812struct mwl8k_cmd_set_beacon {
2813 struct mwl8k_cmd_pkt header;
2814 __le16 beacon_len;
2815 __u8 beacon[0];
2816};
2817
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002818static int mwl8k_cmd_set_beacon(struct ieee80211_hw *hw,
2819 struct ieee80211_vif *vif, u8 *beacon, int len)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002820{
2821 struct mwl8k_cmd_set_beacon *cmd;
2822 int rc;
2823
2824 cmd = kzalloc(sizeof(*cmd) + len, GFP_KERNEL);
2825 if (cmd == NULL)
2826 return -ENOMEM;
2827
2828 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_BEACON);
2829 cmd->header.length = cpu_to_le16(sizeof(*cmd) + len);
2830 cmd->beacon_len = cpu_to_le16(len);
2831 memcpy(cmd->beacon, beacon, len);
2832
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01002833 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002834 kfree(cmd);
2835
2836 return rc;
2837}
2838
2839/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002840 * CMD_SET_PRE_SCAN.
2841 */
2842struct mwl8k_cmd_set_pre_scan {
2843 struct mwl8k_cmd_pkt header;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002844} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002845
2846static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
2847{
2848 struct mwl8k_cmd_set_pre_scan *cmd;
2849 int rc;
2850
2851 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2852 if (cmd == NULL)
2853 return -ENOMEM;
2854
2855 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
2856 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2857
2858 rc = mwl8k_post_cmd(hw, &cmd->header);
2859 kfree(cmd);
2860
2861 return rc;
2862}
2863
2864/*
2865 * CMD_SET_POST_SCAN.
2866 */
2867struct mwl8k_cmd_set_post_scan {
2868 struct mwl8k_cmd_pkt header;
2869 __le32 isibss;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002870 __u8 bssid[ETH_ALEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002871} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002872
2873static int
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002874mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002875{
2876 struct mwl8k_cmd_set_post_scan *cmd;
2877 int rc;
2878
2879 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2880 if (cmd == NULL)
2881 return -ENOMEM;
2882
2883 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
2884 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2885 cmd->isibss = 0;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002886 memcpy(cmd->bssid, mac, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002887
2888 rc = mwl8k_post_cmd(hw, &cmd->header);
2889 kfree(cmd);
2890
2891 return rc;
2892}
2893
2894/*
2895 * CMD_SET_RF_CHANNEL.
2896 */
2897struct mwl8k_cmd_set_rf_channel {
2898 struct mwl8k_cmd_pkt header;
2899 __le16 action;
2900 __u8 current_channel;
2901 __le32 channel_flags;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002902} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002903
2904static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002905 struct ieee80211_conf *conf)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002906{
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002907 struct ieee80211_channel *channel = conf->channel;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002908 struct mwl8k_cmd_set_rf_channel *cmd;
2909 int rc;
2910
2911 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2912 if (cmd == NULL)
2913 return -ENOMEM;
2914
2915 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
2916 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2917 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2918 cmd->current_channel = channel->hw_value;
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002919
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002920 if (channel->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002921 cmd->channel_flags |= cpu_to_le32(0x00000001);
Lennert Buytenhek42574ea2010-01-12 13:49:18 +01002922 else if (channel->band == IEEE80211_BAND_5GHZ)
2923 cmd->channel_flags |= cpu_to_le32(0x00000004);
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002924
2925 if (conf->channel_type == NL80211_CHAN_NO_HT ||
2926 conf->channel_type == NL80211_CHAN_HT20)
2927 cmd->channel_flags |= cpu_to_le32(0x00000080);
2928 else if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2929 cmd->channel_flags |= cpu_to_le32(0x000001900);
2930 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2931 cmd->channel_flags |= cpu_to_le32(0x000000900);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002932
2933 rc = mwl8k_post_cmd(hw, &cmd->header);
2934 kfree(cmd);
2935
2936 return rc;
2937}
2938
2939/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002940 * CMD_SET_AID.
2941 */
2942#define MWL8K_FRAME_PROT_DISABLED 0x00
2943#define MWL8K_FRAME_PROT_11G 0x07
2944#define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
2945#define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
2946
2947struct mwl8k_cmd_update_set_aid {
2948 struct mwl8k_cmd_pkt header;
2949 __le16 aid;
2950
2951 /* AP's MAC address (BSSID) */
2952 __u8 bssid[ETH_ALEN];
2953 __le16 protection_mode;
2954 __u8 supp_rates[14];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002955} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002956
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002957static void legacy_rate_mask_to_array(u8 *rates, u32 mask)
2958{
2959 int i;
2960 int j;
2961
2962 /*
2963 * Clear nonstandard rates 4 and 13.
2964 */
2965 mask &= 0x1fef;
2966
2967 for (i = 0, j = 0; i < 14; i++) {
2968 if (mask & (1 << i))
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002969 rates[j++] = mwl8k_rates_24[i].hw_value;
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002970 }
2971}
2972
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002973static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002974mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
2975 struct ieee80211_vif *vif, u32 legacy_rate_mask)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002976{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002977 struct mwl8k_cmd_update_set_aid *cmd;
2978 u16 prot_mode;
2979 int rc;
2980
2981 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2982 if (cmd == NULL)
2983 return -ENOMEM;
2984
2985 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
2986 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002987 cmd->aid = cpu_to_le16(vif->bss_conf.aid);
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002988 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002989
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002990 if (vif->bss_conf.use_cts_prot) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002991 prot_mode = MWL8K_FRAME_PROT_11G;
2992 } else {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002993 switch (vif->bss_conf.ht_operation_mode &
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002994 IEEE80211_HT_OP_MODE_PROTECTION) {
2995 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
2996 prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
2997 break;
2998 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
2999 prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
3000 break;
3001 default:
3002 prot_mode = MWL8K_FRAME_PROT_DISABLED;
3003 break;
3004 }
3005 }
3006 cmd->protection_mode = cpu_to_le16(prot_mode);
3007
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003008 legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003009
3010 rc = mwl8k_post_cmd(hw, &cmd->header);
3011 kfree(cmd);
3012
3013 return rc;
3014}
3015
3016/*
3017 * CMD_SET_RATE.
3018 */
3019struct mwl8k_cmd_set_rate {
3020 struct mwl8k_cmd_pkt header;
3021 __u8 legacy_rates[14];
3022
3023 /* Bitmap for supported MCS codes. */
3024 __u8 mcs_set[16];
3025 __u8 reserved[16];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003026} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003027
3028static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003029mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003030 u32 legacy_rate_mask, u8 *mcs_rates)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003031{
3032 struct mwl8k_cmd_set_rate *cmd;
3033 int rc;
3034
3035 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3036 if (cmd == NULL)
3037 return -ENOMEM;
3038
3039 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE);
3040 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003041 legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003042 memcpy(cmd->mcs_set, mcs_rates, 16);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003043
3044 rc = mwl8k_post_cmd(hw, &cmd->header);
3045 kfree(cmd);
3046
3047 return rc;
3048}
3049
3050/*
3051 * CMD_FINALIZE_JOIN.
3052 */
3053#define MWL8K_FJ_BEACON_MAXLEN 128
3054
3055struct mwl8k_cmd_finalize_join {
3056 struct mwl8k_cmd_pkt header;
3057 __le32 sleep_interval; /* Number of beacon periods to sleep */
3058 __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003059} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003060
3061static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame,
3062 int framelen, int dtim)
3063{
3064 struct mwl8k_cmd_finalize_join *cmd;
3065 struct ieee80211_mgmt *payload = frame;
3066 int payload_len;
3067 int rc;
3068
3069 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3070 if (cmd == NULL)
3071 return -ENOMEM;
3072
3073 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN);
3074 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3075 cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
3076
3077 payload_len = framelen - ieee80211_hdrlen(payload->frame_control);
3078 if (payload_len < 0)
3079 payload_len = 0;
3080 else if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
3081 payload_len = MWL8K_FJ_BEACON_MAXLEN;
3082
3083 memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
3084
3085 rc = mwl8k_post_cmd(hw, &cmd->header);
3086 kfree(cmd);
3087
3088 return rc;
3089}
3090
3091/*
3092 * CMD_SET_RTS_THRESHOLD.
3093 */
3094struct mwl8k_cmd_set_rts_threshold {
3095 struct mwl8k_cmd_pkt header;
3096 __le16 action;
3097 __le16 threshold;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003098} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003099
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003100static int
3101mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw, int rts_thresh)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003102{
3103 struct mwl8k_cmd_set_rts_threshold *cmd;
3104 int rc;
3105
3106 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3107 if (cmd == NULL)
3108 return -ENOMEM;
3109
3110 cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
3111 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003112 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3113 cmd->threshold = cpu_to_le16(rts_thresh);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003114
3115 rc = mwl8k_post_cmd(hw, &cmd->header);
3116 kfree(cmd);
3117
3118 return rc;
3119}
3120
3121/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003122 * CMD_SET_SLOT.
3123 */
3124struct mwl8k_cmd_set_slot {
3125 struct mwl8k_cmd_pkt header;
3126 __le16 action;
3127 __u8 short_slot;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003128} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003129
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003130static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003131{
3132 struct mwl8k_cmd_set_slot *cmd;
3133 int rc;
3134
3135 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3136 if (cmd == NULL)
3137 return -ENOMEM;
3138
3139 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
3140 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3141 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02003142 cmd->short_slot = short_slot_time;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003143
3144 rc = mwl8k_post_cmd(hw, &cmd->header);
3145 kfree(cmd);
3146
3147 return rc;
3148}
3149
3150/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003151 * CMD_SET_EDCA_PARAMS.
3152 */
3153struct mwl8k_cmd_set_edca_params {
3154 struct mwl8k_cmd_pkt header;
3155
3156 /* See MWL8K_SET_EDCA_XXX below */
3157 __le16 action;
3158
3159 /* TX opportunity in units of 32 us */
3160 __le16 txop;
3161
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003162 union {
3163 struct {
3164 /* Log exponent of max contention period: 0...15 */
3165 __le32 log_cw_max;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003166
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003167 /* Log exponent of min contention period: 0...15 */
3168 __le32 log_cw_min;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003169
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003170 /* Adaptive interframe spacing in units of 32us */
3171 __u8 aifs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003172
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003173 /* TX queue to configure */
3174 __u8 txq;
3175 } ap;
3176 struct {
3177 /* Log exponent of max contention period: 0...15 */
3178 __u8 log_cw_max;
3179
3180 /* Log exponent of min contention period: 0...15 */
3181 __u8 log_cw_min;
3182
3183 /* Adaptive interframe spacing in units of 32us */
3184 __u8 aifs;
3185
3186 /* TX queue to configure */
3187 __u8 txq;
3188 } sta;
3189 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003190} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003191
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003192#define MWL8K_SET_EDCA_CW 0x01
3193#define MWL8K_SET_EDCA_TXOP 0x02
3194#define MWL8K_SET_EDCA_AIFS 0x04
3195
3196#define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
3197 MWL8K_SET_EDCA_TXOP | \
3198 MWL8K_SET_EDCA_AIFS)
3199
3200static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003201mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
3202 __u16 cw_min, __u16 cw_max,
3203 __u8 aifs, __u16 txop)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003204{
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003205 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003206 struct mwl8k_cmd_set_edca_params *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003207 int rc;
3208
3209 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3210 if (cmd == NULL)
3211 return -ENOMEM;
3212
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003213 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
3214 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003215 cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
3216 cmd->txop = cpu_to_le16(txop);
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02003217 if (priv->ap_fw) {
3218 cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1));
3219 cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1));
3220 cmd->ap.aifs = aifs;
3221 cmd->ap.txq = qnum;
3222 } else {
3223 cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1);
3224 cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1);
3225 cmd->sta.aifs = aifs;
3226 cmd->sta.txq = qnum;
3227 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003228
3229 rc = mwl8k_post_cmd(hw, &cmd->header);
3230 kfree(cmd);
3231
3232 return rc;
3233}
3234
3235/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003236 * CMD_SET_WMM_MODE.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003237 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003238struct mwl8k_cmd_set_wmm_mode {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003239 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003240 __le16 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003241} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003242
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003243static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw *hw, bool enable)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003244{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003245 struct mwl8k_priv *priv = hw->priv;
3246 struct mwl8k_cmd_set_wmm_mode *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003247 int rc;
3248
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003249 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3250 if (cmd == NULL)
3251 return -ENOMEM;
3252
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003253 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003254 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003255 cmd->action = cpu_to_le16(!!enable);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003256
3257 rc = mwl8k_post_cmd(hw, &cmd->header);
3258 kfree(cmd);
Lennert Buytenhek16cec432009-11-30 18:14:23 +01003259
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003260 if (!rc)
3261 priv->wmm_enabled = enable;
3262
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003263 return rc;
3264}
3265
3266/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003267 * CMD_MIMO_CONFIG.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003268 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003269struct mwl8k_cmd_mimo_config {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003270 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003271 __le32 action;
3272 __u8 rx_antenna_map;
3273 __u8 tx_antenna_map;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003274} __packed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003275
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003276static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003277{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003278 struct mwl8k_cmd_mimo_config *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003279 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003280
3281 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3282 if (cmd == NULL)
3283 return -ENOMEM;
3284
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003285 cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003286 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003287 cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET);
3288 cmd->rx_antenna_map = rx;
3289 cmd->tx_antenna_map = tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003290
3291 rc = mwl8k_post_cmd(hw, &cmd->header);
3292 kfree(cmd);
3293
3294 return rc;
3295}
3296
3297/*
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003298 * CMD_USE_FIXED_RATE (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003299 */
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003300struct mwl8k_cmd_use_fixed_rate_sta {
3301 struct mwl8k_cmd_pkt header;
3302 __le32 action;
3303 __le32 allow_rate_drop;
3304 __le32 num_rates;
3305 struct {
3306 __le32 is_ht_rate;
3307 __le32 enable_retry;
3308 __le32 rate;
3309 __le32 retry_count;
3310 } rate_entry[8];
3311 __le32 rate_type;
3312 __le32 reserved1;
3313 __le32 reserved2;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003314} __packed;
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003315
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003316#define MWL8K_USE_AUTO_RATE 0x0002
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003317#define MWL8K_UCAST_RATE 0
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003318
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003319static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003320{
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003321 struct mwl8k_cmd_use_fixed_rate_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003322 int rc;
3323
3324 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3325 if (cmd == NULL)
3326 return -ENOMEM;
3327
3328 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3329 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003330 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3331 cmd->rate_type = cpu_to_le32(MWL8K_UCAST_RATE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003332
3333 rc = mwl8k_post_cmd(hw, &cmd->header);
3334 kfree(cmd);
3335
3336 return rc;
3337}
3338
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003339/*
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003340 * CMD_USE_FIXED_RATE (AP version).
3341 */
3342struct mwl8k_cmd_use_fixed_rate_ap {
3343 struct mwl8k_cmd_pkt header;
3344 __le32 action;
3345 __le32 allow_rate_drop;
3346 __le32 num_rates;
3347 struct mwl8k_rate_entry_ap {
3348 __le32 is_ht_rate;
3349 __le32 enable_retry;
3350 __le32 rate;
3351 __le32 retry_count;
3352 } rate_entry[4];
3353 u8 multicast_rate;
3354 u8 multicast_rate_type;
3355 u8 management_rate;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003356} __packed;
Lennert Buytenhek088aab82010-01-08 18:30:36 +01003357
3358static int
3359mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw *hw, int mcast, int mgmt)
3360{
3361 struct mwl8k_cmd_use_fixed_rate_ap *cmd;
3362 int rc;
3363
3364 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3365 if (cmd == NULL)
3366 return -ENOMEM;
3367
3368 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
3369 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3370 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
3371 cmd->multicast_rate = mcast;
3372 cmd->management_rate = mgmt;
3373
3374 rc = mwl8k_post_cmd(hw, &cmd->header);
3375 kfree(cmd);
3376
3377 return rc;
3378}
3379
3380/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003381 * CMD_ENABLE_SNIFFER.
3382 */
3383struct mwl8k_cmd_enable_sniffer {
3384 struct mwl8k_cmd_pkt header;
3385 __le32 action;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003386} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003387
3388static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable)
3389{
3390 struct mwl8k_cmd_enable_sniffer *cmd;
3391 int rc;
3392
3393 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3394 if (cmd == NULL)
3395 return -ENOMEM;
3396
3397 cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
3398 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3399 cmd->action = cpu_to_le32(!!enable);
3400
3401 rc = mwl8k_post_cmd(hw, &cmd->header);
3402 kfree(cmd);
3403
3404 return rc;
3405}
3406
3407/*
3408 * CMD_SET_MAC_ADDR.
3409 */
3410struct mwl8k_cmd_set_mac_addr {
3411 struct mwl8k_cmd_pkt header;
3412 union {
3413 struct {
3414 __le16 mac_type;
3415 __u8 mac_addr[ETH_ALEN];
3416 } mbss;
3417 __u8 mac_addr[ETH_ALEN];
3418 };
Eric Dumazetba2d3582010-06-02 18:10:09 +00003419} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003420
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003421#define MWL8K_MAC_TYPE_PRIMARY_CLIENT 0
3422#define MWL8K_MAC_TYPE_SECONDARY_CLIENT 1
3423#define MWL8K_MAC_TYPE_PRIMARY_AP 2
3424#define MWL8K_MAC_TYPE_SECONDARY_AP 3
Lennert Buytenheka9e00b12010-01-08 18:31:30 +01003425
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003426static int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw,
3427 struct ieee80211_vif *vif, u8 *mac)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003428{
3429 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003430 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003431 struct mwl8k_cmd_set_mac_addr *cmd;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003432 int mac_type;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003433 int rc;
3434
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003435 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3436 if (vif != NULL && vif->type == NL80211_IFTYPE_STATION) {
3437 if (mwl8k_vif->macid + 1 == ffs(priv->sta_macids_supported))
3438 mac_type = MWL8K_MAC_TYPE_PRIMARY_CLIENT;
3439 else
3440 mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
3441 } else if (vif != NULL && vif->type == NL80211_IFTYPE_AP) {
3442 if (mwl8k_vif->macid + 1 == ffs(priv->ap_macids_supported))
3443 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
3444 else
3445 mac_type = MWL8K_MAC_TYPE_SECONDARY_AP;
3446 }
3447
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003448 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3449 if (cmd == NULL)
3450 return -ENOMEM;
3451
3452 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR);
3453 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3454 if (priv->ap_fw) {
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003455 cmd->mbss.mac_type = cpu_to_le16(mac_type);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003456 memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN);
3457 } else {
3458 memcpy(cmd->mac_addr, mac, ETH_ALEN);
3459 }
3460
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003461 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003462 kfree(cmd);
3463
3464 return rc;
3465}
3466
3467/*
3468 * CMD_SET_RATEADAPT_MODE.
3469 */
3470struct mwl8k_cmd_set_rate_adapt_mode {
3471 struct mwl8k_cmd_pkt header;
3472 __le16 action;
3473 __le16 mode;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003474} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003475
3476static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode)
3477{
3478 struct mwl8k_cmd_set_rate_adapt_mode *cmd;
3479 int rc;
3480
3481 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3482 if (cmd == NULL)
3483 return -ENOMEM;
3484
3485 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
3486 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3487 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
3488 cmd->mode = cpu_to_le16(mode);
3489
3490 rc = mwl8k_post_cmd(hw, &cmd->header);
3491 kfree(cmd);
3492
3493 return rc;
3494}
3495
3496/*
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07003497 * CMD_GET_WATCHDOG_BITMAP.
3498 */
3499struct mwl8k_cmd_get_watchdog_bitmap {
3500 struct mwl8k_cmd_pkt header;
3501 u8 bitmap;
3502} __packed;
3503
3504static int mwl8k_cmd_get_watchdog_bitmap(struct ieee80211_hw *hw, u8 *bitmap)
3505{
3506 struct mwl8k_cmd_get_watchdog_bitmap *cmd;
3507 int rc;
3508
3509 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3510 if (cmd == NULL)
3511 return -ENOMEM;
3512
3513 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_WATCHDOG_BITMAP);
3514 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3515
3516 rc = mwl8k_post_cmd(hw, &cmd->header);
3517 if (!rc)
3518 *bitmap = cmd->bitmap;
3519
3520 kfree(cmd);
3521
3522 return rc;
3523}
3524
3525#define INVALID_BA 0xAA
3526static void mwl8k_watchdog_ba_events(struct work_struct *work)
3527{
3528 int rc;
3529 u8 bitmap = 0, stream_index;
3530 struct mwl8k_ampdu_stream *streams;
3531 struct mwl8k_priv *priv =
3532 container_of(work, struct mwl8k_priv, watchdog_ba_handle);
3533
3534 rc = mwl8k_cmd_get_watchdog_bitmap(priv->hw, &bitmap);
3535 if (rc)
3536 return;
3537
3538 if (bitmap == INVALID_BA)
3539 return;
3540
3541 /* the bitmap is the hw queue number. Map it to the ampdu queue. */
3542 stream_index = bitmap - MWL8K_TX_WMM_QUEUES;
3543
3544 BUG_ON(stream_index >= priv->num_ampdu_queues);
3545
3546 streams = &priv->ampdu[stream_index];
3547
3548 if (streams->state == AMPDU_STREAM_ACTIVE)
3549 ieee80211_stop_tx_ba_session(streams->sta, streams->tid);
3550
3551 return;
3552}
3553
3554
3555/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003556 * CMD_BSS_START.
3557 */
3558struct mwl8k_cmd_bss_start {
3559 struct mwl8k_cmd_pkt header;
3560 __le32 enable;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003561} __packed;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003562
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003563static int mwl8k_cmd_bss_start(struct ieee80211_hw *hw,
3564 struct ieee80211_vif *vif, int enable)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003565{
3566 struct mwl8k_cmd_bss_start *cmd;
3567 int rc;
3568
3569 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3570 if (cmd == NULL)
3571 return -ENOMEM;
3572
3573 cmd->header.code = cpu_to_le16(MWL8K_CMD_BSS_START);
3574 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3575 cmd->enable = cpu_to_le32(enable);
3576
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003577 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003578 kfree(cmd);
3579
3580 return rc;
3581}
3582
3583/*
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003584 * CMD_BASTREAM.
3585 */
3586
3587/*
3588 * UPSTREAM is tx direction
3589 */
3590#define BASTREAM_FLAG_DIRECTION_UPSTREAM 0x00
3591#define BASTREAM_FLAG_IMMEDIATE_TYPE 0x01
3592
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303593enum ba_stream_action_type {
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003594 MWL8K_BA_CREATE,
3595 MWL8K_BA_UPDATE,
3596 MWL8K_BA_DESTROY,
3597 MWL8K_BA_FLUSH,
3598 MWL8K_BA_CHECK,
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303599};
Nishant Sarmukadam5faa1af2011-03-17 11:58:43 -07003600
3601
3602struct mwl8k_create_ba_stream {
3603 __le32 flags;
3604 __le32 idle_thrs;
3605 __le32 bar_thrs;
3606 __le32 window_size;
3607 u8 peer_mac_addr[6];
3608 u8 dialog_token;
3609 u8 tid;
3610 u8 queue_id;
3611 u8 param_info;
3612 __le32 ba_context;
3613 u8 reset_seq_no_flag;
3614 __le16 curr_seq_no;
3615 u8 sta_src_mac_addr[6];
3616} __packed;
3617
3618struct mwl8k_destroy_ba_stream {
3619 __le32 flags;
3620 __le32 ba_context;
3621} __packed;
3622
3623struct mwl8k_cmd_bastream {
3624 struct mwl8k_cmd_pkt header;
3625 __le32 action;
3626 union {
3627 struct mwl8k_create_ba_stream create_params;
3628 struct mwl8k_destroy_ba_stream destroy_params;
3629 };
3630} __packed;
3631
3632static int
3633mwl8k_check_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream)
3634{
3635 struct mwl8k_cmd_bastream *cmd;
3636 int rc;
3637
3638 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3639 if (cmd == NULL)
3640 return -ENOMEM;
3641
3642 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3643 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3644
3645 cmd->action = cpu_to_le32(MWL8K_BA_CHECK);
3646
3647 cmd->create_params.queue_id = stream->idx;
3648 memcpy(&cmd->create_params.peer_mac_addr[0], stream->sta->addr,
3649 ETH_ALEN);
3650 cmd->create_params.tid = stream->tid;
3651
3652 cmd->create_params.flags =
3653 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE) |
3654 cpu_to_le32(BASTREAM_FLAG_DIRECTION_UPSTREAM);
3655
3656 rc = mwl8k_post_cmd(hw, &cmd->header);
3657
3658 kfree(cmd);
3659
3660 return rc;
3661}
3662
3663static int
3664mwl8k_create_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream,
3665 u8 buf_size)
3666{
3667 struct mwl8k_cmd_bastream *cmd;
3668 int rc;
3669
3670 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3671 if (cmd == NULL)
3672 return -ENOMEM;
3673
3674
3675 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3676 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3677
3678 cmd->action = cpu_to_le32(MWL8K_BA_CREATE);
3679
3680 cmd->create_params.bar_thrs = cpu_to_le32((u32)buf_size);
3681 cmd->create_params.window_size = cpu_to_le32((u32)buf_size);
3682 cmd->create_params.queue_id = stream->idx;
3683
3684 memcpy(cmd->create_params.peer_mac_addr, stream->sta->addr, ETH_ALEN);
3685 cmd->create_params.tid = stream->tid;
3686 cmd->create_params.curr_seq_no = cpu_to_le16(0);
3687 cmd->create_params.reset_seq_no_flag = 1;
3688
3689 cmd->create_params.param_info =
3690 (stream->sta->ht_cap.ampdu_factor &
3691 IEEE80211_HT_AMPDU_PARM_FACTOR) |
3692 ((stream->sta->ht_cap.ampdu_density << 2) &
3693 IEEE80211_HT_AMPDU_PARM_DENSITY);
3694
3695 cmd->create_params.flags =
3696 cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE |
3697 BASTREAM_FLAG_DIRECTION_UPSTREAM);
3698
3699 rc = mwl8k_post_cmd(hw, &cmd->header);
3700
3701 wiphy_debug(hw->wiphy, "Created a BA stream for %pM : tid %d\n",
3702 stream->sta->addr, stream->tid);
3703 kfree(cmd);
3704
3705 return rc;
3706}
3707
3708static void mwl8k_destroy_ba(struct ieee80211_hw *hw,
3709 struct mwl8k_ampdu_stream *stream)
3710{
3711 struct mwl8k_cmd_bastream *cmd;
3712
3713 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3714 if (cmd == NULL)
3715 return;
3716
3717 cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM);
3718 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3719 cmd->action = cpu_to_le32(MWL8K_BA_DESTROY);
3720
3721 cmd->destroy_params.ba_context = cpu_to_le32(stream->idx);
3722 mwl8k_post_cmd(hw, &cmd->header);
3723
3724 wiphy_debug(hw->wiphy, "Deleted BA stream index %d\n", stream->idx);
3725
3726 kfree(cmd);
3727}
3728
3729/*
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003730 * CMD_SET_NEW_STN.
3731 */
3732struct mwl8k_cmd_set_new_stn {
3733 struct mwl8k_cmd_pkt header;
3734 __le16 aid;
3735 __u8 mac_addr[6];
3736 __le16 stn_id;
3737 __le16 action;
3738 __le16 rsvd;
3739 __le32 legacy_rates;
3740 __u8 ht_rates[4];
3741 __le16 cap_info;
3742 __le16 ht_capabilities_info;
3743 __u8 mac_ht_param_info;
3744 __u8 rev;
3745 __u8 control_channel;
3746 __u8 add_channel;
3747 __le16 op_mode;
3748 __le16 stbc;
3749 __u8 add_qos_info;
3750 __u8 is_qos_sta;
3751 __le32 fw_sta_ptr;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003752} __packed;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003753
3754#define MWL8K_STA_ACTION_ADD 0
3755#define MWL8K_STA_ACTION_REMOVE 2
3756
3757static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw *hw,
3758 struct ieee80211_vif *vif,
3759 struct ieee80211_sta *sta)
3760{
3761 struct mwl8k_cmd_set_new_stn *cmd;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003762 u32 rates;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003763 int rc;
3764
3765 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3766 if (cmd == NULL)
3767 return -ENOMEM;
3768
3769 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3770 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3771 cmd->aid = cpu_to_le16(sta->aid);
3772 memcpy(cmd->mac_addr, sta->addr, ETH_ALEN);
3773 cmd->stn_id = cpu_to_le16(sta->aid);
3774 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_ADD);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003775 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
3776 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
3777 else
3778 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
3779 cmd->legacy_rates = cpu_to_le32(rates);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003780 if (sta->ht_cap.ht_supported) {
3781 cmd->ht_rates[0] = sta->ht_cap.mcs.rx_mask[0];
3782 cmd->ht_rates[1] = sta->ht_cap.mcs.rx_mask[1];
3783 cmd->ht_rates[2] = sta->ht_cap.mcs.rx_mask[2];
3784 cmd->ht_rates[3] = sta->ht_cap.mcs.rx_mask[3];
3785 cmd->ht_capabilities_info = cpu_to_le16(sta->ht_cap.cap);
3786 cmd->mac_ht_param_info = (sta->ht_cap.ampdu_factor & 3) |
3787 ((sta->ht_cap.ampdu_density & 7) << 2);
3788 cmd->is_qos_sta = 1;
3789 }
3790
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003791 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003792 kfree(cmd);
3793
3794 return rc;
3795}
3796
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003797static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw *hw,
3798 struct ieee80211_vif *vif)
3799{
3800 struct mwl8k_cmd_set_new_stn *cmd;
3801 int rc;
3802
3803 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3804 if (cmd == NULL)
3805 return -ENOMEM;
3806
3807 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3808 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3809 memcpy(cmd->mac_addr, vif->addr, ETH_ALEN);
3810
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003811 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003812 kfree(cmd);
3813
3814 return rc;
3815}
3816
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003817static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw *hw,
3818 struct ieee80211_vif *vif, u8 *addr)
3819{
3820 struct mwl8k_cmd_set_new_stn *cmd;
3821 int rc;
3822
3823 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3824 if (cmd == NULL)
3825 return -ENOMEM;
3826
3827 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
3828 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3829 memcpy(cmd->mac_addr, addr, ETH_ALEN);
3830 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_REMOVE);
3831
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01003832 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003833 kfree(cmd);
3834
3835 return rc;
3836}
3837
3838/*
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08003839 * CMD_UPDATE_ENCRYPTION.
3840 */
3841
3842#define MAX_ENCR_KEY_LENGTH 16
3843#define MIC_KEY_LENGTH 8
3844
3845struct mwl8k_cmd_update_encryption {
3846 struct mwl8k_cmd_pkt header;
3847
3848 __le32 action;
3849 __le32 reserved;
3850 __u8 mac_addr[6];
3851 __u8 encr_type;
3852
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303853} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08003854
3855struct mwl8k_cmd_set_key {
3856 struct mwl8k_cmd_pkt header;
3857
3858 __le32 action;
3859 __le32 reserved;
3860 __le16 length;
3861 __le16 key_type_id;
3862 __le32 key_info;
3863 __le32 key_id;
3864 __le16 key_len;
3865 __u8 key_material[MAX_ENCR_KEY_LENGTH];
3866 __u8 tkip_tx_mic_key[MIC_KEY_LENGTH];
3867 __u8 tkip_rx_mic_key[MIC_KEY_LENGTH];
3868 __le16 tkip_rsc_low;
3869 __le32 tkip_rsc_high;
3870 __le16 tkip_tsc_low;
3871 __le32 tkip_tsc_high;
3872 __u8 mac_addr[6];
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05303873} __packed;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08003874
3875enum {
3876 MWL8K_ENCR_ENABLE,
3877 MWL8K_ENCR_SET_KEY,
3878 MWL8K_ENCR_REMOVE_KEY,
3879 MWL8K_ENCR_SET_GROUP_KEY,
3880};
3881
3882#define MWL8K_UPDATE_ENCRYPTION_TYPE_WEP 0
3883#define MWL8K_UPDATE_ENCRYPTION_TYPE_DISABLE 1
3884#define MWL8K_UPDATE_ENCRYPTION_TYPE_TKIP 4
3885#define MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED 7
3886#define MWL8K_UPDATE_ENCRYPTION_TYPE_AES 8
3887
3888enum {
3889 MWL8K_ALG_WEP,
3890 MWL8K_ALG_TKIP,
3891 MWL8K_ALG_CCMP,
3892};
3893
3894#define MWL8K_KEY_FLAG_TXGROUPKEY 0x00000004
3895#define MWL8K_KEY_FLAG_PAIRWISE 0x00000008
3896#define MWL8K_KEY_FLAG_TSC_VALID 0x00000040
3897#define MWL8K_KEY_FLAG_WEP_TXKEY 0x01000000
3898#define MWL8K_KEY_FLAG_MICKEY_VALID 0x02000000
3899
3900static int mwl8k_cmd_update_encryption_enable(struct ieee80211_hw *hw,
3901 struct ieee80211_vif *vif,
3902 u8 *addr,
3903 u8 encr_type)
3904{
3905 struct mwl8k_cmd_update_encryption *cmd;
3906 int rc;
3907
3908 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3909 if (cmd == NULL)
3910 return -ENOMEM;
3911
3912 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
3913 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3914 cmd->action = cpu_to_le32(MWL8K_ENCR_ENABLE);
3915 memcpy(cmd->mac_addr, addr, ETH_ALEN);
3916 cmd->encr_type = encr_type;
3917
3918 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
3919 kfree(cmd);
3920
3921 return rc;
3922}
3923
3924static int mwl8k_encryption_set_cmd_info(struct mwl8k_cmd_set_key *cmd,
3925 u8 *addr,
3926 struct ieee80211_key_conf *key)
3927{
3928 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION);
3929 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3930 cmd->length = cpu_to_le16(sizeof(*cmd) -
3931 offsetof(struct mwl8k_cmd_set_key, length));
3932 cmd->key_id = cpu_to_le32(key->keyidx);
3933 cmd->key_len = cpu_to_le16(key->keylen);
3934 memcpy(cmd->mac_addr, addr, ETH_ALEN);
3935
3936 switch (key->cipher) {
3937 case WLAN_CIPHER_SUITE_WEP40:
3938 case WLAN_CIPHER_SUITE_WEP104:
3939 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_WEP);
3940 if (key->keyidx == 0)
3941 cmd->key_info = cpu_to_le32(MWL8K_KEY_FLAG_WEP_TXKEY);
3942
3943 break;
3944 case WLAN_CIPHER_SUITE_TKIP:
3945 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_TKIP);
3946 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
3947 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
3948 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
3949 cmd->key_info |= cpu_to_le32(MWL8K_KEY_FLAG_MICKEY_VALID
3950 | MWL8K_KEY_FLAG_TSC_VALID);
3951 break;
3952 case WLAN_CIPHER_SUITE_CCMP:
3953 cmd->key_type_id = cpu_to_le16(MWL8K_ALG_CCMP);
3954 cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
3955 ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE)
3956 : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY);
3957 break;
3958 default:
3959 return -ENOTSUPP;
3960 }
3961
3962 return 0;
3963}
3964
3965static int mwl8k_cmd_encryption_set_key(struct ieee80211_hw *hw,
3966 struct ieee80211_vif *vif,
3967 u8 *addr,
3968 struct ieee80211_key_conf *key)
3969{
3970 struct mwl8k_cmd_set_key *cmd;
3971 int rc;
3972 int keymlen;
3973 u32 action;
3974 u8 idx;
3975 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
3976
3977 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3978 if (cmd == NULL)
3979 return -ENOMEM;
3980
3981 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
3982 if (rc < 0)
3983 goto done;
3984
3985 idx = key->keyidx;
3986
3987 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
3988 action = MWL8K_ENCR_SET_KEY;
3989 else
3990 action = MWL8K_ENCR_SET_GROUP_KEY;
3991
3992 switch (key->cipher) {
3993 case WLAN_CIPHER_SUITE_WEP40:
3994 case WLAN_CIPHER_SUITE_WEP104:
3995 if (!mwl8k_vif->wep_key_conf[idx].enabled) {
3996 memcpy(mwl8k_vif->wep_key_conf[idx].key, key,
3997 sizeof(*key) + key->keylen);
3998 mwl8k_vif->wep_key_conf[idx].enabled = 1;
3999 }
4000
Yogesh Ashok Powar9b571e22011-05-04 17:22:16 +05304001 keymlen = key->keylen;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004002 action = MWL8K_ENCR_SET_KEY;
4003 break;
4004 case WLAN_CIPHER_SUITE_TKIP:
4005 keymlen = MAX_ENCR_KEY_LENGTH + 2 * MIC_KEY_LENGTH;
4006 break;
4007 case WLAN_CIPHER_SUITE_CCMP:
4008 keymlen = key->keylen;
4009 break;
4010 default:
4011 rc = -ENOTSUPP;
4012 goto done;
4013 }
4014
4015 memcpy(cmd->key_material, key->key, keymlen);
4016 cmd->action = cpu_to_le32(action);
4017
4018 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4019done:
4020 kfree(cmd);
4021
4022 return rc;
4023}
4024
4025static int mwl8k_cmd_encryption_remove_key(struct ieee80211_hw *hw,
4026 struct ieee80211_vif *vif,
4027 u8 *addr,
4028 struct ieee80211_key_conf *key)
4029{
4030 struct mwl8k_cmd_set_key *cmd;
4031 int rc;
4032 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4033
4034 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4035 if (cmd == NULL)
4036 return -ENOMEM;
4037
4038 rc = mwl8k_encryption_set_cmd_info(cmd, addr, key);
4039 if (rc < 0)
4040 goto done;
4041
4042 if (key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
4043 WLAN_CIPHER_SUITE_WEP104)
4044 mwl8k_vif->wep_key_conf[key->keyidx].enabled = 0;
4045
4046 cmd->action = cpu_to_le32(MWL8K_ENCR_REMOVE_KEY);
4047
4048 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
4049done:
4050 kfree(cmd);
4051
4052 return rc;
4053}
4054
4055static int mwl8k_set_key(struct ieee80211_hw *hw,
4056 enum set_key_cmd cmd_param,
4057 struct ieee80211_vif *vif,
4058 struct ieee80211_sta *sta,
4059 struct ieee80211_key_conf *key)
4060{
4061 int rc = 0;
4062 u8 encr_type;
4063 u8 *addr;
4064 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4065
4066 if (vif->type == NL80211_IFTYPE_STATION)
4067 return -EOPNOTSUPP;
4068
4069 if (sta == NULL)
4070 addr = hw->wiphy->perm_addr;
4071 else
4072 addr = sta->addr;
4073
4074 if (cmd_param == SET_KEY) {
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004075 rc = mwl8k_cmd_encryption_set_key(hw, vif, addr, key);
4076 if (rc)
4077 goto out;
4078
4079 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40)
4080 || (key->cipher == WLAN_CIPHER_SUITE_WEP104))
4081 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_WEP;
4082 else
4083 encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED;
4084
4085 rc = mwl8k_cmd_update_encryption_enable(hw, vif, addr,
4086 encr_type);
4087 if (rc)
4088 goto out;
4089
4090 mwl8k_vif->is_hw_crypto_enabled = true;
4091
4092 } else {
4093 rc = mwl8k_cmd_encryption_remove_key(hw, vif, addr, key);
4094
4095 if (rc)
4096 goto out;
4097
4098 mwl8k_vif->is_hw_crypto_enabled = false;
4099
4100 }
4101out:
4102 return rc;
4103}
4104
4105/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004106 * CMD_UPDATE_STADB.
4107 */
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004108struct ewc_ht_info {
4109 __le16 control1;
4110 __le16 control2;
4111 __le16 control3;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004112} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004113
4114struct peer_capability_info {
4115 /* Peer type - AP vs. STA. */
4116 __u8 peer_type;
4117
4118 /* Basic 802.11 capabilities from assoc resp. */
4119 __le16 basic_caps;
4120
4121 /* Set if peer supports 802.11n high throughput (HT). */
4122 __u8 ht_support;
4123
4124 /* Valid if HT is supported. */
4125 __le16 ht_caps;
4126 __u8 extended_ht_caps;
4127 struct ewc_ht_info ewc_info;
4128
4129 /* Legacy rate table. Intersection of our rates and peer rates. */
4130 __u8 legacy_rates[12];
4131
4132 /* HT rate table. Intersection of our rates and peer rates. */
4133 __u8 ht_rates[16];
4134 __u8 pad[16];
4135
4136 /* If set, interoperability mode, no proprietary extensions. */
4137 __u8 interop;
4138 __u8 pad2;
4139 __u8 station_id;
4140 __le16 amsdu_enabled;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004141} __packed;
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01004142
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004143struct mwl8k_cmd_update_stadb {
4144 struct mwl8k_cmd_pkt header;
4145
4146 /* See STADB_ACTION_TYPE */
4147 __le32 action;
4148
4149 /* Peer MAC address */
4150 __u8 peer_addr[ETH_ALEN];
4151
4152 __le32 reserved;
4153
4154 /* Peer info - valid during add/update. */
4155 struct peer_capability_info peer_info;
Eric Dumazetba2d3582010-06-02 18:10:09 +00004156} __packed;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004157
Lennert Buytenheka6804002010-01-04 21:55:42 +01004158#define MWL8K_STA_DB_MODIFY_ENTRY 1
4159#define MWL8K_STA_DB_DEL_ENTRY 2
4160
4161/* Peer Entry flags - used to define the type of the peer node */
4162#define MWL8K_PEER_TYPE_ACCESSPOINT 2
4163
4164static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw,
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004165 struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004166 struct ieee80211_sta *sta)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004167{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004168 struct mwl8k_cmd_update_stadb *cmd;
Lennert Buytenheka6804002010-01-04 21:55:42 +01004169 struct peer_capability_info *p;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004170 u32 rates;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004171 int rc;
4172
4173 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4174 if (cmd == NULL)
4175 return -ENOMEM;
4176
4177 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4178 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka6804002010-01-04 21:55:42 +01004179 cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004180 memcpy(cmd->peer_addr, sta->addr, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004181
Lennert Buytenheka6804002010-01-04 21:55:42 +01004182 p = &cmd->peer_info;
4183 p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
4184 p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004185 p->ht_support = sta->ht_cap.ht_supported;
John W. Linvilleb6037422010-07-20 13:55:00 -04004186 p->ht_caps = cpu_to_le16(sta->ht_cap.cap);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004187 p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) |
4188 ((sta->ht_cap.ampdu_density & 7) << 2);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004189 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4190 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
4191 else
4192 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4193 legacy_rate_mask_to_array(p->legacy_rates, rates);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004194 memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16);
Lennert Buytenheka6804002010-01-04 21:55:42 +01004195 p->interop = 1;
4196 p->amsdu_enabled = 0;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004197
Lennert Buytenheka6804002010-01-04 21:55:42 +01004198 rc = mwl8k_post_cmd(hw, &cmd->header);
4199 kfree(cmd);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004200
Lennert Buytenheka6804002010-01-04 21:55:42 +01004201 return rc ? rc : p->station_id;
4202}
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004203
Lennert Buytenheka6804002010-01-04 21:55:42 +01004204static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw,
4205 struct ieee80211_vif *vif, u8 *addr)
4206{
4207 struct mwl8k_cmd_update_stadb *cmd;
4208 int rc;
4209
4210 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
4211 if (cmd == NULL)
4212 return -ENOMEM;
4213
4214 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
4215 cmd->header.length = cpu_to_le16(sizeof(*cmd));
4216 cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY);
4217 memcpy(cmd->peer_addr, addr, ETH_ALEN);
4218
4219 rc = mwl8k_post_cmd(hw, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004220 kfree(cmd);
4221
4222 return rc;
4223}
4224
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004225
4226/*
4227 * Interrupt handling.
4228 */
4229static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
4230{
4231 struct ieee80211_hw *hw = dev_id;
4232 struct mwl8k_priv *priv = hw->priv;
4233 u32 status;
4234
4235 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004236 if (!status)
4237 return IRQ_NONE;
4238
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004239 if (status & MWL8K_A2H_INT_TX_DONE) {
4240 status &= ~MWL8K_A2H_INT_TX_DONE;
4241 tasklet_schedule(&priv->poll_tx_task);
4242 }
4243
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004244 if (status & MWL8K_A2H_INT_RX_READY) {
4245 status &= ~MWL8K_A2H_INT_RX_READY;
4246 tasklet_schedule(&priv->poll_rx_task);
4247 }
4248
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004249 if (status & MWL8K_A2H_INT_BA_WATCHDOG) {
4250 status &= ~MWL8K_A2H_INT_BA_WATCHDOG;
4251 ieee80211_queue_work(hw, &priv->watchdog_ba_handle);
4252 }
4253
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004254 if (status)
4255 iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004256
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004257 if (status & MWL8K_A2H_INT_OPC_DONE) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004258 if (priv->hostcmd_wait != NULL)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004259 complete(priv->hostcmd_wait);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004260 }
4261
4262 if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004263 if (!mutex_is_locked(&priv->fw_mutex) &&
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02004264 priv->radio_on && priv->pending_tx_pkts)
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004265 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004266 }
4267
4268 return IRQ_HANDLED;
4269}
4270
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004271static void mwl8k_tx_poll(unsigned long data)
4272{
4273 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4274 struct mwl8k_priv *priv = hw->priv;
4275 int limit;
4276 int i;
4277
4278 limit = 32;
4279
4280 spin_lock_bh(&priv->tx_lock);
4281
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004282 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004283 limit -= mwl8k_txq_reclaim(hw, i, limit, 0);
4284
4285 if (!priv->pending_tx_pkts && priv->tx_wait != NULL) {
4286 complete(priv->tx_wait);
4287 priv->tx_wait = NULL;
4288 }
4289
4290 spin_unlock_bh(&priv->tx_lock);
4291
4292 if (limit) {
4293 writel(~MWL8K_A2H_INT_TX_DONE,
4294 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4295 } else {
4296 tasklet_schedule(&priv->poll_tx_task);
4297 }
4298}
4299
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004300static void mwl8k_rx_poll(unsigned long data)
4301{
4302 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
4303 struct mwl8k_priv *priv = hw->priv;
4304 int limit;
4305
4306 limit = 32;
4307 limit -= rxq_process(hw, 0, limit);
4308 limit -= rxq_refill(hw, 0, limit);
4309
4310 if (limit) {
4311 writel(~MWL8K_A2H_INT_RX_READY,
4312 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
4313 } else {
4314 tasklet_schedule(&priv->poll_rx_task);
4315 }
4316}
4317
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004318
4319/*
4320 * Core driver operations.
4321 */
Johannes Berg7bb45682011-02-24 14:42:06 +01004322static void mwl8k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004323{
4324 struct mwl8k_priv *priv = hw->priv;
4325 int index = skb_get_queue_mapping(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004326
Lennert Buytenhek9189c102010-01-12 13:47:32 +01004327 if (!priv->radio_on) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004328 wiphy_debug(hw->wiphy,
4329 "dropped TX frame since radio disabled\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004330 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01004331 return;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004332 }
4333
Johannes Berg7bb45682011-02-24 14:42:06 +01004334 mwl8k_txq_xmit(hw, index, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004335}
4336
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004337static int mwl8k_start(struct ieee80211_hw *hw)
4338{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004339 struct mwl8k_priv *priv = hw->priv;
4340 int rc;
4341
Joe Perchesa0607fd2009-11-18 23:29:17 -08004342 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004343 IRQF_SHARED, MWL8K_NAME, hw);
4344 if (rc) {
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304345 priv->irq = -1;
Joe Perches5db55842010-08-11 19:11:19 -07004346 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004347 return -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004348 }
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304349 priv->irq = priv->pdev->irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004350
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004351 /* Enable TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004352 tasklet_enable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004353 tasklet_enable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004354
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004355 /* Enable interrupts */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02004356 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05304357 iowrite32(MWL8K_A2H_EVENTS,
4358 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004359
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004360 rc = mwl8k_fw_lock(hw);
4361 if (!rc) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004362 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004363
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004364 if (!priv->ap_fw) {
4365 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004366 rc = mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004367
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02004368 if (!rc)
4369 rc = mwl8k_cmd_set_pre_scan(hw);
4370
4371 if (!rc)
4372 rc = mwl8k_cmd_set_post_scan(hw,
4373 "\x00\x00\x00\x00\x00\x00");
4374 }
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004375
4376 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004377 rc = mwl8k_cmd_set_rateadapt_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004378
4379 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004380 rc = mwl8k_cmd_set_wmm_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004381
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004382 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004383 }
4384
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004385 if (rc) {
4386 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
4387 free_irq(priv->pdev->irq, hw);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304388 priv->irq = -1;
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004389 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004390 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02004391 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004392
4393 return rc;
4394}
4395
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004396static void mwl8k_stop(struct ieee80211_hw *hw)
4397{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004398 struct mwl8k_priv *priv = hw->priv;
4399 int i;
4400
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004401 mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004402
4403 ieee80211_stop_queues(hw);
4404
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004405 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004406 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Brian Cavagnolobf3ca7f2011-04-06 14:18:46 +05304407 if (priv->irq != -1) {
4408 free_irq(priv->pdev->irq, hw);
4409 priv->irq = -1;
4410 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004411
4412 /* Stop finalize join worker */
4413 cancel_work_sync(&priv->finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07004414 cancel_work_sync(&priv->watchdog_ba_handle);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004415 if (priv->beacon_skb != NULL)
4416 dev_kfree_skb(priv->beacon_skb);
4417
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004418 /* Stop TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004419 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004420 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004421
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004422 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004423 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01004424 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004425}
4426
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004427static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image);
4428
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004429static int mwl8k_add_interface(struct ieee80211_hw *hw,
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004430 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004431{
4432 struct mwl8k_priv *priv = hw->priv;
4433 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004434 u32 macids_supported;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004435 int macid, rc;
4436 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004437
4438 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004439 * Reject interface creation if sniffer mode is active, as
4440 * STA operation is mutually exclusive with hardware sniffer
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004441 * mode. (Sniffer mode is only used on STA firmware.)
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004442 */
4443 if (priv->sniffer_enabled) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004444 wiphy_info(hw->wiphy,
4445 "unable to create STA interface because sniffer mode is enabled\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004446 return -EINVAL;
4447 }
4448
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004449 di = priv->device_info;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004450 switch (vif->type) {
4451 case NL80211_IFTYPE_AP:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004452 if (!priv->ap_fw && di->fw_image_ap) {
4453 /* we must load the ap fw to meet this request */
4454 if (!list_empty(&priv->vif_list))
4455 return -EBUSY;
4456 rc = mwl8k_reload_firmware(hw, di->fw_image_ap);
4457 if (rc)
4458 return rc;
4459 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004460 macids_supported = priv->ap_macids_supported;
4461 break;
4462 case NL80211_IFTYPE_STATION:
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004463 if (priv->ap_fw && di->fw_image_sta) {
4464 /* we must load the sta fw to meet this request */
4465 if (!list_empty(&priv->vif_list))
4466 return -EBUSY;
4467 rc = mwl8k_reload_firmware(hw, di->fw_image_sta);
4468 if (rc)
4469 return rc;
4470 }
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004471 macids_supported = priv->sta_macids_supported;
4472 break;
4473 default:
4474 return -EINVAL;
4475 }
4476
4477 macid = ffs(macids_supported & ~priv->macids_used);
4478 if (!macid--)
4479 return -EBUSY;
4480
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004481 /* Setup driver private area. */
Johannes Berg1ed32e42009-12-23 13:15:45 +01004482 mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004483 memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004484 mwl8k_vif->vif = vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004485 mwl8k_vif->macid = macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004486 mwl8k_vif->seqno = 0;
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004487 memcpy(mwl8k_vif->bssid, vif->addr, ETH_ALEN);
4488 mwl8k_vif->is_hw_crypto_enabled = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004489
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004490 /* Set the mac address. */
4491 mwl8k_cmd_set_mac_addr(hw, vif, vif->addr);
4492
4493 if (priv->ap_fw)
4494 mwl8k_cmd_set_new_stn_add_self(hw, vif);
4495
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004496 priv->macids_used |= 1 << mwl8k_vif->macid;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004497 list_add_tail(&mwl8k_vif->list, &priv->vif_list);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004498
4499 return 0;
4500}
4501
4502static void mwl8k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01004503 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004504{
4505 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004506 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004507
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004508 if (priv->ap_fw)
4509 mwl8k_cmd_set_new_stn_del(hw, vif, vif->addr);
4510
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004511 mwl8k_cmd_set_mac_addr(hw, vif, "\x00\x00\x00\x00\x00\x00");
Lennert Buytenhek32060e12009-10-22 20:20:04 +02004512
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004513 priv->macids_used &= ~(1 << mwl8k_vif->macid);
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004514 list_del(&mwl8k_vif->list);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004515}
4516
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004517static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004518{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004519 struct ieee80211_conf *conf = &hw->conf;
4520 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004521 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004522
Lennert Buytenhek7595d672009-08-17 23:59:40 +02004523 if (conf->flags & IEEE80211_CONF_IDLE) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004524 mwl8k_cmd_radio_disable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004525 return 0;
Lennert Buytenhek7595d672009-08-17 23:59:40 +02004526 }
4527
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004528 rc = mwl8k_fw_lock(hw);
4529 if (rc)
4530 return rc;
4531
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004532 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004533 if (rc)
4534 goto out;
4535
Lennert Buytenhek610677d2010-01-04 21:56:46 +01004536 rc = mwl8k_cmd_set_rf_channel(hw, conf);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004537 if (rc)
4538 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004539
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004540 if (conf->power_level > 18)
4541 conf->power_level = 18;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004542
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004543 if (priv->ap_fw) {
Nishant Sarmukadam03217082011-04-05 14:18:09 +05304544
4545 if (conf->flags & IEEE80211_CONF_CHANGE_POWER) {
4546 rc = mwl8k_cmd_tx_power(hw, conf, conf->power_level);
4547 if (rc)
4548 goto out;
4549 }
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004550
Nishant Sarmukadamda62b762011-02-17 14:45:16 -08004551 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x3);
4552 if (rc)
4553 wiphy_warn(hw->wiphy, "failed to set # of RX antennas");
4554 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7);
4555 if (rc)
4556 wiphy_warn(hw->wiphy, "failed to set # of TX antennas");
4557
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004558 } else {
Nishant Sarmukadam41fdf092010-11-12 17:23:48 -08004559 rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level);
4560 if (rc)
4561 goto out;
Lennert Buytenhek08b06342009-10-22 20:21:33 +02004562 rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7);
4563 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004564
Lennert Buytenhekee03a932009-07-17 07:19:37 +02004565out:
4566 mwl8k_fw_unlock(hw);
4567
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004568 return rc;
4569}
4570
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004571static void
4572mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4573 struct ieee80211_bss_conf *info, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004574{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004575 struct mwl8k_priv *priv = hw->priv;
Yogesh Ashok Powarba30c4a2011-04-09 00:25:37 +05304576 u32 ap_legacy_rates = 0;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004577 u8 ap_mcs_rates[16];
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004578 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004579
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004580 if (mwl8k_fw_lock(hw))
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004581 return;
4582
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004583 /*
4584 * No need to capture a beacon if we're no longer associated.
4585 */
4586 if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc)
4587 priv->capture_beacon = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004588
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004589 /*
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004590 * Get the AP's legacy and MCS rates.
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004591 */
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004592 if (vif->bss_conf.assoc) {
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004593 struct ieee80211_sta *ap;
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004594
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004595 rcu_read_lock();
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004596
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004597 ap = ieee80211_find_sta(vif, vif->bss_conf.bssid);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004598 if (ap == NULL) {
4599 rcu_read_unlock();
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004600 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004601 }
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01004602
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004603 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) {
4604 ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ];
4605 } else {
4606 ap_legacy_rates =
4607 ap->supp_rates[IEEE80211_BAND_5GHZ] << 5;
4608 }
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004609 memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004610
4611 rcu_read_unlock();
4612 }
4613
4614 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc) {
Lennert Buytenhek13935e22010-01-04 21:57:59 +01004615 rc = mwl8k_cmd_set_rate(hw, vif, ap_legacy_rates, ap_mcs_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004616 if (rc)
4617 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004618
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01004619 rc = mwl8k_cmd_use_fixed_rate_sta(hw);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004620 if (rc)
4621 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004622 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004623
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004624 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004625 rc = mwl8k_set_radio_preamble(hw,
4626 vif->bss_conf.use_short_preamble);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004627 if (rc)
4628 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004629 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004630
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004631 if (changed & BSS_CHANGED_ERP_SLOT) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01004632 rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004633 if (rc)
4634 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004635 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004636
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01004637 if (vif->bss_conf.assoc &&
4638 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_ERP_CTS_PROT |
4639 BSS_CHANGED_HT))) {
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004640 rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004641 if (rc)
4642 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004643 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004644
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01004645 if (vif->bss_conf.assoc &&
4646 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004647 /*
4648 * Finalize the join. Tell rx handler to process
4649 * next beacon from our BSSID.
4650 */
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01004651 memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004652 priv->capture_beacon = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004653 }
4654
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02004655out:
4656 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004657}
4658
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004659static void
4660mwl8k_bss_info_changed_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4661 struct ieee80211_bss_conf *info, u32 changed)
4662{
4663 int rc;
4664
4665 if (mwl8k_fw_lock(hw))
4666 return;
4667
4668 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
4669 rc = mwl8k_set_radio_preamble(hw,
4670 vif->bss_conf.use_short_preamble);
4671 if (rc)
4672 goto out;
4673 }
4674
4675 if (changed & BSS_CHANGED_BASIC_RATES) {
4676 int idx;
4677 int rate;
4678
4679 /*
4680 * Use lowest supported basic rate for multicasts
4681 * and management frames (such as probe responses --
4682 * beacons will always go out at 1 Mb/s).
4683 */
4684 idx = ffs(vif->bss_conf.basic_rates);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01004685 if (idx)
4686 idx--;
4687
4688 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
4689 rate = mwl8k_rates_24[idx].hw_value;
4690 else
4691 rate = mwl8k_rates_50[idx].hw_value;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004692
4693 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
4694 }
4695
4696 if (changed & (BSS_CHANGED_BEACON_INT | BSS_CHANGED_BEACON)) {
4697 struct sk_buff *skb;
4698
4699 skb = ieee80211_beacon_get(hw, vif);
4700 if (skb != NULL) {
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004701 mwl8k_cmd_set_beacon(hw, vif, skb->data, skb->len);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004702 kfree_skb(skb);
4703 }
4704 }
4705
4706 if (changed & BSS_CHANGED_BEACON_ENABLED)
Lennert Buytenhekaa21d0f62010-01-12 13:50:36 +01004707 mwl8k_cmd_bss_start(hw, vif, info->enable_beacon);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01004708
4709out:
4710 mwl8k_fw_unlock(hw);
4711}
4712
4713static void
4714mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4715 struct ieee80211_bss_conf *info, u32 changed)
4716{
4717 struct mwl8k_priv *priv = hw->priv;
4718
4719 if (!priv->ap_fw)
4720 mwl8k_bss_info_changed_sta(hw, vif, info, changed);
4721 else
4722 mwl8k_bss_info_changed_ap(hw, vif, info, changed);
4723}
4724
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02004725static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw,
Jiri Pirko22bedad32010-04-01 21:22:57 +00004726 struct netdev_hw_addr_list *mc_list)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02004727{
4728 struct mwl8k_cmd_pkt *cmd;
4729
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004730 /*
4731 * Synthesize and return a command packet that programs the
4732 * hardware multicast address filter. At this point we don't
4733 * know whether FIF_ALLMULTI is being requested, but if it is,
4734 * we'll end up throwing this packet away and creating a new
4735 * one in mwl8k_configure_filter().
4736 */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004737 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_list);
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02004738
4739 return (unsigned long)cmd;
4740}
4741
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004742static int
4743mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw,
4744 unsigned int changed_flags,
4745 unsigned int *total_flags)
4746{
4747 struct mwl8k_priv *priv = hw->priv;
4748
4749 /*
4750 * Hardware sniffer mode is mutually exclusive with STA
4751 * operation, so refuse to enable sniffer mode if a STA
4752 * interface is active.
4753 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004754 if (!list_empty(&priv->vif_list)) {
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004755 if (net_ratelimit())
Joe Perchesc96c31e2010-07-26 14:39:58 -07004756 wiphy_info(hw->wiphy,
4757 "not enabling sniffer mode because STA interface is active\n");
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004758 return 0;
4759 }
4760
4761 if (!priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004762 if (mwl8k_cmd_enable_sniffer(hw, 1))
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004763 return 0;
4764 priv->sniffer_enabled = true;
4765 }
4766
4767 *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI |
4768 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL |
4769 FIF_OTHER_BSS;
4770
4771 return 1;
4772}
4773
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004774static struct mwl8k_vif *mwl8k_first_vif(struct mwl8k_priv *priv)
4775{
4776 if (!list_empty(&priv->vif_list))
4777 return list_entry(priv->vif_list.next, struct mwl8k_vif, list);
4778
4779 return NULL;
4780}
4781
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004782static void mwl8k_configure_filter(struct ieee80211_hw *hw,
4783 unsigned int changed_flags,
4784 unsigned int *total_flags,
4785 u64 multicast)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004786{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004787 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004788 struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast;
4789
4790 /*
Lennert Buytenhekc0adae22009-10-22 20:21:36 +02004791 * AP firmware doesn't allow fine-grained control over
4792 * the receive filter.
4793 */
4794 if (priv->ap_fw) {
4795 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
4796 kfree(cmd);
4797 return;
4798 }
4799
4800 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004801 * Enable hardware sniffer mode if FIF_CONTROL or
4802 * FIF_OTHER_BSS is requested.
4803 */
4804 if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) &&
4805 mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) {
4806 kfree(cmd);
4807 return;
4808 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004809
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004810 /* Clear unsupported feature flags */
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004811 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004812
Lennert Buytenhek90852f72010-01-02 10:31:42 +01004813 if (mwl8k_fw_lock(hw)) {
4814 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004815 return;
Lennert Buytenhek90852f72010-01-02 10:31:42 +01004816 }
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004817
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004818 if (priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004819 mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02004820 priv->sniffer_enabled = false;
4821 }
4822
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004823 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
Lennert Buytenhek77165d82009-10-22 20:19:53 +02004824 if (*total_flags & FIF_BCN_PRBRESP_PROMISC) {
4825 /*
4826 * Disable the BSS filter.
4827 */
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004828 mwl8k_cmd_set_pre_scan(hw);
Lennert Buytenhek77165d82009-10-22 20:19:53 +02004829 } else {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004830 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01004831 const u8 *bssid;
Lennert Buytenheka94cc972009-08-03 21:58:57 +02004832
Lennert Buytenhek77165d82009-10-22 20:19:53 +02004833 /*
4834 * Enable the BSS filter.
4835 *
4836 * If there is an active STA interface, use that
4837 * interface's BSSID, otherwise use a dummy one
4838 * (where the OUI part needs to be nonzero for
4839 * the BSSID to be accepted by POST_SCAN).
4840 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004841 mwl8k_vif = mwl8k_first_vif(priv);
4842 if (mwl8k_vif != NULL)
4843 bssid = mwl8k_vif->vif->bss_conf.bssid;
4844 else
4845 bssid = "\x01\x00\x00\x00\x00\x00";
Lennert Buytenheka94cc972009-08-03 21:58:57 +02004846
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004847 mwl8k_cmd_set_post_scan(hw, bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004848 }
4849 }
4850
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004851 /*
4852 * If FIF_ALLMULTI is being requested, throw away the command
4853 * packet that ->prepare_multicast() built and replace it with
4854 * a command packet that enables reception of all multicast
4855 * packets.
4856 */
4857 if (*total_flags & FIF_ALLMULTI) {
4858 kfree(cmd);
Jiri Pirko22bedad32010-04-01 21:22:57 +00004859 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, NULL);
Lennert Buytenhek447ced02009-10-22 20:19:50 +02004860 }
4861
4862 if (cmd != NULL) {
4863 mwl8k_post_cmd(hw, cmd);
4864 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004865 }
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02004866
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02004867 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004868}
4869
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004870static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
4871{
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01004872 return mwl8k_cmd_set_rts_threshold(hw, value);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004873}
4874
Johannes Berg4a6967b2010-02-19 19:18:37 +01004875static int mwl8k_sta_remove(struct ieee80211_hw *hw,
4876 struct ieee80211_vif *vif,
4877 struct ieee80211_sta *sta)
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004878{
4879 struct mwl8k_priv *priv = hw->priv;
4880
Johannes Berg4a6967b2010-02-19 19:18:37 +01004881 if (priv->ap_fw)
4882 return mwl8k_cmd_set_new_stn_del(hw, vif, sta->addr);
4883 else
4884 return mwl8k_cmd_update_stadb_del(hw, vif, sta->addr);
4885}
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004886
Johannes Berg4a6967b2010-02-19 19:18:37 +01004887static int mwl8k_sta_add(struct ieee80211_hw *hw,
4888 struct ieee80211_vif *vif,
4889 struct ieee80211_sta *sta)
4890{
4891 struct mwl8k_priv *priv = hw->priv;
4892 int ret;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004893 int i;
4894 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
4895 struct ieee80211_key_conf *key;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004896
Johannes Berg4a6967b2010-02-19 19:18:37 +01004897 if (!priv->ap_fw) {
4898 ret = mwl8k_cmd_update_stadb_add(hw, vif, sta);
4899 if (ret >= 0) {
4900 MWL8K_STA(sta)->peer_id = ret;
Nishant Sarmukadam170335432011-03-17 11:58:48 -07004901 if (sta->ht_cap.ht_supported)
4902 MWL8K_STA(sta)->is_ampdu_allowed = true;
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004903 ret = 0;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004904 }
Johannes Berg4a6967b2010-02-19 19:18:37 +01004905
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004906 } else {
4907 ret = mwl8k_cmd_set_new_stn_add(hw, vif, sta);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004908 }
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01004909
Nishant Sarmukadamd9a07d42010-12-30 11:23:33 -08004910 for (i = 0; i < NUM_WEP_KEYS; i++) {
4911 key = IEEE80211_KEY_CONF(mwl8k_vif->wep_key_conf[i].key);
4912 if (mwl8k_vif->wep_key_conf[i].enabled)
4913 mwl8k_set_key(hw, SET_KEY, vif, sta, key);
4914 }
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08004915 return ret;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01004916}
4917
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004918static int mwl8k_conf_tx(struct ieee80211_hw *hw, u16 queue,
4919 const struct ieee80211_tx_queue_params *params)
4920{
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02004921 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004922 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004923
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02004924 rc = mwl8k_fw_lock(hw);
4925 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004926 BUG_ON(queue > MWL8K_TX_WMM_QUEUES - 1);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08004927 memcpy(&priv->wmm_params[queue], params, sizeof(*params));
4928
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02004929 if (!priv->wmm_enabled)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004930 rc = mwl8k_cmd_set_wmm_mode(hw, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004931
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08004932 if (!rc) {
Brian Cavagnoloe6007072011-03-17 11:58:44 -07004933 int q = MWL8K_TX_WMM_QUEUES - 1 - queue;
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08004934 rc = mwl8k_cmd_set_edca_params(hw, q,
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004935 params->cw_min,
4936 params->cw_max,
4937 params->aifs,
4938 params->txop);
Nishant Sarmukadam85c92052011-02-17 14:45:18 -08004939 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02004940
4941 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004942 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02004943
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004944 return rc;
4945}
4946
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004947static int mwl8k_get_stats(struct ieee80211_hw *hw,
4948 struct ieee80211_low_level_stats *stats)
4949{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004950 return mwl8k_cmd_get_stat(hw, stats);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004951}
4952
John W. Linville0d462bb2010-07-28 14:04:24 -04004953static int mwl8k_get_survey(struct ieee80211_hw *hw, int idx,
4954 struct survey_info *survey)
4955{
4956 struct mwl8k_priv *priv = hw->priv;
4957 struct ieee80211_conf *conf = &hw->conf;
4958
4959 if (idx != 0)
4960 return -ENOENT;
4961
4962 survey->channel = conf->channel;
4963 survey->filled = SURVEY_INFO_NOISE_DBM;
4964 survey->noise = priv->noise;
4965
4966 return 0;
4967}
4968
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07004969#define MAX_AMPDU_ATTEMPTS 5
4970
Lennert Buytenheka2292d82010-01-04 21:58:12 +01004971static int
4972mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4973 enum ieee80211_ampdu_mlme_action action,
Johannes Berg0b01f032011-01-18 13:51:05 +01004974 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
4975 u8 buf_size)
Lennert Buytenheka2292d82010-01-04 21:58:12 +01004976{
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07004977
4978 int i, rc = 0;
4979 struct mwl8k_priv *priv = hw->priv;
4980 struct mwl8k_ampdu_stream *stream;
4981 u8 *addr = sta->addr;
4982
4983 if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
4984 return -ENOTSUPP;
4985
4986 spin_lock(&priv->stream_lock);
4987 stream = mwl8k_lookup_stream(hw, addr, tid);
4988
Lennert Buytenheka2292d82010-01-04 21:58:12 +01004989 switch (action) {
4990 case IEEE80211_AMPDU_RX_START:
4991 case IEEE80211_AMPDU_RX_STOP:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07004992 break;
4993 case IEEE80211_AMPDU_TX_START:
4994 /* By the time we get here the hw queues may contain outgoing
4995 * packets for this RA/TID that are not part of this BA
4996 * session. The hw will assign sequence numbers to these
4997 * packets as they go out. So if we query the hw for its next
4998 * sequence number and use that for the SSN here, it may end up
4999 * being wrong, which will lead to sequence number mismatch at
5000 * the recipient. To avoid this, we reset the sequence number
5001 * to O for the first MPDU in this BA stream.
5002 */
5003 *ssn = 0;
5004 if (stream == NULL) {
5005 /* This means that somebody outside this driver called
5006 * ieee80211_start_tx_ba_session. This is unexpected
5007 * because we do our own rate control. Just warn and
5008 * move on.
5009 */
5010 wiphy_warn(hw->wiphy, "Unexpected call to %s. "
5011 "Proceeding anyway.\n", __func__);
5012 stream = mwl8k_add_stream(hw, sta, tid);
5013 }
5014 if (stream == NULL) {
5015 wiphy_debug(hw->wiphy, "no free AMPDU streams\n");
5016 rc = -EBUSY;
5017 break;
5018 }
5019 stream->state = AMPDU_STREAM_IN_PROGRESS;
5020
5021 /* Release the lock before we do the time consuming stuff */
5022 spin_unlock(&priv->stream_lock);
5023 for (i = 0; i < MAX_AMPDU_ATTEMPTS; i++) {
5024 rc = mwl8k_check_ba(hw, stream);
5025
5026 if (!rc)
5027 break;
5028 /*
5029 * HW queues take time to be flushed, give them
5030 * sufficient time
5031 */
5032
5033 msleep(1000);
5034 }
5035 spin_lock(&priv->stream_lock);
5036 if (rc) {
5037 wiphy_err(hw->wiphy, "Stream for tid %d busy after %d"
5038 " attempts\n", tid, MAX_AMPDU_ATTEMPTS);
5039 mwl8k_remove_stream(hw, stream);
5040 rc = -EBUSY;
5041 break;
5042 }
5043 ieee80211_start_tx_ba_cb_irqsafe(vif, addr, tid);
5044 break;
5045 case IEEE80211_AMPDU_TX_STOP:
5046 if (stream == NULL)
5047 break;
5048 if (stream->state == AMPDU_STREAM_ACTIVE) {
5049 spin_unlock(&priv->stream_lock);
5050 mwl8k_destroy_ba(hw, stream);
5051 spin_lock(&priv->stream_lock);
5052 }
5053 mwl8k_remove_stream(hw, stream);
5054 ieee80211_stop_tx_ba_cb_irqsafe(vif, addr, tid);
5055 break;
5056 case IEEE80211_AMPDU_TX_OPERATIONAL:
5057 BUG_ON(stream == NULL);
5058 BUG_ON(stream->state != AMPDU_STREAM_IN_PROGRESS);
5059 spin_unlock(&priv->stream_lock);
5060 rc = mwl8k_create_ba(hw, stream, buf_size);
5061 spin_lock(&priv->stream_lock);
5062 if (!rc)
5063 stream->state = AMPDU_STREAM_ACTIVE;
5064 else {
5065 spin_unlock(&priv->stream_lock);
5066 mwl8k_destroy_ba(hw, stream);
5067 spin_lock(&priv->stream_lock);
5068 wiphy_debug(hw->wiphy,
5069 "Failed adding stream for sta %pM tid %d\n",
5070 addr, tid);
5071 mwl8k_remove_stream(hw, stream);
5072 }
5073 break;
5074
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005075 default:
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005076 rc = -ENOTSUPP;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005077 }
Nishant Sarmukadam65f3ddc2011-03-17 11:58:46 -07005078
5079 spin_unlock(&priv->stream_lock);
5080 return rc;
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005081}
5082
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005083static const struct ieee80211_ops mwl8k_ops = {
5084 .tx = mwl8k_tx,
5085 .start = mwl8k_start,
5086 .stop = mwl8k_stop,
5087 .add_interface = mwl8k_add_interface,
5088 .remove_interface = mwl8k_remove_interface,
5089 .config = mwl8k_config,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005090 .bss_info_changed = mwl8k_bss_info_changed,
Johannes Berg3ac64be2009-08-17 16:16:53 +02005091 .prepare_multicast = mwl8k_prepare_multicast,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005092 .configure_filter = mwl8k_configure_filter,
Nishant Sarmukadamfcdc4032010-12-30 11:23:34 -08005093 .set_key = mwl8k_set_key,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005094 .set_rts_threshold = mwl8k_set_rts_threshold,
Johannes Berg4a6967b2010-02-19 19:18:37 +01005095 .sta_add = mwl8k_sta_add,
5096 .sta_remove = mwl8k_sta_remove,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005097 .conf_tx = mwl8k_conf_tx,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005098 .get_stats = mwl8k_get_stats,
John W. Linville0d462bb2010-07-28 14:04:24 -04005099 .get_survey = mwl8k_get_survey,
Lennert Buytenheka2292d82010-01-04 21:58:12 +01005100 .ampdu_action = mwl8k_ampdu_action,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005101};
5102
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005103static void mwl8k_finalize_join_worker(struct work_struct *work)
5104{
5105 struct mwl8k_priv *priv =
5106 container_of(work, struct mwl8k_priv, finalize_join_worker);
5107 struct sk_buff *skb = priv->beacon_skb;
Johannes Berg56007a02010-01-26 14:19:52 +01005108 struct ieee80211_mgmt *mgmt = (void *)skb->data;
5109 int len = skb->len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
5110 const u8 *tim = cfg80211_find_ie(WLAN_EID_TIM,
5111 mgmt->u.beacon.variable, len);
5112 int dtim_period = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005113
Johannes Berg56007a02010-01-26 14:19:52 +01005114 if (tim && tim[1] >= 2)
5115 dtim_period = tim[3];
5116
5117 mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len, dtim_period);
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01005118
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005119 dev_kfree_skb(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005120 priv->beacon_skb = NULL;
5121}
5122
John W. Linvillebcb628d2009-11-06 16:40:16 -05005123enum {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005124 MWL8363 = 0,
5125 MWL8687,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005126 MWL8366,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02005127};
5128
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07005129#define MWL8K_8366_AP_FW_API 2
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005130#define _MWL8K_8366_AP_FW(api) "mwl8k/fmimage_8366_ap-" #api ".fw"
5131#define MWL8K_8366_AP_FW(api) _MWL8K_8366_AP_FW(api)
5132
John W. Linvillebcb628d2009-11-06 16:40:16 -05005133static struct mwl8k_device_info mwl8k_info_tbl[] __devinitdata = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005134 [MWL8363] = {
5135 .part_name = "88w8363",
5136 .helper_image = "mwl8k/helper_8363.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005137 .fw_image_sta = "mwl8k/fmimage_8363.fw",
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005138 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005139 [MWL8687] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005140 .part_name = "88w8687",
5141 .helper_image = "mwl8k/helper_8687.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005142 .fw_image_sta = "mwl8k/fmimage_8687.fw",
John W. Linvillebcb628d2009-11-06 16:40:16 -05005143 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01005144 [MWL8366] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05005145 .part_name = "88w8366",
5146 .helper_image = "mwl8k/helper_8366.fw",
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005147 .fw_image_sta = "mwl8k/fmimage_8366.fw",
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005148 .fw_image_ap = MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API),
5149 .fw_api_ap = MWL8K_8366_AP_FW_API,
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01005150 .ap_rxd_ops = &rxd_8366_ap_ops,
John W. Linvillebcb628d2009-11-06 16:40:16 -05005151 },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005152};
5153
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005154MODULE_FIRMWARE("mwl8k/helper_8363.fw");
5155MODULE_FIRMWARE("mwl8k/fmimage_8363.fw");
5156MODULE_FIRMWARE("mwl8k/helper_8687.fw");
5157MODULE_FIRMWARE("mwl8k/fmimage_8687.fw");
5158MODULE_FIRMWARE("mwl8k/helper_8366.fw");
5159MODULE_FIRMWARE("mwl8k/fmimage_8366.fw");
Brian Cavagnolo952a0e92010-11-12 17:23:51 -08005160MODULE_FIRMWARE(MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API));
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01005161
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005162static DEFINE_PCI_DEVICE_TABLE(mwl8k_pci_id_table) = {
Benjamin Larssone5868ba2010-03-19 01:46:10 +01005163 { PCI_VDEVICE(MARVELL, 0x2a0a), .driver_data = MWL8363, },
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01005164 { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, },
5165 { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005166 { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, },
5167 { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, },
5168 { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, },
Lennert Buytenhekca665272010-01-12 13:47:53 +01005169 { PCI_VDEVICE(MARVELL, 0x2a43), .driver_data = MWL8366, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05005170 { },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005171};
5172MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table);
5173
Brian Cavagnolo99020472010-11-12 17:23:52 -08005174static int mwl8k_request_alt_fw(struct mwl8k_priv *priv)
5175{
5176 int rc;
5177 printk(KERN_ERR "%s: Error requesting preferred fw %s.\n"
5178 "Trying alternative firmware %s\n", pci_name(priv->pdev),
5179 priv->fw_pref, priv->fw_alt);
5180 rc = mwl8k_request_fw(priv, priv->fw_alt, &priv->fw_ucode, true);
5181 if (rc) {
5182 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5183 pci_name(priv->pdev), priv->fw_alt);
5184 return rc;
5185 }
5186 return 0;
5187}
5188
5189static int mwl8k_firmware_load_success(struct mwl8k_priv *priv);
5190static void mwl8k_fw_state_machine(const struct firmware *fw, void *context)
5191{
5192 struct mwl8k_priv *priv = context;
5193 struct mwl8k_device_info *di = priv->device_info;
5194 int rc;
5195
5196 switch (priv->fw_state) {
5197 case FW_STATE_INIT:
5198 if (!fw) {
5199 printk(KERN_ERR "%s: Error requesting helper fw %s\n",
5200 pci_name(priv->pdev), di->helper_image);
5201 goto fail;
5202 }
5203 priv->fw_helper = fw;
5204 rc = mwl8k_request_fw(priv, priv->fw_pref, &priv->fw_ucode,
5205 true);
5206 if (rc && priv->fw_alt) {
5207 rc = mwl8k_request_alt_fw(priv);
5208 if (rc)
5209 goto fail;
5210 priv->fw_state = FW_STATE_LOADING_ALT;
5211 } else if (rc)
5212 goto fail;
5213 else
5214 priv->fw_state = FW_STATE_LOADING_PREF;
5215 break;
5216
5217 case FW_STATE_LOADING_PREF:
5218 if (!fw) {
5219 if (priv->fw_alt) {
5220 rc = mwl8k_request_alt_fw(priv);
5221 if (rc)
5222 goto fail;
5223 priv->fw_state = FW_STATE_LOADING_ALT;
5224 } else
5225 goto fail;
5226 } else {
5227 priv->fw_ucode = fw;
5228 rc = mwl8k_firmware_load_success(priv);
5229 if (rc)
5230 goto fail;
5231 else
5232 complete(&priv->firmware_loading_complete);
5233 }
5234 break;
5235
5236 case FW_STATE_LOADING_ALT:
5237 if (!fw) {
5238 printk(KERN_ERR "%s: Error requesting alt fw %s\n",
5239 pci_name(priv->pdev), di->helper_image);
5240 goto fail;
5241 }
5242 priv->fw_ucode = fw;
5243 rc = mwl8k_firmware_load_success(priv);
5244 if (rc)
5245 goto fail;
5246 else
5247 complete(&priv->firmware_loading_complete);
5248 break;
5249
5250 default:
5251 printk(KERN_ERR "%s: Unexpected firmware loading state: %d\n",
5252 MWL8K_NAME, priv->fw_state);
5253 BUG_ON(1);
5254 }
5255
5256 return;
5257
5258fail:
5259 priv->fw_state = FW_STATE_ERROR;
5260 complete(&priv->firmware_loading_complete);
5261 device_release_driver(&priv->pdev->dev);
5262 mwl8k_release_firmware(priv);
5263}
5264
5265static int mwl8k_init_firmware(struct ieee80211_hw *hw, char *fw_image,
5266 bool nowait)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005267{
5268 struct mwl8k_priv *priv = hw->priv;
5269 int rc;
5270
5271 /* Reset firmware and hardware */
5272 mwl8k_hw_reset(priv);
5273
5274 /* Ask userland hotplug daemon for the device firmware */
Brian Cavagnolo99020472010-11-12 17:23:52 -08005275 rc = mwl8k_request_firmware(priv, fw_image, nowait);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005276 if (rc) {
5277 wiphy_err(hw->wiphy, "Firmware files not found\n");
5278 return rc;
5279 }
5280
Brian Cavagnolo99020472010-11-12 17:23:52 -08005281 if (nowait)
5282 return rc;
5283
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005284 /* Load firmware into hardware */
5285 rc = mwl8k_load_firmware(hw);
5286 if (rc)
5287 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5288
5289 /* Reclaim memory once firmware is successfully loaded */
5290 mwl8k_release_firmware(priv);
5291
5292 return rc;
5293}
5294
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005295static int mwl8k_init_txqs(struct ieee80211_hw *hw)
5296{
5297 struct mwl8k_priv *priv = hw->priv;
5298 int rc = 0;
5299 int i;
5300
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005301 for (i = 0; i < mwl8k_tx_queues(priv); i++) {
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005302 rc = mwl8k_txq_init(hw, i);
5303 if (rc)
5304 break;
5305 if (priv->ap_fw)
5306 iowrite32(priv->txq[i].txd_dma,
5307 priv->sram + priv->txq_offset[i]);
5308 }
5309 return rc;
5310}
5311
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005312/* initialize hw after successfully loading a firmware image */
5313static int mwl8k_probe_hw(struct ieee80211_hw *hw)
5314{
5315 struct mwl8k_priv *priv = hw->priv;
5316 int rc = 0;
5317 int i;
5318
5319 if (priv->ap_fw) {
5320 priv->rxd_ops = priv->device_info->ap_rxd_ops;
5321 if (priv->rxd_ops == NULL) {
5322 wiphy_err(hw->wiphy,
5323 "Driver does not have AP firmware image support for this hardware\n");
5324 goto err_stop_firmware;
5325 }
5326 } else {
5327 priv->rxd_ops = &rxd_sta_ops;
5328 }
5329
5330 priv->sniffer_enabled = false;
5331 priv->wmm_enabled = false;
5332 priv->pending_tx_pkts = 0;
5333
5334 rc = mwl8k_rxq_init(hw, 0);
5335 if (rc)
5336 goto err_stop_firmware;
5337 rxq_refill(hw, 0, INT_MAX);
5338
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005339 /* For the sta firmware, we need to know the dma addresses of tx queues
5340 * before sending MWL8K_CMD_GET_HW_SPEC. So we must initialize them
5341 * prior to issuing this command. But for the AP case, we learn the
5342 * total number of queues from the result CMD_GET_HW_SPEC, so for this
5343 * case we must initialize the tx queues after.
5344 */
Brian Cavagnolo8a7a5782011-03-17 11:58:42 -07005345 priv->num_ampdu_queues = 0;
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005346 if (!priv->ap_fw) {
5347 rc = mwl8k_init_txqs(hw);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005348 if (rc)
5349 goto err_free_queues;
5350 }
5351
5352 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
5353 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005354 iowrite32(MWL8K_A2H_INT_TX_DONE|MWL8K_A2H_INT_RX_READY|
5355 MWL8K_A2H_INT_BA_WATCHDOG,
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005356 priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
Nishant Sarmukadam12488e02011-04-08 14:38:27 +05305357 iowrite32(MWL8K_A2H_INT_OPC_DONE,
5358 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005359
5360 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
5361 IRQF_SHARED, MWL8K_NAME, hw);
5362 if (rc) {
5363 wiphy_err(hw->wiphy, "failed to register IRQ handler\n");
5364 goto err_free_queues;
5365 }
5366
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005367 memset(priv->ampdu, 0, sizeof(priv->ampdu));
5368
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005369 /*
5370 * Temporarily enable interrupts. Initial firmware host
5371 * commands use interrupts and avoid polling. Disable
5372 * interrupts when done.
5373 */
5374 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5375
5376 /* Get config data, mac addrs etc */
5377 if (priv->ap_fw) {
5378 rc = mwl8k_cmd_get_hw_spec_ap(hw);
5379 if (!rc)
Brian Cavagnolo73b46322011-03-17 11:58:41 -07005380 rc = mwl8k_init_txqs(hw);
5381 if (!rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005382 rc = mwl8k_cmd_set_hw_spec(hw);
5383 } else {
5384 rc = mwl8k_cmd_get_hw_spec_sta(hw);
5385 }
5386 if (rc) {
5387 wiphy_err(hw->wiphy, "Cannot initialise firmware\n");
5388 goto err_free_irq;
5389 }
5390
5391 /* Turn radio off */
5392 rc = mwl8k_cmd_radio_disable(hw);
5393 if (rc) {
5394 wiphy_err(hw->wiphy, "Cannot disable\n");
5395 goto err_free_irq;
5396 }
5397
5398 /* Clear MAC address */
5399 rc = mwl8k_cmd_set_mac_addr(hw, NULL, "\x00\x00\x00\x00\x00\x00");
5400 if (rc) {
5401 wiphy_err(hw->wiphy, "Cannot clear MAC address\n");
5402 goto err_free_irq;
5403 }
5404
5405 /* Disable interrupts */
5406 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5407 free_irq(priv->pdev->irq, hw);
5408
5409 wiphy_info(hw->wiphy, "%s v%d, %pm, %s firmware %u.%u.%u.%u\n",
5410 priv->device_info->part_name,
5411 priv->hw_rev, hw->wiphy->perm_addr,
5412 priv->ap_fw ? "AP" : "STA",
5413 (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff,
5414 (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff);
5415
5416 return 0;
5417
5418err_free_irq:
5419 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
5420 free_irq(priv->pdev->irq, hw);
5421
5422err_free_queues:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005423 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005424 mwl8k_txq_deinit(hw, i);
5425 mwl8k_rxq_deinit(hw, 0);
5426
5427err_stop_firmware:
5428 mwl8k_hw_reset(priv);
5429
5430 return rc;
5431}
5432
5433/*
5434 * invoke mwl8k_reload_firmware to change the firmware image after the device
5435 * has already been registered
5436 */
5437static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image)
5438{
5439 int i, rc = 0;
5440 struct mwl8k_priv *priv = hw->priv;
5441
5442 mwl8k_stop(hw);
5443 mwl8k_rxq_deinit(hw, 0);
5444
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005445 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005446 mwl8k_txq_deinit(hw, i);
5447
Brian Cavagnolo99020472010-11-12 17:23:52 -08005448 rc = mwl8k_init_firmware(hw, fw_image, false);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005449 if (rc)
5450 goto fail;
5451
5452 rc = mwl8k_probe_hw(hw);
5453 if (rc)
5454 goto fail;
5455
5456 rc = mwl8k_start(hw);
5457 if (rc)
5458 goto fail;
5459
5460 rc = mwl8k_config(hw, ~0);
5461 if (rc)
5462 goto fail;
5463
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005464 for (i = 0; i < MWL8K_TX_WMM_QUEUES; i++) {
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005465 rc = mwl8k_conf_tx(hw, i, &priv->wmm_params[i]);
5466 if (rc)
5467 goto fail;
5468 }
5469
5470 return rc;
5471
5472fail:
5473 printk(KERN_WARNING "mwl8k: Failed to reload firmware image.\n");
5474 return rc;
5475}
5476
5477static int mwl8k_firmware_load_success(struct mwl8k_priv *priv)
5478{
5479 struct ieee80211_hw *hw = priv->hw;
5480 int i, rc;
5481
Brian Cavagnolo99020472010-11-12 17:23:52 -08005482 rc = mwl8k_load_firmware(hw);
5483 mwl8k_release_firmware(priv);
5484 if (rc) {
5485 wiphy_err(hw->wiphy, "Cannot start firmware\n");
5486 return rc;
5487 }
5488
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005489 /*
5490 * Extra headroom is the size of the required DMA header
5491 * minus the size of the smallest 802.11 frame (CTS frame).
5492 */
5493 hw->extra_tx_headroom =
5494 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
5495
Yogesh Ashok Powarff776ce2011-04-28 17:34:48 +05305496 hw->extra_tx_headroom -= priv->ap_fw ? REDUCED_TX_HEADROOM : 0;
5497
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005498 hw->channel_change_time = 10;
5499
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005500 hw->queues = MWL8K_TX_WMM_QUEUES;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005501
5502 /* Set rssi values to dBm */
Nishant Sarmukadam0bf22c32011-02-17 14:45:17 -08005503 hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_HAS_RATE_CONTROL;
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005504 hw->vif_data_size = sizeof(struct mwl8k_vif);
5505 hw->sta_data_size = sizeof(struct mwl8k_sta);
5506
5507 priv->macids_used = 0;
5508 INIT_LIST_HEAD(&priv->vif_list);
5509
5510 /* Set default radio state and preamble */
5511 priv->radio_on = 0;
5512 priv->radio_short_preamble = 0;
5513
5514 /* Finalize join worker */
5515 INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
Nishant Sarmukadam3aefc372011-03-17 11:58:47 -07005516 /* Handle watchdog ba events */
5517 INIT_WORK(&priv->watchdog_ba_handle, mwl8k_watchdog_ba_events);
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005518
5519 /* TX reclaim and RX tasklets. */
5520 tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw);
5521 tasklet_disable(&priv->poll_tx_task);
5522 tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw);
5523 tasklet_disable(&priv->poll_rx_task);
5524
5525 /* Power management cookie */
5526 priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
5527 if (priv->cookie == NULL)
5528 return -ENOMEM;
5529
5530 mutex_init(&priv->fw_mutex);
5531 priv->fw_mutex_owner = NULL;
5532 priv->fw_mutex_depth = 0;
5533 priv->hostcmd_wait = NULL;
5534
5535 spin_lock_init(&priv->tx_lock);
5536
Brian Cavagnoloac109fd2011-03-17 11:58:45 -07005537 spin_lock_init(&priv->stream_lock);
5538
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005539 priv->tx_wait = NULL;
5540
5541 rc = mwl8k_probe_hw(hw);
5542 if (rc)
5543 goto err_free_cookie;
5544
5545 hw->wiphy->interface_modes = 0;
5546 if (priv->ap_macids_supported || priv->device_info->fw_image_ap)
5547 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP);
5548 if (priv->sta_macids_supported || priv->device_info->fw_image_sta)
5549 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
5550
5551 rc = ieee80211_register_hw(hw);
5552 if (rc) {
5553 wiphy_err(hw->wiphy, "Cannot register device\n");
5554 goto err_unprobe_hw;
5555 }
5556
5557 return 0;
5558
5559err_unprobe_hw:
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005560 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005561 mwl8k_txq_deinit(hw, i);
5562 mwl8k_rxq_deinit(hw, 0);
5563
5564err_free_cookie:
5565 if (priv->cookie != NULL)
5566 pci_free_consistent(priv->pdev, 4,
5567 priv->cookie, priv->cookie_dma);
5568
5569 return rc;
5570}
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005571static int __devinit mwl8k_probe(struct pci_dev *pdev,
5572 const struct pci_device_id *id)
5573{
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005574 static int printed_version;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005575 struct ieee80211_hw *hw;
5576 struct mwl8k_priv *priv;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005577 struct mwl8k_device_info *di;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005578 int rc;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02005579
5580 if (!printed_version) {
5581 printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION);
5582 printed_version = 1;
5583 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005584
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005585
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005586 rc = pci_enable_device(pdev);
5587 if (rc) {
5588 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
5589 MWL8K_NAME);
5590 return rc;
5591 }
5592
5593 rc = pci_request_regions(pdev, MWL8K_NAME);
5594 if (rc) {
5595 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
5596 MWL8K_NAME);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01005597 goto err_disable_device;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005598 }
5599
5600 pci_set_master(pdev);
5601
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005602
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005603 hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
5604 if (hw == NULL) {
5605 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
5606 rc = -ENOMEM;
5607 goto err_free_reg;
5608 }
5609
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005610 SET_IEEE80211_DEV(hw, &pdev->dev);
5611 pci_set_drvdata(pdev, hw);
5612
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005613 priv = hw->priv;
5614 priv->hw = hw;
5615 priv->pdev = pdev;
John W. Linvillebcb628d2009-11-06 16:40:16 -05005616 priv->device_info = &mwl8k_info_tbl[id->driver_data];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005617
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005618
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005619 priv->sram = pci_iomap(pdev, 0, 0x10000);
5620 if (priv->sram == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07005621 wiphy_err(hw->wiphy, "Cannot map device SRAM\n");
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005622 goto err_iounmap;
5623 }
5624
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005625 /*
5626 * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
5627 * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
5628 */
5629 priv->regs = pci_iomap(pdev, 1, 0x10000);
5630 if (priv->regs == NULL) {
5631 priv->regs = pci_iomap(pdev, 2, 0x10000);
5632 if (priv->regs == NULL) {
Joe Perches5db55842010-08-11 19:11:19 -07005633 wiphy_err(hw->wiphy, "Cannot map device registers\n");
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005634 goto err_iounmap;
5635 }
5636 }
5637
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005638 /*
Brian Cavagnolo99020472010-11-12 17:23:52 -08005639 * Choose the initial fw image depending on user input. If a second
5640 * image is available, make it the alternative image that will be
5641 * loaded if the first one fails.
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005642 */
Brian Cavagnolo99020472010-11-12 17:23:52 -08005643 init_completion(&priv->firmware_loading_complete);
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005644 di = priv->device_info;
Brian Cavagnolo99020472010-11-12 17:23:52 -08005645 if (ap_mode_default && di->fw_image_ap) {
5646 priv->fw_pref = di->fw_image_ap;
5647 priv->fw_alt = di->fw_image_sta;
5648 } else if (!ap_mode_default && di->fw_image_sta) {
5649 priv->fw_pref = di->fw_image_sta;
5650 priv->fw_alt = di->fw_image_ap;
5651 } else if (ap_mode_default && !di->fw_image_ap && di->fw_image_sta) {
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005652 printk(KERN_WARNING "AP fw is unavailable. Using STA fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08005653 priv->fw_pref = di->fw_image_sta;
Brian Cavagnolo0863ade2010-11-12 17:23:50 -08005654 } else if (!ap_mode_default && !di->fw_image_sta && di->fw_image_ap) {
5655 printk(KERN_WARNING "STA fw is unavailable. Using AP fw.");
Brian Cavagnolo99020472010-11-12 17:23:52 -08005656 priv->fw_pref = di->fw_image_ap;
5657 }
5658 rc = mwl8k_init_firmware(hw, priv->fw_pref, true);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005659 if (rc)
Brian Cavagnolo3cc77722010-11-12 17:23:49 -08005660 goto err_stop_firmware;
Brian Cavagnolo99020472010-11-12 17:23:52 -08005661 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005662
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005663err_stop_firmware:
5664 mwl8k_hw_reset(priv);
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01005665
5666err_iounmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005667 if (priv->regs != NULL)
5668 pci_iounmap(pdev, priv->regs);
5669
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005670 if (priv->sram != NULL)
5671 pci_iounmap(pdev, priv->sram);
5672
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005673 pci_set_drvdata(pdev, NULL);
5674 ieee80211_free_hw(hw);
5675
5676err_free_reg:
5677 pci_release_regions(pdev);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01005678
5679err_disable_device:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005680 pci_disable_device(pdev);
5681
5682 return rc;
5683}
5684
Joerg Albert230f7af2009-04-18 02:10:45 +02005685static void __devexit mwl8k_shutdown(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005686{
5687 printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__);
5688}
5689
Joerg Albert230f7af2009-04-18 02:10:45 +02005690static void __devexit mwl8k_remove(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005691{
5692 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
5693 struct mwl8k_priv *priv;
5694 int i;
5695
5696 if (hw == NULL)
5697 return;
5698 priv = hw->priv;
5699
Brian Cavagnolo99020472010-11-12 17:23:52 -08005700 wait_for_completion(&priv->firmware_loading_complete);
5701
5702 if (priv->fw_state == FW_STATE_ERROR) {
5703 mwl8k_hw_reset(priv);
5704 goto unmap;
5705 }
5706
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005707 ieee80211_stop_queues(hw);
5708
Lennert Buytenhek60aa5692009-08-03 21:59:09 +02005709 ieee80211_unregister_hw(hw);
5710
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01005711 /* Remove TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01005712 tasklet_kill(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01005713 tasklet_kill(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005714
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005715 /* Stop hardware */
5716 mwl8k_hw_reset(priv);
5717
5718 /* Return all skbs to mac80211 */
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005719 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01005720 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005721
Brian Cavagnoloe6007072011-03-17 11:58:44 -07005722 for (i = 0; i < mwl8k_tx_queues(priv); i++)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005723 mwl8k_txq_deinit(hw, i);
5724
5725 mwl8k_rxq_deinit(hw, 0);
5726
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02005727 pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005728
Brian Cavagnolo99020472010-11-12 17:23:52 -08005729unmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005730 pci_iounmap(pdev, priv->regs);
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02005731 pci_iounmap(pdev, priv->sram);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005732 pci_set_drvdata(pdev, NULL);
5733 ieee80211_free_hw(hw);
5734 pci_release_regions(pdev);
5735 pci_disable_device(pdev);
5736}
5737
5738static struct pci_driver mwl8k_driver = {
5739 .name = MWL8K_NAME,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02005740 .id_table = mwl8k_pci_id_table,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01005741 .probe = mwl8k_probe,
5742 .remove = __devexit_p(mwl8k_remove),
5743 .shutdown = __devexit_p(mwl8k_shutdown),
5744};
5745
5746static int __init mwl8k_init(void)
5747{
5748 return pci_register_driver(&mwl8k_driver);
5749}
5750
5751static void __exit mwl8k_exit(void)
5752{
5753 pci_unregister_driver(&mwl8k_driver);
5754}
5755
5756module_init(mwl8k_init);
5757module_exit(mwl8k_exit);
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02005758
5759MODULE_DESCRIPTION(MWL8K_DESC);
5760MODULE_VERSION(MWL8K_VERSION);
5761MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
5762MODULE_LICENSE("GPL");