blob: 23a5a3442623eb9603092726ce6b1023c2445bfd [file] [log] [blame]
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001/*
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02002 * drivers/net/wireless/mwl8k.c
3 * Driver for Marvell TOPDOG 802.11 Wireless cards
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004 *
Lennert Buytenheka145d572009-08-18 04:34:26 +02005 * Copyright (C) 2008-2009 Marvell Semiconductor Inc.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01006 *
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
10 */
11
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/kernel.h>
Lennert Buytenhek3d76e822009-10-22 20:20:16 +020015#include <linux/sched.h>
Lennert Buytenheka66098d2009-03-10 10:13:33 +010016#include <linux/spinlock.h>
17#include <linux/list.h>
18#include <linux/pci.h>
19#include <linux/delay.h>
20#include <linux/completion.h>
21#include <linux/etherdevice.h>
22#include <net/mac80211.h>
23#include <linux/moduleparam.h>
24#include <linux/firmware.h>
25#include <linux/workqueue.h>
26
27#define MWL8K_DESC "Marvell TOPDOG(R) 802.11 Wireless Network Driver"
28#define MWL8K_NAME KBUILD_MODNAME
Lennert Buytenhek6976b662010-01-02 10:31:50 +010029#define MWL8K_VERSION "0.11"
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;
144
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200145 /* firmware access */
146 struct mutex fw_mutex;
147 struct task_struct *fw_mutex_owner;
148 int fw_mutex_depth;
Lennert Buytenhek618952a2009-08-18 03:18:01 +0200149 struct completion *hostcmd_wait;
150
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100151 /* lock held over TX and TX reap */
152 spinlock_t tx_lock;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100153
Lennert Buytenhek88de754a2009-10-22 20:19:37 +0200154 /* TX quiesce completion, protected by fw_mutex and tx_lock */
155 struct completion *tx_wait;
156
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100157 struct ieee80211_vif *vif;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100158
159 struct ieee80211_channel *current_channel;
160
161 /* power management status cookie from firmware */
162 u32 *cookie;
163 dma_addr_t cookie_dma;
164
165 u16 num_mcaddrs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100166 u8 hw_rev;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +0200167 u32 fw_rev;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100168
169 /*
170 * Running count of TX packets in flight, to avoid
171 * iterating over the transmit rings each time.
172 */
173 int pending_tx_pkts;
174
175 struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES];
176 struct mwl8k_tx_queue txq[MWL8K_TX_QUEUES];
177
178 /* PHY parameters */
179 struct ieee80211_supported_band band;
180 struct ieee80211_channel channels[14];
Lennert Buytenhek140eb5e2009-11-30 18:11:44 +0100181 struct ieee80211_rate rates[14];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100182
Lennert Buytenhekc46563b2009-07-16 12:14:58 +0200183 bool radio_on;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +0200184 bool radio_short_preamble;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +0200185 bool sniffer_enabled;
Lennert Buytenhek0439b1f2009-07-16 12:34:02 +0200186 bool wmm_enabled;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100187
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +0100188 struct work_struct sta_notify_worker;
189 spinlock_t sta_notify_list_lock;
190 struct list_head sta_notify_list;
191
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100192 /* XXX need to convert this to handle multiple interfaces */
193 bool capture_beacon;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200194 u8 capture_bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100195 struct sk_buff *beacon_skb;
196
197 /*
198 * This FJ worker has to be global as it is scheduled from the
199 * RX handler. At this point we don't know which interface it
200 * belongs to until the list of bssids waiting to complete join
201 * is checked.
202 */
203 struct work_struct finalize_join_worker;
204
205 /* Tasklet to reclaim TX descriptors and buffers after tx */
206 struct tasklet_struct tx_reclaim_task;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100207};
208
209/* Per interface specific private data */
210struct mwl8k_vif {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +0100211 /* Local MAC address. */
212 u8 mac_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100213
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100214 /* Non AMPDU sequence number assigned by driver */
Lennert Buytenheka6804002010-01-04 21:55:42 +0100215 u16 seqno;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100216};
Lennert Buytenheka94cc972009-08-03 21:58:57 +0200217#define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv))
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100218
Lennert Buytenheka6804002010-01-04 21:55:42 +0100219struct mwl8k_sta {
220 /* Index into station database. Returned by UPDATE_STADB. */
221 u8 peer_id;
222};
223#define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv))
224
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100225static const struct ieee80211_channel mwl8k_channels[] = {
226 { .center_freq = 2412, .hw_value = 1, },
227 { .center_freq = 2417, .hw_value = 2, },
228 { .center_freq = 2422, .hw_value = 3, },
229 { .center_freq = 2427, .hw_value = 4, },
230 { .center_freq = 2432, .hw_value = 5, },
231 { .center_freq = 2437, .hw_value = 6, },
232 { .center_freq = 2442, .hw_value = 7, },
233 { .center_freq = 2447, .hw_value = 8, },
234 { .center_freq = 2452, .hw_value = 9, },
235 { .center_freq = 2457, .hw_value = 10, },
236 { .center_freq = 2462, .hw_value = 11, },
Lennert Buytenhek647ca6b2009-11-30 18:32:20 +0100237 { .center_freq = 2467, .hw_value = 12, },
238 { .center_freq = 2472, .hw_value = 13, },
239 { .center_freq = 2484, .hw_value = 14, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100240};
241
242static const struct ieee80211_rate mwl8k_rates[] = {
243 { .bitrate = 10, .hw_value = 2, },
244 { .bitrate = 20, .hw_value = 4, },
245 { .bitrate = 55, .hw_value = 11, },
Lennert Buytenhek5dfd3e22009-10-22 20:20:29 +0200246 { .bitrate = 110, .hw_value = 22, },
247 { .bitrate = 220, .hw_value = 44, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100248 { .bitrate = 60, .hw_value = 12, },
249 { .bitrate = 90, .hw_value = 18, },
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100250 { .bitrate = 120, .hw_value = 24, },
251 { .bitrate = 180, .hw_value = 36, },
252 { .bitrate = 240, .hw_value = 48, },
253 { .bitrate = 360, .hw_value = 72, },
254 { .bitrate = 480, .hw_value = 96, },
255 { .bitrate = 540, .hw_value = 108, },
Lennert Buytenhek140eb5e2009-11-30 18:11:44 +0100256 { .bitrate = 720, .hw_value = 144, },
257};
258
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100259/* Set or get info from Firmware */
260#define MWL8K_CMD_SET 0x0001
261#define MWL8K_CMD_GET 0x0000
262
263/* Firmware command codes */
264#define MWL8K_CMD_CODE_DNLD 0x0001
265#define MWL8K_CMD_GET_HW_SPEC 0x0003
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200266#define MWL8K_CMD_SET_HW_SPEC 0x0004
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100267#define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010
268#define MWL8K_CMD_GET_STAT 0x0014
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200269#define MWL8K_CMD_RADIO_CONTROL 0x001c
270#define MWL8K_CMD_RF_TX_POWER 0x001e
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200271#define MWL8K_CMD_RF_ANTENNA 0x0020
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100272#define MWL8K_CMD_SET_PRE_SCAN 0x0107
273#define MWL8K_CMD_SET_POST_SCAN 0x0108
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200274#define MWL8K_CMD_SET_RF_CHANNEL 0x010a
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100275#define MWL8K_CMD_SET_AID 0x010d
276#define MWL8K_CMD_SET_RATE 0x0110
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200277#define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100278#define MWL8K_CMD_RTS_THRESHOLD 0x0113
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200279#define MWL8K_CMD_SET_SLOT 0x0114
280#define MWL8K_CMD_SET_EDCA_PARAMS 0x0115
281#define MWL8K_CMD_SET_WMM_MODE 0x0123
282#define MWL8K_CMD_MIMO_CONFIG 0x0125
283#define MWL8K_CMD_USE_FIXED_RATE 0x0126
284#define MWL8K_CMD_ENABLE_SNIFFER 0x0150
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200285#define MWL8K_CMD_SET_MAC_ADDR 0x0202
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200286#define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203
287#define MWL8K_CMD_UPDATE_STADB 0x1123
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100288
289static const char *mwl8k_cmd_name(u16 cmd, char *buf, int bufsize)
290{
291#define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\
292 snprintf(buf, bufsize, "%s", #x);\
293 return buf;\
294 } while (0)
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +0200295 switch (cmd & ~0x8000) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100296 MWL8K_CMDNAME(CODE_DNLD);
297 MWL8K_CMDNAME(GET_HW_SPEC);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +0200298 MWL8K_CMDNAME(SET_HW_SPEC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100299 MWL8K_CMDNAME(MAC_MULTICAST_ADR);
300 MWL8K_CMDNAME(GET_STAT);
301 MWL8K_CMDNAME(RADIO_CONTROL);
302 MWL8K_CMDNAME(RF_TX_POWER);
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200303 MWL8K_CMDNAME(RF_ANTENNA);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100304 MWL8K_CMDNAME(SET_PRE_SCAN);
305 MWL8K_CMDNAME(SET_POST_SCAN);
306 MWL8K_CMDNAME(SET_RF_CHANNEL);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100307 MWL8K_CMDNAME(SET_AID);
308 MWL8K_CMDNAME(SET_RATE);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200309 MWL8K_CMDNAME(SET_FINALIZE_JOIN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100310 MWL8K_CMDNAME(RTS_THRESHOLD);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200311 MWL8K_CMDNAME(SET_SLOT);
312 MWL8K_CMDNAME(SET_EDCA_PARAMS);
313 MWL8K_CMDNAME(SET_WMM_MODE);
314 MWL8K_CMDNAME(MIMO_CONFIG);
315 MWL8K_CMDNAME(USE_FIXED_RATE);
316 MWL8K_CMDNAME(ENABLE_SNIFFER);
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200317 MWL8K_CMDNAME(SET_MAC_ADDR);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200318 MWL8K_CMDNAME(SET_RATEADAPT_MODE);
319 MWL8K_CMDNAME(UPDATE_STADB);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100320 default:
321 snprintf(buf, bufsize, "0x%x", cmd);
322 }
323#undef MWL8K_CMDNAME
324
325 return buf;
326}
327
328/* Hardware and firmware reset */
329static void mwl8k_hw_reset(struct mwl8k_priv *priv)
330{
331 iowrite32(MWL8K_H2A_INT_RESET,
332 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
333 iowrite32(MWL8K_H2A_INT_RESET,
334 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
335 msleep(20);
336}
337
338/* Release fw image */
339static void mwl8k_release_fw(struct firmware **fw)
340{
341 if (*fw == NULL)
342 return;
343 release_firmware(*fw);
344 *fw = NULL;
345}
346
347static void mwl8k_release_firmware(struct mwl8k_priv *priv)
348{
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100349 mwl8k_release_fw(&priv->fw_ucode);
350 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100351}
352
353/* Request fw image */
354static int mwl8k_request_fw(struct mwl8k_priv *priv,
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200355 const char *fname, struct firmware **fw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100356{
357 /* release current image */
358 if (*fw != NULL)
359 mwl8k_release_fw(fw);
360
361 return request_firmware((const struct firmware **)fw,
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200362 fname, &priv->pdev->dev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100363}
364
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200365static int mwl8k_request_firmware(struct mwl8k_priv *priv)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100366{
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200367 struct mwl8k_device_info *di = priv->device_info;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100368 int rc;
369
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200370 if (di->helper_image != NULL) {
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100371 rc = mwl8k_request_fw(priv, di->helper_image, &priv->fw_helper);
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200372 if (rc) {
373 printk(KERN_ERR "%s: Error requesting helper "
374 "firmware file %s\n", pci_name(priv->pdev),
375 di->helper_image);
376 return rc;
377 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100378 }
379
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100380 rc = mwl8k_request_fw(priv, di->fw_image, &priv->fw_ucode);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100381 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200382 printk(KERN_ERR "%s: Error requesting firmware file %s\n",
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200383 pci_name(priv->pdev), di->fw_image);
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100384 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100385 return rc;
386 }
387
388 return 0;
389}
390
Ben Hutchings7e75b942009-11-07 22:00:57 +0000391MODULE_FIRMWARE("mwl8k/helper_8687.fw");
392MODULE_FIRMWARE("mwl8k/fmimage_8687.fw");
393
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100394struct mwl8k_cmd_pkt {
395 __le16 code;
396 __le16 length;
397 __le16 seq_num;
398 __le16 result;
399 char payload[0];
400} __attribute__((packed));
401
402/*
403 * Firmware loading.
404 */
405static int
406mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length)
407{
408 void __iomem *regs = priv->regs;
409 dma_addr_t dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100410 int loops;
411
412 dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE);
413 if (pci_dma_mapping_error(priv->pdev, dma_addr))
414 return -ENOMEM;
415
416 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
417 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
418 iowrite32(MWL8K_H2A_INT_DOORBELL,
419 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
420 iowrite32(MWL8K_H2A_INT_DUMMY,
421 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
422
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100423 loops = 1000;
424 do {
425 u32 int_code;
426
427 int_code = ioread32(regs + MWL8K_HIU_INT_CODE);
428 if (int_code == MWL8K_INT_CODE_CMD_FINISHED) {
429 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100430 break;
431 }
432
Lennert Buytenhek3d76e822009-10-22 20:20:16 +0200433 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100434 udelay(1);
435 } while (--loops);
436
437 pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE);
438
Lennert Buytenhekd4b70572009-07-16 12:44:45 +0200439 return loops ? 0 : -ETIMEDOUT;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100440}
441
442static int mwl8k_load_fw_image(struct mwl8k_priv *priv,
443 const u8 *data, size_t length)
444{
445 struct mwl8k_cmd_pkt *cmd;
446 int done;
447 int rc = 0;
448
449 cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL);
450 if (cmd == NULL)
451 return -ENOMEM;
452
453 cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD);
454 cmd->seq_num = 0;
455 cmd->result = 0;
456
457 done = 0;
458 while (length) {
459 int block_size = length > 256 ? 256 : length;
460
461 memcpy(cmd->payload, data + done, block_size);
462 cmd->length = cpu_to_le16(block_size);
463
464 rc = mwl8k_send_fw_load_cmd(priv, cmd,
465 sizeof(*cmd) + block_size);
466 if (rc)
467 break;
468
469 done += block_size;
470 length -= block_size;
471 }
472
473 if (!rc) {
474 cmd->length = 0;
475 rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd));
476 }
477
478 kfree(cmd);
479
480 return rc;
481}
482
483static int mwl8k_feed_fw_image(struct mwl8k_priv *priv,
484 const u8 *data, size_t length)
485{
486 unsigned char *buffer;
487 int may_continue, rc = 0;
488 u32 done, prev_block_size;
489
490 buffer = kmalloc(1024, GFP_KERNEL);
491 if (buffer == NULL)
492 return -ENOMEM;
493
494 done = 0;
495 prev_block_size = 0;
496 may_continue = 1000;
497 while (may_continue > 0) {
498 u32 block_size;
499
500 block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH);
501 if (block_size & 1) {
502 block_size &= ~1;
503 may_continue--;
504 } else {
505 done += prev_block_size;
506 length -= prev_block_size;
507 }
508
509 if (block_size > 1024 || block_size > length) {
510 rc = -EOVERFLOW;
511 break;
512 }
513
514 if (length == 0) {
515 rc = 0;
516 break;
517 }
518
519 if (block_size == 0) {
520 rc = -EPROTO;
521 may_continue--;
522 udelay(1);
523 continue;
524 }
525
526 prev_block_size = block_size;
527 memcpy(buffer, data + done, block_size);
528
529 rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size);
530 if (rc)
531 break;
532 }
533
534 if (!rc && length != 0)
535 rc = -EREMOTEIO;
536
537 kfree(buffer);
538
539 return rc;
540}
541
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200542static int mwl8k_load_firmware(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100543{
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200544 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100545 struct firmware *fw = priv->fw_ucode;
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200546 int rc;
547 int loops;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100548
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200549 if (!memcmp(fw->data, "\x01\x00\x00\x00", 4)) {
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100550 struct firmware *helper = priv->fw_helper;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100551
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200552 if (helper == NULL) {
553 printk(KERN_ERR "%s: helper image needed but none "
554 "given\n", pci_name(priv->pdev));
555 return -EINVAL;
556 }
557
558 rc = mwl8k_load_fw_image(priv, helper->data, helper->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100559 if (rc) {
560 printk(KERN_ERR "%s: unable to load firmware "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200561 "helper image\n", pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100562 return rc;
563 }
Lennert Buytenhek89b872e2009-11-30 18:13:20 +0100564 msleep(5);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100565
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200566 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100567 } else {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200568 rc = mwl8k_load_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100569 }
570
571 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200572 printk(KERN_ERR "%s: unable to load firmware image\n",
573 pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100574 return rc;
575 }
576
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100577 iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100578
Lennert Buytenhek89b872e2009-11-30 18:13:20 +0100579 loops = 500000;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100580 do {
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200581 u32 ready_code;
582
583 ready_code = ioread32(priv->regs + MWL8K_HIU_INT_CODE);
584 if (ready_code == MWL8K_FWAP_READY) {
585 priv->ap_fw = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100586 break;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200587 } else if (ready_code == MWL8K_FWSTA_READY) {
588 priv->ap_fw = 0;
589 break;
590 }
591
592 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100593 udelay(1);
594 } while (--loops);
595
596 return loops ? 0 : -ETIMEDOUT;
597}
598
599
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100600/* DMA header used by firmware and hardware. */
601struct mwl8k_dma_data {
602 __le16 fwlen;
603 struct ieee80211_hdr wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100604 char data[0];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100605} __attribute__((packed));
606
607/* Routines to add/remove DMA header from skb. */
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100608static inline void mwl8k_remove_dma_header(struct sk_buff *skb, __le16 qos)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100609{
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100610 struct mwl8k_dma_data *tr;
611 int hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100612
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100613 tr = (struct mwl8k_dma_data *)skb->data;
614 hdrlen = ieee80211_hdrlen(tr->wh.frame_control);
615
616 if (hdrlen != sizeof(tr->wh)) {
617 if (ieee80211_is_data_qos(tr->wh.frame_control)) {
618 memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2);
619 *((__le16 *)(tr->data - 2)) = qos;
620 } else {
621 memmove(tr->data - hdrlen, &tr->wh, hdrlen);
622 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100623 }
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100624
625 if (hdrlen != sizeof(*tr))
626 skb_pull(skb, sizeof(*tr) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100627}
628
Lennert Buytenhek76266b22009-07-16 11:07:09 +0200629static inline void mwl8k_add_dma_header(struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100630{
631 struct ieee80211_hdr *wh;
Lennert Buytenhekca009302009-11-30 18:12:20 +0100632 int hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100633 struct mwl8k_dma_data *tr;
634
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100635 /*
Lennert Buytenhekca009302009-11-30 18:12:20 +0100636 * Add a firmware DMA header; the firmware requires that we
637 * present a 2-byte payload length followed by a 4-address
638 * header (without QoS field), followed (optionally) by any
639 * WEP/ExtIV header (but only filled in for CCMP).
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100640 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100641 wh = (struct ieee80211_hdr *)skb->data;
642
643 hdrlen = ieee80211_hdrlen(wh->frame_control);
644 if (hdrlen != sizeof(*tr))
645 skb_push(skb, sizeof(*tr) - hdrlen);
646
647 if (ieee80211_is_data_qos(wh->frame_control))
648 hdrlen -= 2;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100649
650 tr = (struct mwl8k_dma_data *)skb->data;
651 if (wh != &tr->wh)
652 memmove(&tr->wh, wh, hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100653 if (hdrlen != sizeof(tr->wh))
654 memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100655
656 /*
657 * Firmware length is the length of the fully formed "802.11
658 * payload". That is, everything except for the 802.11 header.
659 * This includes all crypto material including the MIC.
660 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100661 tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100662}
663
664
665/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100666 * Packet reception for 88w8366 AP firmware.
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200667 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100668struct mwl8k_rxd_8366_ap {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200669 __le16 pkt_len;
670 __u8 sq2;
671 __u8 rate;
672 __le32 pkt_phys_addr;
673 __le32 next_rxd_phys_addr;
674 __le16 qos_control;
675 __le16 htsig2;
676 __le32 hw_rssi_info;
677 __le32 hw_noise_floor_info;
678 __u8 noise_floor;
679 __u8 pad0[3];
680 __u8 rssi;
681 __u8 rx_status;
682 __u8 channel;
683 __u8 rx_ctrl;
684} __attribute__((packed));
685
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100686#define MWL8K_8366_AP_RATE_INFO_MCS_FORMAT 0x80
687#define MWL8K_8366_AP_RATE_INFO_40MHZ 0x40
688#define MWL8K_8366_AP_RATE_INFO_RATEID(x) ((x) & 0x3f)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100689
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100690#define MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST 0x80
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200691
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100692static void mwl8k_rxd_8366_ap_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200693{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100694 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200695
696 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100697 rxd->rx_ctrl = MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200698}
699
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100700static void mwl8k_rxd_8366_ap_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200701{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100702 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200703
704 rxd->pkt_len = cpu_to_le16(len);
705 rxd->pkt_phys_addr = cpu_to_le32(addr);
706 wmb();
707 rxd->rx_ctrl = 0;
708}
709
710static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100711mwl8k_rxd_8366_ap_process(void *_rxd, struct ieee80211_rx_status *status,
712 __le16 *qos)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200713{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100714 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200715
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100716 if (!(rxd->rx_ctrl & MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200717 return -1;
718 rmb();
719
720 memset(status, 0, sizeof(*status));
721
722 status->signal = -rxd->rssi;
723 status->noise = -rxd->noise_floor;
724
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100725 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_MCS_FORMAT) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200726 status->flag |= RX_FLAG_HT;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100727 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_40MHZ)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100728 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100729 status->rate_idx = MWL8K_8366_AP_RATE_INFO_RATEID(rxd->rate);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200730 } else {
731 int i;
732
733 for (i = 0; i < ARRAY_SIZE(mwl8k_rates); i++) {
734 if (mwl8k_rates[i].hw_value == rxd->rate) {
735 status->rate_idx = i;
736 break;
737 }
738 }
739 }
740
741 status->band = IEEE80211_BAND_2GHZ;
742 status->freq = ieee80211_channel_to_frequency(rxd->channel);
743
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100744 *qos = rxd->qos_control;
745
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200746 return le16_to_cpu(rxd->pkt_len);
747}
748
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100749static struct rxd_ops rxd_8366_ap_ops = {
750 .rxd_size = sizeof(struct mwl8k_rxd_8366_ap),
751 .rxd_init = mwl8k_rxd_8366_ap_init,
752 .rxd_refill = mwl8k_rxd_8366_ap_refill,
753 .rxd_process = mwl8k_rxd_8366_ap_process,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200754};
755
756/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100757 * Packet reception for STA firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100758 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100759struct mwl8k_rxd_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100760 __le16 pkt_len;
761 __u8 link_quality;
762 __u8 noise_level;
763 __le32 pkt_phys_addr;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200764 __le32 next_rxd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100765 __le16 qos_control;
766 __le16 rate_info;
767 __le32 pad0[4];
768 __u8 rssi;
769 __u8 channel;
770 __le16 pad1;
771 __u8 rx_ctrl;
772 __u8 rx_status;
773 __u8 pad2[2];
774} __attribute__((packed));
775
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100776#define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000
777#define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3)
778#define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f)
779#define MWL8K_STA_RATE_INFO_40MHZ 0x0004
780#define MWL8K_STA_RATE_INFO_SHORTGI 0x0002
781#define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200782
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100783#define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200784
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100785static void mwl8k_rxd_sta_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200786{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100787 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200788
789 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100790 rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200791}
792
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100793static void mwl8k_rxd_sta_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200794{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100795 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200796
797 rxd->pkt_len = cpu_to_le16(len);
798 rxd->pkt_phys_addr = cpu_to_le32(addr);
799 wmb();
800 rxd->rx_ctrl = 0;
801}
802
803static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100804mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status,
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100805 __le16 *qos)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200806{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100807 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200808 u16 rate_info;
809
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100810 if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200811 return -1;
812 rmb();
813
814 rate_info = le16_to_cpu(rxd->rate_info);
815
816 memset(status, 0, sizeof(*status));
817
818 status->signal = -rxd->rssi;
819 status->noise = -rxd->noise_level;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100820 status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info);
821 status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200822
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100823 if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200824 status->flag |= RX_FLAG_SHORTPRE;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100825 if (rate_info & MWL8K_STA_RATE_INFO_40MHZ)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200826 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100827 if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200828 status->flag |= RX_FLAG_SHORT_GI;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100829 if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200830 status->flag |= RX_FLAG_HT;
831
832 status->band = IEEE80211_BAND_2GHZ;
833 status->freq = ieee80211_channel_to_frequency(rxd->channel);
834
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100835 *qos = rxd->qos_control;
836
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200837 return le16_to_cpu(rxd->pkt_len);
838}
839
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100840static struct rxd_ops rxd_sta_ops = {
841 .rxd_size = sizeof(struct mwl8k_rxd_sta),
842 .rxd_init = mwl8k_rxd_sta_init,
843 .rxd_refill = mwl8k_rxd_sta_refill,
844 .rxd_process = mwl8k_rxd_sta_process,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200845};
846
847
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100848#define MWL8K_RX_DESCS 256
849#define MWL8K_RX_MAXSZ 3800
850
851static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
852{
853 struct mwl8k_priv *priv = hw->priv;
854 struct mwl8k_rx_queue *rxq = priv->rxq + index;
855 int size;
856 int i;
857
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200858 rxq->rxd_count = 0;
859 rxq->head = 0;
860 rxq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100861
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200862 size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100863
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200864 rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma);
865 if (rxq->rxd == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100866 printk(KERN_ERR "%s: failed to alloc RX descriptors\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200867 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100868 return -ENOMEM;
869 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200870 memset(rxq->rxd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100871
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200872 rxq->buf = kmalloc(MWL8K_RX_DESCS * sizeof(*rxq->buf), GFP_KERNEL);
873 if (rxq->buf == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100874 printk(KERN_ERR "%s: failed to alloc RX skbuff list\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200875 wiphy_name(hw->wiphy));
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200876 pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100877 return -ENOMEM;
878 }
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200879 memset(rxq->buf, 0, MWL8K_RX_DESCS * sizeof(*rxq->buf));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100880
881 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200882 int desc_size;
883 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100884 int nexti;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200885 dma_addr_t next_dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100886
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200887 desc_size = priv->rxd_ops->rxd_size;
888 rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100889
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200890 nexti = i + 1;
891 if (nexti == MWL8K_RX_DESCS)
892 nexti = 0;
893 next_dma_addr = rxq->rxd_dma + (nexti * desc_size);
894
895 priv->rxd_ops->rxd_init(rxd, next_dma_addr);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100896 }
897
898 return 0;
899}
900
901static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
902{
903 struct mwl8k_priv *priv = hw->priv;
904 struct mwl8k_rx_queue *rxq = priv->rxq + index;
905 int refilled;
906
907 refilled = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200908 while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100909 struct sk_buff *skb;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200910 dma_addr_t addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100911 int rx;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200912 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100913
914 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
915 if (skb == NULL)
916 break;
917
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200918 addr = pci_map_single(priv->pdev, skb->data,
919 MWL8K_RX_MAXSZ, DMA_FROM_DEVICE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100920
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200921 rxq->rxd_count++;
922 rx = rxq->tail++;
923 if (rxq->tail == MWL8K_RX_DESCS)
924 rxq->tail = 0;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200925 rxq->buf[rx].skb = skb;
926 pci_unmap_addr_set(&rxq->buf[rx], dma, addr);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200927
928 rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size);
929 priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100930
931 refilled++;
932 }
933
934 return refilled;
935}
936
937/* Must be called only when the card's reception is completely halted */
938static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
939{
940 struct mwl8k_priv *priv = hw->priv;
941 struct mwl8k_rx_queue *rxq = priv->rxq + index;
942 int i;
943
944 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200945 if (rxq->buf[i].skb != NULL) {
946 pci_unmap_single(priv->pdev,
947 pci_unmap_addr(&rxq->buf[i], dma),
948 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
949 pci_unmap_addr_set(&rxq->buf[i], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100950
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200951 kfree_skb(rxq->buf[i].skb);
952 rxq->buf[i].skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100953 }
954 }
955
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200956 kfree(rxq->buf);
957 rxq->buf = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100958
959 pci_free_consistent(priv->pdev,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200960 MWL8K_RX_DESCS * priv->rxd_ops->rxd_size,
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200961 rxq->rxd, rxq->rxd_dma);
962 rxq->rxd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100963}
964
965
966/*
967 * Scan a list of BSSIDs to process for finalize join.
968 * Allows for extension to process multiple BSSIDs.
969 */
970static inline int
971mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
972{
973 return priv->capture_beacon &&
974 ieee80211_is_beacon(wh->frame_control) &&
975 !compare_ether_addr(wh->addr3, priv->capture_bssid);
976}
977
Lennert Buytenhek37797522009-10-22 20:19:45 +0200978static inline void mwl8k_save_beacon(struct ieee80211_hw *hw,
979 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100980{
Lennert Buytenhek37797522009-10-22 20:19:45 +0200981 struct mwl8k_priv *priv = hw->priv;
982
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100983 priv->capture_beacon = false;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200984 memset(priv->capture_bssid, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100985
986 /*
987 * Use GFP_ATOMIC as rxq_process is called from
988 * the primary interrupt handler, memory allocation call
989 * must not sleep.
990 */
991 priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
992 if (priv->beacon_skb != NULL)
Lennert Buytenhek37797522009-10-22 20:19:45 +0200993 ieee80211_queue_work(hw, &priv->finalize_join_worker);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100994}
995
996static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
997{
998 struct mwl8k_priv *priv = hw->priv;
999 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1000 int processed;
1001
1002 processed = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001003 while (rxq->rxd_count && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001004 struct sk_buff *skb;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001005 void *rxd;
1006 int pkt_len;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001007 struct ieee80211_rx_status status;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001008 __le16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001009
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001010 skb = rxq->buf[rxq->head].skb;
Lennert Buytenhekd25f9f12009-08-03 21:58:26 +02001011 if (skb == NULL)
1012 break;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001013
1014 rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size);
1015
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001016 pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001017 if (pkt_len < 0)
1018 break;
1019
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001020 rxq->buf[rxq->head].skb = NULL;
1021
1022 pci_unmap_single(priv->pdev,
1023 pci_unmap_addr(&rxq->buf[rxq->head], dma),
1024 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
1025 pci_unmap_addr_set(&rxq->buf[rxq->head], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001026
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001027 rxq->head++;
1028 if (rxq->head == MWL8K_RX_DESCS)
1029 rxq->head = 0;
1030
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001031 rxq->rxd_count--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001032
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001033 skb_put(skb, pkt_len);
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001034 mwl8k_remove_dma_header(skb, qos);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001035
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001036 /*
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001037 * Check for a pending join operation. Save a
1038 * copy of the beacon and schedule a tasklet to
1039 * send a FINALIZE_JOIN command to the firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001040 */
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001041 if (mwl8k_capture_bssid(priv, (void *)skb->data))
Lennert Buytenhek37797522009-10-22 20:19:45 +02001042 mwl8k_save_beacon(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001043
Johannes Bergf1d58c22009-06-17 13:13:00 +02001044 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
1045 ieee80211_rx_irqsafe(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001046
1047 processed++;
1048 }
1049
1050 return processed;
1051}
1052
1053
1054/*
1055 * Packet transmission.
1056 */
1057
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001058#define MWL8K_TXD_STATUS_OK 0x00000001
1059#define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
1060#define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
1061#define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001062#define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001063
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001064#define MWL8K_QOS_QLEN_UNSPEC 0xff00
1065#define MWL8K_QOS_ACK_POLICY_MASK 0x0060
1066#define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000
1067#define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060
1068#define MWL8K_QOS_EOSP 0x0010
1069
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001070struct mwl8k_tx_desc {
1071 __le32 status;
1072 __u8 data_rate;
1073 __u8 tx_priority;
1074 __le16 qos_control;
1075 __le32 pkt_phys_addr;
1076 __le16 pkt_len;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001077 __u8 dest_MAC_addr[ETH_ALEN];
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001078 __le32 next_txd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001079 __le32 reserved;
1080 __le16 rate_info;
1081 __u8 peer_id;
1082 __u8 tx_frag_cnt;
1083} __attribute__((packed));
1084
1085#define MWL8K_TX_DESCS 128
1086
1087static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1088{
1089 struct mwl8k_priv *priv = hw->priv;
1090 struct mwl8k_tx_queue *txq = priv->txq + index;
1091 int size;
1092 int i;
1093
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001094 memset(&txq->stats, 0, sizeof(struct ieee80211_tx_queue_stats));
1095 txq->stats.limit = MWL8K_TX_DESCS;
1096 txq->head = 0;
1097 txq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001098
1099 size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1100
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001101 txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma);
1102 if (txq->txd == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001103 printk(KERN_ERR "%s: failed to alloc TX descriptors\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001104 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001105 return -ENOMEM;
1106 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001107 memset(txq->txd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001108
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001109 txq->skb = kmalloc(MWL8K_TX_DESCS * sizeof(*txq->skb), GFP_KERNEL);
1110 if (txq->skb == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001111 printk(KERN_ERR "%s: failed to alloc TX skbuff list\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001112 wiphy_name(hw->wiphy));
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001113 pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001114 return -ENOMEM;
1115 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001116 memset(txq->skb, 0, MWL8K_TX_DESCS * sizeof(*txq->skb));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001117
1118 for (i = 0; i < MWL8K_TX_DESCS; i++) {
1119 struct mwl8k_tx_desc *tx_desc;
1120 int nexti;
1121
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001122 tx_desc = txq->txd + i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001123 nexti = (i + 1) % MWL8K_TX_DESCS;
1124
1125 tx_desc->status = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001126 tx_desc->next_txd_phys_addr =
1127 cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001128 }
1129
1130 return 0;
1131}
1132
1133static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1134{
1135 iowrite32(MWL8K_H2A_INT_PPA_READY,
1136 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1137 iowrite32(MWL8K_H2A_INT_DUMMY,
1138 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1139 ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1140}
1141
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001142static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001143{
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001144 struct mwl8k_priv *priv = hw->priv;
1145 int i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001146
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001147 for (i = 0; i < MWL8K_TX_QUEUES; i++) {
1148 struct mwl8k_tx_queue *txq = priv->txq + i;
1149 int fw_owned = 0;
1150 int drv_owned = 0;
1151 int unused = 0;
1152 int desc;
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001153
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001154 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001155 struct mwl8k_tx_desc *tx_desc = txq->txd + desc;
1156 u32 status;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001157
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001158 status = le32_to_cpu(tx_desc->status);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001159 if (status & MWL8K_TXD_STATUS_FW_OWNED)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001160 fw_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001161 else
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001162 drv_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001163
1164 if (tx_desc->pkt_len == 0)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001165 unused++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001166 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001167
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001168 printk(KERN_ERR "%s: txq[%d] len=%d head=%d tail=%d "
1169 "fw_owned=%d drv_owned=%d unused=%d\n",
1170 wiphy_name(hw->wiphy), i,
1171 txq->stats.len, txq->head, txq->tail,
1172 fw_owned, drv_owned, unused);
1173 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001174}
1175
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001176/*
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001177 * Must be called with priv->fw_mutex held and tx queues stopped.
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001178 */
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001179#define MWL8K_TX_WAIT_TIMEOUT_MS 1000
1180
Lennert Buytenhek950d5b02009-07-17 01:48:41 +02001181static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001182{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001183 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001184 DECLARE_COMPLETION_ONSTACK(tx_wait);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001185 int retry;
1186 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001187
1188 might_sleep();
1189
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001190 /*
1191 * The TX queues are stopped at this point, so this test
1192 * doesn't need to take ->tx_lock.
1193 */
1194 if (!priv->pending_tx_pkts)
1195 return 0;
1196
1197 retry = 0;
1198 rc = 0;
1199
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001200 spin_lock_bh(&priv->tx_lock);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001201 priv->tx_wait = &tx_wait;
1202 while (!rc) {
1203 int oldcount;
1204 unsigned long timeout;
1205
1206 oldcount = priv->pending_tx_pkts;
1207
1208 spin_unlock_bh(&priv->tx_lock);
1209 timeout = wait_for_completion_timeout(&tx_wait,
1210 msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS));
1211 spin_lock_bh(&priv->tx_lock);
1212
1213 if (timeout) {
1214 WARN_ON(priv->pending_tx_pkts);
1215 if (retry) {
1216 printk(KERN_NOTICE "%s: tx rings drained\n",
1217 wiphy_name(hw->wiphy));
1218 }
1219 break;
1220 }
1221
1222 if (priv->pending_tx_pkts < oldcount) {
Lennert Buytenhek9a2303b2010-01-04 21:54:25 +01001223 printk(KERN_NOTICE "%s: waiting for tx rings "
1224 "to drain (%d -> %d pkts)\n",
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001225 wiphy_name(hw->wiphy), oldcount,
1226 priv->pending_tx_pkts);
1227 retry = 1;
1228 continue;
1229 }
1230
1231 priv->tx_wait = NULL;
1232
1233 printk(KERN_ERR "%s: tx rings stuck for %d ms\n",
1234 wiphy_name(hw->wiphy), MWL8K_TX_WAIT_TIMEOUT_MS);
1235 mwl8k_dump_tx_rings(hw);
1236
1237 rc = -ETIMEDOUT;
1238 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001239 spin_unlock_bh(&priv->tx_lock);
1240
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001241 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001242}
1243
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02001244#define MWL8K_TXD_SUCCESS(status) \
1245 ((status) & (MWL8K_TXD_STATUS_OK | \
1246 MWL8K_TXD_STATUS_OK_RETRY | \
1247 MWL8K_TXD_STATUS_OK_MORE_RETRY))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001248
1249static void mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int force)
1250{
1251 struct mwl8k_priv *priv = hw->priv;
1252 struct mwl8k_tx_queue *txq = priv->txq + index;
1253 int wake = 0;
1254
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001255 while (txq->stats.len > 0) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001256 int tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001257 struct mwl8k_tx_desc *tx_desc;
1258 unsigned long addr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001259 int size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001260 struct sk_buff *skb;
1261 struct ieee80211_tx_info *info;
1262 u32 status;
1263
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001264 tx = txq->head;
1265 tx_desc = txq->txd + tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001266
1267 status = le32_to_cpu(tx_desc->status);
1268
1269 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1270 if (!force)
1271 break;
1272 tx_desc->status &=
1273 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1274 }
1275
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001276 txq->head = (tx + 1) % MWL8K_TX_DESCS;
1277 BUG_ON(txq->stats.len == 0);
1278 txq->stats.len--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001279 priv->pending_tx_pkts--;
1280
1281 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001282 size = le16_to_cpu(tx_desc->pkt_len);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001283 skb = txq->skb[tx];
1284 txq->skb[tx] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001285
1286 BUG_ON(skb == NULL);
1287 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1288
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001289 mwl8k_remove_dma_header(skb, tx_desc->qos_control);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001290
1291 /* Mark descriptor as unused */
1292 tx_desc->pkt_phys_addr = 0;
1293 tx_desc->pkt_len = 0;
1294
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001295 info = IEEE80211_SKB_CB(skb);
1296 ieee80211_tx_info_clear_status(info);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001297 if (MWL8K_TXD_SUCCESS(status))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001298 info->flags |= IEEE80211_TX_STAT_ACK;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001299
1300 ieee80211_tx_status_irqsafe(hw, skb);
1301
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001302 wake = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001303 }
1304
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001305 if (wake && priv->radio_on && !mutex_is_locked(&priv->fw_mutex))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001306 ieee80211_wake_queue(hw, index);
1307}
1308
1309/* must be called only when the card's transmit is completely halted */
1310static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1311{
1312 struct mwl8k_priv *priv = hw->priv;
1313 struct mwl8k_tx_queue *txq = priv->txq + index;
1314
1315 mwl8k_txq_reclaim(hw, index, 1);
1316
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001317 kfree(txq->skb);
1318 txq->skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001319
1320 pci_free_consistent(priv->pdev,
1321 MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001322 txq->txd, txq->txd_dma);
1323 txq->txd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001324}
1325
1326static int
1327mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb)
1328{
1329 struct mwl8k_priv *priv = hw->priv;
1330 struct ieee80211_tx_info *tx_info;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001331 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001332 struct ieee80211_hdr *wh;
1333 struct mwl8k_tx_queue *txq;
1334 struct mwl8k_tx_desc *tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001335 dma_addr_t dma;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001336 u32 txstatus;
1337 u8 txdatarate;
1338 u16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001339
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001340 wh = (struct ieee80211_hdr *)skb->data;
1341 if (ieee80211_is_data_qos(wh->frame_control))
1342 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1343 else
1344 qos = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001345
Lennert Buytenhek76266b22009-07-16 11:07:09 +02001346 mwl8k_add_dma_header(skb);
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001347 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001348
1349 tx_info = IEEE80211_SKB_CB(skb);
1350 mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001351
1352 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1353 u16 seqno = mwl8k_vif->seqno;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001354
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001355 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
1356 wh->seq_ctrl |= cpu_to_le16(seqno << 4);
1357 mwl8k_vif->seqno = seqno++ % 4096;
1358 }
1359
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001360 /* Setup firmware control bit fields for each frame type. */
1361 txstatus = 0;
1362 txdatarate = 0;
1363 if (ieee80211_is_mgmt(wh->frame_control) ||
1364 ieee80211_is_ctl(wh->frame_control)) {
1365 txdatarate = 0;
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001366 qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001367 } else if (ieee80211_is_data(wh->frame_control)) {
1368 txdatarate = 1;
1369 if (is_multicast_ether_addr(wh->addr1))
1370 txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX;
1371
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001372 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001373 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001374 qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001375 else
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001376 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001377 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001378
1379 dma = pci_map_single(priv->pdev, skb->data,
1380 skb->len, PCI_DMA_TODEVICE);
1381
1382 if (pci_dma_mapping_error(priv->pdev, dma)) {
1383 printk(KERN_DEBUG "%s: failed to dma map skb, "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001384 "dropping TX frame.\n", wiphy_name(hw->wiphy));
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001385 dev_kfree_skb(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001386 return NETDEV_TX_OK;
1387 }
1388
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001389 spin_lock_bh(&priv->tx_lock);
1390
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001391 txq = priv->txq + index;
1392
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001393 BUG_ON(txq->skb[txq->tail] != NULL);
1394 txq->skb[txq->tail] = skb;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001395
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001396 tx = txq->txd + txq->tail;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001397 tx->data_rate = txdatarate;
1398 tx->tx_priority = index;
1399 tx->qos_control = cpu_to_le16(qos);
1400 tx->pkt_phys_addr = cpu_to_le32(dma);
1401 tx->pkt_len = cpu_to_le16(skb->len);
1402 tx->rate_info = 0;
Lennert Buytenheka6804002010-01-04 21:55:42 +01001403 if (!priv->ap_fw && tx_info->control.sta != NULL)
1404 tx->peer_id = MWL8K_STA(tx_info->control.sta)->peer_id;
1405 else
1406 tx->peer_id = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001407 wmb();
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001408 tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
1409
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001410 txq->stats.count++;
1411 txq->stats.len++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001412 priv->pending_tx_pkts++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001413
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001414 txq->tail++;
1415 if (txq->tail == MWL8K_TX_DESCS)
1416 txq->tail = 0;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001417
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001418 if (txq->head == txq->tail)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001419 ieee80211_stop_queue(hw, index);
1420
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001421 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001422
1423 spin_unlock_bh(&priv->tx_lock);
1424
1425 return NETDEV_TX_OK;
1426}
1427
1428
1429/*
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001430 * Firmware access.
1431 *
1432 * We have the following requirements for issuing firmware commands:
1433 * - Some commands require that the packet transmit path is idle when
1434 * the command is issued. (For simplicity, we'll just quiesce the
1435 * transmit path for every command.)
1436 * - There are certain sequences of commands that need to be issued to
1437 * the hardware sequentially, with no other intervening commands.
1438 *
1439 * This leads to an implementation of a "firmware lock" as a mutex that
1440 * can be taken recursively, and which is taken by both the low-level
1441 * command submission function (mwl8k_post_cmd) as well as any users of
1442 * that function that require issuing of an atomic sequence of commands,
1443 * and quiesces the transmit path whenever it's taken.
1444 */
1445static int mwl8k_fw_lock(struct ieee80211_hw *hw)
1446{
1447 struct mwl8k_priv *priv = hw->priv;
1448
1449 if (priv->fw_mutex_owner != current) {
1450 int rc;
1451
1452 mutex_lock(&priv->fw_mutex);
1453 ieee80211_stop_queues(hw);
1454
1455 rc = mwl8k_tx_wait_empty(hw);
1456 if (rc) {
1457 ieee80211_wake_queues(hw);
1458 mutex_unlock(&priv->fw_mutex);
1459
1460 return rc;
1461 }
1462
1463 priv->fw_mutex_owner = current;
1464 }
1465
1466 priv->fw_mutex_depth++;
1467
1468 return 0;
1469}
1470
1471static void mwl8k_fw_unlock(struct ieee80211_hw *hw)
1472{
1473 struct mwl8k_priv *priv = hw->priv;
1474
1475 if (!--priv->fw_mutex_depth) {
1476 ieee80211_wake_queues(hw);
1477 priv->fw_mutex_owner = NULL;
1478 mutex_unlock(&priv->fw_mutex);
1479 }
1480}
1481
1482
1483/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001484 * Command processing.
1485 */
1486
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01001487/* Timeout firmware commands after 10s */
1488#define MWL8K_CMD_TIMEOUT_MS 10000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001489
1490static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
1491{
1492 DECLARE_COMPLETION_ONSTACK(cmd_wait);
1493 struct mwl8k_priv *priv = hw->priv;
1494 void __iomem *regs = priv->regs;
1495 dma_addr_t dma_addr;
1496 unsigned int dma_size;
1497 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001498 unsigned long timeout = 0;
1499 u8 buf[32];
1500
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001501 cmd->result = 0xffff;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001502 dma_size = le16_to_cpu(cmd->length);
1503 dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
1504 PCI_DMA_BIDIRECTIONAL);
1505 if (pci_dma_mapping_error(priv->pdev, dma_addr))
1506 return -ENOMEM;
1507
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001508 rc = mwl8k_fw_lock(hw);
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02001509 if (rc) {
1510 pci_unmap_single(priv->pdev, dma_addr, dma_size,
1511 PCI_DMA_BIDIRECTIONAL);
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001512 return rc;
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02001513 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001514
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001515 priv->hostcmd_wait = &cmd_wait;
1516 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
1517 iowrite32(MWL8K_H2A_INT_DOORBELL,
1518 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1519 iowrite32(MWL8K_H2A_INT_DUMMY,
1520 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001521
1522 timeout = wait_for_completion_timeout(&cmd_wait,
1523 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
1524
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001525 priv->hostcmd_wait = NULL;
1526
1527 mwl8k_fw_unlock(hw);
1528
Lennert Buytenhek37055bd2009-08-03 21:58:47 +02001529 pci_unmap_single(priv->pdev, dma_addr, dma_size,
1530 PCI_DMA_BIDIRECTIONAL);
1531
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001532 if (!timeout) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001533 printk(KERN_ERR "%s: Command %s timeout after %u ms\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001534 wiphy_name(hw->wiphy),
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001535 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
1536 MWL8K_CMD_TIMEOUT_MS);
1537 rc = -ETIMEDOUT;
1538 } else {
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01001539 int ms;
1540
1541 ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout);
1542
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001543 rc = cmd->result ? -EINVAL : 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001544 if (rc)
1545 printk(KERN_ERR "%s: Command %s error 0x%x\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001546 wiphy_name(hw->wiphy),
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001547 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
Lennert Buytenhek76c962a2009-08-24 15:42:56 +02001548 le16_to_cpu(cmd->result));
Lennert Buytenhek0c9cc6402009-11-30 18:12:49 +01001549 else if (ms > 2000)
1550 printk(KERN_NOTICE "%s: Command %s took %d ms\n",
1551 wiphy_name(hw->wiphy),
1552 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
1553 ms);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001554 }
1555
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001556 return rc;
1557}
1558
1559/*
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02001560 * CMD_GET_HW_SPEC (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001561 */
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02001562struct mwl8k_cmd_get_hw_spec_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001563 struct mwl8k_cmd_pkt header;
1564 __u8 hw_rev;
1565 __u8 host_interface;
1566 __le16 num_mcaddrs;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001567 __u8 perm_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001568 __le16 region_code;
1569 __le32 fw_rev;
1570 __le32 ps_cookie;
1571 __le32 caps;
1572 __u8 mcs_bitmap[16];
1573 __le32 rx_queue_ptr;
1574 __le32 num_tx_queues;
1575 __le32 tx_queue_ptrs[MWL8K_TX_QUEUES];
1576 __le32 caps2;
1577 __le32 num_tx_desc_per_queue;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001578 __le32 total_rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001579} __attribute__((packed));
1580
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001581#define MWL8K_CAP_MAX_AMSDU 0x20000000
1582#define MWL8K_CAP_GREENFIELD 0x08000000
1583#define MWL8K_CAP_AMPDU 0x04000000
1584#define MWL8K_CAP_RX_STBC 0x01000000
1585#define MWL8K_CAP_TX_STBC 0x00800000
1586#define MWL8K_CAP_SHORTGI_40MHZ 0x00400000
1587#define MWL8K_CAP_SHORTGI_20MHZ 0x00200000
1588#define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000
1589#define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000
1590#define MWL8K_CAP_DELAY_BA 0x00003000
1591#define MWL8K_CAP_MIMO 0x00000200
1592#define MWL8K_CAP_40MHZ 0x00000100
1593
1594static void mwl8k_set_ht_caps(struct ieee80211_hw *hw, u32 cap)
1595{
1596 struct mwl8k_priv *priv = hw->priv;
1597 int rx_streams;
1598 int tx_streams;
1599
1600 priv->band.ht_cap.ht_supported = 1;
1601
1602 if (cap & MWL8K_CAP_MAX_AMSDU)
1603 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
1604 if (cap & MWL8K_CAP_GREENFIELD)
1605 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD;
1606 if (cap & MWL8K_CAP_AMPDU) {
1607 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
1608 priv->band.ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
1609 priv->band.ht_cap.ampdu_density =
1610 IEEE80211_HT_MPDU_DENSITY_NONE;
1611 }
1612 if (cap & MWL8K_CAP_RX_STBC)
1613 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC;
1614 if (cap & MWL8K_CAP_TX_STBC)
1615 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
1616 if (cap & MWL8K_CAP_SHORTGI_40MHZ)
1617 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
1618 if (cap & MWL8K_CAP_SHORTGI_20MHZ)
1619 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
1620 if (cap & MWL8K_CAP_DELAY_BA)
1621 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA;
1622 if (cap & MWL8K_CAP_40MHZ)
1623 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
1624
1625 rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK);
1626 tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK);
1627
1628 priv->band.ht_cap.mcs.rx_mask[0] = 0xff;
1629 if (rx_streams >= 2)
1630 priv->band.ht_cap.mcs.rx_mask[1] = 0xff;
1631 if (rx_streams >= 3)
1632 priv->band.ht_cap.mcs.rx_mask[2] = 0xff;
1633 priv->band.ht_cap.mcs.rx_mask[4] = 0x01;
1634 priv->band.ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
1635
1636 if (rx_streams != tx_streams) {
1637 priv->band.ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
1638 priv->band.ht_cap.mcs.tx_params |= (tx_streams - 1) <<
1639 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
1640 }
1641}
1642
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02001643static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001644{
1645 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek04b147b12009-10-22 20:21:05 +02001646 struct mwl8k_cmd_get_hw_spec_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001647 int rc;
1648 int i;
1649
1650 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1651 if (cmd == NULL)
1652 return -ENOMEM;
1653
1654 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
1655 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1656
1657 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
1658 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001659 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02001660 cmd->num_tx_queues = cpu_to_le32(MWL8K_TX_QUEUES);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001661 for (i = 0; i < MWL8K_TX_QUEUES; i++)
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001662 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02001663 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001664 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001665
1666 rc = mwl8k_post_cmd(hw, &cmd->header);
1667
1668 if (!rc) {
1669 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
1670 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02001671 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001672 priv->hw_rev = cmd->hw_rev;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001673 if (cmd->caps & cpu_to_le32(MWL8K_CAP_MIMO))
1674 mwl8k_set_ht_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001675 }
1676
1677 kfree(cmd);
1678 return rc;
1679}
1680
1681/*
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02001682 * CMD_GET_HW_SPEC (AP version).
1683 */
1684struct mwl8k_cmd_get_hw_spec_ap {
1685 struct mwl8k_cmd_pkt header;
1686 __u8 hw_rev;
1687 __u8 host_interface;
1688 __le16 num_wcb;
1689 __le16 num_mcaddrs;
1690 __u8 perm_addr[ETH_ALEN];
1691 __le16 region_code;
1692 __le16 num_antenna;
1693 __le32 fw_rev;
1694 __le32 wcbbase0;
1695 __le32 rxwrptr;
1696 __le32 rxrdptr;
1697 __le32 ps_cookie;
1698 __le32 wcbbase1;
1699 __le32 wcbbase2;
1700 __le32 wcbbase3;
1701} __attribute__((packed));
1702
1703static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw)
1704{
1705 struct mwl8k_priv *priv = hw->priv;
1706 struct mwl8k_cmd_get_hw_spec_ap *cmd;
1707 int rc;
1708
1709 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1710 if (cmd == NULL)
1711 return -ENOMEM;
1712
1713 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
1714 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1715
1716 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
1717 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
1718
1719 rc = mwl8k_post_cmd(hw, &cmd->header);
1720
1721 if (!rc) {
1722 int off;
1723
1724 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
1725 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
1726 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
1727 priv->hw_rev = cmd->hw_rev;
1728
1729 off = le32_to_cpu(cmd->wcbbase0) & 0xffff;
1730 iowrite32(cpu_to_le32(priv->txq[0].txd_dma), priv->sram + off);
1731
1732 off = le32_to_cpu(cmd->rxwrptr) & 0xffff;
1733 iowrite32(cpu_to_le32(priv->rxq[0].rxd_dma), priv->sram + off);
1734
1735 off = le32_to_cpu(cmd->rxrdptr) & 0xffff;
1736 iowrite32(cpu_to_le32(priv->rxq[0].rxd_dma), priv->sram + off);
1737
1738 off = le32_to_cpu(cmd->wcbbase1) & 0xffff;
1739 iowrite32(cpu_to_le32(priv->txq[1].txd_dma), priv->sram + off);
1740
1741 off = le32_to_cpu(cmd->wcbbase2) & 0xffff;
1742 iowrite32(cpu_to_le32(priv->txq[2].txd_dma), priv->sram + off);
1743
1744 off = le32_to_cpu(cmd->wcbbase3) & 0xffff;
1745 iowrite32(cpu_to_le32(priv->txq[3].txd_dma), priv->sram + off);
1746 }
1747
1748 kfree(cmd);
1749 return rc;
1750}
1751
1752/*
1753 * CMD_SET_HW_SPEC.
1754 */
1755struct mwl8k_cmd_set_hw_spec {
1756 struct mwl8k_cmd_pkt header;
1757 __u8 hw_rev;
1758 __u8 host_interface;
1759 __le16 num_mcaddrs;
1760 __u8 perm_addr[ETH_ALEN];
1761 __le16 region_code;
1762 __le32 fw_rev;
1763 __le32 ps_cookie;
1764 __le32 caps;
1765 __le32 rx_queue_ptr;
1766 __le32 num_tx_queues;
1767 __le32 tx_queue_ptrs[MWL8K_TX_QUEUES];
1768 __le32 flags;
1769 __le32 num_tx_desc_per_queue;
1770 __le32 total_rxd;
1771} __attribute__((packed));
1772
1773#define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080
1774
1775static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw)
1776{
1777 struct mwl8k_priv *priv = hw->priv;
1778 struct mwl8k_cmd_set_hw_spec *cmd;
1779 int rc;
1780 int i;
1781
1782 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1783 if (cmd == NULL)
1784 return -ENOMEM;
1785
1786 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC);
1787 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1788
1789 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
1790 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
1791 cmd->num_tx_queues = cpu_to_le32(MWL8K_TX_QUEUES);
1792 for (i = 0; i < MWL8K_TX_QUEUES; i++)
1793 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
1794 cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT);
1795 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
1796 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
1797
1798 rc = mwl8k_post_cmd(hw, &cmd->header);
1799 kfree(cmd);
1800
1801 return rc;
1802}
1803
1804/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001805 * CMD_MAC_MULTICAST_ADR.
1806 */
1807struct mwl8k_cmd_mac_multicast_adr {
1808 struct mwl8k_cmd_pkt header;
1809 __le16 action;
1810 __le16 numaddr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001811 __u8 addr[0][ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001812};
1813
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001814#define MWL8K_ENABLE_RX_DIRECTED 0x0001
1815#define MWL8K_ENABLE_RX_MULTICAST 0x0002
1816#define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004
1817#define MWL8K_ENABLE_RX_BROADCAST 0x0008
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001818
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001819static struct mwl8k_cmd_pkt *
Lennert Buytenhek447ced02009-10-22 20:19:50 +02001820__mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti,
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001821 int mc_count, struct dev_addr_list *mclist)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001822{
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001823 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001824 struct mwl8k_cmd_mac_multicast_adr *cmd;
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001825 int size;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001826
Lennert Buytenhek447ced02009-10-22 20:19:50 +02001827 if (allmulti || mc_count > priv->num_mcaddrs) {
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001828 allmulti = 1;
1829 mc_count = 0;
1830 }
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001831
1832 size = sizeof(*cmd) + mc_count * ETH_ALEN;
1833
1834 cmd = kzalloc(size, GFP_ATOMIC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001835 if (cmd == NULL)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001836 return NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001837
1838 cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
1839 cmd->header.length = cpu_to_le16(size);
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001840 cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED |
1841 MWL8K_ENABLE_RX_BROADCAST);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001842
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001843 if (allmulti) {
1844 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST);
1845 } else if (mc_count) {
1846 int i;
1847
1848 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
1849 cmd->numaddr = cpu_to_le16(mc_count);
1850 for (i = 0; i < mc_count && mclist; i++) {
1851 if (mclist->da_addrlen != ETH_ALEN) {
1852 kfree(cmd);
1853 return NULL;
1854 }
1855 memcpy(cmd->addr[i], mclist->da_addr, ETH_ALEN);
1856 mclist = mclist->next;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001857 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001858 }
1859
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001860 return &cmd->header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001861}
1862
1863/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001864 * CMD_GET_STAT.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001865 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001866struct mwl8k_cmd_get_stat {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001867 struct mwl8k_cmd_pkt header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001868 __le32 stats[64];
1869} __attribute__((packed));
1870
1871#define MWL8K_STAT_ACK_FAILURE 9
1872#define MWL8K_STAT_RTS_FAILURE 12
1873#define MWL8K_STAT_FCS_ERROR 24
1874#define MWL8K_STAT_RTS_SUCCESS 11
1875
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001876static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw,
1877 struct ieee80211_low_level_stats *stats)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001878{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001879 struct mwl8k_cmd_get_stat *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001880 int rc;
1881
1882 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1883 if (cmd == NULL)
1884 return -ENOMEM;
1885
1886 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
1887 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001888
1889 rc = mwl8k_post_cmd(hw, &cmd->header);
1890 if (!rc) {
1891 stats->dot11ACKFailureCount =
1892 le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
1893 stats->dot11RTSFailureCount =
1894 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
1895 stats->dot11FCSErrorCount =
1896 le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
1897 stats->dot11RTSSuccessCount =
1898 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
1899 }
1900 kfree(cmd);
1901
1902 return rc;
1903}
1904
1905/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001906 * CMD_RADIO_CONTROL.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001907 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001908struct mwl8k_cmd_radio_control {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001909 struct mwl8k_cmd_pkt header;
1910 __le16 action;
1911 __le16 control;
1912 __le16 radio_on;
1913} __attribute__((packed));
1914
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001915static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001916mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001917{
1918 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001919 struct mwl8k_cmd_radio_control *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001920 int rc;
1921
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001922 if (enable == priv->radio_on && !force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001923 return 0;
1924
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001925 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1926 if (cmd == NULL)
1927 return -ENOMEM;
1928
1929 cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
1930 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1931 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02001932 cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001933 cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
1934
1935 rc = mwl8k_post_cmd(hw, &cmd->header);
1936 kfree(cmd);
1937
1938 if (!rc)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001939 priv->radio_on = enable;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001940
1941 return rc;
1942}
1943
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001944static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001945{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001946 return mwl8k_cmd_radio_control(hw, 0, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001947}
1948
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001949static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001950{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001951 return mwl8k_cmd_radio_control(hw, 1, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001952}
1953
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001954static int
1955mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
1956{
Lennert Buytenhek99200a992009-11-30 18:31:40 +01001957 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001958
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02001959 priv->radio_short_preamble = short_preamble;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001960
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001961 return mwl8k_cmd_radio_control(hw, 1, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001962}
1963
1964/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001965 * CMD_RF_TX_POWER.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001966 */
1967#define MWL8K_TX_POWER_LEVEL_TOTAL 8
1968
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001969struct mwl8k_cmd_rf_tx_power {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001970 struct mwl8k_cmd_pkt header;
1971 __le16 action;
1972 __le16 support_level;
1973 __le16 current_level;
1974 __le16 reserved;
1975 __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
1976} __attribute__((packed));
1977
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001978static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw *hw, int dBm)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001979{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001980 struct mwl8k_cmd_rf_tx_power *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001981 int rc;
1982
1983 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1984 if (cmd == NULL)
1985 return -ENOMEM;
1986
1987 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
1988 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1989 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
1990 cmd->support_level = cpu_to_le16(dBm);
1991
1992 rc = mwl8k_post_cmd(hw, &cmd->header);
1993 kfree(cmd);
1994
1995 return rc;
1996}
1997
1998/*
Lennert Buytenhek08b06342009-10-22 20:21:33 +02001999 * CMD_RF_ANTENNA.
2000 */
2001struct mwl8k_cmd_rf_antenna {
2002 struct mwl8k_cmd_pkt header;
2003 __le16 antenna;
2004 __le16 mode;
2005} __attribute__((packed));
2006
2007#define MWL8K_RF_ANTENNA_RX 1
2008#define MWL8K_RF_ANTENNA_TX 2
2009
2010static int
2011mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask)
2012{
2013 struct mwl8k_cmd_rf_antenna *cmd;
2014 int rc;
2015
2016 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2017 if (cmd == NULL)
2018 return -ENOMEM;
2019
2020 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA);
2021 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2022 cmd->antenna = cpu_to_le16(antenna);
2023 cmd->mode = cpu_to_le16(mask);
2024
2025 rc = mwl8k_post_cmd(hw, &cmd->header);
2026 kfree(cmd);
2027
2028 return rc;
2029}
2030
2031/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002032 * CMD_SET_PRE_SCAN.
2033 */
2034struct mwl8k_cmd_set_pre_scan {
2035 struct mwl8k_cmd_pkt header;
2036} __attribute__((packed));
2037
2038static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
2039{
2040 struct mwl8k_cmd_set_pre_scan *cmd;
2041 int rc;
2042
2043 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2044 if (cmd == NULL)
2045 return -ENOMEM;
2046
2047 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
2048 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2049
2050 rc = mwl8k_post_cmd(hw, &cmd->header);
2051 kfree(cmd);
2052
2053 return rc;
2054}
2055
2056/*
2057 * CMD_SET_POST_SCAN.
2058 */
2059struct mwl8k_cmd_set_post_scan {
2060 struct mwl8k_cmd_pkt header;
2061 __le32 isibss;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002062 __u8 bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002063} __attribute__((packed));
2064
2065static int
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002066mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002067{
2068 struct mwl8k_cmd_set_post_scan *cmd;
2069 int rc;
2070
2071 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2072 if (cmd == NULL)
2073 return -ENOMEM;
2074
2075 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
2076 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2077 cmd->isibss = 0;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002078 memcpy(cmd->bssid, mac, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002079
2080 rc = mwl8k_post_cmd(hw, &cmd->header);
2081 kfree(cmd);
2082
2083 return rc;
2084}
2085
2086/*
2087 * CMD_SET_RF_CHANNEL.
2088 */
2089struct mwl8k_cmd_set_rf_channel {
2090 struct mwl8k_cmd_pkt header;
2091 __le16 action;
2092 __u8 current_channel;
2093 __le32 channel_flags;
2094} __attribute__((packed));
2095
2096static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002097 struct ieee80211_conf *conf)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002098{
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002099 struct ieee80211_channel *channel = conf->channel;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002100 struct mwl8k_cmd_set_rf_channel *cmd;
2101 int rc;
2102
2103 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2104 if (cmd == NULL)
2105 return -ENOMEM;
2106
2107 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
2108 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2109 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2110 cmd->current_channel = channel->hw_value;
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002111
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002112 if (channel->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002113 cmd->channel_flags |= cpu_to_le32(0x00000001);
2114
2115 if (conf->channel_type == NL80211_CHAN_NO_HT ||
2116 conf->channel_type == NL80211_CHAN_HT20)
2117 cmd->channel_flags |= cpu_to_le32(0x00000080);
2118 else if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2119 cmd->channel_flags |= cpu_to_le32(0x000001900);
2120 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2121 cmd->channel_flags |= cpu_to_le32(0x000000900);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002122
2123 rc = mwl8k_post_cmd(hw, &cmd->header);
2124 kfree(cmd);
2125
2126 return rc;
2127}
2128
2129/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002130 * CMD_SET_AID.
2131 */
2132#define MWL8K_FRAME_PROT_DISABLED 0x00
2133#define MWL8K_FRAME_PROT_11G 0x07
2134#define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
2135#define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
2136
2137struct mwl8k_cmd_update_set_aid {
2138 struct mwl8k_cmd_pkt header;
2139 __le16 aid;
2140
2141 /* AP's MAC address (BSSID) */
2142 __u8 bssid[ETH_ALEN];
2143 __le16 protection_mode;
2144 __u8 supp_rates[14];
2145} __attribute__((packed));
2146
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002147static void legacy_rate_mask_to_array(u8 *rates, u32 mask)
2148{
2149 int i;
2150 int j;
2151
2152 /*
2153 * Clear nonstandard rates 4 and 13.
2154 */
2155 mask &= 0x1fef;
2156
2157 for (i = 0, j = 0; i < 14; i++) {
2158 if (mask & (1 << i))
2159 rates[j++] = mwl8k_rates[i].hw_value;
2160 }
2161}
2162
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002163static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002164mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
2165 struct ieee80211_vif *vif, u32 legacy_rate_mask)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002166{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002167 struct mwl8k_cmd_update_set_aid *cmd;
2168 u16 prot_mode;
2169 int rc;
2170
2171 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2172 if (cmd == NULL)
2173 return -ENOMEM;
2174
2175 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
2176 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002177 cmd->aid = cpu_to_le16(vif->bss_conf.aid);
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002178 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002179
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002180 if (vif->bss_conf.use_cts_prot) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002181 prot_mode = MWL8K_FRAME_PROT_11G;
2182 } else {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002183 switch (vif->bss_conf.ht_operation_mode &
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002184 IEEE80211_HT_OP_MODE_PROTECTION) {
2185 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
2186 prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
2187 break;
2188 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
2189 prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
2190 break;
2191 default:
2192 prot_mode = MWL8K_FRAME_PROT_DISABLED;
2193 break;
2194 }
2195 }
2196 cmd->protection_mode = cpu_to_le16(prot_mode);
2197
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002198 legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002199
2200 rc = mwl8k_post_cmd(hw, &cmd->header);
2201 kfree(cmd);
2202
2203 return rc;
2204}
2205
2206/*
2207 * CMD_SET_RATE.
2208 */
2209struct mwl8k_cmd_set_rate {
2210 struct mwl8k_cmd_pkt header;
2211 __u8 legacy_rates[14];
2212
2213 /* Bitmap for supported MCS codes. */
2214 __u8 mcs_set[16];
2215 __u8 reserved[16];
2216} __attribute__((packed));
2217
2218static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002219mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01002220 u32 legacy_rate_mask, u8 *mcs_rates)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002221{
2222 struct mwl8k_cmd_set_rate *cmd;
2223 int rc;
2224
2225 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2226 if (cmd == NULL)
2227 return -ENOMEM;
2228
2229 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE);
2230 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002231 legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01002232 memcpy(cmd->mcs_set, mcs_rates, 16);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002233
2234 rc = mwl8k_post_cmd(hw, &cmd->header);
2235 kfree(cmd);
2236
2237 return rc;
2238}
2239
2240/*
2241 * CMD_FINALIZE_JOIN.
2242 */
2243#define MWL8K_FJ_BEACON_MAXLEN 128
2244
2245struct mwl8k_cmd_finalize_join {
2246 struct mwl8k_cmd_pkt header;
2247 __le32 sleep_interval; /* Number of beacon periods to sleep */
2248 __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
2249} __attribute__((packed));
2250
2251static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame,
2252 int framelen, int dtim)
2253{
2254 struct mwl8k_cmd_finalize_join *cmd;
2255 struct ieee80211_mgmt *payload = frame;
2256 int payload_len;
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_FINALIZE_JOIN);
2264 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2265 cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
2266
2267 payload_len = framelen - ieee80211_hdrlen(payload->frame_control);
2268 if (payload_len < 0)
2269 payload_len = 0;
2270 else if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
2271 payload_len = MWL8K_FJ_BEACON_MAXLEN;
2272
2273 memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
2274
2275 rc = mwl8k_post_cmd(hw, &cmd->header);
2276 kfree(cmd);
2277
2278 return rc;
2279}
2280
2281/*
2282 * CMD_SET_RTS_THRESHOLD.
2283 */
2284struct mwl8k_cmd_set_rts_threshold {
2285 struct mwl8k_cmd_pkt header;
2286 __le16 action;
2287 __le16 threshold;
2288} __attribute__((packed));
2289
2290static int mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw,
2291 u16 action, u16 threshold)
2292{
2293 struct mwl8k_cmd_set_rts_threshold *cmd;
2294 int rc;
2295
2296 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2297 if (cmd == NULL)
2298 return -ENOMEM;
2299
2300 cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
2301 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2302 cmd->action = cpu_to_le16(action);
2303 cmd->threshold = cpu_to_le16(threshold);
2304
2305 rc = mwl8k_post_cmd(hw, &cmd->header);
2306 kfree(cmd);
2307
2308 return rc;
2309}
2310
2311/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002312 * CMD_SET_SLOT.
2313 */
2314struct mwl8k_cmd_set_slot {
2315 struct mwl8k_cmd_pkt header;
2316 __le16 action;
2317 __u8 short_slot;
2318} __attribute__((packed));
2319
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02002320static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002321{
2322 struct mwl8k_cmd_set_slot *cmd;
2323 int rc;
2324
2325 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2326 if (cmd == NULL)
2327 return -ENOMEM;
2328
2329 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
2330 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2331 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02002332 cmd->short_slot = short_slot_time;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002333
2334 rc = mwl8k_post_cmd(hw, &cmd->header);
2335 kfree(cmd);
2336
2337 return rc;
2338}
2339
2340/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002341 * CMD_SET_EDCA_PARAMS.
2342 */
2343struct mwl8k_cmd_set_edca_params {
2344 struct mwl8k_cmd_pkt header;
2345
2346 /* See MWL8K_SET_EDCA_XXX below */
2347 __le16 action;
2348
2349 /* TX opportunity in units of 32 us */
2350 __le16 txop;
2351
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002352 union {
2353 struct {
2354 /* Log exponent of max contention period: 0...15 */
2355 __le32 log_cw_max;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002356
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002357 /* Log exponent of min contention period: 0...15 */
2358 __le32 log_cw_min;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002359
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002360 /* Adaptive interframe spacing in units of 32us */
2361 __u8 aifs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002362
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002363 /* TX queue to configure */
2364 __u8 txq;
2365 } ap;
2366 struct {
2367 /* Log exponent of max contention period: 0...15 */
2368 __u8 log_cw_max;
2369
2370 /* Log exponent of min contention period: 0...15 */
2371 __u8 log_cw_min;
2372
2373 /* Adaptive interframe spacing in units of 32us */
2374 __u8 aifs;
2375
2376 /* TX queue to configure */
2377 __u8 txq;
2378 } sta;
2379 };
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002380} __attribute__((packed));
2381
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002382#define MWL8K_SET_EDCA_CW 0x01
2383#define MWL8K_SET_EDCA_TXOP 0x02
2384#define MWL8K_SET_EDCA_AIFS 0x04
2385
2386#define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
2387 MWL8K_SET_EDCA_TXOP | \
2388 MWL8K_SET_EDCA_AIFS)
2389
2390static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002391mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
2392 __u16 cw_min, __u16 cw_max,
2393 __u8 aifs, __u16 txop)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002394{
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002395 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002396 struct mwl8k_cmd_set_edca_params *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002397 int rc;
2398
2399 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2400 if (cmd == NULL)
2401 return -ENOMEM;
2402
Lennert Buytenhek22995b22009-10-22 20:20:25 +02002403 /*
2404 * Queues 0 (BE) and 1 (BK) are swapped in hardware for
2405 * this call.
2406 */
2407 qnum ^= !(qnum >> 1);
2408
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002409 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
2410 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002411 cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
2412 cmd->txop = cpu_to_le16(txop);
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002413 if (priv->ap_fw) {
2414 cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1));
2415 cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1));
2416 cmd->ap.aifs = aifs;
2417 cmd->ap.txq = qnum;
2418 } else {
2419 cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1);
2420 cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1);
2421 cmd->sta.aifs = aifs;
2422 cmd->sta.txq = qnum;
2423 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002424
2425 rc = mwl8k_post_cmd(hw, &cmd->header);
2426 kfree(cmd);
2427
2428 return rc;
2429}
2430
2431/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002432 * CMD_SET_WMM_MODE.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002433 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002434struct mwl8k_cmd_set_wmm_mode {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002435 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002436 __le16 action;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002437} __attribute__((packed));
2438
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002439static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw *hw, bool enable)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002440{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002441 struct mwl8k_priv *priv = hw->priv;
2442 struct mwl8k_cmd_set_wmm_mode *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002443 int rc;
2444
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002445 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2446 if (cmd == NULL)
2447 return -ENOMEM;
2448
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002449 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002450 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002451 cmd->action = cpu_to_le16(!!enable);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002452
2453 rc = mwl8k_post_cmd(hw, &cmd->header);
2454 kfree(cmd);
Lennert Buytenhek16cec432009-11-30 18:14:23 +01002455
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002456 if (!rc)
2457 priv->wmm_enabled = enable;
2458
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002459 return rc;
2460}
2461
2462/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002463 * CMD_MIMO_CONFIG.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002464 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002465struct mwl8k_cmd_mimo_config {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002466 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002467 __le32 action;
2468 __u8 rx_antenna_map;
2469 __u8 tx_antenna_map;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002470} __attribute__((packed));
2471
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002472static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002473{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002474 struct mwl8k_cmd_mimo_config *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002475 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002476
2477 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2478 if (cmd == NULL)
2479 return -ENOMEM;
2480
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002481 cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002482 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002483 cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET);
2484 cmd->rx_antenna_map = rx;
2485 cmd->tx_antenna_map = tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002486
2487 rc = mwl8k_post_cmd(hw, &cmd->header);
2488 kfree(cmd);
2489
2490 return rc;
2491}
2492
2493/*
2494 * CMD_USE_FIXED_RATE.
2495 */
2496#define MWL8K_RATE_TABLE_SIZE 8
2497#define MWL8K_UCAST_RATE 0
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002498#define MWL8K_USE_AUTO_RATE 0x0002
2499
2500struct mwl8k_rate_entry {
2501 /* Set to 1 if HT rate, 0 if legacy. */
2502 __le32 is_ht_rate;
2503
2504 /* Set to 1 to use retry_count field. */
2505 __le32 enable_retry;
2506
2507 /* Specified legacy rate or MCS. */
2508 __le32 rate;
2509
2510 /* Number of allowed retries. */
2511 __le32 retry_count;
2512} __attribute__((packed));
2513
2514struct mwl8k_rate_table {
2515 /* 1 to allow specified rate and below */
2516 __le32 allow_rate_drop;
2517 __le32 num_rates;
2518 struct mwl8k_rate_entry rate_entry[MWL8K_RATE_TABLE_SIZE];
2519} __attribute__((packed));
2520
2521struct mwl8k_cmd_use_fixed_rate {
2522 struct mwl8k_cmd_pkt header;
2523 __le32 action;
2524 struct mwl8k_rate_table rate_table;
2525
2526 /* Unicast, Broadcast or Multicast */
2527 __le32 rate_type;
2528 __le32 reserved1;
2529 __le32 reserved2;
2530} __attribute__((packed));
2531
2532static int mwl8k_cmd_use_fixed_rate(struct ieee80211_hw *hw,
2533 u32 action, u32 rate_type, struct mwl8k_rate_table *rate_table)
2534{
2535 struct mwl8k_cmd_use_fixed_rate *cmd;
2536 int count;
2537 int rc;
2538
2539 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2540 if (cmd == NULL)
2541 return -ENOMEM;
2542
2543 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
2544 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2545
2546 cmd->action = cpu_to_le32(action);
2547 cmd->rate_type = cpu_to_le32(rate_type);
2548
2549 if (rate_table != NULL) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02002550 /*
2551 * Copy over each field manually so that endian
2552 * conversion can be done.
2553 */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002554 cmd->rate_table.allow_rate_drop =
2555 cpu_to_le32(rate_table->allow_rate_drop);
2556 cmd->rate_table.num_rates =
2557 cpu_to_le32(rate_table->num_rates);
2558
2559 for (count = 0; count < rate_table->num_rates; count++) {
2560 struct mwl8k_rate_entry *dst =
2561 &cmd->rate_table.rate_entry[count];
2562 struct mwl8k_rate_entry *src =
2563 &rate_table->rate_entry[count];
2564
2565 dst->is_ht_rate = cpu_to_le32(src->is_ht_rate);
2566 dst->enable_retry = cpu_to_le32(src->enable_retry);
2567 dst->rate = cpu_to_le32(src->rate);
2568 dst->retry_count = cpu_to_le32(src->retry_count);
2569 }
2570 }
2571
2572 rc = mwl8k_post_cmd(hw, &cmd->header);
2573 kfree(cmd);
2574
2575 return rc;
2576}
2577
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002578/*
2579 * CMD_ENABLE_SNIFFER.
2580 */
2581struct mwl8k_cmd_enable_sniffer {
2582 struct mwl8k_cmd_pkt header;
2583 __le32 action;
2584} __attribute__((packed));
2585
2586static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable)
2587{
2588 struct mwl8k_cmd_enable_sniffer *cmd;
2589 int rc;
2590
2591 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2592 if (cmd == NULL)
2593 return -ENOMEM;
2594
2595 cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
2596 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2597 cmd->action = cpu_to_le32(!!enable);
2598
2599 rc = mwl8k_post_cmd(hw, &cmd->header);
2600 kfree(cmd);
2601
2602 return rc;
2603}
2604
2605/*
2606 * CMD_SET_MAC_ADDR.
2607 */
2608struct mwl8k_cmd_set_mac_addr {
2609 struct mwl8k_cmd_pkt header;
2610 union {
2611 struct {
2612 __le16 mac_type;
2613 __u8 mac_addr[ETH_ALEN];
2614 } mbss;
2615 __u8 mac_addr[ETH_ALEN];
2616 };
2617} __attribute__((packed));
2618
2619static int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw, u8 *mac)
2620{
2621 struct mwl8k_priv *priv = hw->priv;
2622 struct mwl8k_cmd_set_mac_addr *cmd;
2623 int rc;
2624
2625 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2626 if (cmd == NULL)
2627 return -ENOMEM;
2628
2629 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR);
2630 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2631 if (priv->ap_fw) {
2632 cmd->mbss.mac_type = 0;
2633 memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN);
2634 } else {
2635 memcpy(cmd->mac_addr, mac, ETH_ALEN);
2636 }
2637
2638 rc = mwl8k_post_cmd(hw, &cmd->header);
2639 kfree(cmd);
2640
2641 return rc;
2642}
2643
2644/*
2645 * CMD_SET_RATEADAPT_MODE.
2646 */
2647struct mwl8k_cmd_set_rate_adapt_mode {
2648 struct mwl8k_cmd_pkt header;
2649 __le16 action;
2650 __le16 mode;
2651} __attribute__((packed));
2652
2653static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode)
2654{
2655 struct mwl8k_cmd_set_rate_adapt_mode *cmd;
2656 int rc;
2657
2658 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2659 if (cmd == NULL)
2660 return -ENOMEM;
2661
2662 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
2663 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2664 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2665 cmd->mode = cpu_to_le16(mode);
2666
2667 rc = mwl8k_post_cmd(hw, &cmd->header);
2668 kfree(cmd);
2669
2670 return rc;
2671}
2672
2673/*
2674 * CMD_UPDATE_STADB.
2675 */
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01002676struct ewc_ht_info {
2677 __le16 control1;
2678 __le16 control2;
2679 __le16 control3;
2680} __attribute__((packed));
2681
2682struct peer_capability_info {
2683 /* Peer type - AP vs. STA. */
2684 __u8 peer_type;
2685
2686 /* Basic 802.11 capabilities from assoc resp. */
2687 __le16 basic_caps;
2688
2689 /* Set if peer supports 802.11n high throughput (HT). */
2690 __u8 ht_support;
2691
2692 /* Valid if HT is supported. */
2693 __le16 ht_caps;
2694 __u8 extended_ht_caps;
2695 struct ewc_ht_info ewc_info;
2696
2697 /* Legacy rate table. Intersection of our rates and peer rates. */
2698 __u8 legacy_rates[12];
2699
2700 /* HT rate table. Intersection of our rates and peer rates. */
2701 __u8 ht_rates[16];
2702 __u8 pad[16];
2703
2704 /* If set, interoperability mode, no proprietary extensions. */
2705 __u8 interop;
2706 __u8 pad2;
2707 __u8 station_id;
2708 __le16 amsdu_enabled;
2709} __attribute__((packed));
2710
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002711struct mwl8k_cmd_update_stadb {
2712 struct mwl8k_cmd_pkt header;
2713
2714 /* See STADB_ACTION_TYPE */
2715 __le32 action;
2716
2717 /* Peer MAC address */
2718 __u8 peer_addr[ETH_ALEN];
2719
2720 __le32 reserved;
2721
2722 /* Peer info - valid during add/update. */
2723 struct peer_capability_info peer_info;
2724} __attribute__((packed));
2725
Lennert Buytenheka6804002010-01-04 21:55:42 +01002726#define MWL8K_STA_DB_MODIFY_ENTRY 1
2727#define MWL8K_STA_DB_DEL_ENTRY 2
2728
2729/* Peer Entry flags - used to define the type of the peer node */
2730#define MWL8K_PEER_TYPE_ACCESSPOINT 2
2731
2732static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw,
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002733 struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01002734 struct ieee80211_sta *sta)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002735{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002736 struct mwl8k_cmd_update_stadb *cmd;
Lennert Buytenheka6804002010-01-04 21:55:42 +01002737 struct peer_capability_info *p;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002738 int rc;
2739
2740 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2741 if (cmd == NULL)
2742 return -ENOMEM;
2743
2744 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
2745 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka6804002010-01-04 21:55:42 +01002746 cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01002747 memcpy(cmd->peer_addr, sta->addr, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002748
Lennert Buytenheka6804002010-01-04 21:55:42 +01002749 p = &cmd->peer_info;
2750 p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
2751 p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01002752 p->ht_support = sta->ht_cap.ht_supported;
2753 p->ht_caps = sta->ht_cap.cap;
2754 p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) |
2755 ((sta->ht_cap.ampdu_density & 7) << 2);
2756 legacy_rate_mask_to_array(p->legacy_rates,
2757 sta->supp_rates[IEEE80211_BAND_2GHZ]);
2758 memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16);
Lennert Buytenheka6804002010-01-04 21:55:42 +01002759 p->interop = 1;
2760 p->amsdu_enabled = 0;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002761
Lennert Buytenheka6804002010-01-04 21:55:42 +01002762 rc = mwl8k_post_cmd(hw, &cmd->header);
2763 kfree(cmd);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002764
Lennert Buytenheka6804002010-01-04 21:55:42 +01002765 return rc ? rc : p->station_id;
2766}
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002767
Lennert Buytenheka6804002010-01-04 21:55:42 +01002768static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw,
2769 struct ieee80211_vif *vif, u8 *addr)
2770{
2771 struct mwl8k_cmd_update_stadb *cmd;
2772 int rc;
2773
2774 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2775 if (cmd == NULL)
2776 return -ENOMEM;
2777
2778 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
2779 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2780 cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY);
2781 memcpy(cmd->peer_addr, addr, ETH_ALEN);
2782
2783 rc = mwl8k_post_cmd(hw, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002784 kfree(cmd);
2785
2786 return rc;
2787}
2788
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002789
2790/*
2791 * Interrupt handling.
2792 */
2793static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
2794{
2795 struct ieee80211_hw *hw = dev_id;
2796 struct mwl8k_priv *priv = hw->priv;
2797 u32 status;
2798
2799 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
2800 iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
2801
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002802 if (!status)
2803 return IRQ_NONE;
2804
2805 if (status & MWL8K_A2H_INT_TX_DONE)
2806 tasklet_schedule(&priv->tx_reclaim_task);
2807
2808 if (status & MWL8K_A2H_INT_RX_READY) {
2809 while (rxq_process(hw, 0, 1))
2810 rxq_refill(hw, 0, 1);
2811 }
2812
2813 if (status & MWL8K_A2H_INT_OPC_DONE) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002814 if (priv->hostcmd_wait != NULL)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002815 complete(priv->hostcmd_wait);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002816 }
2817
2818 if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002819 if (!mutex_is_locked(&priv->fw_mutex) &&
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02002820 priv->radio_on && priv->pending_tx_pkts)
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002821 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002822 }
2823
2824 return IRQ_HANDLED;
2825}
2826
2827
2828/*
2829 * Core driver operations.
2830 */
2831static int mwl8k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
2832{
2833 struct mwl8k_priv *priv = hw->priv;
2834 int index = skb_get_queue_mapping(skb);
2835 int rc;
2836
2837 if (priv->current_channel == NULL) {
2838 printk(KERN_DEBUG "%s: dropped TX frame since radio "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02002839 "disabled\n", wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002840 dev_kfree_skb(skb);
2841 return NETDEV_TX_OK;
2842 }
2843
2844 rc = mwl8k_txq_xmit(hw, index, skb);
2845
2846 return rc;
2847}
2848
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002849static int mwl8k_start(struct ieee80211_hw *hw)
2850{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002851 struct mwl8k_priv *priv = hw->priv;
2852 int rc;
2853
Joe Perchesa0607fd2009-11-18 23:29:17 -08002854 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002855 IRQF_SHARED, MWL8K_NAME, hw);
2856 if (rc) {
2857 printk(KERN_ERR "%s: failed to register IRQ handler\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02002858 wiphy_name(hw->wiphy));
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002859 return -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002860 }
2861
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002862 /* Enable tx reclaim tasklet */
2863 tasklet_enable(&priv->tx_reclaim_task);
2864
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002865 /* Enable interrupts */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02002866 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002867
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002868 rc = mwl8k_fw_lock(hw);
2869 if (!rc) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002870 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002871
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02002872 if (!priv->ap_fw) {
2873 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002874 rc = mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002875
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02002876 if (!rc)
2877 rc = mwl8k_cmd_set_pre_scan(hw);
2878
2879 if (!rc)
2880 rc = mwl8k_cmd_set_post_scan(hw,
2881 "\x00\x00\x00\x00\x00\x00");
2882 }
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002883
2884 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002885 rc = mwl8k_cmd_set_rateadapt_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002886
2887 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002888 rc = mwl8k_cmd_set_wmm_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002889
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002890 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002891 }
2892
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02002893 if (rc) {
2894 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
2895 free_irq(priv->pdev->irq, hw);
2896 tasklet_disable(&priv->tx_reclaim_task);
2897 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002898
2899 return rc;
2900}
2901
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002902static void mwl8k_stop(struct ieee80211_hw *hw)
2903{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002904 struct mwl8k_priv *priv = hw->priv;
2905 int i;
2906
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002907 mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002908
2909 ieee80211_stop_queues(hw);
2910
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002911 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002912 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002913 free_irq(priv->pdev->irq, hw);
2914
2915 /* Stop finalize join worker */
2916 cancel_work_sync(&priv->finalize_join_worker);
2917 if (priv->beacon_skb != NULL)
2918 dev_kfree_skb(priv->beacon_skb);
2919
2920 /* Stop tx reclaim tasklet */
2921 tasklet_disable(&priv->tx_reclaim_task);
2922
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002923 /* Return all skbs to mac80211 */
2924 for (i = 0; i < MWL8K_TX_QUEUES; i++)
2925 mwl8k_txq_reclaim(hw, i, 1);
2926}
2927
2928static int mwl8k_add_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01002929 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002930{
2931 struct mwl8k_priv *priv = hw->priv;
2932 struct mwl8k_vif *mwl8k_vif;
2933
2934 /*
2935 * We only support one active interface at a time.
2936 */
2937 if (priv->vif != NULL)
2938 return -EBUSY;
2939
2940 /*
2941 * We only support managed interfaces for now.
2942 */
Johannes Berg1ed32e42009-12-23 13:15:45 +01002943 if (vif->type != NL80211_IFTYPE_STATION)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002944 return -EINVAL;
2945
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02002946 /*
2947 * Reject interface creation if sniffer mode is active, as
2948 * STA operation is mutually exclusive with hardware sniffer
2949 * mode.
2950 */
2951 if (priv->sniffer_enabled) {
2952 printk(KERN_INFO "%s: unable to create STA "
2953 "interface due to sniffer mode being enabled\n",
2954 wiphy_name(hw->wiphy));
2955 return -EINVAL;
2956 }
2957
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002958 /* Clean out driver private area */
Johannes Berg1ed32e42009-12-23 13:15:45 +01002959 mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002960 memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
2961
Lennert Buytenhek32060e12009-10-22 20:20:04 +02002962 /* Set and save the mac address */
Johannes Berg1ed32e42009-12-23 13:15:45 +01002963 mwl8k_cmd_set_mac_addr(hw, vif->addr);
2964 memcpy(mwl8k_vif->mac_addr, vif->addr, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002965
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002966 /* Set Initial sequence number to zero */
2967 mwl8k_vif->seqno = 0;
2968
Johannes Berg1ed32e42009-12-23 13:15:45 +01002969 priv->vif = vif;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002970 priv->current_channel = NULL;
2971
2972 return 0;
2973}
2974
2975static void mwl8k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01002976 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002977{
2978 struct mwl8k_priv *priv = hw->priv;
2979
2980 if (priv->vif == NULL)
2981 return;
2982
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002983 mwl8k_cmd_set_mac_addr(hw, "\x00\x00\x00\x00\x00\x00");
Lennert Buytenhek32060e12009-10-22 20:20:04 +02002984
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002985 priv->vif = NULL;
2986}
2987
Lennert Buytenhekee03a932009-07-17 07:19:37 +02002988static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002989{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002990 struct ieee80211_conf *conf = &hw->conf;
2991 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02002992 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002993
Lennert Buytenhek7595d672009-08-17 23:59:40 +02002994 if (conf->flags & IEEE80211_CONF_IDLE) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002995 mwl8k_cmd_radio_disable(hw);
Lennert Buytenhek7595d672009-08-17 23:59:40 +02002996 priv->current_channel = NULL;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02002997 return 0;
Lennert Buytenhek7595d672009-08-17 23:59:40 +02002998 }
2999
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003000 rc = mwl8k_fw_lock(hw);
3001 if (rc)
3002 return rc;
3003
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003004 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003005 if (rc)
3006 goto out;
3007
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003008 rc = mwl8k_cmd_set_rf_channel(hw, conf);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003009 if (rc)
3010 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003011
3012 priv->current_channel = conf->channel;
3013
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003014 if (conf->power_level > 18)
3015 conf->power_level = 18;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003016 rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003017 if (rc)
3018 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003019
Lennert Buytenhek08b06342009-10-22 20:21:33 +02003020 if (priv->ap_fw) {
3021 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x7);
3022 if (!rc)
3023 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7);
3024 } else {
3025 rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7);
3026 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003027
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003028out:
3029 mwl8k_fw_unlock(hw);
3030
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003031 return rc;
3032}
3033
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003034static void mwl8k_bss_info_changed(struct ieee80211_hw *hw,
3035 struct ieee80211_vif *vif,
3036 struct ieee80211_bss_conf *info,
3037 u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003038{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003039 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003040 u32 ap_legacy_rates;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003041 u8 ap_mcs_rates[16];
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003042 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003043
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003044 if (mwl8k_fw_lock(hw))
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003045 return;
3046
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003047 /*
3048 * No need to capture a beacon if we're no longer associated.
3049 */
3050 if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc)
3051 priv->capture_beacon = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003052
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003053 /*
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003054 * Get the AP's legacy and MCS rates.
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003055 */
3056 ap_legacy_rates = 0;
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003057 if (vif->bss_conf.assoc) {
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003058 struct ieee80211_sta *ap;
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003059 rcu_read_lock();
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003060
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003061 ap = ieee80211_find_sta(vif, vif->bss_conf.bssid);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003062 if (ap == NULL) {
3063 rcu_read_unlock();
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003064 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003065 }
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003066
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003067 ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ];
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003068 memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003069
3070 rcu_read_unlock();
3071 }
3072
3073 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc) {
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003074 rc = mwl8k_cmd_set_rate(hw, vif, ap_legacy_rates, ap_mcs_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003075 if (rc)
3076 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003077
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003078 rc = mwl8k_cmd_use_fixed_rate(hw, MWL8K_USE_AUTO_RATE,
3079 MWL8K_UCAST_RATE, NULL);
3080 if (rc)
3081 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003082 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003083
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003084 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003085 rc = mwl8k_set_radio_preamble(hw,
3086 vif->bss_conf.use_short_preamble);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003087 if (rc)
3088 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003089 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003090
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003091 if (changed & BSS_CHANGED_ERP_SLOT) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003092 rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003093 if (rc)
3094 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003095 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003096
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003097 if (((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc) ||
3098 (changed & (BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_HT))) {
3099 rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003100 if (rc)
3101 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003102 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003103
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003104 if (vif->bss_conf.assoc &&
3105 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003106 /*
3107 * Finalize the join. Tell rx handler to process
3108 * next beacon from our BSSID.
3109 */
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003110 memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003111 priv->capture_beacon = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003112 }
3113
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003114out:
3115 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003116}
3117
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02003118static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw,
3119 int mc_count, struct dev_addr_list *mclist)
3120{
3121 struct mwl8k_cmd_pkt *cmd;
3122
Lennert Buytenhek447ced02009-10-22 20:19:50 +02003123 /*
3124 * Synthesize and return a command packet that programs the
3125 * hardware multicast address filter. At this point we don't
3126 * know whether FIF_ALLMULTI is being requested, but if it is,
3127 * we'll end up throwing this packet away and creating a new
3128 * one in mwl8k_configure_filter().
3129 */
3130 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_count, mclist);
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02003131
3132 return (unsigned long)cmd;
3133}
3134
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003135static int
3136mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw,
3137 unsigned int changed_flags,
3138 unsigned int *total_flags)
3139{
3140 struct mwl8k_priv *priv = hw->priv;
3141
3142 /*
3143 * Hardware sniffer mode is mutually exclusive with STA
3144 * operation, so refuse to enable sniffer mode if a STA
3145 * interface is active.
3146 */
3147 if (priv->vif != NULL) {
3148 if (net_ratelimit())
3149 printk(KERN_INFO "%s: not enabling sniffer "
3150 "mode because STA interface is active\n",
3151 wiphy_name(hw->wiphy));
3152 return 0;
3153 }
3154
3155 if (!priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003156 if (mwl8k_cmd_enable_sniffer(hw, 1))
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003157 return 0;
3158 priv->sniffer_enabled = true;
3159 }
3160
3161 *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI |
3162 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL |
3163 FIF_OTHER_BSS;
3164
3165 return 1;
3166}
3167
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003168static void mwl8k_configure_filter(struct ieee80211_hw *hw,
3169 unsigned int changed_flags,
3170 unsigned int *total_flags,
3171 u64 multicast)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003172{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003173 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003174 struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast;
3175
3176 /*
Lennert Buytenhekc0adae22009-10-22 20:21:36 +02003177 * AP firmware doesn't allow fine-grained control over
3178 * the receive filter.
3179 */
3180 if (priv->ap_fw) {
3181 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
3182 kfree(cmd);
3183 return;
3184 }
3185
3186 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003187 * Enable hardware sniffer mode if FIF_CONTROL or
3188 * FIF_OTHER_BSS is requested.
3189 */
3190 if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) &&
3191 mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) {
3192 kfree(cmd);
3193 return;
3194 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003195
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003196 /* Clear unsupported feature flags */
Lennert Buytenhek447ced02009-10-22 20:19:50 +02003197 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003198
3199 if (mwl8k_fw_lock(hw))
3200 return;
3201
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003202 if (priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003203 mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003204 priv->sniffer_enabled = false;
3205 }
3206
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003207 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
Lennert Buytenhek77165d882009-10-22 20:19:53 +02003208 if (*total_flags & FIF_BCN_PRBRESP_PROMISC) {
3209 /*
3210 * Disable the BSS filter.
3211 */
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003212 mwl8k_cmd_set_pre_scan(hw);
Lennert Buytenhek77165d882009-10-22 20:19:53 +02003213 } else {
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003214 const u8 *bssid;
Lennert Buytenheka94cc972009-08-03 21:58:57 +02003215
Lennert Buytenhek77165d882009-10-22 20:19:53 +02003216 /*
3217 * Enable the BSS filter.
3218 *
3219 * If there is an active STA interface, use that
3220 * interface's BSSID, otherwise use a dummy one
3221 * (where the OUI part needs to be nonzero for
3222 * the BSSID to be accepted by POST_SCAN).
3223 */
3224 bssid = "\x01\x00\x00\x00\x00\x00";
Lennert Buytenheka94cc972009-08-03 21:58:57 +02003225 if (priv->vif != NULL)
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003226 bssid = priv->vif->bss_conf.bssid;
Lennert Buytenheka94cc972009-08-03 21:58:57 +02003227
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003228 mwl8k_cmd_set_post_scan(hw, bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003229 }
3230 }
3231
Lennert Buytenhek447ced02009-10-22 20:19:50 +02003232 /*
3233 * If FIF_ALLMULTI is being requested, throw away the command
3234 * packet that ->prepare_multicast() built and replace it with
3235 * a command packet that enables reception of all multicast
3236 * packets.
3237 */
3238 if (*total_flags & FIF_ALLMULTI) {
3239 kfree(cmd);
3240 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, 0, NULL);
3241 }
3242
3243 if (cmd != NULL) {
3244 mwl8k_post_cmd(hw, cmd);
3245 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003246 }
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02003247
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003248 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003249}
3250
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003251static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
3252{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003253 return mwl8k_cmd_set_rts_threshold(hw, MWL8K_CMD_SET, value);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003254}
3255
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003256struct mwl8k_sta_notify_item
3257{
3258 struct list_head list;
3259 struct ieee80211_vif *vif;
3260 enum sta_notify_cmd cmd;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003261 struct ieee80211_sta sta;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003262};
3263
3264static void mwl8k_sta_notify_worker(struct work_struct *work)
3265{
3266 struct mwl8k_priv *priv =
3267 container_of(work, struct mwl8k_priv, sta_notify_worker);
Lennert Buytenheka6804002010-01-04 21:55:42 +01003268 struct ieee80211_hw *hw = priv->hw;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003269
3270 spin_lock_bh(&priv->sta_notify_list_lock);
3271 while (!list_empty(&priv->sta_notify_list)) {
3272 struct mwl8k_sta_notify_item *s;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003273
3274 s = list_entry(priv->sta_notify_list.next,
3275 struct mwl8k_sta_notify_item, list);
3276 list_del(&s->list);
3277
3278 spin_unlock_bh(&priv->sta_notify_list_lock);
3279
Lennert Buytenheka6804002010-01-04 21:55:42 +01003280 if (s->cmd == STA_NOTIFY_ADD) {
3281 int rc;
3282
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003283 rc = mwl8k_cmd_update_stadb_add(hw, s->vif, &s->sta);
Lennert Buytenheka6804002010-01-04 21:55:42 +01003284 if (rc >= 0) {
3285 struct ieee80211_sta *sta;
3286
3287 rcu_read_lock();
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003288 sta = ieee80211_find_sta(s->vif, s->sta.addr);
Lennert Buytenheka6804002010-01-04 21:55:42 +01003289 if (sta != NULL)
3290 MWL8K_STA(sta)->peer_id = rc;
3291 rcu_read_unlock();
3292 }
3293 } else {
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003294 mwl8k_cmd_update_stadb_del(hw, s->vif, s->sta.addr);
Lennert Buytenheka6804002010-01-04 21:55:42 +01003295 }
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003296
3297 kfree(s);
3298
3299 spin_lock_bh(&priv->sta_notify_list_lock);
3300 }
3301 spin_unlock_bh(&priv->sta_notify_list_lock);
3302}
3303
3304static void
3305mwl8k_sta_notify(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
3306 enum sta_notify_cmd cmd, struct ieee80211_sta *sta)
3307{
3308 struct mwl8k_priv *priv = hw->priv;
3309 struct mwl8k_sta_notify_item *s;
3310
3311 if (cmd != STA_NOTIFY_ADD && cmd != STA_NOTIFY_REMOVE)
3312 return;
3313
3314 s = kmalloc(sizeof(*s), GFP_ATOMIC);
3315 if (s != NULL) {
3316 s->vif = vif;
3317 s->cmd = cmd;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003318 s->sta = *sta;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003319
3320 spin_lock(&priv->sta_notify_list_lock);
3321 list_add_tail(&s->list, &priv->sta_notify_list);
3322 spin_unlock(&priv->sta_notify_list_lock);
3323
3324 ieee80211_queue_work(hw, &priv->sta_notify_worker);
3325 }
3326}
3327
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003328static int mwl8k_conf_tx(struct ieee80211_hw *hw, u16 queue,
3329 const struct ieee80211_tx_queue_params *params)
3330{
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003331 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003332 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003333
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003334 rc = mwl8k_fw_lock(hw);
3335 if (!rc) {
3336 if (!priv->wmm_enabled)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003337 rc = mwl8k_cmd_set_wmm_mode(hw, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003338
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003339 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003340 rc = mwl8k_cmd_set_edca_params(hw, queue,
3341 params->cw_min,
3342 params->cw_max,
3343 params->aifs,
3344 params->txop);
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003345
3346 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003347 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003348
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003349 return rc;
3350}
3351
3352static int mwl8k_get_tx_stats(struct ieee80211_hw *hw,
3353 struct ieee80211_tx_queue_stats *stats)
3354{
3355 struct mwl8k_priv *priv = hw->priv;
3356 struct mwl8k_tx_queue *txq;
3357 int index;
3358
3359 spin_lock_bh(&priv->tx_lock);
3360 for (index = 0; index < MWL8K_TX_QUEUES; index++) {
3361 txq = priv->txq + index;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02003362 memcpy(&stats[index], &txq->stats,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003363 sizeof(struct ieee80211_tx_queue_stats));
3364 }
3365 spin_unlock_bh(&priv->tx_lock);
Lennert Buytenhek954ef502009-07-17 07:26:27 +02003366
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003367 return 0;
3368}
3369
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003370static int mwl8k_get_stats(struct ieee80211_hw *hw,
3371 struct ieee80211_low_level_stats *stats)
3372{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003373 return mwl8k_cmd_get_stat(hw, stats);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003374}
3375
Lennert Buytenheka2292d82010-01-04 21:58:12 +01003376static int
3377mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
3378 enum ieee80211_ampdu_mlme_action action,
3379 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
3380{
3381 switch (action) {
3382 case IEEE80211_AMPDU_RX_START:
3383 case IEEE80211_AMPDU_RX_STOP:
3384 if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
3385 return -ENOTSUPP;
3386 return 0;
3387 default:
3388 return -ENOTSUPP;
3389 }
3390}
3391
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003392static const struct ieee80211_ops mwl8k_ops = {
3393 .tx = mwl8k_tx,
3394 .start = mwl8k_start,
3395 .stop = mwl8k_stop,
3396 .add_interface = mwl8k_add_interface,
3397 .remove_interface = mwl8k_remove_interface,
3398 .config = mwl8k_config,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003399 .bss_info_changed = mwl8k_bss_info_changed,
Johannes Berg3ac64be2009-08-17 16:16:53 +02003400 .prepare_multicast = mwl8k_prepare_multicast,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003401 .configure_filter = mwl8k_configure_filter,
3402 .set_rts_threshold = mwl8k_set_rts_threshold,
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003403 .sta_notify = mwl8k_sta_notify,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003404 .conf_tx = mwl8k_conf_tx,
3405 .get_tx_stats = mwl8k_get_tx_stats,
3406 .get_stats = mwl8k_get_stats,
Lennert Buytenheka2292d82010-01-04 21:58:12 +01003407 .ampdu_action = mwl8k_ampdu_action,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003408};
3409
3410static void mwl8k_tx_reclaim_handler(unsigned long data)
3411{
3412 int i;
3413 struct ieee80211_hw *hw = (struct ieee80211_hw *) data;
3414 struct mwl8k_priv *priv = hw->priv;
3415
3416 spin_lock_bh(&priv->tx_lock);
3417 for (i = 0; i < MWL8K_TX_QUEUES; i++)
3418 mwl8k_txq_reclaim(hw, i, 0);
3419
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02003420 if (priv->tx_wait != NULL && !priv->pending_tx_pkts) {
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02003421 complete(priv->tx_wait);
3422 priv->tx_wait = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003423 }
3424 spin_unlock_bh(&priv->tx_lock);
3425}
3426
3427static void mwl8k_finalize_join_worker(struct work_struct *work)
3428{
3429 struct mwl8k_priv *priv =
3430 container_of(work, struct mwl8k_priv, finalize_join_worker);
3431 struct sk_buff *skb = priv->beacon_skb;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003432
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003433 mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len,
3434 priv->vif->bss_conf.dtim_period);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003435 dev_kfree_skb(skb);
3436
3437 priv->beacon_skb = NULL;
3438}
3439
John W. Linvillebcb628d2009-11-06 16:40:16 -05003440enum {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01003441 MWL8363 = 0,
3442 MWL8687,
John W. Linvillebcb628d2009-11-06 16:40:16 -05003443 MWL8366,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02003444};
3445
John W. Linvillebcb628d2009-11-06 16:40:16 -05003446static struct mwl8k_device_info mwl8k_info_tbl[] __devinitdata = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01003447 [MWL8363] = {
3448 .part_name = "88w8363",
3449 .helper_image = "mwl8k/helper_8363.fw",
3450 .fw_image = "mwl8k/fmimage_8363.fw",
3451 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01003452 [MWL8687] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05003453 .part_name = "88w8687",
3454 .helper_image = "mwl8k/helper_8687.fw",
3455 .fw_image = "mwl8k/fmimage_8687.fw",
John W. Linvillebcb628d2009-11-06 16:40:16 -05003456 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01003457 [MWL8366] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05003458 .part_name = "88w8366",
3459 .helper_image = "mwl8k/helper_8366.fw",
3460 .fw_image = "mwl8k/fmimage_8366.fw",
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01003461 .ap_rxd_ops = &rxd_8366_ap_ops,
John W. Linvillebcb628d2009-11-06 16:40:16 -05003462 },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02003463};
3464
3465static DEFINE_PCI_DEVICE_TABLE(mwl8k_pci_id_table) = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01003466 { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, },
3467 { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05003468 { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, },
3469 { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, },
3470 { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, },
3471 { },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02003472};
3473MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table);
3474
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003475static int __devinit mwl8k_probe(struct pci_dev *pdev,
3476 const struct pci_device_id *id)
3477{
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02003478 static int printed_version = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003479 struct ieee80211_hw *hw;
3480 struct mwl8k_priv *priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003481 int rc;
3482 int i;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02003483
3484 if (!printed_version) {
3485 printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION);
3486 printed_version = 1;
3487 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003488
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003489
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003490 rc = pci_enable_device(pdev);
3491 if (rc) {
3492 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
3493 MWL8K_NAME);
3494 return rc;
3495 }
3496
3497 rc = pci_request_regions(pdev, MWL8K_NAME);
3498 if (rc) {
3499 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
3500 MWL8K_NAME);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01003501 goto err_disable_device;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003502 }
3503
3504 pci_set_master(pdev);
3505
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003506
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003507 hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
3508 if (hw == NULL) {
3509 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
3510 rc = -ENOMEM;
3511 goto err_free_reg;
3512 }
3513
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003514 SET_IEEE80211_DEV(hw, &pdev->dev);
3515 pci_set_drvdata(pdev, hw);
3516
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003517 priv = hw->priv;
3518 priv->hw = hw;
3519 priv->pdev = pdev;
John W. Linvillebcb628d2009-11-06 16:40:16 -05003520 priv->device_info = &mwl8k_info_tbl[id->driver_data];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003521
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003522
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02003523 priv->sram = pci_iomap(pdev, 0, 0x10000);
3524 if (priv->sram == NULL) {
3525 printk(KERN_ERR "%s: Cannot map device SRAM\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003526 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003527 goto err_iounmap;
3528 }
3529
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02003530 /*
3531 * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
3532 * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
3533 */
3534 priv->regs = pci_iomap(pdev, 1, 0x10000);
3535 if (priv->regs == NULL) {
3536 priv->regs = pci_iomap(pdev, 2, 0x10000);
3537 if (priv->regs == NULL) {
3538 printk(KERN_ERR "%s: Cannot map device registers\n",
3539 wiphy_name(hw->wiphy));
3540 goto err_iounmap;
3541 }
3542 }
3543
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003544
3545 /* Reset firmware and hardware */
3546 mwl8k_hw_reset(priv);
3547
3548 /* Ask userland hotplug daemon for the device firmware */
3549 rc = mwl8k_request_firmware(priv);
3550 if (rc) {
3551 printk(KERN_ERR "%s: Firmware files not found\n",
3552 wiphy_name(hw->wiphy));
3553 goto err_stop_firmware;
3554 }
3555
3556 /* Load firmware into hardware */
3557 rc = mwl8k_load_firmware(hw);
3558 if (rc) {
3559 printk(KERN_ERR "%s: Cannot start firmware\n",
3560 wiphy_name(hw->wiphy));
3561 goto err_stop_firmware;
3562 }
3563
3564 /* Reclaim memory once firmware is successfully loaded */
3565 mwl8k_release_firmware(priv);
3566
3567
Lennert Buytenhek91942232010-01-04 21:53:54 +01003568 if (priv->ap_fw) {
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01003569 priv->rxd_ops = priv->device_info->ap_rxd_ops;
Lennert Buytenhek91942232010-01-04 21:53:54 +01003570 if (priv->rxd_ops == NULL) {
3571 printk(KERN_ERR "%s: Driver does not have AP "
3572 "firmware image support for this hardware\n",
3573 wiphy_name(hw->wiphy));
3574 goto err_stop_firmware;
3575 }
3576 } else {
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01003577 priv->rxd_ops = &rxd_sta_ops;
Lennert Buytenhek91942232010-01-04 21:53:54 +01003578 }
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003579
3580 priv->sniffer_enabled = false;
3581 priv->wmm_enabled = false;
3582 priv->pending_tx_pkts = 0;
3583
3584
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003585 memcpy(priv->channels, mwl8k_channels, sizeof(mwl8k_channels));
3586 priv->band.band = IEEE80211_BAND_2GHZ;
3587 priv->band.channels = priv->channels;
3588 priv->band.n_channels = ARRAY_SIZE(mwl8k_channels);
3589 priv->band.bitrates = priv->rates;
3590 priv->band.n_bitrates = ARRAY_SIZE(mwl8k_rates);
3591 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band;
3592
3593 BUILD_BUG_ON(sizeof(priv->rates) != sizeof(mwl8k_rates));
3594 memcpy(priv->rates, mwl8k_rates, sizeof(mwl8k_rates));
3595
3596 /*
3597 * Extra headroom is the size of the required DMA header
3598 * minus the size of the smallest 802.11 frame (CTS frame).
3599 */
3600 hw->extra_tx_headroom =
3601 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
3602
3603 hw->channel_change_time = 10;
3604
3605 hw->queues = MWL8K_TX_QUEUES;
3606
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003607 /* Set rssi and noise values to dBm */
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02003608 hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_NOISE_DBM;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003609 hw->vif_data_size = sizeof(struct mwl8k_vif);
Lennert Buytenheka6804002010-01-04 21:55:42 +01003610 hw->sta_data_size = sizeof(struct mwl8k_sta);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003611 priv->vif = NULL;
3612
3613 /* Set default radio state and preamble */
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02003614 priv->radio_on = 0;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02003615 priv->radio_short_preamble = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003616
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003617 /* Station database handling */
3618 INIT_WORK(&priv->sta_notify_worker, mwl8k_sta_notify_worker);
3619 spin_lock_init(&priv->sta_notify_list_lock);
3620 INIT_LIST_HEAD(&priv->sta_notify_list);
3621
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003622 /* Finalize join worker */
3623 INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
3624
3625 /* TX reclaim tasklet */
3626 tasklet_init(&priv->tx_reclaim_task,
3627 mwl8k_tx_reclaim_handler, (unsigned long)hw);
3628 tasklet_disable(&priv->tx_reclaim_task);
3629
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003630 /* Power management cookie */
3631 priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
3632 if (priv->cookie == NULL)
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003633 goto err_stop_firmware;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003634
3635 rc = mwl8k_rxq_init(hw, 0);
3636 if (rc)
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003637 goto err_free_cookie;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003638 rxq_refill(hw, 0, INT_MAX);
3639
Lennert Buytenhek618952a2009-08-18 03:18:01 +02003640 mutex_init(&priv->fw_mutex);
3641 priv->fw_mutex_owner = NULL;
3642 priv->fw_mutex_depth = 0;
Lennert Buytenhek618952a2009-08-18 03:18:01 +02003643 priv->hostcmd_wait = NULL;
3644
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003645 spin_lock_init(&priv->tx_lock);
3646
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02003647 priv->tx_wait = NULL;
3648
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003649 for (i = 0; i < MWL8K_TX_QUEUES; i++) {
3650 rc = mwl8k_txq_init(hw, i);
3651 if (rc)
3652 goto err_free_queues;
3653 }
3654
3655 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02003656 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003657 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
3658 iowrite32(0xffffffff, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3659
Joe Perchesa0607fd2009-11-18 23:29:17 -08003660 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003661 IRQF_SHARED, MWL8K_NAME, hw);
3662 if (rc) {
3663 printk(KERN_ERR "%s: failed to register IRQ handler\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003664 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003665 goto err_free_queues;
3666 }
3667
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003668 /*
3669 * Temporarily enable interrupts. Initial firmware host
3670 * commands use interrupts and avoids polling. Disable
3671 * interrupts when done.
3672 */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02003673 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003674
3675 /* Get config data, mac addrs etc */
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02003676 if (priv->ap_fw) {
3677 rc = mwl8k_cmd_get_hw_spec_ap(hw);
3678 if (!rc)
3679 rc = mwl8k_cmd_set_hw_spec(hw);
3680 } else {
3681 rc = mwl8k_cmd_get_hw_spec_sta(hw);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01003682
3683 hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
Lennert Buytenhek42fba21d2009-10-22 20:21:30 +02003684 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003685 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003686 printk(KERN_ERR "%s: Cannot initialise firmware\n",
3687 wiphy_name(hw->wiphy));
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003688 goto err_free_irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003689 }
3690
3691 /* Turn radio off */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003692 rc = mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003693 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003694 printk(KERN_ERR "%s: Cannot disable\n", wiphy_name(hw->wiphy));
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003695 goto err_free_irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003696 }
3697
Lennert Buytenhek32060e12009-10-22 20:20:04 +02003698 /* Clear MAC address */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003699 rc = mwl8k_cmd_set_mac_addr(hw, "\x00\x00\x00\x00\x00\x00");
Lennert Buytenhek32060e12009-10-22 20:20:04 +02003700 if (rc) {
3701 printk(KERN_ERR "%s: Cannot clear MAC address\n",
3702 wiphy_name(hw->wiphy));
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003703 goto err_free_irq;
Lennert Buytenhek32060e12009-10-22 20:20:04 +02003704 }
3705
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003706 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003707 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003708 free_irq(priv->pdev->irq, hw);
3709
3710 rc = ieee80211_register_hw(hw);
3711 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003712 printk(KERN_ERR "%s: Cannot register device\n",
3713 wiphy_name(hw->wiphy));
Lennert Buytenhek153458f2010-01-04 21:54:08 +01003714 goto err_free_queues;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003715 }
3716
Lennert Buytenhekeae74e62009-10-22 20:20:53 +02003717 printk(KERN_INFO "%s: %s v%d, %pM, %s firmware %u.%u.%u.%u\n",
Lennert Buytenheka74b2952009-10-22 20:20:50 +02003718 wiphy_name(hw->wiphy), priv->device_info->part_name,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02003719 priv->hw_rev, hw->wiphy->perm_addr,
Lennert Buytenhekeae74e62009-10-22 20:20:53 +02003720 priv->ap_fw ? "AP" : "STA",
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02003721 (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff,
3722 (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003723
3724 return 0;
3725
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003726err_free_irq:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003727 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003728 free_irq(priv->pdev->irq, hw);
3729
3730err_free_queues:
3731 for (i = 0; i < MWL8K_TX_QUEUES; i++)
3732 mwl8k_txq_deinit(hw, i);
3733 mwl8k_rxq_deinit(hw, 0);
3734
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003735err_free_cookie:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003736 if (priv->cookie != NULL)
3737 pci_free_consistent(priv->pdev, 4,
3738 priv->cookie, priv->cookie_dma);
3739
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003740err_stop_firmware:
3741 mwl8k_hw_reset(priv);
3742 mwl8k_release_firmware(priv);
3743
3744err_iounmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003745 if (priv->regs != NULL)
3746 pci_iounmap(pdev, priv->regs);
3747
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02003748 if (priv->sram != NULL)
3749 pci_iounmap(pdev, priv->sram);
3750
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003751 pci_set_drvdata(pdev, NULL);
3752 ieee80211_free_hw(hw);
3753
3754err_free_reg:
3755 pci_release_regions(pdev);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01003756
3757err_disable_device:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003758 pci_disable_device(pdev);
3759
3760 return rc;
3761}
3762
Joerg Albert230f7af2009-04-18 02:10:45 +02003763static void __devexit mwl8k_shutdown(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003764{
3765 printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__);
3766}
3767
Joerg Albert230f7af2009-04-18 02:10:45 +02003768static void __devexit mwl8k_remove(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003769{
3770 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
3771 struct mwl8k_priv *priv;
3772 int i;
3773
3774 if (hw == NULL)
3775 return;
3776 priv = hw->priv;
3777
3778 ieee80211_stop_queues(hw);
3779
Lennert Buytenhek60aa5692009-08-03 21:59:09 +02003780 ieee80211_unregister_hw(hw);
3781
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003782 /* Remove tx reclaim tasklet */
3783 tasklet_kill(&priv->tx_reclaim_task);
3784
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003785 /* Stop hardware */
3786 mwl8k_hw_reset(priv);
3787
3788 /* Return all skbs to mac80211 */
3789 for (i = 0; i < MWL8K_TX_QUEUES; i++)
3790 mwl8k_txq_reclaim(hw, i, 1);
3791
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003792 for (i = 0; i < MWL8K_TX_QUEUES; i++)
3793 mwl8k_txq_deinit(hw, i);
3794
3795 mwl8k_rxq_deinit(hw, 0);
3796
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003797 pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003798
3799 pci_iounmap(pdev, priv->regs);
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02003800 pci_iounmap(pdev, priv->sram);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003801 pci_set_drvdata(pdev, NULL);
3802 ieee80211_free_hw(hw);
3803 pci_release_regions(pdev);
3804 pci_disable_device(pdev);
3805}
3806
3807static struct pci_driver mwl8k_driver = {
3808 .name = MWL8K_NAME,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02003809 .id_table = mwl8k_pci_id_table,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003810 .probe = mwl8k_probe,
3811 .remove = __devexit_p(mwl8k_remove),
3812 .shutdown = __devexit_p(mwl8k_shutdown),
3813};
3814
3815static int __init mwl8k_init(void)
3816{
3817 return pci_register_driver(&mwl8k_driver);
3818}
3819
3820static void __exit mwl8k_exit(void)
3821{
3822 pci_unregister_driver(&mwl8k_driver);
3823}
3824
3825module_init(mwl8k_init);
3826module_exit(mwl8k_exit);
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003827
3828MODULE_DESCRIPTION(MWL8K_DESC);
3829MODULE_VERSION(MWL8K_VERSION);
3830MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
3831MODULE_LICENSE("GPL");