blob: c0317e298c1146f370ce5ed0b470e8580b8908a7 [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 Buytenheka145d572009-08-18 04:34:26 +02005 * Copyright (C) 2008-2009 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>
22#include <net/mac80211.h>
23#include <linux/moduleparam.h>
24#include <linux/firmware.h>
25#include <linux/workqueue.h>
26
27#define MWL8K_DESC "Marvell TOPDOG(R) 802.11 Wireless Network Driver"
28#define MWL8K_NAME KBUILD_MODNAME
Lennert Buytenheka145d572009-08-18 04:34:26 +020029#define MWL8K_VERSION "0.10"
Lennert Buytenheka66098d2009-03-10 10:13:33 +010030
Lennert Buytenheka66098d2009-03-10 10:13:33 +010031static DEFINE_PCI_DEVICE_TABLE(mwl8k_table) = {
32 { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = 8687, },
33 { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = 8687, },
34 { }
35};
36MODULE_DEVICE_TABLE(pci, mwl8k_table);
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)
66#define MWL8K_A2H_INT_CHNL_SWITCHED (1 << 11)
67#define MWL8K_A2H_INT_QUEUE_EMPTY (1 << 10)
68#define MWL8K_A2H_INT_RADAR_DETECT (1 << 7)
69#define MWL8K_A2H_INT_RADIO_ON (1 << 6)
70#define MWL8K_A2H_INT_RADIO_OFF (1 << 5)
71#define MWL8K_A2H_INT_MAC_EVENT (1 << 3)
72#define MWL8K_A2H_INT_OPC_DONE (1 << 2)
73#define MWL8K_A2H_INT_RX_READY (1 << 1)
74#define MWL8K_A2H_INT_TX_DONE (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010075
76#define MWL8K_A2H_EVENTS (MWL8K_A2H_INT_DUMMY | \
77 MWL8K_A2H_INT_CHNL_SWITCHED | \
78 MWL8K_A2H_INT_QUEUE_EMPTY | \
79 MWL8K_A2H_INT_RADAR_DETECT | \
80 MWL8K_A2H_INT_RADIO_ON | \
81 MWL8K_A2H_INT_RADIO_OFF | \
82 MWL8K_A2H_INT_MAC_EVENT | \
83 MWL8K_A2H_INT_OPC_DONE | \
84 MWL8K_A2H_INT_RX_READY | \
85 MWL8K_A2H_INT_TX_DONE)
86
Lennert Buytenheka66098d2009-03-10 10:13:33 +010087#define MWL8K_RX_QUEUES 1
88#define MWL8K_TX_QUEUES 4
89
90struct mwl8k_rx_queue {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +020091 int rxd_count;
Lennert Buytenheka66098d2009-03-10 10:13:33 +010092
93 /* hw receives here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +020094 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +010095
96 /* refill descs here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +020097 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +010098
Lennert Buytenhek45eb4002009-10-22 20:20:40 +020099 struct mwl8k_rx_desc *rxd;
100 dma_addr_t rxd_dma;
101 struct sk_buff **skb;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100102};
103
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100104struct mwl8k_tx_queue {
105 /* hw transmits here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200106 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100107
108 /* sw appends here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200109 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100110
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200111 struct ieee80211_tx_queue_stats stats;
112 struct mwl8k_tx_desc *txd;
113 dma_addr_t txd_dma;
114 struct sk_buff **skb;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100115};
116
117/* Pointers to the firmware data and meta information about it. */
118struct mwl8k_firmware {
119 /* Microcode */
120 struct firmware *ucode;
121
122 /* Boot helper code */
123 struct firmware *helper;
124};
125
126struct mwl8k_priv {
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +0200127 void __iomem *sram;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100128 void __iomem *regs;
129 struct ieee80211_hw *hw;
130
131 struct pci_dev *pdev;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100132
133 /* firmware files and meta data */
134 struct mwl8k_firmware fw;
135 u32 part_num;
136
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200137 /* firmware access */
138 struct mutex fw_mutex;
139 struct task_struct *fw_mutex_owner;
140 int fw_mutex_depth;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200141 struct completion *hostcmd_wait;
142
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100143 /* lock held over TX and TX reap */
144 spinlock_t tx_lock;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100145
Lennert Buytenhek88de754a2009-10-22 20:19:37 +0200146 /* TX quiesce completion, protected by fw_mutex and tx_lock */
147 struct completion *tx_wait;
148
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100149 struct ieee80211_vif *vif;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100150
151 struct ieee80211_channel *current_channel;
152
153 /* power management status cookie from firmware */
154 u32 *cookie;
155 dma_addr_t cookie_dma;
156
157 u16 num_mcaddrs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100158 u8 hw_rev;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +0200159 u32 fw_rev;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100160
161 /*
162 * Running count of TX packets in flight, to avoid
163 * iterating over the transmit rings each time.
164 */
165 int pending_tx_pkts;
166
167 struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES];
168 struct mwl8k_tx_queue txq[MWL8K_TX_QUEUES];
169
170 /* PHY parameters */
171 struct ieee80211_supported_band band;
172 struct ieee80211_channel channels[14];
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200173 struct ieee80211_rate rates[13];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100174
Lennert Buytenhekc46563b2009-07-16 12:14:58 +0200175 bool radio_on;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +0200176 bool radio_short_preamble;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +0200177 bool sniffer_enabled;
Lennert Buytenhek0439b1f2009-07-16 12:34:02 +0200178 bool wmm_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100179
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100180 /* XXX need to convert this to handle multiple interfaces */
181 bool capture_beacon;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200182 u8 capture_bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100183 struct sk_buff *beacon_skb;
184
185 /*
186 * This FJ worker has to be global as it is scheduled from the
187 * RX handler. At this point we don't know which interface it
188 * belongs to until the list of bssids waiting to complete join
189 * is checked.
190 */
191 struct work_struct finalize_join_worker;
192
193 /* Tasklet to reclaim TX descriptors and buffers after tx */
194 struct tasklet_struct tx_reclaim_task;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100195};
196
197/* Per interface specific private data */
198struct mwl8k_vif {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100199 /* backpointer to parent config block */
200 struct mwl8k_priv *priv;
201
202 /* BSS config of AP or IBSS from mac80211*/
203 struct ieee80211_bss_conf bss_info;
204
205 /* BSSID of AP or IBSS */
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200206 u8 bssid[ETH_ALEN];
207 u8 mac_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100208
209 /*
210 * Subset of supported legacy rates.
211 * Intersection of AP and STA supported rates.
212 */
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200213 struct ieee80211_rate legacy_rates[13];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100214
215 /* number of supported legacy rates */
216 u8 legacy_nrates;
217
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100218 /* Index into station database.Returned by update_sta_db call */
219 u8 peer_id;
220
221 /* Non AMPDU sequence number assigned by driver */
222 u16 seqno;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100223};
224
Lennert Buytenheka94cc972009-08-03 21:58:57 +0200225#define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv))
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100226
227static const struct ieee80211_channel mwl8k_channels[] = {
228 { .center_freq = 2412, .hw_value = 1, },
229 { .center_freq = 2417, .hw_value = 2, },
230 { .center_freq = 2422, .hw_value = 3, },
231 { .center_freq = 2427, .hw_value = 4, },
232 { .center_freq = 2432, .hw_value = 5, },
233 { .center_freq = 2437, .hw_value = 6, },
234 { .center_freq = 2442, .hw_value = 7, },
235 { .center_freq = 2447, .hw_value = 8, },
236 { .center_freq = 2452, .hw_value = 9, },
237 { .center_freq = 2457, .hw_value = 10, },
238 { .center_freq = 2462, .hw_value = 11, },
239};
240
241static const struct ieee80211_rate mwl8k_rates[] = {
242 { .bitrate = 10, .hw_value = 2, },
243 { .bitrate = 20, .hw_value = 4, },
244 { .bitrate = 55, .hw_value = 11, },
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200245 { .bitrate = 110, .hw_value = 22, },
246 { .bitrate = 220, .hw_value = 44, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100247 { .bitrate = 60, .hw_value = 12, },
248 { .bitrate = 90, .hw_value = 18, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100249 { .bitrate = 120, .hw_value = 24, },
250 { .bitrate = 180, .hw_value = 36, },
251 { .bitrate = 240, .hw_value = 48, },
252 { .bitrate = 360, .hw_value = 72, },
253 { .bitrate = 480, .hw_value = 96, },
254 { .bitrate = 540, .hw_value = 108, },
255};
256
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100257/* Set or get info from Firmware */
258#define MWL8K_CMD_SET 0x0001
259#define MWL8K_CMD_GET 0x0000
260
261/* Firmware command codes */
262#define MWL8K_CMD_CODE_DNLD 0x0001
263#define MWL8K_CMD_GET_HW_SPEC 0x0003
264#define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010
265#define MWL8K_CMD_GET_STAT 0x0014
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200266#define MWL8K_CMD_RADIO_CONTROL 0x001c
267#define MWL8K_CMD_RF_TX_POWER 0x001e
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100268#define MWL8K_CMD_SET_PRE_SCAN 0x0107
269#define MWL8K_CMD_SET_POST_SCAN 0x0108
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200270#define MWL8K_CMD_SET_RF_CHANNEL 0x010a
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100271#define MWL8K_CMD_SET_AID 0x010d
272#define MWL8K_CMD_SET_RATE 0x0110
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200273#define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100274#define MWL8K_CMD_RTS_THRESHOLD 0x0113
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200275#define MWL8K_CMD_SET_SLOT 0x0114
276#define MWL8K_CMD_SET_EDCA_PARAMS 0x0115
277#define MWL8K_CMD_SET_WMM_MODE 0x0123
278#define MWL8K_CMD_MIMO_CONFIG 0x0125
279#define MWL8K_CMD_USE_FIXED_RATE 0x0126
280#define MWL8K_CMD_ENABLE_SNIFFER 0x0150
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200281#define MWL8K_CMD_SET_MAC_ADDR 0x0202
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200282#define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203
283#define MWL8K_CMD_UPDATE_STADB 0x1123
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100284
285static const char *mwl8k_cmd_name(u16 cmd, char *buf, int bufsize)
286{
287#define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\
288 snprintf(buf, bufsize, "%s", #x);\
289 return buf;\
290 } while (0)
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +0200291 switch (cmd & ~0x8000) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100292 MWL8K_CMDNAME(CODE_DNLD);
293 MWL8K_CMDNAME(GET_HW_SPEC);
294 MWL8K_CMDNAME(MAC_MULTICAST_ADR);
295 MWL8K_CMDNAME(GET_STAT);
296 MWL8K_CMDNAME(RADIO_CONTROL);
297 MWL8K_CMDNAME(RF_TX_POWER);
298 MWL8K_CMDNAME(SET_PRE_SCAN);
299 MWL8K_CMDNAME(SET_POST_SCAN);
300 MWL8K_CMDNAME(SET_RF_CHANNEL);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100301 MWL8K_CMDNAME(SET_AID);
302 MWL8K_CMDNAME(SET_RATE);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200303 MWL8K_CMDNAME(SET_FINALIZE_JOIN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100304 MWL8K_CMDNAME(RTS_THRESHOLD);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200305 MWL8K_CMDNAME(SET_SLOT);
306 MWL8K_CMDNAME(SET_EDCA_PARAMS);
307 MWL8K_CMDNAME(SET_WMM_MODE);
308 MWL8K_CMDNAME(MIMO_CONFIG);
309 MWL8K_CMDNAME(USE_FIXED_RATE);
310 MWL8K_CMDNAME(ENABLE_SNIFFER);
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200311 MWL8K_CMDNAME(SET_MAC_ADDR);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200312 MWL8K_CMDNAME(SET_RATEADAPT_MODE);
313 MWL8K_CMDNAME(UPDATE_STADB);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100314 default:
315 snprintf(buf, bufsize, "0x%x", cmd);
316 }
317#undef MWL8K_CMDNAME
318
319 return buf;
320}
321
322/* Hardware and firmware reset */
323static void mwl8k_hw_reset(struct mwl8k_priv *priv)
324{
325 iowrite32(MWL8K_H2A_INT_RESET,
326 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
327 iowrite32(MWL8K_H2A_INT_RESET,
328 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
329 msleep(20);
330}
331
332/* Release fw image */
333static void mwl8k_release_fw(struct firmware **fw)
334{
335 if (*fw == NULL)
336 return;
337 release_firmware(*fw);
338 *fw = NULL;
339}
340
341static void mwl8k_release_firmware(struct mwl8k_priv *priv)
342{
343 mwl8k_release_fw(&priv->fw.ucode);
344 mwl8k_release_fw(&priv->fw.helper);
345}
346
347/* Request fw image */
348static int mwl8k_request_fw(struct mwl8k_priv *priv,
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200349 const char *fname, struct firmware **fw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100350{
351 /* release current image */
352 if (*fw != NULL)
353 mwl8k_release_fw(fw);
354
355 return request_firmware((const struct firmware **)fw,
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200356 fname, &priv->pdev->dev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100357}
358
359static int mwl8k_request_firmware(struct mwl8k_priv *priv, u32 part_num)
360{
361 u8 filename[64];
362 int rc;
363
364 priv->part_num = part_num;
365
366 snprintf(filename, sizeof(filename),
367 "mwl8k/helper_%u.fw", priv->part_num);
368
369 rc = mwl8k_request_fw(priv, filename, &priv->fw.helper);
370 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200371 printk(KERN_ERR "%s: Error requesting helper firmware "
372 "file %s\n", pci_name(priv->pdev), filename);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100373 return rc;
374 }
375
376 snprintf(filename, sizeof(filename),
377 "mwl8k/fmimage_%u.fw", priv->part_num);
378
379 rc = mwl8k_request_fw(priv, filename, &priv->fw.ucode);
380 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200381 printk(KERN_ERR "%s: Error requesting firmware file %s\n",
382 pci_name(priv->pdev), filename);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100383 mwl8k_release_fw(&priv->fw.helper);
384 return rc;
385 }
386
387 return 0;
388}
389
390struct mwl8k_cmd_pkt {
391 __le16 code;
392 __le16 length;
393 __le16 seq_num;
394 __le16 result;
395 char payload[0];
396} __attribute__((packed));
397
398/*
399 * Firmware loading.
400 */
401static int
402mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length)
403{
404 void __iomem *regs = priv->regs;
405 dma_addr_t dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100406 int loops;
407
408 dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE);
409 if (pci_dma_mapping_error(priv->pdev, dma_addr))
410 return -ENOMEM;
411
412 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
413 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
414 iowrite32(MWL8K_H2A_INT_DOORBELL,
415 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
416 iowrite32(MWL8K_H2A_INT_DUMMY,
417 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
418
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100419 loops = 1000;
420 do {
421 u32 int_code;
422
423 int_code = ioread32(regs + MWL8K_HIU_INT_CODE);
424 if (int_code == MWL8K_INT_CODE_CMD_FINISHED) {
425 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100426 break;
427 }
428
Lennert Buytenhek3d76e822009-10-22 20:20:16 +0200429 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100430 udelay(1);
431 } while (--loops);
432
433 pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE);
434
Lennert Buytenhekd4b705702009-07-16 12:44:45 +0200435 return loops ? 0 : -ETIMEDOUT;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100436}
437
438static int mwl8k_load_fw_image(struct mwl8k_priv *priv,
439 const u8 *data, size_t length)
440{
441 struct mwl8k_cmd_pkt *cmd;
442 int done;
443 int rc = 0;
444
445 cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL);
446 if (cmd == NULL)
447 return -ENOMEM;
448
449 cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD);
450 cmd->seq_num = 0;
451 cmd->result = 0;
452
453 done = 0;
454 while (length) {
455 int block_size = length > 256 ? 256 : length;
456
457 memcpy(cmd->payload, data + done, block_size);
458 cmd->length = cpu_to_le16(block_size);
459
460 rc = mwl8k_send_fw_load_cmd(priv, cmd,
461 sizeof(*cmd) + block_size);
462 if (rc)
463 break;
464
465 done += block_size;
466 length -= block_size;
467 }
468
469 if (!rc) {
470 cmd->length = 0;
471 rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd));
472 }
473
474 kfree(cmd);
475
476 return rc;
477}
478
479static int mwl8k_feed_fw_image(struct mwl8k_priv *priv,
480 const u8 *data, size_t length)
481{
482 unsigned char *buffer;
483 int may_continue, rc = 0;
484 u32 done, prev_block_size;
485
486 buffer = kmalloc(1024, GFP_KERNEL);
487 if (buffer == NULL)
488 return -ENOMEM;
489
490 done = 0;
491 prev_block_size = 0;
492 may_continue = 1000;
493 while (may_continue > 0) {
494 u32 block_size;
495
496 block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH);
497 if (block_size & 1) {
498 block_size &= ~1;
499 may_continue--;
500 } else {
501 done += prev_block_size;
502 length -= prev_block_size;
503 }
504
505 if (block_size > 1024 || block_size > length) {
506 rc = -EOVERFLOW;
507 break;
508 }
509
510 if (length == 0) {
511 rc = 0;
512 break;
513 }
514
515 if (block_size == 0) {
516 rc = -EPROTO;
517 may_continue--;
518 udelay(1);
519 continue;
520 }
521
522 prev_block_size = block_size;
523 memcpy(buffer, data + done, block_size);
524
525 rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size);
526 if (rc)
527 break;
528 }
529
530 if (!rc && length != 0)
531 rc = -EREMOTEIO;
532
533 kfree(buffer);
534
535 return rc;
536}
537
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200538static int mwl8k_load_firmware(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100539{
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200540 struct mwl8k_priv *priv = hw->priv;
541 struct firmware *fw = priv->fw.ucode;
542 int rc;
543 int loops;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100544
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200545 if (!memcmp(fw->data, "\x01\x00\x00\x00", 4)) {
546 struct firmware *helper = priv->fw.helper;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100547
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200548 if (helper == NULL) {
549 printk(KERN_ERR "%s: helper image needed but none "
550 "given\n", pci_name(priv->pdev));
551 return -EINVAL;
552 }
553
554 rc = mwl8k_load_fw_image(priv, helper->data, helper->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100555 if (rc) {
556 printk(KERN_ERR "%s: unable to load firmware "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200557 "helper image\n", pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100558 return rc;
559 }
560 msleep(1);
561
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200562 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100563 } else {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200564 rc = mwl8k_load_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100565 }
566
567 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200568 printk(KERN_ERR "%s: unable to load firmware image\n",
569 pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100570 return rc;
571 }
572
573 iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR);
574 msleep(1);
575
576 loops = 200000;
577 do {
578 if (ioread32(priv->regs + MWL8K_HIU_INT_CODE)
579 == MWL8K_FWSTA_READY)
580 break;
581 udelay(1);
582 } while (--loops);
583
584 return loops ? 0 : -ETIMEDOUT;
585}
586
587
588/*
589 * Defines shared between transmission and reception.
590 */
591/* HT control fields for firmware */
592struct ewc_ht_info {
593 __le16 control1;
594 __le16 control2;
595 __le16 control3;
596} __attribute__((packed));
597
598/* Firmware Station database operations */
599#define MWL8K_STA_DB_ADD_ENTRY 0
600#define MWL8K_STA_DB_MODIFY_ENTRY 1
601#define MWL8K_STA_DB_DEL_ENTRY 2
602#define MWL8K_STA_DB_FLUSH 3
603
604/* Peer Entry flags - used to define the type of the peer node */
605#define MWL8K_PEER_TYPE_ACCESSPOINT 2
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100606
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200607#define MWL8K_IEEE_LEGACY_DATA_RATES 13
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100608#define MWL8K_MCS_BITMAP_SIZE 16
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100609
610struct peer_capability_info {
611 /* Peer type - AP vs. STA. */
612 __u8 peer_type;
613
614 /* Basic 802.11 capabilities from assoc resp. */
615 __le16 basic_caps;
616
617 /* Set if peer supports 802.11n high throughput (HT). */
618 __u8 ht_support;
619
620 /* Valid if HT is supported. */
621 __le16 ht_caps;
622 __u8 extended_ht_caps;
623 struct ewc_ht_info ewc_info;
624
625 /* Legacy rate table. Intersection of our rates and peer rates. */
626 __u8 legacy_rates[MWL8K_IEEE_LEGACY_DATA_RATES];
627
628 /* HT rate table. Intersection of our rates and peer rates. */
629 __u8 ht_rates[MWL8K_MCS_BITMAP_SIZE];
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +0200630 __u8 pad[16];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100631
632 /* If set, interoperability mode, no proprietary extensions. */
633 __u8 interop;
634 __u8 pad2;
635 __u8 station_id;
636 __le16 amsdu_enabled;
637} __attribute__((packed));
638
639/* Inline functions to manipulate QoS field in data descriptor. */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100640static inline u16 mwl8k_qos_setbit_eosp(u16 qos)
641{
642 u16 val_mask = 1 << 4;
643
644 /* End of Service Period Bit 4 */
645 return qos | val_mask;
646}
647
648static inline u16 mwl8k_qos_setbit_ack(u16 qos, u8 ack_policy)
649{
650 u16 val_mask = 0x3;
651 u8 shift = 5;
652 u16 qos_mask = ~(val_mask << shift);
653
654 /* Ack Policy Bit 5-6 */
655 return (qos & qos_mask) | ((ack_policy & val_mask) << shift);
656}
657
658static inline u16 mwl8k_qos_setbit_amsdu(u16 qos)
659{
660 u16 val_mask = 1 << 7;
661
662 /* AMSDU present Bit 7 */
663 return qos | val_mask;
664}
665
666static inline u16 mwl8k_qos_setbit_qlen(u16 qos, u8 len)
667{
668 u16 val_mask = 0xff;
669 u8 shift = 8;
670 u16 qos_mask = ~(val_mask << shift);
671
672 /* Queue Length Bits 8-15 */
673 return (qos & qos_mask) | ((len & val_mask) << shift);
674}
675
676/* DMA header used by firmware and hardware. */
677struct mwl8k_dma_data {
678 __le16 fwlen;
679 struct ieee80211_hdr wh;
680} __attribute__((packed));
681
682/* Routines to add/remove DMA header from skb. */
Lennert Buytenhek76266b22009-07-16 11:07:09 +0200683static inline void mwl8k_remove_dma_header(struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100684{
Lennert Buytenhek76266b22009-07-16 11:07:09 +0200685 struct mwl8k_dma_data *tr = (struct mwl8k_dma_data *)skb->data;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100686 void *dst, *src = &tr->wh;
Lennert Buytenhek76266b22009-07-16 11:07:09 +0200687 int hdrlen = ieee80211_hdrlen(tr->wh.frame_control);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100688 u16 space = sizeof(struct mwl8k_dma_data) - hdrlen;
689
690 dst = (void *)tr + space;
691 if (dst != src) {
692 memmove(dst, src, hdrlen);
693 skb_pull(skb, space);
694 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100695}
696
Lennert Buytenhek76266b22009-07-16 11:07:09 +0200697static inline void mwl8k_add_dma_header(struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100698{
699 struct ieee80211_hdr *wh;
700 u32 hdrlen, pktlen;
701 struct mwl8k_dma_data *tr;
702
703 wh = (struct ieee80211_hdr *)skb->data;
704 hdrlen = ieee80211_hdrlen(wh->frame_control);
705 pktlen = skb->len;
706
707 /*
708 * Copy up/down the 802.11 header; the firmware requires
709 * we present a 2-byte payload length followed by a
710 * 4-address header (w/o QoS), followed (optionally) by
711 * any WEP/ExtIV header (but only filled in for CCMP).
712 */
713 if (hdrlen != sizeof(struct mwl8k_dma_data))
714 skb_push(skb, sizeof(struct mwl8k_dma_data) - hdrlen);
715
716 tr = (struct mwl8k_dma_data *)skb->data;
717 if (wh != &tr->wh)
718 memmove(&tr->wh, wh, hdrlen);
719
720 /* Clear addr4 */
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200721 memset(tr->wh.addr4, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100722
723 /*
724 * Firmware length is the length of the fully formed "802.11
725 * payload". That is, everything except for the 802.11 header.
726 * This includes all crypto material including the MIC.
727 */
728 tr->fwlen = cpu_to_le16(pktlen - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100729}
730
731
732/*
733 * Packet reception.
734 */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100735#define MWL8K_RX_CTRL_OWNED_BY_HOST 0x02
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100736
737struct mwl8k_rx_desc {
738 __le16 pkt_len;
739 __u8 link_quality;
740 __u8 noise_level;
741 __le32 pkt_phys_addr;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200742 __le32 next_rxd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100743 __le16 qos_control;
744 __le16 rate_info;
745 __le32 pad0[4];
746 __u8 rssi;
747 __u8 channel;
748 __le16 pad1;
749 __u8 rx_ctrl;
750 __u8 rx_status;
751 __u8 pad2[2];
752} __attribute__((packed));
753
754#define MWL8K_RX_DESCS 256
755#define MWL8K_RX_MAXSZ 3800
756
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200757#define RATE_INFO_SHORTPRE 0x8000
758#define RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3)
759#define RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f)
760#define RATE_INFO_40MHZ 0x0004
761#define RATE_INFO_SHORTGI 0x0002
762#define RATE_INFO_MCS_FORMAT 0x0001
763
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100764static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
765{
766 struct mwl8k_priv *priv = hw->priv;
767 struct mwl8k_rx_queue *rxq = priv->rxq + index;
768 int size;
769 int i;
770
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200771 rxq->rxd_count = 0;
772 rxq->head = 0;
773 rxq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100774
775 size = MWL8K_RX_DESCS * sizeof(struct mwl8k_rx_desc);
776
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200777 rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma);
778 if (rxq->rxd == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100779 printk(KERN_ERR "%s: failed to alloc RX descriptors\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200780 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100781 return -ENOMEM;
782 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200783 memset(rxq->rxd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100784
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200785 rxq->skb = kmalloc(MWL8K_RX_DESCS * sizeof(*rxq->skb), GFP_KERNEL);
786 if (rxq->skb == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100787 printk(KERN_ERR "%s: failed to alloc RX skbuff list\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200788 wiphy_name(hw->wiphy));
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200789 pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100790 return -ENOMEM;
791 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200792 memset(rxq->skb, 0, MWL8K_RX_DESCS * sizeof(*rxq->skb));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100793
794 for (i = 0; i < MWL8K_RX_DESCS; i++) {
795 struct mwl8k_rx_desc *rx_desc;
796 int nexti;
797
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200798 rx_desc = rxq->rxd + i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100799 nexti = (i + 1) % MWL8K_RX_DESCS;
800
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200801 rx_desc->next_rxd_phys_addr =
802 cpu_to_le32(rxq->rxd_dma + nexti * sizeof(*rx_desc));
Rami Rosenc491bf12009-04-21 16:22:01 +0300803 rx_desc->rx_ctrl = MWL8K_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100804 }
805
806 return 0;
807}
808
809static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
810{
811 struct mwl8k_priv *priv = hw->priv;
812 struct mwl8k_rx_queue *rxq = priv->rxq + index;
813 int refilled;
814
815 refilled = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200816 while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100817 struct sk_buff *skb;
818 int rx;
819
820 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
821 if (skb == NULL)
822 break;
823
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200824 rxq->rxd_count++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100825
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200826 rx = rxq->tail;
827 rxq->tail = (rx + 1) % MWL8K_RX_DESCS;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100828
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200829 rxq->rxd[rx].pkt_phys_addr =
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100830 cpu_to_le32(pci_map_single(priv->pdev, skb->data,
831 MWL8K_RX_MAXSZ, DMA_FROM_DEVICE));
832
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200833 rxq->rxd[rx].pkt_len = cpu_to_le16(MWL8K_RX_MAXSZ);
834 rxq->skb[rx] = skb;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100835 wmb();
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200836 rxq->rxd[rx].rx_ctrl = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100837
838 refilled++;
839 }
840
841 return refilled;
842}
843
844/* Must be called only when the card's reception is completely halted */
845static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
846{
847 struct mwl8k_priv *priv = hw->priv;
848 struct mwl8k_rx_queue *rxq = priv->rxq + index;
849 int i;
850
851 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200852 if (rxq->skb[i] != NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100853 unsigned long addr;
854
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200855 addr = le32_to_cpu(rxq->rxd[i].pkt_phys_addr);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100856 pci_unmap_single(priv->pdev, addr, MWL8K_RX_MAXSZ,
857 PCI_DMA_FROMDEVICE);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200858 kfree_skb(rxq->skb[i]);
859 rxq->skb[i] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100860 }
861 }
862
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200863 kfree(rxq->skb);
864 rxq->skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100865
866 pci_free_consistent(priv->pdev,
867 MWL8K_RX_DESCS * sizeof(struct mwl8k_rx_desc),
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200868 rxq->rxd, rxq->rxd_dma);
869 rxq->rxd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100870}
871
872
873/*
874 * Scan a list of BSSIDs to process for finalize join.
875 * Allows for extension to process multiple BSSIDs.
876 */
877static inline int
878mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
879{
880 return priv->capture_beacon &&
881 ieee80211_is_beacon(wh->frame_control) &&
882 !compare_ether_addr(wh->addr3, priv->capture_bssid);
883}
884
Lennert Buytenhek37797522009-10-22 20:19:45 +0200885static inline void mwl8k_save_beacon(struct ieee80211_hw *hw,
886 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100887{
Lennert Buytenhek37797522009-10-22 20:19:45 +0200888 struct mwl8k_priv *priv = hw->priv;
889
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100890 priv->capture_beacon = false;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200891 memset(priv->capture_bssid, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100892
893 /*
894 * Use GFP_ATOMIC as rxq_process is called from
895 * the primary interrupt handler, memory allocation call
896 * must not sleep.
897 */
898 priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
899 if (priv->beacon_skb != NULL)
Lennert Buytenhek37797522009-10-22 20:19:45 +0200900 ieee80211_queue_work(hw, &priv->finalize_join_worker);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100901}
902
903static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
904{
905 struct mwl8k_priv *priv = hw->priv;
906 struct mwl8k_rx_queue *rxq = priv->rxq + index;
907 int processed;
908
909 processed = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200910 while (rxq->rxd_count && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100911 struct mwl8k_rx_desc *rx_desc;
912 struct sk_buff *skb;
913 struct ieee80211_rx_status status;
914 unsigned long addr;
915 struct ieee80211_hdr *wh;
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200916 u16 rate_info;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100917
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200918 rx_desc = rxq->rxd + rxq->head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100919 if (!(rx_desc->rx_ctrl & MWL8K_RX_CTRL_OWNED_BY_HOST))
920 break;
921 rmb();
922
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200923 skb = rxq->skb[rxq->head];
Lennert Buytenhekd25f9f12009-08-03 21:58:26 +0200924 if (skb == NULL)
925 break;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200926 rxq->skb[rxq->head] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100927
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200928 rxq->head = (rxq->head + 1) % MWL8K_RX_DESCS;
929 rxq->rxd_count--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100930
931 addr = le32_to_cpu(rx_desc->pkt_phys_addr);
932 pci_unmap_single(priv->pdev, addr,
933 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
934
935 skb_put(skb, le16_to_cpu(rx_desc->pkt_len));
Lennert Buytenhek76266b22009-07-16 11:07:09 +0200936 mwl8k_remove_dma_header(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100937
938 wh = (struct ieee80211_hdr *)skb->data;
939
940 /*
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200941 * Check for a pending join operation. Save a
942 * copy of the beacon and schedule a tasklet to
943 * send a FINALIZE_JOIN command to the firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100944 */
945 if (mwl8k_capture_bssid(priv, wh))
Lennert Buytenhek37797522009-10-22 20:19:45 +0200946 mwl8k_save_beacon(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100947
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200948 rate_info = le16_to_cpu(rx_desc->rate_info);
949
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100950 memset(&status, 0, sizeof(status));
951 status.mactime = 0;
952 status.signal = -rx_desc->rssi;
953 status.noise = -rx_desc->noise_level;
954 status.qual = rx_desc->link_quality;
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200955 status.antenna = RATE_INFO_ANTSELECT(rate_info);
956 status.rate_idx = RATE_INFO_RATEID(rate_info);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100957 status.flag = 0;
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200958 if (rate_info & RATE_INFO_SHORTPRE)
959 status.flag |= RX_FLAG_SHORTPRE;
960 if (rate_info & RATE_INFO_40MHZ)
961 status.flag |= RX_FLAG_40MHZ;
962 if (rate_info & RATE_INFO_SHORTGI)
963 status.flag |= RX_FLAG_SHORT_GI;
964 if (rate_info & RATE_INFO_MCS_FORMAT)
965 status.flag |= RX_FLAG_HT;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100966 status.band = IEEE80211_BAND_2GHZ;
967 status.freq = ieee80211_channel_to_frequency(rx_desc->channel);
Johannes Bergf1d58c22009-06-17 13:13:00 +0200968 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
969 ieee80211_rx_irqsafe(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100970
971 processed++;
972 }
973
974 return processed;
975}
976
977
978/*
979 * Packet transmission.
980 */
981
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100982/* Transmit packet ACK policy */
983#define MWL8K_TXD_ACK_POLICY_NORMAL 0
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100984#define MWL8K_TXD_ACK_POLICY_BLOCKACK 3
985
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100986#define MWL8K_TXD_STATUS_OK 0x00000001
987#define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
988#define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
989#define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100990#define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100991
992struct mwl8k_tx_desc {
993 __le32 status;
994 __u8 data_rate;
995 __u8 tx_priority;
996 __le16 qos_control;
997 __le32 pkt_phys_addr;
998 __le16 pkt_len;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200999 __u8 dest_MAC_addr[ETH_ALEN];
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001000 __le32 next_txd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001001 __le32 reserved;
1002 __le16 rate_info;
1003 __u8 peer_id;
1004 __u8 tx_frag_cnt;
1005} __attribute__((packed));
1006
1007#define MWL8K_TX_DESCS 128
1008
1009static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1010{
1011 struct mwl8k_priv *priv = hw->priv;
1012 struct mwl8k_tx_queue *txq = priv->txq + index;
1013 int size;
1014 int i;
1015
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001016 memset(&txq->stats, 0, sizeof(struct ieee80211_tx_queue_stats));
1017 txq->stats.limit = MWL8K_TX_DESCS;
1018 txq->head = 0;
1019 txq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001020
1021 size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1022
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001023 txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma);
1024 if (txq->txd == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001025 printk(KERN_ERR "%s: failed to alloc TX descriptors\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001026 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001027 return -ENOMEM;
1028 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001029 memset(txq->txd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001030
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001031 txq->skb = kmalloc(MWL8K_TX_DESCS * sizeof(*txq->skb), GFP_KERNEL);
1032 if (txq->skb == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001033 printk(KERN_ERR "%s: failed to alloc TX skbuff list\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001034 wiphy_name(hw->wiphy));
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001035 pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001036 return -ENOMEM;
1037 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001038 memset(txq->skb, 0, MWL8K_TX_DESCS * sizeof(*txq->skb));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001039
1040 for (i = 0; i < MWL8K_TX_DESCS; i++) {
1041 struct mwl8k_tx_desc *tx_desc;
1042 int nexti;
1043
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001044 tx_desc = txq->txd + i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001045 nexti = (i + 1) % MWL8K_TX_DESCS;
1046
1047 tx_desc->status = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001048 tx_desc->next_txd_phys_addr =
1049 cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001050 }
1051
1052 return 0;
1053}
1054
1055static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1056{
1057 iowrite32(MWL8K_H2A_INT_PPA_READY,
1058 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1059 iowrite32(MWL8K_H2A_INT_DUMMY,
1060 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1061 ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1062}
1063
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001064struct mwl8k_txq_info {
1065 u32 fw_owned;
1066 u32 drv_owned;
1067 u32 unused;
1068 u32 len;
1069 u32 head;
1070 u32 tail;
1071};
1072
1073static int mwl8k_scan_tx_ring(struct mwl8k_priv *priv,
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001074 struct mwl8k_txq_info *txinfo)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001075{
1076 int count, desc, status;
1077 struct mwl8k_tx_queue *txq;
1078 struct mwl8k_tx_desc *tx_desc;
1079 int ndescs = 0;
1080
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001081 memset(txinfo, 0, MWL8K_TX_QUEUES * sizeof(struct mwl8k_txq_info));
1082
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001083 for (count = 0; count < MWL8K_TX_QUEUES; count++) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001084 txq = priv->txq + count;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001085 txinfo[count].len = txq->stats.len;
1086 txinfo[count].head = txq->head;
1087 txinfo[count].tail = txq->tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001088 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001089 tx_desc = txq->txd + desc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001090 status = le32_to_cpu(tx_desc->status);
1091
1092 if (status & MWL8K_TXD_STATUS_FW_OWNED)
1093 txinfo[count].fw_owned++;
1094 else
1095 txinfo[count].drv_owned++;
1096
1097 if (tx_desc->pkt_len == 0)
1098 txinfo[count].unused++;
1099 }
1100 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001101
1102 return ndescs;
1103}
1104
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001105/*
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001106 * Must be called with priv->fw_mutex held and tx queues stopped.
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001107 */
Lennert Buytenhek950d5b02009-07-17 01:48:41 +02001108static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001109{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001110 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001111 DECLARE_COMPLETION_ONSTACK(tx_wait);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001112 u32 count;
1113 unsigned long timeout;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001114
1115 might_sleep();
1116
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001117 spin_lock_bh(&priv->tx_lock);
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001118 count = priv->pending_tx_pkts;
1119 if (count)
1120 priv->tx_wait = &tx_wait;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001121 spin_unlock_bh(&priv->tx_lock);
1122
1123 if (count) {
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001124 struct mwl8k_txq_info txinfo[MWL8K_TX_QUEUES];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001125 int index;
1126 int newcount;
1127
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001128 timeout = wait_for_completion_timeout(&tx_wait,
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001129 msecs_to_jiffies(5000));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001130 if (timeout)
1131 return 0;
1132
1133 spin_lock_bh(&priv->tx_lock);
1134 priv->tx_wait = NULL;
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001135 newcount = priv->pending_tx_pkts;
1136 mwl8k_scan_tx_ring(priv, txinfo);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001137 spin_unlock_bh(&priv->tx_lock);
1138
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001139 printk(KERN_ERR "%s(%u) TIMEDOUT:5000ms Pend:%u-->%u\n",
Lennert Buytenhek950d5b02009-07-17 01:48:41 +02001140 __func__, __LINE__, count, newcount);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001141
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001142 for (index = 0; index < MWL8K_TX_QUEUES; index++)
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001143 printk(KERN_ERR "TXQ:%u L:%u H:%u T:%u FW:%u "
1144 "DRV:%u U:%u\n",
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001145 index,
1146 txinfo[index].len,
1147 txinfo[index].head,
1148 txinfo[index].tail,
1149 txinfo[index].fw_owned,
1150 txinfo[index].drv_owned,
1151 txinfo[index].unused);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001152
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001153 return -ETIMEDOUT;
1154 }
1155
1156 return 0;
1157}
1158
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02001159#define MWL8K_TXD_SUCCESS(status) \
1160 ((status) & (MWL8K_TXD_STATUS_OK | \
1161 MWL8K_TXD_STATUS_OK_RETRY | \
1162 MWL8K_TXD_STATUS_OK_MORE_RETRY))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001163
1164static void mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int force)
1165{
1166 struct mwl8k_priv *priv = hw->priv;
1167 struct mwl8k_tx_queue *txq = priv->txq + index;
1168 int wake = 0;
1169
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001170 while (txq->stats.len > 0) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001171 int tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001172 struct mwl8k_tx_desc *tx_desc;
1173 unsigned long addr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001174 int size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001175 struct sk_buff *skb;
1176 struct ieee80211_tx_info *info;
1177 u32 status;
1178
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001179 tx = txq->head;
1180 tx_desc = txq->txd + tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001181
1182 status = le32_to_cpu(tx_desc->status);
1183
1184 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1185 if (!force)
1186 break;
1187 tx_desc->status &=
1188 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1189 }
1190
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001191 txq->head = (tx + 1) % MWL8K_TX_DESCS;
1192 BUG_ON(txq->stats.len == 0);
1193 txq->stats.len--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001194 priv->pending_tx_pkts--;
1195
1196 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001197 size = le16_to_cpu(tx_desc->pkt_len);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001198 skb = txq->skb[tx];
1199 txq->skb[tx] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001200
1201 BUG_ON(skb == NULL);
1202 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1203
Lennert Buytenhek76266b22009-07-16 11:07:09 +02001204 mwl8k_remove_dma_header(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001205
1206 /* Mark descriptor as unused */
1207 tx_desc->pkt_phys_addr = 0;
1208 tx_desc->pkt_len = 0;
1209
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001210 info = IEEE80211_SKB_CB(skb);
1211 ieee80211_tx_info_clear_status(info);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001212 if (MWL8K_TXD_SUCCESS(status))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001213 info->flags |= IEEE80211_TX_STAT_ACK;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001214
1215 ieee80211_tx_status_irqsafe(hw, skb);
1216
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001217 wake = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001218 }
1219
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001220 if (wake && priv->radio_on && !mutex_is_locked(&priv->fw_mutex))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001221 ieee80211_wake_queue(hw, index);
1222}
1223
1224/* must be called only when the card's transmit is completely halted */
1225static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1226{
1227 struct mwl8k_priv *priv = hw->priv;
1228 struct mwl8k_tx_queue *txq = priv->txq + index;
1229
1230 mwl8k_txq_reclaim(hw, index, 1);
1231
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001232 kfree(txq->skb);
1233 txq->skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001234
1235 pci_free_consistent(priv->pdev,
1236 MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001237 txq->txd, txq->txd_dma);
1238 txq->txd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001239}
1240
1241static int
1242mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb)
1243{
1244 struct mwl8k_priv *priv = hw->priv;
1245 struct ieee80211_tx_info *tx_info;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001246 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001247 struct ieee80211_hdr *wh;
1248 struct mwl8k_tx_queue *txq;
1249 struct mwl8k_tx_desc *tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001250 dma_addr_t dma;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001251 u32 txstatus;
1252 u8 txdatarate;
1253 u16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001254
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001255 wh = (struct ieee80211_hdr *)skb->data;
1256 if (ieee80211_is_data_qos(wh->frame_control))
1257 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1258 else
1259 qos = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001260
Lennert Buytenhek76266b22009-07-16 11:07:09 +02001261 mwl8k_add_dma_header(skb);
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001262 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001263
1264 tx_info = IEEE80211_SKB_CB(skb);
1265 mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001266
1267 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1268 u16 seqno = mwl8k_vif->seqno;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001269
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001270 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
1271 wh->seq_ctrl |= cpu_to_le16(seqno << 4);
1272 mwl8k_vif->seqno = seqno++ % 4096;
1273 }
1274
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001275 /* Setup firmware control bit fields for each frame type. */
1276 txstatus = 0;
1277 txdatarate = 0;
1278 if (ieee80211_is_mgmt(wh->frame_control) ||
1279 ieee80211_is_ctl(wh->frame_control)) {
1280 txdatarate = 0;
1281 qos = mwl8k_qos_setbit_eosp(qos);
1282 /* Set Queue size to unspecified */
1283 qos = mwl8k_qos_setbit_qlen(qos, 0xff);
1284 } else if (ieee80211_is_data(wh->frame_control)) {
1285 txdatarate = 1;
1286 if (is_multicast_ether_addr(wh->addr1))
1287 txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX;
1288
1289 /* Send pkt in an aggregate if AMPDU frame. */
1290 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
1291 qos = mwl8k_qos_setbit_ack(qos,
1292 MWL8K_TXD_ACK_POLICY_BLOCKACK);
1293 else
1294 qos = mwl8k_qos_setbit_ack(qos,
1295 MWL8K_TXD_ACK_POLICY_NORMAL);
1296
1297 if (qos & IEEE80211_QOS_CONTROL_A_MSDU_PRESENT)
1298 qos = mwl8k_qos_setbit_amsdu(qos);
1299 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001300
1301 dma = pci_map_single(priv->pdev, skb->data,
1302 skb->len, PCI_DMA_TODEVICE);
1303
1304 if (pci_dma_mapping_error(priv->pdev, dma)) {
1305 printk(KERN_DEBUG "%s: failed to dma map skb, "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001306 "dropping TX frame.\n", wiphy_name(hw->wiphy));
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001307 dev_kfree_skb(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001308 return NETDEV_TX_OK;
1309 }
1310
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001311 spin_lock_bh(&priv->tx_lock);
1312
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001313 txq = priv->txq + index;
1314
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001315 BUG_ON(txq->skb[txq->tail] != NULL);
1316 txq->skb[txq->tail] = skb;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001317
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001318 tx = txq->txd + txq->tail;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001319 tx->data_rate = txdatarate;
1320 tx->tx_priority = index;
1321 tx->qos_control = cpu_to_le16(qos);
1322 tx->pkt_phys_addr = cpu_to_le32(dma);
1323 tx->pkt_len = cpu_to_le16(skb->len);
1324 tx->rate_info = 0;
1325 tx->peer_id = mwl8k_vif->peer_id;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001326 wmb();
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001327 tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
1328
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001329 txq->stats.count++;
1330 txq->stats.len++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001331 priv->pending_tx_pkts++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001332
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001333 txq->tail++;
1334 if (txq->tail == MWL8K_TX_DESCS)
1335 txq->tail = 0;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001336
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001337 if (txq->head == txq->tail)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001338 ieee80211_stop_queue(hw, index);
1339
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001340 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001341
1342 spin_unlock_bh(&priv->tx_lock);
1343
1344 return NETDEV_TX_OK;
1345}
1346
1347
1348/*
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001349 * Firmware access.
1350 *
1351 * We have the following requirements for issuing firmware commands:
1352 * - Some commands require that the packet transmit path is idle when
1353 * the command is issued. (For simplicity, we'll just quiesce the
1354 * transmit path for every command.)
1355 * - There are certain sequences of commands that need to be issued to
1356 * the hardware sequentially, with no other intervening commands.
1357 *
1358 * This leads to an implementation of a "firmware lock" as a mutex that
1359 * can be taken recursively, and which is taken by both the low-level
1360 * command submission function (mwl8k_post_cmd) as well as any users of
1361 * that function that require issuing of an atomic sequence of commands,
1362 * and quiesces the transmit path whenever it's taken.
1363 */
1364static int mwl8k_fw_lock(struct ieee80211_hw *hw)
1365{
1366 struct mwl8k_priv *priv = hw->priv;
1367
1368 if (priv->fw_mutex_owner != current) {
1369 int rc;
1370
1371 mutex_lock(&priv->fw_mutex);
1372 ieee80211_stop_queues(hw);
1373
1374 rc = mwl8k_tx_wait_empty(hw);
1375 if (rc) {
1376 ieee80211_wake_queues(hw);
1377 mutex_unlock(&priv->fw_mutex);
1378
1379 return rc;
1380 }
1381
1382 priv->fw_mutex_owner = current;
1383 }
1384
1385 priv->fw_mutex_depth++;
1386
1387 return 0;
1388}
1389
1390static void mwl8k_fw_unlock(struct ieee80211_hw *hw)
1391{
1392 struct mwl8k_priv *priv = hw->priv;
1393
1394 if (!--priv->fw_mutex_depth) {
1395 ieee80211_wake_queues(hw);
1396 priv->fw_mutex_owner = NULL;
1397 mutex_unlock(&priv->fw_mutex);
1398 }
1399}
1400
1401
1402/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001403 * Command processing.
1404 */
1405
1406/* Timeout firmware commands after 2000ms */
1407#define MWL8K_CMD_TIMEOUT_MS 2000
1408
1409static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
1410{
1411 DECLARE_COMPLETION_ONSTACK(cmd_wait);
1412 struct mwl8k_priv *priv = hw->priv;
1413 void __iomem *regs = priv->regs;
1414 dma_addr_t dma_addr;
1415 unsigned int dma_size;
1416 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001417 unsigned long timeout = 0;
1418 u8 buf[32];
1419
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001420 cmd->result = 0xffff;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001421 dma_size = le16_to_cpu(cmd->length);
1422 dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
1423 PCI_DMA_BIDIRECTIONAL);
1424 if (pci_dma_mapping_error(priv->pdev, dma_addr))
1425 return -ENOMEM;
1426
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001427 rc = mwl8k_fw_lock(hw);
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02001428 if (rc) {
1429 pci_unmap_single(priv->pdev, dma_addr, dma_size,
1430 PCI_DMA_BIDIRECTIONAL);
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001431 return rc;
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02001432 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001433
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001434 priv->hostcmd_wait = &cmd_wait;
1435 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
1436 iowrite32(MWL8K_H2A_INT_DOORBELL,
1437 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1438 iowrite32(MWL8K_H2A_INT_DUMMY,
1439 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001440
1441 timeout = wait_for_completion_timeout(&cmd_wait,
1442 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
1443
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001444 priv->hostcmd_wait = NULL;
1445
1446 mwl8k_fw_unlock(hw);
1447
Lennert Buytenhek37055bd2009-08-03 21:58:47 +02001448 pci_unmap_single(priv->pdev, dma_addr, dma_size,
1449 PCI_DMA_BIDIRECTIONAL);
1450
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001451 if (!timeout) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001452 printk(KERN_ERR "%s: Command %s timeout after %u ms\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001453 wiphy_name(hw->wiphy),
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001454 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
1455 MWL8K_CMD_TIMEOUT_MS);
1456 rc = -ETIMEDOUT;
1457 } else {
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001458 rc = cmd->result ? -EINVAL : 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001459 if (rc)
1460 printk(KERN_ERR "%s: Command %s error 0x%x\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001461 wiphy_name(hw->wiphy),
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001462 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
Lennert Buytenhek76c962a2009-08-24 15:42:56 +02001463 le16_to_cpu(cmd->result));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001464 }
1465
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001466 return rc;
1467}
1468
1469/*
1470 * GET_HW_SPEC.
1471 */
1472struct mwl8k_cmd_get_hw_spec {
1473 struct mwl8k_cmd_pkt header;
1474 __u8 hw_rev;
1475 __u8 host_interface;
1476 __le16 num_mcaddrs;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001477 __u8 perm_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001478 __le16 region_code;
1479 __le32 fw_rev;
1480 __le32 ps_cookie;
1481 __le32 caps;
1482 __u8 mcs_bitmap[16];
1483 __le32 rx_queue_ptr;
1484 __le32 num_tx_queues;
1485 __le32 tx_queue_ptrs[MWL8K_TX_QUEUES];
1486 __le32 caps2;
1487 __le32 num_tx_desc_per_queue;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001488 __le32 total_rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001489} __attribute__((packed));
1490
1491static int mwl8k_cmd_get_hw_spec(struct ieee80211_hw *hw)
1492{
1493 struct mwl8k_priv *priv = hw->priv;
1494 struct mwl8k_cmd_get_hw_spec *cmd;
1495 int rc;
1496 int i;
1497
1498 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1499 if (cmd == NULL)
1500 return -ENOMEM;
1501
1502 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
1503 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1504
1505 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
1506 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001507 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02001508 cmd->num_tx_queues = cpu_to_le32(MWL8K_TX_QUEUES);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001509 for (i = 0; i < MWL8K_TX_QUEUES; i++)
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001510 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02001511 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001512 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001513
1514 rc = mwl8k_post_cmd(hw, &cmd->header);
1515
1516 if (!rc) {
1517 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
1518 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02001519 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001520 priv->hw_rev = cmd->hw_rev;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001521 }
1522
1523 kfree(cmd);
1524 return rc;
1525}
1526
1527/*
1528 * CMD_MAC_MULTICAST_ADR.
1529 */
1530struct mwl8k_cmd_mac_multicast_adr {
1531 struct mwl8k_cmd_pkt header;
1532 __le16 action;
1533 __le16 numaddr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001534 __u8 addr[0][ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001535};
1536
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001537#define MWL8K_ENABLE_RX_DIRECTED 0x0001
1538#define MWL8K_ENABLE_RX_MULTICAST 0x0002
1539#define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004
1540#define MWL8K_ENABLE_RX_BROADCAST 0x0008
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001541
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001542static struct mwl8k_cmd_pkt *
Lennert Buytenhek447ced02009-10-22 20:19:50 +02001543__mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti,
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001544 int mc_count, struct dev_addr_list *mclist)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001545{
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001546 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001547 struct mwl8k_cmd_mac_multicast_adr *cmd;
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001548 int size;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001549
Lennert Buytenhek447ced02009-10-22 20:19:50 +02001550 if (allmulti || mc_count > priv->num_mcaddrs) {
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001551 allmulti = 1;
1552 mc_count = 0;
1553 }
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001554
1555 size = sizeof(*cmd) + mc_count * ETH_ALEN;
1556
1557 cmd = kzalloc(size, GFP_ATOMIC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001558 if (cmd == NULL)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001559 return NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001560
1561 cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
1562 cmd->header.length = cpu_to_le16(size);
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001563 cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED |
1564 MWL8K_ENABLE_RX_BROADCAST);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001565
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001566 if (allmulti) {
1567 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST);
1568 } else if (mc_count) {
1569 int i;
1570
1571 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
1572 cmd->numaddr = cpu_to_le16(mc_count);
1573 for (i = 0; i < mc_count && mclist; i++) {
1574 if (mclist->da_addrlen != ETH_ALEN) {
1575 kfree(cmd);
1576 return NULL;
1577 }
1578 memcpy(cmd->addr[i], mclist->da_addr, ETH_ALEN);
1579 mclist = mclist->next;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001580 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001581 }
1582
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001583 return &cmd->header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001584}
1585
1586/*
1587 * CMD_802_11_GET_STAT.
1588 */
1589struct mwl8k_cmd_802_11_get_stat {
1590 struct mwl8k_cmd_pkt header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001591 __le32 stats[64];
1592} __attribute__((packed));
1593
1594#define MWL8K_STAT_ACK_FAILURE 9
1595#define MWL8K_STAT_RTS_FAILURE 12
1596#define MWL8K_STAT_FCS_ERROR 24
1597#define MWL8K_STAT_RTS_SUCCESS 11
1598
1599static int mwl8k_cmd_802_11_get_stat(struct ieee80211_hw *hw,
1600 struct ieee80211_low_level_stats *stats)
1601{
1602 struct mwl8k_cmd_802_11_get_stat *cmd;
1603 int rc;
1604
1605 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1606 if (cmd == NULL)
1607 return -ENOMEM;
1608
1609 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
1610 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001611
1612 rc = mwl8k_post_cmd(hw, &cmd->header);
1613 if (!rc) {
1614 stats->dot11ACKFailureCount =
1615 le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
1616 stats->dot11RTSFailureCount =
1617 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
1618 stats->dot11FCSErrorCount =
1619 le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
1620 stats->dot11RTSSuccessCount =
1621 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
1622 }
1623 kfree(cmd);
1624
1625 return rc;
1626}
1627
1628/*
1629 * CMD_802_11_RADIO_CONTROL.
1630 */
1631struct mwl8k_cmd_802_11_radio_control {
1632 struct mwl8k_cmd_pkt header;
1633 __le16 action;
1634 __le16 control;
1635 __le16 radio_on;
1636} __attribute__((packed));
1637
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001638static int
1639mwl8k_cmd_802_11_radio_control(struct ieee80211_hw *hw, bool enable, bool force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001640{
1641 struct mwl8k_priv *priv = hw->priv;
1642 struct mwl8k_cmd_802_11_radio_control *cmd;
1643 int rc;
1644
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001645 if (enable == priv->radio_on && !force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001646 return 0;
1647
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001648 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1649 if (cmd == NULL)
1650 return -ENOMEM;
1651
1652 cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
1653 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1654 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02001655 cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001656 cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
1657
1658 rc = mwl8k_post_cmd(hw, &cmd->header);
1659 kfree(cmd);
1660
1661 if (!rc)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001662 priv->radio_on = enable;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001663
1664 return rc;
1665}
1666
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001667static int mwl8k_cmd_802_11_radio_disable(struct ieee80211_hw *hw)
1668{
1669 return mwl8k_cmd_802_11_radio_control(hw, 0, 0);
1670}
1671
1672static int mwl8k_cmd_802_11_radio_enable(struct ieee80211_hw *hw)
1673{
1674 return mwl8k_cmd_802_11_radio_control(hw, 1, 0);
1675}
1676
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001677static int
1678mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
1679{
1680 struct mwl8k_priv *priv;
1681
1682 if (hw == NULL || hw->priv == NULL)
1683 return -EINVAL;
1684 priv = hw->priv;
1685
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02001686 priv->radio_short_preamble = short_preamble;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001687
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001688 return mwl8k_cmd_802_11_radio_control(hw, 1, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001689}
1690
1691/*
1692 * CMD_802_11_RF_TX_POWER.
1693 */
1694#define MWL8K_TX_POWER_LEVEL_TOTAL 8
1695
1696struct mwl8k_cmd_802_11_rf_tx_power {
1697 struct mwl8k_cmd_pkt header;
1698 __le16 action;
1699 __le16 support_level;
1700 __le16 current_level;
1701 __le16 reserved;
1702 __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
1703} __attribute__((packed));
1704
1705static int mwl8k_cmd_802_11_rf_tx_power(struct ieee80211_hw *hw, int dBm)
1706{
1707 struct mwl8k_cmd_802_11_rf_tx_power *cmd;
1708 int rc;
1709
1710 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1711 if (cmd == NULL)
1712 return -ENOMEM;
1713
1714 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
1715 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1716 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
1717 cmd->support_level = cpu_to_le16(dBm);
1718
1719 rc = mwl8k_post_cmd(hw, &cmd->header);
1720 kfree(cmd);
1721
1722 return rc;
1723}
1724
1725/*
1726 * CMD_SET_PRE_SCAN.
1727 */
1728struct mwl8k_cmd_set_pre_scan {
1729 struct mwl8k_cmd_pkt header;
1730} __attribute__((packed));
1731
1732static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
1733{
1734 struct mwl8k_cmd_set_pre_scan *cmd;
1735 int rc;
1736
1737 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1738 if (cmd == NULL)
1739 return -ENOMEM;
1740
1741 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
1742 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1743
1744 rc = mwl8k_post_cmd(hw, &cmd->header);
1745 kfree(cmd);
1746
1747 return rc;
1748}
1749
1750/*
1751 * CMD_SET_POST_SCAN.
1752 */
1753struct mwl8k_cmd_set_post_scan {
1754 struct mwl8k_cmd_pkt header;
1755 __le32 isibss;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001756 __u8 bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001757} __attribute__((packed));
1758
1759static int
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001760mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, __u8 *mac)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001761{
1762 struct mwl8k_cmd_set_post_scan *cmd;
1763 int rc;
1764
1765 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1766 if (cmd == NULL)
1767 return -ENOMEM;
1768
1769 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
1770 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1771 cmd->isibss = 0;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001772 memcpy(cmd->bssid, mac, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001773
1774 rc = mwl8k_post_cmd(hw, &cmd->header);
1775 kfree(cmd);
1776
1777 return rc;
1778}
1779
1780/*
1781 * CMD_SET_RF_CHANNEL.
1782 */
1783struct mwl8k_cmd_set_rf_channel {
1784 struct mwl8k_cmd_pkt header;
1785 __le16 action;
1786 __u8 current_channel;
1787 __le32 channel_flags;
1788} __attribute__((packed));
1789
1790static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
1791 struct ieee80211_channel *channel)
1792{
1793 struct mwl8k_cmd_set_rf_channel *cmd;
1794 int rc;
1795
1796 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1797 if (cmd == NULL)
1798 return -ENOMEM;
1799
1800 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
1801 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1802 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
1803 cmd->current_channel = channel->hw_value;
1804 if (channel->band == IEEE80211_BAND_2GHZ)
1805 cmd->channel_flags = cpu_to_le32(0x00000081);
1806 else
1807 cmd->channel_flags = cpu_to_le32(0x00000000);
1808
1809 rc = mwl8k_post_cmd(hw, &cmd->header);
1810 kfree(cmd);
1811
1812 return rc;
1813}
1814
1815/*
1816 * CMD_SET_SLOT.
1817 */
1818struct mwl8k_cmd_set_slot {
1819 struct mwl8k_cmd_pkt header;
1820 __le16 action;
1821 __u8 short_slot;
1822} __attribute__((packed));
1823
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02001824static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001825{
1826 struct mwl8k_cmd_set_slot *cmd;
1827 int rc;
1828
1829 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1830 if (cmd == NULL)
1831 return -ENOMEM;
1832
1833 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
1834 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1835 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02001836 cmd->short_slot = short_slot_time;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001837
1838 rc = mwl8k_post_cmd(hw, &cmd->header);
1839 kfree(cmd);
1840
1841 return rc;
1842}
1843
1844/*
1845 * CMD_MIMO_CONFIG.
1846 */
1847struct mwl8k_cmd_mimo_config {
1848 struct mwl8k_cmd_pkt header;
1849 __le32 action;
1850 __u8 rx_antenna_map;
1851 __u8 tx_antenna_map;
1852} __attribute__((packed));
1853
1854static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
1855{
1856 struct mwl8k_cmd_mimo_config *cmd;
1857 int rc;
1858
1859 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1860 if (cmd == NULL)
1861 return -ENOMEM;
1862
1863 cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG);
1864 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1865 cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET);
1866 cmd->rx_antenna_map = rx;
1867 cmd->tx_antenna_map = tx;
1868
1869 rc = mwl8k_post_cmd(hw, &cmd->header);
1870 kfree(cmd);
1871
1872 return rc;
1873}
1874
1875/*
1876 * CMD_ENABLE_SNIFFER.
1877 */
1878struct mwl8k_cmd_enable_sniffer {
1879 struct mwl8k_cmd_pkt header;
1880 __le32 action;
1881} __attribute__((packed));
1882
1883static int mwl8k_enable_sniffer(struct ieee80211_hw *hw, bool enable)
1884{
1885 struct mwl8k_cmd_enable_sniffer *cmd;
1886 int rc;
1887
1888 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1889 if (cmd == NULL)
1890 return -ENOMEM;
1891
1892 cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
1893 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001894 cmd->action = cpu_to_le32(!!enable);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001895
1896 rc = mwl8k_post_cmd(hw, &cmd->header);
1897 kfree(cmd);
1898
1899 return rc;
1900}
1901
1902/*
Lennert Buytenhek32060e12009-10-22 20:20:04 +02001903 * CMD_SET_MAC_ADDR.
1904 */
1905struct mwl8k_cmd_set_mac_addr {
1906 struct mwl8k_cmd_pkt header;
1907 __u8 mac_addr[ETH_ALEN];
1908} __attribute__((packed));
1909
1910static int mwl8k_set_mac_addr(struct ieee80211_hw *hw, u8 *mac)
1911{
1912 struct mwl8k_cmd_set_mac_addr *cmd;
1913 int rc;
1914
1915 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1916 if (cmd == NULL)
1917 return -ENOMEM;
1918
1919 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR);
1920 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1921 memcpy(cmd->mac_addr, mac, ETH_ALEN);
1922
1923 rc = mwl8k_post_cmd(hw, &cmd->header);
1924 kfree(cmd);
1925
1926 return rc;
1927}
1928
1929
1930/*
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001931 * CMD_SET_RATEADAPT_MODE.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001932 */
1933struct mwl8k_cmd_set_rate_adapt_mode {
1934 struct mwl8k_cmd_pkt header;
1935 __le16 action;
1936 __le16 mode;
1937} __attribute__((packed));
1938
1939static int mwl8k_cmd_setrateadaptmode(struct ieee80211_hw *hw, __u16 mode)
1940{
1941 struct mwl8k_cmd_set_rate_adapt_mode *cmd;
1942 int rc;
1943
1944 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1945 if (cmd == NULL)
1946 return -ENOMEM;
1947
1948 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
1949 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1950 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
1951 cmd->mode = cpu_to_le16(mode);
1952
1953 rc = mwl8k_post_cmd(hw, &cmd->header);
1954 kfree(cmd);
1955
1956 return rc;
1957}
1958
1959/*
1960 * CMD_SET_WMM_MODE.
1961 */
1962struct mwl8k_cmd_set_wmm {
1963 struct mwl8k_cmd_pkt header;
1964 __le16 action;
1965} __attribute__((packed));
1966
1967static int mwl8k_set_wmm(struct ieee80211_hw *hw, bool enable)
1968{
1969 struct mwl8k_priv *priv = hw->priv;
1970 struct mwl8k_cmd_set_wmm *cmd;
1971 int rc;
1972
1973 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1974 if (cmd == NULL)
1975 return -ENOMEM;
1976
1977 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
1978 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek0439b1f2009-07-16 12:34:02 +02001979 cmd->action = cpu_to_le16(!!enable);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001980
1981 rc = mwl8k_post_cmd(hw, &cmd->header);
1982 kfree(cmd);
1983
1984 if (!rc)
Lennert Buytenhek0439b1f2009-07-16 12:34:02 +02001985 priv->wmm_enabled = enable;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001986
1987 return rc;
1988}
1989
1990/*
1991 * CMD_SET_RTS_THRESHOLD.
1992 */
1993struct mwl8k_cmd_rts_threshold {
1994 struct mwl8k_cmd_pkt header;
1995 __le16 action;
1996 __le16 threshold;
1997} __attribute__((packed));
1998
1999static int mwl8k_rts_threshold(struct ieee80211_hw *hw,
Lennert Buytenhek733d3062009-07-17 07:24:15 +02002000 u16 action, u16 threshold)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002001{
2002 struct mwl8k_cmd_rts_threshold *cmd;
2003 int rc;
2004
2005 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2006 if (cmd == NULL)
2007 return -ENOMEM;
2008
2009 cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
2010 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2011 cmd->action = cpu_to_le16(action);
Lennert Buytenhek733d3062009-07-17 07:24:15 +02002012 cmd->threshold = cpu_to_le16(threshold);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002013
2014 rc = mwl8k_post_cmd(hw, &cmd->header);
2015 kfree(cmd);
2016
2017 return rc;
2018}
2019
2020/*
2021 * CMD_SET_EDCA_PARAMS.
2022 */
2023struct mwl8k_cmd_set_edca_params {
2024 struct mwl8k_cmd_pkt header;
2025
2026 /* See MWL8K_SET_EDCA_XXX below */
2027 __le16 action;
2028
2029 /* TX opportunity in units of 32 us */
2030 __le16 txop;
2031
2032 /* Log exponent of max contention period: 0...15*/
2033 __u8 log_cw_max;
2034
2035 /* Log exponent of min contention period: 0...15 */
2036 __u8 log_cw_min;
2037
2038 /* Adaptive interframe spacing in units of 32us */
2039 __u8 aifs;
2040
2041 /* TX queue to configure */
2042 __u8 txq;
2043} __attribute__((packed));
2044
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002045#define MWL8K_SET_EDCA_CW 0x01
2046#define MWL8K_SET_EDCA_TXOP 0x02
2047#define MWL8K_SET_EDCA_AIFS 0x04
2048
2049#define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
2050 MWL8K_SET_EDCA_TXOP | \
2051 MWL8K_SET_EDCA_AIFS)
2052
2053static int
2054mwl8k_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
2055 __u16 cw_min, __u16 cw_max,
2056 __u8 aifs, __u16 txop)
2057{
2058 struct mwl8k_cmd_set_edca_params *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002059 int rc;
2060
2061 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2062 if (cmd == NULL)
2063 return -ENOMEM;
2064
Lennert Buytenhek22995b22009-10-22 20:20:25 +02002065 /*
2066 * Queues 0 (BE) and 1 (BK) are swapped in hardware for
2067 * this call.
2068 */
2069 qnum ^= !(qnum >> 1);
2070
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002071 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
2072 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002073 cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
2074 cmd->txop = cpu_to_le16(txop);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002075 cmd->log_cw_max = (u8)ilog2(cw_max + 1);
2076 cmd->log_cw_min = (u8)ilog2(cw_min + 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002077 cmd->aifs = aifs;
2078 cmd->txq = qnum;
2079
2080 rc = mwl8k_post_cmd(hw, &cmd->header);
2081 kfree(cmd);
2082
2083 return rc;
2084}
2085
2086/*
2087 * CMD_FINALIZE_JOIN.
2088 */
2089
2090/* FJ beacon buffer size is compiled into the firmware. */
2091#define MWL8K_FJ_BEACON_MAXLEN 128
2092
2093struct mwl8k_cmd_finalize_join {
2094 struct mwl8k_cmd_pkt header;
2095 __le32 sleep_interval; /* Number of beacon periods to sleep */
2096 __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
2097} __attribute__((packed));
2098
2099static int mwl8k_finalize_join(struct ieee80211_hw *hw, void *frame,
2100 __u16 framelen, __u16 dtim)
2101{
2102 struct mwl8k_cmd_finalize_join *cmd;
2103 struct ieee80211_mgmt *payload = frame;
2104 u16 hdrlen;
2105 u32 payload_len;
2106 int rc;
2107
2108 if (frame == NULL)
2109 return -EINVAL;
2110
2111 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2112 if (cmd == NULL)
2113 return -ENOMEM;
2114
2115 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN);
2116 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002117 cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002118
2119 hdrlen = ieee80211_hdrlen(payload->frame_control);
2120
2121 payload_len = framelen > hdrlen ? framelen - hdrlen : 0;
2122
2123 /* XXX TBD Might just have to abort and return an error */
2124 if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
2125 printk(KERN_ERR "%s(): WARNING: Incomplete beacon "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02002126 "sent to firmware. Sz=%u MAX=%u\n", __func__,
2127 payload_len, MWL8K_FJ_BEACON_MAXLEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002128
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002129 if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
2130 payload_len = MWL8K_FJ_BEACON_MAXLEN;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002131
2132 if (payload && payload_len)
2133 memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
2134
2135 rc = mwl8k_post_cmd(hw, &cmd->header);
2136 kfree(cmd);
2137 return rc;
2138}
2139
2140/*
2141 * CMD_UPDATE_STADB.
2142 */
2143struct mwl8k_cmd_update_sta_db {
2144 struct mwl8k_cmd_pkt header;
2145
2146 /* See STADB_ACTION_TYPE */
2147 __le32 action;
2148
2149 /* Peer MAC address */
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002150 __u8 peer_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002151
2152 __le32 reserved;
2153
2154 /* Peer info - valid during add/update. */
2155 struct peer_capability_info peer_info;
2156} __attribute__((packed));
2157
2158static int mwl8k_cmd_update_sta_db(struct ieee80211_hw *hw,
2159 struct ieee80211_vif *vif, __u32 action)
2160{
2161 struct mwl8k_vif *mv_vif = MWL8K_VIF(vif);
2162 struct ieee80211_bss_conf *info = &mv_vif->bss_info;
2163 struct mwl8k_cmd_update_sta_db *cmd;
2164 struct peer_capability_info *peer_info;
2165 struct ieee80211_rate *bitrates = mv_vif->legacy_rates;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002166 int rc;
2167 __u8 count, *rates;
2168
2169 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2170 if (cmd == NULL)
2171 return -ENOMEM;
2172
2173 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
2174 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2175
2176 cmd->action = cpu_to_le32(action);
2177 peer_info = &cmd->peer_info;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002178 memcpy(cmd->peer_addr, mv_vif->bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002179
2180 switch (action) {
2181 case MWL8K_STA_DB_ADD_ENTRY:
2182 case MWL8K_STA_DB_MODIFY_ENTRY:
2183 /* Build peer_info block */
2184 peer_info->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
2185 peer_info->basic_caps = cpu_to_le16(info->assoc_capability);
2186 peer_info->interop = 1;
2187 peer_info->amsdu_enabled = 0;
2188
2189 rates = peer_info->legacy_rates;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002190 for (count = 0; count < mv_vif->legacy_nrates; count++)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002191 rates[count] = bitrates[count].hw_value;
2192
2193 rc = mwl8k_post_cmd(hw, &cmd->header);
2194 if (rc == 0)
2195 mv_vif->peer_id = peer_info->station_id;
2196
2197 break;
2198
2199 case MWL8K_STA_DB_DEL_ENTRY:
2200 case MWL8K_STA_DB_FLUSH:
2201 default:
2202 rc = mwl8k_post_cmd(hw, &cmd->header);
2203 if (rc == 0)
2204 mv_vif->peer_id = 0;
2205 break;
2206 }
2207 kfree(cmd);
2208
2209 return rc;
2210}
2211
2212/*
2213 * CMD_SET_AID.
2214 */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002215#define MWL8K_RATE_INDEX_MAX_ARRAY 14
2216
2217#define MWL8K_FRAME_PROT_DISABLED 0x00
2218#define MWL8K_FRAME_PROT_11G 0x07
2219#define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
2220#define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002221
2222struct mwl8k_cmd_update_set_aid {
2223 struct mwl8k_cmd_pkt header;
2224 __le16 aid;
2225
2226 /* AP's MAC address (BSSID) */
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002227 __u8 bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002228 __le16 protection_mode;
2229 __u8 supp_rates[MWL8K_RATE_INDEX_MAX_ARRAY];
2230} __attribute__((packed));
2231
2232static int mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
2233 struct ieee80211_vif *vif)
2234{
2235 struct mwl8k_vif *mv_vif = MWL8K_VIF(vif);
2236 struct ieee80211_bss_conf *info = &mv_vif->bss_info;
2237 struct mwl8k_cmd_update_set_aid *cmd;
2238 struct ieee80211_rate *bitrates = mv_vif->legacy_rates;
2239 int count;
2240 u16 prot_mode;
2241 int rc;
2242
2243 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2244 if (cmd == NULL)
2245 return -ENOMEM;
2246
2247 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
2248 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2249 cmd->aid = cpu_to_le16(info->aid);
2250
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002251 memcpy(cmd->bssid, mv_vif->bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002252
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002253 if (info->use_cts_prot) {
2254 prot_mode = MWL8K_FRAME_PROT_11G;
2255 } else {
Johannes Berg9ed6bcc2009-05-08 20:47:39 +02002256 switch (info->ht_operation_mode &
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002257 IEEE80211_HT_OP_MODE_PROTECTION) {
2258 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
2259 prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
2260 break;
2261 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
2262 prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
2263 break;
2264 default:
2265 prot_mode = MWL8K_FRAME_PROT_DISABLED;
2266 break;
2267 }
2268 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002269 cmd->protection_mode = cpu_to_le16(prot_mode);
2270
2271 for (count = 0; count < mv_vif->legacy_nrates; count++)
2272 cmd->supp_rates[count] = bitrates[count].hw_value;
2273
2274 rc = mwl8k_post_cmd(hw, &cmd->header);
2275 kfree(cmd);
2276
2277 return rc;
2278}
2279
2280/*
2281 * CMD_SET_RATE.
2282 */
2283struct mwl8k_cmd_update_rateset {
2284 struct mwl8k_cmd_pkt header;
2285 __u8 legacy_rates[MWL8K_RATE_INDEX_MAX_ARRAY];
2286
2287 /* Bitmap for supported MCS codes. */
2288 __u8 mcs_set[MWL8K_IEEE_LEGACY_DATA_RATES];
2289 __u8 reserved[MWL8K_IEEE_LEGACY_DATA_RATES];
2290} __attribute__((packed));
2291
2292static int mwl8k_update_rateset(struct ieee80211_hw *hw,
2293 struct ieee80211_vif *vif)
2294{
2295 struct mwl8k_vif *mv_vif = MWL8K_VIF(vif);
2296 struct mwl8k_cmd_update_rateset *cmd;
2297 struct ieee80211_rate *bitrates = mv_vif->legacy_rates;
2298 int count;
2299 int rc;
2300
2301 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2302 if (cmd == NULL)
2303 return -ENOMEM;
2304
2305 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE);
2306 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2307
2308 for (count = 0; count < mv_vif->legacy_nrates; count++)
2309 cmd->legacy_rates[count] = bitrates[count].hw_value;
2310
2311 rc = mwl8k_post_cmd(hw, &cmd->header);
2312 kfree(cmd);
2313
2314 return rc;
2315}
2316
2317/*
2318 * CMD_USE_FIXED_RATE.
2319 */
2320#define MWL8K_RATE_TABLE_SIZE 8
2321#define MWL8K_UCAST_RATE 0
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002322#define MWL8K_USE_AUTO_RATE 0x0002
2323
2324struct mwl8k_rate_entry {
2325 /* Set to 1 if HT rate, 0 if legacy. */
2326 __le32 is_ht_rate;
2327
2328 /* Set to 1 to use retry_count field. */
2329 __le32 enable_retry;
2330
2331 /* Specified legacy rate or MCS. */
2332 __le32 rate;
2333
2334 /* Number of allowed retries. */
2335 __le32 retry_count;
2336} __attribute__((packed));
2337
2338struct mwl8k_rate_table {
2339 /* 1 to allow specified rate and below */
2340 __le32 allow_rate_drop;
2341 __le32 num_rates;
2342 struct mwl8k_rate_entry rate_entry[MWL8K_RATE_TABLE_SIZE];
2343} __attribute__((packed));
2344
2345struct mwl8k_cmd_use_fixed_rate {
2346 struct mwl8k_cmd_pkt header;
2347 __le32 action;
2348 struct mwl8k_rate_table rate_table;
2349
2350 /* Unicast, Broadcast or Multicast */
2351 __le32 rate_type;
2352 __le32 reserved1;
2353 __le32 reserved2;
2354} __attribute__((packed));
2355
2356static int mwl8k_cmd_use_fixed_rate(struct ieee80211_hw *hw,
2357 u32 action, u32 rate_type, struct mwl8k_rate_table *rate_table)
2358{
2359 struct mwl8k_cmd_use_fixed_rate *cmd;
2360 int count;
2361 int rc;
2362
2363 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2364 if (cmd == NULL)
2365 return -ENOMEM;
2366
2367 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
2368 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2369
2370 cmd->action = cpu_to_le32(action);
2371 cmd->rate_type = cpu_to_le32(rate_type);
2372
2373 if (rate_table != NULL) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02002374 /*
2375 * Copy over each field manually so that endian
2376 * conversion can be done.
2377 */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002378 cmd->rate_table.allow_rate_drop =
2379 cpu_to_le32(rate_table->allow_rate_drop);
2380 cmd->rate_table.num_rates =
2381 cpu_to_le32(rate_table->num_rates);
2382
2383 for (count = 0; count < rate_table->num_rates; count++) {
2384 struct mwl8k_rate_entry *dst =
2385 &cmd->rate_table.rate_entry[count];
2386 struct mwl8k_rate_entry *src =
2387 &rate_table->rate_entry[count];
2388
2389 dst->is_ht_rate = cpu_to_le32(src->is_ht_rate);
2390 dst->enable_retry = cpu_to_le32(src->enable_retry);
2391 dst->rate = cpu_to_le32(src->rate);
2392 dst->retry_count = cpu_to_le32(src->retry_count);
2393 }
2394 }
2395
2396 rc = mwl8k_post_cmd(hw, &cmd->header);
2397 kfree(cmd);
2398
2399 return rc;
2400}
2401
2402
2403/*
2404 * Interrupt handling.
2405 */
2406static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
2407{
2408 struct ieee80211_hw *hw = dev_id;
2409 struct mwl8k_priv *priv = hw->priv;
2410 u32 status;
2411
2412 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
2413 iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
2414
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002415 if (!status)
2416 return IRQ_NONE;
2417
2418 if (status & MWL8K_A2H_INT_TX_DONE)
2419 tasklet_schedule(&priv->tx_reclaim_task);
2420
2421 if (status & MWL8K_A2H_INT_RX_READY) {
2422 while (rxq_process(hw, 0, 1))
2423 rxq_refill(hw, 0, 1);
2424 }
2425
2426 if (status & MWL8K_A2H_INT_OPC_DONE) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002427 if (priv->hostcmd_wait != NULL)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002428 complete(priv->hostcmd_wait);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002429 }
2430
2431 if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002432 if (!mutex_is_locked(&priv->fw_mutex) &&
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02002433 priv->radio_on && priv->pending_tx_pkts)
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002434 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002435 }
2436
2437 return IRQ_HANDLED;
2438}
2439
2440
2441/*
2442 * Core driver operations.
2443 */
2444static int mwl8k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
2445{
2446 struct mwl8k_priv *priv = hw->priv;
2447 int index = skb_get_queue_mapping(skb);
2448 int rc;
2449
2450 if (priv->current_channel == NULL) {
2451 printk(KERN_DEBUG "%s: dropped TX frame since radio "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02002452 "disabled\n", wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002453 dev_kfree_skb(skb);
2454 return NETDEV_TX_OK;
2455 }
2456
2457 rc = mwl8k_txq_xmit(hw, index, skb);
2458
2459 return rc;
2460}
2461
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002462static int mwl8k_start(struct ieee80211_hw *hw)
2463{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002464 struct mwl8k_priv *priv = hw->priv;
2465 int rc;
2466
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002467 rc = request_irq(priv->pdev->irq, &mwl8k_interrupt,
2468 IRQF_SHARED, MWL8K_NAME, hw);
2469 if (rc) {
2470 printk(KERN_ERR "%s: failed to register IRQ handler\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02002471 wiphy_name(hw->wiphy));
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002472 return -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002473 }
2474
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002475 /* Enable tx reclaim tasklet */
2476 tasklet_enable(&priv->tx_reclaim_task);
2477
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002478 /* Enable interrupts */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02002479 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002480
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002481 rc = mwl8k_fw_lock(hw);
2482 if (!rc) {
2483 rc = mwl8k_cmd_802_11_radio_enable(hw);
2484
2485 if (!rc)
2486 rc = mwl8k_cmd_set_pre_scan(hw);
2487
2488 if (!rc)
2489 rc = mwl8k_cmd_set_post_scan(hw,
2490 "\x00\x00\x00\x00\x00\x00");
2491
2492 if (!rc)
2493 rc = mwl8k_cmd_setrateadaptmode(hw, 0);
2494
2495 if (!rc)
2496 rc = mwl8k_set_wmm(hw, 0);
2497
2498 if (!rc)
2499 rc = mwl8k_enable_sniffer(hw, 0);
2500
2501 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002502 }
2503
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002504 if (rc) {
2505 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
2506 free_irq(priv->pdev->irq, hw);
2507 tasklet_disable(&priv->tx_reclaim_task);
2508 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002509
2510 return rc;
2511}
2512
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002513static void mwl8k_stop(struct ieee80211_hw *hw)
2514{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002515 struct mwl8k_priv *priv = hw->priv;
2516 int i;
2517
Lennert Buytenhekd3cea0b2009-07-17 07:15:49 +02002518 mwl8k_cmd_802_11_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002519
2520 ieee80211_stop_queues(hw);
2521
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002522 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002523 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002524 free_irq(priv->pdev->irq, hw);
2525
2526 /* Stop finalize join worker */
2527 cancel_work_sync(&priv->finalize_join_worker);
2528 if (priv->beacon_skb != NULL)
2529 dev_kfree_skb(priv->beacon_skb);
2530
2531 /* Stop tx reclaim tasklet */
2532 tasklet_disable(&priv->tx_reclaim_task);
2533
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002534 /* Return all skbs to mac80211 */
2535 for (i = 0; i < MWL8K_TX_QUEUES; i++)
2536 mwl8k_txq_reclaim(hw, i, 1);
2537}
2538
2539static int mwl8k_add_interface(struct ieee80211_hw *hw,
2540 struct ieee80211_if_init_conf *conf)
2541{
2542 struct mwl8k_priv *priv = hw->priv;
2543 struct mwl8k_vif *mwl8k_vif;
2544
2545 /*
2546 * We only support one active interface at a time.
2547 */
2548 if (priv->vif != NULL)
2549 return -EBUSY;
2550
2551 /*
2552 * We only support managed interfaces for now.
2553 */
Lennert Buytenhek240e86e2009-07-16 14:15:44 +02002554 if (conf->type != NL80211_IFTYPE_STATION)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002555 return -EINVAL;
2556
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02002557 /*
2558 * Reject interface creation if sniffer mode is active, as
2559 * STA operation is mutually exclusive with hardware sniffer
2560 * mode.
2561 */
2562 if (priv->sniffer_enabled) {
2563 printk(KERN_INFO "%s: unable to create STA "
2564 "interface due to sniffer mode being enabled\n",
2565 wiphy_name(hw->wiphy));
2566 return -EINVAL;
2567 }
2568
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002569 /* Clean out driver private area */
2570 mwl8k_vif = MWL8K_VIF(conf->vif);
2571 memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
2572
Lennert Buytenhek32060e12009-10-22 20:20:04 +02002573 /* Set and save the mac address */
2574 mwl8k_set_mac_addr(hw, conf->mac_addr);
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002575 memcpy(mwl8k_vif->mac_addr, conf->mac_addr, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002576
2577 /* Back pointer to parent config block */
2578 mwl8k_vif->priv = priv;
2579
2580 /* Setup initial PHY parameters */
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002581 memcpy(mwl8k_vif->legacy_rates,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002582 priv->rates, sizeof(mwl8k_vif->legacy_rates));
2583 mwl8k_vif->legacy_nrates = ARRAY_SIZE(priv->rates);
2584
2585 /* Set Initial sequence number to zero */
2586 mwl8k_vif->seqno = 0;
2587
2588 priv->vif = conf->vif;
2589 priv->current_channel = NULL;
2590
2591 return 0;
2592}
2593
2594static void mwl8k_remove_interface(struct ieee80211_hw *hw,
2595 struct ieee80211_if_init_conf *conf)
2596{
2597 struct mwl8k_priv *priv = hw->priv;
2598
2599 if (priv->vif == NULL)
2600 return;
2601
Lennert Buytenhek32060e12009-10-22 20:20:04 +02002602 mwl8k_set_mac_addr(hw, "\x00\x00\x00\x00\x00\x00");
2603
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002604 priv->vif = NULL;
2605}
2606
Lennert Buytenhekee03a932009-07-17 07:19:37 +02002607static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002608{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002609 struct ieee80211_conf *conf = &hw->conf;
2610 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02002611 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002612
Lennert Buytenhek7595d672009-08-17 23:59:40 +02002613 if (conf->flags & IEEE80211_CONF_IDLE) {
2614 mwl8k_cmd_802_11_radio_disable(hw);
2615 priv->current_channel = NULL;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02002616 return 0;
Lennert Buytenhek7595d672009-08-17 23:59:40 +02002617 }
2618
Lennert Buytenhekee03a932009-07-17 07:19:37 +02002619 rc = mwl8k_fw_lock(hw);
2620 if (rc)
2621 return rc;
2622
2623 rc = mwl8k_cmd_802_11_radio_enable(hw);
2624 if (rc)
2625 goto out;
2626
2627 rc = mwl8k_cmd_set_rf_channel(hw, conf->channel);
2628 if (rc)
2629 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002630
2631 priv->current_channel = conf->channel;
2632
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002633 if (conf->power_level > 18)
2634 conf->power_level = 18;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02002635 rc = mwl8k_cmd_802_11_rf_tx_power(hw, conf->power_level);
2636 if (rc)
2637 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002638
2639 if (mwl8k_cmd_mimo_config(hw, 0x7, 0x7))
2640 rc = -EINVAL;
2641
Lennert Buytenhekee03a932009-07-17 07:19:37 +02002642out:
2643 mwl8k_fw_unlock(hw);
2644
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002645 return rc;
2646}
2647
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02002648static void mwl8k_bss_info_changed(struct ieee80211_hw *hw,
2649 struct ieee80211_vif *vif,
2650 struct ieee80211_bss_conf *info,
2651 u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002652{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002653 struct mwl8k_priv *priv = hw->priv;
2654 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02002655 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002656
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02002657 if (changed & BSS_CHANGED_BSSID)
2658 memcpy(mwl8k_vif->bssid, info->bssid, ETH_ALEN);
2659
2660 if ((changed & BSS_CHANGED_ASSOC) == 0)
2661 return;
2662
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002663 priv->capture_beacon = false;
2664
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02002665 rc = mwl8k_fw_lock(hw);
Lennert Buytenhek942457d2009-08-24 15:42:36 +02002666 if (rc)
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02002667 return;
2668
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002669 if (info->assoc) {
2670 memcpy(&mwl8k_vif->bss_info, info,
2671 sizeof(struct ieee80211_bss_conf));
2672
2673 /* Install rates */
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02002674 rc = mwl8k_update_rateset(hw, vif);
2675 if (rc)
2676 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002677
2678 /* Turn on rate adaptation */
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02002679 rc = mwl8k_cmd_use_fixed_rate(hw, MWL8K_USE_AUTO_RATE,
2680 MWL8K_UCAST_RATE, NULL);
2681 if (rc)
2682 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002683
2684 /* Set radio preamble */
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02002685 rc = mwl8k_set_radio_preamble(hw, info->use_short_preamble);
2686 if (rc)
2687 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002688
2689 /* Set slot time */
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02002690 rc = mwl8k_cmd_set_slot(hw, info->use_short_slot);
2691 if (rc)
2692 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002693
2694 /* Update peer rate info */
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02002695 rc = mwl8k_cmd_update_sta_db(hw, vif,
2696 MWL8K_STA_DB_MODIFY_ENTRY);
2697 if (rc)
2698 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002699
2700 /* Set AID */
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02002701 rc = mwl8k_cmd_set_aid(hw, vif);
2702 if (rc)
2703 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002704
2705 /*
2706 * Finalize the join. Tell rx handler to process
2707 * next beacon from our BSSID.
2708 */
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002709 memcpy(priv->capture_bssid, mwl8k_vif->bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002710 priv->capture_beacon = true;
2711 } else {
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02002712 rc = mwl8k_cmd_update_sta_db(hw, vif, MWL8K_STA_DB_DEL_ENTRY);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002713 memset(&mwl8k_vif->bss_info, 0,
2714 sizeof(struct ieee80211_bss_conf));
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002715 memset(mwl8k_vif->bssid, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002716 }
2717
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02002718out:
2719 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002720}
2721
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002722static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw,
2723 int mc_count, struct dev_addr_list *mclist)
2724{
2725 struct mwl8k_cmd_pkt *cmd;
2726
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002727 /*
2728 * Synthesize and return a command packet that programs the
2729 * hardware multicast address filter. At this point we don't
2730 * know whether FIF_ALLMULTI is being requested, but if it is,
2731 * we'll end up throwing this packet away and creating a new
2732 * one in mwl8k_configure_filter().
2733 */
2734 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_count, mclist);
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02002735
2736 return (unsigned long)cmd;
2737}
2738
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02002739static int
2740mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw,
2741 unsigned int changed_flags,
2742 unsigned int *total_flags)
2743{
2744 struct mwl8k_priv *priv = hw->priv;
2745
2746 /*
2747 * Hardware sniffer mode is mutually exclusive with STA
2748 * operation, so refuse to enable sniffer mode if a STA
2749 * interface is active.
2750 */
2751 if (priv->vif != NULL) {
2752 if (net_ratelimit())
2753 printk(KERN_INFO "%s: not enabling sniffer "
2754 "mode because STA interface is active\n",
2755 wiphy_name(hw->wiphy));
2756 return 0;
2757 }
2758
2759 if (!priv->sniffer_enabled) {
2760 if (mwl8k_enable_sniffer(hw, 1))
2761 return 0;
2762 priv->sniffer_enabled = true;
2763 }
2764
2765 *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI |
2766 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL |
2767 FIF_OTHER_BSS;
2768
2769 return 1;
2770}
2771
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02002772static void mwl8k_configure_filter(struct ieee80211_hw *hw,
2773 unsigned int changed_flags,
2774 unsigned int *total_flags,
2775 u64 multicast)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002776{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002777 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02002778 struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast;
2779
2780 /*
2781 * Enable hardware sniffer mode if FIF_CONTROL or
2782 * FIF_OTHER_BSS is requested.
2783 */
2784 if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) &&
2785 mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) {
2786 kfree(cmd);
2787 return;
2788 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002789
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02002790 /* Clear unsupported feature flags */
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002791 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02002792
2793 if (mwl8k_fw_lock(hw))
2794 return;
2795
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02002796 if (priv->sniffer_enabled) {
2797 mwl8k_enable_sniffer(hw, 0);
2798 priv->sniffer_enabled = false;
2799 }
2800
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02002801 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
Lennert Buytenhek77165d82009-10-22 20:19:53 +02002802 if (*total_flags & FIF_BCN_PRBRESP_PROMISC) {
2803 /*
2804 * Disable the BSS filter.
2805 */
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02002806 mwl8k_cmd_set_pre_scan(hw);
Lennert Buytenhek77165d82009-10-22 20:19:53 +02002807 } else {
Lennert Buytenheka94cc972009-08-03 21:58:57 +02002808 u8 *bssid;
2809
Lennert Buytenhek77165d82009-10-22 20:19:53 +02002810 /*
2811 * Enable the BSS filter.
2812 *
2813 * If there is an active STA interface, use that
2814 * interface's BSSID, otherwise use a dummy one
2815 * (where the OUI part needs to be nonzero for
2816 * the BSSID to be accepted by POST_SCAN).
2817 */
2818 bssid = "\x01\x00\x00\x00\x00\x00";
Lennert Buytenheka94cc972009-08-03 21:58:57 +02002819 if (priv->vif != NULL)
2820 bssid = MWL8K_VIF(priv->vif)->bssid;
2821
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02002822 mwl8k_cmd_set_post_scan(hw, bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002823 }
2824 }
2825
Lennert Buytenhek447ced02009-10-22 20:19:50 +02002826 /*
2827 * If FIF_ALLMULTI is being requested, throw away the command
2828 * packet that ->prepare_multicast() built and replace it with
2829 * a command packet that enables reception of all multicast
2830 * packets.
2831 */
2832 if (*total_flags & FIF_ALLMULTI) {
2833 kfree(cmd);
2834 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, 0, NULL);
2835 }
2836
2837 if (cmd != NULL) {
2838 mwl8k_post_cmd(hw, cmd);
2839 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02002840 }
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002841
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02002842 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002843}
2844
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002845static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
2846{
Lennert Buytenhek733d3062009-07-17 07:24:15 +02002847 return mwl8k_rts_threshold(hw, MWL8K_CMD_SET, value);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002848}
2849
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002850static int mwl8k_conf_tx(struct ieee80211_hw *hw, u16 queue,
2851 const struct ieee80211_tx_queue_params *params)
2852{
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02002853 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002854 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002855
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02002856 rc = mwl8k_fw_lock(hw);
2857 if (!rc) {
2858 if (!priv->wmm_enabled)
2859 rc = mwl8k_set_wmm(hw, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002860
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02002861 if (!rc)
2862 rc = mwl8k_set_edca_params(hw, queue,
2863 params->cw_min,
2864 params->cw_max,
2865 params->aifs,
2866 params->txop);
2867
2868 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002869 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02002870
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002871 return rc;
2872}
2873
2874static int mwl8k_get_tx_stats(struct ieee80211_hw *hw,
2875 struct ieee80211_tx_queue_stats *stats)
2876{
2877 struct mwl8k_priv *priv = hw->priv;
2878 struct mwl8k_tx_queue *txq;
2879 int index;
2880
2881 spin_lock_bh(&priv->tx_lock);
2882 for (index = 0; index < MWL8K_TX_QUEUES; index++) {
2883 txq = priv->txq + index;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02002884 memcpy(&stats[index], &txq->stats,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002885 sizeof(struct ieee80211_tx_queue_stats));
2886 }
2887 spin_unlock_bh(&priv->tx_lock);
Lennert Buytenhek954ef502009-07-17 07:26:27 +02002888
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002889 return 0;
2890}
2891
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002892static int mwl8k_get_stats(struct ieee80211_hw *hw,
2893 struct ieee80211_low_level_stats *stats)
2894{
Lennert Buytenhek954ef502009-07-17 07:26:27 +02002895 return mwl8k_cmd_802_11_get_stat(hw, stats);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002896}
2897
2898static const struct ieee80211_ops mwl8k_ops = {
2899 .tx = mwl8k_tx,
2900 .start = mwl8k_start,
2901 .stop = mwl8k_stop,
2902 .add_interface = mwl8k_add_interface,
2903 .remove_interface = mwl8k_remove_interface,
2904 .config = mwl8k_config,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002905 .bss_info_changed = mwl8k_bss_info_changed,
Johannes Berg3ac64be2009-08-17 16:16:53 +02002906 .prepare_multicast = mwl8k_prepare_multicast,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002907 .configure_filter = mwl8k_configure_filter,
2908 .set_rts_threshold = mwl8k_set_rts_threshold,
2909 .conf_tx = mwl8k_conf_tx,
2910 .get_tx_stats = mwl8k_get_tx_stats,
2911 .get_stats = mwl8k_get_stats,
2912};
2913
2914static void mwl8k_tx_reclaim_handler(unsigned long data)
2915{
2916 int i;
2917 struct ieee80211_hw *hw = (struct ieee80211_hw *) data;
2918 struct mwl8k_priv *priv = hw->priv;
2919
2920 spin_lock_bh(&priv->tx_lock);
2921 for (i = 0; i < MWL8K_TX_QUEUES; i++)
2922 mwl8k_txq_reclaim(hw, i, 0);
2923
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02002924 if (priv->tx_wait != NULL && !priv->pending_tx_pkts) {
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002925 complete(priv->tx_wait);
2926 priv->tx_wait = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002927 }
2928 spin_unlock_bh(&priv->tx_lock);
2929}
2930
2931static void mwl8k_finalize_join_worker(struct work_struct *work)
2932{
2933 struct mwl8k_priv *priv =
2934 container_of(work, struct mwl8k_priv, finalize_join_worker);
2935 struct sk_buff *skb = priv->beacon_skb;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002936 u8 dtim = MWL8K_VIF(priv->vif)->bss_info.dtim_period;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002937
2938 mwl8k_finalize_join(priv->hw, skb->data, skb->len, dtim);
2939 dev_kfree_skb(skb);
2940
2941 priv->beacon_skb = NULL;
2942}
2943
2944static int __devinit mwl8k_probe(struct pci_dev *pdev,
2945 const struct pci_device_id *id)
2946{
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02002947 static int printed_version = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002948 struct ieee80211_hw *hw;
2949 struct mwl8k_priv *priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002950 int rc;
2951 int i;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02002952
2953 if (!printed_version) {
2954 printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION);
2955 printed_version = 1;
2956 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002957
2958 rc = pci_enable_device(pdev);
2959 if (rc) {
2960 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
2961 MWL8K_NAME);
2962 return rc;
2963 }
2964
2965 rc = pci_request_regions(pdev, MWL8K_NAME);
2966 if (rc) {
2967 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
2968 MWL8K_NAME);
2969 return rc;
2970 }
2971
2972 pci_set_master(pdev);
2973
2974 hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
2975 if (hw == NULL) {
2976 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
2977 rc = -ENOMEM;
2978 goto err_free_reg;
2979 }
2980
2981 priv = hw->priv;
2982 priv->hw = hw;
2983 priv->pdev = pdev;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02002984 priv->sniffer_enabled = false;
Lennert Buytenhek0439b1f2009-07-16 12:34:02 +02002985 priv->wmm_enabled = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002986 priv->pending_tx_pkts = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002987
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002988 SET_IEEE80211_DEV(hw, &pdev->dev);
2989 pci_set_drvdata(pdev, hw);
2990
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02002991 priv->sram = pci_iomap(pdev, 0, 0x10000);
2992 if (priv->sram == NULL) {
2993 printk(KERN_ERR "%s: Cannot map device SRAM\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02002994 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002995 goto err_iounmap;
2996 }
2997
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02002998 /*
2999 * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
3000 * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
3001 */
3002 priv->regs = pci_iomap(pdev, 1, 0x10000);
3003 if (priv->regs == NULL) {
3004 priv->regs = pci_iomap(pdev, 2, 0x10000);
3005 if (priv->regs == NULL) {
3006 printk(KERN_ERR "%s: Cannot map device registers\n",
3007 wiphy_name(hw->wiphy));
3008 goto err_iounmap;
3009 }
3010 }
3011
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003012 memcpy(priv->channels, mwl8k_channels, sizeof(mwl8k_channels));
3013 priv->band.band = IEEE80211_BAND_2GHZ;
3014 priv->band.channels = priv->channels;
3015 priv->band.n_channels = ARRAY_SIZE(mwl8k_channels);
3016 priv->band.bitrates = priv->rates;
3017 priv->band.n_bitrates = ARRAY_SIZE(mwl8k_rates);
3018 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band;
3019
3020 BUILD_BUG_ON(sizeof(priv->rates) != sizeof(mwl8k_rates));
3021 memcpy(priv->rates, mwl8k_rates, sizeof(mwl8k_rates));
3022
3023 /*
3024 * Extra headroom is the size of the required DMA header
3025 * minus the size of the smallest 802.11 frame (CTS frame).
3026 */
3027 hw->extra_tx_headroom =
3028 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
3029
3030 hw->channel_change_time = 10;
3031
3032 hw->queues = MWL8K_TX_QUEUES;
3033
Lennert Buytenhek240e86e2009-07-16 14:15:44 +02003034 hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003035
3036 /* Set rssi and noise values to dBm */
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02003037 hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_NOISE_DBM;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003038 hw->vif_data_size = sizeof(struct mwl8k_vif);
3039 priv->vif = NULL;
3040
3041 /* Set default radio state and preamble */
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02003042 priv->radio_on = 0;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02003043 priv->radio_short_preamble = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003044
3045 /* Finalize join worker */
3046 INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
3047
3048 /* TX reclaim tasklet */
3049 tasklet_init(&priv->tx_reclaim_task,
3050 mwl8k_tx_reclaim_handler, (unsigned long)hw);
3051 tasklet_disable(&priv->tx_reclaim_task);
3052
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003053 /* Power management cookie */
3054 priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
3055 if (priv->cookie == NULL)
3056 goto err_iounmap;
3057
3058 rc = mwl8k_rxq_init(hw, 0);
3059 if (rc)
3060 goto err_iounmap;
3061 rxq_refill(hw, 0, INT_MAX);
3062
Lennert Buytenhek618952a2009-08-18 03:18:01 +02003063 mutex_init(&priv->fw_mutex);
3064 priv->fw_mutex_owner = NULL;
3065 priv->fw_mutex_depth = 0;
Lennert Buytenhek618952a2009-08-18 03:18:01 +02003066 priv->hostcmd_wait = NULL;
3067
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003068 spin_lock_init(&priv->tx_lock);
3069
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02003070 priv->tx_wait = NULL;
3071
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003072 for (i = 0; i < MWL8K_TX_QUEUES; i++) {
3073 rc = mwl8k_txq_init(hw, i);
3074 if (rc)
3075 goto err_free_queues;
3076 }
3077
3078 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02003079 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003080 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
3081 iowrite32(0xffffffff, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3082
3083 rc = request_irq(priv->pdev->irq, &mwl8k_interrupt,
3084 IRQF_SHARED, MWL8K_NAME, hw);
3085 if (rc) {
3086 printk(KERN_ERR "%s: failed to register IRQ handler\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003087 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003088 goto err_free_queues;
3089 }
3090
3091 /* Reset firmware and hardware */
3092 mwl8k_hw_reset(priv);
3093
3094 /* Ask userland hotplug daemon for the device firmware */
3095 rc = mwl8k_request_firmware(priv, (u32)id->driver_data);
3096 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003097 printk(KERN_ERR "%s: Firmware files not found\n",
3098 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003099 goto err_free_irq;
3100 }
3101
3102 /* Load firmware into hardware */
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003103 rc = mwl8k_load_firmware(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003104 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003105 printk(KERN_ERR "%s: Cannot start firmware\n",
3106 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003107 goto err_stop_firmware;
3108 }
3109
3110 /* Reclaim memory once firmware is successfully loaded */
3111 mwl8k_release_firmware(priv);
3112
3113 /*
3114 * Temporarily enable interrupts. Initial firmware host
3115 * commands use interrupts and avoids polling. Disable
3116 * interrupts when done.
3117 */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02003118 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003119
3120 /* Get config data, mac addrs etc */
3121 rc = mwl8k_cmd_get_hw_spec(hw);
3122 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003123 printk(KERN_ERR "%s: Cannot initialise firmware\n",
3124 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003125 goto err_stop_firmware;
3126 }
3127
3128 /* Turn radio off */
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02003129 rc = mwl8k_cmd_802_11_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003130 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003131 printk(KERN_ERR "%s: Cannot disable\n", wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003132 goto err_stop_firmware;
3133 }
3134
Lennert Buytenhek32060e12009-10-22 20:20:04 +02003135 /* Clear MAC address */
3136 rc = mwl8k_set_mac_addr(hw, "\x00\x00\x00\x00\x00\x00");
3137 if (rc) {
3138 printk(KERN_ERR "%s: Cannot clear MAC address\n",
3139 wiphy_name(hw->wiphy));
3140 goto err_stop_firmware;
3141 }
3142
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003143 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003144 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003145 free_irq(priv->pdev->irq, hw);
3146
3147 rc = ieee80211_register_hw(hw);
3148 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003149 printk(KERN_ERR "%s: Cannot register device\n",
3150 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003151 goto err_stop_firmware;
3152 }
3153
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02003154 printk(KERN_INFO "%s: 88w%u v%d, %pM, firmware version %u.%u.%u.%u\n",
3155 wiphy_name(hw->wiphy), priv->part_num, priv->hw_rev,
3156 hw->wiphy->perm_addr,
3157 (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff,
3158 (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003159
3160 return 0;
3161
3162err_stop_firmware:
3163 mwl8k_hw_reset(priv);
3164 mwl8k_release_firmware(priv);
3165
3166err_free_irq:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003167 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003168 free_irq(priv->pdev->irq, hw);
3169
3170err_free_queues:
3171 for (i = 0; i < MWL8K_TX_QUEUES; i++)
3172 mwl8k_txq_deinit(hw, i);
3173 mwl8k_rxq_deinit(hw, 0);
3174
3175err_iounmap:
3176 if (priv->cookie != NULL)
3177 pci_free_consistent(priv->pdev, 4,
3178 priv->cookie, priv->cookie_dma);
3179
3180 if (priv->regs != NULL)
3181 pci_iounmap(pdev, priv->regs);
3182
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02003183 if (priv->sram != NULL)
3184 pci_iounmap(pdev, priv->sram);
3185
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003186 pci_set_drvdata(pdev, NULL);
3187 ieee80211_free_hw(hw);
3188
3189err_free_reg:
3190 pci_release_regions(pdev);
3191 pci_disable_device(pdev);
3192
3193 return rc;
3194}
3195
Joerg Albert230f7af2009-04-18 02:10:45 +02003196static void __devexit mwl8k_shutdown(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003197{
3198 printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__);
3199}
3200
Joerg Albert230f7af2009-04-18 02:10:45 +02003201static void __devexit mwl8k_remove(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003202{
3203 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
3204 struct mwl8k_priv *priv;
3205 int i;
3206
3207 if (hw == NULL)
3208 return;
3209 priv = hw->priv;
3210
3211 ieee80211_stop_queues(hw);
3212
Lennert Buytenhek60aa5692009-08-03 21:59:09 +02003213 ieee80211_unregister_hw(hw);
3214
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003215 /* Remove tx reclaim tasklet */
3216 tasklet_kill(&priv->tx_reclaim_task);
3217
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003218 /* Stop hardware */
3219 mwl8k_hw_reset(priv);
3220
3221 /* Return all skbs to mac80211 */
3222 for (i = 0; i < MWL8K_TX_QUEUES; i++)
3223 mwl8k_txq_reclaim(hw, i, 1);
3224
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003225 for (i = 0; i < MWL8K_TX_QUEUES; i++)
3226 mwl8k_txq_deinit(hw, i);
3227
3228 mwl8k_rxq_deinit(hw, 0);
3229
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003230 pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003231
3232 pci_iounmap(pdev, priv->regs);
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02003233 pci_iounmap(pdev, priv->sram);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003234 pci_set_drvdata(pdev, NULL);
3235 ieee80211_free_hw(hw);
3236 pci_release_regions(pdev);
3237 pci_disable_device(pdev);
3238}
3239
3240static struct pci_driver mwl8k_driver = {
3241 .name = MWL8K_NAME,
3242 .id_table = mwl8k_table,
3243 .probe = mwl8k_probe,
3244 .remove = __devexit_p(mwl8k_remove),
3245 .shutdown = __devexit_p(mwl8k_shutdown),
3246};
3247
3248static int __init mwl8k_init(void)
3249{
3250 return pci_register_driver(&mwl8k_driver);
3251}
3252
3253static void __exit mwl8k_exit(void)
3254{
3255 pci_unregister_driver(&mwl8k_driver);
3256}
3257
3258module_init(mwl8k_init);
3259module_exit(mwl8k_exit);
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003260
3261MODULE_DESCRIPTION(MWL8K_DESC);
3262MODULE_VERSION(MWL8K_VERSION);
3263MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
3264MODULE_LICENSE("GPL");