1 // SPDX-License-Identifier: GPL-2.0-only
3 * This file is part of wl1251
5 * Copyright (C) 2008-2009 Nokia Corporation
8 #include <linux/module.h>
9 #include <linux/interrupt.h>
10 #include <linux/firmware.h>
11 #include <linux/delay.h>
12 #include <linux/irq.h>
13 #include <linux/crc32.h>
14 #include <linux/etherdevice.h>
15 #include <linux/vmalloc.h>
16 #include <linux/slab.h>
17 #include <linux/netdevice.h>
20 #include "wl12xx_80211.h"
32 void wl1251_enable_interrupts(struct wl1251
*wl
)
34 wl
->if_ops
->enable_irq(wl
);
37 void wl1251_disable_interrupts(struct wl1251
*wl
)
39 wl
->if_ops
->disable_irq(wl
);
42 static int wl1251_power_off(struct wl1251
*wl
)
44 return wl
->if_ops
->power(wl
, false);
47 static int wl1251_power_on(struct wl1251
*wl
)
49 return wl
->if_ops
->power(wl
, true);
52 static int wl1251_fetch_firmware(struct wl1251
*wl
)
54 const struct firmware
*fw
;
55 struct device
*dev
= wiphy_dev(wl
->hw
->wiphy
);
58 ret
= request_firmware(&fw
, WL1251_FW_NAME
, dev
);
61 wl1251_error("could not get firmware: %d", ret
);
66 wl1251_error("firmware size is not multiple of 32 bits: %zu",
72 wl
->fw_len
= fw
->size
;
73 wl
->fw
= vmalloc(wl
->fw_len
);
76 wl1251_error("could not allocate memory for the firmware");
81 memcpy(wl
->fw
, fw
->data
, wl
->fw_len
);
91 static int wl1251_fetch_nvs(struct wl1251
*wl
)
93 const struct firmware
*fw
;
94 struct device
*dev
= wiphy_dev(wl
->hw
->wiphy
);
97 ret
= request_firmware(&fw
, WL1251_NVS_NAME
, dev
);
100 wl1251_error("could not get nvs file: %d", ret
);
105 wl1251_error("nvs size is not multiple of 32 bits: %zu",
111 wl
->nvs
= kmemdup(fw
->data
, fw
->size
, GFP_KERNEL
);
114 wl1251_error("could not allocate memory for the nvs file");
119 wl
->nvs_len
= fw
->size
;
124 release_firmware(fw
);
129 static void wl1251_fw_wakeup(struct wl1251
*wl
)
133 elp_reg
= ELPCTRL_WAKE_UP
;
134 wl1251_write_elp(wl
, HW_ACCESS_ELP_CTRL_REG_ADDR
, elp_reg
);
135 elp_reg
= wl1251_read_elp(wl
, HW_ACCESS_ELP_CTRL_REG_ADDR
);
137 if (!(elp_reg
& ELPCTRL_WLAN_READY
))
138 wl1251_warning("WLAN not ready");
141 static int wl1251_chip_wakeup(struct wl1251
*wl
)
145 ret
= wl1251_power_on(wl
);
149 msleep(WL1251_POWER_ON_SLEEP
);
150 wl
->if_ops
->reset(wl
);
152 /* We don't need a real memory partition here, because we only want
153 * to use the registers at this point. */
154 wl1251_set_partition(wl
,
158 REGISTERS_DOWN_SIZE
);
160 /* ELP module wake up */
161 wl1251_fw_wakeup(wl
);
163 /* whal_FwCtrl_BootSm() */
165 /* 0. read chip id from CHIP_ID */
166 wl
->chip_id
= wl1251_reg_read32(wl
, CHIP_ID_B
);
168 /* 1. check if chip id is valid */
170 switch (wl
->chip_id
) {
171 case CHIP_ID_1251_PG12
:
172 wl1251_debug(DEBUG_BOOT
, "chip id 0x%x (1251 PG12)",
175 case CHIP_ID_1251_PG11
:
176 wl1251_debug(DEBUG_BOOT
, "chip id 0x%x (1251 PG11)",
179 case CHIP_ID_1251_PG10
:
181 wl1251_error("unsupported chip id: 0x%x", wl
->chip_id
);
186 if (wl
->fw
== NULL
) {
187 ret
= wl1251_fetch_firmware(wl
);
196 #define WL1251_IRQ_LOOP_COUNT 10
197 static void wl1251_irq_work(struct work_struct
*work
)
199 u32 intr
, ctr
= WL1251_IRQ_LOOP_COUNT
;
201 container_of(work
, struct wl1251
, irq_work
);
204 mutex_lock(&wl
->mutex
);
206 wl1251_debug(DEBUG_IRQ
, "IRQ work");
208 if (wl
->state
== WL1251_STATE_OFF
)
211 ret
= wl1251_ps_elp_wakeup(wl
);
215 wl1251_reg_write32(wl
, ACX_REG_INTERRUPT_MASK
, WL1251_ACX_INTR_ALL
);
217 intr
= wl1251_reg_read32(wl
, ACX_REG_INTERRUPT_CLEAR
);
218 wl1251_debug(DEBUG_IRQ
, "intr: 0x%x", intr
);
222 wl
->rx_counter
= wl1251_mem_read32(
223 wl
, wl
->data_path
->rx_control_addr
);
225 /* We handle a frmware bug here */
226 switch ((wl
->rx_counter
- wl
->rx_handled
) & 0xf) {
228 wl1251_debug(DEBUG_IRQ
,
229 "RX: FW and host in sync");
230 intr
&= ~WL1251_ACX_INTR_RX0_DATA
;
231 intr
&= ~WL1251_ACX_INTR_RX1_DATA
;
234 wl1251_debug(DEBUG_IRQ
, "RX: FW +1");
235 intr
|= WL1251_ACX_INTR_RX0_DATA
;
236 intr
&= ~WL1251_ACX_INTR_RX1_DATA
;
239 wl1251_debug(DEBUG_IRQ
, "RX: FW +2");
240 intr
|= WL1251_ACX_INTR_RX0_DATA
;
241 intr
|= WL1251_ACX_INTR_RX1_DATA
;
245 "RX: FW and host out of sync: %d",
246 wl
->rx_counter
- wl
->rx_handled
);
250 wl
->rx_handled
= wl
->rx_counter
;
252 wl1251_debug(DEBUG_IRQ
, "RX counter: %d",
256 intr
&= wl
->intr_mask
;
259 wl1251_debug(DEBUG_IRQ
, "INTR is 0");
263 if (intr
& WL1251_ACX_INTR_RX0_DATA
) {
264 wl1251_debug(DEBUG_IRQ
, "WL1251_ACX_INTR_RX0_DATA");
268 if (intr
& WL1251_ACX_INTR_RX1_DATA
) {
269 wl1251_debug(DEBUG_IRQ
, "WL1251_ACX_INTR_RX1_DATA");
273 if (intr
& WL1251_ACX_INTR_TX_RESULT
) {
274 wl1251_debug(DEBUG_IRQ
, "WL1251_ACX_INTR_TX_RESULT");
275 wl1251_tx_complete(wl
);
278 if (intr
& WL1251_ACX_INTR_EVENT_A
) {
279 wl1251_debug(DEBUG_IRQ
, "WL1251_ACX_INTR_EVENT_A");
280 wl1251_event_handle(wl
, 0);
283 if (intr
& WL1251_ACX_INTR_EVENT_B
) {
284 wl1251_debug(DEBUG_IRQ
, "WL1251_ACX_INTR_EVENT_B");
285 wl1251_event_handle(wl
, 1);
288 if (intr
& WL1251_ACX_INTR_INIT_COMPLETE
)
289 wl1251_debug(DEBUG_IRQ
,
290 "WL1251_ACX_INTR_INIT_COMPLETE");
295 intr
= wl1251_reg_read32(wl
, ACX_REG_INTERRUPT_CLEAR
);
299 wl1251_reg_write32(wl
, ACX_REG_INTERRUPT_MASK
, ~(wl
->intr_mask
));
300 wl1251_ps_elp_sleep(wl
);
303 mutex_unlock(&wl
->mutex
);
306 static int wl1251_join(struct wl1251
*wl
, u8 bss_type
, u8 channel
,
307 u16 beacon_interval
, u8 dtim_period
)
311 ret
= wl1251_acx_frame_rates(wl
, DEFAULT_HW_GEN_TX_RATE
,
312 DEFAULT_HW_GEN_MODULATION_TYPE
,
313 wl
->tx_mgmt_frm_rate
,
314 wl
->tx_mgmt_frm_mod
);
319 * Join command applies filters, and if we are not associated,
320 * BSSID filter must be disabled for association to work.
322 if (is_zero_ether_addr(wl
->bssid
))
323 wl
->rx_config
&= ~CFG_BSSID_FILTER_EN
;
325 ret
= wl1251_cmd_join(wl
, bss_type
, channel
, beacon_interval
,
330 ret
= wl1251_event_wait(wl
, JOIN_EVENT_COMPLETE_ID
, 100);
332 wl1251_warning("join timeout");
338 static void wl1251_op_tx(struct ieee80211_hw
*hw
,
339 struct ieee80211_tx_control
*control
,
342 struct wl1251
*wl
= hw
->priv
;
345 skb_queue_tail(&wl
->tx_queue
, skb
);
348 * The chip specific setup must run before the first TX packet -
349 * before that, the tx_work will not be initialized!
352 ieee80211_queue_work(wl
->hw
, &wl
->tx_work
);
355 * The workqueue is slow to process the tx_queue and we need stop
356 * the queue here, otherwise the queue will get too long.
358 if (skb_queue_len(&wl
->tx_queue
) >= WL1251_TX_QUEUE_HIGH_WATERMARK
) {
359 wl1251_debug(DEBUG_TX
, "op_tx: tx_queue full, stop queues");
361 spin_lock_irqsave(&wl
->wl_lock
, flags
);
362 ieee80211_stop_queues(wl
->hw
);
363 wl
->tx_queue_stopped
= true;
364 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
368 static int wl1251_op_start(struct ieee80211_hw
*hw
)
370 struct wl1251
*wl
= hw
->priv
;
371 struct wiphy
*wiphy
= hw
->wiphy
;
374 wl1251_debug(DEBUG_MAC80211
, "mac80211 start");
376 mutex_lock(&wl
->mutex
);
378 if (wl
->state
!= WL1251_STATE_OFF
) {
379 wl1251_error("cannot start because not in off state: %d",
385 ret
= wl1251_chip_wakeup(wl
);
389 ret
= wl1251_boot(wl
);
393 ret
= wl1251_hw_init(wl
);
397 ret
= wl1251_acx_station_id(wl
);
401 wl
->state
= WL1251_STATE_ON
;
403 wl1251_info("firmware booted (%s)", wl
->fw_ver
);
405 /* update hw/fw version info in wiphy struct */
406 wiphy
->hw_version
= wl
->chip_id
;
407 strncpy(wiphy
->fw_version
, wl
->fw_ver
, sizeof(wiphy
->fw_version
));
411 wl1251_power_off(wl
);
413 mutex_unlock(&wl
->mutex
);
418 static void wl1251_op_stop(struct ieee80211_hw
*hw
)
420 struct wl1251
*wl
= hw
->priv
;
424 wl1251_debug(DEBUG_MAC80211
, "mac80211 stop");
426 mutex_lock(&wl
->mutex
);
428 WARN_ON(wl
->state
!= WL1251_STATE_ON
);
431 struct cfg80211_scan_info info
= {
435 ieee80211_scan_completed(wl
->hw
, &info
);
436 wl
->scanning
= false;
439 wl
->state
= WL1251_STATE_OFF
;
441 wl1251_disable_interrupts(wl
);
443 mutex_unlock(&wl
->mutex
);
445 cancel_work_sync(&wl
->irq_work
);
446 cancel_work_sync(&wl
->tx_work
);
447 cancel_delayed_work_sync(&wl
->elp_work
);
449 mutex_lock(&wl
->mutex
);
451 /* let's notify MAC80211 about the remaining pending TX frames */
453 wl1251_power_off(wl
);
455 eth_zero_addr(wl
->bssid
);
457 wl
->bss_type
= MAX_BSS_TYPE
;
459 wl
->data_in_count
= 0;
462 wl
->rx_current_buffer
= 0;
464 wl
->next_tx_complete
= 0;
466 wl
->station_mode
= STATION_ACTIVE_MODE
;
467 wl
->psm_entry_retry
= 0;
468 wl
->tx_queue_stopped
= false;
469 wl
->power_level
= WL1251_DEFAULT_POWER_LEVEL
;
471 wl
->channel
= WL1251_DEFAULT_CHANNEL
;
472 wl
->monitor_present
= false;
475 wl1251_debugfs_reset(wl
);
477 mutex_unlock(&wl
->mutex
);
480 static int wl1251_op_add_interface(struct ieee80211_hw
*hw
,
481 struct ieee80211_vif
*vif
)
483 struct wl1251
*wl
= hw
->priv
;
486 vif
->driver_flags
|= IEEE80211_VIF_BEACON_FILTER
|
487 IEEE80211_VIF_SUPPORTS_UAPSD
|
488 IEEE80211_VIF_SUPPORTS_CQM_RSSI
;
490 wl1251_debug(DEBUG_MAC80211
, "mac80211 add interface type %d mac %pM",
491 vif
->type
, vif
->addr
);
493 mutex_lock(&wl
->mutex
);
502 case NL80211_IFTYPE_STATION
:
503 wl
->bss_type
= BSS_TYPE_STA_BSS
;
505 case NL80211_IFTYPE_ADHOC
:
506 wl
->bss_type
= BSS_TYPE_IBSS
;
513 if (!ether_addr_equal_unaligned(wl
->mac_addr
, vif
->addr
)) {
514 memcpy(wl
->mac_addr
, vif
->addr
, ETH_ALEN
);
515 SET_IEEE80211_PERM_ADDR(wl
->hw
, wl
->mac_addr
);
516 ret
= wl1251_acx_station_id(wl
);
522 mutex_unlock(&wl
->mutex
);
526 static void wl1251_op_remove_interface(struct ieee80211_hw
*hw
,
527 struct ieee80211_vif
*vif
)
529 struct wl1251
*wl
= hw
->priv
;
531 mutex_lock(&wl
->mutex
);
532 wl1251_debug(DEBUG_MAC80211
, "mac80211 remove interface");
534 eth_zero_addr(wl
->bssid
);
535 mutex_unlock(&wl
->mutex
);
538 static int wl1251_build_null_data(struct wl1251
*wl
)
540 struct sk_buff
*skb
= NULL
;
545 if (wl
->bss_type
== BSS_TYPE_IBSS
) {
546 size
= sizeof(struct wl12xx_null_data_template
);
549 skb
= ieee80211_nullfunc_get(wl
->hw
, wl
->vif
, false);
556 ret
= wl1251_cmd_template_set(wl
, CMD_NULL_DATA
, ptr
, size
);
561 wl1251_warning("cmd buld null data failed: %d", ret
);
566 static int wl1251_build_qos_null_data(struct wl1251
*wl
)
568 struct ieee80211_qos_hdr
template;
570 memset(&template, 0, sizeof(template));
572 memcpy(template.addr1
, wl
->bssid
, ETH_ALEN
);
573 memcpy(template.addr2
, wl
->mac_addr
, ETH_ALEN
);
574 memcpy(template.addr3
, wl
->bssid
, ETH_ALEN
);
576 template.frame_control
= cpu_to_le16(IEEE80211_FTYPE_DATA
|
577 IEEE80211_STYPE_QOS_NULLFUNC
|
578 IEEE80211_FCTL_TODS
);
580 /* FIXME: not sure what priority to use here */
581 template.qos_ctrl
= cpu_to_le16(0);
583 return wl1251_cmd_template_set(wl
, CMD_QOS_NULL_DATA
, &template,
587 static bool wl1251_can_do_pm(struct ieee80211_conf
*conf
, struct wl1251
*wl
)
589 return (conf
->flags
& IEEE80211_CONF_PS
) && !wl
->monitor_present
;
592 static int wl1251_op_config(struct ieee80211_hw
*hw
, u32 changed
)
594 struct wl1251
*wl
= hw
->priv
;
595 struct ieee80211_conf
*conf
= &hw
->conf
;
596 int channel
, ret
= 0;
598 channel
= ieee80211_frequency_to_channel(
599 conf
->chandef
.chan
->center_freq
);
601 wl1251_debug(DEBUG_MAC80211
,
602 "mac80211 config ch %d monitor %s psm %s power %d",
604 conf
->flags
& IEEE80211_CONF_MONITOR
? "on" : "off",
605 conf
->flags
& IEEE80211_CONF_PS
? "on" : "off",
608 mutex_lock(&wl
->mutex
);
610 ret
= wl1251_ps_elp_wakeup(wl
);
614 if (changed
& IEEE80211_CONF_CHANGE_MONITOR
) {
617 if (conf
->flags
& IEEE80211_CONF_MONITOR
) {
618 wl
->monitor_present
= true;
619 mode
= DF_SNIFF_MODE_ENABLE
| DF_ENCRYPTION_DISABLE
;
621 wl
->monitor_present
= false;
625 ret
= wl1251_acx_feature_cfg(wl
, mode
);
630 if (channel
!= wl
->channel
) {
631 wl
->channel
= channel
;
634 * Use ENABLE_RX command for channel switching when no
635 * interface is present (monitor mode only).
636 * This leaves the tx path disabled in firmware, whereas
637 * the usual JOIN command seems to transmit some frames
640 if (wl
->vif
== NULL
) {
642 ret
= wl1251_cmd_data_path_rx(wl
, wl
->channel
, 1);
644 ret
= wl1251_join(wl
, wl
->bss_type
, wl
->channel
,
645 wl
->beacon_int
, wl
->dtim_period
);
651 if (wl1251_can_do_pm(conf
, wl
) && !wl
->psm_requested
) {
652 wl1251_debug(DEBUG_PSM
, "psm enabled");
654 wl
->psm_requested
= true;
656 wl
->dtim_period
= conf
->ps_dtim_period
;
658 ret
= wl1251_acx_wr_tbtt_and_dtim(wl
, wl
->beacon_int
,
662 * mac80211 enables PSM only if we're already associated.
664 ret
= wl1251_ps_set_mode(wl
, STATION_POWER_SAVE_MODE
);
667 } else if (!wl1251_can_do_pm(conf
, wl
) && wl
->psm_requested
) {
668 wl1251_debug(DEBUG_PSM
, "psm disabled");
670 wl
->psm_requested
= false;
672 if (wl
->station_mode
!= STATION_ACTIVE_MODE
) {
673 ret
= wl1251_ps_set_mode(wl
, STATION_ACTIVE_MODE
);
679 if (changed
& IEEE80211_CONF_CHANGE_IDLE
&& !wl
->scanning
) {
680 if (conf
->flags
& IEEE80211_CONF_IDLE
) {
681 ret
= wl1251_ps_set_mode(wl
, STATION_IDLE
);
685 ret
= wl1251_ps_set_mode(wl
, STATION_ACTIVE_MODE
);
688 ret
= wl1251_join(wl
, wl
->bss_type
, wl
->channel
,
689 wl
->beacon_int
, wl
->dtim_period
);
695 if (conf
->power_level
!= wl
->power_level
) {
696 ret
= wl1251_acx_tx_power(wl
, conf
->power_level
);
700 wl
->power_level
= conf
->power_level
;
704 wl1251_ps_elp_sleep(wl
);
707 mutex_unlock(&wl
->mutex
);
712 struct wl1251_filter_params
{
715 u8 mc_list
[ACX_MC_ADDRESS_GROUP_MAX
][ETH_ALEN
];
718 static u64
wl1251_op_prepare_multicast(struct ieee80211_hw
*hw
,
719 struct netdev_hw_addr_list
*mc_list
)
721 struct wl1251_filter_params
*fp
;
722 struct netdev_hw_addr
*ha
;
723 struct wl1251
*wl
= hw
->priv
;
725 if (unlikely(wl
->state
== WL1251_STATE_OFF
))
728 fp
= kzalloc(sizeof(*fp
), GFP_ATOMIC
);
730 wl1251_error("Out of memory setting filters.");
734 /* update multicast filtering parameters */
735 fp
->mc_list_length
= 0;
736 if (netdev_hw_addr_list_count(mc_list
) > ACX_MC_ADDRESS_GROUP_MAX
) {
740 netdev_hw_addr_list_for_each(ha
, mc_list
) {
741 memcpy(fp
->mc_list
[fp
->mc_list_length
],
743 fp
->mc_list_length
++;
747 return (u64
)(unsigned long)fp
;
750 #define WL1251_SUPPORTED_FILTERS (FIF_ALLMULTI | \
752 FIF_BCN_PRBRESP_PROMISC | \
757 static void wl1251_op_configure_filter(struct ieee80211_hw
*hw
,
758 unsigned int changed
,
759 unsigned int *total
, u64 multicast
)
761 struct wl1251_filter_params
*fp
= (void *)(unsigned long)multicast
;
762 struct wl1251
*wl
= hw
->priv
;
765 wl1251_debug(DEBUG_MAC80211
, "mac80211 configure filter");
767 *total
&= WL1251_SUPPORTED_FILTERS
;
768 changed
&= WL1251_SUPPORTED_FILTERS
;
771 /* no filters which we support changed */
776 mutex_lock(&wl
->mutex
);
778 wl
->rx_config
= WL1251_DEFAULT_RX_CONFIG
;
779 wl
->rx_filter
= WL1251_DEFAULT_RX_FILTER
;
781 if (*total
& FIF_ALLMULTI
)
783 * CFG_MC_FILTER_EN in rx_config needs to be 0 to receive
784 * all multicast frames
786 wl
->rx_config
&= ~CFG_MC_FILTER_EN
;
787 if (*total
& FIF_FCSFAIL
)
788 wl
->rx_filter
|= CFG_RX_FCS_ERROR
;
789 if (*total
& FIF_BCN_PRBRESP_PROMISC
) {
790 wl
->rx_config
&= ~CFG_BSSID_FILTER_EN
;
791 wl
->rx_config
&= ~CFG_SSID_FILTER_EN
;
793 if (*total
& FIF_CONTROL
)
794 wl
->rx_filter
|= CFG_RX_CTL_EN
;
795 if (*total
& FIF_OTHER_BSS
|| is_zero_ether_addr(wl
->bssid
))
796 wl
->rx_config
&= ~CFG_BSSID_FILTER_EN
;
797 if (*total
& FIF_PROBE_REQ
)
798 wl
->rx_filter
|= CFG_RX_PREQ_EN
;
800 if (wl
->state
== WL1251_STATE_OFF
)
803 ret
= wl1251_ps_elp_wakeup(wl
);
807 if (*total
& FIF_ALLMULTI
)
808 ret
= wl1251_acx_group_address_tbl(wl
, false, NULL
, 0);
810 ret
= wl1251_acx_group_address_tbl(wl
, fp
->enabled
,
816 /* send filters to firmware */
817 wl1251_acx_rx_config(wl
, wl
->rx_config
, wl
->rx_filter
);
819 wl1251_ps_elp_sleep(wl
);
822 mutex_unlock(&wl
->mutex
);
827 static int wl1251_set_key_type(struct wl1251
*wl
,
828 struct wl1251_cmd_set_keys
*key
,
829 enum set_key_cmd cmd
,
830 struct ieee80211_key_conf
*mac80211_key
,
833 switch (mac80211_key
->cipher
) {
834 case WLAN_CIPHER_SUITE_WEP40
:
835 case WLAN_CIPHER_SUITE_WEP104
:
836 if (is_broadcast_ether_addr(addr
))
837 key
->key_type
= KEY_WEP_DEFAULT
;
839 key
->key_type
= KEY_WEP_ADDR
;
841 mac80211_key
->hw_key_idx
= mac80211_key
->keyidx
;
843 case WLAN_CIPHER_SUITE_TKIP
:
844 if (is_broadcast_ether_addr(addr
))
845 key
->key_type
= KEY_TKIP_MIC_GROUP
;
847 key
->key_type
= KEY_TKIP_MIC_PAIRWISE
;
849 mac80211_key
->hw_key_idx
= mac80211_key
->keyidx
;
851 case WLAN_CIPHER_SUITE_CCMP
:
852 if (is_broadcast_ether_addr(addr
))
853 key
->key_type
= KEY_AES_GROUP
;
855 key
->key_type
= KEY_AES_PAIRWISE
;
856 mac80211_key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_IV
;
859 wl1251_error("Unknown key cipher 0x%x", mac80211_key
->cipher
);
866 static int wl1251_op_set_key(struct ieee80211_hw
*hw
, enum set_key_cmd cmd
,
867 struct ieee80211_vif
*vif
,
868 struct ieee80211_sta
*sta
,
869 struct ieee80211_key_conf
*key
)
871 struct wl1251
*wl
= hw
->priv
;
872 struct wl1251_cmd_set_keys
*wl_cmd
;
876 static const u8 bcast_addr
[ETH_ALEN
] =
877 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
879 wl1251_debug(DEBUG_MAC80211
, "mac80211 set key");
881 wl_cmd
= kzalloc(sizeof(*wl_cmd
), GFP_KERNEL
);
887 addr
= sta
? sta
->addr
: bcast_addr
;
889 wl1251_debug(DEBUG_CRYPT
, "CMD: 0x%x", cmd
);
890 wl1251_dump(DEBUG_CRYPT
, "ADDR: ", addr
, ETH_ALEN
);
891 wl1251_debug(DEBUG_CRYPT
, "Key: algo:0x%x, id:%d, len:%d flags 0x%x",
892 key
->cipher
, key
->keyidx
, key
->keylen
, key
->flags
);
893 wl1251_dump(DEBUG_CRYPT
, "KEY: ", key
->key
, key
->keylen
);
895 if (is_zero_ether_addr(addr
)) {
896 /* We dont support TX only encryption */
901 mutex_lock(&wl
->mutex
);
905 if (wl
->monitor_present
) {
909 wl_cmd
->key_action
= KEY_ADD_OR_REPLACE
;
912 wl_cmd
->key_action
= KEY_REMOVE
;
915 wl1251_error("Unsupported key cmd 0x%x", cmd
);
919 ret
= wl1251_ps_elp_wakeup(wl
);
923 ret
= wl1251_set_key_type(wl
, wl_cmd
, cmd
, key
, addr
);
925 wl1251_error("Set KEY type failed");
929 if (wl_cmd
->key_type
!= KEY_WEP_DEFAULT
)
930 memcpy(wl_cmd
->addr
, addr
, ETH_ALEN
);
932 if ((wl_cmd
->key_type
== KEY_TKIP_MIC_GROUP
) ||
933 (wl_cmd
->key_type
== KEY_TKIP_MIC_PAIRWISE
)) {
935 * We get the key in the following form:
936 * TKIP (16 bytes) - TX MIC (8 bytes) - RX MIC (8 bytes)
937 * but the target is expecting:
938 * TKIP - RX MIC - TX MIC
940 memcpy(wl_cmd
->key
, key
->key
, 16);
941 memcpy(wl_cmd
->key
+ 16, key
->key
+ 24, 8);
942 memcpy(wl_cmd
->key
+ 24, key
->key
+ 16, 8);
945 memcpy(wl_cmd
->key
, key
->key
, key
->keylen
);
947 wl_cmd
->key_size
= key
->keylen
;
949 wl_cmd
->id
= key
->keyidx
;
950 wl_cmd
->ssid_profile
= 0;
952 wl1251_dump(DEBUG_CRYPT
, "TARGET KEY: ", wl_cmd
, sizeof(*wl_cmd
));
954 ret
= wl1251_cmd_send(wl
, CMD_SET_KEYS
, wl_cmd
, sizeof(*wl_cmd
));
956 wl1251_warning("could not set keys");
961 wl1251_ps_elp_sleep(wl
);
964 mutex_unlock(&wl
->mutex
);
972 static int wl1251_op_hw_scan(struct ieee80211_hw
*hw
,
973 struct ieee80211_vif
*vif
,
974 struct ieee80211_scan_request
*hw_req
)
976 struct cfg80211_scan_request
*req
= &hw_req
->req
;
977 struct wl1251
*wl
= hw
->priv
;
983 wl1251_debug(DEBUG_MAC80211
, "mac80211 hw scan");
986 ssid
= req
->ssids
[0].ssid
;
987 ssid_len
= req
->ssids
[0].ssid_len
;
990 mutex_lock(&wl
->mutex
);
993 wl1251_debug(DEBUG_SCAN
, "scan already in progress");
998 ret
= wl1251_ps_elp_wakeup(wl
);
1002 if (hw
->conf
.flags
& IEEE80211_CONF_IDLE
) {
1003 ret
= wl1251_ps_set_mode(wl
, STATION_ACTIVE_MODE
);
1006 ret
= wl1251_join(wl
, wl
->bss_type
, wl
->channel
,
1007 wl
->beacon_int
, wl
->dtim_period
);
1012 skb
= ieee80211_probereq_get(wl
->hw
, wl
->vif
->addr
, ssid
, ssid_len
,
1019 skb_put_data(skb
, req
->ie
, req
->ie_len
);
1021 ret
= wl1251_cmd_template_set(wl
, CMD_PROBE_REQ
, skb
->data
,
1027 ret
= wl1251_cmd_trigger_scan_to(wl
, 0);
1031 wl
->scanning
= true;
1033 ret
= wl1251_cmd_scan(wl
, ssid
, ssid_len
, req
->channels
,
1034 req
->n_channels
, WL1251_SCAN_NUM_PROBES
);
1036 wl1251_debug(DEBUG_SCAN
, "scan failed %d", ret
);
1037 wl
->scanning
= false;
1043 if (hw
->conf
.flags
& IEEE80211_CONF_IDLE
)
1044 ret
= wl1251_ps_set_mode(wl
, STATION_IDLE
);
1046 wl1251_ps_elp_sleep(wl
);
1049 mutex_unlock(&wl
->mutex
);
1054 static int wl1251_op_set_rts_threshold(struct ieee80211_hw
*hw
, u32 value
)
1056 struct wl1251
*wl
= hw
->priv
;
1059 mutex_lock(&wl
->mutex
);
1061 ret
= wl1251_ps_elp_wakeup(wl
);
1065 ret
= wl1251_acx_rts_threshold(wl
, (u16
) value
);
1067 wl1251_warning("wl1251_op_set_rts_threshold failed: %d", ret
);
1069 wl1251_ps_elp_sleep(wl
);
1072 mutex_unlock(&wl
->mutex
);
1077 static void wl1251_op_bss_info_changed(struct ieee80211_hw
*hw
,
1078 struct ieee80211_vif
*vif
,
1079 struct ieee80211_bss_conf
*bss_conf
,
1082 struct wl1251
*wl
= hw
->priv
;
1083 struct sk_buff
*beacon
, *skb
;
1087 wl1251_debug(DEBUG_MAC80211
, "mac80211 bss info changed");
1089 mutex_lock(&wl
->mutex
);
1091 ret
= wl1251_ps_elp_wakeup(wl
);
1095 if (changed
& BSS_CHANGED_CQM
) {
1096 ret
= wl1251_acx_low_rssi(wl
, bss_conf
->cqm_rssi_thold
,
1097 WL1251_DEFAULT_LOW_RSSI_WEIGHT
,
1098 WL1251_DEFAULT_LOW_RSSI_DEPTH
,
1099 WL1251_ACX_LOW_RSSI_TYPE_EDGE
);
1102 wl
->rssi_thold
= bss_conf
->cqm_rssi_thold
;
1105 if ((changed
& BSS_CHANGED_BSSID
) &&
1106 memcmp(wl
->bssid
, bss_conf
->bssid
, ETH_ALEN
)) {
1107 memcpy(wl
->bssid
, bss_conf
->bssid
, ETH_ALEN
);
1109 if (!is_zero_ether_addr(wl
->bssid
)) {
1110 ret
= wl1251_build_null_data(wl
);
1114 ret
= wl1251_build_qos_null_data(wl
);
1118 ret
= wl1251_join(wl
, wl
->bss_type
, wl
->channel
,
1119 wl
->beacon_int
, wl
->dtim_period
);
1125 if (changed
& BSS_CHANGED_ASSOC
) {
1126 if (bss_conf
->assoc
) {
1127 wl
->beacon_int
= bss_conf
->beacon_int
;
1129 skb
= ieee80211_pspoll_get(wl
->hw
, wl
->vif
);
1133 ret
= wl1251_cmd_template_set(wl
, CMD_PS_POLL
,
1140 ret
= wl1251_acx_aid(wl
, bss_conf
->aid
);
1144 /* use defaults when not associated */
1145 wl
->beacon_int
= WL1251_DEFAULT_BEACON_INT
;
1146 wl
->dtim_period
= WL1251_DEFAULT_DTIM_PERIOD
;
1149 if (changed
& BSS_CHANGED_ERP_SLOT
) {
1150 if (bss_conf
->use_short_slot
)
1151 ret
= wl1251_acx_slot(wl
, SLOT_TIME_SHORT
);
1153 ret
= wl1251_acx_slot(wl
, SLOT_TIME_LONG
);
1155 wl1251_warning("Set slot time failed %d", ret
);
1160 if (changed
& BSS_CHANGED_ERP_PREAMBLE
) {
1161 if (bss_conf
->use_short_preamble
)
1162 wl1251_acx_set_preamble(wl
, ACX_PREAMBLE_SHORT
);
1164 wl1251_acx_set_preamble(wl
, ACX_PREAMBLE_LONG
);
1167 if (changed
& BSS_CHANGED_ERP_CTS_PROT
) {
1168 if (bss_conf
->use_cts_prot
)
1169 ret
= wl1251_acx_cts_protect(wl
, CTSPROTECT_ENABLE
);
1171 ret
= wl1251_acx_cts_protect(wl
, CTSPROTECT_DISABLE
);
1173 wl1251_warning("Set ctsprotect failed %d", ret
);
1178 if (changed
& BSS_CHANGED_ARP_FILTER
) {
1179 __be32 addr
= bss_conf
->arp_addr_list
[0];
1180 WARN_ON(wl
->bss_type
!= BSS_TYPE_STA_BSS
);
1182 enable
= bss_conf
->arp_addr_cnt
== 1 && bss_conf
->assoc
;
1183 ret
= wl1251_acx_arp_ip_filter(wl
, enable
, addr
);
1188 if (changed
& BSS_CHANGED_BEACON
) {
1189 beacon
= ieee80211_beacon_get(hw
, vif
);
1193 ret
= wl1251_cmd_template_set(wl
, CMD_BEACON
, beacon
->data
,
1197 dev_kfree_skb(beacon
);
1201 ret
= wl1251_cmd_template_set(wl
, CMD_PROBE_RESP
, beacon
->data
,
1204 dev_kfree_skb(beacon
);
1209 ret
= wl1251_join(wl
, wl
->bss_type
, wl
->channel
,
1210 wl
->beacon_int
, wl
->dtim_period
);
1217 wl1251_ps_elp_sleep(wl
);
1220 mutex_unlock(&wl
->mutex
);
1224 /* can't be const, mac80211 writes to this */
1225 static struct ieee80211_rate wl1251_rates
[] = {
1228 .hw_value_short
= 0x1, },
1231 .hw_value_short
= 0x2,
1232 .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
1235 .hw_value_short
= 0x4,
1236 .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
1239 .hw_value_short
= 0x20,
1240 .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
1243 .hw_value_short
= 0x8, },
1246 .hw_value_short
= 0x10, },
1249 .hw_value_short
= 0x40, },
1252 .hw_value_short
= 0x80, },
1255 .hw_value_short
= 0x200, },
1258 .hw_value_short
= 0x400, },
1261 .hw_value_short
= 0x800, },
1264 .hw_value_short
= 0x1000, },
1267 /* can't be const, mac80211 writes to this */
1268 static struct ieee80211_channel wl1251_channels
[] = {
1269 { .hw_value
= 1, .center_freq
= 2412},
1270 { .hw_value
= 2, .center_freq
= 2417},
1271 { .hw_value
= 3, .center_freq
= 2422},
1272 { .hw_value
= 4, .center_freq
= 2427},
1273 { .hw_value
= 5, .center_freq
= 2432},
1274 { .hw_value
= 6, .center_freq
= 2437},
1275 { .hw_value
= 7, .center_freq
= 2442},
1276 { .hw_value
= 8, .center_freq
= 2447},
1277 { .hw_value
= 9, .center_freq
= 2452},
1278 { .hw_value
= 10, .center_freq
= 2457},
1279 { .hw_value
= 11, .center_freq
= 2462},
1280 { .hw_value
= 12, .center_freq
= 2467},
1281 { .hw_value
= 13, .center_freq
= 2472},
1284 static int wl1251_op_conf_tx(struct ieee80211_hw
*hw
,
1285 struct ieee80211_vif
*vif
, u16 queue
,
1286 const struct ieee80211_tx_queue_params
*params
)
1288 enum wl1251_acx_ps_scheme ps_scheme
;
1289 struct wl1251
*wl
= hw
->priv
;
1292 mutex_lock(&wl
->mutex
);
1294 wl1251_debug(DEBUG_MAC80211
, "mac80211 conf tx %d", queue
);
1296 ret
= wl1251_ps_elp_wakeup(wl
);
1300 /* mac80211 uses units of 32 usec */
1301 ret
= wl1251_acx_ac_cfg(wl
, wl1251_tx_get_queue(queue
),
1302 params
->cw_min
, params
->cw_max
,
1303 params
->aifs
, params
->txop
* 32);
1308 ps_scheme
= WL1251_ACX_PS_SCHEME_UPSD_TRIGGER
;
1310 ps_scheme
= WL1251_ACX_PS_SCHEME_LEGACY
;
1312 ret
= wl1251_acx_tid_cfg(wl
, wl1251_tx_get_queue(queue
),
1314 wl1251_tx_get_queue(queue
), ps_scheme
,
1315 WL1251_ACX_ACK_POLICY_LEGACY
);
1320 wl1251_ps_elp_sleep(wl
);
1323 mutex_unlock(&wl
->mutex
);
1328 static int wl1251_op_get_survey(struct ieee80211_hw
*hw
, int idx
,
1329 struct survey_info
*survey
)
1331 struct wl1251
*wl
= hw
->priv
;
1332 struct ieee80211_conf
*conf
= &hw
->conf
;
1337 survey
->channel
= conf
->chandef
.chan
;
1338 survey
->filled
= SURVEY_INFO_NOISE_DBM
;
1339 survey
->noise
= wl
->noise
;
1344 /* can't be const, mac80211 writes to this */
1345 static struct ieee80211_supported_band wl1251_band_2ghz
= {
1346 .channels
= wl1251_channels
,
1347 .n_channels
= ARRAY_SIZE(wl1251_channels
),
1348 .bitrates
= wl1251_rates
,
1349 .n_bitrates
= ARRAY_SIZE(wl1251_rates
),
1352 static const struct ieee80211_ops wl1251_ops
= {
1353 .start
= wl1251_op_start
,
1354 .stop
= wl1251_op_stop
,
1355 .add_interface
= wl1251_op_add_interface
,
1356 .remove_interface
= wl1251_op_remove_interface
,
1357 .config
= wl1251_op_config
,
1358 .prepare_multicast
= wl1251_op_prepare_multicast
,
1359 .configure_filter
= wl1251_op_configure_filter
,
1361 .set_key
= wl1251_op_set_key
,
1362 .hw_scan
= wl1251_op_hw_scan
,
1363 .bss_info_changed
= wl1251_op_bss_info_changed
,
1364 .set_rts_threshold
= wl1251_op_set_rts_threshold
,
1365 .conf_tx
= wl1251_op_conf_tx
,
1366 .get_survey
= wl1251_op_get_survey
,
1369 static int wl1251_read_eeprom_byte(struct wl1251
*wl
, off_t offset
, u8
*data
)
1371 unsigned long timeout
;
1373 wl1251_reg_write32(wl
, EE_ADDR
, offset
);
1374 wl1251_reg_write32(wl
, EE_CTL
, EE_CTL_READ
);
1376 /* EE_CTL_READ clears when data is ready */
1377 timeout
= jiffies
+ msecs_to_jiffies(100);
1379 if (!(wl1251_reg_read32(wl
, EE_CTL
) & EE_CTL_READ
))
1382 if (time_after(jiffies
, timeout
))
1388 *data
= wl1251_reg_read32(wl
, EE_DATA
);
1392 static int wl1251_read_eeprom(struct wl1251
*wl
, off_t offset
,
1393 u8
*data
, size_t len
)
1398 wl1251_reg_write32(wl
, EE_START
, 0);
1400 for (i
= 0; i
< len
; i
++) {
1401 ret
= wl1251_read_eeprom_byte(wl
, offset
+ i
, &data
[i
]);
1409 static int wl1251_read_eeprom_mac(struct wl1251
*wl
)
1414 wl1251_set_partition(wl
, 0, 0, REGISTERS_BASE
, REGISTERS_DOWN_SIZE
);
1416 ret
= wl1251_read_eeprom(wl
, 0x1c, mac
, sizeof(mac
));
1418 wl1251_warning("failed to read MAC address from EEPROM");
1422 /* MAC is stored in reverse order */
1423 for (i
= 0; i
< ETH_ALEN
; i
++)
1424 wl
->mac_addr
[i
] = mac
[ETH_ALEN
- i
- 1];
1429 #define NVS_OFF_MAC_LEN 0x19
1430 #define NVS_OFF_MAC_ADDR_LO 0x1a
1431 #define NVS_OFF_MAC_ADDR_HI 0x1b
1432 #define NVS_OFF_MAC_DATA 0x1c
1434 static int wl1251_check_nvs_mac(struct wl1251
*wl
)
1436 if (wl
->nvs_len
< 0x24)
1439 /* length is 2 and data address is 0x546c (ANDed with 0xfffe) */
1440 if (wl
->nvs
[NVS_OFF_MAC_LEN
] != 2 ||
1441 wl
->nvs
[NVS_OFF_MAC_ADDR_LO
] != 0x6d ||
1442 wl
->nvs
[NVS_OFF_MAC_ADDR_HI
] != 0x54)
1448 static int wl1251_read_nvs_mac(struct wl1251
*wl
)
1453 ret
= wl1251_check_nvs_mac(wl
);
1457 /* MAC is stored in reverse order */
1458 for (i
= 0; i
< ETH_ALEN
; i
++)
1459 mac
[i
] = wl
->nvs
[NVS_OFF_MAC_DATA
+ ETH_ALEN
- i
- 1];
1461 /* 00:00:20:07:03:09 is in example file wl1251-nvs.bin, so invalid */
1462 if (ether_addr_equal_unaligned(mac
, "\x00\x00\x20\x07\x03\x09"))
1465 memcpy(wl
->mac_addr
, mac
, ETH_ALEN
);
1469 static int wl1251_write_nvs_mac(struct wl1251
*wl
)
1473 ret
= wl1251_check_nvs_mac(wl
);
1477 /* MAC is stored in reverse order */
1478 for (i
= 0; i
< ETH_ALEN
; i
++)
1479 wl
->nvs
[NVS_OFF_MAC_DATA
+ i
] = wl
->mac_addr
[ETH_ALEN
- i
- 1];
1484 static int wl1251_register_hw(struct wl1251
*wl
)
1488 if (wl
->mac80211_registered
)
1491 SET_IEEE80211_PERM_ADDR(wl
->hw
, wl
->mac_addr
);
1493 ret
= ieee80211_register_hw(wl
->hw
);
1495 wl1251_error("unable to register mac80211 hw: %d", ret
);
1499 wl
->mac80211_registered
= true;
1501 wl1251_notice("loaded");
1506 int wl1251_init_ieee80211(struct wl1251
*wl
)
1510 /* The tx descriptor buffer and the TKIP space */
1511 wl
->hw
->extra_tx_headroom
= sizeof(struct tx_double_buffer_desc
)
1512 + WL1251_TKIP_IV_SPACE
;
1515 /* FIXME: find a proper value */
1517 ieee80211_hw_set(wl
->hw
, SIGNAL_DBM
);
1518 ieee80211_hw_set(wl
->hw
, SUPPORTS_PS
);
1520 wl
->hw
->wiphy
->interface_modes
= BIT(NL80211_IFTYPE_STATION
) |
1521 BIT(NL80211_IFTYPE_ADHOC
);
1522 wl
->hw
->wiphy
->max_scan_ssids
= 1;
1523 wl
->hw
->wiphy
->bands
[NL80211_BAND_2GHZ
] = &wl1251_band_2ghz
;
1527 if (wl
->nvs
== NULL
&& !wl
->use_eeprom
) {
1528 ret
= wl1251_fetch_nvs(wl
);
1534 ret
= wl1251_read_eeprom_mac(wl
);
1536 ret
= wl1251_read_nvs_mac(wl
);
1538 if (ret
== 0 && !is_valid_ether_addr(wl
->mac_addr
))
1543 * In case our MAC address is not correctly set,
1544 * we use a random but Nokia MAC.
1546 static const u8 nokia_oui
[3] = {0x00, 0x1f, 0xdf};
1547 memcpy(wl
->mac_addr
, nokia_oui
, 3);
1548 get_random_bytes(wl
->mac_addr
+ 3, 3);
1549 if (!wl
->use_eeprom
)
1550 wl1251_write_nvs_mac(wl
);
1551 wl1251_warning("MAC address in eeprom or nvs data is not valid");
1552 wl1251_warning("Setting random MAC address: %pM", wl
->mac_addr
);
1555 ret
= wl1251_register_hw(wl
);
1559 wl1251_debugfs_init(wl
);
1560 wl1251_notice("initialized");
1567 EXPORT_SYMBOL_GPL(wl1251_init_ieee80211
);
1569 struct ieee80211_hw
*wl1251_alloc_hw(void)
1571 struct ieee80211_hw
*hw
;
1575 hw
= ieee80211_alloc_hw(sizeof(*wl
), &wl1251_ops
);
1577 wl1251_error("could not alloc ieee80211_hw");
1578 return ERR_PTR(-ENOMEM
);
1582 memset(wl
, 0, sizeof(*wl
));
1586 wl
->data_in_count
= 0;
1588 skb_queue_head_init(&wl
->tx_queue
);
1590 INIT_DELAYED_WORK(&wl
->elp_work
, wl1251_elp_work
);
1591 wl
->channel
= WL1251_DEFAULT_CHANNEL
;
1592 wl
->monitor_present
= false;
1594 wl
->scanning
= false;
1595 wl
->bss_type
= MAX_BSS_TYPE
;
1596 wl
->default_key
= 0;
1600 wl
->rx_current_buffer
= 0;
1602 wl
->rx_config
= WL1251_DEFAULT_RX_CONFIG
;
1603 wl
->rx_filter
= WL1251_DEFAULT_RX_FILTER
;
1605 wl
->station_mode
= STATION_ACTIVE_MODE
;
1606 wl
->psm_requested
= false;
1607 wl
->psm_entry_retry
= 0;
1608 wl
->tx_queue_stopped
= false;
1609 wl
->power_level
= WL1251_DEFAULT_POWER_LEVEL
;
1611 wl
->beacon_int
= WL1251_DEFAULT_BEACON_INT
;
1612 wl
->dtim_period
= WL1251_DEFAULT_DTIM_PERIOD
;
1615 for (i
= 0; i
< FW_TX_CMPLT_BLOCK_SIZE
; i
++)
1616 wl
->tx_frames
[i
] = NULL
;
1618 wl
->next_tx_complete
= 0;
1620 INIT_WORK(&wl
->irq_work
, wl1251_irq_work
);
1621 INIT_WORK(&wl
->tx_work
, wl1251_tx_work
);
1623 wl
->state
= WL1251_STATE_OFF
;
1624 mutex_init(&wl
->mutex
);
1625 spin_lock_init(&wl
->wl_lock
);
1627 wl
->tx_mgmt_frm_rate
= DEFAULT_HW_GEN_TX_RATE
;
1628 wl
->tx_mgmt_frm_mod
= DEFAULT_HW_GEN_MODULATION_TYPE
;
1630 wl
->rx_descriptor
= kmalloc(sizeof(*wl
->rx_descriptor
), GFP_KERNEL
);
1631 if (!wl
->rx_descriptor
) {
1632 wl1251_error("could not allocate memory for rx descriptor");
1633 ieee80211_free_hw(hw
);
1634 return ERR_PTR(-ENOMEM
);
1639 EXPORT_SYMBOL_GPL(wl1251_alloc_hw
);
1641 int wl1251_free_hw(struct wl1251
*wl
)
1643 ieee80211_unregister_hw(wl
->hw
);
1645 wl1251_debugfs_exit(wl
);
1647 kfree(wl
->target_mem_map
);
1648 kfree(wl
->data_path
);
1654 kfree(wl
->rx_descriptor
);
1655 wl
->rx_descriptor
= NULL
;
1657 ieee80211_free_hw(wl
->hw
);
1661 EXPORT_SYMBOL_GPL(wl1251_free_hw
);
1663 MODULE_DESCRIPTION("TI wl1251 Wireless LAN Driver Core");
1664 MODULE_LICENSE("GPL");
1665 MODULE_AUTHOR("Kalle Valo <kvalo@adurom.com>");
1666 MODULE_FIRMWARE(WL1251_FW_NAME
);
1667 MODULE_FIRMWARE(WL1251_NVS_NAME
);