blob: afd79aa69869e7ad1719676ddf72854d9357f8dc [file] [log] [blame]
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001/*
Kalle Valo80301cd2009-06-12 14:17:39 +03002 * This file is part of wl1251
Kalle Valo2f01a1f2009-04-29 23:33:31 +03003 *
4 * Copyright (C) 2008-2009 Nokia Corporation
5 *
Kalle Valo2f01a1f2009-04-29 23:33:31 +03006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18 * 02110-1301 USA
19 *
20 */
21
22#include <linux/module.h>
23#include <linux/interrupt.h>
24#include <linux/firmware.h>
25#include <linux/delay.h>
26#include <linux/irq.h>
Kalle Valo2f01a1f2009-04-29 23:33:31 +030027#include <linux/crc32.h>
28#include <linux/etherdevice.h>
Kalle Valoc74ddfd2009-11-17 18:48:45 +020029#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Kalle Valo2f01a1f2009-04-29 23:33:31 +030031
Kalle Valo13674112009-06-12 14:17:25 +030032#include "wl1251.h"
Kalle Valo2f01a1f2009-04-29 23:33:31 +030033#include "wl12xx_80211.h"
Kalle Valo9bc67722010-10-10 11:28:32 +030034#include "reg.h"
35#include "io.h"
36#include "cmd.h"
37#include "event.h"
38#include "tx.h"
39#include "rx.h"
40#include "ps.h"
41#include "init.h"
42#include "debugfs.h"
43#include "boot.h"
Kalle Valo2f01a1f2009-04-29 23:33:31 +030044
Bob Copelandb5ed9c12009-08-07 13:33:49 +030045void wl1251_enable_interrupts(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030046{
Bob Copelandb5ed9c12009-08-07 13:33:49 +030047 wl->if_ops->enable_irq(wl);
48}
49
50void wl1251_disable_interrupts(struct wl1251 *wl)
51{
52 wl->if_ops->disable_irq(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030053}
54
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +020055static int wl1251_power_off(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030056{
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +020057 return wl->if_ops->power(wl, false);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030058}
59
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +020060static int wl1251_power_on(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030061{
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +020062 return wl->if_ops->power(wl, true);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030063}
64
Kalle Valo80301cd2009-06-12 14:17:39 +030065static int wl1251_fetch_firmware(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030066{
67 const struct firmware *fw;
Bob Copeland6c766f42009-08-07 13:33:04 +030068 struct device *dev = wiphy_dev(wl->hw->wiphy);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030069 int ret;
70
Kalle Valo0e71bb02009-08-07 13:33:57 +030071 ret = request_firmware(&fw, WL1251_FW_NAME, dev);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030072
73 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +030074 wl1251_error("could not get firmware: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030075 return ret;
76 }
77
78 if (fw->size % 4) {
Kalle Valo80301cd2009-06-12 14:17:39 +030079 wl1251_error("firmware size is not multiple of 32 bits: %zu",
Kalle Valo2f01a1f2009-04-29 23:33:31 +030080 fw->size);
81 ret = -EILSEQ;
82 goto out;
83 }
84
85 wl->fw_len = fw->size;
Kalle Valoc74ddfd2009-11-17 18:48:45 +020086 wl->fw = vmalloc(wl->fw_len);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030087
88 if (!wl->fw) {
Kalle Valo80301cd2009-06-12 14:17:39 +030089 wl1251_error("could not allocate memory for the firmware");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030090 ret = -ENOMEM;
91 goto out;
92 }
93
94 memcpy(wl->fw, fw->data, wl->fw_len);
95
96 ret = 0;
97
98out:
99 release_firmware(fw);
100
101 return ret;
102}
103
Kalle Valo80301cd2009-06-12 14:17:39 +0300104static int wl1251_fetch_nvs(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300105{
106 const struct firmware *fw;
Bob Copeland6c766f42009-08-07 13:33:04 +0300107 struct device *dev = wiphy_dev(wl->hw->wiphy);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300108 int ret;
109
Kalle Valo0e71bb02009-08-07 13:33:57 +0300110 ret = request_firmware(&fw, WL1251_NVS_NAME, dev);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300111
112 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300113 wl1251_error("could not get nvs file: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300114 return ret;
115 }
116
117 if (fw->size % 4) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300118 wl1251_error("nvs size is not multiple of 32 bits: %zu",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300119 fw->size);
120 ret = -EILSEQ;
121 goto out;
122 }
123
124 wl->nvs_len = fw->size;
Julia Lawall80caf602010-05-15 23:15:10 +0200125 wl->nvs = kmemdup(fw->data, wl->nvs_len, GFP_KERNEL);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300126
127 if (!wl->nvs) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300128 wl1251_error("could not allocate memory for the nvs file");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300129 ret = -ENOMEM;
130 goto out;
131 }
132
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300133 ret = 0;
134
135out:
136 release_firmware(fw);
137
138 return ret;
139}
140
Kalle Valo80301cd2009-06-12 14:17:39 +0300141static void wl1251_fw_wakeup(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300142{
143 u32 elp_reg;
144
145 elp_reg = ELPCTRL_WAKE_UP;
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200146 wl1251_write_elp(wl, HW_ACCESS_ELP_CTRL_REG_ADDR, elp_reg);
147 elp_reg = wl1251_read_elp(wl, HW_ACCESS_ELP_CTRL_REG_ADDR);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300148
Kalle Valo05fac682009-06-12 14:17:47 +0300149 if (!(elp_reg & ELPCTRL_WLAN_READY))
Kalle Valo80301cd2009-06-12 14:17:39 +0300150 wl1251_warning("WLAN not ready");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300151}
152
Kalle Valo80301cd2009-06-12 14:17:39 +0300153static int wl1251_chip_wakeup(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300154{
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +0200155 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300156
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +0200157 ret = wl1251_power_on(wl);
158 if (ret < 0)
159 return ret;
160
Kalle Valo0e71bb02009-08-07 13:33:57 +0300161 msleep(WL1251_POWER_ON_SLEEP);
Bob Copeland08d9f5722009-08-07 13:33:11 +0300162 wl->if_ops->reset(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300163
164 /* We don't need a real memory partition here, because we only want
165 * to use the registers at this point. */
Kalle Valo80301cd2009-06-12 14:17:39 +0300166 wl1251_set_partition(wl,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300167 0x00000000,
168 0x00000000,
169 REGISTERS_BASE,
170 REGISTERS_DOWN_SIZE);
171
172 /* ELP module wake up */
Kalle Valo80301cd2009-06-12 14:17:39 +0300173 wl1251_fw_wakeup(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300174
175 /* whal_FwCtrl_BootSm() */
176
177 /* 0. read chip id from CHIP_ID */
Kalle Valo0e71bb02009-08-07 13:33:57 +0300178 wl->chip_id = wl1251_reg_read32(wl, CHIP_ID_B);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300179
180 /* 1. check if chip id is valid */
181
Kalle Valo0e71bb02009-08-07 13:33:57 +0300182 switch (wl->chip_id) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300183 case CHIP_ID_1251_PG12:
Kalle Valo80301cd2009-06-12 14:17:39 +0300184 wl1251_debug(DEBUG_BOOT, "chip id 0x%x (1251 PG12)",
Kalle Valo0e71bb02009-08-07 13:33:57 +0300185 wl->chip_id);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300186 break;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300187 case CHIP_ID_1251_PG11:
David-John Willis2c759e02009-10-15 14:38:16 +0100188 wl1251_debug(DEBUG_BOOT, "chip id 0x%x (1251 PG11)",
189 wl->chip_id);
190 break;
John W. Linville9a493e82009-10-27 15:15:05 -0400191 case CHIP_ID_1251_PG10:
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300192 default:
Kalle Valo0e71bb02009-08-07 13:33:57 +0300193 wl1251_error("unsupported chip id: 0x%x", wl->chip_id);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300194 ret = -ENODEV;
195 goto out;
196 }
197
198 if (wl->fw == NULL) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300199 ret = wl1251_fetch_firmware(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300200 if (ret < 0)
201 goto out;
202 }
203
Grazvydas Ignotasafa5ec22010-04-13 01:21:40 +0300204 if (wl->nvs == NULL && !wl->use_eeprom) {
205 /* No NVS from netlink, try to get it from the filesystem */
Kalle Valo80301cd2009-06-12 14:17:39 +0300206 ret = wl1251_fetch_nvs(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300207 if (ret < 0)
208 goto out;
209 }
210
211out:
212 return ret;
213}
214
Janne Ylalehtodcea4db2009-11-17 18:49:31 +0200215#define WL1251_IRQ_LOOP_COUNT 10
Kalle Valo0e71bb02009-08-07 13:33:57 +0300216static void wl1251_irq_work(struct work_struct *work)
217{
Janne Ylalehtodcea4db2009-11-17 18:49:31 +0200218 u32 intr, ctr = WL1251_IRQ_LOOP_COUNT;
Kalle Valo0e71bb02009-08-07 13:33:57 +0300219 struct wl1251 *wl =
220 container_of(work, struct wl1251, irq_work);
221 int ret;
222
223 mutex_lock(&wl->mutex);
224
225 wl1251_debug(DEBUG_IRQ, "IRQ work");
226
227 if (wl->state == WL1251_STATE_OFF)
228 goto out;
229
230 ret = wl1251_ps_elp_wakeup(wl);
231 if (ret < 0)
232 goto out;
233
234 wl1251_reg_write32(wl, ACX_REG_INTERRUPT_MASK, WL1251_ACX_INTR_ALL);
235
236 intr = wl1251_reg_read32(wl, ACX_REG_INTERRUPT_CLEAR);
237 wl1251_debug(DEBUG_IRQ, "intr: 0x%x", intr);
238
Janne Ylalehtodcea4db2009-11-17 18:49:31 +0200239 do {
240 if (wl->data_path) {
241 wl->rx_counter = wl1251_mem_read32(
242 wl, wl->data_path->rx_control_addr);
Kalle Valo0e71bb02009-08-07 13:33:57 +0300243
Janne Ylalehtodcea4db2009-11-17 18:49:31 +0200244 /* We handle a frmware bug here */
245 switch ((wl->rx_counter - wl->rx_handled) & 0xf) {
246 case 0:
247 wl1251_debug(DEBUG_IRQ,
248 "RX: FW and host in sync");
249 intr &= ~WL1251_ACX_INTR_RX0_DATA;
250 intr &= ~WL1251_ACX_INTR_RX1_DATA;
251 break;
252 case 1:
253 wl1251_debug(DEBUG_IRQ, "RX: FW +1");
254 intr |= WL1251_ACX_INTR_RX0_DATA;
255 intr &= ~WL1251_ACX_INTR_RX1_DATA;
256 break;
257 case 2:
258 wl1251_debug(DEBUG_IRQ, "RX: FW +2");
259 intr |= WL1251_ACX_INTR_RX0_DATA;
260 intr |= WL1251_ACX_INTR_RX1_DATA;
261 break;
262 default:
263 wl1251_warning(
264 "RX: FW and host out of sync: %d",
265 wl->rx_counter - wl->rx_handled);
266 break;
267 }
268
269 wl->rx_handled = wl->rx_counter;
270
271 wl1251_debug(DEBUG_IRQ, "RX counter: %d",
272 wl->rx_counter);
Kalle Valo0e71bb02009-08-07 13:33:57 +0300273 }
274
Janne Ylalehtodcea4db2009-11-17 18:49:31 +0200275 intr &= wl->intr_mask;
Kalle Valo0e71bb02009-08-07 13:33:57 +0300276
Janne Ylalehtodcea4db2009-11-17 18:49:31 +0200277 if (intr == 0) {
278 wl1251_debug(DEBUG_IRQ, "INTR is 0");
279 goto out_sleep;
280 }
Kalle Valo0e71bb02009-08-07 13:33:57 +0300281
Janne Ylalehtodcea4db2009-11-17 18:49:31 +0200282 if (intr & WL1251_ACX_INTR_RX0_DATA) {
283 wl1251_debug(DEBUG_IRQ, "WL1251_ACX_INTR_RX0_DATA");
284 wl1251_rx(wl);
285 }
Kalle Valo0e71bb02009-08-07 13:33:57 +0300286
Janne Ylalehtodcea4db2009-11-17 18:49:31 +0200287 if (intr & WL1251_ACX_INTR_RX1_DATA) {
288 wl1251_debug(DEBUG_IRQ, "WL1251_ACX_INTR_RX1_DATA");
289 wl1251_rx(wl);
290 }
Kalle Valo0e71bb02009-08-07 13:33:57 +0300291
Janne Ylalehtodcea4db2009-11-17 18:49:31 +0200292 if (intr & WL1251_ACX_INTR_TX_RESULT) {
293 wl1251_debug(DEBUG_IRQ, "WL1251_ACX_INTR_TX_RESULT");
294 wl1251_tx_complete(wl);
295 }
Kalle Valo0e71bb02009-08-07 13:33:57 +0300296
Grazvydas Ignotasd41776fa2010-08-17 22:46:53 +0300297 if (intr & WL1251_ACX_INTR_EVENT_A) {
298 wl1251_debug(DEBUG_IRQ, "WL1251_ACX_INTR_EVENT_A");
299 wl1251_event_handle(wl, 0);
300 }
301
302 if (intr & WL1251_ACX_INTR_EVENT_B) {
303 wl1251_debug(DEBUG_IRQ, "WL1251_ACX_INTR_EVENT_B");
304 wl1251_event_handle(wl, 1);
Janne Ylalehtodcea4db2009-11-17 18:49:31 +0200305 }
Kalle Valo0e71bb02009-08-07 13:33:57 +0300306
Janne Ylalehtodcea4db2009-11-17 18:49:31 +0200307 if (intr & WL1251_ACX_INTR_INIT_COMPLETE)
308 wl1251_debug(DEBUG_IRQ,
309 "WL1251_ACX_INTR_INIT_COMPLETE");
Kalle Valo0e71bb02009-08-07 13:33:57 +0300310
Juuso Oikarinen79553f82009-11-17 18:49:46 +0200311 if (--ctr == 0)
312 break;
Kalle Valo0e71bb02009-08-07 13:33:57 +0300313
Juuso Oikarinen79553f82009-11-17 18:49:46 +0200314 intr = wl1251_reg_read32(wl, ACX_REG_INTERRUPT_CLEAR);
315 } while (intr);
Kalle Valo0e71bb02009-08-07 13:33:57 +0300316
317out_sleep:
Janne Ylalehtodcea4db2009-11-17 18:49:31 +0200318 wl1251_reg_write32(wl, ACX_REG_INTERRUPT_MASK, ~(wl->intr_mask));
Kalle Valo0e71bb02009-08-07 13:33:57 +0300319 wl1251_ps_elp_sleep(wl);
320
321out:
322 mutex_unlock(&wl->mutex);
323}
324
Kalle Valoae46ae12009-08-07 13:34:42 +0300325static int wl1251_join(struct wl1251 *wl, u8 bss_type, u8 channel,
326 u16 beacon_interval, u8 dtim_period)
327{
328 int ret;
329
330 ret = wl1251_acx_frame_rates(wl, DEFAULT_HW_GEN_TX_RATE,
331 DEFAULT_HW_GEN_MODULATION_TYPE,
332 wl->tx_mgmt_frm_rate,
333 wl->tx_mgmt_frm_mod);
334 if (ret < 0)
335 goto out;
336
Grazvydas Ignotasa2d2bb82012-06-16 22:31:49 +0300337 /*
338 * Join command applies filters, and if we are not associated,
339 * BSSID filter must be disabled for association to work.
340 */
341 if (is_zero_ether_addr(wl->bssid))
342 wl->rx_config &= ~CFG_BSSID_FILTER_EN;
Kalle Valoae46ae12009-08-07 13:34:42 +0300343
344 ret = wl1251_cmd_join(wl, bss_type, channel, beacon_interval,
345 dtim_period);
346 if (ret < 0)
347 goto out;
348
Grazvydas Ignotas7273b972010-08-17 22:46:55 +0300349 ret = wl1251_event_wait(wl, JOIN_EVENT_COMPLETE_ID, 100);
350 if (ret < 0)
351 wl1251_warning("join timeout");
Kalle Valoae46ae12009-08-07 13:34:42 +0300352
353out:
354 return ret;
355}
356
Thomas Huehn36323f82012-07-23 21:33:42 +0200357static void wl1251_op_tx(struct ieee80211_hw *hw,
358 struct ieee80211_tx_control *control,
359 struct sk_buff *skb)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300360{
Kalle Valo80301cd2009-06-12 14:17:39 +0300361 struct wl1251 *wl = hw->priv;
Denis 'GNUtoo' Carikli9df86e22010-08-27 23:48:19 +0200362 unsigned long flags;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300363
364 skb_queue_tail(&wl->tx_queue, skb);
365
Juuso Oikarinen9f2ad4f2009-06-12 14:15:54 +0300366 /*
367 * The chip specific setup must run before the first TX packet -
368 * before that, the tx_work will not be initialized!
369 */
370
Kalle Valo16e711f2009-08-07 13:35:04 +0300371 ieee80211_queue_work(wl->hw, &wl->tx_work);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300372
373 /*
374 * The workqueue is slow to process the tx_queue and we need stop
375 * the queue here, otherwise the queue will get too long.
376 */
Denis 'GNUtoo' Carikli9df86e22010-08-27 23:48:19 +0200377 if (skb_queue_len(&wl->tx_queue) >= WL1251_TX_QUEUE_HIGH_WATERMARK) {
Kalle Valod67e2612009-11-30 10:17:45 +0200378 wl1251_debug(DEBUG_TX, "op_tx: tx_queue full, stop queues");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300379
Denis 'GNUtoo' Carikli9df86e22010-08-27 23:48:19 +0200380 spin_lock_irqsave(&wl->wl_lock, flags);
381 ieee80211_stop_queues(wl->hw);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300382 wl->tx_queue_stopped = true;
Denis 'GNUtoo' Carikli9df86e22010-08-27 23:48:19 +0200383 spin_unlock_irqrestore(&wl->wl_lock, flags);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300384 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300385}
386
Kalle Valo80301cd2009-06-12 14:17:39 +0300387static int wl1251_op_start(struct ieee80211_hw *hw)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300388{
Kalle Valo80301cd2009-06-12 14:17:39 +0300389 struct wl1251 *wl = hw->priv;
John W. Linville8b28e822010-07-28 16:59:41 -0400390 struct wiphy *wiphy = hw->wiphy;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300391 int ret = 0;
392
Kalle Valo80301cd2009-06-12 14:17:39 +0300393 wl1251_debug(DEBUG_MAC80211, "mac80211 start");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300394
395 mutex_lock(&wl->mutex);
396
Kalle Valo80301cd2009-06-12 14:17:39 +0300397 if (wl->state != WL1251_STATE_OFF) {
398 wl1251_error("cannot start because not in off state: %d",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300399 wl->state);
400 ret = -EBUSY;
401 goto out;
402 }
403
Kalle Valo80301cd2009-06-12 14:17:39 +0300404 ret = wl1251_chip_wakeup(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300405 if (ret < 0)
Jiri Slabyfe643412009-07-14 22:37:13 +0200406 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300407
Kalle Valo0e71bb02009-08-07 13:33:57 +0300408 ret = wl1251_boot(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300409 if (ret < 0)
410 goto out;
411
Kalle Valo0e71bb02009-08-07 13:33:57 +0300412 ret = wl1251_hw_init(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300413 if (ret < 0)
414 goto out;
415
Kalle Valo80301cd2009-06-12 14:17:39 +0300416 ret = wl1251_acx_station_id(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300417 if (ret < 0)
418 goto out;
419
Kalle Valo80301cd2009-06-12 14:17:39 +0300420 wl->state = WL1251_STATE_ON;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300421
Kalle Valo0e71bb02009-08-07 13:33:57 +0300422 wl1251_info("firmware booted (%s)", wl->fw_ver);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300423
John W. Linville8b28e822010-07-28 16:59:41 -0400424 /* update hw/fw version info in wiphy struct */
425 wiphy->hw_version = wl->chip_id;
426 strncpy(wiphy->fw_version, wl->fw_ver, sizeof(wiphy->fw_version));
427
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300428out:
429 if (ret < 0)
Kalle Valo80301cd2009-06-12 14:17:39 +0300430 wl1251_power_off(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300431
432 mutex_unlock(&wl->mutex);
433
434 return ret;
435}
436
Kalle Valo80301cd2009-06-12 14:17:39 +0300437static void wl1251_op_stop(struct ieee80211_hw *hw)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300438{
Kalle Valo80301cd2009-06-12 14:17:39 +0300439 struct wl1251 *wl = hw->priv;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300440
Kalle Valo80301cd2009-06-12 14:17:39 +0300441 wl1251_info("down");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300442
Kalle Valo80301cd2009-06-12 14:17:39 +0300443 wl1251_debug(DEBUG_MAC80211, "mac80211 stop");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300444
445 mutex_lock(&wl->mutex);
446
Kalle Valo80301cd2009-06-12 14:17:39 +0300447 WARN_ON(wl->state != WL1251_STATE_ON);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300448
449 if (wl->scanning) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300450 ieee80211_scan_completed(wl->hw, true);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300451 wl->scanning = false;
452 }
453
Kalle Valo80301cd2009-06-12 14:17:39 +0300454 wl->state = WL1251_STATE_OFF;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300455
Kalle Valo80301cd2009-06-12 14:17:39 +0300456 wl1251_disable_interrupts(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300457
458 mutex_unlock(&wl->mutex);
459
460 cancel_work_sync(&wl->irq_work);
461 cancel_work_sync(&wl->tx_work);
Grazvydas Ignotas4c1bcdb2012-04-26 23:07:44 +0300462 cancel_delayed_work_sync(&wl->elp_work);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300463
464 mutex_lock(&wl->mutex);
465
466 /* let's notify MAC80211 about the remaining pending TX frames */
Kalle Valo0e71bb02009-08-07 13:33:57 +0300467 wl1251_tx_flush(wl);
Kalle Valo80301cd2009-06-12 14:17:39 +0300468 wl1251_power_off(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300469
470 memset(wl->bssid, 0, ETH_ALEN);
471 wl->listen_int = 1;
472 wl->bss_type = MAX_BSS_TYPE;
473
474 wl->data_in_count = 0;
475 wl->rx_counter = 0;
476 wl->rx_handled = 0;
477 wl->rx_current_buffer = 0;
478 wl->rx_last_id = 0;
479 wl->next_tx_complete = 0;
480 wl->elp = false;
Jarkko Nikulaa0bbb582011-04-04 11:04:57 +0300481 wl->station_mode = STATION_ACTIVE_MODE;
David Gnedtf7ad1ee2014-01-07 13:05:45 +0100482 wl->psm_entry_retry = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300483 wl->tx_queue_stopped = false;
Kalle Valo80301cd2009-06-12 14:17:39 +0300484 wl->power_level = WL1251_DEFAULT_POWER_LEVEL;
David Gnedt8964e492011-01-30 20:11:00 +0100485 wl->rssi_thold = 0;
Kalle Valo97802792009-08-07 13:34:27 +0300486 wl->channel = WL1251_DEFAULT_CHANNEL;
David Gnedt4d09b532014-01-07 13:07:52 +0100487 wl->monitor_present = false;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300488
Kalle Valo80301cd2009-06-12 14:17:39 +0300489 wl1251_debugfs_reset(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300490
491 mutex_unlock(&wl->mutex);
492}
493
Kalle Valo80301cd2009-06-12 14:17:39 +0300494static int wl1251_op_add_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +0100495 struct ieee80211_vif *vif)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300496{
Kalle Valo80301cd2009-06-12 14:17:39 +0300497 struct wl1251 *wl = hw->priv;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300498 int ret = 0;
499
Johannes Bergea086352012-01-19 09:29:58 +0100500 vif->driver_flags |= IEEE80211_VIF_BEACON_FILTER |
501 IEEE80211_VIF_SUPPORTS_CQM_RSSI;
Johannes Bergc1288b12012-01-19 09:29:57 +0100502
Johannes Berge91d8332009-07-15 17:21:41 +0200503 wl1251_debug(DEBUG_MAC80211, "mac80211 add interface type %d mac %pM",
Johannes Berg1ed32e42009-12-23 13:15:45 +0100504 vif->type, vif->addr);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300505
506 mutex_lock(&wl->mutex);
Juuso Oikarinen287f6f92009-11-17 18:48:23 +0200507 if (wl->vif) {
508 ret = -EBUSY;
509 goto out;
510 }
511
Johannes Berg1ed32e42009-12-23 13:15:45 +0100512 wl->vif = vif;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300513
Johannes Berg1ed32e42009-12-23 13:15:45 +0100514 switch (vif->type) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300515 case NL80211_IFTYPE_STATION:
516 wl->bss_type = BSS_TYPE_STA_BSS;
517 break;
518 case NL80211_IFTYPE_ADHOC:
519 wl->bss_type = BSS_TYPE_IBSS;
520 break;
521 default:
522 ret = -EOPNOTSUPP;
523 goto out;
524 }
525
Johannes Berg1ed32e42009-12-23 13:15:45 +0100526 if (memcmp(wl->mac_addr, vif->addr, ETH_ALEN)) {
527 memcpy(wl->mac_addr, vif->addr, ETH_ALEN);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300528 SET_IEEE80211_PERM_ADDR(wl->hw, wl->mac_addr);
Kalle Valo80301cd2009-06-12 14:17:39 +0300529 ret = wl1251_acx_station_id(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300530 if (ret < 0)
531 goto out;
532 }
533
534out:
535 mutex_unlock(&wl->mutex);
536 return ret;
537}
538
Kalle Valo80301cd2009-06-12 14:17:39 +0300539static void wl1251_op_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +0100540 struct ieee80211_vif *vif)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300541{
Juuso Oikarinen287f6f92009-11-17 18:48:23 +0200542 struct wl1251 *wl = hw->priv;
543
544 mutex_lock(&wl->mutex);
Kalle Valo80301cd2009-06-12 14:17:39 +0300545 wl1251_debug(DEBUG_MAC80211, "mac80211 remove interface");
Juuso Oikarinen287f6f92009-11-17 18:48:23 +0200546 wl->vif = NULL;
547 mutex_unlock(&wl->mutex);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300548}
549
Kalle Valo8f8ff9162010-01-12 10:43:07 +0200550static int wl1251_build_qos_null_data(struct wl1251 *wl)
551{
552 struct ieee80211_qos_hdr template;
553
554 memset(&template, 0, sizeof(template));
555
556 memcpy(template.addr1, wl->bssid, ETH_ALEN);
557 memcpy(template.addr2, wl->mac_addr, ETH_ALEN);
558 memcpy(template.addr3, wl->bssid, ETH_ALEN);
559
560 template.frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
561 IEEE80211_STYPE_QOS_NULLFUNC |
562 IEEE80211_FCTL_TODS);
563
564 /* FIXME: not sure what priority to use here */
565 template.qos_ctrl = cpu_to_le16(0);
566
567 return wl1251_cmd_template_set(wl, CMD_QOS_NULL_DATA, &template,
568 sizeof(template));
569}
570
Kalle Valo80301cd2009-06-12 14:17:39 +0300571static int wl1251_op_config(struct ieee80211_hw *hw, u32 changed)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300572{
Kalle Valo80301cd2009-06-12 14:17:39 +0300573 struct wl1251 *wl = hw->priv;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300574 struct ieee80211_conf *conf = &hw->conf;
575 int channel, ret = 0;
576
Karl Beldan675a0b02013-03-25 16:26:57 +0100577 channel = ieee80211_frequency_to_channel(
578 conf->chandef.chan->center_freq);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300579
David Gnedt4d09b532014-01-07 13:07:52 +0100580 wl1251_debug(DEBUG_MAC80211,
581 "mac80211 config ch %d monitor %s psm %s power %d",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300582 channel,
David Gnedt4d09b532014-01-07 13:07:52 +0100583 conf->flags & IEEE80211_CONF_MONITOR ? "on" : "off",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300584 conf->flags & IEEE80211_CONF_PS ? "on" : "off",
585 conf->power_level);
586
587 mutex_lock(&wl->mutex);
588
Kalle Valo80301cd2009-06-12 14:17:39 +0300589 ret = wl1251_ps_elp_wakeup(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300590 if (ret < 0)
591 goto out;
Kalle Valo01d9cfb2009-06-12 14:16:26 +0300592
David Gnedt4d09b532014-01-07 13:07:52 +0100593 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
594 u32 mode;
595
596 if (conf->flags & IEEE80211_CONF_MONITOR) {
597 wl->monitor_present = true;
598 mode = DF_SNIFF_MODE_ENABLE | DF_ENCRYPTION_DISABLE;
599 } else {
600 wl->monitor_present = false;
601 mode = 0;
602 }
603
604 ret = wl1251_acx_feature_cfg(wl, mode);
605 if (ret < 0)
606 goto out_sleep;
607 }
608
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300609 if (channel != wl->channel) {
Kalle Valofe9a9842009-08-07 13:34:49 +0300610 wl->channel = channel;
611
Kalle Valoae46ae12009-08-07 13:34:42 +0300612 ret = wl1251_join(wl, wl->bss_type, wl->channel,
613 wl->beacon_int, wl->dtim_period);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300614 if (ret < 0)
Kalle Valoc5483b72009-06-12 14:16:32 +0300615 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300616 }
617
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300618 if (conf->flags & IEEE80211_CONF_PS && !wl->psm_requested) {
Luciano Coelho47af3fe2009-06-12 14:17:53 +0300619 wl1251_debug(DEBUG_PSM, "psm enabled");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300620
621 wl->psm_requested = true;
622
Johannes Berg56007a02010-01-26 14:19:52 +0100623 wl->dtim_period = conf->ps_dtim_period;
624
625 ret = wl1251_acx_wr_tbtt_and_dtim(wl, wl->beacon_int,
626 wl->dtim_period);
627
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300628 /*
Johannes Berg56007a02010-01-26 14:19:52 +0100629 * mac80211 enables PSM only if we're already associated.
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300630 */
Kalle Valo80301cd2009-06-12 14:17:39 +0300631 ret = wl1251_ps_set_mode(wl, STATION_POWER_SAVE_MODE);
Kalle Valo478fdf22009-11-30 10:17:52 +0200632 if (ret < 0)
633 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300634 } else if (!(conf->flags & IEEE80211_CONF_PS) &&
635 wl->psm_requested) {
Luciano Coelho47af3fe2009-06-12 14:17:53 +0300636 wl1251_debug(DEBUG_PSM, "psm disabled");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300637
638 wl->psm_requested = false;
639
Jarkko Nikulaa0bbb582011-04-04 11:04:57 +0300640 if (wl->station_mode != STATION_ACTIVE_MODE) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300641 ret = wl1251_ps_set_mode(wl, STATION_ACTIVE_MODE);
Kalle Valo478fdf22009-11-30 10:17:52 +0200642 if (ret < 0)
643 goto out_sleep;
644 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300645 }
646
Johannes Bergf1e3e052013-02-06 23:57:57 +0100647 if (changed & IEEE80211_CONF_CHANGE_IDLE && !wl->scanning) {
Jarkko Nikula1e5f52d2011-04-04 11:04:58 +0300648 if (conf->flags & IEEE80211_CONF_IDLE) {
649 ret = wl1251_ps_set_mode(wl, STATION_IDLE);
650 if (ret < 0)
651 goto out_sleep;
652 } else {
653 ret = wl1251_ps_set_mode(wl, STATION_ACTIVE_MODE);
654 if (ret < 0)
655 goto out_sleep;
656 ret = wl1251_join(wl, wl->bss_type, wl->channel,
657 wl->beacon_int, wl->dtim_period);
658 if (ret < 0)
659 goto out_sleep;
660 }
661 }
662
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300663 if (conf->power_level != wl->power_level) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300664 ret = wl1251_acx_tx_power(wl, conf->power_level);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300665 if (ret < 0)
Kalle Valo478fdf22009-11-30 10:17:52 +0200666 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300667
668 wl->power_level = conf->power_level;
669 }
670
Kalle Valoc5483b72009-06-12 14:16:32 +0300671out_sleep:
Kalle Valo80301cd2009-06-12 14:17:39 +0300672 wl1251_ps_elp_sleep(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300673
674out:
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300675 mutex_unlock(&wl->mutex);
Kalle Valoc5483b72009-06-12 14:16:32 +0300676
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300677 return ret;
678}
679
Kalle Valo80301cd2009-06-12 14:17:39 +0300680#define WL1251_SUPPORTED_FILTERS (FIF_PROMISC_IN_BSS | \
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300681 FIF_ALLMULTI | \
682 FIF_FCSFAIL | \
683 FIF_BCN_PRBRESP_PROMISC | \
684 FIF_CONTROL | \
Grazvydas Ignotas84b60c12012-06-16 22:31:50 +0300685 FIF_OTHER_BSS | \
686 FIF_PROBE_REQ)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300687
Kalle Valo80301cd2009-06-12 14:17:39 +0300688static void wl1251_op_configure_filter(struct ieee80211_hw *hw,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300689 unsigned int changed,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200690 unsigned int *total,u64 multicast)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300691{
Kalle Valo80301cd2009-06-12 14:17:39 +0300692 struct wl1251 *wl = hw->priv;
Grazvydas Ignotas84b60c12012-06-16 22:31:50 +0300693 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300694
Kalle Valo80301cd2009-06-12 14:17:39 +0300695 wl1251_debug(DEBUG_MAC80211, "mac80211 configure filter");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300696
Kalle Valo80301cd2009-06-12 14:17:39 +0300697 *total &= WL1251_SUPPORTED_FILTERS;
698 changed &= WL1251_SUPPORTED_FILTERS;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300699
700 if (changed == 0)
701 /* no filters which we support changed */
702 return;
703
Grazvydas Ignotas84b60c12012-06-16 22:31:50 +0300704 mutex_lock(&wl->mutex);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300705
Kalle Valo80301cd2009-06-12 14:17:39 +0300706 wl->rx_config = WL1251_DEFAULT_RX_CONFIG;
707 wl->rx_filter = WL1251_DEFAULT_RX_FILTER;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300708
709 if (*total & FIF_PROMISC_IN_BSS) {
710 wl->rx_config |= CFG_BSSID_FILTER_EN;
711 wl->rx_config |= CFG_RX_ALL_GOOD;
712 }
713 if (*total & FIF_ALLMULTI)
714 /*
715 * CFG_MC_FILTER_EN in rx_config needs to be 0 to receive
716 * all multicast frames
717 */
718 wl->rx_config &= ~CFG_MC_FILTER_EN;
719 if (*total & FIF_FCSFAIL)
720 wl->rx_filter |= CFG_RX_FCS_ERROR;
721 if (*total & FIF_BCN_PRBRESP_PROMISC) {
722 wl->rx_config &= ~CFG_BSSID_FILTER_EN;
723 wl->rx_config &= ~CFG_SSID_FILTER_EN;
724 }
725 if (*total & FIF_CONTROL)
726 wl->rx_filter |= CFG_RX_CTL_EN;
Grazvydas Ignotas84b60c12012-06-16 22:31:50 +0300727 if (*total & FIF_OTHER_BSS || is_zero_ether_addr(wl->bssid))
728 wl->rx_config &= ~CFG_BSSID_FILTER_EN;
729 if (*total & FIF_PROBE_REQ)
730 wl->rx_filter |= CFG_RX_PREQ_EN;
731
732 if (wl->state == WL1251_STATE_OFF)
733 goto out;
734
735 ret = wl1251_ps_elp_wakeup(wl);
736 if (ret < 0)
737 goto out;
738
739 /* send filters to firmware */
740 wl1251_acx_rx_config(wl, wl->rx_config, wl->rx_filter);
741
742 wl1251_ps_elp_sleep(wl);
743
744out:
745 mutex_unlock(&wl->mutex);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300746}
747
748/* HW encryption */
Kalle Valo80301cd2009-06-12 14:17:39 +0300749static int wl1251_set_key_type(struct wl1251 *wl,
750 struct wl1251_cmd_set_keys *key,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300751 enum set_key_cmd cmd,
752 struct ieee80211_key_conf *mac80211_key,
753 const u8 *addr)
754{
Johannes Berg97359d12010-08-10 09:46:38 +0200755 switch (mac80211_key->cipher) {
756 case WLAN_CIPHER_SUITE_WEP40:
757 case WLAN_CIPHER_SUITE_WEP104:
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300758 if (is_broadcast_ether_addr(addr))
759 key->key_type = KEY_WEP_DEFAULT;
760 else
761 key->key_type = KEY_WEP_ADDR;
762
763 mac80211_key->hw_key_idx = mac80211_key->keyidx;
764 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200765 case WLAN_CIPHER_SUITE_TKIP:
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300766 if (is_broadcast_ether_addr(addr))
767 key->key_type = KEY_TKIP_MIC_GROUP;
768 else
769 key->key_type = KEY_TKIP_MIC_PAIRWISE;
770
771 mac80211_key->hw_key_idx = mac80211_key->keyidx;
772 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200773 case WLAN_CIPHER_SUITE_CCMP:
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300774 if (is_broadcast_ether_addr(addr))
775 key->key_type = KEY_AES_GROUP;
776 else
777 key->key_type = KEY_AES_PAIRWISE;
778 mac80211_key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
779 break;
780 default:
Johannes Berg97359d12010-08-10 09:46:38 +0200781 wl1251_error("Unknown key cipher 0x%x", mac80211_key->cipher);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300782 return -EOPNOTSUPP;
783 }
784
785 return 0;
786}
787
Kalle Valo80301cd2009-06-12 14:17:39 +0300788static int wl1251_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300789 struct ieee80211_vif *vif,
790 struct ieee80211_sta *sta,
791 struct ieee80211_key_conf *key)
792{
Kalle Valo80301cd2009-06-12 14:17:39 +0300793 struct wl1251 *wl = hw->priv;
794 struct wl1251_cmd_set_keys *wl_cmd;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300795 const u8 *addr;
796 int ret;
797
798 static const u8 bcast_addr[ETH_ALEN] =
799 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
800
Kalle Valo80301cd2009-06-12 14:17:39 +0300801 wl1251_debug(DEBUG_MAC80211, "mac80211 set key");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300802
Kalle Valoff258392009-06-12 14:14:19 +0300803 wl_cmd = kzalloc(sizeof(*wl_cmd), GFP_KERNEL);
804 if (!wl_cmd) {
805 ret = -ENOMEM;
806 goto out;
807 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300808
809 addr = sta ? sta->addr : bcast_addr;
810
Kalle Valo80301cd2009-06-12 14:17:39 +0300811 wl1251_debug(DEBUG_CRYPT, "CMD: 0x%x", cmd);
812 wl1251_dump(DEBUG_CRYPT, "ADDR: ", addr, ETH_ALEN);
813 wl1251_debug(DEBUG_CRYPT, "Key: algo:0x%x, id:%d, len:%d flags 0x%x",
Johannes Berg97359d12010-08-10 09:46:38 +0200814 key->cipher, key->keyidx, key->keylen, key->flags);
Kalle Valo80301cd2009-06-12 14:17:39 +0300815 wl1251_dump(DEBUG_CRYPT, "KEY: ", key->key, key->keylen);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300816
Kalle Valoff258392009-06-12 14:14:19 +0300817 if (is_zero_ether_addr(addr)) {
818 /* We dont support TX only encryption */
819 ret = -EOPNOTSUPP;
820 goto out;
821 }
822
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300823 mutex_lock(&wl->mutex);
824
825 switch (cmd) {
826 case SET_KEY:
David Gnedt4d09b532014-01-07 13:07:52 +0100827 if (wl->monitor_present) {
828 ret = -EOPNOTSUPP;
829 goto out_unlock;
830 }
Kalle Valoff258392009-06-12 14:14:19 +0300831 wl_cmd->key_action = KEY_ADD_OR_REPLACE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300832 break;
833 case DISABLE_KEY:
Kalle Valoff258392009-06-12 14:14:19 +0300834 wl_cmd->key_action = KEY_REMOVE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300835 break;
836 default:
Kalle Valo80301cd2009-06-12 14:17:39 +0300837 wl1251_error("Unsupported key cmd 0x%x", cmd);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300838 break;
839 }
840
David Gnedt4d09b532014-01-07 13:07:52 +0100841 ret = wl1251_ps_elp_wakeup(wl);
842 if (ret < 0)
843 goto out_unlock;
844
Kalle Valo80301cd2009-06-12 14:17:39 +0300845 ret = wl1251_set_key_type(wl, wl_cmd, cmd, key, addr);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300846 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300847 wl1251_error("Set KEY type failed");
Kalle Valoc5483b72009-06-12 14:16:32 +0300848 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300849 }
850
Kalle Valoff258392009-06-12 14:14:19 +0300851 if (wl_cmd->key_type != KEY_WEP_DEFAULT)
852 memcpy(wl_cmd->addr, addr, ETH_ALEN);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300853
Kalle Valoff258392009-06-12 14:14:19 +0300854 if ((wl_cmd->key_type == KEY_TKIP_MIC_GROUP) ||
855 (wl_cmd->key_type == KEY_TKIP_MIC_PAIRWISE)) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300856 /*
857 * We get the key in the following form:
858 * TKIP (16 bytes) - TX MIC (8 bytes) - RX MIC (8 bytes)
859 * but the target is expecting:
860 * TKIP - RX MIC - TX MIC
861 */
Kalle Valoff258392009-06-12 14:14:19 +0300862 memcpy(wl_cmd->key, key->key, 16);
863 memcpy(wl_cmd->key + 16, key->key + 24, 8);
864 memcpy(wl_cmd->key + 24, key->key + 16, 8);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300865
866 } else {
Kalle Valoff258392009-06-12 14:14:19 +0300867 memcpy(wl_cmd->key, key->key, key->keylen);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300868 }
Kalle Valoff258392009-06-12 14:14:19 +0300869 wl_cmd->key_size = key->keylen;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300870
Kalle Valoff258392009-06-12 14:14:19 +0300871 wl_cmd->id = key->keyidx;
872 wl_cmd->ssid_profile = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300873
Kalle Valo80301cd2009-06-12 14:17:39 +0300874 wl1251_dump(DEBUG_CRYPT, "TARGET KEY: ", wl_cmd, sizeof(*wl_cmd));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300875
Kalle Valo80301cd2009-06-12 14:17:39 +0300876 ret = wl1251_cmd_send(wl, CMD_SET_KEYS, wl_cmd, sizeof(*wl_cmd));
Kalle Valoff258392009-06-12 14:14:19 +0300877 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300878 wl1251_warning("could not set keys");
Kalle Valoc5483b72009-06-12 14:16:32 +0300879 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300880 }
881
Kalle Valoc5483b72009-06-12 14:16:32 +0300882out_sleep:
Kalle Valo80301cd2009-06-12 14:17:39 +0300883 wl1251_ps_elp_sleep(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300884
885out_unlock:
Kalle Valoff258392009-06-12 14:14:19 +0300886 mutex_unlock(&wl->mutex);
887
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300888out:
Kalle Valoff258392009-06-12 14:14:19 +0300889 kfree(wl_cmd);
890
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300891 return ret;
892}
893
Kalle Valo80301cd2009-06-12 14:17:39 +0300894static int wl1251_op_hw_scan(struct ieee80211_hw *hw,
Johannes Berga060bbf2010-04-27 11:59:34 +0200895 struct ieee80211_vif *vif,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300896 struct cfg80211_scan_request *req)
897{
Kalle Valo80301cd2009-06-12 14:17:39 +0300898 struct wl1251 *wl = hw->priv;
Kalle Valoe477c562010-01-05 20:16:57 +0200899 struct sk_buff *skb;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300900 size_t ssid_len = 0;
Kalle Valo3a98c302010-01-05 20:16:51 +0200901 u8 *ssid = NULL;
902 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300903
Kalle Valo80301cd2009-06-12 14:17:39 +0300904 wl1251_debug(DEBUG_MAC80211, "mac80211 hw scan");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300905
906 if (req->n_ssids) {
907 ssid = req->ssids[0].ssid;
908 ssid_len = req->ssids[0].ssid_len;
909 }
910
911 mutex_lock(&wl->mutex);
Kalle Valoc5483b72009-06-12 14:16:32 +0300912
Kalle Valo3a98c302010-01-05 20:16:51 +0200913 if (wl->scanning) {
914 wl1251_debug(DEBUG_SCAN, "scan already in progress");
915 ret = -EINVAL;
916 goto out;
917 }
918
Kalle Valo80301cd2009-06-12 14:17:39 +0300919 ret = wl1251_ps_elp_wakeup(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300920 if (ret < 0)
921 goto out;
Kalle Valo01d9cfb2009-06-12 14:16:26 +0300922
Johannes Bergf1e3e052013-02-06 23:57:57 +0100923 if (hw->conf.flags & IEEE80211_CONF_IDLE) {
924 ret = wl1251_ps_set_mode(wl, STATION_ACTIVE_MODE);
925 if (ret < 0)
926 goto out_sleep;
927 ret = wl1251_join(wl, wl->bss_type, wl->channel,
928 wl->beacon_int, wl->dtim_period);
929 if (ret < 0)
930 goto out_sleep;
931 }
932
Kalle Valoe477c562010-01-05 20:16:57 +0200933 skb = ieee80211_probereq_get(wl->hw, wl->vif, ssid, ssid_len,
Johannes Bergb9a9ada2012-11-29 13:00:10 +0100934 req->ie_len);
Kalle Valoe477c562010-01-05 20:16:57 +0200935 if (!skb) {
936 ret = -ENOMEM;
Johannes Bergf1e3e052013-02-06 23:57:57 +0100937 goto out_idle;
Kalle Valoe477c562010-01-05 20:16:57 +0200938 }
Johannes Bergb9a9ada2012-11-29 13:00:10 +0100939 if (req->ie_len)
940 memcpy(skb_put(skb, req->ie_len), req->ie, req->ie_len);
Kalle Valoe477c562010-01-05 20:16:57 +0200941
942 ret = wl1251_cmd_template_set(wl, CMD_PROBE_REQ, skb->data,
943 skb->len);
944 dev_kfree_skb(skb);
Kalle Valo3a98c302010-01-05 20:16:51 +0200945 if (ret < 0)
Johannes Bergf1e3e052013-02-06 23:57:57 +0100946 goto out_idle;
Kalle Valo01d9cfb2009-06-12 14:16:26 +0300947
Kalle Valo3a98c302010-01-05 20:16:51 +0200948 ret = wl1251_cmd_trigger_scan_to(wl, 0);
949 if (ret < 0)
Johannes Bergf1e3e052013-02-06 23:57:57 +0100950 goto out_idle;
Kalle Valo3a98c302010-01-05 20:16:51 +0200951
952 wl->scanning = true;
953
Kalle Valodc52f0a2010-01-05 20:17:03 +0200954 ret = wl1251_cmd_scan(wl, ssid, ssid_len, req->channels,
955 req->n_channels, WL1251_SCAN_NUM_PROBES);
Kalle Valo3a98c302010-01-05 20:16:51 +0200956 if (ret < 0) {
David Gnedt64322e22014-01-07 13:04:53 +0100957 wl1251_debug(DEBUG_SCAN, "scan failed %d", ret);
Kalle Valo3a98c302010-01-05 20:16:51 +0200958 wl->scanning = false;
Johannes Bergf1e3e052013-02-06 23:57:57 +0100959 goto out_idle;
Kalle Valo3a98c302010-01-05 20:16:51 +0200960 }
Johannes Bergf1e3e052013-02-06 23:57:57 +0100961 goto out_sleep;
Kalle Valo3a98c302010-01-05 20:16:51 +0200962
Johannes Bergf1e3e052013-02-06 23:57:57 +0100963out_idle:
964 if (hw->conf.flags & IEEE80211_CONF_IDLE)
965 ret = wl1251_ps_set_mode(wl, STATION_IDLE);
Kalle Valo3a98c302010-01-05 20:16:51 +0200966out_sleep:
Kalle Valo80301cd2009-06-12 14:17:39 +0300967 wl1251_ps_elp_sleep(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300968
969out:
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300970 mutex_unlock(&wl->mutex);
971
972 return ret;
973}
974
Kalle Valo80301cd2009-06-12 14:17:39 +0300975static int wl1251_op_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300976{
Kalle Valo80301cd2009-06-12 14:17:39 +0300977 struct wl1251 *wl = hw->priv;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300978 int ret;
979
Kalle Valocee4fd22009-06-12 14:16:20 +0300980 mutex_lock(&wl->mutex);
981
Kalle Valo80301cd2009-06-12 14:17:39 +0300982 ret = wl1251_ps_elp_wakeup(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300983 if (ret < 0)
984 goto out;
Kalle Valo01d9cfb2009-06-12 14:16:26 +0300985
Kalle Valo80301cd2009-06-12 14:17:39 +0300986 ret = wl1251_acx_rts_threshold(wl, (u16) value);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300987 if (ret < 0)
Kalle Valo80301cd2009-06-12 14:17:39 +0300988 wl1251_warning("wl1251_op_set_rts_threshold failed: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300989
Kalle Valo80301cd2009-06-12 14:17:39 +0300990 wl1251_ps_elp_sleep(wl);
Kalle Valo01d9cfb2009-06-12 14:16:26 +0300991
Kalle Valoc5483b72009-06-12 14:16:32 +0300992out:
Kalle Valocee4fd22009-06-12 14:16:20 +0300993 mutex_unlock(&wl->mutex);
994
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300995 return ret;
996}
997
Kalle Valo80301cd2009-06-12 14:17:39 +0300998static void wl1251_op_bss_info_changed(struct ieee80211_hw *hw,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300999 struct ieee80211_vif *vif,
1000 struct ieee80211_bss_conf *bss_conf,
1001 u32 changed)
1002{
Kalle Valo80301cd2009-06-12 14:17:39 +03001003 struct wl1251 *wl = hw->priv;
Kalle Valof7f70572010-01-05 20:16:32 +02001004 struct sk_buff *beacon, *skb;
David Gnedt204cc5c2014-01-07 13:06:24 +01001005 bool enable;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001006 int ret;
1007
Kalle Valo80301cd2009-06-12 14:17:39 +03001008 wl1251_debug(DEBUG_MAC80211, "mac80211 bss info changed");
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001009
1010 mutex_lock(&wl->mutex);
1011
Kalle Valo80301cd2009-06-12 14:17:39 +03001012 ret = wl1251_ps_elp_wakeup(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +03001013 if (ret < 0)
1014 goto out;
Kalle Valo01d9cfb2009-06-12 14:16:26 +03001015
David Gnedt8964e492011-01-30 20:11:00 +01001016 if (changed & BSS_CHANGED_CQM) {
1017 ret = wl1251_acx_low_rssi(wl, bss_conf->cqm_rssi_thold,
1018 WL1251_DEFAULT_LOW_RSSI_WEIGHT,
1019 WL1251_DEFAULT_LOW_RSSI_DEPTH,
1020 WL1251_ACX_LOW_RSSI_TYPE_EDGE);
1021 if (ret < 0)
1022 goto out;
1023 wl->rssi_thold = bss_conf->cqm_rssi_thold;
1024 }
1025
Kalle Valode8df1e2009-11-26 10:56:06 +02001026 if (changed & BSS_CHANGED_BSSID) {
1027 memcpy(wl->bssid, bss_conf->bssid, ETH_ALEN);
1028
Kalle Valof7f70572010-01-05 20:16:32 +02001029 skb = ieee80211_nullfunc_get(wl->hw, wl->vif);
1030 if (!skb)
1031 goto out_sleep;
1032
1033 ret = wl1251_cmd_template_set(wl, CMD_NULL_DATA,
1034 skb->data, skb->len);
1035 dev_kfree_skb(skb);
Kalle Valode8df1e2009-11-26 10:56:06 +02001036 if (ret < 0)
Kalle Valo80a112f2010-01-05 20:17:10 +02001037 goto out_sleep;
Kalle Valode8df1e2009-11-26 10:56:06 +02001038
Kalle Valo8f8ff9162010-01-12 10:43:07 +02001039 ret = wl1251_build_qos_null_data(wl);
1040 if (ret < 0)
1041 goto out;
1042
Kalle Valode8df1e2009-11-26 10:56:06 +02001043 if (wl->bss_type != BSS_TYPE_IBSS) {
1044 ret = wl1251_join(wl, wl->bss_type, wl->channel,
1045 wl->beacon_int, wl->dtim_period);
1046 if (ret < 0)
1047 goto out_sleep;
1048 }
1049 }
1050
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001051 if (changed & BSS_CHANGED_ASSOC) {
1052 if (bss_conf->assoc) {
Kalle Valoe2fd4612009-08-07 13:34:12 +03001053 wl->beacon_int = bss_conf->beacon_int;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001054
Kalle Valof7f70572010-01-05 20:16:32 +02001055 skb = ieee80211_pspoll_get(wl->hw, wl->vif);
1056 if (!skb)
1057 goto out_sleep;
1058
1059 ret = wl1251_cmd_template_set(wl, CMD_PS_POLL,
1060 skb->data,
1061 skb->len);
1062 dev_kfree_skb(skb);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001063 if (ret < 0)
Kalle Valoc5483b72009-06-12 14:16:32 +03001064 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001065
Johannes Berg56007a02010-01-26 14:19:52 +01001066 ret = wl1251_acx_aid(wl, bss_conf->aid);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001067 if (ret < 0)
Kalle Valoc5483b72009-06-12 14:16:32 +03001068 goto out_sleep;
Kalle Valoe2fd4612009-08-07 13:34:12 +03001069 } else {
1070 /* use defaults when not associated */
1071 wl->beacon_int = WL1251_DEFAULT_BEACON_INT;
1072 wl->dtim_period = WL1251_DEFAULT_DTIM_PERIOD;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001073 }
1074 }
1075 if (changed & BSS_CHANGED_ERP_SLOT) {
1076 if (bss_conf->use_short_slot)
Kalle Valo80301cd2009-06-12 14:17:39 +03001077 ret = wl1251_acx_slot(wl, SLOT_TIME_SHORT);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001078 else
Kalle Valo80301cd2009-06-12 14:17:39 +03001079 ret = wl1251_acx_slot(wl, SLOT_TIME_LONG);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001080 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +03001081 wl1251_warning("Set slot time failed %d", ret);
Kalle Valoc5483b72009-06-12 14:16:32 +03001082 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001083 }
1084 }
1085
1086 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
1087 if (bss_conf->use_short_preamble)
Kalle Valo80301cd2009-06-12 14:17:39 +03001088 wl1251_acx_set_preamble(wl, ACX_PREAMBLE_SHORT);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001089 else
Kalle Valo80301cd2009-06-12 14:17:39 +03001090 wl1251_acx_set_preamble(wl, ACX_PREAMBLE_LONG);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001091 }
1092
1093 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
1094 if (bss_conf->use_cts_prot)
Kalle Valo80301cd2009-06-12 14:17:39 +03001095 ret = wl1251_acx_cts_protect(wl, CTSPROTECT_ENABLE);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001096 else
Kalle Valo80301cd2009-06-12 14:17:39 +03001097 ret = wl1251_acx_cts_protect(wl, CTSPROTECT_DISABLE);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001098 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +03001099 wl1251_warning("Set ctsprotect failed %d", ret);
Kalle Valo80a112f2010-01-05 20:17:10 +02001100 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001101 }
1102 }
1103
David Gnedt204cc5c2014-01-07 13:06:24 +01001104 if (changed & BSS_CHANGED_ARP_FILTER) {
1105 __be32 addr = bss_conf->arp_addr_list[0];
1106 WARN_ON(wl->bss_type != BSS_TYPE_STA_BSS);
1107
1108 enable = bss_conf->arp_addr_cnt == 1 && bss_conf->assoc;
1109 wl1251_acx_arp_ip_filter(wl, enable, addr);
1110
1111 if (ret < 0)
1112 goto out_sleep;
1113 }
1114
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001115 if (changed & BSS_CHANGED_BEACON) {
1116 beacon = ieee80211_beacon_get(hw, vif);
Jesper Juhl4d048aa2011-02-03 21:14:01 +01001117 if (!beacon)
1118 goto out_sleep;
1119
Kalle Valo80301cd2009-06-12 14:17:39 +03001120 ret = wl1251_cmd_template_set(wl, CMD_BEACON, beacon->data,
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001121 beacon->len);
1122
1123 if (ret < 0) {
1124 dev_kfree_skb(beacon);
Kalle Valo80a112f2010-01-05 20:17:10 +02001125 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001126 }
1127
Kalle Valo80301cd2009-06-12 14:17:39 +03001128 ret = wl1251_cmd_template_set(wl, CMD_PROBE_RESP, beacon->data,
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001129 beacon->len);
1130
1131 dev_kfree_skb(beacon);
1132
1133 if (ret < 0)
Kalle Valo80a112f2010-01-05 20:17:10 +02001134 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001135
Kalle Valoae46ae12009-08-07 13:34:42 +03001136 ret = wl1251_join(wl, wl->bss_type, wl->beacon_int,
1137 wl->channel, wl->dtim_period);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001138
1139 if (ret < 0)
Kalle Valo80a112f2010-01-05 20:17:10 +02001140 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001141 }
1142
Kalle Valoc5483b72009-06-12 14:16:32 +03001143out_sleep:
Kalle Valo80301cd2009-06-12 14:17:39 +03001144 wl1251_ps_elp_sleep(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +03001145
1146out:
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001147 mutex_unlock(&wl->mutex);
1148}
1149
1150
1151/* can't be const, mac80211 writes to this */
Kalle Valo80301cd2009-06-12 14:17:39 +03001152static struct ieee80211_rate wl1251_rates[] = {
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001153 { .bitrate = 10,
1154 .hw_value = 0x1,
1155 .hw_value_short = 0x1, },
1156 { .bitrate = 20,
1157 .hw_value = 0x2,
1158 .hw_value_short = 0x2,
1159 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
1160 { .bitrate = 55,
1161 .hw_value = 0x4,
1162 .hw_value_short = 0x4,
1163 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
1164 { .bitrate = 110,
1165 .hw_value = 0x20,
1166 .hw_value_short = 0x20,
1167 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
1168 { .bitrate = 60,
1169 .hw_value = 0x8,
1170 .hw_value_short = 0x8, },
1171 { .bitrate = 90,
1172 .hw_value = 0x10,
1173 .hw_value_short = 0x10, },
1174 { .bitrate = 120,
1175 .hw_value = 0x40,
1176 .hw_value_short = 0x40, },
1177 { .bitrate = 180,
1178 .hw_value = 0x80,
1179 .hw_value_short = 0x80, },
1180 { .bitrate = 240,
1181 .hw_value = 0x200,
1182 .hw_value_short = 0x200, },
1183 { .bitrate = 360,
1184 .hw_value = 0x400,
1185 .hw_value_short = 0x400, },
1186 { .bitrate = 480,
1187 .hw_value = 0x800,
1188 .hw_value_short = 0x800, },
1189 { .bitrate = 540,
1190 .hw_value = 0x1000,
1191 .hw_value_short = 0x1000, },
1192};
1193
1194/* can't be const, mac80211 writes to this */
Kalle Valo80301cd2009-06-12 14:17:39 +03001195static struct ieee80211_channel wl1251_channels[] = {
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001196 { .hw_value = 1, .center_freq = 2412},
1197 { .hw_value = 2, .center_freq = 2417},
1198 { .hw_value = 3, .center_freq = 2422},
1199 { .hw_value = 4, .center_freq = 2427},
1200 { .hw_value = 5, .center_freq = 2432},
1201 { .hw_value = 6, .center_freq = 2437},
1202 { .hw_value = 7, .center_freq = 2442},
1203 { .hw_value = 8, .center_freq = 2447},
1204 { .hw_value = 9, .center_freq = 2452},
1205 { .hw_value = 10, .center_freq = 2457},
1206 { .hw_value = 11, .center_freq = 2462},
1207 { .hw_value = 12, .center_freq = 2467},
1208 { .hw_value = 13, .center_freq = 2472},
1209};
1210
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001211static int wl1251_op_conf_tx(struct ieee80211_hw *hw,
1212 struct ieee80211_vif *vif, u16 queue,
Kalle Valo86dff7a2009-11-30 10:18:19 +02001213 const struct ieee80211_tx_queue_params *params)
1214{
Kalle Valo4ff6ffa2010-01-12 10:43:15 +02001215 enum wl1251_acx_ps_scheme ps_scheme;
Kalle Valo86dff7a2009-11-30 10:18:19 +02001216 struct wl1251 *wl = hw->priv;
1217 int ret;
1218
1219 mutex_lock(&wl->mutex);
1220
1221 wl1251_debug(DEBUG_MAC80211, "mac80211 conf tx %d", queue);
1222
1223 ret = wl1251_ps_elp_wakeup(wl);
1224 if (ret < 0)
1225 goto out;
1226
Kalle Valo85359492010-02-04 15:33:25 +02001227 /* mac80211 uses units of 32 usec */
Kalle Valo86dff7a2009-11-30 10:18:19 +02001228 ret = wl1251_acx_ac_cfg(wl, wl1251_tx_get_queue(queue),
1229 params->cw_min, params->cw_max,
Kalle Valo85359492010-02-04 15:33:25 +02001230 params->aifs, params->txop * 32);
Kalle Valo27336f12009-11-30 10:18:27 +02001231 if (ret < 0)
1232 goto out_sleep;
Kalle Valo86dff7a2009-11-30 10:18:19 +02001233
Kalle Valo4ff6ffa2010-01-12 10:43:15 +02001234 if (params->uapsd)
1235 ps_scheme = WL1251_ACX_PS_SCHEME_UPSD_TRIGGER;
1236 else
1237 ps_scheme = WL1251_ACX_PS_SCHEME_LEGACY;
1238
Kalle Valo27336f12009-11-30 10:18:27 +02001239 ret = wl1251_acx_tid_cfg(wl, wl1251_tx_get_queue(queue),
Kalle Valo49e1b9f2009-11-30 10:18:33 +02001240 CHANNEL_TYPE_EDCF,
Kalle Valo4ff6ffa2010-01-12 10:43:15 +02001241 wl1251_tx_get_queue(queue), ps_scheme,
Kalle Valo27336f12009-11-30 10:18:27 +02001242 WL1251_ACX_ACK_POLICY_LEGACY);
1243 if (ret < 0)
1244 goto out_sleep;
1245
1246out_sleep:
Kalle Valo86dff7a2009-11-30 10:18:19 +02001247 wl1251_ps_elp_sleep(wl);
1248
1249out:
1250 mutex_unlock(&wl->mutex);
1251
1252 return ret;
1253}
1254
John W. Linville19434142010-07-28 15:23:30 -04001255static int wl1251_op_get_survey(struct ieee80211_hw *hw, int idx,
1256 struct survey_info *survey)
1257{
1258 struct wl1251 *wl = hw->priv;
1259 struct ieee80211_conf *conf = &hw->conf;
1260
1261 if (idx != 0)
1262 return -ENOENT;
1263
Karl Beldan675a0b02013-03-25 16:26:57 +01001264 survey->channel = conf->chandef.chan;
John W. Linville19434142010-07-28 15:23:30 -04001265 survey->filled = SURVEY_INFO_NOISE_DBM;
1266 survey->noise = wl->noise;
1267
1268 return 0;
1269}
1270
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001271/* can't be const, mac80211 writes to this */
Kalle Valo80301cd2009-06-12 14:17:39 +03001272static struct ieee80211_supported_band wl1251_band_2ghz = {
1273 .channels = wl1251_channels,
1274 .n_channels = ARRAY_SIZE(wl1251_channels),
1275 .bitrates = wl1251_rates,
1276 .n_bitrates = ARRAY_SIZE(wl1251_rates),
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001277};
1278
Kalle Valo80301cd2009-06-12 14:17:39 +03001279static const struct ieee80211_ops wl1251_ops = {
1280 .start = wl1251_op_start,
1281 .stop = wl1251_op_stop,
1282 .add_interface = wl1251_op_add_interface,
1283 .remove_interface = wl1251_op_remove_interface,
1284 .config = wl1251_op_config,
1285 .configure_filter = wl1251_op_configure_filter,
1286 .tx = wl1251_op_tx,
1287 .set_key = wl1251_op_set_key,
1288 .hw_scan = wl1251_op_hw_scan,
1289 .bss_info_changed = wl1251_op_bss_info_changed,
1290 .set_rts_threshold = wl1251_op_set_rts_threshold,
Kalle Valo86dff7a2009-11-30 10:18:19 +02001291 .conf_tx = wl1251_op_conf_tx,
John W. Linville19434142010-07-28 15:23:30 -04001292 .get_survey = wl1251_op_get_survey,
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001293};
1294
Grazvydas Ignotas61c2a802010-04-14 13:05:48 +03001295static int wl1251_read_eeprom_byte(struct wl1251 *wl, off_t offset, u8 *data)
1296{
1297 unsigned long timeout;
1298
1299 wl1251_reg_write32(wl, EE_ADDR, offset);
1300 wl1251_reg_write32(wl, EE_CTL, EE_CTL_READ);
1301
1302 /* EE_CTL_READ clears when data is ready */
1303 timeout = jiffies + msecs_to_jiffies(100);
1304 while (1) {
1305 if (!(wl1251_reg_read32(wl, EE_CTL) & EE_CTL_READ))
1306 break;
1307
1308 if (time_after(jiffies, timeout))
1309 return -ETIMEDOUT;
1310
1311 msleep(1);
1312 }
1313
1314 *data = wl1251_reg_read32(wl, EE_DATA);
1315 return 0;
1316}
1317
1318static int wl1251_read_eeprom(struct wl1251 *wl, off_t offset,
1319 u8 *data, size_t len)
1320{
1321 size_t i;
1322 int ret;
1323
1324 wl1251_reg_write32(wl, EE_START, 0);
1325
1326 for (i = 0; i < len; i++) {
1327 ret = wl1251_read_eeprom_byte(wl, offset + i, &data[i]);
1328 if (ret < 0)
1329 return ret;
1330 }
1331
1332 return 0;
1333}
1334
1335static int wl1251_read_eeprom_mac(struct wl1251 *wl)
1336{
1337 u8 mac[ETH_ALEN];
1338 int i, ret;
1339
1340 wl1251_set_partition(wl, 0, 0, REGISTERS_BASE, REGISTERS_DOWN_SIZE);
1341
1342 ret = wl1251_read_eeprom(wl, 0x1c, mac, sizeof(mac));
1343 if (ret < 0) {
1344 wl1251_warning("failed to read MAC address from EEPROM");
1345 return ret;
1346 }
1347
1348 /* MAC is stored in reverse order */
1349 for (i = 0; i < ETH_ALEN; i++)
1350 wl->mac_addr[i] = mac[ETH_ALEN - i - 1];
1351
1352 return 0;
1353}
1354
Kalle Valo80301cd2009-06-12 14:17:39 +03001355static int wl1251_register_hw(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001356{
1357 int ret;
1358
1359 if (wl->mac80211_registered)
1360 return 0;
1361
1362 SET_IEEE80211_PERM_ADDR(wl->hw, wl->mac_addr);
1363
1364 ret = ieee80211_register_hw(wl->hw);
1365 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +03001366 wl1251_error("unable to register mac80211 hw: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001367 return ret;
1368 }
1369
1370 wl->mac80211_registered = true;
1371
Kalle Valo80301cd2009-06-12 14:17:39 +03001372 wl1251_notice("loaded");
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001373
1374 return 0;
1375}
1376
Bob Copeland8e639c02009-08-07 13:33:26 +03001377int wl1251_init_ieee80211(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001378{
Bob Copeland8e639c02009-08-07 13:33:26 +03001379 int ret;
1380
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001381 /* The tx descriptor buffer and the TKIP space */
1382 wl->hw->extra_tx_headroom = sizeof(struct tx_double_buffer_desc)
Juuso Oikarinen9f2ad4f2009-06-12 14:15:54 +03001383 + WL1251_TKIP_IV_SPACE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001384
1385 /* unit us */
1386 /* FIXME: find a proper value */
1387 wl->hw->channel_change_time = 10000;
1388
1389 wl->hw->flags = IEEE80211_HW_SIGNAL_DBM |
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +02001390 IEEE80211_HW_SUPPORTS_PS |
Johannes Bergea086352012-01-19 09:29:58 +01001391 IEEE80211_HW_SUPPORTS_UAPSD;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001392
David Gnedt43d13642011-01-30 20:11:04 +01001393 wl->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
1394 BIT(NL80211_IFTYPE_ADHOC);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001395 wl->hw->wiphy->max_scan_ssids = 1;
Kalle Valo80301cd2009-06-12 14:17:39 +03001396 wl->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &wl1251_band_2ghz;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001397
Kalle Valoda2fb4e2009-11-30 10:18:47 +02001398 wl->hw->queues = 4;
1399
Grazvydas Ignotas61c2a802010-04-14 13:05:48 +03001400 if (wl->use_eeprom)
1401 wl1251_read_eeprom_mac(wl);
1402
Bob Copeland8e639c02009-08-07 13:33:26 +03001403 ret = wl1251_register_hw(wl);
1404 if (ret)
1405 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001406
Bob Copeland8e639c02009-08-07 13:33:26 +03001407 wl1251_debugfs_init(wl);
1408 wl1251_notice("initialized");
1409
1410 ret = 0;
1411
1412out:
1413 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001414}
Bob Copelandaf8c78e2009-08-07 13:33:34 +03001415EXPORT_SYMBOL_GPL(wl1251_init_ieee80211);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001416
Bob Copeland8e639c02009-08-07 13:33:26 +03001417struct ieee80211_hw *wl1251_alloc_hw(void)
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001418{
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001419 struct ieee80211_hw *hw;
Kalle Valo80301cd2009-06-12 14:17:39 +03001420 struct wl1251 *wl;
Bob Copeland8e639c02009-08-07 13:33:26 +03001421 int i;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001422 static const u8 nokia_oui[3] = {0x00, 0x1f, 0xdf};
1423
Kalle Valo80301cd2009-06-12 14:17:39 +03001424 hw = ieee80211_alloc_hw(sizeof(*wl), &wl1251_ops);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001425 if (!hw) {
Kalle Valo80301cd2009-06-12 14:17:39 +03001426 wl1251_error("could not alloc ieee80211_hw");
Bob Copeland8e639c02009-08-07 13:33:26 +03001427 return ERR_PTR(-ENOMEM);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001428 }
1429
1430 wl = hw->priv;
1431 memset(wl, 0, sizeof(*wl));
1432
1433 wl->hw = hw;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001434
1435 wl->data_in_count = 0;
1436
1437 skb_queue_head_init(&wl->tx_queue);
1438
Juuso Oikarinend5da79a2009-11-17 18:48:37 +02001439 INIT_DELAYED_WORK(&wl->elp_work, wl1251_elp_work);
Kalle Valo80301cd2009-06-12 14:17:39 +03001440 wl->channel = WL1251_DEFAULT_CHANNEL;
David Gnedt4d09b532014-01-07 13:07:52 +01001441 wl->monitor_present = false;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001442 wl->scanning = false;
1443 wl->default_key = 0;
1444 wl->listen_int = 1;
1445 wl->rx_counter = 0;
1446 wl->rx_handled = 0;
1447 wl->rx_current_buffer = 0;
1448 wl->rx_last_id = 0;
Kalle Valo80301cd2009-06-12 14:17:39 +03001449 wl->rx_config = WL1251_DEFAULT_RX_CONFIG;
1450 wl->rx_filter = WL1251_DEFAULT_RX_FILTER;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001451 wl->elp = false;
Jarkko Nikulaa0bbb582011-04-04 11:04:57 +03001452 wl->station_mode = STATION_ACTIVE_MODE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001453 wl->psm_requested = false;
David Gnedtf7ad1ee2014-01-07 13:05:45 +01001454 wl->psm_entry_retry = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001455 wl->tx_queue_stopped = false;
Kalle Valo80301cd2009-06-12 14:17:39 +03001456 wl->power_level = WL1251_DEFAULT_POWER_LEVEL;
David Gnedt8964e492011-01-30 20:11:00 +01001457 wl->rssi_thold = 0;
Kalle Valoe2fd4612009-08-07 13:34:12 +03001458 wl->beacon_int = WL1251_DEFAULT_BEACON_INT;
1459 wl->dtim_period = WL1251_DEFAULT_DTIM_PERIOD;
Juuso Oikarinen287f6f92009-11-17 18:48:23 +02001460 wl->vif = NULL;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001461
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001462 for (i = 0; i < FW_TX_CMPLT_BLOCK_SIZE; i++)
1463 wl->tx_frames[i] = NULL;
1464
1465 wl->next_tx_complete = 0;
1466
Kalle Valo0e71bb02009-08-07 13:33:57 +03001467 INIT_WORK(&wl->irq_work, wl1251_irq_work);
1468 INIT_WORK(&wl->tx_work, wl1251_tx_work);
1469
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001470 /*
1471 * In case our MAC address is not correctly set,
1472 * we use a random but Nokia MAC.
1473 */
1474 memcpy(wl->mac_addr, nokia_oui, 3);
1475 get_random_bytes(wl->mac_addr + 3, 3);
1476
Kalle Valo80301cd2009-06-12 14:17:39 +03001477 wl->state = WL1251_STATE_OFF;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001478 mutex_init(&wl->mutex);
1479
1480 wl->tx_mgmt_frm_rate = DEFAULT_HW_GEN_TX_RATE;
1481 wl->tx_mgmt_frm_mod = DEFAULT_HW_GEN_MODULATION_TYPE;
1482
Kalle Valo47212132009-06-12 14:15:08 +03001483 wl->rx_descriptor = kmalloc(sizeof(*wl->rx_descriptor), GFP_KERNEL);
1484 if (!wl->rx_descriptor) {
Kalle Valo80301cd2009-06-12 14:17:39 +03001485 wl1251_error("could not allocate memory for rx descriptor");
Bob Copeland8e639c02009-08-07 13:33:26 +03001486 ieee80211_free_hw(hw);
1487 return ERR_PTR(-ENOMEM);
Kalle Valo47212132009-06-12 14:15:08 +03001488 }
1489
Bob Copeland8e639c02009-08-07 13:33:26 +03001490 return hw;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001491}
Bob Copelandaf8c78e2009-08-07 13:33:34 +03001492EXPORT_SYMBOL_GPL(wl1251_alloc_hw);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001493
Bob Copeland8e639c02009-08-07 13:33:26 +03001494int wl1251_free_hw(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001495{
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001496 ieee80211_unregister_hw(wl->hw);
1497
Kalle Valo80301cd2009-06-12 14:17:39 +03001498 wl1251_debugfs_exit(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001499
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001500 kfree(wl->target_mem_map);
1501 kfree(wl->data_path);
Kalle Valoc74ddfd2009-11-17 18:48:45 +02001502 vfree(wl->fw);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001503 wl->fw = NULL;
1504 kfree(wl->nvs);
1505 wl->nvs = NULL;
Kalle Valo47212132009-06-12 14:15:08 +03001506
1507 kfree(wl->rx_descriptor);
1508 wl->rx_descriptor = NULL;
1509
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001510 ieee80211_free_hw(wl->hw);
1511
1512 return 0;
1513}
Bob Copelandaf8c78e2009-08-07 13:33:34 +03001514EXPORT_SYMBOL_GPL(wl1251_free_hw);
1515
1516MODULE_DESCRIPTION("TI wl1251 Wireles LAN Driver Core");
1517MODULE_LICENSE("GPL");
Kalle Valo31c726f2010-08-22 22:46:15 +03001518MODULE_AUTHOR("Kalle Valo <kvalo@adurom.com>");
Ben Hutchings49f146d2009-11-07 22:02:15 +00001519MODULE_FIRMWARE(WL1251_FW_NAME);