blob: 4c1aad33fb5162a0be9bbe528328279fb6e818cf [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 *
6 * Contact: Kalle Valo <kalle.valo@nokia.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 */
23
24#include <linux/module.h>
25#include <linux/interrupt.h>
26#include <linux/firmware.h>
27#include <linux/delay.h>
28#include <linux/irq.h>
Kalle Valo2f01a1f2009-04-29 23:33:31 +030029#include <linux/crc32.h>
30#include <linux/etherdevice.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"
34#include "reg.h"
Kalle Valoe6f0b5c2009-06-12 14:16:58 +030035#include "wl1251_ops.h"
Bob Copeland0764de62009-08-07 13:32:56 +030036#include "wl1251_io.h"
Bob Copeland8e639c02009-08-07 13:33:26 +030037#include "wl1251_cmd.h"
Kalle Valoef2f8d42009-06-12 14:17:19 +030038#include "wl1251_event.h"
Juuso Oikarinen9f2ad4f2009-06-12 14:15:54 +030039#include "wl1251_tx.h"
Kalle Valoef2f8d42009-06-12 14:17:19 +030040#include "wl1251_rx.h"
41#include "wl1251_ps.h"
42#include "wl1251_init.h"
43#include "wl1251_debugfs.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
Kalle Valo80301cd2009-06-12 14:17:39 +030055static void wl1251_power_off(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030056{
57 wl->set_power(false);
58}
59
Kalle Valo80301cd2009-06-12 14:17:39 +030060static void wl1251_power_on(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030061{
62 wl->set_power(true);
63}
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
Bob Copeland6c766f42009-08-07 13:33:04 +030071 ret = request_firmware(&fw, wl->chip.fw_filename, 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;
86 wl->fw = kmalloc(wl->fw_len, GFP_KERNEL);
87
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
Bob Copeland6c766f42009-08-07 13:33:04 +0300110 ret = request_firmware(&fw, wl->chip.nvs_filename, 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;
125 wl->nvs = kmalloc(wl->nvs_len, GFP_KERNEL);
126
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
133 memcpy(wl->nvs, fw->data, wl->nvs_len);
134
135 ret = 0;
136
137out:
138 release_firmware(fw);
139
140 return ret;
141}
142
Kalle Valo80301cd2009-06-12 14:17:39 +0300143static void wl1251_fw_wakeup(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300144{
145 u32 elp_reg;
146
147 elp_reg = ELPCTRL_WAKE_UP;
Kalle Valo80301cd2009-06-12 14:17:39 +0300148 wl1251_write32(wl, HW_ACCESS_ELP_CTRL_REG_ADDR, elp_reg);
149 elp_reg = wl1251_read32(wl, HW_ACCESS_ELP_CTRL_REG_ADDR);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300150
Kalle Valo05fac682009-06-12 14:17:47 +0300151 if (!(elp_reg & ELPCTRL_WLAN_READY))
Kalle Valo80301cd2009-06-12 14:17:39 +0300152 wl1251_warning("WLAN not ready");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300153}
154
Kalle Valo80301cd2009-06-12 14:17:39 +0300155static int wl1251_chip_wakeup(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300156{
157 int ret = 0;
158
Kalle Valo80301cd2009-06-12 14:17:39 +0300159 wl1251_power_on(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300160 msleep(wl->chip.power_on_sleep);
Bob Copeland08d9f5722009-08-07 13:33:11 +0300161 wl->if_ops->reset(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300162
163 /* We don't need a real memory partition here, because we only want
164 * to use the registers at this point. */
Kalle Valo80301cd2009-06-12 14:17:39 +0300165 wl1251_set_partition(wl,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300166 0x00000000,
167 0x00000000,
168 REGISTERS_BASE,
169 REGISTERS_DOWN_SIZE);
170
171 /* ELP module wake up */
Kalle Valo80301cd2009-06-12 14:17:39 +0300172 wl1251_fw_wakeup(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300173
174 /* whal_FwCtrl_BootSm() */
175
176 /* 0. read chip id from CHIP_ID */
Kalle Valo80301cd2009-06-12 14:17:39 +0300177 wl->chip.id = wl1251_reg_read32(wl, CHIP_ID_B);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300178
179 /* 1. check if chip id is valid */
180
181 switch (wl->chip.id) {
182 case CHIP_ID_1251_PG12:
Kalle Valo80301cd2009-06-12 14:17:39 +0300183 wl1251_debug(DEBUG_BOOT, "chip id 0x%x (1251 PG12)",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300184 wl->chip.id);
185
186 wl1251_setup(wl);
187
188 break;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300189 case CHIP_ID_1251_PG10:
190 case CHIP_ID_1251_PG11:
191 default:
Kalle Valo80301cd2009-06-12 14:17:39 +0300192 wl1251_error("unsupported chip id: 0x%x", wl->chip.id);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300193 ret = -ENODEV;
194 goto out;
195 }
196
197 if (wl->fw == NULL) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300198 ret = wl1251_fetch_firmware(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300199 if (ret < 0)
200 goto out;
201 }
202
203 /* No NVS from netlink, try to get it from the filesystem */
204 if (wl->nvs == NULL) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300205 ret = wl1251_fetch_nvs(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300206 if (ret < 0)
207 goto out;
208 }
209
210out:
211 return ret;
212}
213
Kalle Valo80301cd2009-06-12 14:17:39 +0300214static void wl1251_filter_work(struct work_struct *work)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300215{
Kalle Valo80301cd2009-06-12 14:17:39 +0300216 struct wl1251 *wl =
217 container_of(work, struct wl1251, filter_work);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300218 int ret;
219
220 mutex_lock(&wl->mutex);
221
Kalle Valo80301cd2009-06-12 14:17:39 +0300222 if (wl->state == WL1251_STATE_OFF)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300223 goto out;
224
Kalle Valo80301cd2009-06-12 14:17:39 +0300225 ret = wl1251_ps_elp_wakeup(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300226 if (ret < 0)
227 goto out;
228
Juuso Oikarinen77cc9e42009-06-12 14:16:52 +0300229 /* FIXME: replace the magic numbers with proper definitions */
230 ret = wl->chip.op_cmd_join(wl, wl->bss_type, 1, 100, 0);
Kalle Valoc5483b72009-06-12 14:16:32 +0300231 if (ret < 0)
232 goto out_sleep;
233
234out_sleep:
Kalle Valo80301cd2009-06-12 14:17:39 +0300235 wl1251_ps_elp_sleep(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300236
237out:
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300238 mutex_unlock(&wl->mutex);
239}
240
Kalle Valo80301cd2009-06-12 14:17:39 +0300241static int wl1251_op_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300242{
Kalle Valo80301cd2009-06-12 14:17:39 +0300243 struct wl1251 *wl = hw->priv;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300244
245 skb_queue_tail(&wl->tx_queue, skb);
246
Juuso Oikarinen9f2ad4f2009-06-12 14:15:54 +0300247 /*
248 * The chip specific setup must run before the first TX packet -
249 * before that, the tx_work will not be initialized!
250 */
251
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300252 schedule_work(&wl->tx_work);
253
254 /*
255 * The workqueue is slow to process the tx_queue and we need stop
256 * the queue here, otherwise the queue will get too long.
257 */
Kalle Valo80301cd2009-06-12 14:17:39 +0300258 if (skb_queue_len(&wl->tx_queue) >= WL1251_TX_QUEUE_MAX_LENGTH) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300259 ieee80211_stop_queues(wl->hw);
260
261 /*
262 * FIXME: this is racy, the variable is not properly
263 * protected. Maybe fix this by removing the stupid
264 * variable altogether and checking the real queue state?
265 */
266 wl->tx_queue_stopped = true;
267 }
268
269 return NETDEV_TX_OK;
270}
271
Kalle Valo80301cd2009-06-12 14:17:39 +0300272static int wl1251_op_start(struct ieee80211_hw *hw)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300273{
Kalle Valo80301cd2009-06-12 14:17:39 +0300274 struct wl1251 *wl = hw->priv;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300275 int ret = 0;
276
Kalle Valo80301cd2009-06-12 14:17:39 +0300277 wl1251_debug(DEBUG_MAC80211, "mac80211 start");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300278
279 mutex_lock(&wl->mutex);
280
Kalle Valo80301cd2009-06-12 14:17:39 +0300281 if (wl->state != WL1251_STATE_OFF) {
282 wl1251_error("cannot start because not in off state: %d",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300283 wl->state);
284 ret = -EBUSY;
285 goto out;
286 }
287
Kalle Valo80301cd2009-06-12 14:17:39 +0300288 ret = wl1251_chip_wakeup(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300289 if (ret < 0)
Jiri Slabyfe643412009-07-14 22:37:13 +0200290 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300291
292 ret = wl->chip.op_boot(wl);
293 if (ret < 0)
294 goto out;
295
296 ret = wl->chip.op_hw_init(wl);
297 if (ret < 0)
298 goto out;
299
Kalle Valo80301cd2009-06-12 14:17:39 +0300300 ret = wl1251_acx_station_id(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300301 if (ret < 0)
302 goto out;
303
Kalle Valo80301cd2009-06-12 14:17:39 +0300304 wl->state = WL1251_STATE_ON;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300305
Kalle Valo80301cd2009-06-12 14:17:39 +0300306 wl1251_info("firmware booted (%s)", wl->chip.fw_ver);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300307
308out:
309 if (ret < 0)
Kalle Valo80301cd2009-06-12 14:17:39 +0300310 wl1251_power_off(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300311
312 mutex_unlock(&wl->mutex);
313
314 return ret;
315}
316
Kalle Valo80301cd2009-06-12 14:17:39 +0300317static void wl1251_op_stop(struct ieee80211_hw *hw)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300318{
Kalle Valo80301cd2009-06-12 14:17:39 +0300319 struct wl1251 *wl = hw->priv;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300320
Kalle Valo80301cd2009-06-12 14:17:39 +0300321 wl1251_info("down");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300322
Kalle Valo80301cd2009-06-12 14:17:39 +0300323 wl1251_debug(DEBUG_MAC80211, "mac80211 stop");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300324
325 mutex_lock(&wl->mutex);
326
Kalle Valo80301cd2009-06-12 14:17:39 +0300327 WARN_ON(wl->state != WL1251_STATE_ON);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300328
329 if (wl->scanning) {
330 mutex_unlock(&wl->mutex);
331 ieee80211_scan_completed(wl->hw, true);
332 mutex_lock(&wl->mutex);
333 wl->scanning = false;
334 }
335
Kalle Valo80301cd2009-06-12 14:17:39 +0300336 wl->state = WL1251_STATE_OFF;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300337
Kalle Valo80301cd2009-06-12 14:17:39 +0300338 wl1251_disable_interrupts(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300339
340 mutex_unlock(&wl->mutex);
341
342 cancel_work_sync(&wl->irq_work);
343 cancel_work_sync(&wl->tx_work);
344 cancel_work_sync(&wl->filter_work);
345
346 mutex_lock(&wl->mutex);
347
348 /* let's notify MAC80211 about the remaining pending TX frames */
Juuso Oikarinen9f2ad4f2009-06-12 14:15:54 +0300349 wl->chip.op_tx_flush(wl);
Kalle Valo80301cd2009-06-12 14:17:39 +0300350 wl1251_power_off(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300351
352 memset(wl->bssid, 0, ETH_ALEN);
353 wl->listen_int = 1;
354 wl->bss_type = MAX_BSS_TYPE;
355
356 wl->data_in_count = 0;
357 wl->rx_counter = 0;
358 wl->rx_handled = 0;
359 wl->rx_current_buffer = 0;
360 wl->rx_last_id = 0;
361 wl->next_tx_complete = 0;
362 wl->elp = false;
363 wl->psm = 0;
364 wl->tx_queue_stopped = false;
Kalle Valo80301cd2009-06-12 14:17:39 +0300365 wl->power_level = WL1251_DEFAULT_POWER_LEVEL;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300366
Kalle Valo80301cd2009-06-12 14:17:39 +0300367 wl1251_debugfs_reset(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300368
369 mutex_unlock(&wl->mutex);
370}
371
Kalle Valo80301cd2009-06-12 14:17:39 +0300372static int wl1251_op_add_interface(struct ieee80211_hw *hw,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300373 struct ieee80211_if_init_conf *conf)
374{
Kalle Valo80301cd2009-06-12 14:17:39 +0300375 struct wl1251 *wl = hw->priv;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300376 int ret = 0;
377
Johannes Berge91d8332009-07-15 17:21:41 +0200378 wl1251_debug(DEBUG_MAC80211, "mac80211 add interface type %d mac %pM",
379 conf->type, conf->mac_addr);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300380
381 mutex_lock(&wl->mutex);
382
383 switch (conf->type) {
384 case NL80211_IFTYPE_STATION:
385 wl->bss_type = BSS_TYPE_STA_BSS;
386 break;
387 case NL80211_IFTYPE_ADHOC:
388 wl->bss_type = BSS_TYPE_IBSS;
389 break;
390 default:
391 ret = -EOPNOTSUPP;
392 goto out;
393 }
394
395 if (memcmp(wl->mac_addr, conf->mac_addr, ETH_ALEN)) {
396 memcpy(wl->mac_addr, conf->mac_addr, ETH_ALEN);
397 SET_IEEE80211_PERM_ADDR(wl->hw, wl->mac_addr);
Kalle Valo80301cd2009-06-12 14:17:39 +0300398 ret = wl1251_acx_station_id(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300399 if (ret < 0)
400 goto out;
401 }
402
403out:
404 mutex_unlock(&wl->mutex);
405 return ret;
406}
407
Kalle Valo80301cd2009-06-12 14:17:39 +0300408static void wl1251_op_remove_interface(struct ieee80211_hw *hw,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300409 struct ieee80211_if_init_conf *conf)
410{
Kalle Valo80301cd2009-06-12 14:17:39 +0300411 wl1251_debug(DEBUG_MAC80211, "mac80211 remove interface");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300412}
413
Kalle Valo80301cd2009-06-12 14:17:39 +0300414static int wl1251_build_null_data(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300415{
416 struct wl12xx_null_data_template template;
417
418 if (!is_zero_ether_addr(wl->bssid)) {
419 memcpy(template.header.da, wl->bssid, ETH_ALEN);
420 memcpy(template.header.bssid, wl->bssid, ETH_ALEN);
421 } else {
422 memset(template.header.da, 0xff, ETH_ALEN);
423 memset(template.header.bssid, 0xff, ETH_ALEN);
424 }
425
426 memcpy(template.header.sa, wl->mac_addr, ETH_ALEN);
427 template.header.frame_ctl = cpu_to_le16(IEEE80211_FTYPE_DATA |
428 IEEE80211_STYPE_NULLFUNC);
429
Kalle Valo80301cd2009-06-12 14:17:39 +0300430 return wl1251_cmd_template_set(wl, CMD_NULL_DATA, &template,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300431 sizeof(template));
432
433}
434
Kalle Valo80301cd2009-06-12 14:17:39 +0300435static int wl1251_build_ps_poll(struct wl1251 *wl, u16 aid)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300436{
437 struct wl12xx_ps_poll_template template;
438
439 memcpy(template.bssid, wl->bssid, ETH_ALEN);
440 memcpy(template.ta, wl->mac_addr, ETH_ALEN);
441 template.aid = aid;
442 template.fc = cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL);
443
Kalle Valo80301cd2009-06-12 14:17:39 +0300444 return wl1251_cmd_template_set(wl, CMD_PS_POLL, &template,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300445 sizeof(template));
446
447}
448
Kalle Valo80301cd2009-06-12 14:17:39 +0300449static int wl1251_op_config(struct ieee80211_hw *hw, u32 changed)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300450{
Kalle Valo80301cd2009-06-12 14:17:39 +0300451 struct wl1251 *wl = hw->priv;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300452 struct ieee80211_conf *conf = &hw->conf;
453 int channel, ret = 0;
454
455 channel = ieee80211_frequency_to_channel(conf->channel->center_freq);
456
Kalle Valo80301cd2009-06-12 14:17:39 +0300457 wl1251_debug(DEBUG_MAC80211, "mac80211 config ch %d psm %s power %d",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300458 channel,
459 conf->flags & IEEE80211_CONF_PS ? "on" : "off",
460 conf->power_level);
461
462 mutex_lock(&wl->mutex);
463
Kalle Valo80301cd2009-06-12 14:17:39 +0300464 ret = wl1251_ps_elp_wakeup(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300465 if (ret < 0)
466 goto out;
Kalle Valo01d9cfb2009-06-12 14:16:26 +0300467
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300468 if (channel != wl->channel) {
469 /* FIXME: use beacon interval provided by mac80211 */
Juuso Oikarinen77cc9e42009-06-12 14:16:52 +0300470 ret = wl->chip.op_cmd_join(wl, wl->bss_type, 1, 100, 0);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300471 if (ret < 0)
Kalle Valoc5483b72009-06-12 14:16:32 +0300472 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300473
474 wl->channel = channel;
475 }
476
Kalle Valo80301cd2009-06-12 14:17:39 +0300477 ret = wl1251_build_null_data(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300478 if (ret < 0)
Kalle Valoc5483b72009-06-12 14:16:32 +0300479 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300480
481 if (conf->flags & IEEE80211_CONF_PS && !wl->psm_requested) {
Luciano Coelho47af3fe2009-06-12 14:17:53 +0300482 wl1251_debug(DEBUG_PSM, "psm enabled");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300483
484 wl->psm_requested = true;
485
486 /*
487 * We enter PSM only if we're already associated.
488 * If we're not, we'll enter it when joining an SSID,
489 * through the bss_info_changed() hook.
490 */
Kalle Valo80301cd2009-06-12 14:17:39 +0300491 ret = wl1251_ps_set_mode(wl, STATION_POWER_SAVE_MODE);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300492 } else if (!(conf->flags & IEEE80211_CONF_PS) &&
493 wl->psm_requested) {
Luciano Coelho47af3fe2009-06-12 14:17:53 +0300494 wl1251_debug(DEBUG_PSM, "psm disabled");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300495
496 wl->psm_requested = false;
497
498 if (wl->psm)
Kalle Valo80301cd2009-06-12 14:17:39 +0300499 ret = wl1251_ps_set_mode(wl, STATION_ACTIVE_MODE);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300500 }
501
502 if (conf->power_level != wl->power_level) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300503 ret = wl1251_acx_tx_power(wl, conf->power_level);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300504 if (ret < 0)
505 goto out;
506
507 wl->power_level = conf->power_level;
508 }
509
Kalle Valoc5483b72009-06-12 14:16:32 +0300510out_sleep:
Kalle Valo80301cd2009-06-12 14:17:39 +0300511 wl1251_ps_elp_sleep(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300512
513out:
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300514 mutex_unlock(&wl->mutex);
Kalle Valoc5483b72009-06-12 14:16:32 +0300515
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300516 return ret;
517}
518
Kalle Valo80301cd2009-06-12 14:17:39 +0300519#define WL1251_SUPPORTED_FILTERS (FIF_PROMISC_IN_BSS | \
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300520 FIF_ALLMULTI | \
521 FIF_FCSFAIL | \
522 FIF_BCN_PRBRESP_PROMISC | \
523 FIF_CONTROL | \
524 FIF_OTHER_BSS)
525
Kalle Valo80301cd2009-06-12 14:17:39 +0300526static void wl1251_op_configure_filter(struct ieee80211_hw *hw,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300527 unsigned int changed,
528 unsigned int *total,
529 int mc_count,
530 struct dev_addr_list *mc_list)
531{
Kalle Valo80301cd2009-06-12 14:17:39 +0300532 struct wl1251 *wl = hw->priv;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300533
Kalle Valo80301cd2009-06-12 14:17:39 +0300534 wl1251_debug(DEBUG_MAC80211, "mac80211 configure filter");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300535
Kalle Valo80301cd2009-06-12 14:17:39 +0300536 *total &= WL1251_SUPPORTED_FILTERS;
537 changed &= WL1251_SUPPORTED_FILTERS;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300538
539 if (changed == 0)
540 /* no filters which we support changed */
541 return;
542
543 /* FIXME: wl->rx_config and wl->rx_filter are not protected */
544
Kalle Valo80301cd2009-06-12 14:17:39 +0300545 wl->rx_config = WL1251_DEFAULT_RX_CONFIG;
546 wl->rx_filter = WL1251_DEFAULT_RX_FILTER;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300547
548 if (*total & FIF_PROMISC_IN_BSS) {
549 wl->rx_config |= CFG_BSSID_FILTER_EN;
550 wl->rx_config |= CFG_RX_ALL_GOOD;
551 }
552 if (*total & FIF_ALLMULTI)
553 /*
554 * CFG_MC_FILTER_EN in rx_config needs to be 0 to receive
555 * all multicast frames
556 */
557 wl->rx_config &= ~CFG_MC_FILTER_EN;
558 if (*total & FIF_FCSFAIL)
559 wl->rx_filter |= CFG_RX_FCS_ERROR;
560 if (*total & FIF_BCN_PRBRESP_PROMISC) {
561 wl->rx_config &= ~CFG_BSSID_FILTER_EN;
562 wl->rx_config &= ~CFG_SSID_FILTER_EN;
563 }
564 if (*total & FIF_CONTROL)
565 wl->rx_filter |= CFG_RX_CTL_EN;
566 if (*total & FIF_OTHER_BSS)
567 wl->rx_filter &= ~CFG_BSSID_FILTER_EN;
568
569 /*
570 * FIXME: workqueues need to be properly cancelled on stop(), for
571 * now let's just disable changing the filter settings. They will
572 * be updated any on config().
573 */
574 /* schedule_work(&wl->filter_work); */
575}
576
577/* HW encryption */
Kalle Valo80301cd2009-06-12 14:17:39 +0300578static int wl1251_set_key_type(struct wl1251 *wl,
579 struct wl1251_cmd_set_keys *key,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300580 enum set_key_cmd cmd,
581 struct ieee80211_key_conf *mac80211_key,
582 const u8 *addr)
583{
584 switch (mac80211_key->alg) {
585 case ALG_WEP:
586 if (is_broadcast_ether_addr(addr))
587 key->key_type = KEY_WEP_DEFAULT;
588 else
589 key->key_type = KEY_WEP_ADDR;
590
591 mac80211_key->hw_key_idx = mac80211_key->keyidx;
592 break;
593 case ALG_TKIP:
594 if (is_broadcast_ether_addr(addr))
595 key->key_type = KEY_TKIP_MIC_GROUP;
596 else
597 key->key_type = KEY_TKIP_MIC_PAIRWISE;
598
599 mac80211_key->hw_key_idx = mac80211_key->keyidx;
600 break;
601 case ALG_CCMP:
602 if (is_broadcast_ether_addr(addr))
603 key->key_type = KEY_AES_GROUP;
604 else
605 key->key_type = KEY_AES_PAIRWISE;
606 mac80211_key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
607 break;
608 default:
Kalle Valo80301cd2009-06-12 14:17:39 +0300609 wl1251_error("Unknown key algo 0x%x", mac80211_key->alg);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300610 return -EOPNOTSUPP;
611 }
612
613 return 0;
614}
615
Kalle Valo80301cd2009-06-12 14:17:39 +0300616static int wl1251_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300617 struct ieee80211_vif *vif,
618 struct ieee80211_sta *sta,
619 struct ieee80211_key_conf *key)
620{
Kalle Valo80301cd2009-06-12 14:17:39 +0300621 struct wl1251 *wl = hw->priv;
622 struct wl1251_cmd_set_keys *wl_cmd;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300623 const u8 *addr;
624 int ret;
625
626 static const u8 bcast_addr[ETH_ALEN] =
627 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
628
Kalle Valo80301cd2009-06-12 14:17:39 +0300629 wl1251_debug(DEBUG_MAC80211, "mac80211 set key");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300630
Kalle Valoff258392009-06-12 14:14:19 +0300631 wl_cmd = kzalloc(sizeof(*wl_cmd), GFP_KERNEL);
632 if (!wl_cmd) {
633 ret = -ENOMEM;
634 goto out;
635 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300636
637 addr = sta ? sta->addr : bcast_addr;
638
Kalle Valo80301cd2009-06-12 14:17:39 +0300639 wl1251_debug(DEBUG_CRYPT, "CMD: 0x%x", cmd);
640 wl1251_dump(DEBUG_CRYPT, "ADDR: ", addr, ETH_ALEN);
641 wl1251_debug(DEBUG_CRYPT, "Key: algo:0x%x, id:%d, len:%d flags 0x%x",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300642 key->alg, key->keyidx, key->keylen, key->flags);
Kalle Valo80301cd2009-06-12 14:17:39 +0300643 wl1251_dump(DEBUG_CRYPT, "KEY: ", key->key, key->keylen);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300644
Kalle Valoff258392009-06-12 14:14:19 +0300645 if (is_zero_ether_addr(addr)) {
646 /* We dont support TX only encryption */
647 ret = -EOPNOTSUPP;
648 goto out;
649 }
650
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300651 mutex_lock(&wl->mutex);
652
Kalle Valo80301cd2009-06-12 14:17:39 +0300653 ret = wl1251_ps_elp_wakeup(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300654 if (ret < 0)
655 goto out_unlock;
Kalle Valo01d9cfb2009-06-12 14:16:26 +0300656
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300657 switch (cmd) {
658 case SET_KEY:
Kalle Valoff258392009-06-12 14:14:19 +0300659 wl_cmd->key_action = KEY_ADD_OR_REPLACE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300660 break;
661 case DISABLE_KEY:
Kalle Valoff258392009-06-12 14:14:19 +0300662 wl_cmd->key_action = KEY_REMOVE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300663 break;
664 default:
Kalle Valo80301cd2009-06-12 14:17:39 +0300665 wl1251_error("Unsupported key cmd 0x%x", cmd);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300666 break;
667 }
668
Kalle Valo80301cd2009-06-12 14:17:39 +0300669 ret = wl1251_set_key_type(wl, wl_cmd, cmd, key, addr);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300670 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300671 wl1251_error("Set KEY type failed");
Kalle Valoc5483b72009-06-12 14:16:32 +0300672 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300673 }
674
Kalle Valoff258392009-06-12 14:14:19 +0300675 if (wl_cmd->key_type != KEY_WEP_DEFAULT)
676 memcpy(wl_cmd->addr, addr, ETH_ALEN);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300677
Kalle Valoff258392009-06-12 14:14:19 +0300678 if ((wl_cmd->key_type == KEY_TKIP_MIC_GROUP) ||
679 (wl_cmd->key_type == KEY_TKIP_MIC_PAIRWISE)) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300680 /*
681 * We get the key in the following form:
682 * TKIP (16 bytes) - TX MIC (8 bytes) - RX MIC (8 bytes)
683 * but the target is expecting:
684 * TKIP - RX MIC - TX MIC
685 */
Kalle Valoff258392009-06-12 14:14:19 +0300686 memcpy(wl_cmd->key, key->key, 16);
687 memcpy(wl_cmd->key + 16, key->key + 24, 8);
688 memcpy(wl_cmd->key + 24, key->key + 16, 8);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300689
690 } else {
Kalle Valoff258392009-06-12 14:14:19 +0300691 memcpy(wl_cmd->key, key->key, key->keylen);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300692 }
Kalle Valoff258392009-06-12 14:14:19 +0300693 wl_cmd->key_size = key->keylen;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300694
Kalle Valoff258392009-06-12 14:14:19 +0300695 wl_cmd->id = key->keyidx;
696 wl_cmd->ssid_profile = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300697
Kalle Valo80301cd2009-06-12 14:17:39 +0300698 wl1251_dump(DEBUG_CRYPT, "TARGET KEY: ", wl_cmd, sizeof(*wl_cmd));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300699
Kalle Valo80301cd2009-06-12 14:17:39 +0300700 ret = wl1251_cmd_send(wl, CMD_SET_KEYS, wl_cmd, sizeof(*wl_cmd));
Kalle Valoff258392009-06-12 14:14:19 +0300701 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300702 wl1251_warning("could not set keys");
Kalle Valoc5483b72009-06-12 14:16:32 +0300703 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300704 }
705
Kalle Valoc5483b72009-06-12 14:16:32 +0300706out_sleep:
Kalle Valo80301cd2009-06-12 14:17:39 +0300707 wl1251_ps_elp_sleep(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300708
709out_unlock:
Kalle Valoff258392009-06-12 14:14:19 +0300710 mutex_unlock(&wl->mutex);
711
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300712out:
Kalle Valoff258392009-06-12 14:14:19 +0300713 kfree(wl_cmd);
714
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300715 return ret;
716}
717
Kalle Valo80301cd2009-06-12 14:17:39 +0300718static int wl1251_build_basic_rates(char *rates)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300719{
720 u8 index = 0;
721
722 rates[index++] = IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_1MB;
723 rates[index++] = IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_2MB;
724 rates[index++] = IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_5MB;
725 rates[index++] = IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_11MB;
726
727 return index;
728}
729
Kalle Valo80301cd2009-06-12 14:17:39 +0300730static int wl1251_build_extended_rates(char *rates)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300731{
732 u8 index = 0;
733
734 rates[index++] = IEEE80211_OFDM_RATE_6MB;
735 rates[index++] = IEEE80211_OFDM_RATE_9MB;
736 rates[index++] = IEEE80211_OFDM_RATE_12MB;
737 rates[index++] = IEEE80211_OFDM_RATE_18MB;
738 rates[index++] = IEEE80211_OFDM_RATE_24MB;
739 rates[index++] = IEEE80211_OFDM_RATE_36MB;
740 rates[index++] = IEEE80211_OFDM_RATE_48MB;
741 rates[index++] = IEEE80211_OFDM_RATE_54MB;
742
743 return index;
744}
745
746
Kalle Valo80301cd2009-06-12 14:17:39 +0300747static int wl1251_build_probe_req(struct wl1251 *wl, u8 *ssid, size_t ssid_len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300748{
749 struct wl12xx_probe_req_template template;
750 struct wl12xx_ie_rates *rates;
751 char *ptr;
752 u16 size;
753
754 ptr = (char *)&template;
755 size = sizeof(struct ieee80211_header);
756
757 memset(template.header.da, 0xff, ETH_ALEN);
758 memset(template.header.bssid, 0xff, ETH_ALEN);
759 memcpy(template.header.sa, wl->mac_addr, ETH_ALEN);
760 template.header.frame_ctl = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
761
762 /* IEs */
763 /* SSID */
764 template.ssid.header.id = WLAN_EID_SSID;
765 template.ssid.header.len = ssid_len;
766 if (ssid_len && ssid)
767 memcpy(template.ssid.ssid, ssid, ssid_len);
768 size += sizeof(struct wl12xx_ie_header) + ssid_len;
769 ptr += size;
770
771 /* Basic Rates */
772 rates = (struct wl12xx_ie_rates *)ptr;
773 rates->header.id = WLAN_EID_SUPP_RATES;
Kalle Valo80301cd2009-06-12 14:17:39 +0300774 rates->header.len = wl1251_build_basic_rates(rates->rates);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300775 size += sizeof(struct wl12xx_ie_header) + rates->header.len;
776 ptr += sizeof(struct wl12xx_ie_header) + rates->header.len;
777
778 /* Extended rates */
779 rates = (struct wl12xx_ie_rates *)ptr;
780 rates->header.id = WLAN_EID_EXT_SUPP_RATES;
Kalle Valo80301cd2009-06-12 14:17:39 +0300781 rates->header.len = wl1251_build_extended_rates(rates->rates);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300782 size += sizeof(struct wl12xx_ie_header) + rates->header.len;
783
Kalle Valo80301cd2009-06-12 14:17:39 +0300784 wl1251_dump(DEBUG_SCAN, "PROBE REQ: ", &template, size);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300785
Kalle Valo80301cd2009-06-12 14:17:39 +0300786 return wl1251_cmd_template_set(wl, CMD_PROBE_REQ, &template,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300787 size);
788}
789
Kalle Valo80301cd2009-06-12 14:17:39 +0300790static int wl1251_hw_scan(struct wl1251 *wl, u8 *ssid, size_t len,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300791 u8 active_scan, u8 high_prio, u8 num_channels,
792 u8 probe_requests)
793{
Kalle Valo80301cd2009-06-12 14:17:39 +0300794 struct wl1251_cmd_trigger_scan_to *trigger = NULL;
Kalle Valoff258392009-06-12 14:14:19 +0300795 struct cmd_scan *params = NULL;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300796 int i, ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300797 u16 scan_options = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300798
799 if (wl->scanning)
800 return -EINVAL;
801
802 params = kzalloc(sizeof(*params), GFP_KERNEL);
803 if (!params)
804 return -ENOMEM;
805
806 params->params.rx_config_options = cpu_to_le32(CFG_RX_ALL_GOOD);
807 params->params.rx_filter_options =
808 cpu_to_le32(CFG_RX_PRSP_EN | CFG_RX_MGMT_EN | CFG_RX_BCN_EN);
809
810 /* High priority scan */
811 if (!active_scan)
812 scan_options |= SCAN_PASSIVE;
813 if (high_prio)
814 scan_options |= SCAN_PRIORITY_HIGH;
815 params->params.scan_options = scan_options;
816
817 params->params.num_channels = num_channels;
818 params->params.num_probe_requests = probe_requests;
819 params->params.tx_rate = cpu_to_le16(1 << 1); /* 2 Mbps */
820 params->params.tid_trigger = 0;
821
822 for (i = 0; i < num_channels; i++) {
823 params->channels[i].min_duration = cpu_to_le32(30000);
824 params->channels[i].max_duration = cpu_to_le32(60000);
825 memset(&params->channels[i].bssid_lsb, 0xff, 4);
826 memset(&params->channels[i].bssid_msb, 0xff, 2);
827 params->channels[i].early_termination = 0;
828 params->channels[i].tx_power_att = 0;
829 params->channels[i].channel = i + 1;
830 memset(params->channels[i].pad, 0, 3);
831 }
832
833 for (i = num_channels; i < SCAN_MAX_NUM_OF_CHANNELS; i++)
834 memset(&params->channels[i], 0,
835 sizeof(struct basic_scan_channel_parameters));
836
837 if (len && ssid) {
838 params->params.ssid_len = len;
839 memcpy(params->params.ssid, ssid, len);
840 } else {
841 params->params.ssid_len = 0;
842 memset(params->params.ssid, 0, 32);
843 }
844
Kalle Valo80301cd2009-06-12 14:17:39 +0300845 ret = wl1251_build_probe_req(wl, ssid, len);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300846 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300847 wl1251_error("PROBE request template failed");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300848 goto out;
849 }
850
Kalle Valoff258392009-06-12 14:14:19 +0300851 trigger = kzalloc(sizeof(*trigger), GFP_KERNEL);
852 if (!trigger)
853 goto out;
854
855 trigger->timeout = 0;
856
Kalle Valo80301cd2009-06-12 14:17:39 +0300857 ret = wl1251_cmd_send(wl, CMD_TRIGGER_SCAN_TO, trigger,
Kalle Valoff258392009-06-12 14:14:19 +0300858 sizeof(*trigger));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300859 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300860 wl1251_error("trigger scan to failed for hw scan");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300861 goto out;
862 }
863
Kalle Valo80301cd2009-06-12 14:17:39 +0300864 wl1251_dump(DEBUG_SCAN, "SCAN: ", params, sizeof(*params));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300865
866 wl->scanning = true;
867
Kalle Valo80301cd2009-06-12 14:17:39 +0300868 ret = wl1251_cmd_send(wl, CMD_SCAN, params, sizeof(*params));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300869 if (ret < 0)
Kalle Valo80301cd2009-06-12 14:17:39 +0300870 wl1251_error("SCAN failed");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300871
Bob Copeland0764de62009-08-07 13:32:56 +0300872 wl1251_mem_read(wl, wl->cmd_box_addr, params, sizeof(*params));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300873
Kalle Valoff258392009-06-12 14:14:19 +0300874 if (params->header.status != CMD_STATUS_SUCCESS) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300875 wl1251_error("TEST command answer error: %d",
Kalle Valoff258392009-06-12 14:14:19 +0300876 params->header.status);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300877 wl->scanning = false;
878 ret = -EIO;
879 goto out;
880 }
881
882out:
883 kfree(params);
884 return ret;
885
886}
887
Kalle Valo80301cd2009-06-12 14:17:39 +0300888static int wl1251_op_hw_scan(struct ieee80211_hw *hw,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300889 struct cfg80211_scan_request *req)
890{
Kalle Valo80301cd2009-06-12 14:17:39 +0300891 struct wl1251 *wl = hw->priv;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300892 int ret;
893 u8 *ssid = NULL;
894 size_t ssid_len = 0;
895
Kalle Valo80301cd2009-06-12 14:17:39 +0300896 wl1251_debug(DEBUG_MAC80211, "mac80211 hw scan");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300897
898 if (req->n_ssids) {
899 ssid = req->ssids[0].ssid;
900 ssid_len = req->ssids[0].ssid_len;
901 }
902
903 mutex_lock(&wl->mutex);
Kalle Valoc5483b72009-06-12 14:16:32 +0300904
Kalle Valo80301cd2009-06-12 14:17:39 +0300905 ret = wl1251_ps_elp_wakeup(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300906 if (ret < 0)
907 goto out;
Kalle Valo01d9cfb2009-06-12 14:16:26 +0300908
Kalle Valo80301cd2009-06-12 14:17:39 +0300909 ret = wl1251_hw_scan(hw->priv, ssid, ssid_len, 1, 0, 13, 3);
Kalle Valo01d9cfb2009-06-12 14:16:26 +0300910
Kalle Valo80301cd2009-06-12 14:17:39 +0300911 wl1251_ps_elp_sleep(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300912
913out:
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300914 mutex_unlock(&wl->mutex);
915
916 return ret;
917}
918
Kalle Valo80301cd2009-06-12 14:17:39 +0300919static int wl1251_op_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300920{
Kalle Valo80301cd2009-06-12 14:17:39 +0300921 struct wl1251 *wl = hw->priv;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300922 int ret;
923
Kalle Valocee4fd22009-06-12 14:16:20 +0300924 mutex_lock(&wl->mutex);
925
Kalle Valo80301cd2009-06-12 14:17:39 +0300926 ret = wl1251_ps_elp_wakeup(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300927 if (ret < 0)
928 goto out;
Kalle Valo01d9cfb2009-06-12 14:16:26 +0300929
Kalle Valo80301cd2009-06-12 14:17:39 +0300930 ret = wl1251_acx_rts_threshold(wl, (u16) value);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300931 if (ret < 0)
Kalle Valo80301cd2009-06-12 14:17:39 +0300932 wl1251_warning("wl1251_op_set_rts_threshold failed: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300933
Kalle Valo80301cd2009-06-12 14:17:39 +0300934 wl1251_ps_elp_sleep(wl);
Kalle Valo01d9cfb2009-06-12 14:16:26 +0300935
Kalle Valoc5483b72009-06-12 14:16:32 +0300936out:
Kalle Valocee4fd22009-06-12 14:16:20 +0300937 mutex_unlock(&wl->mutex);
938
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300939 return ret;
940}
941
Kalle Valo80301cd2009-06-12 14:17:39 +0300942static void wl1251_op_bss_info_changed(struct ieee80211_hw *hw,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300943 struct ieee80211_vif *vif,
944 struct ieee80211_bss_conf *bss_conf,
945 u32 changed)
946{
Kalle Valo80301cd2009-06-12 14:17:39 +0300947 enum wl1251_cmd_ps_mode mode;
948 struct wl1251 *wl = hw->priv;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300949 struct sk_buff *beacon;
950 int ret;
951
Kalle Valo80301cd2009-06-12 14:17:39 +0300952 wl1251_debug(DEBUG_MAC80211, "mac80211 bss info changed");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300953
954 mutex_lock(&wl->mutex);
955
Kalle Valo80301cd2009-06-12 14:17:39 +0300956 ret = wl1251_ps_elp_wakeup(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +0300957 if (ret < 0)
958 goto out;
Kalle Valo01d9cfb2009-06-12 14:16:26 +0300959
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300960 if (changed & BSS_CHANGED_ASSOC) {
961 if (bss_conf->assoc) {
962 wl->aid = bss_conf->aid;
963
Kalle Valo80301cd2009-06-12 14:17:39 +0300964 ret = wl1251_build_ps_poll(wl, wl->aid);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300965 if (ret < 0)
Kalle Valoc5483b72009-06-12 14:16:32 +0300966 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300967
Kalle Valo80301cd2009-06-12 14:17:39 +0300968 ret = wl1251_acx_aid(wl, wl->aid);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300969 if (ret < 0)
Kalle Valoc5483b72009-06-12 14:16:32 +0300970 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300971
972 /* If we want to go in PSM but we're not there yet */
973 if (wl->psm_requested && !wl->psm) {
974 mode = STATION_POWER_SAVE_MODE;
Kalle Valo80301cd2009-06-12 14:17:39 +0300975 ret = wl1251_ps_set_mode(wl, mode);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300976 if (ret < 0)
Kalle Valoc5483b72009-06-12 14:16:32 +0300977 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300978 }
979 }
980 }
981 if (changed & BSS_CHANGED_ERP_SLOT) {
982 if (bss_conf->use_short_slot)
Kalle Valo80301cd2009-06-12 14:17:39 +0300983 ret = wl1251_acx_slot(wl, SLOT_TIME_SHORT);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300984 else
Kalle Valo80301cd2009-06-12 14:17:39 +0300985 ret = wl1251_acx_slot(wl, SLOT_TIME_LONG);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300986 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300987 wl1251_warning("Set slot time failed %d", ret);
Kalle Valoc5483b72009-06-12 14:16:32 +0300988 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300989 }
990 }
991
992 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
993 if (bss_conf->use_short_preamble)
Kalle Valo80301cd2009-06-12 14:17:39 +0300994 wl1251_acx_set_preamble(wl, ACX_PREAMBLE_SHORT);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300995 else
Kalle Valo80301cd2009-06-12 14:17:39 +0300996 wl1251_acx_set_preamble(wl, ACX_PREAMBLE_LONG);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300997 }
998
999 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
1000 if (bss_conf->use_cts_prot)
Kalle Valo80301cd2009-06-12 14:17:39 +03001001 ret = wl1251_acx_cts_protect(wl, CTSPROTECT_ENABLE);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001002 else
Kalle Valo80301cd2009-06-12 14:17:39 +03001003 ret = wl1251_acx_cts_protect(wl, CTSPROTECT_DISABLE);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001004 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +03001005 wl1251_warning("Set ctsprotect failed %d", ret);
1006 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001007 }
1008 }
1009
1010 if (changed & BSS_CHANGED_BSSID) {
1011 memcpy(wl->bssid, bss_conf->bssid, ETH_ALEN);
1012
Kalle Valo80301cd2009-06-12 14:17:39 +03001013 ret = wl1251_build_null_data(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001014 if (ret < 0)
1015 goto out;
1016
1017 if (wl->bss_type != BSS_TYPE_IBSS) {
Kalle Valo80301cd2009-06-12 14:17:39 +03001018 ret = wl1251_cmd_join(wl, wl->bss_type, 5, 100, 1);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001019 if (ret < 0)
Kalle Valo80301cd2009-06-12 14:17:39 +03001020 goto out_sleep;
1021 wl1251_warning("Set ctsprotect failed %d", ret);
1022 goto out_sleep;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001023 }
1024 }
1025
1026 if (changed & BSS_CHANGED_BEACON) {
1027 beacon = ieee80211_beacon_get(hw, vif);
Kalle Valo80301cd2009-06-12 14:17:39 +03001028 ret = wl1251_cmd_template_set(wl, CMD_BEACON, beacon->data,
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001029 beacon->len);
1030
1031 if (ret < 0) {
1032 dev_kfree_skb(beacon);
1033 goto out;
1034 }
1035
Kalle Valo80301cd2009-06-12 14:17:39 +03001036 ret = wl1251_cmd_template_set(wl, CMD_PROBE_RESP, beacon->data,
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001037 beacon->len);
1038
1039 dev_kfree_skb(beacon);
1040
1041 if (ret < 0)
1042 goto out;
1043
Juuso Oikarinen77cc9e42009-06-12 14:16:52 +03001044 ret = wl->chip.op_cmd_join(wl, wl->bss_type, 1, 100, 0);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001045
1046 if (ret < 0)
1047 goto out;
1048 }
1049
Kalle Valoc5483b72009-06-12 14:16:32 +03001050out_sleep:
Kalle Valo80301cd2009-06-12 14:17:39 +03001051 wl1251_ps_elp_sleep(wl);
Kalle Valoc5483b72009-06-12 14:16:32 +03001052
1053out:
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001054 mutex_unlock(&wl->mutex);
1055}
1056
1057
1058/* can't be const, mac80211 writes to this */
Kalle Valo80301cd2009-06-12 14:17:39 +03001059static struct ieee80211_rate wl1251_rates[] = {
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001060 { .bitrate = 10,
1061 .hw_value = 0x1,
1062 .hw_value_short = 0x1, },
1063 { .bitrate = 20,
1064 .hw_value = 0x2,
1065 .hw_value_short = 0x2,
1066 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
1067 { .bitrate = 55,
1068 .hw_value = 0x4,
1069 .hw_value_short = 0x4,
1070 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
1071 { .bitrate = 110,
1072 .hw_value = 0x20,
1073 .hw_value_short = 0x20,
1074 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
1075 { .bitrate = 60,
1076 .hw_value = 0x8,
1077 .hw_value_short = 0x8, },
1078 { .bitrate = 90,
1079 .hw_value = 0x10,
1080 .hw_value_short = 0x10, },
1081 { .bitrate = 120,
1082 .hw_value = 0x40,
1083 .hw_value_short = 0x40, },
1084 { .bitrate = 180,
1085 .hw_value = 0x80,
1086 .hw_value_short = 0x80, },
1087 { .bitrate = 240,
1088 .hw_value = 0x200,
1089 .hw_value_short = 0x200, },
1090 { .bitrate = 360,
1091 .hw_value = 0x400,
1092 .hw_value_short = 0x400, },
1093 { .bitrate = 480,
1094 .hw_value = 0x800,
1095 .hw_value_short = 0x800, },
1096 { .bitrate = 540,
1097 .hw_value = 0x1000,
1098 .hw_value_short = 0x1000, },
1099};
1100
1101/* can't be const, mac80211 writes to this */
Kalle Valo80301cd2009-06-12 14:17:39 +03001102static struct ieee80211_channel wl1251_channels[] = {
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001103 { .hw_value = 1, .center_freq = 2412},
1104 { .hw_value = 2, .center_freq = 2417},
1105 { .hw_value = 3, .center_freq = 2422},
1106 { .hw_value = 4, .center_freq = 2427},
1107 { .hw_value = 5, .center_freq = 2432},
1108 { .hw_value = 6, .center_freq = 2437},
1109 { .hw_value = 7, .center_freq = 2442},
1110 { .hw_value = 8, .center_freq = 2447},
1111 { .hw_value = 9, .center_freq = 2452},
1112 { .hw_value = 10, .center_freq = 2457},
1113 { .hw_value = 11, .center_freq = 2462},
1114 { .hw_value = 12, .center_freq = 2467},
1115 { .hw_value = 13, .center_freq = 2472},
1116};
1117
1118/* can't be const, mac80211 writes to this */
Kalle Valo80301cd2009-06-12 14:17:39 +03001119static struct ieee80211_supported_band wl1251_band_2ghz = {
1120 .channels = wl1251_channels,
1121 .n_channels = ARRAY_SIZE(wl1251_channels),
1122 .bitrates = wl1251_rates,
1123 .n_bitrates = ARRAY_SIZE(wl1251_rates),
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001124};
1125
Kalle Valo80301cd2009-06-12 14:17:39 +03001126static const struct ieee80211_ops wl1251_ops = {
1127 .start = wl1251_op_start,
1128 .stop = wl1251_op_stop,
1129 .add_interface = wl1251_op_add_interface,
1130 .remove_interface = wl1251_op_remove_interface,
1131 .config = wl1251_op_config,
1132 .configure_filter = wl1251_op_configure_filter,
1133 .tx = wl1251_op_tx,
1134 .set_key = wl1251_op_set_key,
1135 .hw_scan = wl1251_op_hw_scan,
1136 .bss_info_changed = wl1251_op_bss_info_changed,
1137 .set_rts_threshold = wl1251_op_set_rts_threshold,
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001138};
1139
Kalle Valo80301cd2009-06-12 14:17:39 +03001140static int wl1251_register_hw(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001141{
1142 int ret;
1143
1144 if (wl->mac80211_registered)
1145 return 0;
1146
1147 SET_IEEE80211_PERM_ADDR(wl->hw, wl->mac_addr);
1148
1149 ret = ieee80211_register_hw(wl->hw);
1150 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +03001151 wl1251_error("unable to register mac80211 hw: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001152 return ret;
1153 }
1154
1155 wl->mac80211_registered = true;
1156
Kalle Valo80301cd2009-06-12 14:17:39 +03001157 wl1251_notice("loaded");
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001158
1159 return 0;
1160}
1161
Bob Copeland8e639c02009-08-07 13:33:26 +03001162int wl1251_init_ieee80211(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001163{
Bob Copeland8e639c02009-08-07 13:33:26 +03001164 int ret;
1165
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001166 /* The tx descriptor buffer and the TKIP space */
1167 wl->hw->extra_tx_headroom = sizeof(struct tx_double_buffer_desc)
Juuso Oikarinen9f2ad4f2009-06-12 14:15:54 +03001168 + WL1251_TKIP_IV_SPACE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001169
1170 /* unit us */
1171 /* FIXME: find a proper value */
1172 wl->hw->channel_change_time = 10000;
1173
1174 wl->hw->flags = IEEE80211_HW_SIGNAL_DBM |
1175 IEEE80211_HW_NOISE_DBM;
1176
1177 wl->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
1178 wl->hw->wiphy->max_scan_ssids = 1;
Kalle Valo80301cd2009-06-12 14:17:39 +03001179 wl->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &wl1251_band_2ghz;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001180
Bob Copeland8e639c02009-08-07 13:33:26 +03001181 ret = wl1251_register_hw(wl);
1182 if (ret)
1183 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001184
Bob Copeland8e639c02009-08-07 13:33:26 +03001185 wl1251_debugfs_init(wl);
1186 wl1251_notice("initialized");
1187
1188 ret = 0;
1189
1190out:
1191 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001192}
Bob Copelandaf8c78e2009-08-07 13:33:34 +03001193EXPORT_SYMBOL_GPL(wl1251_init_ieee80211);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001194
Kalle Valo80301cd2009-06-12 14:17:39 +03001195#define WL1251_DEFAULT_CHANNEL 1
Bob Copeland8e639c02009-08-07 13:33:26 +03001196struct ieee80211_hw *wl1251_alloc_hw(void)
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001197{
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001198 struct ieee80211_hw *hw;
Kalle Valo80301cd2009-06-12 14:17:39 +03001199 struct wl1251 *wl;
Bob Copeland8e639c02009-08-07 13:33:26 +03001200 int i;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001201 static const u8 nokia_oui[3] = {0x00, 0x1f, 0xdf};
1202
Kalle Valo80301cd2009-06-12 14:17:39 +03001203 hw = ieee80211_alloc_hw(sizeof(*wl), &wl1251_ops);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001204 if (!hw) {
Kalle Valo80301cd2009-06-12 14:17:39 +03001205 wl1251_error("could not alloc ieee80211_hw");
Bob Copeland8e639c02009-08-07 13:33:26 +03001206 return ERR_PTR(-ENOMEM);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001207 }
1208
1209 wl = hw->priv;
1210 memset(wl, 0, sizeof(*wl));
1211
1212 wl->hw = hw;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001213
1214 wl->data_in_count = 0;
1215
1216 skb_queue_head_init(&wl->tx_queue);
1217
Kalle Valo80301cd2009-06-12 14:17:39 +03001218 INIT_WORK(&wl->filter_work, wl1251_filter_work);
1219 wl->channel = WL1251_DEFAULT_CHANNEL;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001220 wl->scanning = false;
1221 wl->default_key = 0;
1222 wl->listen_int = 1;
1223 wl->rx_counter = 0;
1224 wl->rx_handled = 0;
1225 wl->rx_current_buffer = 0;
1226 wl->rx_last_id = 0;
Kalle Valo80301cd2009-06-12 14:17:39 +03001227 wl->rx_config = WL1251_DEFAULT_RX_CONFIG;
1228 wl->rx_filter = WL1251_DEFAULT_RX_FILTER;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001229 wl->elp = false;
1230 wl->psm = 0;
1231 wl->psm_requested = false;
1232 wl->tx_queue_stopped = false;
Kalle Valo80301cd2009-06-12 14:17:39 +03001233 wl->power_level = WL1251_DEFAULT_POWER_LEVEL;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001234
1235 /* We use the default power on sleep time until we know which chip
1236 * we're using */
Kalle Valo80301cd2009-06-12 14:17:39 +03001237 wl->chip.power_on_sleep = WL1251_DEFAULT_POWER_ON_SLEEP;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001238
1239 for (i = 0; i < FW_TX_CMPLT_BLOCK_SIZE; i++)
1240 wl->tx_frames[i] = NULL;
1241
1242 wl->next_tx_complete = 0;
1243
1244 /*
1245 * In case our MAC address is not correctly set,
1246 * we use a random but Nokia MAC.
1247 */
1248 memcpy(wl->mac_addr, nokia_oui, 3);
1249 get_random_bytes(wl->mac_addr + 3, 3);
1250
Kalle Valo80301cd2009-06-12 14:17:39 +03001251 wl->state = WL1251_STATE_OFF;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001252 mutex_init(&wl->mutex);
1253
1254 wl->tx_mgmt_frm_rate = DEFAULT_HW_GEN_TX_RATE;
1255 wl->tx_mgmt_frm_mod = DEFAULT_HW_GEN_MODULATION_TYPE;
1256
Kalle Valo47212132009-06-12 14:15:08 +03001257 wl->rx_descriptor = kmalloc(sizeof(*wl->rx_descriptor), GFP_KERNEL);
1258 if (!wl->rx_descriptor) {
Kalle Valo80301cd2009-06-12 14:17:39 +03001259 wl1251_error("could not allocate memory for rx descriptor");
Bob Copeland8e639c02009-08-07 13:33:26 +03001260 ieee80211_free_hw(hw);
1261 return ERR_PTR(-ENOMEM);
Kalle Valo47212132009-06-12 14:15:08 +03001262 }
1263
Bob Copeland8e639c02009-08-07 13:33:26 +03001264 return hw;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001265}
Bob Copelandaf8c78e2009-08-07 13:33:34 +03001266EXPORT_SYMBOL_GPL(wl1251_alloc_hw);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001267
Bob Copeland8e639c02009-08-07 13:33:26 +03001268int wl1251_free_hw(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001269{
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001270 ieee80211_unregister_hw(wl->hw);
1271
Kalle Valo80301cd2009-06-12 14:17:39 +03001272 wl1251_debugfs_exit(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001273
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001274 kfree(wl->target_mem_map);
1275 kfree(wl->data_path);
1276 kfree(wl->fw);
1277 wl->fw = NULL;
1278 kfree(wl->nvs);
1279 wl->nvs = NULL;
Kalle Valo47212132009-06-12 14:15:08 +03001280
1281 kfree(wl->rx_descriptor);
1282 wl->rx_descriptor = NULL;
1283
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001284 ieee80211_free_hw(wl->hw);
1285
1286 return 0;
1287}
Bob Copelandaf8c78e2009-08-07 13:33:34 +03001288EXPORT_SYMBOL_GPL(wl1251_free_hw);
1289
1290MODULE_DESCRIPTION("TI wl1251 Wireles LAN Driver Core");
1291MODULE_LICENSE("GPL");
1292MODULE_AUTHOR("Kalle Valo <Kalle.Valo@nokia.com>");
1293MODULE_AUTHOR("Luciano Coelho <luciano.coelho@nokia.com>");