2 * This file is part of wl1271
4 * Copyright (C) 2008-2009 Nokia Corporation
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
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.
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.
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
24 #include <linux/module.h>
25 #include <linux/platform_device.h>
26 #include <linux/interrupt.h>
27 #include <linux/firmware.h>
28 #include <linux/delay.h>
29 #include <linux/irq.h>
30 #include <linux/spi/spi.h>
31 #include <linux/crc32.h>
32 #include <linux/etherdevice.h>
33 #include <linux/spi/wl12xx.h>
36 #include "wl12xx_80211.h"
37 #include "wl1271_reg.h"
38 #include "wl1271_spi.h"
39 #include "wl1271_event.h"
40 #include "wl1271_tx.h"
41 #include "wl1271_rx.h"
42 #include "wl1271_ps.h"
43 #include "wl1271_init.h"
44 #include "wl1271_debugfs.h"
45 #include "wl1271_cmd.h"
46 #include "wl1271_boot.h"
48 static int wl1271_plt_init(struct wl1271
*wl
)
52 ret
= wl1271_acx_init_mem_config(wl
);
56 ret
= wl1271_cmd_data_path(wl
, wl
->channel
, 1);
63 static void wl1271_disable_interrupts(struct wl1271
*wl
)
68 static void wl1271_power_off(struct wl1271
*wl
)
73 static void wl1271_power_on(struct wl1271
*wl
)
78 static void wl1271_fw_status(struct wl1271
*wl
, struct wl1271_fw_status
*status
)
84 * FIXME: Reading the FW status directly from the registers seems to
85 * be the right thing to do, but it doesn't work. And in the
86 * reference driver, there is a workaround called
87 * USE_SDIO_24M_WORKAROUND, which reads the status from memory
88 * instead, so we do the same here.
91 wl1271_spi_mem_read(wl
, STATUS_MEM_ADDRESS
, status
, sizeof(*status
));
93 wl1271_debug(DEBUG_IRQ
, "intr: 0x%x (fw_rx_counter = %d, "
94 "drv_rx_counter = %d, tx_results_counter = %d)",
96 status
->fw_rx_counter
,
97 status
->drv_rx_counter
,
98 status
->tx_results_counter
);
100 /* update number of available TX blocks */
101 for (i
= 0; i
< NUM_TX_QUEUES
; i
++) {
102 u32 cnt
= status
->tx_released_blks
[i
] - wl
->tx_blocks_freed
[i
];
103 wl
->tx_blocks_freed
[i
] = status
->tx_released_blks
[i
];
104 wl
->tx_blocks_available
+= cnt
;
108 /* if more blocks are available now, schedule some tx work */
109 if (total
&& !skb_queue_empty(&wl
->tx_queue
))
110 schedule_work(&wl
->tx_work
);
112 /* update the host-chipset time offset */
113 wl
->time_offset
= jiffies_to_usecs(jiffies
) - status
->fw_localtime
;
116 #define WL1271_IRQ_MAX_LOOPS 10
117 static void wl1271_irq_work(struct work_struct
*work
)
119 u32 intr
, ctr
= WL1271_IRQ_MAX_LOOPS
;
122 container_of(work
, struct wl1271
, irq_work
);
124 mutex_lock(&wl
->mutex
);
126 wl1271_debug(DEBUG_IRQ
, "IRQ work");
128 if (wl
->state
== WL1271_STATE_OFF
)
131 ret
= wl1271_ps_elp_wakeup(wl
, true);
135 wl1271_reg_write32(wl
, ACX_REG_INTERRUPT_MASK
, WL1271_ACX_INTR_ALL
);
137 intr
= wl1271_reg_read32(wl
, ACX_REG_INTERRUPT_CLEAR
);
139 wl1271_debug(DEBUG_IRQ
, "Zero interrupt received.");
143 intr
&= WL1271_INTR_MASK
;
146 wl1271_fw_status(wl
, wl
->fw_status
);
149 if (intr
& (WL1271_ACX_INTR_EVENT_A
|
150 WL1271_ACX_INTR_EVENT_B
)) {
151 wl1271_debug(DEBUG_IRQ
,
152 "WL1271_ACX_INTR_EVENT (0x%x)", intr
);
153 if (intr
& WL1271_ACX_INTR_EVENT_A
)
154 wl1271_event_handle(wl
, 0);
156 wl1271_event_handle(wl
, 1);
159 if (intr
& WL1271_ACX_INTR_INIT_COMPLETE
)
160 wl1271_debug(DEBUG_IRQ
,
161 "WL1271_ACX_INTR_INIT_COMPLETE");
163 if (intr
& WL1271_ACX_INTR_HW_AVAILABLE
)
164 wl1271_debug(DEBUG_IRQ
, "WL1271_ACX_INTR_HW_AVAILABLE");
166 if (intr
& WL1271_ACX_INTR_DATA
) {
167 u8 tx_res_cnt
= wl
->fw_status
->tx_results_counter
-
168 wl
->tx_results_count
;
170 wl1271_debug(DEBUG_IRQ
, "WL1271_ACX_INTR_DATA");
172 /* check for tx results */
174 wl1271_tx_complete(wl
, tx_res_cnt
);
176 wl1271_rx(wl
, wl
->fw_status
);
179 intr
= wl1271_reg_read32(wl
, ACX_REG_INTERRUPT_CLEAR
);
180 intr
&= WL1271_INTR_MASK
;
181 } while (intr
&& --ctr
);
184 wl1271_reg_write32(wl
, ACX_REG_INTERRUPT_MASK
,
185 WL1271_ACX_INTR_ALL
& ~(WL1271_INTR_MASK
));
186 wl1271_ps_elp_sleep(wl
);
189 mutex_unlock(&wl
->mutex
);
192 static irqreturn_t
wl1271_irq(int irq
, void *cookie
)
197 wl1271_debug(DEBUG_IRQ
, "IRQ");
201 /* complete the ELP completion */
202 spin_lock_irqsave(&wl
->wl_lock
, flags
);
204 complete(wl
->elp_compl
);
205 wl
->elp_compl
= NULL
;
208 schedule_work(&wl
->irq_work
);
209 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
214 static int wl1271_fetch_firmware(struct wl1271
*wl
)
216 const struct firmware
*fw
;
219 ret
= request_firmware(&fw
, WL1271_FW_NAME
, &wl
->spi
->dev
);
222 wl1271_error("could not get firmware: %d", ret
);
227 wl1271_error("firmware size is not multiple of 32 bits: %zu",
233 wl
->fw_len
= fw
->size
;
234 wl
->fw
= kmalloc(wl
->fw_len
, GFP_KERNEL
);
237 wl1271_error("could not allocate memory for the firmware");
242 memcpy(wl
->fw
, fw
->data
, wl
->fw_len
);
247 release_firmware(fw
);
252 static int wl1271_fetch_nvs(struct wl1271
*wl
)
254 const struct firmware
*fw
;
257 ret
= request_firmware(&fw
, WL1271_NVS_NAME
, &wl
->spi
->dev
);
260 wl1271_error("could not get nvs file: %d", ret
);
265 wl1271_error("nvs size is not multiple of 32 bits: %zu",
271 wl
->nvs_len
= fw
->size
;
272 wl
->nvs
= kmalloc(wl
->nvs_len
, GFP_KERNEL
);
275 wl1271_error("could not allocate memory for the nvs file");
280 memcpy(wl
->nvs
, fw
->data
, wl
->nvs_len
);
285 release_firmware(fw
);
290 static void wl1271_fw_wakeup(struct wl1271
*wl
)
294 elp_reg
= ELPCTRL_WAKE_UP
;
295 wl1271_write32(wl
, HW_ACCESS_ELP_CTRL_REG_ADDR
, elp_reg
);
298 static int wl1271_setup(struct wl1271
*wl
)
300 wl
->fw_status
= kmalloc(sizeof(*wl
->fw_status
), GFP_KERNEL
);
304 wl
->tx_res_if
= kmalloc(sizeof(*wl
->tx_res_if
), GFP_KERNEL
);
305 if (!wl
->tx_res_if
) {
306 kfree(wl
->fw_status
);
310 INIT_WORK(&wl
->irq_work
, wl1271_irq_work
);
311 INIT_WORK(&wl
->tx_work
, wl1271_tx_work
);
315 static int wl1271_chip_wakeup(struct wl1271
*wl
)
320 msleep(WL1271_POWER_ON_SLEEP
);
321 wl1271_spi_reset(wl
);
324 /* We don't need a real memory partition here, because we only want
325 * to use the registers at this point. */
326 wl1271_set_partition(wl
,
330 REGISTERS_DOWN_SIZE
);
332 /* ELP module wake up */
333 wl1271_fw_wakeup(wl
);
335 /* whal_FwCtrl_BootSm() */
337 /* 0. read chip id from CHIP_ID */
338 wl
->chip
.id
= wl1271_reg_read32(wl
, CHIP_ID_B
);
340 /* 1. check if chip id is valid */
342 switch (wl
->chip
.id
) {
343 case CHIP_ID_1271_PG10
:
344 wl1271_warning("chip id 0x%x (1271 PG10) support is obsolete",
347 ret
= wl1271_setup(wl
);
351 case CHIP_ID_1271_PG20
:
352 wl1271_debug(DEBUG_BOOT
, "chip id 0x%x (1271 PG20)",
355 ret
= wl1271_setup(wl
);
360 wl1271_error("unsupported chip id: 0x%x", wl
->chip
.id
);
365 if (wl
->fw
== NULL
) {
366 ret
= wl1271_fetch_firmware(wl
);
371 /* No NVS from netlink, try to get it from the filesystem */
372 if (wl
->nvs
== NULL
) {
373 ret
= wl1271_fetch_nvs(wl
);
382 static void wl1271_filter_work(struct work_struct
*work
)
385 container_of(work
, struct wl1271
, filter_work
);
388 mutex_lock(&wl
->mutex
);
390 if (wl
->state
== WL1271_STATE_OFF
)
393 ret
= wl1271_ps_elp_wakeup(wl
, false);
397 /* FIXME: replace the magic numbers with proper definitions */
398 ret
= wl1271_cmd_join(wl
, wl
->bss_type
, 1, 100, 0);
403 wl1271_ps_elp_sleep(wl
);
406 mutex_unlock(&wl
->mutex
);
409 int wl1271_plt_start(struct wl1271
*wl
)
413 mutex_lock(&wl
->mutex
);
415 wl1271_notice("power up");
417 if (wl
->state
!= WL1271_STATE_OFF
) {
418 wl1271_error("cannot go into PLT state because not "
419 "in off state: %d", wl
->state
);
424 wl
->state
= WL1271_STATE_PLT
;
426 ret
= wl1271_chip_wakeup(wl
);
430 ret
= wl1271_boot(wl
);
434 wl1271_notice("firmware booted in PLT mode (%s)", wl
->chip
.fw_ver
);
436 ret
= wl1271_plt_init(wl
);
441 mutex_unlock(&wl
->mutex
);
446 int wl1271_plt_stop(struct wl1271
*wl
)
450 mutex_lock(&wl
->mutex
);
452 wl1271_notice("power down");
454 if (wl
->state
!= WL1271_STATE_PLT
) {
455 wl1271_error("cannot power down because not in PLT "
456 "state: %d", wl
->state
);
461 wl1271_disable_interrupts(wl
);
462 wl1271_power_off(wl
);
464 wl
->state
= WL1271_STATE_OFF
;
467 mutex_unlock(&wl
->mutex
);
473 static int wl1271_op_tx(struct ieee80211_hw
*hw
, struct sk_buff
*skb
)
475 struct wl1271
*wl
= hw
->priv
;
477 skb_queue_tail(&wl
->tx_queue
, skb
);
480 * The chip specific setup must run before the first TX packet -
481 * before that, the tx_work will not be initialized!
484 schedule_work(&wl
->tx_work
);
487 * The workqueue is slow to process the tx_queue and we need stop
488 * the queue here, otherwise the queue will get too long.
490 if (skb_queue_len(&wl
->tx_queue
) >= WL1271_TX_QUEUE_MAX_LENGTH
) {
491 ieee80211_stop_queues(wl
->hw
);
494 * FIXME: this is racy, the variable is not properly
495 * protected. Maybe fix this by removing the stupid
496 * variable altogether and checking the real queue state?
498 wl
->tx_queue_stopped
= true;
504 static int wl1271_op_start(struct ieee80211_hw
*hw
)
506 struct wl1271
*wl
= hw
->priv
;
509 wl1271_debug(DEBUG_MAC80211
, "mac80211 start");
511 mutex_lock(&wl
->mutex
);
513 if (wl
->state
!= WL1271_STATE_OFF
) {
514 wl1271_error("cannot start because not in off state: %d",
520 ret
= wl1271_chip_wakeup(wl
);
524 ret
= wl1271_boot(wl
);
528 ret
= wl1271_hw_init(wl
);
532 wl
->state
= WL1271_STATE_ON
;
534 wl1271_info("firmware booted (%s)", wl
->chip
.fw_ver
);
538 wl1271_power_off(wl
);
540 mutex_unlock(&wl
->mutex
);
545 static void wl1271_op_stop(struct ieee80211_hw
*hw
)
547 struct wl1271
*wl
= hw
->priv
;
552 wl1271_debug(DEBUG_MAC80211
, "mac80211 stop");
554 mutex_lock(&wl
->mutex
);
556 WARN_ON(wl
->state
!= WL1271_STATE_ON
);
559 mutex_unlock(&wl
->mutex
);
560 ieee80211_scan_completed(wl
->hw
, true);
561 mutex_lock(&wl
->mutex
);
562 wl
->scanning
= false;
565 wl
->state
= WL1271_STATE_OFF
;
567 wl1271_disable_interrupts(wl
);
569 mutex_unlock(&wl
->mutex
);
571 cancel_work_sync(&wl
->irq_work
);
572 cancel_work_sync(&wl
->tx_work
);
573 cancel_work_sync(&wl
->filter_work
);
575 mutex_lock(&wl
->mutex
);
577 /* let's notify MAC80211 about the remaining pending TX frames */
579 wl1271_power_off(wl
);
581 memset(wl
->bssid
, 0, ETH_ALEN
);
582 memset(wl
->ssid
, 0, IW_ESSID_MAX_SIZE
+ 1);
585 wl
->bss_type
= MAX_BSS_TYPE
;
590 wl
->tx_queue_stopped
= false;
591 wl
->power_level
= WL1271_DEFAULT_POWER_LEVEL
;
592 wl
->tx_blocks_available
= 0;
593 wl
->tx_results_count
= 0;
594 wl
->tx_packets_count
= 0;
596 wl
->session_counter
= 0;
597 for (i
= 0; i
< NUM_TX_QUEUES
; i
++)
598 wl
->tx_blocks_freed
[i
] = 0;
600 wl1271_debugfs_reset(wl
);
601 mutex_unlock(&wl
->mutex
);
604 static int wl1271_op_add_interface(struct ieee80211_hw
*hw
,
605 struct ieee80211_if_init_conf
*conf
)
607 struct wl1271
*wl
= hw
->priv
;
610 wl1271_debug(DEBUG_MAC80211
, "mac80211 add interface type %d mac %pM",
611 conf
->type
, conf
->mac_addr
);
613 mutex_lock(&wl
->mutex
);
615 switch (conf
->type
) {
616 case NL80211_IFTYPE_STATION
:
617 wl
->bss_type
= BSS_TYPE_STA_BSS
;
619 case NL80211_IFTYPE_ADHOC
:
620 wl
->bss_type
= BSS_TYPE_IBSS
;
627 /* FIXME: what if conf->mac_addr changes? */
630 mutex_unlock(&wl
->mutex
);
634 static void wl1271_op_remove_interface(struct ieee80211_hw
*hw
,
635 struct ieee80211_if_init_conf
*conf
)
637 wl1271_debug(DEBUG_MAC80211
, "mac80211 remove interface");
641 static int wl1271_op_config_interface(struct ieee80211_hw
*hw
,
642 struct ieee80211_vif
*vif
,
643 struct ieee80211_if_conf
*conf
)
645 struct wl1271
*wl
= hw
->priv
;
646 struct sk_buff
*beacon
;
649 wl1271_debug(DEBUG_MAC80211
, "mac80211 config_interface bssid %pM",
651 wl1271_dump_ascii(DEBUG_MAC80211
, "ssid: ", conf
->ssid
,
654 mutex_lock(&wl
->mutex
);
656 ret
= wl1271_ps_elp_wakeup(wl
, false);
660 memcpy(wl
->bssid
, conf
->bssid
, ETH_ALEN
);
662 ret
= wl1271_cmd_build_null_data(wl
);
666 wl
->ssid_len
= conf
->ssid_len
;
668 memcpy(wl
->ssid
, conf
->ssid
, wl
->ssid_len
);
670 if (wl
->bss_type
!= BSS_TYPE_IBSS
) {
671 /* FIXME: replace the magic numbers with proper definitions */
672 ret
= wl1271_cmd_join(wl
, wl
->bss_type
, 5, 100, 1);
677 if (conf
->changed
& IEEE80211_IFCC_BEACON
) {
678 beacon
= ieee80211_beacon_get(hw
, vif
);
679 ret
= wl1271_cmd_template_set(wl
, CMD_TEMPL_BEACON
,
680 beacon
->data
, beacon
->len
);
683 dev_kfree_skb(beacon
);
687 ret
= wl1271_cmd_template_set(wl
, CMD_TEMPL_PROBE_RESPONSE
,
688 beacon
->data
, beacon
->len
);
690 dev_kfree_skb(beacon
);
695 /* FIXME: replace the magic numbers with proper definitions */
696 ret
= wl1271_cmd_join(wl
, wl
->bss_type
, 1, 100, 0);
703 wl1271_ps_elp_sleep(wl
);
706 mutex_unlock(&wl
->mutex
);
712 static int wl1271_op_config(struct ieee80211_hw
*hw
, u32 changed
)
714 struct wl1271
*wl
= hw
->priv
;
715 struct ieee80211_conf
*conf
= &hw
->conf
;
716 int channel
, ret
= 0;
718 channel
= ieee80211_frequency_to_channel(conf
->channel
->center_freq
);
720 wl1271_debug(DEBUG_MAC80211
, "mac80211 config ch %d psm %s power %d",
722 conf
->flags
& IEEE80211_CONF_PS
? "on" : "off",
725 mutex_lock(&wl
->mutex
);
727 ret
= wl1271_ps_elp_wakeup(wl
, false);
731 if (channel
!= wl
->channel
) {
732 u8 old_channel
= wl
->channel
;
733 wl
->channel
= channel
;
735 /* FIXME: use beacon interval provided by mac80211 */
736 ret
= wl1271_cmd_join(wl
, wl
->bss_type
, 1, 100, 0);
738 wl
->channel
= old_channel
;
743 ret
= wl1271_cmd_build_null_data(wl
);
747 if (conf
->flags
& IEEE80211_CONF_PS
&& !wl
->psm_requested
) {
748 wl1271_info("psm enabled");
750 wl
->psm_requested
= true;
753 * We enter PSM only if we're already associated.
754 * If we're not, we'll enter it when joining an SSID,
755 * through the bss_info_changed() hook.
757 ret
= wl1271_ps_set_mode(wl
, STATION_POWER_SAVE_MODE
);
758 } else if (!(conf
->flags
& IEEE80211_CONF_PS
) &&
760 wl1271_info("psm disabled");
762 wl
->psm_requested
= false;
765 ret
= wl1271_ps_set_mode(wl
, STATION_ACTIVE_MODE
);
768 if (conf
->power_level
!= wl
->power_level
) {
769 ret
= wl1271_acx_tx_power(wl
, conf
->power_level
);
773 wl
->power_level
= conf
->power_level
;
777 wl1271_ps_elp_sleep(wl
);
780 mutex_unlock(&wl
->mutex
);
785 #define WL1271_SUPPORTED_FILTERS (FIF_PROMISC_IN_BSS | \
788 FIF_BCN_PRBRESP_PROMISC | \
792 static void wl1271_op_configure_filter(struct ieee80211_hw
*hw
,
793 unsigned int changed
,
794 unsigned int *total
,u64 multicast
)
796 struct wl1271
*wl
= hw
->priv
;
798 wl1271_debug(DEBUG_MAC80211
, "mac80211 configure filter");
800 *total
&= WL1271_SUPPORTED_FILTERS
;
801 changed
&= WL1271_SUPPORTED_FILTERS
;
806 /* FIXME: wl->rx_config and wl->rx_filter are not protected */
807 wl
->rx_config
= WL1271_DEFAULT_RX_CONFIG
;
808 wl
->rx_filter
= WL1271_DEFAULT_RX_FILTER
;
811 * FIXME: workqueues need to be properly cancelled on stop(), for
812 * now let's just disable changing the filter settings. They will
813 * be updated any on config().
815 /* schedule_work(&wl->filter_work); */
818 static int wl1271_op_set_key(struct ieee80211_hw
*hw
, enum set_key_cmd cmd
,
819 struct ieee80211_vif
*vif
,
820 struct ieee80211_sta
*sta
,
821 struct ieee80211_key_conf
*key_conf
)
823 struct wl1271
*wl
= hw
->priv
;
828 static const u8 bcast_addr
[ETH_ALEN
] =
829 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
831 wl1271_debug(DEBUG_MAC80211
, "mac80211 set key");
833 addr
= sta
? sta
->addr
: bcast_addr
;
835 wl1271_debug(DEBUG_CRYPT
, "CMD: 0x%x", cmd
);
836 wl1271_dump(DEBUG_CRYPT
, "ADDR: ", addr
, ETH_ALEN
);
837 wl1271_debug(DEBUG_CRYPT
, "Key: algo:0x%x, id:%d, len:%d flags 0x%x",
838 key_conf
->alg
, key_conf
->keyidx
,
839 key_conf
->keylen
, key_conf
->flags
);
840 wl1271_dump(DEBUG_CRYPT
, "KEY: ", key_conf
->key
, key_conf
->keylen
);
842 if (is_zero_ether_addr(addr
)) {
843 /* We dont support TX only encryption */
848 mutex_lock(&wl
->mutex
);
850 ret
= wl1271_ps_elp_wakeup(wl
, false);
854 switch (key_conf
->alg
) {
858 key_conf
->hw_key_idx
= key_conf
->keyidx
;
863 key_conf
->hw_key_idx
= key_conf
->keyidx
;
868 key_conf
->flags
|= IEEE80211_KEY_FLAG_GENERATE_IV
;
871 wl1271_error("Unknown key algo 0x%x", key_conf
->alg
);
879 ret
= wl1271_cmd_set_key(wl
, KEY_ADD_OR_REPLACE
,
880 key_conf
->keyidx
, key_type
,
881 key_conf
->keylen
, key_conf
->key
,
884 wl1271_error("Could not add or replace key");
890 ret
= wl1271_cmd_set_key(wl
, KEY_REMOVE
,
891 key_conf
->keyidx
, key_type
,
892 key_conf
->keylen
, key_conf
->key
,
895 wl1271_error("Could not remove key");
901 wl1271_error("Unsupported key cmd 0x%x", cmd
);
909 wl1271_ps_elp_sleep(wl
);
912 mutex_unlock(&wl
->mutex
);
918 static int wl1271_op_hw_scan(struct ieee80211_hw
*hw
,
919 struct cfg80211_scan_request
*req
)
921 struct wl1271
*wl
= hw
->priv
;
926 wl1271_debug(DEBUG_MAC80211
, "mac80211 hw scan");
929 ssid
= req
->ssids
[0].ssid
;
930 ssid_len
= req
->ssids
[0].ssid_len
;
933 mutex_lock(&wl
->mutex
);
935 ret
= wl1271_ps_elp_wakeup(wl
, false);
939 ret
= wl1271_cmd_scan(hw
->priv
, ssid
, ssid_len
, 1, 0, 13, 3);
941 wl1271_ps_elp_sleep(wl
);
944 mutex_unlock(&wl
->mutex
);
949 static int wl1271_op_set_rts_threshold(struct ieee80211_hw
*hw
, u32 value
)
951 struct wl1271
*wl
= hw
->priv
;
954 mutex_lock(&wl
->mutex
);
956 ret
= wl1271_ps_elp_wakeup(wl
, false);
960 ret
= wl1271_acx_rts_threshold(wl
, (u16
) value
);
962 wl1271_warning("wl1271_op_set_rts_threshold failed: %d", ret
);
964 wl1271_ps_elp_sleep(wl
);
967 mutex_unlock(&wl
->mutex
);
972 static void wl1271_op_bss_info_changed(struct ieee80211_hw
*hw
,
973 struct ieee80211_vif
*vif
,
974 struct ieee80211_bss_conf
*bss_conf
,
977 enum wl1271_cmd_ps_mode mode
;
978 struct wl1271
*wl
= hw
->priv
;
981 wl1271_debug(DEBUG_MAC80211
, "mac80211 bss info changed");
983 mutex_lock(&wl
->mutex
);
985 ret
= wl1271_ps_elp_wakeup(wl
, false);
989 if (changed
& BSS_CHANGED_ASSOC
) {
990 if (bss_conf
->assoc
) {
991 wl
->aid
= bss_conf
->aid
;
993 ret
= wl1271_cmd_build_ps_poll(wl
, wl
->aid
);
997 ret
= wl1271_acx_aid(wl
, wl
->aid
);
1001 /* If we want to go in PSM but we're not there yet */
1002 if (wl
->psm_requested
&& !wl
->psm
) {
1003 mode
= STATION_POWER_SAVE_MODE
;
1004 ret
= wl1271_ps_set_mode(wl
, mode
);
1010 if (changed
& BSS_CHANGED_ERP_SLOT
) {
1011 if (bss_conf
->use_short_slot
)
1012 ret
= wl1271_acx_slot(wl
, SLOT_TIME_SHORT
);
1014 ret
= wl1271_acx_slot(wl
, SLOT_TIME_LONG
);
1016 wl1271_warning("Set slot time failed %d", ret
);
1021 if (changed
& BSS_CHANGED_ERP_PREAMBLE
) {
1022 if (bss_conf
->use_short_preamble
)
1023 wl1271_acx_set_preamble(wl
, ACX_PREAMBLE_SHORT
);
1025 wl1271_acx_set_preamble(wl
, ACX_PREAMBLE_LONG
);
1028 if (changed
& BSS_CHANGED_ERP_CTS_PROT
) {
1029 if (bss_conf
->use_cts_prot
)
1030 ret
= wl1271_acx_cts_protect(wl
, CTSPROTECT_ENABLE
);
1032 ret
= wl1271_acx_cts_protect(wl
, CTSPROTECT_DISABLE
);
1034 wl1271_warning("Set ctsprotect failed %d", ret
);
1040 wl1271_ps_elp_sleep(wl
);
1043 mutex_unlock(&wl
->mutex
);
1047 /* can't be const, mac80211 writes to this */
1048 static struct ieee80211_rate wl1271_rates
[] = {
1051 .hw_value_short
= 0x1, },
1054 .hw_value_short
= 0x2,
1055 .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
1058 .hw_value_short
= 0x4,
1059 .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
1062 .hw_value_short
= 0x20,
1063 .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
1066 .hw_value_short
= 0x8, },
1069 .hw_value_short
= 0x10, },
1072 .hw_value_short
= 0x40, },
1075 .hw_value_short
= 0x80, },
1078 .hw_value_short
= 0x200, },
1081 .hw_value_short
= 0x400, },
1084 .hw_value_short
= 0x800, },
1087 .hw_value_short
= 0x1000, },
1090 /* can't be const, mac80211 writes to this */
1091 static struct ieee80211_channel wl1271_channels
[] = {
1092 { .hw_value
= 1, .center_freq
= 2412},
1093 { .hw_value
= 2, .center_freq
= 2417},
1094 { .hw_value
= 3, .center_freq
= 2422},
1095 { .hw_value
= 4, .center_freq
= 2427},
1096 { .hw_value
= 5, .center_freq
= 2432},
1097 { .hw_value
= 6, .center_freq
= 2437},
1098 { .hw_value
= 7, .center_freq
= 2442},
1099 { .hw_value
= 8, .center_freq
= 2447},
1100 { .hw_value
= 9, .center_freq
= 2452},
1101 { .hw_value
= 10, .center_freq
= 2457},
1102 { .hw_value
= 11, .center_freq
= 2462},
1103 { .hw_value
= 12, .center_freq
= 2467},
1104 { .hw_value
= 13, .center_freq
= 2472},
1107 /* can't be const, mac80211 writes to this */
1108 static struct ieee80211_supported_band wl1271_band_2ghz
= {
1109 .channels
= wl1271_channels
,
1110 .n_channels
= ARRAY_SIZE(wl1271_channels
),
1111 .bitrates
= wl1271_rates
,
1112 .n_bitrates
= ARRAY_SIZE(wl1271_rates
),
1115 static const struct ieee80211_ops wl1271_ops
= {
1116 .start
= wl1271_op_start
,
1117 .stop
= wl1271_op_stop
,
1118 .add_interface
= wl1271_op_add_interface
,
1119 .remove_interface
= wl1271_op_remove_interface
,
1120 .config
= wl1271_op_config
,
1121 /* .config_interface = wl1271_op_config_interface, */
1122 .configure_filter
= wl1271_op_configure_filter
,
1124 .set_key
= wl1271_op_set_key
,
1125 .hw_scan
= wl1271_op_hw_scan
,
1126 .bss_info_changed
= wl1271_op_bss_info_changed
,
1127 .set_rts_threshold
= wl1271_op_set_rts_threshold
,
1130 static int wl1271_register_hw(struct wl1271
*wl
)
1134 if (wl
->mac80211_registered
)
1137 SET_IEEE80211_PERM_ADDR(wl
->hw
, wl
->mac_addr
);
1139 ret
= ieee80211_register_hw(wl
->hw
);
1141 wl1271_error("unable to register mac80211 hw: %d", ret
);
1145 wl
->mac80211_registered
= true;
1147 wl1271_notice("loaded");
1152 static int wl1271_init_ieee80211(struct wl1271
*wl
)
1155 * The tx descriptor buffer and the TKIP space.
1157 * FIXME: add correct 1271 descriptor size
1159 wl
->hw
->extra_tx_headroom
= WL1271_TKIP_IV_SPACE
;
1162 /* FIXME: find a proper value */
1163 wl
->hw
->channel_change_time
= 10000;
1165 wl
->hw
->flags
= IEEE80211_HW_SIGNAL_DBM
|
1166 IEEE80211_HW_NOISE_DBM
;
1168 wl
->hw
->wiphy
->interface_modes
= BIT(NL80211_IFTYPE_STATION
);
1169 wl
->hw
->wiphy
->max_scan_ssids
= 1;
1170 wl
->hw
->wiphy
->bands
[IEEE80211_BAND_2GHZ
] = &wl1271_band_2ghz
;
1172 SET_IEEE80211_DEV(wl
->hw
, &wl
->spi
->dev
);
1177 static void wl1271_device_release(struct device
*dev
)
1182 static struct platform_device wl1271_device
= {
1186 /* device model insists to have a release function */
1188 .release
= wl1271_device_release
,
1192 #define WL1271_DEFAULT_CHANNEL 0
1193 static int __devinit
wl1271_probe(struct spi_device
*spi
)
1195 struct wl12xx_platform_data
*pdata
;
1196 struct ieee80211_hw
*hw
;
1199 static const u8 nokia_oui
[3] = {0x00, 0x1f, 0xdf};
1201 pdata
= spi
->dev
.platform_data
;
1203 wl1271_error("no platform data");
1207 hw
= ieee80211_alloc_hw(sizeof(*wl
), &wl1271_ops
);
1209 wl1271_error("could not alloc ieee80211_hw");
1214 memset(wl
, 0, sizeof(*wl
));
1217 dev_set_drvdata(&spi
->dev
, wl
);
1220 skb_queue_head_init(&wl
->tx_queue
);
1222 INIT_WORK(&wl
->filter_work
, wl1271_filter_work
);
1223 wl
->channel
= WL1271_DEFAULT_CHANNEL
;
1224 wl
->scanning
= false;
1225 wl
->default_key
= 0;
1228 wl
->rx_config
= WL1271_DEFAULT_RX_CONFIG
;
1229 wl
->rx_filter
= WL1271_DEFAULT_RX_FILTER
;
1232 wl
->psm_requested
= false;
1233 wl
->tx_queue_stopped
= false;
1234 wl
->power_level
= WL1271_DEFAULT_POWER_LEVEL
;
1236 /* We use the default power on sleep time until we know which chip
1238 for (i
= 0; i
< FW_TX_CMPLT_BLOCK_SIZE
; i
++)
1239 wl
->tx_frames
[i
] = NULL
;
1241 spin_lock_init(&wl
->wl_lock
);
1244 * In case our MAC address is not correctly set,
1245 * we use a random but Nokia MAC.
1247 memcpy(wl
->mac_addr
, nokia_oui
, 3);
1248 get_random_bytes(wl
->mac_addr
+ 3, 3);
1250 wl
->state
= WL1271_STATE_OFF
;
1251 mutex_init(&wl
->mutex
);
1253 wl
->rx_descriptor
= kmalloc(sizeof(*wl
->rx_descriptor
), GFP_KERNEL
);
1254 if (!wl
->rx_descriptor
) {
1255 wl1271_error("could not allocate memory for rx descriptor");
1260 /* This is the only SPI value that we need to set here, the rest
1261 * comes from the board-peripherals file */
1262 spi
->bits_per_word
= 32;
1264 ret
= spi_setup(spi
);
1266 wl1271_error("spi_setup failed");
1270 wl
->set_power
= pdata
->set_power
;
1271 if (!wl
->set_power
) {
1272 wl1271_error("set power function missing in platform data");
1279 wl1271_error("irq missing in platform data");
1284 ret
= request_irq(wl
->irq
, wl1271_irq
, 0, DRIVER_NAME
, wl
);
1286 wl1271_error("request_irq() failed: %d", ret
);
1290 set_irq_type(wl
->irq
, IRQ_TYPE_EDGE_RISING
);
1292 disable_irq(wl
->irq
);
1294 ret
= platform_device_register(&wl1271_device
);
1296 wl1271_error("couldn't register platform device");
1299 dev_set_drvdata(&wl1271_device
.dev
, wl
);
1301 ret
= wl1271_init_ieee80211(wl
);
1305 ret
= wl1271_register_hw(wl
);
1309 wl1271_debugfs_init(wl
);
1311 wl1271_notice("initialized");
1316 platform_device_unregister(&wl1271_device
);
1319 free_irq(wl
->irq
, wl
);
1322 kfree(wl
->rx_descriptor
);
1323 wl
->rx_descriptor
= NULL
;
1325 ieee80211_free_hw(hw
);
1330 static int __devexit
wl1271_remove(struct spi_device
*spi
)
1332 struct wl1271
*wl
= dev_get_drvdata(&spi
->dev
);
1334 ieee80211_unregister_hw(wl
->hw
);
1336 wl1271_debugfs_exit(wl
);
1337 platform_device_unregister(&wl1271_device
);
1338 free_irq(wl
->irq
, wl
);
1339 kfree(wl
->target_mem_map
);
1345 kfree(wl
->rx_descriptor
);
1346 wl
->rx_descriptor
= NULL
;
1348 kfree(wl
->fw_status
);
1349 kfree(wl
->tx_res_if
);
1351 ieee80211_free_hw(wl
->hw
);
1357 static struct spi_driver wl1271_spi_driver
= {
1360 .bus
= &spi_bus_type
,
1361 .owner
= THIS_MODULE
,
1364 .probe
= wl1271_probe
,
1365 .remove
= __devexit_p(wl1271_remove
),
1368 static int __init
wl1271_init(void)
1372 ret
= spi_register_driver(&wl1271_spi_driver
);
1374 wl1271_error("failed to register spi driver: %d", ret
);
1382 static void __exit
wl1271_exit(void)
1384 spi_unregister_driver(&wl1271_spi_driver
);
1386 wl1271_notice("unloaded");
1389 module_init(wl1271_init
);
1390 module_exit(wl1271_exit
);
1392 MODULE_LICENSE("GPL");
1393 MODULE_AUTHOR("Luciano Coelho <luciano.coelho@nokia.com>");