blob: 73232db2b4662c4b821c6ad73c6e5ea44b680337 [file] [log] [blame]
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001/*
2 * This file is part of wl12xx
3 *
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>
29#include <linux/spi/spi.h>
30#include <linux/crc32.h>
31#include <linux/etherdevice.h>
32#include <linux/spi/wl12xx.h>
33
34#include "wl12xx.h"
35#include "wl12xx_80211.h"
36#include "reg.h"
37#include "wl1251.h"
38#include "spi.h"
39#include "event.h"
40#include "tx.h"
41#include "rx.h"
42#include "ps.h"
43#include "init.h"
44#include "debugfs.h"
45
46static void wl12xx_disable_interrupts(struct wl12xx *wl)
47{
48 disable_irq(wl->irq);
49}
50
51static void wl12xx_power_off(struct wl12xx *wl)
52{
53 wl->set_power(false);
54}
55
56static void wl12xx_power_on(struct wl12xx *wl)
57{
58 wl->set_power(true);
59}
60
61static irqreturn_t wl12xx_irq(int irq, void *cookie)
62{
63 struct wl12xx *wl;
64
65 wl12xx_debug(DEBUG_IRQ, "IRQ");
66
67 wl = cookie;
68
69 schedule_work(&wl->irq_work);
70
71 return IRQ_HANDLED;
72}
73
74static int wl12xx_fetch_firmware(struct wl12xx *wl)
75{
76 const struct firmware *fw;
77 int ret;
78
79 ret = request_firmware(&fw, wl->chip.fw_filename, &wl->spi->dev);
80
81 if (ret < 0) {
82 wl12xx_error("could not get firmware: %d", ret);
83 return ret;
84 }
85
86 if (fw->size % 4) {
Bob Copeland8bce6122009-05-01 08:20:07 -040087 wl12xx_error("firmware size is not multiple of 32 bits: %zu",
Kalle Valo2f01a1f2009-04-29 23:33:31 +030088 fw->size);
89 ret = -EILSEQ;
90 goto out;
91 }
92
93 wl->fw_len = fw->size;
94 wl->fw = kmalloc(wl->fw_len, GFP_KERNEL);
95
96 if (!wl->fw) {
97 wl12xx_error("could not allocate memory for the firmware");
98 ret = -ENOMEM;
99 goto out;
100 }
101
102 memcpy(wl->fw, fw->data, wl->fw_len);
103
104 ret = 0;
105
106out:
107 release_firmware(fw);
108
109 return ret;
110}
111
112static int wl12xx_fetch_nvs(struct wl12xx *wl)
113{
114 const struct firmware *fw;
115 int ret;
116
117 ret = request_firmware(&fw, wl->chip.nvs_filename, &wl->spi->dev);
118
119 if (ret < 0) {
120 wl12xx_error("could not get nvs file: %d", ret);
121 return ret;
122 }
123
124 if (fw->size % 4) {
Bob Copeland8bce6122009-05-01 08:20:07 -0400125 wl12xx_error("nvs size is not multiple of 32 bits: %zu",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300126 fw->size);
127 ret = -EILSEQ;
128 goto out;
129 }
130
131 wl->nvs_len = fw->size;
132 wl->nvs = kmalloc(wl->nvs_len, GFP_KERNEL);
133
134 if (!wl->nvs) {
135 wl12xx_error("could not allocate memory for the nvs file");
136 ret = -ENOMEM;
137 goto out;
138 }
139
140 memcpy(wl->nvs, fw->data, wl->nvs_len);
141
142 ret = 0;
143
144out:
145 release_firmware(fw);
146
147 return ret;
148}
149
150static void wl12xx_fw_wakeup(struct wl12xx *wl)
151{
152 u32 elp_reg;
153
154 elp_reg = ELPCTRL_WAKE_UP;
155 wl12xx_write32(wl, HW_ACCESS_ELP_CTRL_REG_ADDR, elp_reg);
156 elp_reg = wl12xx_read32(wl, HW_ACCESS_ELP_CTRL_REG_ADDR);
157
158 if (!(elp_reg & ELPCTRL_WLAN_READY)) {
159 wl12xx_warning("WLAN not ready");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300160 }
161}
162
163static int wl12xx_chip_wakeup(struct wl12xx *wl)
164{
165 int ret = 0;
166
167 wl12xx_power_on(wl);
168 msleep(wl->chip.power_on_sleep);
169 wl12xx_spi_reset(wl);
170 wl12xx_spi_init(wl);
171
172 /* We don't need a real memory partition here, because we only want
173 * to use the registers at this point. */
174 wl12xx_set_partition(wl,
175 0x00000000,
176 0x00000000,
177 REGISTERS_BASE,
178 REGISTERS_DOWN_SIZE);
179
180 /* ELP module wake up */
181 wl12xx_fw_wakeup(wl);
182
183 /* whal_FwCtrl_BootSm() */
184
185 /* 0. read chip id from CHIP_ID */
186 wl->chip.id = wl12xx_reg_read32(wl, CHIP_ID_B);
187
188 /* 1. check if chip id is valid */
189
190 switch (wl->chip.id) {
191 case CHIP_ID_1251_PG12:
192 wl12xx_debug(DEBUG_BOOT, "chip id 0x%x (1251 PG12)",
193 wl->chip.id);
194
195 wl1251_setup(wl);
196
197 break;
198 case CHIP_ID_1271_PG10:
Luciano Coelho27797d62009-06-12 14:15:33 +0300199 wl12xx_warning("chip id 0x%x (1271 PG10) support is obsolete",
200 wl->chip.id);
201 break;
202 case CHIP_ID_1271_PG20:
203 wl12xx_debug(DEBUG_BOOT, "chip id 0x%x (1271 PG20)",
204 wl->chip.id);
205 break;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300206 case CHIP_ID_1251_PG10:
207 case CHIP_ID_1251_PG11:
208 default:
209 wl12xx_error("unsupported chip id: 0x%x", wl->chip.id);
210 ret = -ENODEV;
211 goto out;
212 }
213
214 if (wl->fw == NULL) {
215 ret = wl12xx_fetch_firmware(wl);
216 if (ret < 0)
217 goto out;
218 }
219
220 /* No NVS from netlink, try to get it from the filesystem */
221 if (wl->nvs == NULL) {
222 ret = wl12xx_fetch_nvs(wl);
223 if (ret < 0)
224 goto out;
225 }
226
227out:
228 return ret;
229}
230
231static void wl12xx_filter_work(struct work_struct *work)
232{
233 struct wl12xx *wl =
234 container_of(work, struct wl12xx, filter_work);
235 int ret;
236
237 mutex_lock(&wl->mutex);
238
239 if (wl->state == WL12XX_STATE_OFF)
240 goto out;
241
242 ret = wl12xx_cmd_join(wl, wl->bss_type, 1, 100, 0);
243 if (ret < 0)
244 goto out;
245
246out:
247 mutex_unlock(&wl->mutex);
248}
249
250int wl12xx_plt_start(struct wl12xx *wl)
251{
252 int ret;
253
254 wl12xx_notice("power up");
255
256 if (wl->state != WL12XX_STATE_OFF) {
257 wl12xx_error("cannot go into PLT state because not "
258 "in off state: %d", wl->state);
259 return -EBUSY;
260 }
261
262 wl->state = WL12XX_STATE_PLT;
263
264 ret = wl12xx_chip_wakeup(wl);
265 if (ret < 0)
266 return ret;
267
268 ret = wl->chip.op_boot(wl);
269 if (ret < 0)
270 return ret;
271
272 wl12xx_notice("firmware booted in PLT mode (%s)", wl->chip.fw_ver);
273
274 ret = wl->chip.op_plt_init(wl);
275 if (ret < 0)
276 return ret;
277
278 return 0;
279}
280
281int wl12xx_plt_stop(struct wl12xx *wl)
282{
283 wl12xx_notice("power down");
284
285 if (wl->state != WL12XX_STATE_PLT) {
286 wl12xx_error("cannot power down because not in PLT "
287 "state: %d", wl->state);
288 return -EBUSY;
289 }
290
291 wl12xx_disable_interrupts(wl);
292 wl12xx_power_off(wl);
293
294 wl->state = WL12XX_STATE_OFF;
295
296 return 0;
297}
298
299
300static int wl12xx_op_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
301{
302 struct wl12xx *wl = hw->priv;
303
304 skb_queue_tail(&wl->tx_queue, skb);
305
306 schedule_work(&wl->tx_work);
307
308 /*
309 * The workqueue is slow to process the tx_queue and we need stop
310 * the queue here, otherwise the queue will get too long.
311 */
312 if (skb_queue_len(&wl->tx_queue) >= WL12XX_TX_QUEUE_MAX_LENGTH) {
313 ieee80211_stop_queues(wl->hw);
314
315 /*
316 * FIXME: this is racy, the variable is not properly
317 * protected. Maybe fix this by removing the stupid
318 * variable altogether and checking the real queue state?
319 */
320 wl->tx_queue_stopped = true;
321 }
322
323 return NETDEV_TX_OK;
324}
325
326static int wl12xx_op_start(struct ieee80211_hw *hw)
327{
328 struct wl12xx *wl = hw->priv;
329 int ret = 0;
330
331 wl12xx_debug(DEBUG_MAC80211, "mac80211 start");
332
333 mutex_lock(&wl->mutex);
334
335 if (wl->state != WL12XX_STATE_OFF) {
336 wl12xx_error("cannot start because not in off state: %d",
337 wl->state);
338 ret = -EBUSY;
339 goto out;
340 }
341
342 ret = wl12xx_chip_wakeup(wl);
343 if (ret < 0)
344 return ret;
345
346 ret = wl->chip.op_boot(wl);
347 if (ret < 0)
348 goto out;
349
350 ret = wl->chip.op_hw_init(wl);
351 if (ret < 0)
352 goto out;
353
354 ret = wl12xx_acx_station_id(wl);
355 if (ret < 0)
356 goto out;
357
358 wl->state = WL12XX_STATE_ON;
359
360 wl12xx_info("firmware booted (%s)", wl->chip.fw_ver);
361
362out:
363 if (ret < 0)
364 wl12xx_power_off(wl);
365
366 mutex_unlock(&wl->mutex);
367
368 return ret;
369}
370
371static void wl12xx_op_stop(struct ieee80211_hw *hw)
372{
373 struct wl12xx *wl = hw->priv;
374
375 wl12xx_info("down");
376
377 wl12xx_debug(DEBUG_MAC80211, "mac80211 stop");
378
379 mutex_lock(&wl->mutex);
380
381 WARN_ON(wl->state != WL12XX_STATE_ON);
382
383 if (wl->scanning) {
384 mutex_unlock(&wl->mutex);
385 ieee80211_scan_completed(wl->hw, true);
386 mutex_lock(&wl->mutex);
387 wl->scanning = false;
388 }
389
390 wl->state = WL12XX_STATE_OFF;
391
392 wl12xx_disable_interrupts(wl);
393
394 mutex_unlock(&wl->mutex);
395
396 cancel_work_sync(&wl->irq_work);
397 cancel_work_sync(&wl->tx_work);
398 cancel_work_sync(&wl->filter_work);
399
400 mutex_lock(&wl->mutex);
401
402 /* let's notify MAC80211 about the remaining pending TX frames */
403 wl12xx_tx_flush(wl);
404
405 wl12xx_power_off(wl);
406
407 memset(wl->bssid, 0, ETH_ALEN);
408 wl->listen_int = 1;
409 wl->bss_type = MAX_BSS_TYPE;
410
411 wl->data_in_count = 0;
412 wl->rx_counter = 0;
413 wl->rx_handled = 0;
414 wl->rx_current_buffer = 0;
415 wl->rx_last_id = 0;
416 wl->next_tx_complete = 0;
417 wl->elp = false;
418 wl->psm = 0;
419 wl->tx_queue_stopped = false;
420 wl->power_level = WL12XX_DEFAULT_POWER_LEVEL;
421
422 wl12xx_debugfs_reset(wl);
423
424 mutex_unlock(&wl->mutex);
425}
426
427static int wl12xx_op_add_interface(struct ieee80211_hw *hw,
428 struct ieee80211_if_init_conf *conf)
429{
430 struct wl12xx *wl = hw->priv;
431 DECLARE_MAC_BUF(mac);
432 int ret = 0;
433
434 wl12xx_debug(DEBUG_MAC80211, "mac80211 add interface type %d mac %s",
435 conf->type, print_mac(mac, conf->mac_addr));
436
437 mutex_lock(&wl->mutex);
438
439 switch (conf->type) {
440 case NL80211_IFTYPE_STATION:
441 wl->bss_type = BSS_TYPE_STA_BSS;
442 break;
443 case NL80211_IFTYPE_ADHOC:
444 wl->bss_type = BSS_TYPE_IBSS;
445 break;
446 default:
447 ret = -EOPNOTSUPP;
448 goto out;
449 }
450
451 if (memcmp(wl->mac_addr, conf->mac_addr, ETH_ALEN)) {
452 memcpy(wl->mac_addr, conf->mac_addr, ETH_ALEN);
453 SET_IEEE80211_PERM_ADDR(wl->hw, wl->mac_addr);
454 ret = wl12xx_acx_station_id(wl);
455 if (ret < 0)
456 goto out;
457 }
458
459out:
460 mutex_unlock(&wl->mutex);
461 return ret;
462}
463
464static void wl12xx_op_remove_interface(struct ieee80211_hw *hw,
465 struct ieee80211_if_init_conf *conf)
466{
467 wl12xx_debug(DEBUG_MAC80211, "mac80211 remove interface");
468}
469
470static int wl12xx_build_null_data(struct wl12xx *wl)
471{
472 struct wl12xx_null_data_template template;
473
474 if (!is_zero_ether_addr(wl->bssid)) {
475 memcpy(template.header.da, wl->bssid, ETH_ALEN);
476 memcpy(template.header.bssid, wl->bssid, ETH_ALEN);
477 } else {
478 memset(template.header.da, 0xff, ETH_ALEN);
479 memset(template.header.bssid, 0xff, ETH_ALEN);
480 }
481
482 memcpy(template.header.sa, wl->mac_addr, ETH_ALEN);
483 template.header.frame_ctl = cpu_to_le16(IEEE80211_FTYPE_DATA |
484 IEEE80211_STYPE_NULLFUNC);
485
486 return wl12xx_cmd_template_set(wl, CMD_NULL_DATA, &template,
487 sizeof(template));
488
489}
490
491static int wl12xx_build_ps_poll(struct wl12xx *wl, u16 aid)
492{
493 struct wl12xx_ps_poll_template template;
494
495 memcpy(template.bssid, wl->bssid, ETH_ALEN);
496 memcpy(template.ta, wl->mac_addr, ETH_ALEN);
497 template.aid = aid;
498 template.fc = cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL);
499
500 return wl12xx_cmd_template_set(wl, CMD_PS_POLL, &template,
501 sizeof(template));
502
503}
504
505static int wl12xx_op_config(struct ieee80211_hw *hw, u32 changed)
506{
507 struct wl12xx *wl = hw->priv;
508 struct ieee80211_conf *conf = &hw->conf;
509 int channel, ret = 0;
510
511 channel = ieee80211_frequency_to_channel(conf->channel->center_freq);
512
513 wl12xx_debug(DEBUG_MAC80211, "mac80211 config ch %d psm %s power %d",
514 channel,
515 conf->flags & IEEE80211_CONF_PS ? "on" : "off",
516 conf->power_level);
517
518 mutex_lock(&wl->mutex);
519
520 if (channel != wl->channel) {
521 /* FIXME: use beacon interval provided by mac80211 */
522 ret = wl12xx_cmd_join(wl, wl->bss_type, 1, 100, 0);
523 if (ret < 0)
524 goto out;
525
526 wl->channel = channel;
527 }
528
529 ret = wl12xx_build_null_data(wl);
530 if (ret < 0)
531 goto out;
532
533 if (conf->flags & IEEE80211_CONF_PS && !wl->psm_requested) {
534 wl12xx_info("psm enabled");
535
536 wl->psm_requested = true;
537
538 /*
539 * We enter PSM only if we're already associated.
540 * If we're not, we'll enter it when joining an SSID,
541 * through the bss_info_changed() hook.
542 */
543 ret = wl12xx_ps_set_mode(wl, STATION_POWER_SAVE_MODE);
544 } else if (!(conf->flags & IEEE80211_CONF_PS) &&
545 wl->psm_requested) {
546 wl12xx_info("psm disabled");
547
548 wl->psm_requested = false;
549
550 if (wl->psm)
551 ret = wl12xx_ps_set_mode(wl, STATION_ACTIVE_MODE);
552 }
553
554 if (conf->power_level != wl->power_level) {
555 ret = wl12xx_acx_tx_power(wl, conf->power_level);
556 if (ret < 0)
557 goto out;
558
559 wl->power_level = conf->power_level;
560 }
561
562out:
563 mutex_unlock(&wl->mutex);
564 return ret;
565}
566
567#define WL12XX_SUPPORTED_FILTERS (FIF_PROMISC_IN_BSS | \
568 FIF_ALLMULTI | \
569 FIF_FCSFAIL | \
570 FIF_BCN_PRBRESP_PROMISC | \
571 FIF_CONTROL | \
572 FIF_OTHER_BSS)
573
574static void wl12xx_op_configure_filter(struct ieee80211_hw *hw,
575 unsigned int changed,
576 unsigned int *total,
577 int mc_count,
578 struct dev_addr_list *mc_list)
579{
580 struct wl12xx *wl = hw->priv;
581
582 wl12xx_debug(DEBUG_MAC80211, "mac80211 configure filter");
583
584 *total &= WL12XX_SUPPORTED_FILTERS;
585 changed &= WL12XX_SUPPORTED_FILTERS;
586
587 if (changed == 0)
588 /* no filters which we support changed */
589 return;
590
591 /* FIXME: wl->rx_config and wl->rx_filter are not protected */
592
593 wl->rx_config = WL12XX_DEFAULT_RX_CONFIG;
594 wl->rx_filter = WL12XX_DEFAULT_RX_FILTER;
595
596 if (*total & FIF_PROMISC_IN_BSS) {
597 wl->rx_config |= CFG_BSSID_FILTER_EN;
598 wl->rx_config |= CFG_RX_ALL_GOOD;
599 }
600 if (*total & FIF_ALLMULTI)
601 /*
602 * CFG_MC_FILTER_EN in rx_config needs to be 0 to receive
603 * all multicast frames
604 */
605 wl->rx_config &= ~CFG_MC_FILTER_EN;
606 if (*total & FIF_FCSFAIL)
607 wl->rx_filter |= CFG_RX_FCS_ERROR;
608 if (*total & FIF_BCN_PRBRESP_PROMISC) {
609 wl->rx_config &= ~CFG_BSSID_FILTER_EN;
610 wl->rx_config &= ~CFG_SSID_FILTER_EN;
611 }
612 if (*total & FIF_CONTROL)
613 wl->rx_filter |= CFG_RX_CTL_EN;
614 if (*total & FIF_OTHER_BSS)
615 wl->rx_filter &= ~CFG_BSSID_FILTER_EN;
616
617 /*
618 * FIXME: workqueues need to be properly cancelled on stop(), for
619 * now let's just disable changing the filter settings. They will
620 * be updated any on config().
621 */
622 /* schedule_work(&wl->filter_work); */
623}
624
625/* HW encryption */
Kalle Valoff258392009-06-12 14:14:19 +0300626static int wl12xx_set_key_type(struct wl12xx *wl,
627 struct wl12xx_cmd_set_keys *key,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300628 enum set_key_cmd cmd,
629 struct ieee80211_key_conf *mac80211_key,
630 const u8 *addr)
631{
632 switch (mac80211_key->alg) {
633 case ALG_WEP:
634 if (is_broadcast_ether_addr(addr))
635 key->key_type = KEY_WEP_DEFAULT;
636 else
637 key->key_type = KEY_WEP_ADDR;
638
639 mac80211_key->hw_key_idx = mac80211_key->keyidx;
640 break;
641 case ALG_TKIP:
642 if (is_broadcast_ether_addr(addr))
643 key->key_type = KEY_TKIP_MIC_GROUP;
644 else
645 key->key_type = KEY_TKIP_MIC_PAIRWISE;
646
647 mac80211_key->hw_key_idx = mac80211_key->keyidx;
648 break;
649 case ALG_CCMP:
650 if (is_broadcast_ether_addr(addr))
651 key->key_type = KEY_AES_GROUP;
652 else
653 key->key_type = KEY_AES_PAIRWISE;
654 mac80211_key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
655 break;
656 default:
657 wl12xx_error("Unknown key algo 0x%x", mac80211_key->alg);
658 return -EOPNOTSUPP;
659 }
660
661 return 0;
662}
663
664static int wl12xx_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
665 struct ieee80211_vif *vif,
666 struct ieee80211_sta *sta,
667 struct ieee80211_key_conf *key)
668{
669 struct wl12xx *wl = hw->priv;
Kalle Valoff258392009-06-12 14:14:19 +0300670 struct wl12xx_cmd_set_keys *wl_cmd;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300671 const u8 *addr;
672 int ret;
673
674 static const u8 bcast_addr[ETH_ALEN] =
675 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
676
677 wl12xx_debug(DEBUG_MAC80211, "mac80211 set key");
678
Kalle Valoff258392009-06-12 14:14:19 +0300679 wl_cmd = kzalloc(sizeof(*wl_cmd), GFP_KERNEL);
680 if (!wl_cmd) {
681 ret = -ENOMEM;
682 goto out;
683 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300684
685 addr = sta ? sta->addr : bcast_addr;
686
687 wl12xx_debug(DEBUG_CRYPT, "CMD: 0x%x", cmd);
688 wl12xx_dump(DEBUG_CRYPT, "ADDR: ", addr, ETH_ALEN);
689 wl12xx_debug(DEBUG_CRYPT, "Key: algo:0x%x, id:%d, len:%d flags 0x%x",
690 key->alg, key->keyidx, key->keylen, key->flags);
691 wl12xx_dump(DEBUG_CRYPT, "KEY: ", key->key, key->keylen);
692
Kalle Valoff258392009-06-12 14:14:19 +0300693 if (is_zero_ether_addr(addr)) {
694 /* We dont support TX only encryption */
695 ret = -EOPNOTSUPP;
696 goto out;
697 }
698
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300699 mutex_lock(&wl->mutex);
700
701 switch (cmd) {
702 case SET_KEY:
Kalle Valoff258392009-06-12 14:14:19 +0300703 wl_cmd->key_action = KEY_ADD_OR_REPLACE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300704 break;
705 case DISABLE_KEY:
Kalle Valoff258392009-06-12 14:14:19 +0300706 wl_cmd->key_action = KEY_REMOVE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300707 break;
708 default:
709 wl12xx_error("Unsupported key cmd 0x%x", cmd);
710 break;
711 }
712
Kalle Valoff258392009-06-12 14:14:19 +0300713 ret = wl12xx_set_key_type(wl, wl_cmd, cmd, key, addr);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300714 if (ret < 0) {
715 wl12xx_error("Set KEY type failed");
Kalle Valoff258392009-06-12 14:14:19 +0300716 goto out_unlock;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300717 }
718
Kalle Valoff258392009-06-12 14:14:19 +0300719 if (wl_cmd->key_type != KEY_WEP_DEFAULT)
720 memcpy(wl_cmd->addr, addr, ETH_ALEN);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300721
Kalle Valoff258392009-06-12 14:14:19 +0300722 if ((wl_cmd->key_type == KEY_TKIP_MIC_GROUP) ||
723 (wl_cmd->key_type == KEY_TKIP_MIC_PAIRWISE)) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300724 /*
725 * We get the key in the following form:
726 * TKIP (16 bytes) - TX MIC (8 bytes) - RX MIC (8 bytes)
727 * but the target is expecting:
728 * TKIP - RX MIC - TX MIC
729 */
Kalle Valoff258392009-06-12 14:14:19 +0300730 memcpy(wl_cmd->key, key->key, 16);
731 memcpy(wl_cmd->key + 16, key->key + 24, 8);
732 memcpy(wl_cmd->key + 24, key->key + 16, 8);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300733
734 } else {
Kalle Valoff258392009-06-12 14:14:19 +0300735 memcpy(wl_cmd->key, key->key, key->keylen);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300736 }
Kalle Valoff258392009-06-12 14:14:19 +0300737 wl_cmd->key_size = key->keylen;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300738
Kalle Valoff258392009-06-12 14:14:19 +0300739 wl_cmd->id = key->keyidx;
740 wl_cmd->ssid_profile = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300741
Kalle Valoff258392009-06-12 14:14:19 +0300742 wl12xx_dump(DEBUG_CRYPT, "TARGET KEY: ", wl_cmd, sizeof(*wl_cmd));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300743
Kalle Valoff258392009-06-12 14:14:19 +0300744 ret = wl12xx_cmd_send(wl, CMD_SET_KEYS, wl_cmd, sizeof(*wl_cmd));
745 if (ret < 0) {
746 wl12xx_warning("could not set keys");
747 goto out_unlock;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300748 }
749
Kalle Valoff258392009-06-12 14:14:19 +0300750out_unlock:
751 mutex_unlock(&wl->mutex);
752
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300753out:
Kalle Valoff258392009-06-12 14:14:19 +0300754 kfree(wl_cmd);
755
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300756 return ret;
757}
758
759static int wl12xx_build_basic_rates(char *rates)
760{
761 u8 index = 0;
762
763 rates[index++] = IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_1MB;
764 rates[index++] = IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_2MB;
765 rates[index++] = IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_5MB;
766 rates[index++] = IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_11MB;
767
768 return index;
769}
770
771static int wl12xx_build_extended_rates(char *rates)
772{
773 u8 index = 0;
774
775 rates[index++] = IEEE80211_OFDM_RATE_6MB;
776 rates[index++] = IEEE80211_OFDM_RATE_9MB;
777 rates[index++] = IEEE80211_OFDM_RATE_12MB;
778 rates[index++] = IEEE80211_OFDM_RATE_18MB;
779 rates[index++] = IEEE80211_OFDM_RATE_24MB;
780 rates[index++] = IEEE80211_OFDM_RATE_36MB;
781 rates[index++] = IEEE80211_OFDM_RATE_48MB;
782 rates[index++] = IEEE80211_OFDM_RATE_54MB;
783
784 return index;
785}
786
787
788static int wl12xx_build_probe_req(struct wl12xx *wl, u8 *ssid, size_t ssid_len)
789{
790 struct wl12xx_probe_req_template template;
791 struct wl12xx_ie_rates *rates;
792 char *ptr;
793 u16 size;
794
795 ptr = (char *)&template;
796 size = sizeof(struct ieee80211_header);
797
798 memset(template.header.da, 0xff, ETH_ALEN);
799 memset(template.header.bssid, 0xff, ETH_ALEN);
800 memcpy(template.header.sa, wl->mac_addr, ETH_ALEN);
801 template.header.frame_ctl = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
802
803 /* IEs */
804 /* SSID */
805 template.ssid.header.id = WLAN_EID_SSID;
806 template.ssid.header.len = ssid_len;
807 if (ssid_len && ssid)
808 memcpy(template.ssid.ssid, ssid, ssid_len);
809 size += sizeof(struct wl12xx_ie_header) + ssid_len;
810 ptr += size;
811
812 /* Basic Rates */
813 rates = (struct wl12xx_ie_rates *)ptr;
814 rates->header.id = WLAN_EID_SUPP_RATES;
815 rates->header.len = wl12xx_build_basic_rates(rates->rates);
816 size += sizeof(struct wl12xx_ie_header) + rates->header.len;
817 ptr += sizeof(struct wl12xx_ie_header) + rates->header.len;
818
819 /* Extended rates */
820 rates = (struct wl12xx_ie_rates *)ptr;
821 rates->header.id = WLAN_EID_EXT_SUPP_RATES;
822 rates->header.len = wl12xx_build_extended_rates(rates->rates);
823 size += sizeof(struct wl12xx_ie_header) + rates->header.len;
824
825 wl12xx_dump(DEBUG_SCAN, "PROBE REQ: ", &template, size);
826
827 return wl12xx_cmd_template_set(wl, CMD_PROBE_REQ, &template,
828 size);
829}
830
831static int wl12xx_hw_scan(struct wl12xx *wl, u8 *ssid, size_t len,
832 u8 active_scan, u8 high_prio, u8 num_channels,
833 u8 probe_requests)
834{
Kalle Valoff258392009-06-12 14:14:19 +0300835 struct wl12xx_cmd_trigger_scan_to *trigger = NULL;
836 struct cmd_scan *params = NULL;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300837 int i, ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300838 u16 scan_options = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300839
840 if (wl->scanning)
841 return -EINVAL;
842
843 params = kzalloc(sizeof(*params), GFP_KERNEL);
844 if (!params)
845 return -ENOMEM;
846
847 params->params.rx_config_options = cpu_to_le32(CFG_RX_ALL_GOOD);
848 params->params.rx_filter_options =
849 cpu_to_le32(CFG_RX_PRSP_EN | CFG_RX_MGMT_EN | CFG_RX_BCN_EN);
850
851 /* High priority scan */
852 if (!active_scan)
853 scan_options |= SCAN_PASSIVE;
854 if (high_prio)
855 scan_options |= SCAN_PRIORITY_HIGH;
856 params->params.scan_options = scan_options;
857
858 params->params.num_channels = num_channels;
859 params->params.num_probe_requests = probe_requests;
860 params->params.tx_rate = cpu_to_le16(1 << 1); /* 2 Mbps */
861 params->params.tid_trigger = 0;
862
863 for (i = 0; i < num_channels; i++) {
864 params->channels[i].min_duration = cpu_to_le32(30000);
865 params->channels[i].max_duration = cpu_to_le32(60000);
866 memset(&params->channels[i].bssid_lsb, 0xff, 4);
867 memset(&params->channels[i].bssid_msb, 0xff, 2);
868 params->channels[i].early_termination = 0;
869 params->channels[i].tx_power_att = 0;
870 params->channels[i].channel = i + 1;
871 memset(params->channels[i].pad, 0, 3);
872 }
873
874 for (i = num_channels; i < SCAN_MAX_NUM_OF_CHANNELS; i++)
875 memset(&params->channels[i], 0,
876 sizeof(struct basic_scan_channel_parameters));
877
878 if (len && ssid) {
879 params->params.ssid_len = len;
880 memcpy(params->params.ssid, ssid, len);
881 } else {
882 params->params.ssid_len = 0;
883 memset(params->params.ssid, 0, 32);
884 }
885
886 ret = wl12xx_build_probe_req(wl, ssid, len);
887 if (ret < 0) {
888 wl12xx_error("PROBE request template failed");
889 goto out;
890 }
891
Kalle Valoff258392009-06-12 14:14:19 +0300892 trigger = kzalloc(sizeof(*trigger), GFP_KERNEL);
893 if (!trigger)
894 goto out;
895
896 trigger->timeout = 0;
897
898 ret = wl12xx_cmd_send(wl, CMD_TRIGGER_SCAN_TO, trigger,
899 sizeof(*trigger));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300900 if (ret < 0) {
Kalle Valoff258392009-06-12 14:14:19 +0300901 wl12xx_error("trigger scan to failed for hw scan");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300902 goto out;
903 }
904
905 wl12xx_dump(DEBUG_SCAN, "SCAN: ", params, sizeof(*params));
906
907 wl->scanning = true;
908
909 ret = wl12xx_cmd_send(wl, CMD_SCAN, params, sizeof(*params));
910 if (ret < 0)
911 wl12xx_error("SCAN failed");
912
913 wl12xx_spi_mem_read(wl, wl->cmd_box_addr, params, sizeof(*params));
914
Kalle Valoff258392009-06-12 14:14:19 +0300915 if (params->header.status != CMD_STATUS_SUCCESS) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300916 wl12xx_error("TEST command answer error: %d",
Kalle Valoff258392009-06-12 14:14:19 +0300917 params->header.status);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300918 wl->scanning = false;
919 ret = -EIO;
920 goto out;
921 }
922
923out:
924 kfree(params);
925 return ret;
926
927}
928
929static int wl12xx_op_hw_scan(struct ieee80211_hw *hw,
930 struct cfg80211_scan_request *req)
931{
932 struct wl12xx *wl = hw->priv;
933 int ret;
934 u8 *ssid = NULL;
935 size_t ssid_len = 0;
936
937 wl12xx_debug(DEBUG_MAC80211, "mac80211 hw scan");
938
939 if (req->n_ssids) {
940 ssid = req->ssids[0].ssid;
941 ssid_len = req->ssids[0].ssid_len;
942 }
943
944 mutex_lock(&wl->mutex);
945 ret = wl12xx_hw_scan(hw->priv, ssid, ssid_len, 1, 0, 13, 3);
946 mutex_unlock(&wl->mutex);
947
948 return ret;
949}
950
951static int wl12xx_op_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
952{
953 struct wl12xx *wl = hw->priv;
954 int ret;
955
956 ret = wl12xx_acx_rts_threshold(wl, (u16) value);
957
958 if (ret < 0)
959 wl12xx_warning("wl12xx_op_set_rts_threshold failed: %d", ret);
960
961 return ret;
962}
963
964static void wl12xx_op_bss_info_changed(struct ieee80211_hw *hw,
965 struct ieee80211_vif *vif,
966 struct ieee80211_bss_conf *bss_conf,
967 u32 changed)
968{
Kalle Valoff258392009-06-12 14:14:19 +0300969 enum wl12xx_cmd_ps_mode mode;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300970 struct wl12xx *wl = hw->priv;
971 struct sk_buff *beacon;
972 int ret;
973
974 wl12xx_debug(DEBUG_MAC80211, "mac80211 bss info changed");
975
976 mutex_lock(&wl->mutex);
977
978 if (changed & BSS_CHANGED_ASSOC) {
979 if (bss_conf->assoc) {
980 wl->aid = bss_conf->aid;
981
982 ret = wl12xx_build_ps_poll(wl, wl->aid);
983 if (ret < 0)
984 goto out;
985
986 ret = wl12xx_acx_aid(wl, wl->aid);
987 if (ret < 0)
988 goto out;
989
990 /* If we want to go in PSM but we're not there yet */
991 if (wl->psm_requested && !wl->psm) {
992 mode = STATION_POWER_SAVE_MODE;
993 ret = wl12xx_ps_set_mode(wl, mode);
994 if (ret < 0)
995 goto out;
996 }
997 }
998 }
999 if (changed & BSS_CHANGED_ERP_SLOT) {
1000 if (bss_conf->use_short_slot)
1001 ret = wl12xx_acx_slot(wl, SLOT_TIME_SHORT);
1002 else
1003 ret = wl12xx_acx_slot(wl, SLOT_TIME_LONG);
1004 if (ret < 0) {
1005 wl12xx_warning("Set slot time failed %d", ret);
1006 goto out;
1007 }
1008 }
1009
1010 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
1011 if (bss_conf->use_short_preamble)
1012 wl12xx_acx_set_preamble(wl, ACX_PREAMBLE_SHORT);
1013 else
1014 wl12xx_acx_set_preamble(wl, ACX_PREAMBLE_LONG);
1015 }
1016
1017 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
1018 if (bss_conf->use_cts_prot)
1019 ret = wl12xx_acx_cts_protect(wl, CTSPROTECT_ENABLE);
1020 else
1021 ret = wl12xx_acx_cts_protect(wl, CTSPROTECT_DISABLE);
1022 if (ret < 0) {
1023 wl12xx_warning("Set ctsprotect failed %d", ret);
1024 goto out;
1025 }
1026 }
1027
1028 if (changed & BSS_CHANGED_BSSID) {
1029 memcpy(wl->bssid, bss_conf->bssid, ETH_ALEN);
1030
1031 ret = wl12xx_build_null_data(wl);
1032 if (ret < 0)
1033 goto out;
1034
1035 if (wl->bss_type != BSS_TYPE_IBSS) {
1036 ret = wl12xx_cmd_join(wl, wl->bss_type, 5, 100, 1);
1037 if (ret < 0)
1038 goto out;
1039 }
1040 }
1041
1042 if (changed & BSS_CHANGED_BEACON) {
1043 beacon = ieee80211_beacon_get(hw, vif);
1044 ret = wl12xx_cmd_template_set(wl, CMD_BEACON, beacon->data,
1045 beacon->len);
1046
1047 if (ret < 0) {
1048 dev_kfree_skb(beacon);
1049 goto out;
1050 }
1051
1052 ret = wl12xx_cmd_template_set(wl, CMD_PROBE_RESP, beacon->data,
1053 beacon->len);
1054
1055 dev_kfree_skb(beacon);
1056
1057 if (ret < 0)
1058 goto out;
1059
1060 ret = wl12xx_cmd_join(wl, wl->bss_type, 1, 100, 0);
1061
1062 if (ret < 0)
1063 goto out;
1064 }
1065
1066out:
1067 mutex_unlock(&wl->mutex);
1068}
1069
1070
1071/* can't be const, mac80211 writes to this */
1072static struct ieee80211_rate wl12xx_rates[] = {
1073 { .bitrate = 10,
1074 .hw_value = 0x1,
1075 .hw_value_short = 0x1, },
1076 { .bitrate = 20,
1077 .hw_value = 0x2,
1078 .hw_value_short = 0x2,
1079 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
1080 { .bitrate = 55,
1081 .hw_value = 0x4,
1082 .hw_value_short = 0x4,
1083 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
1084 { .bitrate = 110,
1085 .hw_value = 0x20,
1086 .hw_value_short = 0x20,
1087 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
1088 { .bitrate = 60,
1089 .hw_value = 0x8,
1090 .hw_value_short = 0x8, },
1091 { .bitrate = 90,
1092 .hw_value = 0x10,
1093 .hw_value_short = 0x10, },
1094 { .bitrate = 120,
1095 .hw_value = 0x40,
1096 .hw_value_short = 0x40, },
1097 { .bitrate = 180,
1098 .hw_value = 0x80,
1099 .hw_value_short = 0x80, },
1100 { .bitrate = 240,
1101 .hw_value = 0x200,
1102 .hw_value_short = 0x200, },
1103 { .bitrate = 360,
1104 .hw_value = 0x400,
1105 .hw_value_short = 0x400, },
1106 { .bitrate = 480,
1107 .hw_value = 0x800,
1108 .hw_value_short = 0x800, },
1109 { .bitrate = 540,
1110 .hw_value = 0x1000,
1111 .hw_value_short = 0x1000, },
1112};
1113
1114/* can't be const, mac80211 writes to this */
1115static struct ieee80211_channel wl12xx_channels[] = {
1116 { .hw_value = 1, .center_freq = 2412},
1117 { .hw_value = 2, .center_freq = 2417},
1118 { .hw_value = 3, .center_freq = 2422},
1119 { .hw_value = 4, .center_freq = 2427},
1120 { .hw_value = 5, .center_freq = 2432},
1121 { .hw_value = 6, .center_freq = 2437},
1122 { .hw_value = 7, .center_freq = 2442},
1123 { .hw_value = 8, .center_freq = 2447},
1124 { .hw_value = 9, .center_freq = 2452},
1125 { .hw_value = 10, .center_freq = 2457},
1126 { .hw_value = 11, .center_freq = 2462},
1127 { .hw_value = 12, .center_freq = 2467},
1128 { .hw_value = 13, .center_freq = 2472},
1129};
1130
1131/* can't be const, mac80211 writes to this */
1132static struct ieee80211_supported_band wl12xx_band_2ghz = {
1133 .channels = wl12xx_channels,
1134 .n_channels = ARRAY_SIZE(wl12xx_channels),
1135 .bitrates = wl12xx_rates,
1136 .n_bitrates = ARRAY_SIZE(wl12xx_rates),
1137};
1138
1139static const struct ieee80211_ops wl12xx_ops = {
1140 .start = wl12xx_op_start,
1141 .stop = wl12xx_op_stop,
1142 .add_interface = wl12xx_op_add_interface,
1143 .remove_interface = wl12xx_op_remove_interface,
1144 .config = wl12xx_op_config,
1145 .configure_filter = wl12xx_op_configure_filter,
1146 .tx = wl12xx_op_tx,
1147 .set_key = wl12xx_op_set_key,
1148 .hw_scan = wl12xx_op_hw_scan,
1149 .bss_info_changed = wl12xx_op_bss_info_changed,
1150 .set_rts_threshold = wl12xx_op_set_rts_threshold,
1151};
1152
1153static int wl12xx_register_hw(struct wl12xx *wl)
1154{
1155 int ret;
1156
1157 if (wl->mac80211_registered)
1158 return 0;
1159
1160 SET_IEEE80211_PERM_ADDR(wl->hw, wl->mac_addr);
1161
1162 ret = ieee80211_register_hw(wl->hw);
1163 if (ret < 0) {
1164 wl12xx_error("unable to register mac80211 hw: %d", ret);
1165 return ret;
1166 }
1167
1168 wl->mac80211_registered = true;
1169
1170 wl12xx_notice("loaded");
1171
1172 return 0;
1173}
1174
1175static int wl12xx_init_ieee80211(struct wl12xx *wl)
1176{
1177 /* The tx descriptor buffer and the TKIP space */
1178 wl->hw->extra_tx_headroom = sizeof(struct tx_double_buffer_desc)
1179 + WL12XX_TKIP_IV_SPACE;
1180
1181 /* unit us */
1182 /* FIXME: find a proper value */
1183 wl->hw->channel_change_time = 10000;
1184
1185 wl->hw->flags = IEEE80211_HW_SIGNAL_DBM |
1186 IEEE80211_HW_NOISE_DBM;
1187
1188 wl->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
1189 wl->hw->wiphy->max_scan_ssids = 1;
1190 wl->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &wl12xx_band_2ghz;
1191
1192 SET_IEEE80211_DEV(wl->hw, &wl->spi->dev);
1193
1194 return 0;
1195}
1196
1197#define WL12XX_DEFAULT_CHANNEL 1
1198static int __devinit wl12xx_probe(struct spi_device *spi)
1199{
1200 struct wl12xx_platform_data *pdata;
1201 struct ieee80211_hw *hw;
1202 struct wl12xx *wl;
1203 int ret, i;
1204 static const u8 nokia_oui[3] = {0x00, 0x1f, 0xdf};
1205
1206 pdata = spi->dev.platform_data;
1207 if (!pdata) {
1208 wl12xx_error("no platform data");
1209 return -ENODEV;
1210 }
1211
1212 hw = ieee80211_alloc_hw(sizeof(*wl), &wl12xx_ops);
1213 if (!hw) {
1214 wl12xx_error("could not alloc ieee80211_hw");
1215 return -ENOMEM;
1216 }
1217
1218 wl = hw->priv;
1219 memset(wl, 0, sizeof(*wl));
1220
1221 wl->hw = hw;
1222 dev_set_drvdata(&spi->dev, wl);
1223 wl->spi = spi;
1224
1225 wl->data_in_count = 0;
1226
1227 skb_queue_head_init(&wl->tx_queue);
1228
1229 INIT_WORK(&wl->tx_work, wl12xx_tx_work);
1230 INIT_WORK(&wl->filter_work, wl12xx_filter_work);
1231 wl->channel = WL12XX_DEFAULT_CHANNEL;
1232 wl->scanning = false;
1233 wl->default_key = 0;
1234 wl->listen_int = 1;
1235 wl->rx_counter = 0;
1236 wl->rx_handled = 0;
1237 wl->rx_current_buffer = 0;
1238 wl->rx_last_id = 0;
1239 wl->rx_config = WL12XX_DEFAULT_RX_CONFIG;
1240 wl->rx_filter = WL12XX_DEFAULT_RX_FILTER;
1241 wl->elp = false;
1242 wl->psm = 0;
1243 wl->psm_requested = false;
1244 wl->tx_queue_stopped = false;
1245 wl->power_level = WL12XX_DEFAULT_POWER_LEVEL;
1246
1247 /* We use the default power on sleep time until we know which chip
1248 * we're using */
1249 wl->chip.power_on_sleep = WL12XX_DEFAULT_POWER_ON_SLEEP;
1250
1251 for (i = 0; i < FW_TX_CMPLT_BLOCK_SIZE; i++)
1252 wl->tx_frames[i] = NULL;
1253
1254 wl->next_tx_complete = 0;
1255
1256 /*
1257 * In case our MAC address is not correctly set,
1258 * we use a random but Nokia MAC.
1259 */
1260 memcpy(wl->mac_addr, nokia_oui, 3);
1261 get_random_bytes(wl->mac_addr + 3, 3);
1262
1263 wl->state = WL12XX_STATE_OFF;
1264 mutex_init(&wl->mutex);
1265
1266 wl->tx_mgmt_frm_rate = DEFAULT_HW_GEN_TX_RATE;
1267 wl->tx_mgmt_frm_mod = DEFAULT_HW_GEN_MODULATION_TYPE;
1268
Kalle Valo47212132009-06-12 14:15:08 +03001269 wl->rx_descriptor = kmalloc(sizeof(*wl->rx_descriptor), GFP_KERNEL);
1270 if (!wl->rx_descriptor) {
1271 wl12xx_error("could not allocate memory for rx descriptor");
1272 ret = -ENOMEM;
1273 goto out_free;
1274 }
1275
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001276 /* This is the only SPI value that we need to set here, the rest
1277 * comes from the board-peripherals file */
1278 spi->bits_per_word = 32;
1279
1280 ret = spi_setup(spi);
1281 if (ret < 0) {
1282 wl12xx_error("spi_setup failed");
1283 goto out_free;
1284 }
1285
1286 wl->set_power = pdata->set_power;
1287 if (!wl->set_power) {
1288 wl12xx_error("set power function missing in platform data");
Kalle Valoc4f5c852009-06-12 14:14:34 +03001289 ret = -ENODEV;
1290 goto out_free;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001291 }
1292
1293 wl->irq = spi->irq;
1294 if (wl->irq < 0) {
1295 wl12xx_error("irq missing in platform data");
Kalle Valoc4f5c852009-06-12 14:14:34 +03001296 ret = -ENODEV;
1297 goto out_free;
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001298 }
1299
1300 ret = request_irq(wl->irq, wl12xx_irq, 0, DRIVER_NAME, wl);
1301 if (ret < 0) {
1302 wl12xx_error("request_irq() failed: %d", ret);
1303 goto out_free;
1304 }
1305
1306 set_irq_type(wl->irq, IRQ_TYPE_EDGE_RISING);
1307
1308 disable_irq(wl->irq);
1309
1310 ret = wl12xx_init_ieee80211(wl);
1311 if (ret)
1312 goto out_irq;
1313
1314 ret = wl12xx_register_hw(wl);
1315 if (ret)
1316 goto out_irq;
1317
1318 wl12xx_debugfs_init(wl);
1319
1320 wl12xx_notice("initialized");
1321
1322 return 0;
1323
1324 out_irq:
1325 free_irq(wl->irq, wl);
1326
1327 out_free:
Kalle Valo47212132009-06-12 14:15:08 +03001328 kfree(wl->rx_descriptor);
1329 wl->rx_descriptor = NULL;
1330
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001331 ieee80211_free_hw(hw);
1332
1333 return ret;
1334}
1335
1336static int __devexit wl12xx_remove(struct spi_device *spi)
1337{
1338 struct wl12xx *wl = dev_get_drvdata(&spi->dev);
1339
1340 ieee80211_unregister_hw(wl->hw);
1341
1342 wl12xx_debugfs_exit(wl);
1343
1344 free_irq(wl->irq, wl);
1345 kfree(wl->target_mem_map);
1346 kfree(wl->data_path);
1347 kfree(wl->fw);
1348 wl->fw = NULL;
1349 kfree(wl->nvs);
1350 wl->nvs = NULL;
Kalle Valo47212132009-06-12 14:15:08 +03001351
1352 kfree(wl->rx_descriptor);
1353 wl->rx_descriptor = NULL;
1354
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001355 ieee80211_free_hw(wl->hw);
1356
1357 return 0;
1358}
1359
1360
1361static struct spi_driver wl12xx_spi_driver = {
1362 .driver = {
1363 .name = "wl12xx",
1364 .bus = &spi_bus_type,
1365 .owner = THIS_MODULE,
1366 },
1367
1368 .probe = wl12xx_probe,
1369 .remove = __devexit_p(wl12xx_remove),
1370};
1371
1372static int __init wl12xx_init(void)
1373{
1374 int ret;
1375
1376 ret = spi_register_driver(&wl12xx_spi_driver);
1377 if (ret < 0) {
1378 wl12xx_error("failed to register spi driver: %d", ret);
1379 goto out;
1380 }
1381
1382out:
1383 return ret;
1384}
1385
1386static void __exit wl12xx_exit(void)
1387{
1388 spi_unregister_driver(&wl12xx_spi_driver);
1389
1390 wl12xx_notice("unloaded");
1391}
1392
1393module_init(wl12xx_init);
1394module_exit(wl12xx_exit);
1395
1396MODULE_LICENSE("GPL");
1397MODULE_AUTHOR("Kalle Valo <Kalle.Valo@nokia.com>, "
1398 "Luciano Coelho <luciano.coelho@nokia.com>");