blob: f0f08f3919ccdc536ade931d6bb591ac6fe86b2c [file] [log] [blame]
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001/*
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002 * drivers/net/wireless/mwl8k.c
3 * Driver for Marvell TOPDOG 802.11 Wireless cards
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004 *
Lennert Buytenheka5fb2972010-01-12 13:51:38 +01005 * Copyright (C) 2008, 2009, 2010 Marvell Semiconductor Inc.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006 *
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
10 */
11
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/kernel.h>
Lennert Buytenhek3d76e822009-10-22 20:20:16 +020015#include <linux/sched.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010016#include <linux/spinlock.h>
17#include <linux/list.h>
18#include <linux/pci.h>
19#include <linux/delay.h>
20#include <linux/completion.h>
21#include <linux/etherdevice.h>
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 Buytenheka5fb2972010-01-12 13:51:38 +010029#define MWL8K_VERSION "0.12"
Lennert Buytenheka66098d2009-03-10 10:13:33 +010030
Lennert Buytenheka66098d2009-03-10 10:13:33 +010031/* Register definitions */
32#define MWL8K_HIU_GEN_PTR 0x00000c10
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020033#define MWL8K_MODE_STA 0x0000005a
34#define MWL8K_MODE_AP 0x000000a5
Lennert Buytenheka66098d2009-03-10 10:13:33 +010035#define MWL8K_HIU_INT_CODE 0x00000c14
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020036#define MWL8K_FWSTA_READY 0xf0f1f2f4
37#define MWL8K_FWAP_READY 0xf1f2f4a5
38#define MWL8K_INT_CODE_CMD_FINISHED 0x00000005
Lennert Buytenheka66098d2009-03-10 10:13:33 +010039#define MWL8K_HIU_SCRATCH 0x00000c40
40
41/* Host->device communications */
42#define MWL8K_HIU_H2A_INTERRUPT_EVENTS 0x00000c18
43#define MWL8K_HIU_H2A_INTERRUPT_STATUS 0x00000c1c
44#define MWL8K_HIU_H2A_INTERRUPT_MASK 0x00000c20
45#define MWL8K_HIU_H2A_INTERRUPT_CLEAR_SEL 0x00000c24
46#define MWL8K_HIU_H2A_INTERRUPT_STATUS_MASK 0x00000c28
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020047#define MWL8K_H2A_INT_DUMMY (1 << 20)
48#define MWL8K_H2A_INT_RESET (1 << 15)
49#define MWL8K_H2A_INT_DOORBELL (1 << 1)
50#define MWL8K_H2A_INT_PPA_READY (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010051
52/* Device->host communications */
53#define MWL8K_HIU_A2H_INTERRUPT_EVENTS 0x00000c2c
54#define MWL8K_HIU_A2H_INTERRUPT_STATUS 0x00000c30
55#define MWL8K_HIU_A2H_INTERRUPT_MASK 0x00000c34
56#define MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL 0x00000c38
57#define MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK 0x00000c3c
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +020058#define MWL8K_A2H_INT_DUMMY (1 << 20)
59#define MWL8K_A2H_INT_CHNL_SWITCHED (1 << 11)
60#define MWL8K_A2H_INT_QUEUE_EMPTY (1 << 10)
61#define MWL8K_A2H_INT_RADAR_DETECT (1 << 7)
62#define MWL8K_A2H_INT_RADIO_ON (1 << 6)
63#define MWL8K_A2H_INT_RADIO_OFF (1 << 5)
64#define MWL8K_A2H_INT_MAC_EVENT (1 << 3)
65#define MWL8K_A2H_INT_OPC_DONE (1 << 2)
66#define MWL8K_A2H_INT_RX_READY (1 << 1)
67#define MWL8K_A2H_INT_TX_DONE (1 << 0)
Lennert Buytenheka66098d2009-03-10 10:13:33 +010068
69#define MWL8K_A2H_EVENTS (MWL8K_A2H_INT_DUMMY | \
70 MWL8K_A2H_INT_CHNL_SWITCHED | \
71 MWL8K_A2H_INT_QUEUE_EMPTY | \
72 MWL8K_A2H_INT_RADAR_DETECT | \
73 MWL8K_A2H_INT_RADIO_ON | \
74 MWL8K_A2H_INT_RADIO_OFF | \
75 MWL8K_A2H_INT_MAC_EVENT | \
76 MWL8K_A2H_INT_OPC_DONE | \
77 MWL8K_A2H_INT_RX_READY | \
78 MWL8K_A2H_INT_TX_DONE)
79
Lennert Buytenheka66098d2009-03-10 10:13:33 +010080#define MWL8K_RX_QUEUES 1
81#define MWL8K_TX_QUEUES 4
82
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +020083struct rxd_ops {
84 int rxd_size;
85 void (*rxd_init)(void *rxd, dma_addr_t next_dma_addr);
86 void (*rxd_refill)(void *rxd, dma_addr_t addr, int len);
Lennert Buytenhek20f09c32009-11-30 18:12:08 +010087 int (*rxd_process)(void *rxd, struct ieee80211_rx_status *status,
88 __le16 *qos);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +020089};
90
Lennert Buytenhek45a390d2009-10-22 20:20:47 +020091struct mwl8k_device_info {
Lennert Buytenheka74b2952009-10-22 20:20:50 +020092 char *part_name;
93 char *helper_image;
94 char *fw_image;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +010095 struct rxd_ops *ap_rxd_ops;
Lennert Buytenhek45a390d2009-10-22 20:20:47 +020096};
97
Lennert Buytenheka66098d2009-03-10 10:13:33 +010098struct mwl8k_rx_queue {
Lennert Buytenhek45eb4002009-10-22 20:20:40 +020099 int rxd_count;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100100
101 /* hw receives here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200102 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100103
104 /* refill descs here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200105 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100106
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200107 void *rxd;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200108 dma_addr_t rxd_dma;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200109 struct {
110 struct sk_buff *skb;
111 DECLARE_PCI_UNMAP_ADDR(dma)
112 } *buf;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100113};
114
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100115struct mwl8k_tx_queue {
116 /* hw transmits here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200117 int head;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100118
119 /* sw appends here */
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200120 int tail;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100121
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200122 struct ieee80211_tx_queue_stats stats;
123 struct mwl8k_tx_desc *txd;
124 dma_addr_t txd_dma;
125 struct sk_buff **skb;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100126};
127
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100128struct mwl8k_priv {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100129 struct ieee80211_hw *hw;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100130 struct pci_dev *pdev;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100131
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200132 struct mwl8k_device_info *device_info;
133
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100134 void __iomem *sram;
135 void __iomem *regs;
136
137 /* firmware */
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100138 struct firmware *fw_helper;
139 struct firmware *fw_ucode;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100140
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100141 /* hardware/firmware parameters */
142 bool ap_fw;
143 struct rxd_ops *rxd_ops;
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100144 struct ieee80211_supported_band band_24;
145 struct ieee80211_channel channels_24[14];
146 struct ieee80211_rate rates_24[14];
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100147 struct ieee80211_supported_band band_50;
148 struct ieee80211_channel channels_50[4];
149 struct ieee80211_rate rates_50[9];
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100150 u32 ap_macids_supported;
151 u32 sta_macids_supported;
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +0100152
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200153 /* firmware access */
154 struct mutex fw_mutex;
155 struct task_struct *fw_mutex_owner;
156 int fw_mutex_depth;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200157 struct completion *hostcmd_wait;
158
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100159 /* lock held over TX and TX reap */
160 spinlock_t tx_lock;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100161
Lennert Buytenhek88de754a2009-10-22 20:19:37 +0200162 /* TX quiesce completion, protected by fw_mutex and tx_lock */
163 struct completion *tx_wait;
164
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100165 /* List of interfaces. */
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +0100166 u32 macids_used;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100167 struct list_head vif_list;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100168
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100169 /* power management status cookie from firmware */
170 u32 *cookie;
171 dma_addr_t cookie_dma;
172
173 u16 num_mcaddrs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100174 u8 hw_rev;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +0200175 u32 fw_rev;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100176
177 /*
178 * Running count of TX packets in flight, to avoid
179 * iterating over the transmit rings each time.
180 */
181 int pending_tx_pkts;
182
183 struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES];
184 struct mwl8k_tx_queue txq[MWL8K_TX_QUEUES];
185
Lennert Buytenhekc46563b2009-07-16 12:14:58 +0200186 bool radio_on;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +0200187 bool radio_short_preamble;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +0200188 bool sniffer_enabled;
Lennert Buytenhek0439b1f2009-07-16 12:34:02 +0200189 bool wmm_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100190
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +0100191 struct work_struct sta_notify_worker;
192 spinlock_t sta_notify_list_lock;
193 struct list_head sta_notify_list;
194
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100195 /* XXX need to convert this to handle multiple interfaces */
196 bool capture_beacon;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200197 u8 capture_bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100198 struct sk_buff *beacon_skb;
199
200 /*
201 * This FJ worker has to be global as it is scheduled from the
202 * RX handler. At this point we don't know which interface it
203 * belongs to until the list of bssids waiting to complete join
204 * is checked.
205 */
206 struct work_struct finalize_join_worker;
207
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +0100208 /* Tasklet to perform TX reclaim. */
209 struct tasklet_struct poll_tx_task;
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +0100210
211 /* Tasklet to perform RX. */
212 struct tasklet_struct poll_rx_task;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100213};
214
215/* Per interface specific private data */
216struct mwl8k_vif {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +0100217 struct list_head list;
218 struct ieee80211_vif *vif;
219
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100220 /* Firmware macid for this vif. */
221 int macid;
222
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +0100223 /* Non AMPDU sequence number assigned by driver. */
Lennert Buytenheka6804002010-01-04 21:55:42 +0100224 u16 seqno;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100225};
Lennert Buytenheka94cc972009-08-03 21:58:57 +0200226#define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv))
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100227
Lennert Buytenheka6804002010-01-04 21:55:42 +0100228struct mwl8k_sta {
229 /* Index into station database. Returned by UPDATE_STADB. */
230 u8 peer_id;
231};
232#define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv))
233
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100234static const struct ieee80211_channel mwl8k_channels_24[] = {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100235 { .center_freq = 2412, .hw_value = 1, },
236 { .center_freq = 2417, .hw_value = 2, },
237 { .center_freq = 2422, .hw_value = 3, },
238 { .center_freq = 2427, .hw_value = 4, },
239 { .center_freq = 2432, .hw_value = 5, },
240 { .center_freq = 2437, .hw_value = 6, },
241 { .center_freq = 2442, .hw_value = 7, },
242 { .center_freq = 2447, .hw_value = 8, },
243 { .center_freq = 2452, .hw_value = 9, },
244 { .center_freq = 2457, .hw_value = 10, },
245 { .center_freq = 2462, .hw_value = 11, },
Lennert Buytenhek647ca6b2009-11-30 18:32:20 +0100246 { .center_freq = 2467, .hw_value = 12, },
247 { .center_freq = 2472, .hw_value = 13, },
248 { .center_freq = 2484, .hw_value = 14, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100249};
250
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100251static const struct ieee80211_rate mwl8k_rates_24[] = {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100252 { .bitrate = 10, .hw_value = 2, },
253 { .bitrate = 20, .hw_value = 4, },
254 { .bitrate = 55, .hw_value = 11, },
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200255 { .bitrate = 110, .hw_value = 22, },
256 { .bitrate = 220, .hw_value = 44, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100257 { .bitrate = 60, .hw_value = 12, },
258 { .bitrate = 90, .hw_value = 18, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100259 { .bitrate = 120, .hw_value = 24, },
260 { .bitrate = 180, .hw_value = 36, },
261 { .bitrate = 240, .hw_value = 48, },
262 { .bitrate = 360, .hw_value = 72, },
263 { .bitrate = 480, .hw_value = 96, },
264 { .bitrate = 540, .hw_value = 108, },
Lennert Buytenhek140eb5e2009-11-30 18:11:44 +0100265 { .bitrate = 720, .hw_value = 144, },
266};
267
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +0100268static const struct ieee80211_channel mwl8k_channels_50[] = {
269 { .center_freq = 5180, .hw_value = 36, },
270 { .center_freq = 5200, .hw_value = 40, },
271 { .center_freq = 5220, .hw_value = 44, },
272 { .center_freq = 5240, .hw_value = 48, },
273};
274
275static const struct ieee80211_rate mwl8k_rates_50[] = {
276 { .bitrate = 60, .hw_value = 12, },
277 { .bitrate = 90, .hw_value = 18, },
278 { .bitrate = 120, .hw_value = 24, },
279 { .bitrate = 180, .hw_value = 36, },
280 { .bitrate = 240, .hw_value = 48, },
281 { .bitrate = 360, .hw_value = 72, },
282 { .bitrate = 480, .hw_value = 96, },
283 { .bitrate = 540, .hw_value = 108, },
284 { .bitrate = 720, .hw_value = 144, },
285};
286
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100287/* Set or get info from Firmware */
288#define MWL8K_CMD_SET 0x0001
289#define MWL8K_CMD_GET 0x0000
290
291/* Firmware command codes */
292#define MWL8K_CMD_CODE_DNLD 0x0001
293#define MWL8K_CMD_GET_HW_SPEC 0x0003
Lennert Buytenhek42fba212009-10-22 20:21:30 +0200294#define MWL8K_CMD_SET_HW_SPEC 0x0004
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100295#define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010
296#define MWL8K_CMD_GET_STAT 0x0014
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200297#define MWL8K_CMD_RADIO_CONTROL 0x001c
298#define MWL8K_CMD_RF_TX_POWER 0x001e
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200299#define MWL8K_CMD_RF_ANTENNA 0x0020
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +0100300#define MWL8K_CMD_SET_BEACON 0x0100 /* per-vif */
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100301#define MWL8K_CMD_SET_PRE_SCAN 0x0107
302#define MWL8K_CMD_SET_POST_SCAN 0x0108
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200303#define MWL8K_CMD_SET_RF_CHANNEL 0x010a
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100304#define MWL8K_CMD_SET_AID 0x010d
305#define MWL8K_CMD_SET_RATE 0x0110
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200306#define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100307#define MWL8K_CMD_RTS_THRESHOLD 0x0113
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200308#define MWL8K_CMD_SET_SLOT 0x0114
309#define MWL8K_CMD_SET_EDCA_PARAMS 0x0115
310#define MWL8K_CMD_SET_WMM_MODE 0x0123
311#define MWL8K_CMD_MIMO_CONFIG 0x0125
312#define MWL8K_CMD_USE_FIXED_RATE 0x0126
313#define MWL8K_CMD_ENABLE_SNIFFER 0x0150
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +0100314#define MWL8K_CMD_SET_MAC_ADDR 0x0202 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200315#define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +0100316#define MWL8K_CMD_BSS_START 0x1100 /* per-vif */
317#define MWL8K_CMD_SET_NEW_STN 0x1111 /* per-vif */
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200318#define MWL8K_CMD_UPDATE_STADB 0x1123
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100319
320static const char *mwl8k_cmd_name(u16 cmd, char *buf, int bufsize)
321{
322#define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\
323 snprintf(buf, bufsize, "%s", #x);\
324 return buf;\
325 } while (0)
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +0200326 switch (cmd & ~0x8000) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100327 MWL8K_CMDNAME(CODE_DNLD);
328 MWL8K_CMDNAME(GET_HW_SPEC);
Lennert Buytenhek42fba212009-10-22 20:21:30 +0200329 MWL8K_CMDNAME(SET_HW_SPEC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100330 MWL8K_CMDNAME(MAC_MULTICAST_ADR);
331 MWL8K_CMDNAME(GET_STAT);
332 MWL8K_CMDNAME(RADIO_CONTROL);
333 MWL8K_CMDNAME(RF_TX_POWER);
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200334 MWL8K_CMDNAME(RF_ANTENNA);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100335 MWL8K_CMDNAME(SET_BEACON);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100336 MWL8K_CMDNAME(SET_PRE_SCAN);
337 MWL8K_CMDNAME(SET_POST_SCAN);
338 MWL8K_CMDNAME(SET_RF_CHANNEL);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100339 MWL8K_CMDNAME(SET_AID);
340 MWL8K_CMDNAME(SET_RATE);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200341 MWL8K_CMDNAME(SET_FINALIZE_JOIN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100342 MWL8K_CMDNAME(RTS_THRESHOLD);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200343 MWL8K_CMDNAME(SET_SLOT);
344 MWL8K_CMDNAME(SET_EDCA_PARAMS);
345 MWL8K_CMDNAME(SET_WMM_MODE);
346 MWL8K_CMDNAME(MIMO_CONFIG);
347 MWL8K_CMDNAME(USE_FIXED_RATE);
348 MWL8K_CMDNAME(ENABLE_SNIFFER);
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200349 MWL8K_CMDNAME(SET_MAC_ADDR);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200350 MWL8K_CMDNAME(SET_RATEADAPT_MODE);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100351 MWL8K_CMDNAME(BSS_START);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +0100352 MWL8K_CMDNAME(SET_NEW_STN);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200353 MWL8K_CMDNAME(UPDATE_STADB);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100354 default:
355 snprintf(buf, bufsize, "0x%x", cmd);
356 }
357#undef MWL8K_CMDNAME
358
359 return buf;
360}
361
362/* Hardware and firmware reset */
363static void mwl8k_hw_reset(struct mwl8k_priv *priv)
364{
365 iowrite32(MWL8K_H2A_INT_RESET,
366 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
367 iowrite32(MWL8K_H2A_INT_RESET,
368 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
369 msleep(20);
370}
371
372/* Release fw image */
373static void mwl8k_release_fw(struct firmware **fw)
374{
375 if (*fw == NULL)
376 return;
377 release_firmware(*fw);
378 *fw = NULL;
379}
380
381static void mwl8k_release_firmware(struct mwl8k_priv *priv)
382{
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100383 mwl8k_release_fw(&priv->fw_ucode);
384 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100385}
386
387/* Request fw image */
388static int mwl8k_request_fw(struct mwl8k_priv *priv,
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200389 const char *fname, struct firmware **fw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100390{
391 /* release current image */
392 if (*fw != NULL)
393 mwl8k_release_fw(fw);
394
395 return request_firmware((const struct firmware **)fw,
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200396 fname, &priv->pdev->dev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100397}
398
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200399static int mwl8k_request_firmware(struct mwl8k_priv *priv)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100400{
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200401 struct mwl8k_device_info *di = priv->device_info;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100402 int rc;
403
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200404 if (di->helper_image != NULL) {
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100405 rc = mwl8k_request_fw(priv, di->helper_image, &priv->fw_helper);
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200406 if (rc) {
407 printk(KERN_ERR "%s: Error requesting helper "
408 "firmware file %s\n", pci_name(priv->pdev),
409 di->helper_image);
410 return rc;
411 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100412 }
413
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100414 rc = mwl8k_request_fw(priv, di->fw_image, &priv->fw_ucode);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100415 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200416 printk(KERN_ERR "%s: Error requesting firmware file %s\n",
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200417 pci_name(priv->pdev), di->fw_image);
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100418 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100419 return rc;
420 }
421
422 return 0;
423}
424
425struct mwl8k_cmd_pkt {
426 __le16 code;
427 __le16 length;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100428 __u8 seq_num;
429 __u8 macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100430 __le16 result;
431 char payload[0];
432} __attribute__((packed));
433
434/*
435 * Firmware loading.
436 */
437static int
438mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length)
439{
440 void __iomem *regs = priv->regs;
441 dma_addr_t dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100442 int loops;
443
444 dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE);
445 if (pci_dma_mapping_error(priv->pdev, dma_addr))
446 return -ENOMEM;
447
448 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
449 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
450 iowrite32(MWL8K_H2A_INT_DOORBELL,
451 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
452 iowrite32(MWL8K_H2A_INT_DUMMY,
453 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
454
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100455 loops = 1000;
456 do {
457 u32 int_code;
458
459 int_code = ioread32(regs + MWL8K_HIU_INT_CODE);
460 if (int_code == MWL8K_INT_CODE_CMD_FINISHED) {
461 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100462 break;
463 }
464
Lennert Buytenhek3d76e822009-10-22 20:20:16 +0200465 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100466 udelay(1);
467 } while (--loops);
468
469 pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE);
470
Lennert Buytenhekd4b705702009-07-16 12:44:45 +0200471 return loops ? 0 : -ETIMEDOUT;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100472}
473
474static int mwl8k_load_fw_image(struct mwl8k_priv *priv,
475 const u8 *data, size_t length)
476{
477 struct mwl8k_cmd_pkt *cmd;
478 int done;
479 int rc = 0;
480
481 cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL);
482 if (cmd == NULL)
483 return -ENOMEM;
484
485 cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD);
486 cmd->seq_num = 0;
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +0100487 cmd->macid = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100488 cmd->result = 0;
489
490 done = 0;
491 while (length) {
492 int block_size = length > 256 ? 256 : length;
493
494 memcpy(cmd->payload, data + done, block_size);
495 cmd->length = cpu_to_le16(block_size);
496
497 rc = mwl8k_send_fw_load_cmd(priv, cmd,
498 sizeof(*cmd) + block_size);
499 if (rc)
500 break;
501
502 done += block_size;
503 length -= block_size;
504 }
505
506 if (!rc) {
507 cmd->length = 0;
508 rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd));
509 }
510
511 kfree(cmd);
512
513 return rc;
514}
515
516static int mwl8k_feed_fw_image(struct mwl8k_priv *priv,
517 const u8 *data, size_t length)
518{
519 unsigned char *buffer;
520 int may_continue, rc = 0;
521 u32 done, prev_block_size;
522
523 buffer = kmalloc(1024, GFP_KERNEL);
524 if (buffer == NULL)
525 return -ENOMEM;
526
527 done = 0;
528 prev_block_size = 0;
529 may_continue = 1000;
530 while (may_continue > 0) {
531 u32 block_size;
532
533 block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH);
534 if (block_size & 1) {
535 block_size &= ~1;
536 may_continue--;
537 } else {
538 done += prev_block_size;
539 length -= prev_block_size;
540 }
541
542 if (block_size > 1024 || block_size > length) {
543 rc = -EOVERFLOW;
544 break;
545 }
546
547 if (length == 0) {
548 rc = 0;
549 break;
550 }
551
552 if (block_size == 0) {
553 rc = -EPROTO;
554 may_continue--;
555 udelay(1);
556 continue;
557 }
558
559 prev_block_size = block_size;
560 memcpy(buffer, data + done, block_size);
561
562 rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size);
563 if (rc)
564 break;
565 }
566
567 if (!rc && length != 0)
568 rc = -EREMOTEIO;
569
570 kfree(buffer);
571
572 return rc;
573}
574
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200575static int mwl8k_load_firmware(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100576{
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200577 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100578 struct firmware *fw = priv->fw_ucode;
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200579 int rc;
580 int loops;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100581
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200582 if (!memcmp(fw->data, "\x01\x00\x00\x00", 4)) {
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100583 struct firmware *helper = priv->fw_helper;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100584
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200585 if (helper == NULL) {
586 printk(KERN_ERR "%s: helper image needed but none "
587 "given\n", pci_name(priv->pdev));
588 return -EINVAL;
589 }
590
591 rc = mwl8k_load_fw_image(priv, helper->data, helper->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100592 if (rc) {
593 printk(KERN_ERR "%s: unable to load firmware "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200594 "helper image\n", pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100595 return rc;
596 }
Lennert Buytenhek89b872e2009-11-30 18:13:20 +0100597 msleep(5);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100598
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200599 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100600 } else {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200601 rc = mwl8k_load_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100602 }
603
604 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200605 printk(KERN_ERR "%s: unable to load firmware image\n",
606 pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100607 return rc;
608 }
609
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100610 iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100611
Lennert Buytenhek89b872e2009-11-30 18:13:20 +0100612 loops = 500000;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100613 do {
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200614 u32 ready_code;
615
616 ready_code = ioread32(priv->regs + MWL8K_HIU_INT_CODE);
617 if (ready_code == MWL8K_FWAP_READY) {
618 priv->ap_fw = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100619 break;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200620 } else if (ready_code == MWL8K_FWSTA_READY) {
621 priv->ap_fw = 0;
622 break;
623 }
624
625 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100626 udelay(1);
627 } while (--loops);
628
629 return loops ? 0 : -ETIMEDOUT;
630}
631
632
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100633/* DMA header used by firmware and hardware. */
634struct mwl8k_dma_data {
635 __le16 fwlen;
636 struct ieee80211_hdr wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100637 char data[0];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100638} __attribute__((packed));
639
640/* Routines to add/remove DMA header from skb. */
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100641static inline void mwl8k_remove_dma_header(struct sk_buff *skb, __le16 qos)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100642{
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100643 struct mwl8k_dma_data *tr;
644 int hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100645
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100646 tr = (struct mwl8k_dma_data *)skb->data;
647 hdrlen = ieee80211_hdrlen(tr->wh.frame_control);
648
649 if (hdrlen != sizeof(tr->wh)) {
650 if (ieee80211_is_data_qos(tr->wh.frame_control)) {
651 memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2);
652 *((__le16 *)(tr->data - 2)) = qos;
653 } else {
654 memmove(tr->data - hdrlen, &tr->wh, hdrlen);
655 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100656 }
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100657
658 if (hdrlen != sizeof(*tr))
659 skb_pull(skb, sizeof(*tr) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100660}
661
Lennert Buytenhek76266b22009-07-16 11:07:09 +0200662static inline void mwl8k_add_dma_header(struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100663{
664 struct ieee80211_hdr *wh;
Lennert Buytenhekca009302009-11-30 18:12:20 +0100665 int hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100666 struct mwl8k_dma_data *tr;
667
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100668 /*
Lennert Buytenhekca009302009-11-30 18:12:20 +0100669 * Add a firmware DMA header; the firmware requires that we
670 * present a 2-byte payload length followed by a 4-address
671 * header (without QoS field), followed (optionally) by any
672 * WEP/ExtIV header (but only filled in for CCMP).
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100673 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100674 wh = (struct ieee80211_hdr *)skb->data;
675
676 hdrlen = ieee80211_hdrlen(wh->frame_control);
677 if (hdrlen != sizeof(*tr))
678 skb_push(skb, sizeof(*tr) - hdrlen);
679
680 if (ieee80211_is_data_qos(wh->frame_control))
681 hdrlen -= 2;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100682
683 tr = (struct mwl8k_dma_data *)skb->data;
684 if (wh != &tr->wh)
685 memmove(&tr->wh, wh, hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100686 if (hdrlen != sizeof(tr->wh))
687 memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100688
689 /*
690 * Firmware length is the length of the fully formed "802.11
691 * payload". That is, everything except for the 802.11 header.
692 * This includes all crypto material including the MIC.
693 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100694 tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100695}
696
697
698/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100699 * Packet reception for 88w8366 AP firmware.
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200700 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100701struct mwl8k_rxd_8366_ap {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200702 __le16 pkt_len;
703 __u8 sq2;
704 __u8 rate;
705 __le32 pkt_phys_addr;
706 __le32 next_rxd_phys_addr;
707 __le16 qos_control;
708 __le16 htsig2;
709 __le32 hw_rssi_info;
710 __le32 hw_noise_floor_info;
711 __u8 noise_floor;
712 __u8 pad0[3];
713 __u8 rssi;
714 __u8 rx_status;
715 __u8 channel;
716 __u8 rx_ctrl;
717} __attribute__((packed));
718
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100719#define MWL8K_8366_AP_RATE_INFO_MCS_FORMAT 0x80
720#define MWL8K_8366_AP_RATE_INFO_40MHZ 0x40
721#define MWL8K_8366_AP_RATE_INFO_RATEID(x) ((x) & 0x3f)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100722
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100723#define MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST 0x80
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200724
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100725static void mwl8k_rxd_8366_ap_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200726{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100727 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200728
729 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100730 rxd->rx_ctrl = MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200731}
732
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100733static void mwl8k_rxd_8366_ap_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200734{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100735 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200736
737 rxd->pkt_len = cpu_to_le16(len);
738 rxd->pkt_phys_addr = cpu_to_le32(addr);
739 wmb();
740 rxd->rx_ctrl = 0;
741}
742
743static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100744mwl8k_rxd_8366_ap_process(void *_rxd, struct ieee80211_rx_status *status,
745 __le16 *qos)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200746{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100747 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200748
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100749 if (!(rxd->rx_ctrl & MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200750 return -1;
751 rmb();
752
753 memset(status, 0, sizeof(*status));
754
755 status->signal = -rxd->rssi;
756 status->noise = -rxd->noise_floor;
757
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100758 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_MCS_FORMAT) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200759 status->flag |= RX_FLAG_HT;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100760 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_40MHZ)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100761 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100762 status->rate_idx = MWL8K_8366_AP_RATE_INFO_RATEID(rxd->rate);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200763 } else {
764 int i;
765
Lennert Buytenhek777ad372010-01-12 13:48:04 +0100766 for (i = 0; i < ARRAY_SIZE(mwl8k_rates_24); i++) {
767 if (mwl8k_rates_24[i].hw_value == rxd->rate) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200768 status->rate_idx = i;
769 break;
770 }
771 }
772 }
773
Lennert Buytenhek85478342010-01-12 13:48:56 +0100774 if (rxd->channel > 14) {
775 status->band = IEEE80211_BAND_5GHZ;
776 if (!(status->flag & RX_FLAG_HT))
777 status->rate_idx -= 5;
778 } else {
779 status->band = IEEE80211_BAND_2GHZ;
780 }
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200781 status->freq = ieee80211_channel_to_frequency(rxd->channel);
782
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100783 *qos = rxd->qos_control;
784
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200785 return le16_to_cpu(rxd->pkt_len);
786}
787
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100788static struct rxd_ops rxd_8366_ap_ops = {
789 .rxd_size = sizeof(struct mwl8k_rxd_8366_ap),
790 .rxd_init = mwl8k_rxd_8366_ap_init,
791 .rxd_refill = mwl8k_rxd_8366_ap_refill,
792 .rxd_process = mwl8k_rxd_8366_ap_process,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200793};
794
795/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100796 * Packet reception for STA firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100797 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100798struct mwl8k_rxd_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100799 __le16 pkt_len;
800 __u8 link_quality;
801 __u8 noise_level;
802 __le32 pkt_phys_addr;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200803 __le32 next_rxd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100804 __le16 qos_control;
805 __le16 rate_info;
806 __le32 pad0[4];
807 __u8 rssi;
808 __u8 channel;
809 __le16 pad1;
810 __u8 rx_ctrl;
811 __u8 rx_status;
812 __u8 pad2[2];
813} __attribute__((packed));
814
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100815#define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000
816#define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3)
817#define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f)
818#define MWL8K_STA_RATE_INFO_40MHZ 0x0004
819#define MWL8K_STA_RATE_INFO_SHORTGI 0x0002
820#define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200821
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100822#define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200823
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100824static void mwl8k_rxd_sta_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200825{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100826 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200827
828 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100829 rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200830}
831
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100832static void mwl8k_rxd_sta_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200833{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100834 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200835
836 rxd->pkt_len = cpu_to_le16(len);
837 rxd->pkt_phys_addr = cpu_to_le32(addr);
838 wmb();
839 rxd->rx_ctrl = 0;
840}
841
842static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100843mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status,
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100844 __le16 *qos)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200845{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100846 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200847 u16 rate_info;
848
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100849 if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200850 return -1;
851 rmb();
852
853 rate_info = le16_to_cpu(rxd->rate_info);
854
855 memset(status, 0, sizeof(*status));
856
857 status->signal = -rxd->rssi;
858 status->noise = -rxd->noise_level;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100859 status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info);
860 status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200861
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100862 if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200863 status->flag |= RX_FLAG_SHORTPRE;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100864 if (rate_info & MWL8K_STA_RATE_INFO_40MHZ)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200865 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100866 if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200867 status->flag |= RX_FLAG_SHORT_GI;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100868 if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200869 status->flag |= RX_FLAG_HT;
870
Lennert Buytenhek85478342010-01-12 13:48:56 +0100871 if (rxd->channel > 14) {
872 status->band = IEEE80211_BAND_5GHZ;
873 if (!(status->flag & RX_FLAG_HT))
874 status->rate_idx -= 5;
875 } else {
876 status->band = IEEE80211_BAND_2GHZ;
877 }
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200878 status->freq = ieee80211_channel_to_frequency(rxd->channel);
879
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100880 *qos = rxd->qos_control;
881
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200882 return le16_to_cpu(rxd->pkt_len);
883}
884
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100885static struct rxd_ops rxd_sta_ops = {
886 .rxd_size = sizeof(struct mwl8k_rxd_sta),
887 .rxd_init = mwl8k_rxd_sta_init,
888 .rxd_refill = mwl8k_rxd_sta_refill,
889 .rxd_process = mwl8k_rxd_sta_process,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200890};
891
892
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100893#define MWL8K_RX_DESCS 256
894#define MWL8K_RX_MAXSZ 3800
895
896static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
897{
898 struct mwl8k_priv *priv = hw->priv;
899 struct mwl8k_rx_queue *rxq = priv->rxq + index;
900 int size;
901 int i;
902
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200903 rxq->rxd_count = 0;
904 rxq->head = 0;
905 rxq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100906
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200907 size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100908
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200909 rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma);
910 if (rxq->rxd == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100911 printk(KERN_ERR "%s: failed to alloc RX descriptors\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200912 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100913 return -ENOMEM;
914 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200915 memset(rxq->rxd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100916
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200917 rxq->buf = kmalloc(MWL8K_RX_DESCS * sizeof(*rxq->buf), GFP_KERNEL);
918 if (rxq->buf == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100919 printk(KERN_ERR "%s: failed to alloc RX skbuff list\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200920 wiphy_name(hw->wiphy));
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200921 pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100922 return -ENOMEM;
923 }
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200924 memset(rxq->buf, 0, MWL8K_RX_DESCS * sizeof(*rxq->buf));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100925
926 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200927 int desc_size;
928 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100929 int nexti;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200930 dma_addr_t next_dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100931
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200932 desc_size = priv->rxd_ops->rxd_size;
933 rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100934
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200935 nexti = i + 1;
936 if (nexti == MWL8K_RX_DESCS)
937 nexti = 0;
938 next_dma_addr = rxq->rxd_dma + (nexti * desc_size);
939
940 priv->rxd_ops->rxd_init(rxd, next_dma_addr);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100941 }
942
943 return 0;
944}
945
946static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
947{
948 struct mwl8k_priv *priv = hw->priv;
949 struct mwl8k_rx_queue *rxq = priv->rxq + index;
950 int refilled;
951
952 refilled = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200953 while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100954 struct sk_buff *skb;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200955 dma_addr_t addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100956 int rx;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200957 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100958
959 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
960 if (skb == NULL)
961 break;
962
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200963 addr = pci_map_single(priv->pdev, skb->data,
964 MWL8K_RX_MAXSZ, DMA_FROM_DEVICE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100965
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200966 rxq->rxd_count++;
967 rx = rxq->tail++;
968 if (rxq->tail == MWL8K_RX_DESCS)
969 rxq->tail = 0;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200970 rxq->buf[rx].skb = skb;
971 pci_unmap_addr_set(&rxq->buf[rx], dma, addr);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200972
973 rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size);
974 priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100975
976 refilled++;
977 }
978
979 return refilled;
980}
981
982/* Must be called only when the card's reception is completely halted */
983static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
984{
985 struct mwl8k_priv *priv = hw->priv;
986 struct mwl8k_rx_queue *rxq = priv->rxq + index;
987 int i;
988
989 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200990 if (rxq->buf[i].skb != NULL) {
991 pci_unmap_single(priv->pdev,
992 pci_unmap_addr(&rxq->buf[i], dma),
993 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
994 pci_unmap_addr_set(&rxq->buf[i], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100995
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200996 kfree_skb(rxq->buf[i].skb);
997 rxq->buf[i].skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100998 }
999 }
1000
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001001 kfree(rxq->buf);
1002 rxq->buf = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001003
1004 pci_free_consistent(priv->pdev,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001005 MWL8K_RX_DESCS * priv->rxd_ops->rxd_size,
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001006 rxq->rxd, rxq->rxd_dma);
1007 rxq->rxd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001008}
1009
1010
1011/*
1012 * Scan a list of BSSIDs to process for finalize join.
1013 * Allows for extension to process multiple BSSIDs.
1014 */
1015static inline int
1016mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
1017{
1018 return priv->capture_beacon &&
1019 ieee80211_is_beacon(wh->frame_control) &&
1020 !compare_ether_addr(wh->addr3, priv->capture_bssid);
1021}
1022
Lennert Buytenhek37797522009-10-22 20:19:45 +02001023static inline void mwl8k_save_beacon(struct ieee80211_hw *hw,
1024 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001025{
Lennert Buytenhek37797522009-10-22 20:19:45 +02001026 struct mwl8k_priv *priv = hw->priv;
1027
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001028 priv->capture_beacon = false;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001029 memset(priv->capture_bssid, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001030
1031 /*
1032 * Use GFP_ATOMIC as rxq_process is called from
1033 * the primary interrupt handler, memory allocation call
1034 * must not sleep.
1035 */
1036 priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
1037 if (priv->beacon_skb != NULL)
Lennert Buytenhek37797522009-10-22 20:19:45 +02001038 ieee80211_queue_work(hw, &priv->finalize_join_worker);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001039}
1040
1041static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
1042{
1043 struct mwl8k_priv *priv = hw->priv;
1044 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1045 int processed;
1046
1047 processed = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001048 while (rxq->rxd_count && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001049 struct sk_buff *skb;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001050 void *rxd;
1051 int pkt_len;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001052 struct ieee80211_rx_status status;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001053 __le16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001054
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001055 skb = rxq->buf[rxq->head].skb;
Lennert Buytenhekd25f9f12009-08-03 21:58:26 +02001056 if (skb == NULL)
1057 break;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001058
1059 rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size);
1060
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001061 pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001062 if (pkt_len < 0)
1063 break;
1064
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001065 rxq->buf[rxq->head].skb = NULL;
1066
1067 pci_unmap_single(priv->pdev,
1068 pci_unmap_addr(&rxq->buf[rxq->head], dma),
1069 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
1070 pci_unmap_addr_set(&rxq->buf[rxq->head], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001071
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001072 rxq->head++;
1073 if (rxq->head == MWL8K_RX_DESCS)
1074 rxq->head = 0;
1075
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001076 rxq->rxd_count--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001077
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001078 skb_put(skb, pkt_len);
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001079 mwl8k_remove_dma_header(skb, qos);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001080
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001081 /*
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001082 * Check for a pending join operation. Save a
1083 * copy of the beacon and schedule a tasklet to
1084 * send a FINALIZE_JOIN command to the firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001085 */
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001086 if (mwl8k_capture_bssid(priv, (void *)skb->data))
Lennert Buytenhek37797522009-10-22 20:19:45 +02001087 mwl8k_save_beacon(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001088
Johannes Bergf1d58c22009-06-17 13:13:00 +02001089 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
1090 ieee80211_rx_irqsafe(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001091
1092 processed++;
1093 }
1094
1095 return processed;
1096}
1097
1098
1099/*
1100 * Packet transmission.
1101 */
1102
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001103#define MWL8K_TXD_STATUS_OK 0x00000001
1104#define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
1105#define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
1106#define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001107#define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001108
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001109#define MWL8K_QOS_QLEN_UNSPEC 0xff00
1110#define MWL8K_QOS_ACK_POLICY_MASK 0x0060
1111#define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000
1112#define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060
1113#define MWL8K_QOS_EOSP 0x0010
1114
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001115struct mwl8k_tx_desc {
1116 __le32 status;
1117 __u8 data_rate;
1118 __u8 tx_priority;
1119 __le16 qos_control;
1120 __le32 pkt_phys_addr;
1121 __le16 pkt_len;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001122 __u8 dest_MAC_addr[ETH_ALEN];
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001123 __le32 next_txd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001124 __le32 reserved;
1125 __le16 rate_info;
1126 __u8 peer_id;
1127 __u8 tx_frag_cnt;
1128} __attribute__((packed));
1129
1130#define MWL8K_TX_DESCS 128
1131
1132static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1133{
1134 struct mwl8k_priv *priv = hw->priv;
1135 struct mwl8k_tx_queue *txq = priv->txq + index;
1136 int size;
1137 int i;
1138
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001139 memset(&txq->stats, 0, sizeof(struct ieee80211_tx_queue_stats));
1140 txq->stats.limit = MWL8K_TX_DESCS;
1141 txq->head = 0;
1142 txq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001143
1144 size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1145
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001146 txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma);
1147 if (txq->txd == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001148 printk(KERN_ERR "%s: failed to alloc TX descriptors\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001149 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001150 return -ENOMEM;
1151 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001152 memset(txq->txd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001153
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001154 txq->skb = kmalloc(MWL8K_TX_DESCS * sizeof(*txq->skb), GFP_KERNEL);
1155 if (txq->skb == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001156 printk(KERN_ERR "%s: failed to alloc TX skbuff list\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001157 wiphy_name(hw->wiphy));
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001158 pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001159 return -ENOMEM;
1160 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001161 memset(txq->skb, 0, MWL8K_TX_DESCS * sizeof(*txq->skb));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001162
1163 for (i = 0; i < MWL8K_TX_DESCS; i++) {
1164 struct mwl8k_tx_desc *tx_desc;
1165 int nexti;
1166
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001167 tx_desc = txq->txd + i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001168 nexti = (i + 1) % MWL8K_TX_DESCS;
1169
1170 tx_desc->status = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001171 tx_desc->next_txd_phys_addr =
1172 cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001173 }
1174
1175 return 0;
1176}
1177
1178static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1179{
1180 iowrite32(MWL8K_H2A_INT_PPA_READY,
1181 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1182 iowrite32(MWL8K_H2A_INT_DUMMY,
1183 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1184 ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1185}
1186
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001187static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001188{
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001189 struct mwl8k_priv *priv = hw->priv;
1190 int i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001191
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001192 for (i = 0; i < MWL8K_TX_QUEUES; i++) {
1193 struct mwl8k_tx_queue *txq = priv->txq + i;
1194 int fw_owned = 0;
1195 int drv_owned = 0;
1196 int unused = 0;
1197 int desc;
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001198
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001199 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001200 struct mwl8k_tx_desc *tx_desc = txq->txd + desc;
1201 u32 status;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001202
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001203 status = le32_to_cpu(tx_desc->status);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001204 if (status & MWL8K_TXD_STATUS_FW_OWNED)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001205 fw_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001206 else
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001207 drv_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001208
1209 if (tx_desc->pkt_len == 0)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001210 unused++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001211 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001212
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001213 printk(KERN_ERR "%s: txq[%d] len=%d head=%d tail=%d "
1214 "fw_owned=%d drv_owned=%d unused=%d\n",
1215 wiphy_name(hw->wiphy), i,
1216 txq->stats.len, txq->head, txq->tail,
1217 fw_owned, drv_owned, unused);
1218 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001219}
1220
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001221/*
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001222 * Must be called with priv->fw_mutex held and tx queues stopped.
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001223 */
Lennert Buytenhek62abd3c2010-01-08 18:28:34 +01001224#define MWL8K_TX_WAIT_TIMEOUT_MS 5000
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001225
Lennert Buytenhek950d5b02009-07-17 01:48:41 +02001226static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001227{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001228 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001229 DECLARE_COMPLETION_ONSTACK(tx_wait);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001230 int retry;
1231 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001232
1233 might_sleep();
1234
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001235 /*
1236 * The TX queues are stopped at this point, so this test
1237 * doesn't need to take ->tx_lock.
1238 */
1239 if (!priv->pending_tx_pkts)
1240 return 0;
1241
1242 retry = 0;
1243 rc = 0;
1244
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001245 spin_lock_bh(&priv->tx_lock);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001246 priv->tx_wait = &tx_wait;
1247 while (!rc) {
1248 int oldcount;
1249 unsigned long timeout;
1250
1251 oldcount = priv->pending_tx_pkts;
1252
1253 spin_unlock_bh(&priv->tx_lock);
1254 timeout = wait_for_completion_timeout(&tx_wait,
1255 msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS));
1256 spin_lock_bh(&priv->tx_lock);
1257
1258 if (timeout) {
1259 WARN_ON(priv->pending_tx_pkts);
1260 if (retry) {
1261 printk(KERN_NOTICE "%s: tx rings drained\n",
1262 wiphy_name(hw->wiphy));
1263 }
1264 break;
1265 }
1266
1267 if (priv->pending_tx_pkts < oldcount) {
Lennert Buytenhek9a2303b2010-01-04 21:54:25 +01001268 printk(KERN_NOTICE "%s: waiting for tx rings "
1269 "to drain (%d -> %d pkts)\n",
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001270 wiphy_name(hw->wiphy), oldcount,
1271 priv->pending_tx_pkts);
1272 retry = 1;
1273 continue;
1274 }
1275
1276 priv->tx_wait = NULL;
1277
1278 printk(KERN_ERR "%s: tx rings stuck for %d ms\n",
1279 wiphy_name(hw->wiphy), MWL8K_TX_WAIT_TIMEOUT_MS);
1280 mwl8k_dump_tx_rings(hw);
1281
1282 rc = -ETIMEDOUT;
1283 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001284 spin_unlock_bh(&priv->tx_lock);
1285
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001286 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001287}
1288
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02001289#define MWL8K_TXD_SUCCESS(status) \
1290 ((status) & (MWL8K_TXD_STATUS_OK | \
1291 MWL8K_TXD_STATUS_OK_RETRY | \
1292 MWL8K_TXD_STATUS_OK_MORE_RETRY))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001293
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001294static int
1295mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001296{
1297 struct mwl8k_priv *priv = hw->priv;
1298 struct mwl8k_tx_queue *txq = priv->txq + index;
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001299 int processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001300
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001301 processed = 0;
1302 while (txq->stats.len > 0 && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001303 int tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001304 struct mwl8k_tx_desc *tx_desc;
1305 unsigned long addr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001306 int size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001307 struct sk_buff *skb;
1308 struct ieee80211_tx_info *info;
1309 u32 status;
1310
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001311 tx = txq->head;
1312 tx_desc = txq->txd + tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001313
1314 status = le32_to_cpu(tx_desc->status);
1315
1316 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1317 if (!force)
1318 break;
1319 tx_desc->status &=
1320 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1321 }
1322
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001323 txq->head = (tx + 1) % MWL8K_TX_DESCS;
1324 BUG_ON(txq->stats.len == 0);
1325 txq->stats.len--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001326 priv->pending_tx_pkts--;
1327
1328 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001329 size = le16_to_cpu(tx_desc->pkt_len);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001330 skb = txq->skb[tx];
1331 txq->skb[tx] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001332
1333 BUG_ON(skb == NULL);
1334 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1335
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001336 mwl8k_remove_dma_header(skb, tx_desc->qos_control);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001337
1338 /* Mark descriptor as unused */
1339 tx_desc->pkt_phys_addr = 0;
1340 tx_desc->pkt_len = 0;
1341
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001342 info = IEEE80211_SKB_CB(skb);
1343 ieee80211_tx_info_clear_status(info);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001344 if (MWL8K_TXD_SUCCESS(status))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001345 info->flags |= IEEE80211_TX_STAT_ACK;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001346
1347 ieee80211_tx_status_irqsafe(hw, skb);
1348
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001349 processed++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001350 }
1351
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001352 if (processed && priv->radio_on && !mutex_is_locked(&priv->fw_mutex))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001353 ieee80211_wake_queue(hw, index);
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001354
1355 return processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001356}
1357
1358/* must be called only when the card's transmit is completely halted */
1359static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1360{
1361 struct mwl8k_priv *priv = hw->priv;
1362 struct mwl8k_tx_queue *txq = priv->txq + index;
1363
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001364 mwl8k_txq_reclaim(hw, index, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001365
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001366 kfree(txq->skb);
1367 txq->skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001368
1369 pci_free_consistent(priv->pdev,
1370 MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001371 txq->txd, txq->txd_dma);
1372 txq->txd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001373}
1374
1375static int
1376mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb)
1377{
1378 struct mwl8k_priv *priv = hw->priv;
1379 struct ieee80211_tx_info *tx_info;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001380 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001381 struct ieee80211_hdr *wh;
1382 struct mwl8k_tx_queue *txq;
1383 struct mwl8k_tx_desc *tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001384 dma_addr_t dma;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001385 u32 txstatus;
1386 u8 txdatarate;
1387 u16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001388
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001389 wh = (struct ieee80211_hdr *)skb->data;
1390 if (ieee80211_is_data_qos(wh->frame_control))
1391 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1392 else
1393 qos = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001394
Lennert Buytenhek76266b22009-07-16 11:07:09 +02001395 mwl8k_add_dma_header(skb);
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001396 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001397
1398 tx_info = IEEE80211_SKB_CB(skb);
1399 mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001400
1401 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001402 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Lennert Buytenhek657232b2010-01-12 13:47:47 +01001403 wh->seq_ctrl |= cpu_to_le16(mwl8k_vif->seqno);
1404 mwl8k_vif->seqno += 0x10;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001405 }
1406
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001407 /* Setup firmware control bit fields for each frame type. */
1408 txstatus = 0;
1409 txdatarate = 0;
1410 if (ieee80211_is_mgmt(wh->frame_control) ||
1411 ieee80211_is_ctl(wh->frame_control)) {
1412 txdatarate = 0;
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001413 qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001414 } else if (ieee80211_is_data(wh->frame_control)) {
1415 txdatarate = 1;
1416 if (is_multicast_ether_addr(wh->addr1))
1417 txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX;
1418
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001419 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001420 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001421 qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001422 else
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001423 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001424 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001425
1426 dma = pci_map_single(priv->pdev, skb->data,
1427 skb->len, PCI_DMA_TODEVICE);
1428
1429 if (pci_dma_mapping_error(priv->pdev, dma)) {
1430 printk(KERN_DEBUG "%s: failed to dma map skb, "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001431 "dropping TX frame.\n", wiphy_name(hw->wiphy));
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001432 dev_kfree_skb(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001433 return NETDEV_TX_OK;
1434 }
1435
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001436 spin_lock_bh(&priv->tx_lock);
1437
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001438 txq = priv->txq + index;
1439
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001440 BUG_ON(txq->skb[txq->tail] != NULL);
1441 txq->skb[txq->tail] = skb;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001442
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001443 tx = txq->txd + txq->tail;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001444 tx->data_rate = txdatarate;
1445 tx->tx_priority = index;
1446 tx->qos_control = cpu_to_le16(qos);
1447 tx->pkt_phys_addr = cpu_to_le32(dma);
1448 tx->pkt_len = cpu_to_le16(skb->len);
1449 tx->rate_info = 0;
Lennert Buytenheka6804002010-01-04 21:55:42 +01001450 if (!priv->ap_fw && tx_info->control.sta != NULL)
1451 tx->peer_id = MWL8K_STA(tx_info->control.sta)->peer_id;
1452 else
1453 tx->peer_id = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001454 wmb();
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001455 tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
1456
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001457 txq->stats.count++;
1458 txq->stats.len++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001459 priv->pending_tx_pkts++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001460
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001461 txq->tail++;
1462 if (txq->tail == MWL8K_TX_DESCS)
1463 txq->tail = 0;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001464
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001465 if (txq->head == txq->tail)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001466 ieee80211_stop_queue(hw, index);
1467
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001468 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001469
1470 spin_unlock_bh(&priv->tx_lock);
1471
1472 return NETDEV_TX_OK;
1473}
1474
1475
1476/*
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001477 * Firmware access.
1478 *
1479 * We have the following requirements for issuing firmware commands:
1480 * - Some commands require that the packet transmit path is idle when
1481 * the command is issued. (For simplicity, we'll just quiesce the
1482 * transmit path for every command.)
1483 * - There are certain sequences of commands that need to be issued to
1484 * the hardware sequentially, with no other intervening commands.
1485 *
1486 * This leads to an implementation of a "firmware lock" as a mutex that
1487 * can be taken recursively, and which is taken by both the low-level
1488 * command submission function (mwl8k_post_cmd) as well as any users of
1489 * that function that require issuing of an atomic sequence of commands,
1490 * and quiesces the transmit path whenever it's taken.
1491 */
1492static int mwl8k_fw_lock(struct ieee80211_hw *hw)
1493{
1494 struct mwl8k_priv *priv = hw->priv;
1495
1496 if (priv->fw_mutex_owner != current) {
1497 int rc;
1498
1499 mutex_lock(&priv->fw_mutex);
1500 ieee80211_stop_queues(hw);
1501
1502 rc = mwl8k_tx_wait_empty(hw);
1503 if (rc) {
1504 ieee80211_wake_queues(hw);
1505 mutex_unlock(&priv->fw_mutex);
1506
1507 return rc;
1508 }
1509
1510 priv->fw_mutex_owner = current;
1511 }
1512
1513 priv->fw_mutex_depth++;
1514
1515 return 0;
1516}
1517
1518static void mwl8k_fw_unlock(struct ieee80211_hw *hw)
1519{
1520 struct mwl8k_priv *priv = hw->priv;
1521
1522 if (!--priv->fw_mutex_depth) {
1523 ieee80211_wake_queues(hw);
1524 priv->fw_mutex_owner = NULL;
1525 mutex_unlock(&priv->fw_mutex);
1526 }
1527}
1528
1529
1530/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001531 * Command processing.
1532 */
1533
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01001534/* Timeout firmware commands after 10s */
1535#define MWL8K_CMD_TIMEOUT_MS 10000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001536
1537static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
1538{
1539 DECLARE_COMPLETION_ONSTACK(cmd_wait);
1540 struct mwl8k_priv *priv = hw->priv;
1541 void __iomem *regs = priv->regs;
1542 dma_addr_t dma_addr;
1543 unsigned int dma_size;
1544 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001545 unsigned long timeout = 0;
1546 u8 buf[32];
1547
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001548 cmd->result = 0xffff;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001549 dma_size = le16_to_cpu(cmd->length);
1550 dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
1551 PCI_DMA_BIDIRECTIONAL);
1552 if (pci_dma_mapping_error(priv->pdev, dma_addr))
1553 return -ENOMEM;
1554
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001555 rc = mwl8k_fw_lock(hw);
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02001556 if (rc) {
1557 pci_unmap_single(priv->pdev, dma_addr, dma_size,
1558 PCI_DMA_BIDIRECTIONAL);
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001559 return rc;
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02001560 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001561
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001562 priv->hostcmd_wait = &cmd_wait;
1563 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
1564 iowrite32(MWL8K_H2A_INT_DOORBELL,
1565 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1566 iowrite32(MWL8K_H2A_INT_DUMMY,
1567 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001568
1569 timeout = wait_for_completion_timeout(&cmd_wait,
1570 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
1571
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001572 priv->hostcmd_wait = NULL;
1573
1574 mwl8k_fw_unlock(hw);
1575
Lennert Buytenhek37055bd2009-08-03 21:58:47 +02001576 pci_unmap_single(priv->pdev, dma_addr, dma_size,
1577 PCI_DMA_BIDIRECTIONAL);
1578
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001579 if (!timeout) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001580 printk(KERN_ERR "%s: Command %s timeout after %u ms\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001581 wiphy_name(hw->wiphy),
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001582 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
1583 MWL8K_CMD_TIMEOUT_MS);
1584 rc = -ETIMEDOUT;
1585 } else {
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01001586 int ms;
1587
1588 ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout);
1589
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001590 rc = cmd->result ? -EINVAL : 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001591 if (rc)
1592 printk(KERN_ERR "%s: Command %s error 0x%x\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001593 wiphy_name(hw->wiphy),
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001594 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
Lennert Buytenhek76c962a2009-08-24 15:42:56 +02001595 le16_to_cpu(cmd->result));
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01001596 else if (ms > 2000)
1597 printk(KERN_NOTICE "%s: Command %s took %d ms\n",
1598 wiphy_name(hw->wiphy),
1599 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
1600 ms);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001601 }
1602
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001603 return rc;
1604}
1605
Lennert Buytenhekf57ca9c2010-01-12 13:50:14 +01001606static int mwl8k_post_pervif_cmd(struct ieee80211_hw *hw,
1607 struct ieee80211_vif *vif,
1608 struct mwl8k_cmd_pkt *cmd)
1609{
1610 if (vif != NULL)
1611 cmd->macid = MWL8K_VIF(vif)->macid;
1612 return mwl8k_post_cmd(hw, cmd);
1613}
1614
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001615/*
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01001616 * Setup code shared between STA and AP firmware images.
1617 */
1618static void mwl8k_setup_2ghz_band(struct ieee80211_hw *hw)
1619{
1620 struct mwl8k_priv *priv = hw->priv;
1621
1622 BUILD_BUG_ON(sizeof(priv->channels_24) != sizeof(mwl8k_channels_24));
1623 memcpy(priv->channels_24, mwl8k_channels_24, sizeof(mwl8k_channels_24));
1624
1625 BUILD_BUG_ON(sizeof(priv->rates_24) != sizeof(mwl8k_rates_24));
1626 memcpy(priv->rates_24, mwl8k_rates_24, sizeof(mwl8k_rates_24));
1627
1628 priv->band_24.band = IEEE80211_BAND_2GHZ;
1629 priv->band_24.channels = priv->channels_24;
1630 priv->band_24.n_channels = ARRAY_SIZE(mwl8k_channels_24);
1631 priv->band_24.bitrates = priv->rates_24;
1632 priv->band_24.n_bitrates = ARRAY_SIZE(mwl8k_rates_24);
1633
1634 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band_24;
1635}
1636
Lennert Buytenhek4eae9ed2010-01-12 13:48:32 +01001637static void mwl8k_setup_5ghz_band(struct ieee80211_hw *hw)
1638{
1639 struct mwl8k_priv *priv = hw->priv;
1640
1641 BUILD_BUG_ON(sizeof(priv->channels_50) != sizeof(mwl8k_channels_50));
1642 memcpy(priv->channels_50, mwl8k_channels_50, sizeof(mwl8k_channels_50));
1643
1644 BUILD_BUG_ON(sizeof(priv->rates_50) != sizeof(mwl8k_rates_50));
1645 memcpy(priv->rates_50, mwl8k_rates_50, sizeof(mwl8k_rates_50));
1646
1647 priv->band_50.band = IEEE80211_BAND_5GHZ;
1648 priv->band_50.channels = priv->channels_50;
1649 priv->band_50.n_channels = ARRAY_SIZE(mwl8k_channels_50);
1650 priv->band_50.bitrates = priv->rates_50;
1651 priv->band_50.n_bitrates = ARRAY_SIZE(mwl8k_rates_50);
1652
1653 hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &priv->band_50;
1654}
1655
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01001656/*
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02001657 * CMD_GET_HW_SPEC (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001658 */
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02001659struct mwl8k_cmd_get_hw_spec_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001660 struct mwl8k_cmd_pkt header;
1661 __u8 hw_rev;
1662 __u8 host_interface;
1663 __le16 num_mcaddrs;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001664 __u8 perm_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001665 __le16 region_code;
1666 __le32 fw_rev;
1667 __le32 ps_cookie;
1668 __le32 caps;
1669 __u8 mcs_bitmap[16];
1670 __le32 rx_queue_ptr;
1671 __le32 num_tx_queues;
1672 __le32 tx_queue_ptrs[MWL8K_TX_QUEUES];
1673 __le32 caps2;
1674 __le32 num_tx_desc_per_queue;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001675 __le32 total_rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001676} __attribute__((packed));
1677
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001678#define MWL8K_CAP_MAX_AMSDU 0x20000000
1679#define MWL8K_CAP_GREENFIELD 0x08000000
1680#define MWL8K_CAP_AMPDU 0x04000000
1681#define MWL8K_CAP_RX_STBC 0x01000000
1682#define MWL8K_CAP_TX_STBC 0x00800000
1683#define MWL8K_CAP_SHORTGI_40MHZ 0x00400000
1684#define MWL8K_CAP_SHORTGI_20MHZ 0x00200000
1685#define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000
1686#define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000
1687#define MWL8K_CAP_DELAY_BA 0x00003000
1688#define MWL8K_CAP_MIMO 0x00000200
1689#define MWL8K_CAP_40MHZ 0x00000100
Lennert Buytenhek06953232010-01-12 13:49:41 +01001690#define MWL8K_CAP_BAND_MASK 0x00000007
1691#define MWL8K_CAP_5GHZ 0x00000004
1692#define MWL8K_CAP_2GHZ4 0x00000001
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001693
Lennert Buytenhek06953232010-01-12 13:49:41 +01001694static void
1695mwl8k_set_ht_caps(struct ieee80211_hw *hw,
1696 struct ieee80211_supported_band *band, u32 cap)
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001697{
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001698 int rx_streams;
1699 int tx_streams;
1700
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001701 band->ht_cap.ht_supported = 1;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001702
1703 if (cap & MWL8K_CAP_MAX_AMSDU)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001704 band->ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001705 if (cap & MWL8K_CAP_GREENFIELD)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001706 band->ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001707 if (cap & MWL8K_CAP_AMPDU) {
1708 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001709 band->ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
1710 band->ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001711 }
1712 if (cap & MWL8K_CAP_RX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001713 band->ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001714 if (cap & MWL8K_CAP_TX_STBC)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001715 band->ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001716 if (cap & MWL8K_CAP_SHORTGI_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001717 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001718 if (cap & MWL8K_CAP_SHORTGI_20MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001719 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001720 if (cap & MWL8K_CAP_DELAY_BA)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001721 band->ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001722 if (cap & MWL8K_CAP_40MHZ)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001723 band->ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001724
1725 rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK);
1726 tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK);
1727
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001728 band->ht_cap.mcs.rx_mask[0] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001729 if (rx_streams >= 2)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001730 band->ht_cap.mcs.rx_mask[1] = 0xff;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001731 if (rx_streams >= 3)
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001732 band->ht_cap.mcs.rx_mask[2] = 0xff;
1733 band->ht_cap.mcs.rx_mask[4] = 0x01;
1734 band->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001735
1736 if (rx_streams != tx_streams) {
Lennert Buytenhek777ad372010-01-12 13:48:04 +01001737 band->ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
1738 band->ht_cap.mcs.tx_params |= (tx_streams - 1) <<
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001739 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
1740 }
1741}
1742
Lennert Buytenhek06953232010-01-12 13:49:41 +01001743static void
1744mwl8k_set_caps(struct ieee80211_hw *hw, u32 caps)
1745{
1746 struct mwl8k_priv *priv = hw->priv;
1747
1748 if ((caps & MWL8K_CAP_2GHZ4) || !(caps & MWL8K_CAP_BAND_MASK)) {
1749 mwl8k_setup_2ghz_band(hw);
1750 if (caps & MWL8K_CAP_MIMO)
1751 mwl8k_set_ht_caps(hw, &priv->band_24, caps);
1752 }
1753
1754 if (caps & MWL8K_CAP_5GHZ) {
1755 mwl8k_setup_5ghz_band(hw);
1756 if (caps & MWL8K_CAP_MIMO)
1757 mwl8k_set_ht_caps(hw, &priv->band_50, caps);
1758 }
1759}
1760
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02001761static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001762{
1763 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02001764 struct mwl8k_cmd_get_hw_spec_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001765 int rc;
1766 int i;
1767
1768 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1769 if (cmd == NULL)
1770 return -ENOMEM;
1771
1772 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
1773 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1774
1775 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
1776 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001777 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02001778 cmd->num_tx_queues = cpu_to_le32(MWL8K_TX_QUEUES);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001779 for (i = 0; i < MWL8K_TX_QUEUES; i++)
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001780 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02001781 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001782 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001783
1784 rc = mwl8k_post_cmd(hw, &cmd->header);
1785
1786 if (!rc) {
1787 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
1788 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02001789 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001790 priv->hw_rev = cmd->hw_rev;
Lennert Buytenhek06953232010-01-12 13:49:41 +01001791 mwl8k_set_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01001792 priv->ap_macids_supported = 0x00000000;
1793 priv->sta_macids_supported = 0x00000001;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001794 }
1795
1796 kfree(cmd);
1797 return rc;
1798}
1799
1800/*
Lennert Buytenhek42fba212009-10-22 20:21:30 +02001801 * CMD_GET_HW_SPEC (AP version).
1802 */
1803struct mwl8k_cmd_get_hw_spec_ap {
1804 struct mwl8k_cmd_pkt header;
1805 __u8 hw_rev;
1806 __u8 host_interface;
1807 __le16 num_wcb;
1808 __le16 num_mcaddrs;
1809 __u8 perm_addr[ETH_ALEN];
1810 __le16 region_code;
1811 __le16 num_antenna;
1812 __le32 fw_rev;
1813 __le32 wcbbase0;
1814 __le32 rxwrptr;
1815 __le32 rxrdptr;
1816 __le32 ps_cookie;
1817 __le32 wcbbase1;
1818 __le32 wcbbase2;
1819 __le32 wcbbase3;
1820} __attribute__((packed));
1821
1822static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw)
1823{
1824 struct mwl8k_priv *priv = hw->priv;
1825 struct mwl8k_cmd_get_hw_spec_ap *cmd;
1826 int rc;
1827
1828 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1829 if (cmd == NULL)
1830 return -ENOMEM;
1831
1832 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
1833 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1834
1835 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
1836 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
1837
1838 rc = mwl8k_post_cmd(hw, &cmd->header);
1839
1840 if (!rc) {
1841 int off;
1842
1843 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
1844 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
1845 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
1846 priv->hw_rev = cmd->hw_rev;
Lennert Buytenhek1349ad22010-01-12 13:48:17 +01001847 mwl8k_setup_2ghz_band(hw);
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01001848 priv->ap_macids_supported = 0x000000ff;
1849 priv->sta_macids_supported = 0x00000000;
Lennert Buytenhek42fba212009-10-22 20:21:30 +02001850
1851 off = le32_to_cpu(cmd->wcbbase0) & 0xffff;
1852 iowrite32(cpu_to_le32(priv->txq[0].txd_dma), priv->sram + off);
1853
1854 off = le32_to_cpu(cmd->rxwrptr) & 0xffff;
1855 iowrite32(cpu_to_le32(priv->rxq[0].rxd_dma), priv->sram + off);
1856
1857 off = le32_to_cpu(cmd->rxrdptr) & 0xffff;
1858 iowrite32(cpu_to_le32(priv->rxq[0].rxd_dma), priv->sram + off);
1859
1860 off = le32_to_cpu(cmd->wcbbase1) & 0xffff;
1861 iowrite32(cpu_to_le32(priv->txq[1].txd_dma), priv->sram + off);
1862
1863 off = le32_to_cpu(cmd->wcbbase2) & 0xffff;
1864 iowrite32(cpu_to_le32(priv->txq[2].txd_dma), priv->sram + off);
1865
1866 off = le32_to_cpu(cmd->wcbbase3) & 0xffff;
1867 iowrite32(cpu_to_le32(priv->txq[3].txd_dma), priv->sram + off);
1868 }
1869
1870 kfree(cmd);
1871 return rc;
1872}
1873
1874/*
1875 * CMD_SET_HW_SPEC.
1876 */
1877struct mwl8k_cmd_set_hw_spec {
1878 struct mwl8k_cmd_pkt header;
1879 __u8 hw_rev;
1880 __u8 host_interface;
1881 __le16 num_mcaddrs;
1882 __u8 perm_addr[ETH_ALEN];
1883 __le16 region_code;
1884 __le32 fw_rev;
1885 __le32 ps_cookie;
1886 __le32 caps;
1887 __le32 rx_queue_ptr;
1888 __le32 num_tx_queues;
1889 __le32 tx_queue_ptrs[MWL8K_TX_QUEUES];
1890 __le32 flags;
1891 __le32 num_tx_desc_per_queue;
1892 __le32 total_rxd;
1893} __attribute__((packed));
1894
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01001895#define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080
1896#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP 0x00000020
1897#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON 0x00000010
Lennert Buytenhek42fba212009-10-22 20:21:30 +02001898
1899static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw)
1900{
1901 struct mwl8k_priv *priv = hw->priv;
1902 struct mwl8k_cmd_set_hw_spec *cmd;
1903 int rc;
1904 int i;
1905
1906 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1907 if (cmd == NULL)
1908 return -ENOMEM;
1909
1910 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC);
1911 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1912
1913 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
1914 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
1915 cmd->num_tx_queues = cpu_to_le32(MWL8K_TX_QUEUES);
1916 for (i = 0; i < MWL8K_TX_QUEUES; i++)
1917 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01001918 cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT |
1919 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP |
1920 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON);
Lennert Buytenhek42fba212009-10-22 20:21:30 +02001921 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
1922 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
1923
1924 rc = mwl8k_post_cmd(hw, &cmd->header);
1925 kfree(cmd);
1926
1927 return rc;
1928}
1929
1930/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001931 * CMD_MAC_MULTICAST_ADR.
1932 */
1933struct mwl8k_cmd_mac_multicast_adr {
1934 struct mwl8k_cmd_pkt header;
1935 __le16 action;
1936 __le16 numaddr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001937 __u8 addr[0][ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001938};
1939
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001940#define MWL8K_ENABLE_RX_DIRECTED 0x0001
1941#define MWL8K_ENABLE_RX_MULTICAST 0x0002
1942#define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004
1943#define MWL8K_ENABLE_RX_BROADCAST 0x0008
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001944
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001945static struct mwl8k_cmd_pkt *
Lennert Buytenhek447ced02009-10-22 20:19:50 +02001946__mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti,
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001947 int mc_count, struct dev_addr_list *mclist)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001948{
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001949 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001950 struct mwl8k_cmd_mac_multicast_adr *cmd;
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001951 int size;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001952
Lennert Buytenhek447ced02009-10-22 20:19:50 +02001953 if (allmulti || mc_count > priv->num_mcaddrs) {
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001954 allmulti = 1;
1955 mc_count = 0;
1956 }
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001957
1958 size = sizeof(*cmd) + mc_count * ETH_ALEN;
1959
1960 cmd = kzalloc(size, GFP_ATOMIC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001961 if (cmd == NULL)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001962 return NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001963
1964 cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
1965 cmd->header.length = cpu_to_le16(size);
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001966 cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED |
1967 MWL8K_ENABLE_RX_BROADCAST);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001968
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001969 if (allmulti) {
1970 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST);
1971 } else if (mc_count) {
1972 int i;
1973
1974 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
1975 cmd->numaddr = cpu_to_le16(mc_count);
1976 for (i = 0; i < mc_count && mclist; i++) {
1977 if (mclist->da_addrlen != ETH_ALEN) {
1978 kfree(cmd);
1979 return NULL;
1980 }
1981 memcpy(cmd->addr[i], mclist->da_addr, ETH_ALEN);
1982 mclist = mclist->next;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001983 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001984 }
1985
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001986 return &cmd->header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001987}
1988
1989/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001990 * CMD_GET_STAT.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001991 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001992struct mwl8k_cmd_get_stat {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001993 struct mwl8k_cmd_pkt header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001994 __le32 stats[64];
1995} __attribute__((packed));
1996
1997#define MWL8K_STAT_ACK_FAILURE 9
1998#define MWL8K_STAT_RTS_FAILURE 12
1999#define MWL8K_STAT_FCS_ERROR 24
2000#define MWL8K_STAT_RTS_SUCCESS 11
2001
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002002static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw,
2003 struct ieee80211_low_level_stats *stats)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002004{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002005 struct mwl8k_cmd_get_stat *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002006 int rc;
2007
2008 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2009 if (cmd == NULL)
2010 return -ENOMEM;
2011
2012 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
2013 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002014
2015 rc = mwl8k_post_cmd(hw, &cmd->header);
2016 if (!rc) {
2017 stats->dot11ACKFailureCount =
2018 le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
2019 stats->dot11RTSFailureCount =
2020 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
2021 stats->dot11FCSErrorCount =
2022 le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
2023 stats->dot11RTSSuccessCount =
2024 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
2025 }
2026 kfree(cmd);
2027
2028 return rc;
2029}
2030
2031/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002032 * CMD_RADIO_CONTROL.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002033 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002034struct mwl8k_cmd_radio_control {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002035 struct mwl8k_cmd_pkt header;
2036 __le16 action;
2037 __le16 control;
2038 __le16 radio_on;
2039} __attribute__((packed));
2040
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002041static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002042mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002043{
2044 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002045 struct mwl8k_cmd_radio_control *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002046 int rc;
2047
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002048 if (enable == priv->radio_on && !force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002049 return 0;
2050
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002051 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2052 if (cmd == NULL)
2053 return -ENOMEM;
2054
2055 cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
2056 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2057 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002058 cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002059 cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
2060
2061 rc = mwl8k_post_cmd(hw, &cmd->header);
2062 kfree(cmd);
2063
2064 if (!rc)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002065 priv->radio_on = enable;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002066
2067 return rc;
2068}
2069
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002070static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002071{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002072 return mwl8k_cmd_radio_control(hw, 0, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002073}
2074
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002075static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002076{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002077 return mwl8k_cmd_radio_control(hw, 1, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02002078}
2079
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002080static int
2081mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
2082{
Lennert Buytenhek99200a992009-11-30 18:31:40 +01002083 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002084
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02002085 priv->radio_short_preamble = short_preamble;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002086
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002087 return mwl8k_cmd_radio_control(hw, 1, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002088}
2089
2090/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002091 * CMD_RF_TX_POWER.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002092 */
2093#define MWL8K_TX_POWER_LEVEL_TOTAL 8
2094
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002095struct mwl8k_cmd_rf_tx_power {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002096 struct mwl8k_cmd_pkt header;
2097 __le16 action;
2098 __le16 support_level;
2099 __le16 current_level;
2100 __le16 reserved;
2101 __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
2102} __attribute__((packed));
2103
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002104static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw *hw, int dBm)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002105{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002106 struct mwl8k_cmd_rf_tx_power *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002107 int rc;
2108
2109 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2110 if (cmd == NULL)
2111 return -ENOMEM;
2112
2113 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
2114 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2115 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2116 cmd->support_level = cpu_to_le16(dBm);
2117
2118 rc = mwl8k_post_cmd(hw, &cmd->header);
2119 kfree(cmd);
2120
2121 return rc;
2122}
2123
2124/*
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002125 * CMD_RF_ANTENNA.
2126 */
2127struct mwl8k_cmd_rf_antenna {
2128 struct mwl8k_cmd_pkt header;
2129 __le16 antenna;
2130 __le16 mode;
2131} __attribute__((packed));
2132
2133#define MWL8K_RF_ANTENNA_RX 1
2134#define MWL8K_RF_ANTENNA_TX 2
2135
2136static int
2137mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask)
2138{
2139 struct mwl8k_cmd_rf_antenna *cmd;
2140 int rc;
2141
2142 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2143 if (cmd == NULL)
2144 return -ENOMEM;
2145
2146 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA);
2147 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2148 cmd->antenna = cpu_to_le16(antenna);
2149 cmd->mode = cpu_to_le16(mask);
2150
2151 rc = mwl8k_post_cmd(hw, &cmd->header);
2152 kfree(cmd);
2153
2154 return rc;
2155}
2156
2157/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002158 * CMD_SET_BEACON.
2159 */
2160struct mwl8k_cmd_set_beacon {
2161 struct mwl8k_cmd_pkt header;
2162 __le16 beacon_len;
2163 __u8 beacon[0];
2164};
2165
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01002166static int mwl8k_cmd_set_beacon(struct ieee80211_hw *hw,
2167 struct ieee80211_vif *vif, u8 *beacon, int len)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002168{
2169 struct mwl8k_cmd_set_beacon *cmd;
2170 int rc;
2171
2172 cmd = kzalloc(sizeof(*cmd) + len, GFP_KERNEL);
2173 if (cmd == NULL)
2174 return -ENOMEM;
2175
2176 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_BEACON);
2177 cmd->header.length = cpu_to_le16(sizeof(*cmd) + len);
2178 cmd->beacon_len = cpu_to_le16(len);
2179 memcpy(cmd->beacon, beacon, len);
2180
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01002181 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002182 kfree(cmd);
2183
2184 return rc;
2185}
2186
2187/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002188 * CMD_SET_PRE_SCAN.
2189 */
2190struct mwl8k_cmd_set_pre_scan {
2191 struct mwl8k_cmd_pkt header;
2192} __attribute__((packed));
2193
2194static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
2195{
2196 struct mwl8k_cmd_set_pre_scan *cmd;
2197 int rc;
2198
2199 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2200 if (cmd == NULL)
2201 return -ENOMEM;
2202
2203 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
2204 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2205
2206 rc = mwl8k_post_cmd(hw, &cmd->header);
2207 kfree(cmd);
2208
2209 return rc;
2210}
2211
2212/*
2213 * CMD_SET_POST_SCAN.
2214 */
2215struct mwl8k_cmd_set_post_scan {
2216 struct mwl8k_cmd_pkt header;
2217 __le32 isibss;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002218 __u8 bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002219} __attribute__((packed));
2220
2221static int
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002222mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002223{
2224 struct mwl8k_cmd_set_post_scan *cmd;
2225 int rc;
2226
2227 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2228 if (cmd == NULL)
2229 return -ENOMEM;
2230
2231 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
2232 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2233 cmd->isibss = 0;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002234 memcpy(cmd->bssid, mac, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002235
2236 rc = mwl8k_post_cmd(hw, &cmd->header);
2237 kfree(cmd);
2238
2239 return rc;
2240}
2241
2242/*
2243 * CMD_SET_RF_CHANNEL.
2244 */
2245struct mwl8k_cmd_set_rf_channel {
2246 struct mwl8k_cmd_pkt header;
2247 __le16 action;
2248 __u8 current_channel;
2249 __le32 channel_flags;
2250} __attribute__((packed));
2251
2252static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002253 struct ieee80211_conf *conf)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002254{
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002255 struct ieee80211_channel *channel = conf->channel;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002256 struct mwl8k_cmd_set_rf_channel *cmd;
2257 int rc;
2258
2259 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2260 if (cmd == NULL)
2261 return -ENOMEM;
2262
2263 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
2264 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2265 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2266 cmd->current_channel = channel->hw_value;
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002267
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002268 if (channel->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002269 cmd->channel_flags |= cpu_to_le32(0x00000001);
Lennert Buytenhek42574ea2010-01-12 13:49:18 +01002270 else if (channel->band == IEEE80211_BAND_5GHZ)
2271 cmd->channel_flags |= cpu_to_le32(0x00000004);
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002272
2273 if (conf->channel_type == NL80211_CHAN_NO_HT ||
2274 conf->channel_type == NL80211_CHAN_HT20)
2275 cmd->channel_flags |= cpu_to_le32(0x00000080);
2276 else if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2277 cmd->channel_flags |= cpu_to_le32(0x000001900);
2278 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2279 cmd->channel_flags |= cpu_to_le32(0x000000900);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002280
2281 rc = mwl8k_post_cmd(hw, &cmd->header);
2282 kfree(cmd);
2283
2284 return rc;
2285}
2286
2287/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002288 * CMD_SET_AID.
2289 */
2290#define MWL8K_FRAME_PROT_DISABLED 0x00
2291#define MWL8K_FRAME_PROT_11G 0x07
2292#define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
2293#define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
2294
2295struct mwl8k_cmd_update_set_aid {
2296 struct mwl8k_cmd_pkt header;
2297 __le16 aid;
2298
2299 /* AP's MAC address (BSSID) */
2300 __u8 bssid[ETH_ALEN];
2301 __le16 protection_mode;
2302 __u8 supp_rates[14];
2303} __attribute__((packed));
2304
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002305static void legacy_rate_mask_to_array(u8 *rates, u32 mask)
2306{
2307 int i;
2308 int j;
2309
2310 /*
2311 * Clear nonstandard rates 4 and 13.
2312 */
2313 mask &= 0x1fef;
2314
2315 for (i = 0, j = 0; i < 14; i++) {
2316 if (mask & (1 << i))
Lennert Buytenhek777ad372010-01-12 13:48:04 +01002317 rates[j++] = mwl8k_rates_24[i].hw_value;
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002318 }
2319}
2320
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002321static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002322mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
2323 struct ieee80211_vif *vif, u32 legacy_rate_mask)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002324{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002325 struct mwl8k_cmd_update_set_aid *cmd;
2326 u16 prot_mode;
2327 int rc;
2328
2329 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2330 if (cmd == NULL)
2331 return -ENOMEM;
2332
2333 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
2334 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002335 cmd->aid = cpu_to_le16(vif->bss_conf.aid);
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002336 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002337
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002338 if (vif->bss_conf.use_cts_prot) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002339 prot_mode = MWL8K_FRAME_PROT_11G;
2340 } else {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002341 switch (vif->bss_conf.ht_operation_mode &
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002342 IEEE80211_HT_OP_MODE_PROTECTION) {
2343 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
2344 prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
2345 break;
2346 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
2347 prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
2348 break;
2349 default:
2350 prot_mode = MWL8K_FRAME_PROT_DISABLED;
2351 break;
2352 }
2353 }
2354 cmd->protection_mode = cpu_to_le16(prot_mode);
2355
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002356 legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002357
2358 rc = mwl8k_post_cmd(hw, &cmd->header);
2359 kfree(cmd);
2360
2361 return rc;
2362}
2363
2364/*
2365 * CMD_SET_RATE.
2366 */
2367struct mwl8k_cmd_set_rate {
2368 struct mwl8k_cmd_pkt header;
2369 __u8 legacy_rates[14];
2370
2371 /* Bitmap for supported MCS codes. */
2372 __u8 mcs_set[16];
2373 __u8 reserved[16];
2374} __attribute__((packed));
2375
2376static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002377mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01002378 u32 legacy_rate_mask, u8 *mcs_rates)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002379{
2380 struct mwl8k_cmd_set_rate *cmd;
2381 int rc;
2382
2383 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2384 if (cmd == NULL)
2385 return -ENOMEM;
2386
2387 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE);
2388 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002389 legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01002390 memcpy(cmd->mcs_set, mcs_rates, 16);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002391
2392 rc = mwl8k_post_cmd(hw, &cmd->header);
2393 kfree(cmd);
2394
2395 return rc;
2396}
2397
2398/*
2399 * CMD_FINALIZE_JOIN.
2400 */
2401#define MWL8K_FJ_BEACON_MAXLEN 128
2402
2403struct mwl8k_cmd_finalize_join {
2404 struct mwl8k_cmd_pkt header;
2405 __le32 sleep_interval; /* Number of beacon periods to sleep */
2406 __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
2407} __attribute__((packed));
2408
2409static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame,
2410 int framelen, int dtim)
2411{
2412 struct mwl8k_cmd_finalize_join *cmd;
2413 struct ieee80211_mgmt *payload = frame;
2414 int payload_len;
2415 int rc;
2416
2417 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2418 if (cmd == NULL)
2419 return -ENOMEM;
2420
2421 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN);
2422 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2423 cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
2424
2425 payload_len = framelen - ieee80211_hdrlen(payload->frame_control);
2426 if (payload_len < 0)
2427 payload_len = 0;
2428 else if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
2429 payload_len = MWL8K_FJ_BEACON_MAXLEN;
2430
2431 memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
2432
2433 rc = mwl8k_post_cmd(hw, &cmd->header);
2434 kfree(cmd);
2435
2436 return rc;
2437}
2438
2439/*
2440 * CMD_SET_RTS_THRESHOLD.
2441 */
2442struct mwl8k_cmd_set_rts_threshold {
2443 struct mwl8k_cmd_pkt header;
2444 __le16 action;
2445 __le16 threshold;
2446} __attribute__((packed));
2447
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01002448static int
2449mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw, int rts_thresh)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002450{
2451 struct mwl8k_cmd_set_rts_threshold *cmd;
2452 int rc;
2453
2454 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2455 if (cmd == NULL)
2456 return -ENOMEM;
2457
2458 cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
2459 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01002460 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2461 cmd->threshold = cpu_to_le16(rts_thresh);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002462
2463 rc = mwl8k_post_cmd(hw, &cmd->header);
2464 kfree(cmd);
2465
2466 return rc;
2467}
2468
2469/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002470 * CMD_SET_SLOT.
2471 */
2472struct mwl8k_cmd_set_slot {
2473 struct mwl8k_cmd_pkt header;
2474 __le16 action;
2475 __u8 short_slot;
2476} __attribute__((packed));
2477
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02002478static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002479{
2480 struct mwl8k_cmd_set_slot *cmd;
2481 int rc;
2482
2483 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2484 if (cmd == NULL)
2485 return -ENOMEM;
2486
2487 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
2488 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2489 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02002490 cmd->short_slot = short_slot_time;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002491
2492 rc = mwl8k_post_cmd(hw, &cmd->header);
2493 kfree(cmd);
2494
2495 return rc;
2496}
2497
2498/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002499 * CMD_SET_EDCA_PARAMS.
2500 */
2501struct mwl8k_cmd_set_edca_params {
2502 struct mwl8k_cmd_pkt header;
2503
2504 /* See MWL8K_SET_EDCA_XXX below */
2505 __le16 action;
2506
2507 /* TX opportunity in units of 32 us */
2508 __le16 txop;
2509
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002510 union {
2511 struct {
2512 /* Log exponent of max contention period: 0...15 */
2513 __le32 log_cw_max;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002514
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002515 /* Log exponent of min contention period: 0...15 */
2516 __le32 log_cw_min;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002517
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002518 /* Adaptive interframe spacing in units of 32us */
2519 __u8 aifs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002520
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002521 /* TX queue to configure */
2522 __u8 txq;
2523 } ap;
2524 struct {
2525 /* Log exponent of max contention period: 0...15 */
2526 __u8 log_cw_max;
2527
2528 /* Log exponent of min contention period: 0...15 */
2529 __u8 log_cw_min;
2530
2531 /* Adaptive interframe spacing in units of 32us */
2532 __u8 aifs;
2533
2534 /* TX queue to configure */
2535 __u8 txq;
2536 } sta;
2537 };
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002538} __attribute__((packed));
2539
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002540#define MWL8K_SET_EDCA_CW 0x01
2541#define MWL8K_SET_EDCA_TXOP 0x02
2542#define MWL8K_SET_EDCA_AIFS 0x04
2543
2544#define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
2545 MWL8K_SET_EDCA_TXOP | \
2546 MWL8K_SET_EDCA_AIFS)
2547
2548static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002549mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
2550 __u16 cw_min, __u16 cw_max,
2551 __u8 aifs, __u16 txop)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002552{
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002553 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002554 struct mwl8k_cmd_set_edca_params *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002555 int rc;
2556
2557 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2558 if (cmd == NULL)
2559 return -ENOMEM;
2560
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002561 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
2562 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002563 cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
2564 cmd->txop = cpu_to_le16(txop);
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002565 if (priv->ap_fw) {
2566 cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1));
2567 cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1));
2568 cmd->ap.aifs = aifs;
2569 cmd->ap.txq = qnum;
2570 } else {
2571 cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1);
2572 cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1);
2573 cmd->sta.aifs = aifs;
2574 cmd->sta.txq = qnum;
2575 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002576
2577 rc = mwl8k_post_cmd(hw, &cmd->header);
2578 kfree(cmd);
2579
2580 return rc;
2581}
2582
2583/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002584 * CMD_SET_WMM_MODE.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002585 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002586struct mwl8k_cmd_set_wmm_mode {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002587 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002588 __le16 action;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002589} __attribute__((packed));
2590
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002591static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw *hw, bool enable)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002592{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002593 struct mwl8k_priv *priv = hw->priv;
2594 struct mwl8k_cmd_set_wmm_mode *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002595 int rc;
2596
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002597 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2598 if (cmd == NULL)
2599 return -ENOMEM;
2600
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002601 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002602 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002603 cmd->action = cpu_to_le16(!!enable);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002604
2605 rc = mwl8k_post_cmd(hw, &cmd->header);
2606 kfree(cmd);
Lennert Buytenhek16cec432009-11-30 18:14:23 +01002607
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002608 if (!rc)
2609 priv->wmm_enabled = enable;
2610
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002611 return rc;
2612}
2613
2614/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002615 * CMD_MIMO_CONFIG.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002616 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002617struct mwl8k_cmd_mimo_config {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002618 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002619 __le32 action;
2620 __u8 rx_antenna_map;
2621 __u8 tx_antenna_map;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002622} __attribute__((packed));
2623
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002624static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002625{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002626 struct mwl8k_cmd_mimo_config *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002627 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002628
2629 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2630 if (cmd == NULL)
2631 return -ENOMEM;
2632
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002633 cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002634 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002635 cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET);
2636 cmd->rx_antenna_map = rx;
2637 cmd->tx_antenna_map = tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002638
2639 rc = mwl8k_post_cmd(hw, &cmd->header);
2640 kfree(cmd);
2641
2642 return rc;
2643}
2644
2645/*
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01002646 * CMD_USE_FIXED_RATE (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002647 */
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01002648struct mwl8k_cmd_use_fixed_rate_sta {
2649 struct mwl8k_cmd_pkt header;
2650 __le32 action;
2651 __le32 allow_rate_drop;
2652 __le32 num_rates;
2653 struct {
2654 __le32 is_ht_rate;
2655 __le32 enable_retry;
2656 __le32 rate;
2657 __le32 retry_count;
2658 } rate_entry[8];
2659 __le32 rate_type;
2660 __le32 reserved1;
2661 __le32 reserved2;
2662} __attribute__((packed));
2663
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002664#define MWL8K_USE_AUTO_RATE 0x0002
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01002665#define MWL8K_UCAST_RATE 0
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002666
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01002667static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002668{
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01002669 struct mwl8k_cmd_use_fixed_rate_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002670 int rc;
2671
2672 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2673 if (cmd == NULL)
2674 return -ENOMEM;
2675
2676 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
2677 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01002678 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
2679 cmd->rate_type = cpu_to_le32(MWL8K_UCAST_RATE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002680
2681 rc = mwl8k_post_cmd(hw, &cmd->header);
2682 kfree(cmd);
2683
2684 return rc;
2685}
2686
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002687/*
Lennert Buytenhek088aab82010-01-08 18:30:36 +01002688 * CMD_USE_FIXED_RATE (AP version).
2689 */
2690struct mwl8k_cmd_use_fixed_rate_ap {
2691 struct mwl8k_cmd_pkt header;
2692 __le32 action;
2693 __le32 allow_rate_drop;
2694 __le32 num_rates;
2695 struct mwl8k_rate_entry_ap {
2696 __le32 is_ht_rate;
2697 __le32 enable_retry;
2698 __le32 rate;
2699 __le32 retry_count;
2700 } rate_entry[4];
2701 u8 multicast_rate;
2702 u8 multicast_rate_type;
2703 u8 management_rate;
2704} __attribute__((packed));
2705
2706static int
2707mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw *hw, int mcast, int mgmt)
2708{
2709 struct mwl8k_cmd_use_fixed_rate_ap *cmd;
2710 int rc;
2711
2712 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2713 if (cmd == NULL)
2714 return -ENOMEM;
2715
2716 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
2717 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2718 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
2719 cmd->multicast_rate = mcast;
2720 cmd->management_rate = mgmt;
2721
2722 rc = mwl8k_post_cmd(hw, &cmd->header);
2723 kfree(cmd);
2724
2725 return rc;
2726}
2727
2728/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002729 * CMD_ENABLE_SNIFFER.
2730 */
2731struct mwl8k_cmd_enable_sniffer {
2732 struct mwl8k_cmd_pkt header;
2733 __le32 action;
2734} __attribute__((packed));
2735
2736static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable)
2737{
2738 struct mwl8k_cmd_enable_sniffer *cmd;
2739 int rc;
2740
2741 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2742 if (cmd == NULL)
2743 return -ENOMEM;
2744
2745 cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
2746 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2747 cmd->action = cpu_to_le32(!!enable);
2748
2749 rc = mwl8k_post_cmd(hw, &cmd->header);
2750 kfree(cmd);
2751
2752 return rc;
2753}
2754
2755/*
2756 * CMD_SET_MAC_ADDR.
2757 */
2758struct mwl8k_cmd_set_mac_addr {
2759 struct mwl8k_cmd_pkt header;
2760 union {
2761 struct {
2762 __le16 mac_type;
2763 __u8 mac_addr[ETH_ALEN];
2764 } mbss;
2765 __u8 mac_addr[ETH_ALEN];
2766 };
2767} __attribute__((packed));
2768
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002769#define MWL8K_MAC_TYPE_PRIMARY_CLIENT 0
2770#define MWL8K_MAC_TYPE_SECONDARY_CLIENT 1
2771#define MWL8K_MAC_TYPE_PRIMARY_AP 2
2772#define MWL8K_MAC_TYPE_SECONDARY_AP 3
Lennert Buytenheka9e00b12010-01-08 18:31:30 +01002773
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01002774static int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw,
2775 struct ieee80211_vif *vif, u8 *mac)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002776{
2777 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002778 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002779 struct mwl8k_cmd_set_mac_addr *cmd;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002780 int mac_type;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002781 int rc;
2782
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002783 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
2784 if (vif != NULL && vif->type == NL80211_IFTYPE_STATION) {
2785 if (mwl8k_vif->macid + 1 == ffs(priv->sta_macids_supported))
2786 mac_type = MWL8K_MAC_TYPE_PRIMARY_CLIENT;
2787 else
2788 mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT;
2789 } else if (vif != NULL && vif->type == NL80211_IFTYPE_AP) {
2790 if (mwl8k_vif->macid + 1 == ffs(priv->ap_macids_supported))
2791 mac_type = MWL8K_MAC_TYPE_PRIMARY_AP;
2792 else
2793 mac_type = MWL8K_MAC_TYPE_SECONDARY_AP;
2794 }
2795
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002796 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2797 if (cmd == NULL)
2798 return -ENOMEM;
2799
2800 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR);
2801 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2802 if (priv->ap_fw) {
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01002803 cmd->mbss.mac_type = cpu_to_le16(mac_type);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002804 memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN);
2805 } else {
2806 memcpy(cmd->mac_addr, mac, ETH_ALEN);
2807 }
2808
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01002809 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002810 kfree(cmd);
2811
2812 return rc;
2813}
2814
2815/*
2816 * CMD_SET_RATEADAPT_MODE.
2817 */
2818struct mwl8k_cmd_set_rate_adapt_mode {
2819 struct mwl8k_cmd_pkt header;
2820 __le16 action;
2821 __le16 mode;
2822} __attribute__((packed));
2823
2824static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode)
2825{
2826 struct mwl8k_cmd_set_rate_adapt_mode *cmd;
2827 int rc;
2828
2829 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2830 if (cmd == NULL)
2831 return -ENOMEM;
2832
2833 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
2834 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2835 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2836 cmd->mode = cpu_to_le16(mode);
2837
2838 rc = mwl8k_post_cmd(hw, &cmd->header);
2839 kfree(cmd);
2840
2841 return rc;
2842}
2843
2844/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002845 * CMD_BSS_START.
2846 */
2847struct mwl8k_cmd_bss_start {
2848 struct mwl8k_cmd_pkt header;
2849 __le32 enable;
2850} __attribute__((packed));
2851
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01002852static int mwl8k_cmd_bss_start(struct ieee80211_hw *hw,
2853 struct ieee80211_vif *vif, int enable)
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002854{
2855 struct mwl8k_cmd_bss_start *cmd;
2856 int rc;
2857
2858 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2859 if (cmd == NULL)
2860 return -ENOMEM;
2861
2862 cmd->header.code = cpu_to_le16(MWL8K_CMD_BSS_START);
2863 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2864 cmd->enable = cpu_to_le32(enable);
2865
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01002866 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002867 kfree(cmd);
2868
2869 return rc;
2870}
2871
2872/*
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01002873 * CMD_SET_NEW_STN.
2874 */
2875struct mwl8k_cmd_set_new_stn {
2876 struct mwl8k_cmd_pkt header;
2877 __le16 aid;
2878 __u8 mac_addr[6];
2879 __le16 stn_id;
2880 __le16 action;
2881 __le16 rsvd;
2882 __le32 legacy_rates;
2883 __u8 ht_rates[4];
2884 __le16 cap_info;
2885 __le16 ht_capabilities_info;
2886 __u8 mac_ht_param_info;
2887 __u8 rev;
2888 __u8 control_channel;
2889 __u8 add_channel;
2890 __le16 op_mode;
2891 __le16 stbc;
2892 __u8 add_qos_info;
2893 __u8 is_qos_sta;
2894 __le32 fw_sta_ptr;
2895} __attribute__((packed));
2896
2897#define MWL8K_STA_ACTION_ADD 0
2898#define MWL8K_STA_ACTION_REMOVE 2
2899
2900static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw *hw,
2901 struct ieee80211_vif *vif,
2902 struct ieee80211_sta *sta)
2903{
2904 struct mwl8k_cmd_set_new_stn *cmd;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01002905 u32 rates;
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01002906 int rc;
2907
2908 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2909 if (cmd == NULL)
2910 return -ENOMEM;
2911
2912 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
2913 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2914 cmd->aid = cpu_to_le16(sta->aid);
2915 memcpy(cmd->mac_addr, sta->addr, ETH_ALEN);
2916 cmd->stn_id = cpu_to_le16(sta->aid);
2917 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_ADD);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01002918 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
2919 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
2920 else
2921 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
2922 cmd->legacy_rates = cpu_to_le32(rates);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01002923 if (sta->ht_cap.ht_supported) {
2924 cmd->ht_rates[0] = sta->ht_cap.mcs.rx_mask[0];
2925 cmd->ht_rates[1] = sta->ht_cap.mcs.rx_mask[1];
2926 cmd->ht_rates[2] = sta->ht_cap.mcs.rx_mask[2];
2927 cmd->ht_rates[3] = sta->ht_cap.mcs.rx_mask[3];
2928 cmd->ht_capabilities_info = cpu_to_le16(sta->ht_cap.cap);
2929 cmd->mac_ht_param_info = (sta->ht_cap.ampdu_factor & 3) |
2930 ((sta->ht_cap.ampdu_density & 7) << 2);
2931 cmd->is_qos_sta = 1;
2932 }
2933
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01002934 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01002935 kfree(cmd);
2936
2937 return rc;
2938}
2939
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002940static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw *hw,
2941 struct ieee80211_vif *vif)
2942{
2943 struct mwl8k_cmd_set_new_stn *cmd;
2944 int rc;
2945
2946 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2947 if (cmd == NULL)
2948 return -ENOMEM;
2949
2950 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
2951 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2952 memcpy(cmd->mac_addr, vif->addr, ETH_ALEN);
2953
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01002954 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002955 kfree(cmd);
2956
2957 return rc;
2958}
2959
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01002960static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw *hw,
2961 struct ieee80211_vif *vif, u8 *addr)
2962{
2963 struct mwl8k_cmd_set_new_stn *cmd;
2964 int rc;
2965
2966 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2967 if (cmd == NULL)
2968 return -ENOMEM;
2969
2970 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
2971 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2972 memcpy(cmd->mac_addr, addr, ETH_ALEN);
2973 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_REMOVE);
2974
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01002975 rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01002976 kfree(cmd);
2977
2978 return rc;
2979}
2980
2981/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002982 * CMD_UPDATE_STADB.
2983 */
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01002984struct ewc_ht_info {
2985 __le16 control1;
2986 __le16 control2;
2987 __le16 control3;
2988} __attribute__((packed));
2989
2990struct peer_capability_info {
2991 /* Peer type - AP vs. STA. */
2992 __u8 peer_type;
2993
2994 /* Basic 802.11 capabilities from assoc resp. */
2995 __le16 basic_caps;
2996
2997 /* Set if peer supports 802.11n high throughput (HT). */
2998 __u8 ht_support;
2999
3000 /* Valid if HT is supported. */
3001 __le16 ht_caps;
3002 __u8 extended_ht_caps;
3003 struct ewc_ht_info ewc_info;
3004
3005 /* Legacy rate table. Intersection of our rates and peer rates. */
3006 __u8 legacy_rates[12];
3007
3008 /* HT rate table. Intersection of our rates and peer rates. */
3009 __u8 ht_rates[16];
3010 __u8 pad[16];
3011
3012 /* If set, interoperability mode, no proprietary extensions. */
3013 __u8 interop;
3014 __u8 pad2;
3015 __u8 station_id;
3016 __le16 amsdu_enabled;
3017} __attribute__((packed));
3018
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003019struct mwl8k_cmd_update_stadb {
3020 struct mwl8k_cmd_pkt header;
3021
3022 /* See STADB_ACTION_TYPE */
3023 __le32 action;
3024
3025 /* Peer MAC address */
3026 __u8 peer_addr[ETH_ALEN];
3027
3028 __le32 reserved;
3029
3030 /* Peer info - valid during add/update. */
3031 struct peer_capability_info peer_info;
3032} __attribute__((packed));
3033
Lennert Buytenheka6804002010-01-04 21:55:42 +01003034#define MWL8K_STA_DB_MODIFY_ENTRY 1
3035#define MWL8K_STA_DB_DEL_ENTRY 2
3036
3037/* Peer Entry flags - used to define the type of the peer node */
3038#define MWL8K_PEER_TYPE_ACCESSPOINT 2
3039
3040static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw,
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003041 struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003042 struct ieee80211_sta *sta)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003043{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003044 struct mwl8k_cmd_update_stadb *cmd;
Lennert Buytenheka6804002010-01-04 21:55:42 +01003045 struct peer_capability_info *p;
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003046 u32 rates;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003047 int rc;
3048
3049 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3050 if (cmd == NULL)
3051 return -ENOMEM;
3052
3053 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
3054 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka6804002010-01-04 21:55:42 +01003055 cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003056 memcpy(cmd->peer_addr, sta->addr, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003057
Lennert Buytenheka6804002010-01-04 21:55:42 +01003058 p = &cmd->peer_info;
3059 p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
3060 p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003061 p->ht_support = sta->ht_cap.ht_supported;
3062 p->ht_caps = sta->ht_cap.cap;
3063 p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) |
3064 ((sta->ht_cap.ampdu_density & 7) << 2);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003065 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
3066 rates = sta->supp_rates[IEEE80211_BAND_2GHZ];
3067 else
3068 rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5;
3069 legacy_rate_mask_to_array(p->legacy_rates, rates);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003070 memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16);
Lennert Buytenheka6804002010-01-04 21:55:42 +01003071 p->interop = 1;
3072 p->amsdu_enabled = 0;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003073
Lennert Buytenheka6804002010-01-04 21:55:42 +01003074 rc = mwl8k_post_cmd(hw, &cmd->header);
3075 kfree(cmd);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003076
Lennert Buytenheka6804002010-01-04 21:55:42 +01003077 return rc ? rc : p->station_id;
3078}
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003079
Lennert Buytenheka6804002010-01-04 21:55:42 +01003080static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw,
3081 struct ieee80211_vif *vif, u8 *addr)
3082{
3083 struct mwl8k_cmd_update_stadb *cmd;
3084 int rc;
3085
3086 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
3087 if (cmd == NULL)
3088 return -ENOMEM;
3089
3090 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
3091 cmd->header.length = cpu_to_le16(sizeof(*cmd));
3092 cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY);
3093 memcpy(cmd->peer_addr, addr, ETH_ALEN);
3094
3095 rc = mwl8k_post_cmd(hw, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003096 kfree(cmd);
3097
3098 return rc;
3099}
3100
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003101
3102/*
3103 * Interrupt handling.
3104 */
3105static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
3106{
3107 struct ieee80211_hw *hw = dev_id;
3108 struct mwl8k_priv *priv = hw->priv;
3109 u32 status;
3110
3111 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003112 if (!status)
3113 return IRQ_NONE;
3114
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01003115 if (status & MWL8K_A2H_INT_TX_DONE) {
3116 status &= ~MWL8K_A2H_INT_TX_DONE;
3117 tasklet_schedule(&priv->poll_tx_task);
3118 }
3119
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003120 if (status & MWL8K_A2H_INT_RX_READY) {
3121 status &= ~MWL8K_A2H_INT_RX_READY;
3122 tasklet_schedule(&priv->poll_rx_task);
3123 }
3124
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01003125 if (status)
3126 iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003127
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003128 if (status & MWL8K_A2H_INT_OPC_DONE) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02003129 if (priv->hostcmd_wait != NULL)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003130 complete(priv->hostcmd_wait);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003131 }
3132
3133 if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02003134 if (!mutex_is_locked(&priv->fw_mutex) &&
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02003135 priv->radio_on && priv->pending_tx_pkts)
Lennert Buytenhek618952a2009-08-18 03:18:01 +02003136 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003137 }
3138
3139 return IRQ_HANDLED;
3140}
3141
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01003142static void mwl8k_tx_poll(unsigned long data)
3143{
3144 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
3145 struct mwl8k_priv *priv = hw->priv;
3146 int limit;
3147 int i;
3148
3149 limit = 32;
3150
3151 spin_lock_bh(&priv->tx_lock);
3152
3153 for (i = 0; i < MWL8K_TX_QUEUES; i++)
3154 limit -= mwl8k_txq_reclaim(hw, i, limit, 0);
3155
3156 if (!priv->pending_tx_pkts && priv->tx_wait != NULL) {
3157 complete(priv->tx_wait);
3158 priv->tx_wait = NULL;
3159 }
3160
3161 spin_unlock_bh(&priv->tx_lock);
3162
3163 if (limit) {
3164 writel(~MWL8K_A2H_INT_TX_DONE,
3165 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
3166 } else {
3167 tasklet_schedule(&priv->poll_tx_task);
3168 }
3169}
3170
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003171static void mwl8k_rx_poll(unsigned long data)
3172{
3173 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
3174 struct mwl8k_priv *priv = hw->priv;
3175 int limit;
3176
3177 limit = 32;
3178 limit -= rxq_process(hw, 0, limit);
3179 limit -= rxq_refill(hw, 0, limit);
3180
3181 if (limit) {
3182 writel(~MWL8K_A2H_INT_RX_READY,
3183 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
3184 } else {
3185 tasklet_schedule(&priv->poll_rx_task);
3186 }
3187}
3188
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003189
3190/*
3191 * Core driver operations.
3192 */
3193static int mwl8k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
3194{
3195 struct mwl8k_priv *priv = hw->priv;
3196 int index = skb_get_queue_mapping(skb);
3197 int rc;
3198
Lennert Buytenhek9189c102010-01-12 13:47:32 +01003199 if (!priv->radio_on) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003200 printk(KERN_DEBUG "%s: dropped TX frame since radio "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003201 "disabled\n", wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003202 dev_kfree_skb(skb);
3203 return NETDEV_TX_OK;
3204 }
3205
3206 rc = mwl8k_txq_xmit(hw, index, skb);
3207
3208 return rc;
3209}
3210
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003211static int mwl8k_start(struct ieee80211_hw *hw)
3212{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003213 struct mwl8k_priv *priv = hw->priv;
3214 int rc;
3215
Joe Perchesa0607fd2009-11-18 23:29:17 -08003216 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003217 IRQF_SHARED, MWL8K_NAME, hw);
3218 if (rc) {
3219 printk(KERN_ERR "%s: failed to register IRQ handler\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003220 wiphy_name(hw->wiphy));
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003221 return -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003222 }
3223
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003224 /* Enable TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01003225 tasklet_enable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003226 tasklet_enable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003227
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003228 /* Enable interrupts */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02003229 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003230
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003231 rc = mwl8k_fw_lock(hw);
3232 if (!rc) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003233 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003234
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02003235 if (!priv->ap_fw) {
3236 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003237 rc = mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003238
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02003239 if (!rc)
3240 rc = mwl8k_cmd_set_pre_scan(hw);
3241
3242 if (!rc)
3243 rc = mwl8k_cmd_set_post_scan(hw,
3244 "\x00\x00\x00\x00\x00\x00");
3245 }
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003246
3247 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003248 rc = mwl8k_cmd_set_rateadapt_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003249
3250 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003251 rc = mwl8k_cmd_set_wmm_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003252
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003253 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003254 }
3255
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003256 if (rc) {
3257 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
3258 free_irq(priv->pdev->irq, hw);
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01003259 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003260 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003261 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003262
3263 return rc;
3264}
3265
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003266static void mwl8k_stop(struct ieee80211_hw *hw)
3267{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003268 struct mwl8k_priv *priv = hw->priv;
3269 int i;
3270
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003271 mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003272
3273 ieee80211_stop_queues(hw);
3274
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003275 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003276 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003277 free_irq(priv->pdev->irq, hw);
3278
3279 /* Stop finalize join worker */
3280 cancel_work_sync(&priv->finalize_join_worker);
3281 if (priv->beacon_skb != NULL)
3282 dev_kfree_skb(priv->beacon_skb);
3283
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003284 /* Stop TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01003285 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003286 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003287
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003288 /* Return all skbs to mac80211 */
3289 for (i = 0; i < MWL8K_TX_QUEUES; i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01003290 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003291}
3292
3293static int mwl8k_add_interface(struct ieee80211_hw *hw,
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01003294 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003295{
3296 struct mwl8k_priv *priv = hw->priv;
3297 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003298 u32 macids_supported;
3299 int macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003300
3301 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003302 * Reject interface creation if sniffer mode is active, as
3303 * STA operation is mutually exclusive with hardware sniffer
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003304 * mode. (Sniffer mode is only used on STA firmware.)
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003305 */
3306 if (priv->sniffer_enabled) {
3307 printk(KERN_INFO "%s: unable to create STA "
3308 "interface due to sniffer mode being enabled\n",
3309 wiphy_name(hw->wiphy));
3310 return -EINVAL;
3311 }
3312
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003313
3314 switch (vif->type) {
3315 case NL80211_IFTYPE_AP:
3316 macids_supported = priv->ap_macids_supported;
3317 break;
3318 case NL80211_IFTYPE_STATION:
3319 macids_supported = priv->sta_macids_supported;
3320 break;
3321 default:
3322 return -EINVAL;
3323 }
3324
3325 macid = ffs(macids_supported & ~priv->macids_used);
3326 if (!macid--)
3327 return -EBUSY;
3328
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01003329 /* Setup driver private area. */
Johannes Berg1ed32e42009-12-23 13:15:45 +01003330 mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003331 memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01003332 mwl8k_vif->vif = vif;
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003333 mwl8k_vif->macid = macid;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003334 mwl8k_vif->seqno = 0;
3335
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01003336 /* Set the mac address. */
3337 mwl8k_cmd_set_mac_addr(hw, vif, vif->addr);
3338
3339 if (priv->ap_fw)
3340 mwl8k_cmd_set_new_stn_add_self(hw, vif);
3341
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003342 priv->macids_used |= 1 << mwl8k_vif->macid;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01003343 list_add_tail(&mwl8k_vif->list, &priv->vif_list);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003344
3345 return 0;
3346}
3347
3348static void mwl8k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01003349 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003350{
3351 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01003352 struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003353
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003354 if (priv->ap_fw)
3355 mwl8k_cmd_set_new_stn_del(hw, vif, vif->addr);
3356
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01003357 mwl8k_cmd_set_mac_addr(hw, vif, "\x00\x00\x00\x00\x00\x00");
Lennert Buytenhek32060e12009-10-22 20:20:04 +02003358
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01003359 priv->macids_used &= ~(1 << mwl8k_vif->macid);
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01003360 list_del(&mwl8k_vif->list);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003361}
3362
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003363static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003364{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003365 struct ieee80211_conf *conf = &hw->conf;
3366 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003367 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003368
Lennert Buytenhek7595d672009-08-17 23:59:40 +02003369 if (conf->flags & IEEE80211_CONF_IDLE) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003370 mwl8k_cmd_radio_disable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003371 return 0;
Lennert Buytenhek7595d672009-08-17 23:59:40 +02003372 }
3373
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003374 rc = mwl8k_fw_lock(hw);
3375 if (rc)
3376 return rc;
3377
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003378 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003379 if (rc)
3380 goto out;
3381
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003382 rc = mwl8k_cmd_set_rf_channel(hw, conf);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003383 if (rc)
3384 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003385
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003386 if (conf->power_level > 18)
3387 conf->power_level = 18;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003388 rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003389 if (rc)
3390 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003391
Lennert Buytenhek08b06342009-10-22 20:21:33 +02003392 if (priv->ap_fw) {
3393 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x7);
3394 if (!rc)
3395 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7);
3396 } else {
3397 rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7);
3398 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003399
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003400out:
3401 mwl8k_fw_unlock(hw);
3402
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003403 return rc;
3404}
3405
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003406static void
3407mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
3408 struct ieee80211_bss_conf *info, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003409{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003410 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003411 u32 ap_legacy_rates;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003412 u8 ap_mcs_rates[16];
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003413 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003414
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003415 if (mwl8k_fw_lock(hw))
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003416 return;
3417
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003418 /*
3419 * No need to capture a beacon if we're no longer associated.
3420 */
3421 if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc)
3422 priv->capture_beacon = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003423
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003424 /*
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003425 * Get the AP's legacy and MCS rates.
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003426 */
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003427 if (vif->bss_conf.assoc) {
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003428 struct ieee80211_sta *ap;
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01003429
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003430 rcu_read_lock();
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003431
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003432 ap = ieee80211_find_sta(vif, vif->bss_conf.bssid);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003433 if (ap == NULL) {
3434 rcu_read_unlock();
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003435 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003436 }
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003437
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003438 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) {
3439 ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ];
3440 } else {
3441 ap_legacy_rates =
3442 ap->supp_rates[IEEE80211_BAND_5GHZ] << 5;
3443 }
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003444 memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003445
3446 rcu_read_unlock();
3447 }
3448
3449 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc) {
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003450 rc = mwl8k_cmd_set_rate(hw, vif, ap_legacy_rates, ap_mcs_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003451 if (rc)
3452 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003453
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003454 rc = mwl8k_cmd_use_fixed_rate_sta(hw);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003455 if (rc)
3456 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003457 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003458
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003459 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003460 rc = mwl8k_set_radio_preamble(hw,
3461 vif->bss_conf.use_short_preamble);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003462 if (rc)
3463 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003464 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003465
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003466 if (changed & BSS_CHANGED_ERP_SLOT) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003467 rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003468 if (rc)
3469 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003470 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003471
Lennert Buytenhekc97470d2010-01-12 13:47:37 +01003472 if (vif->bss_conf.assoc &&
3473 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_ERP_CTS_PROT |
3474 BSS_CHANGED_HT))) {
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003475 rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003476 if (rc)
3477 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003478 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003479
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003480 if (vif->bss_conf.assoc &&
3481 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003482 /*
3483 * Finalize the join. Tell rx handler to process
3484 * next beacon from our BSSID.
3485 */
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003486 memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003487 priv->capture_beacon = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003488 }
3489
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003490out:
3491 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003492}
3493
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003494static void
3495mwl8k_bss_info_changed_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
3496 struct ieee80211_bss_conf *info, u32 changed)
3497{
3498 int rc;
3499
3500 if (mwl8k_fw_lock(hw))
3501 return;
3502
3503 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
3504 rc = mwl8k_set_radio_preamble(hw,
3505 vif->bss_conf.use_short_preamble);
3506 if (rc)
3507 goto out;
3508 }
3509
3510 if (changed & BSS_CHANGED_BASIC_RATES) {
3511 int idx;
3512 int rate;
3513
3514 /*
3515 * Use lowest supported basic rate for multicasts
3516 * and management frames (such as probe responses --
3517 * beacons will always go out at 1 Mb/s).
3518 */
3519 idx = ffs(vif->bss_conf.basic_rates);
Lennert Buytenhek8707d022010-01-12 13:49:15 +01003520 if (idx)
3521 idx--;
3522
3523 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ)
3524 rate = mwl8k_rates_24[idx].hw_value;
3525 else
3526 rate = mwl8k_rates_50[idx].hw_value;
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003527
3528 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
3529 }
3530
3531 if (changed & (BSS_CHANGED_BEACON_INT | BSS_CHANGED_BEACON)) {
3532 struct sk_buff *skb;
3533
3534 skb = ieee80211_beacon_get(hw, vif);
3535 if (skb != NULL) {
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01003536 mwl8k_cmd_set_beacon(hw, vif, skb->data, skb->len);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003537 kfree_skb(skb);
3538 }
3539 }
3540
3541 if (changed & BSS_CHANGED_BEACON_ENABLED)
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01003542 mwl8k_cmd_bss_start(hw, vif, info->enable_beacon);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003543
3544out:
3545 mwl8k_fw_unlock(hw);
3546}
3547
3548static void
3549mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
3550 struct ieee80211_bss_conf *info, u32 changed)
3551{
3552 struct mwl8k_priv *priv = hw->priv;
3553
3554 if (!priv->ap_fw)
3555 mwl8k_bss_info_changed_sta(hw, vif, info, changed);
3556 else
3557 mwl8k_bss_info_changed_ap(hw, vif, info, changed);
3558}
3559
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02003560static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw,
3561 int mc_count, struct dev_addr_list *mclist)
3562{
3563 struct mwl8k_cmd_pkt *cmd;
3564
Lennert Buytenhek447ced02009-10-22 20:19:50 +02003565 /*
3566 * Synthesize and return a command packet that programs the
3567 * hardware multicast address filter. At this point we don't
3568 * know whether FIF_ALLMULTI is being requested, but if it is,
3569 * we'll end up throwing this packet away and creating a new
3570 * one in mwl8k_configure_filter().
3571 */
3572 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_count, mclist);
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02003573
3574 return (unsigned long)cmd;
3575}
3576
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003577static int
3578mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw,
3579 unsigned int changed_flags,
3580 unsigned int *total_flags)
3581{
3582 struct mwl8k_priv *priv = hw->priv;
3583
3584 /*
3585 * Hardware sniffer mode is mutually exclusive with STA
3586 * operation, so refuse to enable sniffer mode if a STA
3587 * interface is active.
3588 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01003589 if (!list_empty(&priv->vif_list)) {
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003590 if (net_ratelimit())
3591 printk(KERN_INFO "%s: not enabling sniffer "
3592 "mode because STA interface is active\n",
3593 wiphy_name(hw->wiphy));
3594 return 0;
3595 }
3596
3597 if (!priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003598 if (mwl8k_cmd_enable_sniffer(hw, 1))
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003599 return 0;
3600 priv->sniffer_enabled = true;
3601 }
3602
3603 *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI |
3604 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL |
3605 FIF_OTHER_BSS;
3606
3607 return 1;
3608}
3609
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01003610static struct mwl8k_vif *mwl8k_first_vif(struct mwl8k_priv *priv)
3611{
3612 if (!list_empty(&priv->vif_list))
3613 return list_entry(priv->vif_list.next, struct mwl8k_vif, list);
3614
3615 return NULL;
3616}
3617
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003618static void mwl8k_configure_filter(struct ieee80211_hw *hw,
3619 unsigned int changed_flags,
3620 unsigned int *total_flags,
3621 u64 multicast)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003622{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003623 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003624 struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast;
3625
3626 /*
Lennert Buytenhekc0adae22009-10-22 20:21:36 +02003627 * AP firmware doesn't allow fine-grained control over
3628 * the receive filter.
3629 */
3630 if (priv->ap_fw) {
3631 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
3632 kfree(cmd);
3633 return;
3634 }
3635
3636 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003637 * Enable hardware sniffer mode if FIF_CONTROL or
3638 * FIF_OTHER_BSS is requested.
3639 */
3640 if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) &&
3641 mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) {
3642 kfree(cmd);
3643 return;
3644 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003645
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003646 /* Clear unsupported feature flags */
Lennert Buytenhek447ced02009-10-22 20:19:50 +02003647 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003648
Lennert Buytenhek90852f72010-01-02 10:31:42 +01003649 if (mwl8k_fw_lock(hw)) {
3650 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003651 return;
Lennert Buytenhek90852f72010-01-02 10:31:42 +01003652 }
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003653
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003654 if (priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003655 mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003656 priv->sniffer_enabled = false;
3657 }
3658
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003659 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
Lennert Buytenhek77165d82009-10-22 20:19:53 +02003660 if (*total_flags & FIF_BCN_PRBRESP_PROMISC) {
3661 /*
3662 * Disable the BSS filter.
3663 */
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003664 mwl8k_cmd_set_pre_scan(hw);
Lennert Buytenhek77165d82009-10-22 20:19:53 +02003665 } else {
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01003666 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003667 const u8 *bssid;
Lennert Buytenheka94cc972009-08-03 21:58:57 +02003668
Lennert Buytenhek77165d82009-10-22 20:19:53 +02003669 /*
3670 * Enable the BSS filter.
3671 *
3672 * If there is an active STA interface, use that
3673 * interface's BSSID, otherwise use a dummy one
3674 * (where the OUI part needs to be nonzero for
3675 * the BSSID to be accepted by POST_SCAN).
3676 */
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01003677 mwl8k_vif = mwl8k_first_vif(priv);
3678 if (mwl8k_vif != NULL)
3679 bssid = mwl8k_vif->vif->bss_conf.bssid;
3680 else
3681 bssid = "\x01\x00\x00\x00\x00\x00";
Lennert Buytenheka94cc972009-08-03 21:58:57 +02003682
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003683 mwl8k_cmd_set_post_scan(hw, bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003684 }
3685 }
3686
Lennert Buytenhek447ced02009-10-22 20:19:50 +02003687 /*
3688 * If FIF_ALLMULTI is being requested, throw away the command
3689 * packet that ->prepare_multicast() built and replace it with
3690 * a command packet that enables reception of all multicast
3691 * packets.
3692 */
3693 if (*total_flags & FIF_ALLMULTI) {
3694 kfree(cmd);
3695 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, 0, NULL);
3696 }
3697
3698 if (cmd != NULL) {
3699 mwl8k_post_cmd(hw, cmd);
3700 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003701 }
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02003702
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003703 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003704}
3705
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003706static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
3707{
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003708 return mwl8k_cmd_set_rts_threshold(hw, value);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003709}
3710
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003711struct mwl8k_sta_notify_item
3712{
3713 struct list_head list;
3714 struct ieee80211_vif *vif;
3715 enum sta_notify_cmd cmd;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003716 struct ieee80211_sta sta;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003717};
3718
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003719static void
3720mwl8k_do_sta_notify(struct ieee80211_hw *hw, struct mwl8k_sta_notify_item *s)
3721{
3722 struct mwl8k_priv *priv = hw->priv;
3723
3724 /*
3725 * STA firmware uses UPDATE_STADB, AP firmware uses SET_NEW_STN.
3726 */
3727 if (!priv->ap_fw && s->cmd == STA_NOTIFY_ADD) {
3728 int rc;
3729
3730 rc = mwl8k_cmd_update_stadb_add(hw, s->vif, &s->sta);
3731 if (rc >= 0) {
3732 struct ieee80211_sta *sta;
3733
3734 rcu_read_lock();
3735 sta = ieee80211_find_sta(s->vif, s->sta.addr);
3736 if (sta != NULL)
3737 MWL8K_STA(sta)->peer_id = rc;
3738 rcu_read_unlock();
3739 }
3740 } else if (!priv->ap_fw && s->cmd == STA_NOTIFY_REMOVE) {
3741 mwl8k_cmd_update_stadb_del(hw, s->vif, s->sta.addr);
3742 } else if (priv->ap_fw && s->cmd == STA_NOTIFY_ADD) {
3743 mwl8k_cmd_set_new_stn_add(hw, s->vif, &s->sta);
3744 } else if (priv->ap_fw && s->cmd == STA_NOTIFY_REMOVE) {
3745 mwl8k_cmd_set_new_stn_del(hw, s->vif, s->sta.addr);
3746 }
3747}
3748
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003749static void mwl8k_sta_notify_worker(struct work_struct *work)
3750{
3751 struct mwl8k_priv *priv =
3752 container_of(work, struct mwl8k_priv, sta_notify_worker);
Lennert Buytenheka6804002010-01-04 21:55:42 +01003753 struct ieee80211_hw *hw = priv->hw;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003754
3755 spin_lock_bh(&priv->sta_notify_list_lock);
3756 while (!list_empty(&priv->sta_notify_list)) {
3757 struct mwl8k_sta_notify_item *s;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003758
3759 s = list_entry(priv->sta_notify_list.next,
3760 struct mwl8k_sta_notify_item, list);
3761 list_del(&s->list);
3762
3763 spin_unlock_bh(&priv->sta_notify_list_lock);
3764
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003765 mwl8k_do_sta_notify(hw, s);
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003766 kfree(s);
3767
3768 spin_lock_bh(&priv->sta_notify_list_lock);
3769 }
3770 spin_unlock_bh(&priv->sta_notify_list_lock);
3771}
3772
3773static void
3774mwl8k_sta_notify(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
3775 enum sta_notify_cmd cmd, struct ieee80211_sta *sta)
3776{
3777 struct mwl8k_priv *priv = hw->priv;
3778 struct mwl8k_sta_notify_item *s;
3779
3780 if (cmd != STA_NOTIFY_ADD && cmd != STA_NOTIFY_REMOVE)
3781 return;
3782
3783 s = kmalloc(sizeof(*s), GFP_ATOMIC);
3784 if (s != NULL) {
3785 s->vif = vif;
3786 s->cmd = cmd;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003787 s->sta = *sta;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003788
3789 spin_lock(&priv->sta_notify_list_lock);
3790 list_add_tail(&s->list, &priv->sta_notify_list);
3791 spin_unlock(&priv->sta_notify_list_lock);
3792
3793 ieee80211_queue_work(hw, &priv->sta_notify_worker);
3794 }
3795}
3796
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003797static int mwl8k_conf_tx(struct ieee80211_hw *hw, u16 queue,
3798 const struct ieee80211_tx_queue_params *params)
3799{
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003800 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003801 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003802
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003803 rc = mwl8k_fw_lock(hw);
3804 if (!rc) {
3805 if (!priv->wmm_enabled)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003806 rc = mwl8k_cmd_set_wmm_mode(hw, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003807
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003808 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003809 rc = mwl8k_cmd_set_edca_params(hw, queue,
3810 params->cw_min,
3811 params->cw_max,
3812 params->aifs,
3813 params->txop);
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003814
3815 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003816 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003817
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003818 return rc;
3819}
3820
3821static int mwl8k_get_tx_stats(struct ieee80211_hw *hw,
3822 struct ieee80211_tx_queue_stats *stats)
3823{
3824 struct mwl8k_priv *priv = hw->priv;
3825 struct mwl8k_tx_queue *txq;
3826 int index;
3827
3828 spin_lock_bh(&priv->tx_lock);
3829 for (index = 0; index < MWL8K_TX_QUEUES; index++) {
3830 txq = priv->txq + index;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02003831 memcpy(&stats[index], &txq->stats,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003832 sizeof(struct ieee80211_tx_queue_stats));
3833 }
3834 spin_unlock_bh(&priv->tx_lock);
Lennert Buytenhek954ef502009-07-17 07:26:27 +02003835
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003836 return 0;
3837}
3838
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003839static int mwl8k_get_stats(struct ieee80211_hw *hw,
3840 struct ieee80211_low_level_stats *stats)
3841{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003842 return mwl8k_cmd_get_stat(hw, stats);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003843}
3844
Lennert Buytenheka2292d82010-01-04 21:58:12 +01003845static int
3846mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
3847 enum ieee80211_ampdu_mlme_action action,
3848 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
3849{
3850 switch (action) {
3851 case IEEE80211_AMPDU_RX_START:
3852 case IEEE80211_AMPDU_RX_STOP:
3853 if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
3854 return -ENOTSUPP;
3855 return 0;
3856 default:
3857 return -ENOTSUPP;
3858 }
3859}
3860
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003861static const struct ieee80211_ops mwl8k_ops = {
3862 .tx = mwl8k_tx,
3863 .start = mwl8k_start,
3864 .stop = mwl8k_stop,
3865 .add_interface = mwl8k_add_interface,
3866 .remove_interface = mwl8k_remove_interface,
3867 .config = mwl8k_config,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003868 .bss_info_changed = mwl8k_bss_info_changed,
Johannes Berg3ac64be2009-08-17 16:16:53 +02003869 .prepare_multicast = mwl8k_prepare_multicast,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003870 .configure_filter = mwl8k_configure_filter,
3871 .set_rts_threshold = mwl8k_set_rts_threshold,
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003872 .sta_notify = mwl8k_sta_notify,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003873 .conf_tx = mwl8k_conf_tx,
3874 .get_tx_stats = mwl8k_get_tx_stats,
3875 .get_stats = mwl8k_get_stats,
Lennert Buytenheka2292d82010-01-04 21:58:12 +01003876 .ampdu_action = mwl8k_ampdu_action,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003877};
3878
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003879static void mwl8k_finalize_join_worker(struct work_struct *work)
3880{
3881 struct mwl8k_priv *priv =
3882 container_of(work, struct mwl8k_priv, finalize_join_worker);
3883 struct sk_buff *skb = priv->beacon_skb;
Johannes Berg56007a02010-01-26 14:19:52 +01003884 struct ieee80211_mgmt *mgmt = (void *)skb->data;
3885 int len = skb->len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
3886 const u8 *tim = cfg80211_find_ie(WLAN_EID_TIM,
3887 mgmt->u.beacon.variable, len);
3888 int dtim_period = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003889
Johannes Berg56007a02010-01-26 14:19:52 +01003890 if (tim && tim[1] >= 2)
3891 dtim_period = tim[3];
3892
3893 mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len, dtim_period);
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01003894
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003895 dev_kfree_skb(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003896 priv->beacon_skb = NULL;
3897}
3898
John W. Linvillebcb628d2009-11-06 16:40:16 -05003899enum {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01003900 MWL8363 = 0,
3901 MWL8687,
John W. Linvillebcb628d2009-11-06 16:40:16 -05003902 MWL8366,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02003903};
3904
John W. Linvillebcb628d2009-11-06 16:40:16 -05003905static struct mwl8k_device_info mwl8k_info_tbl[] __devinitdata = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01003906 [MWL8363] = {
3907 .part_name = "88w8363",
3908 .helper_image = "mwl8k/helper_8363.fw",
3909 .fw_image = "mwl8k/fmimage_8363.fw",
3910 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01003911 [MWL8687] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05003912 .part_name = "88w8687",
3913 .helper_image = "mwl8k/helper_8687.fw",
3914 .fw_image = "mwl8k/fmimage_8687.fw",
John W. Linvillebcb628d2009-11-06 16:40:16 -05003915 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01003916 [MWL8366] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05003917 .part_name = "88w8366",
3918 .helper_image = "mwl8k/helper_8366.fw",
3919 .fw_image = "mwl8k/fmimage_8366.fw",
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01003920 .ap_rxd_ops = &rxd_8366_ap_ops,
John W. Linvillebcb628d2009-11-06 16:40:16 -05003921 },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02003922};
3923
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01003924MODULE_FIRMWARE("mwl8k/helper_8363.fw");
3925MODULE_FIRMWARE("mwl8k/fmimage_8363.fw");
3926MODULE_FIRMWARE("mwl8k/helper_8687.fw");
3927MODULE_FIRMWARE("mwl8k/fmimage_8687.fw");
3928MODULE_FIRMWARE("mwl8k/helper_8366.fw");
3929MODULE_FIRMWARE("mwl8k/fmimage_8366.fw");
3930
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02003931static DEFINE_PCI_DEVICE_TABLE(mwl8k_pci_id_table) = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01003932 { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, },
3933 { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05003934 { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, },
3935 { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, },
3936 { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, },
Lennert Buytenhekca665272010-01-12 13:47:53 +01003937 { PCI_VDEVICE(MARVELL, 0x2a43), .driver_data = MWL8366, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05003938 { },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02003939};
3940MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table);
3941
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003942static int __devinit mwl8k_probe(struct pci_dev *pdev,
3943 const struct pci_device_id *id)
3944{
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02003945 static int printed_version = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003946 struct ieee80211_hw *hw;
3947 struct mwl8k_priv *priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003948 int rc;
3949 int i;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02003950
3951 if (!printed_version) {
3952 printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION);
3953 printed_version = 1;
3954 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003955
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003956
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003957 rc = pci_enable_device(pdev);
3958 if (rc) {
3959 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
3960 MWL8K_NAME);
3961 return rc;
3962 }
3963
3964 rc = pci_request_regions(pdev, MWL8K_NAME);
3965 if (rc) {
3966 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
3967 MWL8K_NAME);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01003968 goto err_disable_device;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003969 }
3970
3971 pci_set_master(pdev);
3972
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003973
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003974 hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
3975 if (hw == NULL) {
3976 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
3977 rc = -ENOMEM;
3978 goto err_free_reg;
3979 }
3980
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003981 SET_IEEE80211_DEV(hw, &pdev->dev);
3982 pci_set_drvdata(pdev, hw);
3983
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003984 priv = hw->priv;
3985 priv->hw = hw;
3986 priv->pdev = pdev;
John W. Linvillebcb628d2009-11-06 16:40:16 -05003987 priv->device_info = &mwl8k_info_tbl[id->driver_data];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003988
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003989
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02003990 priv->sram = pci_iomap(pdev, 0, 0x10000);
3991 if (priv->sram == NULL) {
3992 printk(KERN_ERR "%s: Cannot map device SRAM\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003993 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003994 goto err_iounmap;
3995 }
3996
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02003997 /*
3998 * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
3999 * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
4000 */
4001 priv->regs = pci_iomap(pdev, 1, 0x10000);
4002 if (priv->regs == NULL) {
4003 priv->regs = pci_iomap(pdev, 2, 0x10000);
4004 if (priv->regs == NULL) {
4005 printk(KERN_ERR "%s: Cannot map device registers\n",
4006 wiphy_name(hw->wiphy));
4007 goto err_iounmap;
4008 }
4009 }
4010
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01004011
4012 /* Reset firmware and hardware */
4013 mwl8k_hw_reset(priv);
4014
4015 /* Ask userland hotplug daemon for the device firmware */
4016 rc = mwl8k_request_firmware(priv);
4017 if (rc) {
4018 printk(KERN_ERR "%s: Firmware files not found\n",
4019 wiphy_name(hw->wiphy));
4020 goto err_stop_firmware;
4021 }
4022
4023 /* Load firmware into hardware */
4024 rc = mwl8k_load_firmware(hw);
4025 if (rc) {
4026 printk(KERN_ERR "%s: Cannot start firmware\n",
4027 wiphy_name(hw->wiphy));
4028 goto err_stop_firmware;
4029 }
4030
4031 /* Reclaim memory once firmware is successfully loaded */
4032 mwl8k_release_firmware(priv);
4033
4034
Lennert Buytenhek91942232010-01-04 21:53:54 +01004035 if (priv->ap_fw) {
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01004036 priv->rxd_ops = priv->device_info->ap_rxd_ops;
Lennert Buytenhek91942232010-01-04 21:53:54 +01004037 if (priv->rxd_ops == NULL) {
4038 printk(KERN_ERR "%s: Driver does not have AP "
4039 "firmware image support for this hardware\n",
4040 wiphy_name(hw->wiphy));
4041 goto err_stop_firmware;
4042 }
4043 } else {
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01004044 priv->rxd_ops = &rxd_sta_ops;
Lennert Buytenhek91942232010-01-04 21:53:54 +01004045 }
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01004046
4047 priv->sniffer_enabled = false;
4048 priv->wmm_enabled = false;
4049 priv->pending_tx_pkts = 0;
4050
4051
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004052 /*
4053 * Extra headroom is the size of the required DMA header
4054 * minus the size of the smallest 802.11 frame (CTS frame).
4055 */
4056 hw->extra_tx_headroom =
4057 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
4058
4059 hw->channel_change_time = 10;
4060
4061 hw->queues = MWL8K_TX_QUEUES;
4062
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004063 /* Set rssi and noise values to dBm */
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02004064 hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_NOISE_DBM;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004065 hw->vif_data_size = sizeof(struct mwl8k_vif);
Lennert Buytenheka6804002010-01-04 21:55:42 +01004066 hw->sta_data_size = sizeof(struct mwl8k_sta);
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004067
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004068 priv->macids_used = 0;
Lennert Buytenhekf5bb87c2010-01-12 13:49:51 +01004069 INIT_LIST_HEAD(&priv->vif_list);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004070
4071 /* Set default radio state and preamble */
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02004072 priv->radio_on = 0;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02004073 priv->radio_short_preamble = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004074
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01004075 /* Station database handling */
4076 INIT_WORK(&priv->sta_notify_worker, mwl8k_sta_notify_worker);
4077 spin_lock_init(&priv->sta_notify_list_lock);
4078 INIT_LIST_HEAD(&priv->sta_notify_list);
4079
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004080 /* Finalize join worker */
4081 INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
4082
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004083 /* TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004084 tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw);
4085 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004086 tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw);
4087 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004088
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004089 /* Power management cookie */
4090 priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
4091 if (priv->cookie == NULL)
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01004092 goto err_stop_firmware;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004093
4094 rc = mwl8k_rxq_init(hw, 0);
4095 if (rc)
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01004096 goto err_free_cookie;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004097 rxq_refill(hw, 0, INT_MAX);
4098
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004099 mutex_init(&priv->fw_mutex);
4100 priv->fw_mutex_owner = NULL;
4101 priv->fw_mutex_depth = 0;
Lennert Buytenhek618952a2009-08-18 03:18:01 +02004102 priv->hostcmd_wait = NULL;
4103
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004104 spin_lock_init(&priv->tx_lock);
4105
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02004106 priv->tx_wait = NULL;
4107
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004108 for (i = 0; i < MWL8K_TX_QUEUES; i++) {
4109 rc = mwl8k_txq_init(hw, i);
4110 if (rc)
4111 goto err_free_queues;
4112 }
4113
4114 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02004115 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004116 iowrite32(MWL8K_A2H_INT_TX_DONE | MWL8K_A2H_INT_RX_READY,
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004117 priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004118 iowrite32(0xffffffff, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
4119
Joe Perchesa0607fd2009-11-18 23:29:17 -08004120 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004121 IRQF_SHARED, MWL8K_NAME, hw);
4122 if (rc) {
4123 printk(KERN_ERR "%s: failed to register IRQ handler\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02004124 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004125 goto err_free_queues;
4126 }
4127
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004128 /*
4129 * Temporarily enable interrupts. Initial firmware host
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01004130 * commands use interrupts and avoid polling. Disable
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004131 * interrupts when done.
4132 */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02004133 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004134
4135 /* Get config data, mac addrs etc */
Lennert Buytenhek42fba212009-10-22 20:21:30 +02004136 if (priv->ap_fw) {
4137 rc = mwl8k_cmd_get_hw_spec_ap(hw);
4138 if (!rc)
4139 rc = mwl8k_cmd_set_hw_spec(hw);
4140 } else {
4141 rc = mwl8k_cmd_get_hw_spec_sta(hw);
4142 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004143 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02004144 printk(KERN_ERR "%s: Cannot initialise firmware\n",
4145 wiphy_name(hw->wiphy));
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01004146 goto err_free_irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004147 }
4148
Lennert Buytenhekee0ddf12010-01-12 13:51:30 +01004149 hw->wiphy->interface_modes = 0;
4150 if (priv->ap_macids_supported)
4151 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP);
4152 if (priv->sta_macids_supported)
4153 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION);
4154
4155
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004156 /* Turn radio off */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01004157 rc = mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004158 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02004159 printk(KERN_ERR "%s: Cannot disable\n", wiphy_name(hw->wiphy));
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01004160 goto err_free_irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004161 }
4162
Lennert Buytenhek32060e12009-10-22 20:20:04 +02004163 /* Clear MAC address */
Lennert Buytenhekaa21d0f2010-01-12 13:50:36 +01004164 rc = mwl8k_cmd_set_mac_addr(hw, NULL, "\x00\x00\x00\x00\x00\x00");
Lennert Buytenhek32060e12009-10-22 20:20:04 +02004165 if (rc) {
4166 printk(KERN_ERR "%s: Cannot clear MAC address\n",
4167 wiphy_name(hw->wiphy));
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01004168 goto err_free_irq;
Lennert Buytenhek32060e12009-10-22 20:20:04 +02004169 }
4170
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004171 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004172 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004173 free_irq(priv->pdev->irq, hw);
4174
4175 rc = ieee80211_register_hw(hw);
4176 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02004177 printk(KERN_ERR "%s: Cannot register device\n",
4178 wiphy_name(hw->wiphy));
Lennert Buytenhek153458f2010-01-04 21:54:08 +01004179 goto err_free_queues;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004180 }
4181
Lennert Buytenhekeae74e62009-10-22 20:20:53 +02004182 printk(KERN_INFO "%s: %s v%d, %pM, %s firmware %u.%u.%u.%u\n",
Lennert Buytenheka74b2952009-10-22 20:20:50 +02004183 wiphy_name(hw->wiphy), priv->device_info->part_name,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02004184 priv->hw_rev, hw->wiphy->perm_addr,
Lennert Buytenhekeae74e62009-10-22 20:20:53 +02004185 priv->ap_fw ? "AP" : "STA",
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02004186 (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff,
4187 (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004188
4189 return 0;
4190
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004191err_free_irq:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004192 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004193 free_irq(priv->pdev->irq, hw);
4194
4195err_free_queues:
4196 for (i = 0; i < MWL8K_TX_QUEUES; i++)
4197 mwl8k_txq_deinit(hw, i);
4198 mwl8k_rxq_deinit(hw, 0);
4199
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01004200err_free_cookie:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004201 if (priv->cookie != NULL)
4202 pci_free_consistent(priv->pdev, 4,
4203 priv->cookie, priv->cookie_dma);
4204
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01004205err_stop_firmware:
4206 mwl8k_hw_reset(priv);
4207 mwl8k_release_firmware(priv);
4208
4209err_iounmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004210 if (priv->regs != NULL)
4211 pci_iounmap(pdev, priv->regs);
4212
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02004213 if (priv->sram != NULL)
4214 pci_iounmap(pdev, priv->sram);
4215
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004216 pci_set_drvdata(pdev, NULL);
4217 ieee80211_free_hw(hw);
4218
4219err_free_reg:
4220 pci_release_regions(pdev);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01004221
4222err_disable_device:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004223 pci_disable_device(pdev);
4224
4225 return rc;
4226}
4227
Joerg Albert230f7af2009-04-18 02:10:45 +02004228static void __devexit mwl8k_shutdown(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004229{
4230 printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__);
4231}
4232
Joerg Albert230f7af2009-04-18 02:10:45 +02004233static void __devexit mwl8k_remove(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004234{
4235 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
4236 struct mwl8k_priv *priv;
4237 int i;
4238
4239 if (hw == NULL)
4240 return;
4241 priv = hw->priv;
4242
4243 ieee80211_stop_queues(hw);
4244
Lennert Buytenhek60aa5692009-08-03 21:59:09 +02004245 ieee80211_unregister_hw(hw);
4246
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004247 /* Remove TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004248 tasklet_kill(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004249 tasklet_kill(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004250
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004251 /* Stop hardware */
4252 mwl8k_hw_reset(priv);
4253
4254 /* Return all skbs to mac80211 */
4255 for (i = 0; i < MWL8K_TX_QUEUES; i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01004256 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004257
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004258 for (i = 0; i < MWL8K_TX_QUEUES; i++)
4259 mwl8k_txq_deinit(hw, i);
4260
4261 mwl8k_rxq_deinit(hw, 0);
4262
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02004263 pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004264
4265 pci_iounmap(pdev, priv->regs);
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02004266 pci_iounmap(pdev, priv->sram);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004267 pci_set_drvdata(pdev, NULL);
4268 ieee80211_free_hw(hw);
4269 pci_release_regions(pdev);
4270 pci_disable_device(pdev);
4271}
4272
4273static struct pci_driver mwl8k_driver = {
4274 .name = MWL8K_NAME,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02004275 .id_table = mwl8k_pci_id_table,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004276 .probe = mwl8k_probe,
4277 .remove = __devexit_p(mwl8k_remove),
4278 .shutdown = __devexit_p(mwl8k_shutdown),
4279};
4280
4281static int __init mwl8k_init(void)
4282{
4283 return pci_register_driver(&mwl8k_driver);
4284}
4285
4286static void __exit mwl8k_exit(void)
4287{
4288 pci_unregister_driver(&mwl8k_driver);
4289}
4290
4291module_init(mwl8k_init);
4292module_exit(mwl8k_exit);
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02004293
4294MODULE_DESCRIPTION(MWL8K_DESC);
4295MODULE_VERSION(MWL8K_VERSION);
4296MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
4297MODULE_LICENSE("GPL");