blob: 01cababfefa83a9e7e7b583ea38c16c775346ec8 [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
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +0100205 /* Tasklet to perform TX reclaim. */
206 struct tasklet_struct poll_tx_task;
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +0100207
208 /* Tasklet to perform RX. */
209 struct tasklet_struct poll_rx_task;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100210};
211
212/* Per interface specific private data */
213struct mwl8k_vif {
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +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 Buytenhek42fba212009-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 Buytenhekb64fe612010-01-08 18:31:39 +0100272#define MWL8K_CMD_SET_BEACON 0x0100
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100273#define MWL8K_CMD_SET_PRE_SCAN 0x0107
274#define MWL8K_CMD_SET_POST_SCAN 0x0108
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200275#define MWL8K_CMD_SET_RF_CHANNEL 0x010a
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100276#define MWL8K_CMD_SET_AID 0x010d
277#define MWL8K_CMD_SET_RATE 0x0110
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200278#define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100279#define MWL8K_CMD_RTS_THRESHOLD 0x0113
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200280#define MWL8K_CMD_SET_SLOT 0x0114
281#define MWL8K_CMD_SET_EDCA_PARAMS 0x0115
282#define MWL8K_CMD_SET_WMM_MODE 0x0123
283#define MWL8K_CMD_MIMO_CONFIG 0x0125
284#define MWL8K_CMD_USE_FIXED_RATE 0x0126
285#define MWL8K_CMD_ENABLE_SNIFFER 0x0150
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200286#define MWL8K_CMD_SET_MAC_ADDR 0x0202
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200287#define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100288#define MWL8K_CMD_BSS_START 0x1100
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +0100289#define MWL8K_CMD_SET_NEW_STN 0x1111
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200290#define MWL8K_CMD_UPDATE_STADB 0x1123
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100291
292static const char *mwl8k_cmd_name(u16 cmd, char *buf, int bufsize)
293{
294#define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\
295 snprintf(buf, bufsize, "%s", #x);\
296 return buf;\
297 } while (0)
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +0200298 switch (cmd & ~0x8000) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100299 MWL8K_CMDNAME(CODE_DNLD);
300 MWL8K_CMDNAME(GET_HW_SPEC);
Lennert Buytenhek42fba212009-10-22 20:21:30 +0200301 MWL8K_CMDNAME(SET_HW_SPEC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100302 MWL8K_CMDNAME(MAC_MULTICAST_ADR);
303 MWL8K_CMDNAME(GET_STAT);
304 MWL8K_CMDNAME(RADIO_CONTROL);
305 MWL8K_CMDNAME(RF_TX_POWER);
Lennert Buytenhek08b06342009-10-22 20:21:33 +0200306 MWL8K_CMDNAME(RF_ANTENNA);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100307 MWL8K_CMDNAME(SET_BEACON);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100308 MWL8K_CMDNAME(SET_PRE_SCAN);
309 MWL8K_CMDNAME(SET_POST_SCAN);
310 MWL8K_CMDNAME(SET_RF_CHANNEL);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100311 MWL8K_CMDNAME(SET_AID);
312 MWL8K_CMDNAME(SET_RATE);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200313 MWL8K_CMDNAME(SET_FINALIZE_JOIN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100314 MWL8K_CMDNAME(RTS_THRESHOLD);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200315 MWL8K_CMDNAME(SET_SLOT);
316 MWL8K_CMDNAME(SET_EDCA_PARAMS);
317 MWL8K_CMDNAME(SET_WMM_MODE);
318 MWL8K_CMDNAME(MIMO_CONFIG);
319 MWL8K_CMDNAME(USE_FIXED_RATE);
320 MWL8K_CMDNAME(ENABLE_SNIFFER);
Lennert Buytenhek32060e12009-10-22 20:20:04 +0200321 MWL8K_CMDNAME(SET_MAC_ADDR);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200322 MWL8K_CMDNAME(SET_RATEADAPT_MODE);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +0100323 MWL8K_CMDNAME(BSS_START);
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +0100324 MWL8K_CMDNAME(SET_NEW_STN);
Lennert Buytenhekff45fc62009-07-16 11:50:36 +0200325 MWL8K_CMDNAME(UPDATE_STADB);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100326 default:
327 snprintf(buf, bufsize, "0x%x", cmd);
328 }
329#undef MWL8K_CMDNAME
330
331 return buf;
332}
333
334/* Hardware and firmware reset */
335static void mwl8k_hw_reset(struct mwl8k_priv *priv)
336{
337 iowrite32(MWL8K_H2A_INT_RESET,
338 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
339 iowrite32(MWL8K_H2A_INT_RESET,
340 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
341 msleep(20);
342}
343
344/* Release fw image */
345static void mwl8k_release_fw(struct firmware **fw)
346{
347 if (*fw == NULL)
348 return;
349 release_firmware(*fw);
350 *fw = NULL;
351}
352
353static void mwl8k_release_firmware(struct mwl8k_priv *priv)
354{
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100355 mwl8k_release_fw(&priv->fw_ucode);
356 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100357}
358
359/* Request fw image */
360static int mwl8k_request_fw(struct mwl8k_priv *priv,
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200361 const char *fname, struct firmware **fw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100362{
363 /* release current image */
364 if (*fw != NULL)
365 mwl8k_release_fw(fw);
366
367 return request_firmware((const struct firmware **)fw,
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200368 fname, &priv->pdev->dev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100369}
370
Lennert Buytenhek45a390d2009-10-22 20:20:47 +0200371static int mwl8k_request_firmware(struct mwl8k_priv *priv)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100372{
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200373 struct mwl8k_device_info *di = priv->device_info;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100374 int rc;
375
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200376 if (di->helper_image != NULL) {
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100377 rc = mwl8k_request_fw(priv, di->helper_image, &priv->fw_helper);
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200378 if (rc) {
379 printk(KERN_ERR "%s: Error requesting helper "
380 "firmware file %s\n", pci_name(priv->pdev),
381 di->helper_image);
382 return rc;
383 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100384 }
385
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100386 rc = mwl8k_request_fw(priv, di->fw_image, &priv->fw_ucode);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100387 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200388 printk(KERN_ERR "%s: Error requesting firmware file %s\n",
Lennert Buytenheka74b2952009-10-22 20:20:50 +0200389 pci_name(priv->pdev), di->fw_image);
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100390 mwl8k_release_fw(&priv->fw_helper);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100391 return rc;
392 }
393
394 return 0;
395}
396
397struct mwl8k_cmd_pkt {
398 __le16 code;
399 __le16 length;
400 __le16 seq_num;
401 __le16 result;
402 char payload[0];
403} __attribute__((packed));
404
405/*
406 * Firmware loading.
407 */
408static int
409mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length)
410{
411 void __iomem *regs = priv->regs;
412 dma_addr_t dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100413 int loops;
414
415 dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE);
416 if (pci_dma_mapping_error(priv->pdev, dma_addr))
417 return -ENOMEM;
418
419 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
420 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
421 iowrite32(MWL8K_H2A_INT_DOORBELL,
422 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
423 iowrite32(MWL8K_H2A_INT_DUMMY,
424 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
425
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100426 loops = 1000;
427 do {
428 u32 int_code;
429
430 int_code = ioread32(regs + MWL8K_HIU_INT_CODE);
431 if (int_code == MWL8K_INT_CODE_CMD_FINISHED) {
432 iowrite32(0, regs + MWL8K_HIU_INT_CODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100433 break;
434 }
435
Lennert Buytenhek3d76e822009-10-22 20:20:16 +0200436 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100437 udelay(1);
438 } while (--loops);
439
440 pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE);
441
Lennert Buytenhekd4b705702009-07-16 12:44:45 +0200442 return loops ? 0 : -ETIMEDOUT;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100443}
444
445static int mwl8k_load_fw_image(struct mwl8k_priv *priv,
446 const u8 *data, size_t length)
447{
448 struct mwl8k_cmd_pkt *cmd;
449 int done;
450 int rc = 0;
451
452 cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL);
453 if (cmd == NULL)
454 return -ENOMEM;
455
456 cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD);
457 cmd->seq_num = 0;
458 cmd->result = 0;
459
460 done = 0;
461 while (length) {
462 int block_size = length > 256 ? 256 : length;
463
464 memcpy(cmd->payload, data + done, block_size);
465 cmd->length = cpu_to_le16(block_size);
466
467 rc = mwl8k_send_fw_load_cmd(priv, cmd,
468 sizeof(*cmd) + block_size);
469 if (rc)
470 break;
471
472 done += block_size;
473 length -= block_size;
474 }
475
476 if (!rc) {
477 cmd->length = 0;
478 rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd));
479 }
480
481 kfree(cmd);
482
483 return rc;
484}
485
486static int mwl8k_feed_fw_image(struct mwl8k_priv *priv,
487 const u8 *data, size_t length)
488{
489 unsigned char *buffer;
490 int may_continue, rc = 0;
491 u32 done, prev_block_size;
492
493 buffer = kmalloc(1024, GFP_KERNEL);
494 if (buffer == NULL)
495 return -ENOMEM;
496
497 done = 0;
498 prev_block_size = 0;
499 may_continue = 1000;
500 while (may_continue > 0) {
501 u32 block_size;
502
503 block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH);
504 if (block_size & 1) {
505 block_size &= ~1;
506 may_continue--;
507 } else {
508 done += prev_block_size;
509 length -= prev_block_size;
510 }
511
512 if (block_size > 1024 || block_size > length) {
513 rc = -EOVERFLOW;
514 break;
515 }
516
517 if (length == 0) {
518 rc = 0;
519 break;
520 }
521
522 if (block_size == 0) {
523 rc = -EPROTO;
524 may_continue--;
525 udelay(1);
526 continue;
527 }
528
529 prev_block_size = block_size;
530 memcpy(buffer, data + done, block_size);
531
532 rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size);
533 if (rc)
534 break;
535 }
536
537 if (!rc && length != 0)
538 rc = -EREMOTEIO;
539
540 kfree(buffer);
541
542 return rc;
543}
544
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200545static int mwl8k_load_firmware(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100546{
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200547 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100548 struct firmware *fw = priv->fw_ucode;
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200549 int rc;
550 int loops;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100551
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200552 if (!memcmp(fw->data, "\x01\x00\x00\x00", 4)) {
Lennert Buytenhek22be40d2009-11-30 18:32:38 +0100553 struct firmware *helper = priv->fw_helper;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100554
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200555 if (helper == NULL) {
556 printk(KERN_ERR "%s: helper image needed but none "
557 "given\n", pci_name(priv->pdev));
558 return -EINVAL;
559 }
560
561 rc = mwl8k_load_fw_image(priv, helper->data, helper->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100562 if (rc) {
563 printk(KERN_ERR "%s: unable to load firmware "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200564 "helper image\n", pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100565 return rc;
566 }
Lennert Buytenhek89b872e2009-11-30 18:13:20 +0100567 msleep(5);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100568
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200569 rc = mwl8k_feed_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100570 } else {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200571 rc = mwl8k_load_fw_image(priv, fw->data, fw->size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100572 }
573
574 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200575 printk(KERN_ERR "%s: unable to load firmware image\n",
576 pci_name(priv->pdev));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100577 return rc;
578 }
579
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100580 iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100581
Lennert Buytenhek89b872e2009-11-30 18:13:20 +0100582 loops = 500000;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100583 do {
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200584 u32 ready_code;
585
586 ready_code = ioread32(priv->regs + MWL8K_HIU_INT_CODE);
587 if (ready_code == MWL8K_FWAP_READY) {
588 priv->ap_fw = 1;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100589 break;
Lennert Buytenhekeae74e62009-10-22 20:20:53 +0200590 } else if (ready_code == MWL8K_FWSTA_READY) {
591 priv->ap_fw = 0;
592 break;
593 }
594
595 cond_resched();
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100596 udelay(1);
597 } while (--loops);
598
599 return loops ? 0 : -ETIMEDOUT;
600}
601
602
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100603/* DMA header used by firmware and hardware. */
604struct mwl8k_dma_data {
605 __le16 fwlen;
606 struct ieee80211_hdr wh;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100607 char data[0];
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100608} __attribute__((packed));
609
610/* Routines to add/remove DMA header from skb. */
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100611static inline void mwl8k_remove_dma_header(struct sk_buff *skb, __le16 qos)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100612{
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100613 struct mwl8k_dma_data *tr;
614 int hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100615
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100616 tr = (struct mwl8k_dma_data *)skb->data;
617 hdrlen = ieee80211_hdrlen(tr->wh.frame_control);
618
619 if (hdrlen != sizeof(tr->wh)) {
620 if (ieee80211_is_data_qos(tr->wh.frame_control)) {
621 memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2);
622 *((__le16 *)(tr->data - 2)) = qos;
623 } else {
624 memmove(tr->data - hdrlen, &tr->wh, hdrlen);
625 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100626 }
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100627
628 if (hdrlen != sizeof(*tr))
629 skb_pull(skb, sizeof(*tr) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100630}
631
Lennert Buytenhek76266b22009-07-16 11:07:09 +0200632static inline void mwl8k_add_dma_header(struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100633{
634 struct ieee80211_hdr *wh;
Lennert Buytenhekca009302009-11-30 18:12:20 +0100635 int hdrlen;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100636 struct mwl8k_dma_data *tr;
637
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100638 /*
Lennert Buytenhekca009302009-11-30 18:12:20 +0100639 * Add a firmware DMA header; the firmware requires that we
640 * present a 2-byte payload length followed by a 4-address
641 * header (without QoS field), followed (optionally) by any
642 * WEP/ExtIV header (but only filled in for CCMP).
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100643 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100644 wh = (struct ieee80211_hdr *)skb->data;
645
646 hdrlen = ieee80211_hdrlen(wh->frame_control);
647 if (hdrlen != sizeof(*tr))
648 skb_push(skb, sizeof(*tr) - hdrlen);
649
650 if (ieee80211_is_data_qos(wh->frame_control))
651 hdrlen -= 2;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100652
653 tr = (struct mwl8k_dma_data *)skb->data;
654 if (wh != &tr->wh)
655 memmove(&tr->wh, wh, hdrlen);
Lennert Buytenhekca009302009-11-30 18:12:20 +0100656 if (hdrlen != sizeof(tr->wh))
657 memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100658
659 /*
660 * Firmware length is the length of the fully formed "802.11
661 * payload". That is, everything except for the 802.11 header.
662 * This includes all crypto material including the MIC.
663 */
Lennert Buytenhekca009302009-11-30 18:12:20 +0100664 tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100665}
666
667
668/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100669 * Packet reception for 88w8366 AP firmware.
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200670 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100671struct mwl8k_rxd_8366_ap {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200672 __le16 pkt_len;
673 __u8 sq2;
674 __u8 rate;
675 __le32 pkt_phys_addr;
676 __le32 next_rxd_phys_addr;
677 __le16 qos_control;
678 __le16 htsig2;
679 __le32 hw_rssi_info;
680 __le32 hw_noise_floor_info;
681 __u8 noise_floor;
682 __u8 pad0[3];
683 __u8 rssi;
684 __u8 rx_status;
685 __u8 channel;
686 __u8 rx_ctrl;
687} __attribute__((packed));
688
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100689#define MWL8K_8366_AP_RATE_INFO_MCS_FORMAT 0x80
690#define MWL8K_8366_AP_RATE_INFO_40MHZ 0x40
691#define MWL8K_8366_AP_RATE_INFO_RATEID(x) ((x) & 0x3f)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100692
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100693#define MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST 0x80
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200694
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100695static void mwl8k_rxd_8366_ap_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200696{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100697 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200698
699 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100700 rxd->rx_ctrl = MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200701}
702
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100703static void mwl8k_rxd_8366_ap_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200704{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100705 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200706
707 rxd->pkt_len = cpu_to_le16(len);
708 rxd->pkt_phys_addr = cpu_to_le32(addr);
709 wmb();
710 rxd->rx_ctrl = 0;
711}
712
713static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100714mwl8k_rxd_8366_ap_process(void *_rxd, struct ieee80211_rx_status *status,
715 __le16 *qos)
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200716{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100717 struct mwl8k_rxd_8366_ap *rxd = _rxd;
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200718
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100719 if (!(rxd->rx_ctrl & MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200720 return -1;
721 rmb();
722
723 memset(status, 0, sizeof(*status));
724
725 status->signal = -rxd->rssi;
726 status->noise = -rxd->noise_floor;
727
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100728 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_MCS_FORMAT) {
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200729 status->flag |= RX_FLAG_HT;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100730 if (rxd->rate & MWL8K_8366_AP_RATE_INFO_40MHZ)
Lennert Buytenhek8e9f33f2009-11-30 18:12:35 +0100731 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100732 status->rate_idx = MWL8K_8366_AP_RATE_INFO_RATEID(rxd->rate);
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200733 } else {
734 int i;
735
736 for (i = 0; i < ARRAY_SIZE(mwl8k_rates); i++) {
737 if (mwl8k_rates[i].hw_value == rxd->rate) {
738 status->rate_idx = i;
739 break;
740 }
741 }
742 }
743
744 status->band = IEEE80211_BAND_2GHZ;
745 status->freq = ieee80211_channel_to_frequency(rxd->channel);
746
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100747 *qos = rxd->qos_control;
748
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200749 return le16_to_cpu(rxd->pkt_len);
750}
751
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100752static struct rxd_ops rxd_8366_ap_ops = {
753 .rxd_size = sizeof(struct mwl8k_rxd_8366_ap),
754 .rxd_init = mwl8k_rxd_8366_ap_init,
755 .rxd_refill = mwl8k_rxd_8366_ap_refill,
756 .rxd_process = mwl8k_rxd_8366_ap_process,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +0200757};
758
759/*
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100760 * Packet reception for STA firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100761 */
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100762struct mwl8k_rxd_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100763 __le16 pkt_len;
764 __u8 link_quality;
765 __u8 noise_level;
766 __le32 pkt_phys_addr;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200767 __le32 next_rxd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100768 __le16 qos_control;
769 __le16 rate_info;
770 __le32 pad0[4];
771 __u8 rssi;
772 __u8 channel;
773 __le16 pad1;
774 __u8 rx_ctrl;
775 __u8 rx_status;
776 __u8 pad2[2];
777} __attribute__((packed));
778
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100779#define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000
780#define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3)
781#define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f)
782#define MWL8K_STA_RATE_INFO_40MHZ 0x0004
783#define MWL8K_STA_RATE_INFO_SHORTGI 0x0002
784#define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200785
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100786#define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200787
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100788static void mwl8k_rxd_sta_init(void *_rxd, dma_addr_t next_dma_addr)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200789{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100790 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200791
792 rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100793 rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200794}
795
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100796static void mwl8k_rxd_sta_refill(void *_rxd, dma_addr_t addr, int len)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200797{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100798 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200799
800 rxd->pkt_len = cpu_to_le16(len);
801 rxd->pkt_phys_addr = cpu_to_le32(addr);
802 wmb();
803 rxd->rx_ctrl = 0;
804}
805
806static int
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100807mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status,
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100808 __le16 *qos)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200809{
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100810 struct mwl8k_rxd_sta *rxd = _rxd;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200811 u16 rate_info;
812
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100813 if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST))
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200814 return -1;
815 rmb();
816
817 rate_info = le16_to_cpu(rxd->rate_info);
818
819 memset(status, 0, sizeof(*status));
820
821 status->signal = -rxd->rssi;
822 status->noise = -rxd->noise_level;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100823 status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info);
824 status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200825
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100826 if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200827 status->flag |= RX_FLAG_SHORTPRE;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100828 if (rate_info & MWL8K_STA_RATE_INFO_40MHZ)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200829 status->flag |= RX_FLAG_40MHZ;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100830 if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200831 status->flag |= RX_FLAG_SHORT_GI;
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100832 if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT)
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200833 status->flag |= RX_FLAG_HT;
834
835 status->band = IEEE80211_BAND_2GHZ;
836 status->freq = ieee80211_channel_to_frequency(rxd->channel);
837
Lennert Buytenhek20f09c32009-11-30 18:12:08 +0100838 *qos = rxd->qos_control;
839
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200840 return le16_to_cpu(rxd->pkt_len);
841}
842
Lennert Buytenhek89a91f42009-11-30 18:32:54 +0100843static struct rxd_ops rxd_sta_ops = {
844 .rxd_size = sizeof(struct mwl8k_rxd_sta),
845 .rxd_init = mwl8k_rxd_sta_init,
846 .rxd_refill = mwl8k_rxd_sta_refill,
847 .rxd_process = mwl8k_rxd_sta_process,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200848};
849
850
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100851#define MWL8K_RX_DESCS 256
852#define MWL8K_RX_MAXSZ 3800
853
854static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index)
855{
856 struct mwl8k_priv *priv = hw->priv;
857 struct mwl8k_rx_queue *rxq = priv->rxq + index;
858 int size;
859 int i;
860
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200861 rxq->rxd_count = 0;
862 rxq->head = 0;
863 rxq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100864
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200865 size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100866
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200867 rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma);
868 if (rxq->rxd == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100869 printk(KERN_ERR "%s: failed to alloc RX descriptors\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200870 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100871 return -ENOMEM;
872 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200873 memset(rxq->rxd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100874
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200875 rxq->buf = kmalloc(MWL8K_RX_DESCS * sizeof(*rxq->buf), GFP_KERNEL);
876 if (rxq->buf == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100877 printk(KERN_ERR "%s: failed to alloc RX skbuff list\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +0200878 wiphy_name(hw->wiphy));
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200879 pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100880 return -ENOMEM;
881 }
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200882 memset(rxq->buf, 0, MWL8K_RX_DESCS * sizeof(*rxq->buf));
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100883
884 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200885 int desc_size;
886 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100887 int nexti;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200888 dma_addr_t next_dma_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100889
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200890 desc_size = priv->rxd_ops->rxd_size;
891 rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100892
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200893 nexti = i + 1;
894 if (nexti == MWL8K_RX_DESCS)
895 nexti = 0;
896 next_dma_addr = rxq->rxd_dma + (nexti * desc_size);
897
898 priv->rxd_ops->rxd_init(rxd, next_dma_addr);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100899 }
900
901 return 0;
902}
903
904static int rxq_refill(struct ieee80211_hw *hw, int index, int limit)
905{
906 struct mwl8k_priv *priv = hw->priv;
907 struct mwl8k_rx_queue *rxq = priv->rxq + index;
908 int refilled;
909
910 refilled = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200911 while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100912 struct sk_buff *skb;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200913 dma_addr_t addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100914 int rx;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200915 void *rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100916
917 skb = dev_alloc_skb(MWL8K_RX_MAXSZ);
918 if (skb == NULL)
919 break;
920
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200921 addr = pci_map_single(priv->pdev, skb->data,
922 MWL8K_RX_MAXSZ, DMA_FROM_DEVICE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100923
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200924 rxq->rxd_count++;
925 rx = rxq->tail++;
926 if (rxq->tail == MWL8K_RX_DESCS)
927 rxq->tail = 0;
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200928 rxq->buf[rx].skb = skb;
929 pci_unmap_addr_set(&rxq->buf[rx], dma, addr);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200930
931 rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size);
932 priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100933
934 refilled++;
935 }
936
937 return refilled;
938}
939
940/* Must be called only when the card's reception is completely halted */
941static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index)
942{
943 struct mwl8k_priv *priv = hw->priv;
944 struct mwl8k_rx_queue *rxq = priv->rxq + index;
945 int i;
946
947 for (i = 0; i < MWL8K_RX_DESCS; i++) {
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200948 if (rxq->buf[i].skb != NULL) {
949 pci_unmap_single(priv->pdev,
950 pci_unmap_addr(&rxq->buf[i], dma),
951 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
952 pci_unmap_addr_set(&rxq->buf[i], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100953
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200954 kfree_skb(rxq->buf[i].skb);
955 rxq->buf[i].skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100956 }
957 }
958
Lennert Buytenhek788838e2009-10-22 20:20:56 +0200959 kfree(rxq->buf);
960 rxq->buf = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100961
962 pci_free_consistent(priv->pdev,
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +0200963 MWL8K_RX_DESCS * priv->rxd_ops->rxd_size,
Lennert Buytenhek45eb4002009-10-22 20:20:40 +0200964 rxq->rxd, rxq->rxd_dma);
965 rxq->rxd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100966}
967
968
969/*
970 * Scan a list of BSSIDs to process for finalize join.
971 * Allows for extension to process multiple BSSIDs.
972 */
973static inline int
974mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh)
975{
976 return priv->capture_beacon &&
977 ieee80211_is_beacon(wh->frame_control) &&
978 !compare_ether_addr(wh->addr3, priv->capture_bssid);
979}
980
Lennert Buytenhek37797522009-10-22 20:19:45 +0200981static inline void mwl8k_save_beacon(struct ieee80211_hw *hw,
982 struct sk_buff *skb)
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100983{
Lennert Buytenhek37797522009-10-22 20:19:45 +0200984 struct mwl8k_priv *priv = hw->priv;
985
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100986 priv->capture_beacon = false;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +0200987 memset(priv->capture_bssid, 0, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100988
989 /*
990 * Use GFP_ATOMIC as rxq_process is called from
991 * the primary interrupt handler, memory allocation call
992 * must not sleep.
993 */
994 priv->beacon_skb = skb_copy(skb, GFP_ATOMIC);
995 if (priv->beacon_skb != NULL)
Lennert Buytenhek37797522009-10-22 20:19:45 +0200996 ieee80211_queue_work(hw, &priv->finalize_join_worker);
Lennert Buytenheka66098d2009-03-10 10:13:33 +0100997}
998
999static int rxq_process(struct ieee80211_hw *hw, int index, int limit)
1000{
1001 struct mwl8k_priv *priv = hw->priv;
1002 struct mwl8k_rx_queue *rxq = priv->rxq + index;
1003 int processed;
1004
1005 processed = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001006 while (rxq->rxd_count && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001007 struct sk_buff *skb;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001008 void *rxd;
1009 int pkt_len;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001010 struct ieee80211_rx_status status;
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001011 __le16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001012
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001013 skb = rxq->buf[rxq->head].skb;
Lennert Buytenhekd25f9f12009-08-03 21:58:26 +02001014 if (skb == NULL)
1015 break;
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001016
1017 rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size);
1018
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001019 pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos);
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001020 if (pkt_len < 0)
1021 break;
1022
Lennert Buytenhek788838e2009-10-22 20:20:56 +02001023 rxq->buf[rxq->head].skb = NULL;
1024
1025 pci_unmap_single(priv->pdev,
1026 pci_unmap_addr(&rxq->buf[rxq->head], dma),
1027 MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE);
1028 pci_unmap_addr_set(&rxq->buf[rxq->head], dma, 0);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001029
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001030 rxq->head++;
1031 if (rxq->head == MWL8K_RX_DESCS)
1032 rxq->head = 0;
1033
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001034 rxq->rxd_count--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001035
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001036 skb_put(skb, pkt_len);
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001037 mwl8k_remove_dma_header(skb, qos);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001038
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001039 /*
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001040 * Check for a pending join operation. Save a
1041 * copy of the beacon and schedule a tasklet to
1042 * send a FINALIZE_JOIN command to the firmware.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001043 */
Lennert Buytenhek54bc3a02009-10-22 20:20:59 +02001044 if (mwl8k_capture_bssid(priv, (void *)skb->data))
Lennert Buytenhek37797522009-10-22 20:19:45 +02001045 mwl8k_save_beacon(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001046
Johannes Bergf1d58c22009-06-17 13:13:00 +02001047 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
1048 ieee80211_rx_irqsafe(hw, skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001049
1050 processed++;
1051 }
1052
1053 return processed;
1054}
1055
1056
1057/*
1058 * Packet transmission.
1059 */
1060
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001061#define MWL8K_TXD_STATUS_OK 0x00000001
1062#define MWL8K_TXD_STATUS_OK_RETRY 0x00000002
1063#define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004
1064#define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001065#define MWL8K_TXD_STATUS_FW_OWNED 0x80000000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001066
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001067#define MWL8K_QOS_QLEN_UNSPEC 0xff00
1068#define MWL8K_QOS_ACK_POLICY_MASK 0x0060
1069#define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000
1070#define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060
1071#define MWL8K_QOS_EOSP 0x0010
1072
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001073struct mwl8k_tx_desc {
1074 __le32 status;
1075 __u8 data_rate;
1076 __u8 tx_priority;
1077 __le16 qos_control;
1078 __le32 pkt_phys_addr;
1079 __le16 pkt_len;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001080 __u8 dest_MAC_addr[ETH_ALEN];
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001081 __le32 next_txd_phys_addr;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001082 __le32 reserved;
1083 __le16 rate_info;
1084 __u8 peer_id;
1085 __u8 tx_frag_cnt;
1086} __attribute__((packed));
1087
1088#define MWL8K_TX_DESCS 128
1089
1090static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
1091{
1092 struct mwl8k_priv *priv = hw->priv;
1093 struct mwl8k_tx_queue *txq = priv->txq + index;
1094 int size;
1095 int i;
1096
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001097 memset(&txq->stats, 0, sizeof(struct ieee80211_tx_queue_stats));
1098 txq->stats.limit = MWL8K_TX_DESCS;
1099 txq->head = 0;
1100 txq->tail = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001101
1102 size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc);
1103
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001104 txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma);
1105 if (txq->txd == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001106 printk(KERN_ERR "%s: failed to alloc TX descriptors\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001107 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001108 return -ENOMEM;
1109 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001110 memset(txq->txd, 0, size);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001111
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001112 txq->skb = kmalloc(MWL8K_TX_DESCS * sizeof(*txq->skb), GFP_KERNEL);
1113 if (txq->skb == NULL) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001114 printk(KERN_ERR "%s: failed to alloc TX skbuff list\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001115 wiphy_name(hw->wiphy));
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001116 pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001117 return -ENOMEM;
1118 }
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001119 memset(txq->skb, 0, MWL8K_TX_DESCS * sizeof(*txq->skb));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001120
1121 for (i = 0; i < MWL8K_TX_DESCS; i++) {
1122 struct mwl8k_tx_desc *tx_desc;
1123 int nexti;
1124
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001125 tx_desc = txq->txd + i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001126 nexti = (i + 1) % MWL8K_TX_DESCS;
1127
1128 tx_desc->status = 0;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001129 tx_desc->next_txd_phys_addr =
1130 cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001131 }
1132
1133 return 0;
1134}
1135
1136static inline void mwl8k_tx_start(struct mwl8k_priv *priv)
1137{
1138 iowrite32(MWL8K_H2A_INT_PPA_READY,
1139 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1140 iowrite32(MWL8K_H2A_INT_DUMMY,
1141 priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1142 ioread32(priv->regs + MWL8K_HIU_INT_CODE);
1143}
1144
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001145static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001146{
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001147 struct mwl8k_priv *priv = hw->priv;
1148 int i;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001149
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001150 for (i = 0; i < MWL8K_TX_QUEUES; i++) {
1151 struct mwl8k_tx_queue *txq = priv->txq + i;
1152 int fw_owned = 0;
1153 int drv_owned = 0;
1154 int unused = 0;
1155 int desc;
Lennert Buytenhekc3f967d2009-08-18 04:15:22 +02001156
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001157 for (desc = 0; desc < MWL8K_TX_DESCS; desc++) {
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001158 struct mwl8k_tx_desc *tx_desc = txq->txd + desc;
1159 u32 status;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001160
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001161 status = le32_to_cpu(tx_desc->status);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001162 if (status & MWL8K_TXD_STATUS_FW_OWNED)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001163 fw_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001164 else
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001165 drv_owned++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001166
1167 if (tx_desc->pkt_len == 0)
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001168 unused++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001169 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001170
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001171 printk(KERN_ERR "%s: txq[%d] len=%d head=%d tail=%d "
1172 "fw_owned=%d drv_owned=%d unused=%d\n",
1173 wiphy_name(hw->wiphy), i,
1174 txq->stats.len, txq->head, txq->tail,
1175 fw_owned, drv_owned, unused);
1176 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001177}
1178
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001179/*
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001180 * Must be called with priv->fw_mutex held and tx queues stopped.
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001181 */
Lennert Buytenhek62abd3c2010-01-08 18:28:34 +01001182#define MWL8K_TX_WAIT_TIMEOUT_MS 5000
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001183
Lennert Buytenhek950d5b02009-07-17 01:48:41 +02001184static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001185{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001186 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02001187 DECLARE_COMPLETION_ONSTACK(tx_wait);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001188 int retry;
1189 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001190
1191 might_sleep();
1192
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001193 /*
1194 * The TX queues are stopped at this point, so this test
1195 * doesn't need to take ->tx_lock.
1196 */
1197 if (!priv->pending_tx_pkts)
1198 return 0;
1199
1200 retry = 0;
1201 rc = 0;
1202
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001203 spin_lock_bh(&priv->tx_lock);
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001204 priv->tx_wait = &tx_wait;
1205 while (!rc) {
1206 int oldcount;
1207 unsigned long timeout;
1208
1209 oldcount = priv->pending_tx_pkts;
1210
1211 spin_unlock_bh(&priv->tx_lock);
1212 timeout = wait_for_completion_timeout(&tx_wait,
1213 msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS));
1214 spin_lock_bh(&priv->tx_lock);
1215
1216 if (timeout) {
1217 WARN_ON(priv->pending_tx_pkts);
1218 if (retry) {
1219 printk(KERN_NOTICE "%s: tx rings drained\n",
1220 wiphy_name(hw->wiphy));
1221 }
1222 break;
1223 }
1224
1225 if (priv->pending_tx_pkts < oldcount) {
Lennert Buytenhek9a2303b2010-01-04 21:54:25 +01001226 printk(KERN_NOTICE "%s: waiting for tx rings "
1227 "to drain (%d -> %d pkts)\n",
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001228 wiphy_name(hw->wiphy), oldcount,
1229 priv->pending_tx_pkts);
1230 retry = 1;
1231 continue;
1232 }
1233
1234 priv->tx_wait = NULL;
1235
1236 printk(KERN_ERR "%s: tx rings stuck for %d ms\n",
1237 wiphy_name(hw->wiphy), MWL8K_TX_WAIT_TIMEOUT_MS);
1238 mwl8k_dump_tx_rings(hw);
1239
1240 rc = -ETIMEDOUT;
1241 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001242 spin_unlock_bh(&priv->tx_lock);
1243
Lennert Buytenhek7e1112d2009-11-30 18:13:04 +01001244 return rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001245}
1246
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02001247#define MWL8K_TXD_SUCCESS(status) \
1248 ((status) & (MWL8K_TXD_STATUS_OK | \
1249 MWL8K_TXD_STATUS_OK_RETRY | \
1250 MWL8K_TXD_STATUS_OK_MORE_RETRY))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001251
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001252static int
1253mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001254{
1255 struct mwl8k_priv *priv = hw->priv;
1256 struct mwl8k_tx_queue *txq = priv->txq + index;
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001257 int processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001258
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001259 processed = 0;
1260 while (txq->stats.len > 0 && limit--) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001261 int tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001262 struct mwl8k_tx_desc *tx_desc;
1263 unsigned long addr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001264 int size;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001265 struct sk_buff *skb;
1266 struct ieee80211_tx_info *info;
1267 u32 status;
1268
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001269 tx = txq->head;
1270 tx_desc = txq->txd + tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001271
1272 status = le32_to_cpu(tx_desc->status);
1273
1274 if (status & MWL8K_TXD_STATUS_FW_OWNED) {
1275 if (!force)
1276 break;
1277 tx_desc->status &=
1278 ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED);
1279 }
1280
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001281 txq->head = (tx + 1) % MWL8K_TX_DESCS;
1282 BUG_ON(txq->stats.len == 0);
1283 txq->stats.len--;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001284 priv->pending_tx_pkts--;
1285
1286 addr = le32_to_cpu(tx_desc->pkt_phys_addr);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001287 size = le16_to_cpu(tx_desc->pkt_len);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001288 skb = txq->skb[tx];
1289 txq->skb[tx] = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001290
1291 BUG_ON(skb == NULL);
1292 pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE);
1293
Lennert Buytenhek20f09c32009-11-30 18:12:08 +01001294 mwl8k_remove_dma_header(skb, tx_desc->qos_control);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001295
1296 /* Mark descriptor as unused */
1297 tx_desc->pkt_phys_addr = 0;
1298 tx_desc->pkt_len = 0;
1299
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001300 info = IEEE80211_SKB_CB(skb);
1301 ieee80211_tx_info_clear_status(info);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001302 if (MWL8K_TXD_SUCCESS(status))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001303 info->flags |= IEEE80211_TX_STAT_ACK;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001304
1305 ieee80211_tx_status_irqsafe(hw, skb);
1306
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001307 processed++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001308 }
1309
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001310 if (processed && priv->radio_on && !mutex_is_locked(&priv->fw_mutex))
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001311 ieee80211_wake_queue(hw, index);
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001312
1313 return processed;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001314}
1315
1316/* must be called only when the card's transmit is completely halted */
1317static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index)
1318{
1319 struct mwl8k_priv *priv = hw->priv;
1320 struct mwl8k_tx_queue *txq = priv->txq + index;
1321
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01001322 mwl8k_txq_reclaim(hw, index, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001323
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001324 kfree(txq->skb);
1325 txq->skb = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001326
1327 pci_free_consistent(priv->pdev,
1328 MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc),
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001329 txq->txd, txq->txd_dma);
1330 txq->txd = NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001331}
1332
1333static int
1334mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb)
1335{
1336 struct mwl8k_priv *priv = hw->priv;
1337 struct ieee80211_tx_info *tx_info;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001338 struct mwl8k_vif *mwl8k_vif;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001339 struct ieee80211_hdr *wh;
1340 struct mwl8k_tx_queue *txq;
1341 struct mwl8k_tx_desc *tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001342 dma_addr_t dma;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001343 u32 txstatus;
1344 u8 txdatarate;
1345 u16 qos;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001346
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001347 wh = (struct ieee80211_hdr *)skb->data;
1348 if (ieee80211_is_data_qos(wh->frame_control))
1349 qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh)));
1350 else
1351 qos = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001352
Lennert Buytenhek76266b22009-07-16 11:07:09 +02001353 mwl8k_add_dma_header(skb);
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001354 wh = &((struct mwl8k_dma_data *)skb->data)->wh;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001355
1356 tx_info = IEEE80211_SKB_CB(skb);
1357 mwl8k_vif = MWL8K_VIF(tx_info->control.vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001358
1359 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1360 u16 seqno = mwl8k_vif->seqno;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001361
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001362 wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
1363 wh->seq_ctrl |= cpu_to_le16(seqno << 4);
1364 mwl8k_vif->seqno = seqno++ % 4096;
1365 }
1366
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001367 /* Setup firmware control bit fields for each frame type. */
1368 txstatus = 0;
1369 txdatarate = 0;
1370 if (ieee80211_is_mgmt(wh->frame_control) ||
1371 ieee80211_is_ctl(wh->frame_control)) {
1372 txdatarate = 0;
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001373 qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001374 } else if (ieee80211_is_data(wh->frame_control)) {
1375 txdatarate = 1;
1376 if (is_multicast_ether_addr(wh->addr1))
1377 txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX;
1378
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001379 qos &= ~MWL8K_QOS_ACK_POLICY_MASK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001380 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001381 qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001382 else
Lennert Buytenheke0493a82009-11-30 18:32:00 +01001383 qos |= MWL8K_QOS_ACK_POLICY_NORMAL;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001384 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001385
1386 dma = pci_map_single(priv->pdev, skb->data,
1387 skb->len, PCI_DMA_TODEVICE);
1388
1389 if (pci_dma_mapping_error(priv->pdev, dma)) {
1390 printk(KERN_DEBUG "%s: failed to dma map skb, "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001391 "dropping TX frame.\n", wiphy_name(hw->wiphy));
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001392 dev_kfree_skb(skb);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001393 return NETDEV_TX_OK;
1394 }
1395
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001396 spin_lock_bh(&priv->tx_lock);
1397
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001398 txq = priv->txq + index;
1399
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001400 BUG_ON(txq->skb[txq->tail] != NULL);
1401 txq->skb[txq->tail] = skb;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001402
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001403 tx = txq->txd + txq->tail;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001404 tx->data_rate = txdatarate;
1405 tx->tx_priority = index;
1406 tx->qos_control = cpu_to_le16(qos);
1407 tx->pkt_phys_addr = cpu_to_le32(dma);
1408 tx->pkt_len = cpu_to_le16(skb->len);
1409 tx->rate_info = 0;
Lennert Buytenheka6804002010-01-04 21:55:42 +01001410 if (!priv->ap_fw && tx_info->control.sta != NULL)
1411 tx->peer_id = MWL8K_STA(tx_info->control.sta)->peer_id;
1412 else
1413 tx->peer_id = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001414 wmb();
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001415 tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
1416
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001417 txq->stats.count++;
1418 txq->stats.len++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001419 priv->pending_tx_pkts++;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001420
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001421 txq->tail++;
1422 if (txq->tail == MWL8K_TX_DESCS)
1423 txq->tail = 0;
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001424
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001425 if (txq->head == txq->tail)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001426 ieee80211_stop_queue(hw, index);
1427
Lennert Buytenhek23b33902009-07-17 05:21:04 +02001428 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001429
1430 spin_unlock_bh(&priv->tx_lock);
1431
1432 return NETDEV_TX_OK;
1433}
1434
1435
1436/*
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001437 * Firmware access.
1438 *
1439 * We have the following requirements for issuing firmware commands:
1440 * - Some commands require that the packet transmit path is idle when
1441 * the command is issued. (For simplicity, we'll just quiesce the
1442 * transmit path for every command.)
1443 * - There are certain sequences of commands that need to be issued to
1444 * the hardware sequentially, with no other intervening commands.
1445 *
1446 * This leads to an implementation of a "firmware lock" as a mutex that
1447 * can be taken recursively, and which is taken by both the low-level
1448 * command submission function (mwl8k_post_cmd) as well as any users of
1449 * that function that require issuing of an atomic sequence of commands,
1450 * and quiesces the transmit path whenever it's taken.
1451 */
1452static int mwl8k_fw_lock(struct ieee80211_hw *hw)
1453{
1454 struct mwl8k_priv *priv = hw->priv;
1455
1456 if (priv->fw_mutex_owner != current) {
1457 int rc;
1458
1459 mutex_lock(&priv->fw_mutex);
1460 ieee80211_stop_queues(hw);
1461
1462 rc = mwl8k_tx_wait_empty(hw);
1463 if (rc) {
1464 ieee80211_wake_queues(hw);
1465 mutex_unlock(&priv->fw_mutex);
1466
1467 return rc;
1468 }
1469
1470 priv->fw_mutex_owner = current;
1471 }
1472
1473 priv->fw_mutex_depth++;
1474
1475 return 0;
1476}
1477
1478static void mwl8k_fw_unlock(struct ieee80211_hw *hw)
1479{
1480 struct mwl8k_priv *priv = hw->priv;
1481
1482 if (!--priv->fw_mutex_depth) {
1483 ieee80211_wake_queues(hw);
1484 priv->fw_mutex_owner = NULL;
1485 mutex_unlock(&priv->fw_mutex);
1486 }
1487}
1488
1489
1490/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001491 * Command processing.
1492 */
1493
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01001494/* Timeout firmware commands after 10s */
1495#define MWL8K_CMD_TIMEOUT_MS 10000
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001496
1497static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd)
1498{
1499 DECLARE_COMPLETION_ONSTACK(cmd_wait);
1500 struct mwl8k_priv *priv = hw->priv;
1501 void __iomem *regs = priv->regs;
1502 dma_addr_t dma_addr;
1503 unsigned int dma_size;
1504 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001505 unsigned long timeout = 0;
1506 u8 buf[32];
1507
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001508 cmd->result = 0xffff;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001509 dma_size = le16_to_cpu(cmd->length);
1510 dma_addr = pci_map_single(priv->pdev, cmd, dma_size,
1511 PCI_DMA_BIDIRECTIONAL);
1512 if (pci_dma_mapping_error(priv->pdev, dma_addr))
1513 return -ENOMEM;
1514
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001515 rc = mwl8k_fw_lock(hw);
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02001516 if (rc) {
1517 pci_unmap_single(priv->pdev, dma_addr, dma_size,
1518 PCI_DMA_BIDIRECTIONAL);
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001519 return rc;
Lennert Buytenhek39a1e422009-08-24 15:42:46 +02001520 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001521
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001522 priv->hostcmd_wait = &cmd_wait;
1523 iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR);
1524 iowrite32(MWL8K_H2A_INT_DOORBELL,
1525 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
1526 iowrite32(MWL8K_H2A_INT_DUMMY,
1527 regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001528
1529 timeout = wait_for_completion_timeout(&cmd_wait,
1530 msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS));
1531
Lennert Buytenhek618952a2009-08-18 03:18:01 +02001532 priv->hostcmd_wait = NULL;
1533
1534 mwl8k_fw_unlock(hw);
1535
Lennert Buytenhek37055bd2009-08-03 21:58:47 +02001536 pci_unmap_single(priv->pdev, dma_addr, dma_size,
1537 PCI_DMA_BIDIRECTIONAL);
1538
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001539 if (!timeout) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001540 printk(KERN_ERR "%s: Command %s timeout after %u ms\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001541 wiphy_name(hw->wiphy),
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001542 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
1543 MWL8K_CMD_TIMEOUT_MS);
1544 rc = -ETIMEDOUT;
1545 } else {
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01001546 int ms;
1547
1548 ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout);
1549
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001550 rc = cmd->result ? -EINVAL : 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001551 if (rc)
1552 printk(KERN_ERR "%s: Command %s error 0x%x\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02001553 wiphy_name(hw->wiphy),
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001554 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
Lennert Buytenhek76c962a2009-08-24 15:42:56 +02001555 le16_to_cpu(cmd->result));
Lennert Buytenhek0c9cc642009-11-30 18:12:49 +01001556 else if (ms > 2000)
1557 printk(KERN_NOTICE "%s: Command %s took %d ms\n",
1558 wiphy_name(hw->wiphy),
1559 mwl8k_cmd_name(cmd->code, buf, sizeof(buf)),
1560 ms);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001561 }
1562
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001563 return rc;
1564}
1565
1566/*
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02001567 * CMD_GET_HW_SPEC (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001568 */
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02001569struct mwl8k_cmd_get_hw_spec_sta {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001570 struct mwl8k_cmd_pkt header;
1571 __u8 hw_rev;
1572 __u8 host_interface;
1573 __le16 num_mcaddrs;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02001574 __u8 perm_addr[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001575 __le16 region_code;
1576 __le32 fw_rev;
1577 __le32 ps_cookie;
1578 __le32 caps;
1579 __u8 mcs_bitmap[16];
1580 __le32 rx_queue_ptr;
1581 __le32 num_tx_queues;
1582 __le32 tx_queue_ptrs[MWL8K_TX_QUEUES];
1583 __le32 caps2;
1584 __le32 num_tx_desc_per_queue;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001585 __le32 total_rxd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001586} __attribute__((packed));
1587
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001588#define MWL8K_CAP_MAX_AMSDU 0x20000000
1589#define MWL8K_CAP_GREENFIELD 0x08000000
1590#define MWL8K_CAP_AMPDU 0x04000000
1591#define MWL8K_CAP_RX_STBC 0x01000000
1592#define MWL8K_CAP_TX_STBC 0x00800000
1593#define MWL8K_CAP_SHORTGI_40MHZ 0x00400000
1594#define MWL8K_CAP_SHORTGI_20MHZ 0x00200000
1595#define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000
1596#define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000
1597#define MWL8K_CAP_DELAY_BA 0x00003000
1598#define MWL8K_CAP_MIMO 0x00000200
1599#define MWL8K_CAP_40MHZ 0x00000100
1600
1601static void mwl8k_set_ht_caps(struct ieee80211_hw *hw, u32 cap)
1602{
1603 struct mwl8k_priv *priv = hw->priv;
1604 int rx_streams;
1605 int tx_streams;
1606
1607 priv->band.ht_cap.ht_supported = 1;
1608
1609 if (cap & MWL8K_CAP_MAX_AMSDU)
1610 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
1611 if (cap & MWL8K_CAP_GREENFIELD)
1612 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD;
1613 if (cap & MWL8K_CAP_AMPDU) {
1614 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
1615 priv->band.ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
1616 priv->band.ht_cap.ampdu_density =
1617 IEEE80211_HT_MPDU_DENSITY_NONE;
1618 }
1619 if (cap & MWL8K_CAP_RX_STBC)
1620 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC;
1621 if (cap & MWL8K_CAP_TX_STBC)
1622 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
1623 if (cap & MWL8K_CAP_SHORTGI_40MHZ)
1624 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
1625 if (cap & MWL8K_CAP_SHORTGI_20MHZ)
1626 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
1627 if (cap & MWL8K_CAP_DELAY_BA)
1628 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA;
1629 if (cap & MWL8K_CAP_40MHZ)
1630 priv->band.ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
1631
1632 rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK);
1633 tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK);
1634
1635 priv->band.ht_cap.mcs.rx_mask[0] = 0xff;
1636 if (rx_streams >= 2)
1637 priv->band.ht_cap.mcs.rx_mask[1] = 0xff;
1638 if (rx_streams >= 3)
1639 priv->band.ht_cap.mcs.rx_mask[2] = 0xff;
1640 priv->band.ht_cap.mcs.rx_mask[4] = 0x01;
1641 priv->band.ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
1642
1643 if (rx_streams != tx_streams) {
1644 priv->band.ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
1645 priv->band.ht_cap.mcs.tx_params |= (tx_streams - 1) <<
1646 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
1647 }
1648}
1649
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02001650static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001651{
1652 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek04b147b2009-10-22 20:21:05 +02001653 struct mwl8k_cmd_get_hw_spec_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001654 int rc;
1655 int i;
1656
1657 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1658 if (cmd == NULL)
1659 return -ENOMEM;
1660
1661 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
1662 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1663
1664 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
1665 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001666 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02001667 cmd->num_tx_queues = cpu_to_le32(MWL8K_TX_QUEUES);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001668 for (i = 0; i < MWL8K_TX_QUEUES; i++)
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001669 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02001670 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02001671 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001672
1673 rc = mwl8k_post_cmd(hw, &cmd->header);
1674
1675 if (!rc) {
1676 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
1677 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
Lennert Buytenhek4ff64322009-08-03 21:58:39 +02001678 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001679 priv->hw_rev = cmd->hw_rev;
Lennert Buytenhek341c9792010-01-04 21:58:40 +01001680 if (cmd->caps & cpu_to_le32(MWL8K_CAP_MIMO))
1681 mwl8k_set_ht_caps(hw, le32_to_cpu(cmd->caps));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001682 }
1683
1684 kfree(cmd);
1685 return rc;
1686}
1687
1688/*
Lennert Buytenhek42fba212009-10-22 20:21:30 +02001689 * CMD_GET_HW_SPEC (AP version).
1690 */
1691struct mwl8k_cmd_get_hw_spec_ap {
1692 struct mwl8k_cmd_pkt header;
1693 __u8 hw_rev;
1694 __u8 host_interface;
1695 __le16 num_wcb;
1696 __le16 num_mcaddrs;
1697 __u8 perm_addr[ETH_ALEN];
1698 __le16 region_code;
1699 __le16 num_antenna;
1700 __le32 fw_rev;
1701 __le32 wcbbase0;
1702 __le32 rxwrptr;
1703 __le32 rxrdptr;
1704 __le32 ps_cookie;
1705 __le32 wcbbase1;
1706 __le32 wcbbase2;
1707 __le32 wcbbase3;
1708} __attribute__((packed));
1709
1710static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw)
1711{
1712 struct mwl8k_priv *priv = hw->priv;
1713 struct mwl8k_cmd_get_hw_spec_ap *cmd;
1714 int rc;
1715
1716 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1717 if (cmd == NULL)
1718 return -ENOMEM;
1719
1720 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC);
1721 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1722
1723 memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr));
1724 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
1725
1726 rc = mwl8k_post_cmd(hw, &cmd->header);
1727
1728 if (!rc) {
1729 int off;
1730
1731 SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr);
1732 priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs);
1733 priv->fw_rev = le32_to_cpu(cmd->fw_rev);
1734 priv->hw_rev = cmd->hw_rev;
1735
1736 off = le32_to_cpu(cmd->wcbbase0) & 0xffff;
1737 iowrite32(cpu_to_le32(priv->txq[0].txd_dma), priv->sram + off);
1738
1739 off = le32_to_cpu(cmd->rxwrptr) & 0xffff;
1740 iowrite32(cpu_to_le32(priv->rxq[0].rxd_dma), priv->sram + off);
1741
1742 off = le32_to_cpu(cmd->rxrdptr) & 0xffff;
1743 iowrite32(cpu_to_le32(priv->rxq[0].rxd_dma), priv->sram + off);
1744
1745 off = le32_to_cpu(cmd->wcbbase1) & 0xffff;
1746 iowrite32(cpu_to_le32(priv->txq[1].txd_dma), priv->sram + off);
1747
1748 off = le32_to_cpu(cmd->wcbbase2) & 0xffff;
1749 iowrite32(cpu_to_le32(priv->txq[2].txd_dma), priv->sram + off);
1750
1751 off = le32_to_cpu(cmd->wcbbase3) & 0xffff;
1752 iowrite32(cpu_to_le32(priv->txq[3].txd_dma), priv->sram + off);
1753 }
1754
1755 kfree(cmd);
1756 return rc;
1757}
1758
1759/*
1760 * CMD_SET_HW_SPEC.
1761 */
1762struct mwl8k_cmd_set_hw_spec {
1763 struct mwl8k_cmd_pkt header;
1764 __u8 hw_rev;
1765 __u8 host_interface;
1766 __le16 num_mcaddrs;
1767 __u8 perm_addr[ETH_ALEN];
1768 __le16 region_code;
1769 __le32 fw_rev;
1770 __le32 ps_cookie;
1771 __le32 caps;
1772 __le32 rx_queue_ptr;
1773 __le32 num_tx_queues;
1774 __le32 tx_queue_ptrs[MWL8K_TX_QUEUES];
1775 __le32 flags;
1776 __le32 num_tx_desc_per_queue;
1777 __le32 total_rxd;
1778} __attribute__((packed));
1779
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01001780#define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080
1781#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP 0x00000020
1782#define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON 0x00000010
Lennert Buytenhek42fba212009-10-22 20:21:30 +02001783
1784static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw)
1785{
1786 struct mwl8k_priv *priv = hw->priv;
1787 struct mwl8k_cmd_set_hw_spec *cmd;
1788 int rc;
1789 int i;
1790
1791 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1792 if (cmd == NULL)
1793 return -ENOMEM;
1794
1795 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC);
1796 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1797
1798 cmd->ps_cookie = cpu_to_le32(priv->cookie_dma);
1799 cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma);
1800 cmd->num_tx_queues = cpu_to_le32(MWL8K_TX_QUEUES);
1801 for (i = 0; i < MWL8K_TX_QUEUES; i++)
1802 cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01001803 cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT |
1804 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP |
1805 MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON);
Lennert Buytenhek42fba212009-10-22 20:21:30 +02001806 cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS);
1807 cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS);
1808
1809 rc = mwl8k_post_cmd(hw, &cmd->header);
1810 kfree(cmd);
1811
1812 return rc;
1813}
1814
1815/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001816 * CMD_MAC_MULTICAST_ADR.
1817 */
1818struct mwl8k_cmd_mac_multicast_adr {
1819 struct mwl8k_cmd_pkt header;
1820 __le16 action;
1821 __le16 numaddr;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001822 __u8 addr[0][ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001823};
1824
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001825#define MWL8K_ENABLE_RX_DIRECTED 0x0001
1826#define MWL8K_ENABLE_RX_MULTICAST 0x0002
1827#define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004
1828#define MWL8K_ENABLE_RX_BROADCAST 0x0008
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001829
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001830static struct mwl8k_cmd_pkt *
Lennert Buytenhek447ced02009-10-22 20:19:50 +02001831__mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti,
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001832 int mc_count, struct dev_addr_list *mclist)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001833{
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001834 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001835 struct mwl8k_cmd_mac_multicast_adr *cmd;
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001836 int size;
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001837
Lennert Buytenhek447ced02009-10-22 20:19:50 +02001838 if (allmulti || mc_count > priv->num_mcaddrs) {
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001839 allmulti = 1;
1840 mc_count = 0;
1841 }
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001842
1843 size = sizeof(*cmd) + mc_count * ETH_ALEN;
1844
1845 cmd = kzalloc(size, GFP_ATOMIC);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001846 if (cmd == NULL)
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001847 return NULL;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001848
1849 cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR);
1850 cmd->header.length = cpu_to_le16(size);
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001851 cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED |
1852 MWL8K_ENABLE_RX_BROADCAST);
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02001853
Lennert Buytenhekd5e30842009-10-22 20:19:41 +02001854 if (allmulti) {
1855 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST);
1856 } else if (mc_count) {
1857 int i;
1858
1859 cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST);
1860 cmd->numaddr = cpu_to_le16(mc_count);
1861 for (i = 0; i < mc_count && mclist; i++) {
1862 if (mclist->da_addrlen != ETH_ALEN) {
1863 kfree(cmd);
1864 return NULL;
1865 }
1866 memcpy(cmd->addr[i], mclist->da_addr, ETH_ALEN);
1867 mclist = mclist->next;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001868 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001869 }
1870
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02001871 return &cmd->header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001872}
1873
1874/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001875 * CMD_GET_STAT.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001876 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001877struct mwl8k_cmd_get_stat {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001878 struct mwl8k_cmd_pkt header;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001879 __le32 stats[64];
1880} __attribute__((packed));
1881
1882#define MWL8K_STAT_ACK_FAILURE 9
1883#define MWL8K_STAT_RTS_FAILURE 12
1884#define MWL8K_STAT_FCS_ERROR 24
1885#define MWL8K_STAT_RTS_SUCCESS 11
1886
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001887static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw,
1888 struct ieee80211_low_level_stats *stats)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001889{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001890 struct mwl8k_cmd_get_stat *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001891 int rc;
1892
1893 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1894 if (cmd == NULL)
1895 return -ENOMEM;
1896
1897 cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT);
1898 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001899
1900 rc = mwl8k_post_cmd(hw, &cmd->header);
1901 if (!rc) {
1902 stats->dot11ACKFailureCount =
1903 le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]);
1904 stats->dot11RTSFailureCount =
1905 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]);
1906 stats->dot11FCSErrorCount =
1907 le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]);
1908 stats->dot11RTSSuccessCount =
1909 le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]);
1910 }
1911 kfree(cmd);
1912
1913 return rc;
1914}
1915
1916/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001917 * CMD_RADIO_CONTROL.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001918 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001919struct mwl8k_cmd_radio_control {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001920 struct mwl8k_cmd_pkt header;
1921 __le16 action;
1922 __le16 control;
1923 __le16 radio_on;
1924} __attribute__((packed));
1925
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001926static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001927mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001928{
1929 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001930 struct mwl8k_cmd_radio_control *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001931 int rc;
1932
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001933 if (enable == priv->radio_on && !force)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001934 return 0;
1935
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001936 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1937 if (cmd == NULL)
1938 return -ENOMEM;
1939
1940 cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL);
1941 cmd->header.length = cpu_to_le16(sizeof(*cmd));
1942 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02001943 cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001944 cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000);
1945
1946 rc = mwl8k_post_cmd(hw, &cmd->header);
1947 kfree(cmd);
1948
1949 if (!rc)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001950 priv->radio_on = enable;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001951
1952 return rc;
1953}
1954
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001955static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001956{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001957 return mwl8k_cmd_radio_control(hw, 0, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001958}
1959
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001960static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw)
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001961{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001962 return mwl8k_cmd_radio_control(hw, 1, 0);
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02001963}
1964
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001965static int
1966mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble)
1967{
Lennert Buytenhek99200a992009-11-30 18:31:40 +01001968 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001969
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02001970 priv->radio_short_preamble = short_preamble;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001971
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001972 return mwl8k_cmd_radio_control(hw, 1, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001973}
1974
1975/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001976 * CMD_RF_TX_POWER.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001977 */
1978#define MWL8K_TX_POWER_LEVEL_TOTAL 8
1979
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001980struct mwl8k_cmd_rf_tx_power {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001981 struct mwl8k_cmd_pkt header;
1982 __le16 action;
1983 __le16 support_level;
1984 __le16 current_level;
1985 __le16 reserved;
1986 __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL];
1987} __attribute__((packed));
1988
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001989static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw *hw, int dBm)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001990{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01001991 struct mwl8k_cmd_rf_tx_power *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01001992 int rc;
1993
1994 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1995 if (cmd == NULL)
1996 return -ENOMEM;
1997
1998 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER);
1999 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2000 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2001 cmd->support_level = cpu_to_le16(dBm);
2002
2003 rc = mwl8k_post_cmd(hw, &cmd->header);
2004 kfree(cmd);
2005
2006 return rc;
2007}
2008
2009/*
Lennert Buytenhek08b06342009-10-22 20:21:33 +02002010 * CMD_RF_ANTENNA.
2011 */
2012struct mwl8k_cmd_rf_antenna {
2013 struct mwl8k_cmd_pkt header;
2014 __le16 antenna;
2015 __le16 mode;
2016} __attribute__((packed));
2017
2018#define MWL8K_RF_ANTENNA_RX 1
2019#define MWL8K_RF_ANTENNA_TX 2
2020
2021static int
2022mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask)
2023{
2024 struct mwl8k_cmd_rf_antenna *cmd;
2025 int rc;
2026
2027 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2028 if (cmd == NULL)
2029 return -ENOMEM;
2030
2031 cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA);
2032 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2033 cmd->antenna = cpu_to_le16(antenna);
2034 cmd->mode = cpu_to_le16(mask);
2035
2036 rc = mwl8k_post_cmd(hw, &cmd->header);
2037 kfree(cmd);
2038
2039 return rc;
2040}
2041
2042/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002043 * CMD_SET_BEACON.
2044 */
2045struct mwl8k_cmd_set_beacon {
2046 struct mwl8k_cmd_pkt header;
2047 __le16 beacon_len;
2048 __u8 beacon[0];
2049};
2050
2051static int mwl8k_cmd_set_beacon(struct ieee80211_hw *hw, u8 *beacon, int len)
2052{
2053 struct mwl8k_cmd_set_beacon *cmd;
2054 int rc;
2055
2056 cmd = kzalloc(sizeof(*cmd) + len, GFP_KERNEL);
2057 if (cmd == NULL)
2058 return -ENOMEM;
2059
2060 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_BEACON);
2061 cmd->header.length = cpu_to_le16(sizeof(*cmd) + len);
2062 cmd->beacon_len = cpu_to_le16(len);
2063 memcpy(cmd->beacon, beacon, len);
2064
2065 rc = mwl8k_post_cmd(hw, &cmd->header);
2066 kfree(cmd);
2067
2068 return rc;
2069}
2070
2071/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002072 * CMD_SET_PRE_SCAN.
2073 */
2074struct mwl8k_cmd_set_pre_scan {
2075 struct mwl8k_cmd_pkt header;
2076} __attribute__((packed));
2077
2078static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw)
2079{
2080 struct mwl8k_cmd_set_pre_scan *cmd;
2081 int rc;
2082
2083 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2084 if (cmd == NULL)
2085 return -ENOMEM;
2086
2087 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN);
2088 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2089
2090 rc = mwl8k_post_cmd(hw, &cmd->header);
2091 kfree(cmd);
2092
2093 return rc;
2094}
2095
2096/*
2097 * CMD_SET_POST_SCAN.
2098 */
2099struct mwl8k_cmd_set_post_scan {
2100 struct mwl8k_cmd_pkt header;
2101 __le32 isibss;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002102 __u8 bssid[ETH_ALEN];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002103} __attribute__((packed));
2104
2105static int
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002106mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002107{
2108 struct mwl8k_cmd_set_post_scan *cmd;
2109 int rc;
2110
2111 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2112 if (cmd == NULL)
2113 return -ENOMEM;
2114
2115 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN);
2116 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2117 cmd->isibss = 0;
Lennert Buytenhekd89173f2009-07-16 09:54:27 +02002118 memcpy(cmd->bssid, mac, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002119
2120 rc = mwl8k_post_cmd(hw, &cmd->header);
2121 kfree(cmd);
2122
2123 return rc;
2124}
2125
2126/*
2127 * CMD_SET_RF_CHANNEL.
2128 */
2129struct mwl8k_cmd_set_rf_channel {
2130 struct mwl8k_cmd_pkt header;
2131 __le16 action;
2132 __u8 current_channel;
2133 __le32 channel_flags;
2134} __attribute__((packed));
2135
2136static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw,
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002137 struct ieee80211_conf *conf)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002138{
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002139 struct ieee80211_channel *channel = conf->channel;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002140 struct mwl8k_cmd_set_rf_channel *cmd;
2141 int rc;
2142
2143 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2144 if (cmd == NULL)
2145 return -ENOMEM;
2146
2147 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL);
2148 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2149 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2150 cmd->current_channel = channel->hw_value;
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002151
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002152 if (channel->band == IEEE80211_BAND_2GHZ)
Lennert Buytenhek610677d2010-01-04 21:56:46 +01002153 cmd->channel_flags |= cpu_to_le32(0x00000001);
2154
2155 if (conf->channel_type == NL80211_CHAN_NO_HT ||
2156 conf->channel_type == NL80211_CHAN_HT20)
2157 cmd->channel_flags |= cpu_to_le32(0x00000080);
2158 else if (conf->channel_type == NL80211_CHAN_HT40MINUS)
2159 cmd->channel_flags |= cpu_to_le32(0x000001900);
2160 else if (conf->channel_type == NL80211_CHAN_HT40PLUS)
2161 cmd->channel_flags |= cpu_to_le32(0x000000900);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002162
2163 rc = mwl8k_post_cmd(hw, &cmd->header);
2164 kfree(cmd);
2165
2166 return rc;
2167}
2168
2169/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002170 * CMD_SET_AID.
2171 */
2172#define MWL8K_FRAME_PROT_DISABLED 0x00
2173#define MWL8K_FRAME_PROT_11G 0x07
2174#define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02
2175#define MWL8K_FRAME_PROT_11N_HT_ALL 0x06
2176
2177struct mwl8k_cmd_update_set_aid {
2178 struct mwl8k_cmd_pkt header;
2179 __le16 aid;
2180
2181 /* AP's MAC address (BSSID) */
2182 __u8 bssid[ETH_ALEN];
2183 __le16 protection_mode;
2184 __u8 supp_rates[14];
2185} __attribute__((packed));
2186
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002187static void legacy_rate_mask_to_array(u8 *rates, u32 mask)
2188{
2189 int i;
2190 int j;
2191
2192 /*
2193 * Clear nonstandard rates 4 and 13.
2194 */
2195 mask &= 0x1fef;
2196
2197 for (i = 0, j = 0; i < 14; i++) {
2198 if (mask & (1 << i))
2199 rates[j++] = mwl8k_rates[i].hw_value;
2200 }
2201}
2202
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002203static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002204mwl8k_cmd_set_aid(struct ieee80211_hw *hw,
2205 struct ieee80211_vif *vif, u32 legacy_rate_mask)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002206{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002207 struct mwl8k_cmd_update_set_aid *cmd;
2208 u16 prot_mode;
2209 int rc;
2210
2211 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2212 if (cmd == NULL)
2213 return -ENOMEM;
2214
2215 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID);
2216 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002217 cmd->aid = cpu_to_le16(vif->bss_conf.aid);
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01002218 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002219
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002220 if (vif->bss_conf.use_cts_prot) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002221 prot_mode = MWL8K_FRAME_PROT_11G;
2222 } else {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01002223 switch (vif->bss_conf.ht_operation_mode &
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002224 IEEE80211_HT_OP_MODE_PROTECTION) {
2225 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
2226 prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY;
2227 break;
2228 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
2229 prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL;
2230 break;
2231 default:
2232 prot_mode = MWL8K_FRAME_PROT_DISABLED;
2233 break;
2234 }
2235 }
2236 cmd->protection_mode = cpu_to_le16(prot_mode);
2237
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002238 legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002239
2240 rc = mwl8k_post_cmd(hw, &cmd->header);
2241 kfree(cmd);
2242
2243 return rc;
2244}
2245
2246/*
2247 * CMD_SET_RATE.
2248 */
2249struct mwl8k_cmd_set_rate {
2250 struct mwl8k_cmd_pkt header;
2251 __u8 legacy_rates[14];
2252
2253 /* Bitmap for supported MCS codes. */
2254 __u8 mcs_set[16];
2255 __u8 reserved[16];
2256} __attribute__((packed));
2257
2258static int
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002259mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01002260 u32 legacy_rate_mask, u8 *mcs_rates)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002261{
2262 struct mwl8k_cmd_set_rate *cmd;
2263 int rc;
2264
2265 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2266 if (cmd == NULL)
2267 return -ENOMEM;
2268
2269 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE);
2270 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002271 legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01002272 memcpy(cmd->mcs_set, mcs_rates, 16);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002273
2274 rc = mwl8k_post_cmd(hw, &cmd->header);
2275 kfree(cmd);
2276
2277 return rc;
2278}
2279
2280/*
2281 * CMD_FINALIZE_JOIN.
2282 */
2283#define MWL8K_FJ_BEACON_MAXLEN 128
2284
2285struct mwl8k_cmd_finalize_join {
2286 struct mwl8k_cmd_pkt header;
2287 __le32 sleep_interval; /* Number of beacon periods to sleep */
2288 __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN];
2289} __attribute__((packed));
2290
2291static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame,
2292 int framelen, int dtim)
2293{
2294 struct mwl8k_cmd_finalize_join *cmd;
2295 struct ieee80211_mgmt *payload = frame;
2296 int payload_len;
2297 int rc;
2298
2299 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2300 if (cmd == NULL)
2301 return -ENOMEM;
2302
2303 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN);
2304 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2305 cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
2306
2307 payload_len = framelen - ieee80211_hdrlen(payload->frame_control);
2308 if (payload_len < 0)
2309 payload_len = 0;
2310 else if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
2311 payload_len = MWL8K_FJ_BEACON_MAXLEN;
2312
2313 memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
2314
2315 rc = mwl8k_post_cmd(hw, &cmd->header);
2316 kfree(cmd);
2317
2318 return rc;
2319}
2320
2321/*
2322 * CMD_SET_RTS_THRESHOLD.
2323 */
2324struct mwl8k_cmd_set_rts_threshold {
2325 struct mwl8k_cmd_pkt header;
2326 __le16 action;
2327 __le16 threshold;
2328} __attribute__((packed));
2329
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01002330static int
2331mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw, int rts_thresh)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002332{
2333 struct mwl8k_cmd_set_rts_threshold *cmd;
2334 int rc;
2335
2336 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2337 if (cmd == NULL)
2338 return -ENOMEM;
2339
2340 cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD);
2341 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01002342 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2343 cmd->threshold = cpu_to_le16(rts_thresh);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002344
2345 rc = mwl8k_post_cmd(hw, &cmd->header);
2346 kfree(cmd);
2347
2348 return rc;
2349}
2350
2351/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002352 * CMD_SET_SLOT.
2353 */
2354struct mwl8k_cmd_set_slot {
2355 struct mwl8k_cmd_pkt header;
2356 __le16 action;
2357 __u8 short_slot;
2358} __attribute__((packed));
2359
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02002360static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002361{
2362 struct mwl8k_cmd_set_slot *cmd;
2363 int rc;
2364
2365 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2366 if (cmd == NULL)
2367 return -ENOMEM;
2368
2369 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT);
2370 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2371 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
Lennert Buytenhek5539bb52009-07-16 16:06:53 +02002372 cmd->short_slot = short_slot_time;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002373
2374 rc = mwl8k_post_cmd(hw, &cmd->header);
2375 kfree(cmd);
2376
2377 return rc;
2378}
2379
2380/*
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002381 * CMD_SET_EDCA_PARAMS.
2382 */
2383struct mwl8k_cmd_set_edca_params {
2384 struct mwl8k_cmd_pkt header;
2385
2386 /* See MWL8K_SET_EDCA_XXX below */
2387 __le16 action;
2388
2389 /* TX opportunity in units of 32 us */
2390 __le16 txop;
2391
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002392 union {
2393 struct {
2394 /* Log exponent of max contention period: 0...15 */
2395 __le32 log_cw_max;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002396
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002397 /* Log exponent of min contention period: 0...15 */
2398 __le32 log_cw_min;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002399
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002400 /* Adaptive interframe spacing in units of 32us */
2401 __u8 aifs;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002402
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002403 /* TX queue to configure */
2404 __u8 txq;
2405 } ap;
2406 struct {
2407 /* Log exponent of max contention period: 0...15 */
2408 __u8 log_cw_max;
2409
2410 /* Log exponent of min contention period: 0...15 */
2411 __u8 log_cw_min;
2412
2413 /* Adaptive interframe spacing in units of 32us */
2414 __u8 aifs;
2415
2416 /* TX queue to configure */
2417 __u8 txq;
2418 } sta;
2419 };
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002420} __attribute__((packed));
2421
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002422#define MWL8K_SET_EDCA_CW 0x01
2423#define MWL8K_SET_EDCA_TXOP 0x02
2424#define MWL8K_SET_EDCA_AIFS 0x04
2425
2426#define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \
2427 MWL8K_SET_EDCA_TXOP | \
2428 MWL8K_SET_EDCA_AIFS)
2429
2430static int
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002431mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
2432 __u16 cw_min, __u16 cw_max,
2433 __u8 aifs, __u16 txop)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002434{
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002435 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002436 struct mwl8k_cmd_set_edca_params *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002437 int rc;
2438
2439 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2440 if (cmd == NULL)
2441 return -ENOMEM;
2442
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002443 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS);
2444 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002445 cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL);
2446 cmd->txop = cpu_to_le16(txop);
Lennert Buytenhek2e484c82009-10-22 20:21:43 +02002447 if (priv->ap_fw) {
2448 cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1));
2449 cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1));
2450 cmd->ap.aifs = aifs;
2451 cmd->ap.txq = qnum;
2452 } else {
2453 cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1);
2454 cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1);
2455 cmd->sta.aifs = aifs;
2456 cmd->sta.txq = qnum;
2457 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002458
2459 rc = mwl8k_post_cmd(hw, &cmd->header);
2460 kfree(cmd);
2461
2462 return rc;
2463}
2464
2465/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002466 * CMD_SET_WMM_MODE.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002467 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002468struct mwl8k_cmd_set_wmm_mode {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002469 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002470 __le16 action;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002471} __attribute__((packed));
2472
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002473static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw *hw, bool enable)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002474{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002475 struct mwl8k_priv *priv = hw->priv;
2476 struct mwl8k_cmd_set_wmm_mode *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002477 int rc;
2478
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002479 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2480 if (cmd == NULL)
2481 return -ENOMEM;
2482
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002483 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002484 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002485 cmd->action = cpu_to_le16(!!enable);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002486
2487 rc = mwl8k_post_cmd(hw, &cmd->header);
2488 kfree(cmd);
Lennert Buytenhek16cec432009-11-30 18:14:23 +01002489
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002490 if (!rc)
2491 priv->wmm_enabled = enable;
2492
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002493 return rc;
2494}
2495
2496/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002497 * CMD_MIMO_CONFIG.
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002498 */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002499struct mwl8k_cmd_mimo_config {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002500 struct mwl8k_cmd_pkt header;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002501 __le32 action;
2502 __u8 rx_antenna_map;
2503 __u8 tx_antenna_map;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002504} __attribute__((packed));
2505
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002506static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002507{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002508 struct mwl8k_cmd_mimo_config *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002509 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002510
2511 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2512 if (cmd == NULL)
2513 return -ENOMEM;
2514
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002515 cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002516 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002517 cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET);
2518 cmd->rx_antenna_map = rx;
2519 cmd->tx_antenna_map = tx;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002520
2521 rc = mwl8k_post_cmd(hw, &cmd->header);
2522 kfree(cmd);
2523
2524 return rc;
2525}
2526
2527/*
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01002528 * CMD_USE_FIXED_RATE (STA version).
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002529 */
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01002530struct mwl8k_cmd_use_fixed_rate_sta {
2531 struct mwl8k_cmd_pkt header;
2532 __le32 action;
2533 __le32 allow_rate_drop;
2534 __le32 num_rates;
2535 struct {
2536 __le32 is_ht_rate;
2537 __le32 enable_retry;
2538 __le32 rate;
2539 __le32 retry_count;
2540 } rate_entry[8];
2541 __le32 rate_type;
2542 __le32 reserved1;
2543 __le32 reserved2;
2544} __attribute__((packed));
2545
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002546#define MWL8K_USE_AUTO_RATE 0x0002
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01002547#define MWL8K_UCAST_RATE 0
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002548
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01002549static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw *hw)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002550{
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01002551 struct mwl8k_cmd_use_fixed_rate_sta *cmd;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002552 int rc;
2553
2554 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2555 if (cmd == NULL)
2556 return -ENOMEM;
2557
2558 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
2559 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01002560 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
2561 cmd->rate_type = cpu_to_le32(MWL8K_UCAST_RATE);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002562
2563 rc = mwl8k_post_cmd(hw, &cmd->header);
2564 kfree(cmd);
2565
2566 return rc;
2567}
2568
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002569/*
Lennert Buytenhek088aab82010-01-08 18:30:36 +01002570 * CMD_USE_FIXED_RATE (AP version).
2571 */
2572struct mwl8k_cmd_use_fixed_rate_ap {
2573 struct mwl8k_cmd_pkt header;
2574 __le32 action;
2575 __le32 allow_rate_drop;
2576 __le32 num_rates;
2577 struct mwl8k_rate_entry_ap {
2578 __le32 is_ht_rate;
2579 __le32 enable_retry;
2580 __le32 rate;
2581 __le32 retry_count;
2582 } rate_entry[4];
2583 u8 multicast_rate;
2584 u8 multicast_rate_type;
2585 u8 management_rate;
2586} __attribute__((packed));
2587
2588static int
2589mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw *hw, int mcast, int mgmt)
2590{
2591 struct mwl8k_cmd_use_fixed_rate_ap *cmd;
2592 int rc;
2593
2594 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2595 if (cmd == NULL)
2596 return -ENOMEM;
2597
2598 cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE);
2599 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2600 cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE);
2601 cmd->multicast_rate = mcast;
2602 cmd->management_rate = mgmt;
2603
2604 rc = mwl8k_post_cmd(hw, &cmd->header);
2605 kfree(cmd);
2606
2607 return rc;
2608}
2609
2610/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002611 * CMD_ENABLE_SNIFFER.
2612 */
2613struct mwl8k_cmd_enable_sniffer {
2614 struct mwl8k_cmd_pkt header;
2615 __le32 action;
2616} __attribute__((packed));
2617
2618static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable)
2619{
2620 struct mwl8k_cmd_enable_sniffer *cmd;
2621 int rc;
2622
2623 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2624 if (cmd == NULL)
2625 return -ENOMEM;
2626
2627 cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER);
2628 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2629 cmd->action = cpu_to_le32(!!enable);
2630
2631 rc = mwl8k_post_cmd(hw, &cmd->header);
2632 kfree(cmd);
2633
2634 return rc;
2635}
2636
2637/*
2638 * CMD_SET_MAC_ADDR.
2639 */
2640struct mwl8k_cmd_set_mac_addr {
2641 struct mwl8k_cmd_pkt header;
2642 union {
2643 struct {
2644 __le16 mac_type;
2645 __u8 mac_addr[ETH_ALEN];
2646 } mbss;
2647 __u8 mac_addr[ETH_ALEN];
2648 };
2649} __attribute__((packed));
2650
Lennert Buytenheka9e00b12010-01-08 18:31:30 +01002651#define MWL8K_MAC_TYPE_PRIMARY_CLIENT 0
2652#define MWL8K_MAC_TYPE_PRIMARY_AP 2
2653
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002654static int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw, u8 *mac)
2655{
2656 struct mwl8k_priv *priv = hw->priv;
2657 struct mwl8k_cmd_set_mac_addr *cmd;
2658 int rc;
2659
2660 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2661 if (cmd == NULL)
2662 return -ENOMEM;
2663
2664 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR);
2665 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2666 if (priv->ap_fw) {
Lennert Buytenheka9e00b12010-01-08 18:31:30 +01002667 cmd->mbss.mac_type = cpu_to_le16(MWL8K_MAC_TYPE_PRIMARY_AP);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002668 memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN);
2669 } else {
2670 memcpy(cmd->mac_addr, mac, ETH_ALEN);
2671 }
2672
2673 rc = mwl8k_post_cmd(hw, &cmd->header);
2674 kfree(cmd);
2675
2676 return rc;
2677}
2678
2679/*
2680 * CMD_SET_RATEADAPT_MODE.
2681 */
2682struct mwl8k_cmd_set_rate_adapt_mode {
2683 struct mwl8k_cmd_pkt header;
2684 __le16 action;
2685 __le16 mode;
2686} __attribute__((packed));
2687
2688static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode)
2689{
2690 struct mwl8k_cmd_set_rate_adapt_mode *cmd;
2691 int rc;
2692
2693 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2694 if (cmd == NULL)
2695 return -ENOMEM;
2696
2697 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE);
2698 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2699 cmd->action = cpu_to_le16(MWL8K_CMD_SET);
2700 cmd->mode = cpu_to_le16(mode);
2701
2702 rc = mwl8k_post_cmd(hw, &cmd->header);
2703 kfree(cmd);
2704
2705 return rc;
2706}
2707
2708/*
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002709 * CMD_BSS_START.
2710 */
2711struct mwl8k_cmd_bss_start {
2712 struct mwl8k_cmd_pkt header;
2713 __le32 enable;
2714} __attribute__((packed));
2715
2716static int mwl8k_cmd_bss_start(struct ieee80211_hw *hw, int enable)
2717{
2718 struct mwl8k_cmd_bss_start *cmd;
2719 int rc;
2720
2721 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2722 if (cmd == NULL)
2723 return -ENOMEM;
2724
2725 cmd->header.code = cpu_to_le16(MWL8K_CMD_BSS_START);
2726 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2727 cmd->enable = cpu_to_le32(enable);
2728
2729 rc = mwl8k_post_cmd(hw, &cmd->header);
2730 kfree(cmd);
2731
2732 return rc;
2733}
2734
2735/*
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01002736 * CMD_SET_NEW_STN.
2737 */
2738struct mwl8k_cmd_set_new_stn {
2739 struct mwl8k_cmd_pkt header;
2740 __le16 aid;
2741 __u8 mac_addr[6];
2742 __le16 stn_id;
2743 __le16 action;
2744 __le16 rsvd;
2745 __le32 legacy_rates;
2746 __u8 ht_rates[4];
2747 __le16 cap_info;
2748 __le16 ht_capabilities_info;
2749 __u8 mac_ht_param_info;
2750 __u8 rev;
2751 __u8 control_channel;
2752 __u8 add_channel;
2753 __le16 op_mode;
2754 __le16 stbc;
2755 __u8 add_qos_info;
2756 __u8 is_qos_sta;
2757 __le32 fw_sta_ptr;
2758} __attribute__((packed));
2759
2760#define MWL8K_STA_ACTION_ADD 0
2761#define MWL8K_STA_ACTION_REMOVE 2
2762
2763static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw *hw,
2764 struct ieee80211_vif *vif,
2765 struct ieee80211_sta *sta)
2766{
2767 struct mwl8k_cmd_set_new_stn *cmd;
2768 int rc;
2769
2770 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2771 if (cmd == NULL)
2772 return -ENOMEM;
2773
2774 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
2775 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2776 cmd->aid = cpu_to_le16(sta->aid);
2777 memcpy(cmd->mac_addr, sta->addr, ETH_ALEN);
2778 cmd->stn_id = cpu_to_le16(sta->aid);
2779 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_ADD);
2780 cmd->legacy_rates = cpu_to_le32(sta->supp_rates[IEEE80211_BAND_2GHZ]);
2781 if (sta->ht_cap.ht_supported) {
2782 cmd->ht_rates[0] = sta->ht_cap.mcs.rx_mask[0];
2783 cmd->ht_rates[1] = sta->ht_cap.mcs.rx_mask[1];
2784 cmd->ht_rates[2] = sta->ht_cap.mcs.rx_mask[2];
2785 cmd->ht_rates[3] = sta->ht_cap.mcs.rx_mask[3];
2786 cmd->ht_capabilities_info = cpu_to_le16(sta->ht_cap.cap);
2787 cmd->mac_ht_param_info = (sta->ht_cap.ampdu_factor & 3) |
2788 ((sta->ht_cap.ampdu_density & 7) << 2);
2789 cmd->is_qos_sta = 1;
2790 }
2791
2792 rc = mwl8k_post_cmd(hw, &cmd->header);
2793 kfree(cmd);
2794
2795 return rc;
2796}
2797
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01002798static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw *hw,
2799 struct ieee80211_vif *vif)
2800{
2801 struct mwl8k_cmd_set_new_stn *cmd;
2802 int rc;
2803
2804 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2805 if (cmd == NULL)
2806 return -ENOMEM;
2807
2808 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
2809 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2810 memcpy(cmd->mac_addr, vif->addr, ETH_ALEN);
2811
2812 rc = mwl8k_post_cmd(hw, &cmd->header);
2813 kfree(cmd);
2814
2815 return rc;
2816}
2817
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01002818static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw *hw,
2819 struct ieee80211_vif *vif, u8 *addr)
2820{
2821 struct mwl8k_cmd_set_new_stn *cmd;
2822 int rc;
2823
2824 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2825 if (cmd == NULL)
2826 return -ENOMEM;
2827
2828 cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN);
2829 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2830 memcpy(cmd->mac_addr, addr, ETH_ALEN);
2831 cmd->action = cpu_to_le16(MWL8K_STA_ACTION_REMOVE);
2832
2833 rc = mwl8k_post_cmd(hw, &cmd->header);
2834 kfree(cmd);
2835
2836 return rc;
2837}
2838
2839/*
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002840 * CMD_UPDATE_STADB.
2841 */
Lennert Buytenhek25d81b12010-01-04 21:54:41 +01002842struct ewc_ht_info {
2843 __le16 control1;
2844 __le16 control2;
2845 __le16 control3;
2846} __attribute__((packed));
2847
2848struct peer_capability_info {
2849 /* Peer type - AP vs. STA. */
2850 __u8 peer_type;
2851
2852 /* Basic 802.11 capabilities from assoc resp. */
2853 __le16 basic_caps;
2854
2855 /* Set if peer supports 802.11n high throughput (HT). */
2856 __u8 ht_support;
2857
2858 /* Valid if HT is supported. */
2859 __le16 ht_caps;
2860 __u8 extended_ht_caps;
2861 struct ewc_ht_info ewc_info;
2862
2863 /* Legacy rate table. Intersection of our rates and peer rates. */
2864 __u8 legacy_rates[12];
2865
2866 /* HT rate table. Intersection of our rates and peer rates. */
2867 __u8 ht_rates[16];
2868 __u8 pad[16];
2869
2870 /* If set, interoperability mode, no proprietary extensions. */
2871 __u8 interop;
2872 __u8 pad2;
2873 __u8 station_id;
2874 __le16 amsdu_enabled;
2875} __attribute__((packed));
2876
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002877struct mwl8k_cmd_update_stadb {
2878 struct mwl8k_cmd_pkt header;
2879
2880 /* See STADB_ACTION_TYPE */
2881 __le32 action;
2882
2883 /* Peer MAC address */
2884 __u8 peer_addr[ETH_ALEN];
2885
2886 __le32 reserved;
2887
2888 /* Peer info - valid during add/update. */
2889 struct peer_capability_info peer_info;
2890} __attribute__((packed));
2891
Lennert Buytenheka6804002010-01-04 21:55:42 +01002892#define MWL8K_STA_DB_MODIFY_ENTRY 1
2893#define MWL8K_STA_DB_DEL_ENTRY 2
2894
2895/* Peer Entry flags - used to define the type of the peer node */
2896#define MWL8K_PEER_TYPE_ACCESSPOINT 2
2897
2898static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw,
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01002899 struct ieee80211_vif *vif,
Lennert Buytenhek13935e22010-01-04 21:57:59 +01002900 struct ieee80211_sta *sta)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002901{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002902 struct mwl8k_cmd_update_stadb *cmd;
Lennert Buytenheka6804002010-01-04 21:55:42 +01002903 struct peer_capability_info *p;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002904 int rc;
2905
2906 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2907 if (cmd == NULL)
2908 return -ENOMEM;
2909
2910 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
2911 cmd->header.length = cpu_to_le16(sizeof(*cmd));
Lennert Buytenheka6804002010-01-04 21:55:42 +01002912 cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01002913 memcpy(cmd->peer_addr, sta->addr, ETH_ALEN);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002914
Lennert Buytenheka6804002010-01-04 21:55:42 +01002915 p = &cmd->peer_info;
2916 p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT;
2917 p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability);
Lennert Buytenhek13935e22010-01-04 21:57:59 +01002918 p->ht_support = sta->ht_cap.ht_supported;
2919 p->ht_caps = sta->ht_cap.cap;
2920 p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) |
2921 ((sta->ht_cap.ampdu_density & 7) << 2);
2922 legacy_rate_mask_to_array(p->legacy_rates,
2923 sta->supp_rates[IEEE80211_BAND_2GHZ]);
2924 memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16);
Lennert Buytenheka6804002010-01-04 21:55:42 +01002925 p->interop = 1;
2926 p->amsdu_enabled = 0;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002927
Lennert Buytenheka6804002010-01-04 21:55:42 +01002928 rc = mwl8k_post_cmd(hw, &cmd->header);
2929 kfree(cmd);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002930
Lennert Buytenheka6804002010-01-04 21:55:42 +01002931 return rc ? rc : p->station_id;
2932}
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002933
Lennert Buytenheka6804002010-01-04 21:55:42 +01002934static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw,
2935 struct ieee80211_vif *vif, u8 *addr)
2936{
2937 struct mwl8k_cmd_update_stadb *cmd;
2938 int rc;
2939
2940 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
2941 if (cmd == NULL)
2942 return -ENOMEM;
2943
2944 cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB);
2945 cmd->header.length = cpu_to_le16(sizeof(*cmd));
2946 cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY);
2947 memcpy(cmd->peer_addr, addr, ETH_ALEN);
2948
2949 rc = mwl8k_post_cmd(hw, &cmd->header);
Lennert Buytenhek55489b62009-11-30 18:31:33 +01002950 kfree(cmd);
2951
2952 return rc;
2953}
2954
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002955
2956/*
2957 * Interrupt handling.
2958 */
2959static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
2960{
2961 struct ieee80211_hw *hw = dev_id;
2962 struct mwl8k_priv *priv = hw->priv;
2963 u32 status;
2964
2965 status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002966 if (!status)
2967 return IRQ_NONE;
2968
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01002969 if (status & MWL8K_A2H_INT_TX_DONE) {
2970 status &= ~MWL8K_A2H_INT_TX_DONE;
2971 tasklet_schedule(&priv->poll_tx_task);
2972 }
2973
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01002974 if (status & MWL8K_A2H_INT_RX_READY) {
2975 status &= ~MWL8K_A2H_INT_RX_READY;
2976 tasklet_schedule(&priv->poll_rx_task);
2977 }
2978
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01002979 if (status)
2980 iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002981
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002982 if (status & MWL8K_A2H_INT_OPC_DONE) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002983 if (priv->hostcmd_wait != NULL)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002984 complete(priv->hostcmd_wait);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002985 }
2986
2987 if (status & MWL8K_A2H_INT_QUEUE_EMPTY) {
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002988 if (!mutex_is_locked(&priv->fw_mutex) &&
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02002989 priv->radio_on && priv->pending_tx_pkts)
Lennert Buytenhek618952a2009-08-18 03:18:01 +02002990 mwl8k_tx_start(priv);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01002991 }
2992
2993 return IRQ_HANDLED;
2994}
2995
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01002996static void mwl8k_tx_poll(unsigned long data)
2997{
2998 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
2999 struct mwl8k_priv *priv = hw->priv;
3000 int limit;
3001 int i;
3002
3003 limit = 32;
3004
3005 spin_lock_bh(&priv->tx_lock);
3006
3007 for (i = 0; i < MWL8K_TX_QUEUES; i++)
3008 limit -= mwl8k_txq_reclaim(hw, i, limit, 0);
3009
3010 if (!priv->pending_tx_pkts && priv->tx_wait != NULL) {
3011 complete(priv->tx_wait);
3012 priv->tx_wait = NULL;
3013 }
3014
3015 spin_unlock_bh(&priv->tx_lock);
3016
3017 if (limit) {
3018 writel(~MWL8K_A2H_INT_TX_DONE,
3019 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
3020 } else {
3021 tasklet_schedule(&priv->poll_tx_task);
3022 }
3023}
3024
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003025static void mwl8k_rx_poll(unsigned long data)
3026{
3027 struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
3028 struct mwl8k_priv *priv = hw->priv;
3029 int limit;
3030
3031 limit = 32;
3032 limit -= rxq_process(hw, 0, limit);
3033 limit -= rxq_refill(hw, 0, limit);
3034
3035 if (limit) {
3036 writel(~MWL8K_A2H_INT_RX_READY,
3037 priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
3038 } else {
3039 tasklet_schedule(&priv->poll_rx_task);
3040 }
3041}
3042
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003043
3044/*
3045 * Core driver operations.
3046 */
3047static int mwl8k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
3048{
3049 struct mwl8k_priv *priv = hw->priv;
3050 int index = skb_get_queue_mapping(skb);
3051 int rc;
3052
3053 if (priv->current_channel == NULL) {
3054 printk(KERN_DEBUG "%s: dropped TX frame since radio "
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003055 "disabled\n", wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003056 dev_kfree_skb(skb);
3057 return NETDEV_TX_OK;
3058 }
3059
3060 rc = mwl8k_txq_xmit(hw, index, skb);
3061
3062 return rc;
3063}
3064
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003065static int mwl8k_start(struct ieee80211_hw *hw)
3066{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003067 struct mwl8k_priv *priv = hw->priv;
3068 int rc;
3069
Joe Perchesa0607fd2009-11-18 23:29:17 -08003070 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003071 IRQF_SHARED, MWL8K_NAME, hw);
3072 if (rc) {
3073 printk(KERN_ERR "%s: failed to register IRQ handler\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003074 wiphy_name(hw->wiphy));
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003075 return -EIO;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003076 }
3077
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003078 /* Enable TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01003079 tasklet_enable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003080 tasklet_enable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003081
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003082 /* Enable interrupts */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02003083 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003084
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003085 rc = mwl8k_fw_lock(hw);
3086 if (!rc) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003087 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003088
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02003089 if (!priv->ap_fw) {
3090 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003091 rc = mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003092
Lennert Buytenhek5e4cf162009-10-22 20:21:38 +02003093 if (!rc)
3094 rc = mwl8k_cmd_set_pre_scan(hw);
3095
3096 if (!rc)
3097 rc = mwl8k_cmd_set_post_scan(hw,
3098 "\x00\x00\x00\x00\x00\x00");
3099 }
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003100
3101 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003102 rc = mwl8k_cmd_set_rateadapt_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003103
3104 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003105 rc = mwl8k_cmd_set_wmm_mode(hw, 0);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003106
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003107 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003108 }
3109
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003110 if (rc) {
3111 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
3112 free_irq(priv->pdev->irq, hw);
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01003113 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003114 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenhek2ec610c2009-07-17 07:11:37 +02003115 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003116
3117 return rc;
3118}
3119
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003120static void mwl8k_stop(struct ieee80211_hw *hw)
3121{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003122 struct mwl8k_priv *priv = hw->priv;
3123 int i;
3124
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003125 mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003126
3127 ieee80211_stop_queues(hw);
3128
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003129 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003130 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003131 free_irq(priv->pdev->irq, hw);
3132
3133 /* Stop finalize join worker */
3134 cancel_work_sync(&priv->finalize_join_worker);
3135 if (priv->beacon_skb != NULL)
3136 dev_kfree_skb(priv->beacon_skb);
3137
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003138 /* Stop TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01003139 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003140 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003141
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003142 /* Return all skbs to mac80211 */
3143 for (i = 0; i < MWL8K_TX_QUEUES; i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01003144 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003145}
3146
3147static int mwl8k_add_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01003148 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003149{
3150 struct mwl8k_priv *priv = hw->priv;
3151 struct mwl8k_vif *mwl8k_vif;
3152
3153 /*
3154 * We only support one active interface at a time.
3155 */
3156 if (priv->vif != NULL)
3157 return -EBUSY;
3158
3159 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003160 * Reject interface creation if sniffer mode is active, as
3161 * STA operation is mutually exclusive with hardware sniffer
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003162 * mode. (Sniffer mode is only used on STA firmware.)
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003163 */
3164 if (priv->sniffer_enabled) {
3165 printk(KERN_INFO "%s: unable to create STA "
3166 "interface due to sniffer mode being enabled\n",
3167 wiphy_name(hw->wiphy));
3168 return -EINVAL;
3169 }
3170
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003171 /* Set the mac address. */
3172 mwl8k_cmd_set_mac_addr(hw, vif->addr);
3173
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003174 if (priv->ap_fw)
3175 mwl8k_cmd_set_new_stn_add_self(hw, vif);
3176
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003177 /* Clean out driver private area */
Johannes Berg1ed32e42009-12-23 13:15:45 +01003178 mwl8k_vif = MWL8K_VIF(vif);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003179 memset(mwl8k_vif, 0, sizeof(*mwl8k_vif));
3180
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003181 /* Set Initial sequence number to zero */
3182 mwl8k_vif->seqno = 0;
3183
Johannes Berg1ed32e42009-12-23 13:15:45 +01003184 priv->vif = vif;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003185 priv->current_channel = NULL;
3186
3187 return 0;
3188}
3189
3190static void mwl8k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01003191 struct ieee80211_vif *vif)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003192{
3193 struct mwl8k_priv *priv = hw->priv;
3194
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003195 if (priv->ap_fw)
3196 mwl8k_cmd_set_new_stn_del(hw, vif, vif->addr);
3197
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003198 mwl8k_cmd_set_mac_addr(hw, "\x00\x00\x00\x00\x00\x00");
Lennert Buytenhek32060e12009-10-22 20:20:04 +02003199
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003200 priv->vif = NULL;
3201}
3202
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003203static int mwl8k_config(struct ieee80211_hw *hw, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003204{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003205 struct ieee80211_conf *conf = &hw->conf;
3206 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003207 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003208
Lennert Buytenhek7595d672009-08-17 23:59:40 +02003209 if (conf->flags & IEEE80211_CONF_IDLE) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003210 mwl8k_cmd_radio_disable(hw);
Lennert Buytenhek7595d672009-08-17 23:59:40 +02003211 priv->current_channel = NULL;
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003212 return 0;
Lennert Buytenhek7595d672009-08-17 23:59:40 +02003213 }
3214
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003215 rc = mwl8k_fw_lock(hw);
3216 if (rc)
3217 return rc;
3218
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003219 rc = mwl8k_cmd_radio_enable(hw);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003220 if (rc)
3221 goto out;
3222
Lennert Buytenhek610677d2010-01-04 21:56:46 +01003223 rc = mwl8k_cmd_set_rf_channel(hw, conf);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003224 if (rc)
3225 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003226
3227 priv->current_channel = conf->channel;
3228
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003229 if (conf->power_level > 18)
3230 conf->power_level = 18;
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003231 rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level);
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003232 if (rc)
3233 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003234
Lennert Buytenhek08b06342009-10-22 20:21:33 +02003235 if (priv->ap_fw) {
3236 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x7);
3237 if (!rc)
3238 rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7);
3239 } else {
3240 rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7);
3241 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003242
Lennert Buytenhekee03a932009-07-17 07:19:37 +02003243out:
3244 mwl8k_fw_unlock(hw);
3245
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003246 return rc;
3247}
3248
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003249static void
3250mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
3251 struct ieee80211_bss_conf *info, u32 changed)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003252{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003253 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003254 u32 ap_legacy_rates;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003255 u8 ap_mcs_rates[16];
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003256 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003257
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003258 if (mwl8k_fw_lock(hw))
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003259 return;
3260
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003261 /*
3262 * No need to capture a beacon if we're no longer associated.
3263 */
3264 if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc)
3265 priv->capture_beacon = false;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003266
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003267 /*
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003268 * Get the AP's legacy and MCS rates.
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003269 */
3270 ap_legacy_rates = 0;
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003271 if (vif->bss_conf.assoc) {
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003272 struct ieee80211_sta *ap;
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003273 rcu_read_lock();
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003274
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003275 ap = ieee80211_find_sta(vif, vif->bss_conf.bssid);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003276 if (ap == NULL) {
3277 rcu_read_unlock();
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003278 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003279 }
Lennert Buytenhekc6e96012010-01-04 21:55:52 +01003280
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003281 ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ];
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003282 memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16);
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003283
3284 rcu_read_unlock();
3285 }
3286
3287 if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc) {
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003288 rc = mwl8k_cmd_set_rate(hw, vif, ap_legacy_rates, ap_mcs_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003289 if (rc)
3290 goto out;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003291
Lennert Buytenhekb71ed2c2010-01-08 18:30:16 +01003292 rc = mwl8k_cmd_use_fixed_rate_sta(hw);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003293 if (rc)
3294 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003295 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003296
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003297 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003298 rc = mwl8k_set_radio_preamble(hw,
3299 vif->bss_conf.use_short_preamble);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003300 if (rc)
3301 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003302 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003303
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003304 if (changed & BSS_CHANGED_ERP_SLOT) {
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003305 rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003306 if (rc)
3307 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003308 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003309
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003310 if (((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc) ||
3311 (changed & (BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_HT))) {
3312 rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates);
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003313 if (rc)
3314 goto out;
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003315 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003316
Lennert Buytenhekc3cbbe82010-01-04 21:56:07 +01003317 if (vif->bss_conf.assoc &&
3318 (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) {
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003319 /*
3320 * Finalize the join. Tell rx handler to process
3321 * next beacon from our BSSID.
3322 */
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003323 memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003324 priv->capture_beacon = true;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003325 }
3326
Lennert Buytenhek3a980d02009-07-17 07:21:46 +02003327out:
3328 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003329}
3330
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003331static void
3332mwl8k_bss_info_changed_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
3333 struct ieee80211_bss_conf *info, u32 changed)
3334{
3335 int rc;
3336
3337 if (mwl8k_fw_lock(hw))
3338 return;
3339
3340 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
3341 rc = mwl8k_set_radio_preamble(hw,
3342 vif->bss_conf.use_short_preamble);
3343 if (rc)
3344 goto out;
3345 }
3346
3347 if (changed & BSS_CHANGED_BASIC_RATES) {
3348 int idx;
3349 int rate;
3350
3351 /*
3352 * Use lowest supported basic rate for multicasts
3353 * and management frames (such as probe responses --
3354 * beacons will always go out at 1 Mb/s).
3355 */
3356 idx = ffs(vif->bss_conf.basic_rates);
3357 rate = idx ? mwl8k_rates[idx - 1].hw_value : 2;
3358
3359 mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate);
3360 }
3361
3362 if (changed & (BSS_CHANGED_BEACON_INT | BSS_CHANGED_BEACON)) {
3363 struct sk_buff *skb;
3364
3365 skb = ieee80211_beacon_get(hw, vif);
3366 if (skb != NULL) {
3367 mwl8k_cmd_set_beacon(hw, skb->data, skb->len);
3368 kfree_skb(skb);
3369 }
3370 }
3371
3372 if (changed & BSS_CHANGED_BEACON_ENABLED)
3373 mwl8k_cmd_bss_start(hw, info->enable_beacon);
3374
3375out:
3376 mwl8k_fw_unlock(hw);
3377}
3378
3379static void
3380mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
3381 struct ieee80211_bss_conf *info, u32 changed)
3382{
3383 struct mwl8k_priv *priv = hw->priv;
3384
3385 if (!priv->ap_fw)
3386 mwl8k_bss_info_changed_sta(hw, vif, info, changed);
3387 else
3388 mwl8k_bss_info_changed_ap(hw, vif, info, changed);
3389}
3390
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02003391static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw,
3392 int mc_count, struct dev_addr_list *mclist)
3393{
3394 struct mwl8k_cmd_pkt *cmd;
3395
Lennert Buytenhek447ced02009-10-22 20:19:50 +02003396 /*
3397 * Synthesize and return a command packet that programs the
3398 * hardware multicast address filter. At this point we don't
3399 * know whether FIF_ALLMULTI is being requested, but if it is,
3400 * we'll end up throwing this packet away and creating a new
3401 * one in mwl8k_configure_filter().
3402 */
3403 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_count, mclist);
Lennert Buytenheke81cd2d2009-08-18 03:55:42 +02003404
3405 return (unsigned long)cmd;
3406}
3407
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003408static int
3409mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw,
3410 unsigned int changed_flags,
3411 unsigned int *total_flags)
3412{
3413 struct mwl8k_priv *priv = hw->priv;
3414
3415 /*
3416 * Hardware sniffer mode is mutually exclusive with STA
3417 * operation, so refuse to enable sniffer mode if a STA
3418 * interface is active.
3419 */
3420 if (priv->vif != NULL) {
3421 if (net_ratelimit())
3422 printk(KERN_INFO "%s: not enabling sniffer "
3423 "mode because STA interface is active\n",
3424 wiphy_name(hw->wiphy));
3425 return 0;
3426 }
3427
3428 if (!priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003429 if (mwl8k_cmd_enable_sniffer(hw, 1))
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003430 return 0;
3431 priv->sniffer_enabled = true;
3432 }
3433
3434 *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI |
3435 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL |
3436 FIF_OTHER_BSS;
3437
3438 return 1;
3439}
3440
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003441static void mwl8k_configure_filter(struct ieee80211_hw *hw,
3442 unsigned int changed_flags,
3443 unsigned int *total_flags,
3444 u64 multicast)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003445{
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003446 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003447 struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast;
3448
3449 /*
Lennert Buytenhekc0adae22009-10-22 20:21:36 +02003450 * AP firmware doesn't allow fine-grained control over
3451 * the receive filter.
3452 */
3453 if (priv->ap_fw) {
3454 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
3455 kfree(cmd);
3456 return;
3457 }
3458
3459 /*
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003460 * Enable hardware sniffer mode if FIF_CONTROL or
3461 * FIF_OTHER_BSS is requested.
3462 */
3463 if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) &&
3464 mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) {
3465 kfree(cmd);
3466 return;
3467 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003468
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003469 /* Clear unsupported feature flags */
Lennert Buytenhek447ced02009-10-22 20:19:50 +02003470 *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC;
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003471
Lennert Buytenhek90852f72010-01-02 10:31:42 +01003472 if (mwl8k_fw_lock(hw)) {
3473 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003474 return;
Lennert Buytenhek90852f72010-01-02 10:31:42 +01003475 }
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003476
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003477 if (priv->sniffer_enabled) {
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003478 mwl8k_cmd_enable_sniffer(hw, 0);
Lennert Buytenheka43c49a2009-10-22 20:20:32 +02003479 priv->sniffer_enabled = false;
3480 }
3481
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003482 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
Lennert Buytenhek77165d82009-10-22 20:19:53 +02003483 if (*total_flags & FIF_BCN_PRBRESP_PROMISC) {
3484 /*
3485 * Disable the BSS filter.
3486 */
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003487 mwl8k_cmd_set_pre_scan(hw);
Lennert Buytenhek77165d82009-10-22 20:19:53 +02003488 } else {
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003489 const u8 *bssid;
Lennert Buytenheka94cc972009-08-03 21:58:57 +02003490
Lennert Buytenhek77165d82009-10-22 20:19:53 +02003491 /*
3492 * Enable the BSS filter.
3493 *
3494 * If there is an active STA interface, use that
3495 * interface's BSSID, otherwise use a dummy one
3496 * (where the OUI part needs to be nonzero for
3497 * the BSSID to be accepted by POST_SCAN).
3498 */
3499 bssid = "\x01\x00\x00\x00\x00\x00";
Lennert Buytenheka94cc972009-08-03 21:58:57 +02003500 if (priv->vif != NULL)
Lennert Buytenhek0a11dfc2010-01-04 21:55:21 +01003501 bssid = priv->vif->bss_conf.bssid;
Lennert Buytenheka94cc972009-08-03 21:58:57 +02003502
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003503 mwl8k_cmd_set_post_scan(hw, bssid);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003504 }
3505 }
3506
Lennert Buytenhek447ced02009-10-22 20:19:50 +02003507 /*
3508 * If FIF_ALLMULTI is being requested, throw away the command
3509 * packet that ->prepare_multicast() built and replace it with
3510 * a command packet that enables reception of all multicast
3511 * packets.
3512 */
3513 if (*total_flags & FIF_ALLMULTI) {
3514 kfree(cmd);
3515 cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, 0, NULL);
3516 }
3517
3518 if (cmd != NULL) {
3519 mwl8k_post_cmd(hw, cmd);
3520 kfree(cmd);
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003521 }
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02003522
Lennert Buytenheke6935ea2009-08-18 04:06:20 +02003523 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003524}
3525
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003526static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
3527{
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003528 return mwl8k_cmd_set_rts_threshold(hw, value);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003529}
3530
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003531struct mwl8k_sta_notify_item
3532{
3533 struct list_head list;
3534 struct ieee80211_vif *vif;
3535 enum sta_notify_cmd cmd;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003536 struct ieee80211_sta sta;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003537};
3538
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003539static void
3540mwl8k_do_sta_notify(struct ieee80211_hw *hw, struct mwl8k_sta_notify_item *s)
3541{
3542 struct mwl8k_priv *priv = hw->priv;
3543
3544 /*
3545 * STA firmware uses UPDATE_STADB, AP firmware uses SET_NEW_STN.
3546 */
3547 if (!priv->ap_fw && s->cmd == STA_NOTIFY_ADD) {
3548 int rc;
3549
3550 rc = mwl8k_cmd_update_stadb_add(hw, s->vif, &s->sta);
3551 if (rc >= 0) {
3552 struct ieee80211_sta *sta;
3553
3554 rcu_read_lock();
3555 sta = ieee80211_find_sta(s->vif, s->sta.addr);
3556 if (sta != NULL)
3557 MWL8K_STA(sta)->peer_id = rc;
3558 rcu_read_unlock();
3559 }
3560 } else if (!priv->ap_fw && s->cmd == STA_NOTIFY_REMOVE) {
3561 mwl8k_cmd_update_stadb_del(hw, s->vif, s->sta.addr);
3562 } else if (priv->ap_fw && s->cmd == STA_NOTIFY_ADD) {
3563 mwl8k_cmd_set_new_stn_add(hw, s->vif, &s->sta);
3564 } else if (priv->ap_fw && s->cmd == STA_NOTIFY_REMOVE) {
3565 mwl8k_cmd_set_new_stn_del(hw, s->vif, s->sta.addr);
3566 }
3567}
3568
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003569static void mwl8k_sta_notify_worker(struct work_struct *work)
3570{
3571 struct mwl8k_priv *priv =
3572 container_of(work, struct mwl8k_priv, sta_notify_worker);
Lennert Buytenheka6804002010-01-04 21:55:42 +01003573 struct ieee80211_hw *hw = priv->hw;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003574
3575 spin_lock_bh(&priv->sta_notify_list_lock);
3576 while (!list_empty(&priv->sta_notify_list)) {
3577 struct mwl8k_sta_notify_item *s;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003578
3579 s = list_entry(priv->sta_notify_list.next,
3580 struct mwl8k_sta_notify_item, list);
3581 list_del(&s->list);
3582
3583 spin_unlock_bh(&priv->sta_notify_list_lock);
3584
Lennert Buytenhek3f5610f2010-01-08 18:30:58 +01003585 mwl8k_do_sta_notify(hw, s);
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003586 kfree(s);
3587
3588 spin_lock_bh(&priv->sta_notify_list_lock);
3589 }
3590 spin_unlock_bh(&priv->sta_notify_list_lock);
3591}
3592
3593static void
3594mwl8k_sta_notify(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
3595 enum sta_notify_cmd cmd, struct ieee80211_sta *sta)
3596{
3597 struct mwl8k_priv *priv = hw->priv;
3598 struct mwl8k_sta_notify_item *s;
3599
3600 if (cmd != STA_NOTIFY_ADD && cmd != STA_NOTIFY_REMOVE)
3601 return;
3602
3603 s = kmalloc(sizeof(*s), GFP_ATOMIC);
3604 if (s != NULL) {
3605 s->vif = vif;
3606 s->cmd = cmd;
Lennert Buytenhek13935e22010-01-04 21:57:59 +01003607 s->sta = *sta;
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003608
3609 spin_lock(&priv->sta_notify_list_lock);
3610 list_add_tail(&s->list, &priv->sta_notify_list);
3611 spin_unlock(&priv->sta_notify_list_lock);
3612
3613 ieee80211_queue_work(hw, &priv->sta_notify_worker);
3614 }
3615}
3616
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003617static int mwl8k_conf_tx(struct ieee80211_hw *hw, u16 queue,
3618 const struct ieee80211_tx_queue_params *params)
3619{
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003620 struct mwl8k_priv *priv = hw->priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003621 int rc;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003622
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003623 rc = mwl8k_fw_lock(hw);
3624 if (!rc) {
3625 if (!priv->wmm_enabled)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003626 rc = mwl8k_cmd_set_wmm_mode(hw, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003627
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003628 if (!rc)
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003629 rc = mwl8k_cmd_set_edca_params(hw, queue,
3630 params->cw_min,
3631 params->cw_max,
3632 params->aifs,
3633 params->txop);
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003634
3635 mwl8k_fw_unlock(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003636 }
Lennert Buytenhek3e4f5422009-07-17 07:25:59 +02003637
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003638 return rc;
3639}
3640
3641static int mwl8k_get_tx_stats(struct ieee80211_hw *hw,
3642 struct ieee80211_tx_queue_stats *stats)
3643{
3644 struct mwl8k_priv *priv = hw->priv;
3645 struct mwl8k_tx_queue *txq;
3646 int index;
3647
3648 spin_lock_bh(&priv->tx_lock);
3649 for (index = 0; index < MWL8K_TX_QUEUES; index++) {
3650 txq = priv->txq + index;
Lennert Buytenhek45eb4002009-10-22 20:20:40 +02003651 memcpy(&stats[index], &txq->stats,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003652 sizeof(struct ieee80211_tx_queue_stats));
3653 }
3654 spin_unlock_bh(&priv->tx_lock);
Lennert Buytenhek954ef502009-07-17 07:26:27 +02003655
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003656 return 0;
3657}
3658
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003659static int mwl8k_get_stats(struct ieee80211_hw *hw,
3660 struct ieee80211_low_level_stats *stats)
3661{
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003662 return mwl8k_cmd_get_stat(hw, stats);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003663}
3664
Lennert Buytenheka2292d82010-01-04 21:58:12 +01003665static int
3666mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
3667 enum ieee80211_ampdu_mlme_action action,
3668 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
3669{
3670 switch (action) {
3671 case IEEE80211_AMPDU_RX_START:
3672 case IEEE80211_AMPDU_RX_STOP:
3673 if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
3674 return -ENOTSUPP;
3675 return 0;
3676 default:
3677 return -ENOTSUPP;
3678 }
3679}
3680
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003681static const struct ieee80211_ops mwl8k_ops = {
3682 .tx = mwl8k_tx,
3683 .start = mwl8k_start,
3684 .stop = mwl8k_stop,
3685 .add_interface = mwl8k_add_interface,
3686 .remove_interface = mwl8k_remove_interface,
3687 .config = mwl8k_config,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003688 .bss_info_changed = mwl8k_bss_info_changed,
Johannes Berg3ac64be2009-08-17 16:16:53 +02003689 .prepare_multicast = mwl8k_prepare_multicast,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003690 .configure_filter = mwl8k_configure_filter,
3691 .set_rts_threshold = mwl8k_set_rts_threshold,
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003692 .sta_notify = mwl8k_sta_notify,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003693 .conf_tx = mwl8k_conf_tx,
3694 .get_tx_stats = mwl8k_get_tx_stats,
3695 .get_stats = mwl8k_get_stats,
Lennert Buytenheka2292d82010-01-04 21:58:12 +01003696 .ampdu_action = mwl8k_ampdu_action,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003697};
3698
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003699static void mwl8k_finalize_join_worker(struct work_struct *work)
3700{
3701 struct mwl8k_priv *priv =
3702 container_of(work, struct mwl8k_priv, finalize_join_worker);
3703 struct sk_buff *skb = priv->beacon_skb;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003704
Lennert Buytenhek7dc6a7a2009-11-30 18:33:09 +01003705 mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len,
3706 priv->vif->bss_conf.dtim_period);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003707 dev_kfree_skb(skb);
3708
3709 priv->beacon_skb = NULL;
3710}
3711
John W. Linvillebcb628d2009-11-06 16:40:16 -05003712enum {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01003713 MWL8363 = 0,
3714 MWL8687,
John W. Linvillebcb628d2009-11-06 16:40:16 -05003715 MWL8366,
Lennert Buytenhek6f6d1e92009-10-22 20:21:48 +02003716};
3717
John W. Linvillebcb628d2009-11-06 16:40:16 -05003718static struct mwl8k_device_info mwl8k_info_tbl[] __devinitdata = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01003719 [MWL8363] = {
3720 .part_name = "88w8363",
3721 .helper_image = "mwl8k/helper_8363.fw",
3722 .fw_image = "mwl8k/fmimage_8363.fw",
3723 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01003724 [MWL8687] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05003725 .part_name = "88w8687",
3726 .helper_image = "mwl8k/helper_8687.fw",
3727 .fw_image = "mwl8k/fmimage_8687.fw",
John W. Linvillebcb628d2009-11-06 16:40:16 -05003728 },
Lennert Buytenhek49eb6912009-11-30 18:32:13 +01003729 [MWL8366] = {
John W. Linvillebcb628d2009-11-06 16:40:16 -05003730 .part_name = "88w8366",
3731 .helper_image = "mwl8k/helper_8366.fw",
3732 .fw_image = "mwl8k/fmimage_8366.fw",
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01003733 .ap_rxd_ops = &rxd_8366_ap_ops,
John W. Linvillebcb628d2009-11-06 16:40:16 -05003734 },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02003735};
3736
Lennert Buytenhekc92d4ed2010-01-12 13:47:22 +01003737MODULE_FIRMWARE("mwl8k/helper_8363.fw");
3738MODULE_FIRMWARE("mwl8k/fmimage_8363.fw");
3739MODULE_FIRMWARE("mwl8k/helper_8687.fw");
3740MODULE_FIRMWARE("mwl8k/fmimage_8687.fw");
3741MODULE_FIRMWARE("mwl8k/helper_8366.fw");
3742MODULE_FIRMWARE("mwl8k/fmimage_8366.fw");
3743
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02003744static DEFINE_PCI_DEVICE_TABLE(mwl8k_pci_id_table) = {
Lennert Buytenhek9e1b17e2010-01-04 21:56:19 +01003745 { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, },
3746 { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, },
John W. Linvillebcb628d2009-11-06 16:40:16 -05003747 { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, },
3748 { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, },
3749 { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, },
3750 { },
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02003751};
3752MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table);
3753
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003754static int __devinit mwl8k_probe(struct pci_dev *pdev,
3755 const struct pci_device_id *id)
3756{
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02003757 static int printed_version = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003758 struct ieee80211_hw *hw;
3759 struct mwl8k_priv *priv;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003760 int rc;
3761 int i;
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02003762
3763 if (!printed_version) {
3764 printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION);
3765 printed_version = 1;
3766 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003767
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003768
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003769 rc = pci_enable_device(pdev);
3770 if (rc) {
3771 printk(KERN_ERR "%s: Cannot enable new PCI device\n",
3772 MWL8K_NAME);
3773 return rc;
3774 }
3775
3776 rc = pci_request_regions(pdev, MWL8K_NAME);
3777 if (rc) {
3778 printk(KERN_ERR "%s: Cannot obtain PCI resources\n",
3779 MWL8K_NAME);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01003780 goto err_disable_device;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003781 }
3782
3783 pci_set_master(pdev);
3784
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003785
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003786 hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops);
3787 if (hw == NULL) {
3788 printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME);
3789 rc = -ENOMEM;
3790 goto err_free_reg;
3791 }
3792
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003793 SET_IEEE80211_DEV(hw, &pdev->dev);
3794 pci_set_drvdata(pdev, hw);
3795
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003796 priv = hw->priv;
3797 priv->hw = hw;
3798 priv->pdev = pdev;
John W. Linvillebcb628d2009-11-06 16:40:16 -05003799 priv->device_info = &mwl8k_info_tbl[id->driver_data];
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003800
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003801
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02003802 priv->sram = pci_iomap(pdev, 0, 0x10000);
3803 if (priv->sram == NULL) {
3804 printk(KERN_ERR "%s: Cannot map device SRAM\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003805 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003806 goto err_iounmap;
3807 }
3808
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02003809 /*
3810 * If BAR0 is a 32 bit BAR, the register BAR will be BAR1.
3811 * If BAR0 is a 64 bit BAR, the register BAR will be BAR2.
3812 */
3813 priv->regs = pci_iomap(pdev, 1, 0x10000);
3814 if (priv->regs == NULL) {
3815 priv->regs = pci_iomap(pdev, 2, 0x10000);
3816 if (priv->regs == NULL) {
3817 printk(KERN_ERR "%s: Cannot map device registers\n",
3818 wiphy_name(hw->wiphy));
3819 goto err_iounmap;
3820 }
3821 }
3822
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003823
3824 /* Reset firmware and hardware */
3825 mwl8k_hw_reset(priv);
3826
3827 /* Ask userland hotplug daemon for the device firmware */
3828 rc = mwl8k_request_firmware(priv);
3829 if (rc) {
3830 printk(KERN_ERR "%s: Firmware files not found\n",
3831 wiphy_name(hw->wiphy));
3832 goto err_stop_firmware;
3833 }
3834
3835 /* Load firmware into hardware */
3836 rc = mwl8k_load_firmware(hw);
3837 if (rc) {
3838 printk(KERN_ERR "%s: Cannot start firmware\n",
3839 wiphy_name(hw->wiphy));
3840 goto err_stop_firmware;
3841 }
3842
3843 /* Reclaim memory once firmware is successfully loaded */
3844 mwl8k_release_firmware(priv);
3845
3846
Lennert Buytenhek91942232010-01-04 21:53:54 +01003847 if (priv->ap_fw) {
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01003848 priv->rxd_ops = priv->device_info->ap_rxd_ops;
Lennert Buytenhek91942232010-01-04 21:53:54 +01003849 if (priv->rxd_ops == NULL) {
3850 printk(KERN_ERR "%s: Driver does not have AP "
3851 "firmware image support for this hardware\n",
3852 wiphy_name(hw->wiphy));
3853 goto err_stop_firmware;
3854 }
3855 } else {
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01003856 priv->rxd_ops = &rxd_sta_ops;
Lennert Buytenhek91942232010-01-04 21:53:54 +01003857 }
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003858
3859 priv->sniffer_enabled = false;
3860 priv->wmm_enabled = false;
3861 priv->pending_tx_pkts = 0;
3862
3863
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003864 memcpy(priv->channels, mwl8k_channels, sizeof(mwl8k_channels));
3865 priv->band.band = IEEE80211_BAND_2GHZ;
3866 priv->band.channels = priv->channels;
3867 priv->band.n_channels = ARRAY_SIZE(mwl8k_channels);
3868 priv->band.bitrates = priv->rates;
3869 priv->band.n_bitrates = ARRAY_SIZE(mwl8k_rates);
3870 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band;
3871
3872 BUILD_BUG_ON(sizeof(priv->rates) != sizeof(mwl8k_rates));
3873 memcpy(priv->rates, mwl8k_rates, sizeof(mwl8k_rates));
3874
3875 /*
3876 * Extra headroom is the size of the required DMA header
3877 * minus the size of the smallest 802.11 frame (CTS frame).
3878 */
3879 hw->extra_tx_headroom =
3880 sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts);
3881
3882 hw->channel_change_time = 10;
3883
3884 hw->queues = MWL8K_TX_QUEUES;
3885
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003886 /* Set rssi and noise values to dBm */
Lennert Buytenhekce9e2e12009-07-16 14:00:45 +02003887 hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_NOISE_DBM;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003888 hw->vif_data_size = sizeof(struct mwl8k_vif);
Lennert Buytenheka6804002010-01-04 21:55:42 +01003889 hw->sta_data_size = sizeof(struct mwl8k_sta);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003890 priv->vif = NULL;
3891
3892 /* Set default radio state and preamble */
Lennert Buytenhekc46563b2009-07-16 12:14:58 +02003893 priv->radio_on = 0;
Lennert Buytenhek68ce3882009-07-16 12:26:57 +02003894 priv->radio_short_preamble = 0;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003895
Lennert Buytenhekbbfd9122010-01-04 21:55:12 +01003896 /* Station database handling */
3897 INIT_WORK(&priv->sta_notify_worker, mwl8k_sta_notify_worker);
3898 spin_lock_init(&priv->sta_notify_list_lock);
3899 INIT_LIST_HEAD(&priv->sta_notify_list);
3900
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003901 /* Finalize join worker */
3902 INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker);
3903
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003904 /* TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01003905 tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw);
3906 tasklet_disable(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003907 tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw);
3908 tasklet_disable(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003909
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003910 /* Power management cookie */
3911 priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma);
3912 if (priv->cookie == NULL)
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003913 goto err_stop_firmware;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003914
3915 rc = mwl8k_rxq_init(hw, 0);
3916 if (rc)
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003917 goto err_free_cookie;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003918 rxq_refill(hw, 0, INT_MAX);
3919
Lennert Buytenhek618952a2009-08-18 03:18:01 +02003920 mutex_init(&priv->fw_mutex);
3921 priv->fw_mutex_owner = NULL;
3922 priv->fw_mutex_depth = 0;
Lennert Buytenhek618952a2009-08-18 03:18:01 +02003923 priv->hostcmd_wait = NULL;
3924
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003925 spin_lock_init(&priv->tx_lock);
3926
Lennert Buytenhek88de754a2009-10-22 20:19:37 +02003927 priv->tx_wait = NULL;
3928
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003929 for (i = 0; i < MWL8K_TX_QUEUES; i++) {
3930 rc = mwl8k_txq_init(hw, i);
3931 if (rc)
3932 goto err_free_queues;
3933 }
3934
3935 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS);
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02003936 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01003937 iowrite32(MWL8K_A2H_INT_TX_DONE | MWL8K_A2H_INT_RX_READY,
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01003938 priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003939 iowrite32(0xffffffff, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK);
3940
Joe Perchesa0607fd2009-11-18 23:29:17 -08003941 rc = request_irq(priv->pdev->irq, mwl8k_interrupt,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003942 IRQF_SHARED, MWL8K_NAME, hw);
3943 if (rc) {
3944 printk(KERN_ERR "%s: failed to register IRQ handler\n",
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003945 wiphy_name(hw->wiphy));
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003946 goto err_free_queues;
3947 }
3948
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003949 /*
3950 * Temporarily enable interrupts. Initial firmware host
Lennert Buytenhekc2c2b122010-01-08 18:27:59 +01003951 * commands use interrupts and avoid polling. Disable
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003952 * interrupts when done.
3953 */
Lennert Buytenhekc23b5a62009-07-16 13:49:55 +02003954 iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003955
3956 /* Get config data, mac addrs etc */
Lennert Buytenhek42fba212009-10-22 20:21:30 +02003957 if (priv->ap_fw) {
3958 rc = mwl8k_cmd_get_hw_spec_ap(hw);
3959 if (!rc)
3960 rc = mwl8k_cmd_set_hw_spec(hw);
Lennert Buytenhekb64fe612010-01-08 18:31:39 +01003961
3962 hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_AP);
Lennert Buytenhek42fba212009-10-22 20:21:30 +02003963 } else {
3964 rc = mwl8k_cmd_get_hw_spec_sta(hw);
Lennert Buytenhek89a91f42009-11-30 18:32:54 +01003965
3966 hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
Lennert Buytenhek42fba212009-10-22 20:21:30 +02003967 }
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003968 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003969 printk(KERN_ERR "%s: Cannot initialise firmware\n",
3970 wiphy_name(hw->wiphy));
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003971 goto err_free_irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003972 }
3973
3974 /* Turn radio off */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003975 rc = mwl8k_cmd_radio_disable(hw);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003976 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003977 printk(KERN_ERR "%s: Cannot disable\n", wiphy_name(hw->wiphy));
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003978 goto err_free_irq;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003979 }
3980
Lennert Buytenhek32060e12009-10-22 20:20:04 +02003981 /* Clear MAC address */
Lennert Buytenhek55489b62009-11-30 18:31:33 +01003982 rc = mwl8k_cmd_set_mac_addr(hw, "\x00\x00\x00\x00\x00\x00");
Lennert Buytenhek32060e12009-10-22 20:20:04 +02003983 if (rc) {
3984 printk(KERN_ERR "%s: Cannot clear MAC address\n",
3985 wiphy_name(hw->wiphy));
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01003986 goto err_free_irq;
Lennert Buytenhek32060e12009-10-22 20:20:04 +02003987 }
3988
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003989 /* Disable interrupts */
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003990 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003991 free_irq(priv->pdev->irq, hw);
3992
3993 rc = ieee80211_register_hw(hw);
3994 if (rc) {
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02003995 printk(KERN_ERR "%s: Cannot register device\n",
3996 wiphy_name(hw->wiphy));
Lennert Buytenhek153458f2010-01-04 21:54:08 +01003997 goto err_free_queues;
Lennert Buytenheka66098d2009-03-10 10:13:33 +01003998 }
3999
Lennert Buytenhekeae74e62009-10-22 20:20:53 +02004000 printk(KERN_INFO "%s: %s v%d, %pM, %s firmware %u.%u.%u.%u\n",
Lennert Buytenheka74b2952009-10-22 20:20:50 +02004001 wiphy_name(hw->wiphy), priv->device_info->part_name,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02004002 priv->hw_rev, hw->wiphy->perm_addr,
Lennert Buytenhekeae74e62009-10-22 20:20:53 +02004003 priv->ap_fw ? "AP" : "STA",
Lennert Buytenhek2aa7b012009-08-24 15:48:07 +02004004 (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff,
4005 (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004006
4007 return 0;
4008
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004009err_free_irq:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004010 iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004011 free_irq(priv->pdev->irq, hw);
4012
4013err_free_queues:
4014 for (i = 0; i < MWL8K_TX_QUEUES; i++)
4015 mwl8k_txq_deinit(hw, i);
4016 mwl8k_rxq_deinit(hw, 0);
4017
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01004018err_free_cookie:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004019 if (priv->cookie != NULL)
4020 pci_free_consistent(priv->pdev, 4,
4021 priv->cookie, priv->cookie_dma);
4022
Lennert Buytenhekbe695fc2009-11-30 18:32:46 +01004023err_stop_firmware:
4024 mwl8k_hw_reset(priv);
4025 mwl8k_release_firmware(priv);
4026
4027err_iounmap:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004028 if (priv->regs != NULL)
4029 pci_iounmap(pdev, priv->regs);
4030
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02004031 if (priv->sram != NULL)
4032 pci_iounmap(pdev, priv->sram);
4033
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004034 pci_set_drvdata(pdev, NULL);
4035 ieee80211_free_hw(hw);
4036
4037err_free_reg:
4038 pci_release_regions(pdev);
Lennert Buytenhek3db95e52009-11-30 18:13:34 +01004039
4040err_disable_device:
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004041 pci_disable_device(pdev);
4042
4043 return rc;
4044}
4045
Joerg Albert230f7af2009-04-18 02:10:45 +02004046static void __devexit mwl8k_shutdown(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004047{
4048 printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__);
4049}
4050
Joerg Albert230f7af2009-04-18 02:10:45 +02004051static void __devexit mwl8k_remove(struct pci_dev *pdev)
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004052{
4053 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
4054 struct mwl8k_priv *priv;
4055 int i;
4056
4057 if (hw == NULL)
4058 return;
4059 priv = hw->priv;
4060
4061 ieee80211_stop_queues(hw);
4062
Lennert Buytenhek60aa5692009-08-03 21:59:09 +02004063 ieee80211_unregister_hw(hw);
4064
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004065 /* Remove TX reclaim and RX tasklets. */
Lennert Buytenhek1e9f9de32010-01-08 18:32:01 +01004066 tasklet_kill(&priv->poll_tx_task);
Lennert Buytenhek67e2eb22010-01-08 18:32:18 +01004067 tasklet_kill(&priv->poll_rx_task);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004068
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004069 /* Stop hardware */
4070 mwl8k_hw_reset(priv);
4071
4072 /* Return all skbs to mac80211 */
4073 for (i = 0; i < MWL8K_TX_QUEUES; i++)
Lennert Buytenhekefb7c492010-01-08 18:31:47 +01004074 mwl8k_txq_reclaim(hw, i, INT_MAX, 1);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004075
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004076 for (i = 0; i < MWL8K_TX_QUEUES; i++)
4077 mwl8k_txq_deinit(hw, i);
4078
4079 mwl8k_rxq_deinit(hw, 0);
4080
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02004081 pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004082
4083 pci_iounmap(pdev, priv->regs);
Lennert Buytenhek5b9482d2009-10-22 20:20:43 +02004084 pci_iounmap(pdev, priv->sram);
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004085 pci_set_drvdata(pdev, NULL);
4086 ieee80211_free_hw(hw);
4087 pci_release_regions(pdev);
4088 pci_disable_device(pdev);
4089}
4090
4091static struct pci_driver mwl8k_driver = {
4092 .name = MWL8K_NAME,
Lennert Buytenhek45a390d2009-10-22 20:20:47 +02004093 .id_table = mwl8k_pci_id_table,
Lennert Buytenheka66098d2009-03-10 10:13:33 +01004094 .probe = mwl8k_probe,
4095 .remove = __devexit_p(mwl8k_remove),
4096 .shutdown = __devexit_p(mwl8k_shutdown),
4097};
4098
4099static int __init mwl8k_init(void)
4100{
4101 return pci_register_driver(&mwl8k_driver);
4102}
4103
4104static void __exit mwl8k_exit(void)
4105{
4106 pci_unregister_driver(&mwl8k_driver);
4107}
4108
4109module_init(mwl8k_init);
4110module_exit(mwl8k_exit);
Lennert Buytenhekc2c357c2009-10-22 20:19:33 +02004111
4112MODULE_DESCRIPTION(MWL8K_DESC);
4113MODULE_VERSION(MWL8K_VERSION);
4114MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>");
4115MODULE_LICENSE("GPL");