1 // SPDX-License-Identifier: GPL-2.0-only
3 * Mac80211 STA API for ST-Ericsson CW1200 drivers
5 * Copyright (c) 2010, ST-Ericsson
6 * Author: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
9 #include <linux/vmalloc.h>
10 #include <linux/sched.h>
11 #include <linux/firmware.h>
12 #include <linux/module.h>
13 #include <linux/etherdevice.h>
21 #ifndef ERP_INFO_BYTE_OFFSET
22 #define ERP_INFO_BYTE_OFFSET 2
25 static void cw1200_do_join(struct cw1200_common
*priv
);
26 static void cw1200_do_unjoin(struct cw1200_common
*priv
);
28 static int cw1200_upload_beacon(struct cw1200_common
*priv
);
29 static int cw1200_upload_pspoll(struct cw1200_common
*priv
);
30 static int cw1200_upload_null(struct cw1200_common
*priv
);
31 static int cw1200_upload_qosnull(struct cw1200_common
*priv
);
32 static int cw1200_start_ap(struct cw1200_common
*priv
);
33 static int cw1200_update_beaconing(struct cw1200_common
*priv
);
34 static int cw1200_enable_beaconing(struct cw1200_common
*priv
,
36 static void __cw1200_sta_notify(struct ieee80211_hw
*dev
,
37 struct ieee80211_vif
*vif
,
38 enum sta_notify_cmd notify_cmd
,
40 static int __cw1200_flush(struct cw1200_common
*priv
, bool drop
);
42 static inline void __cw1200_free_event_queue(struct list_head
*list
)
44 struct cw1200_wsm_event
*event
, *tmp
;
45 list_for_each_entry_safe(event
, tmp
, list
, link
) {
46 list_del(&event
->link
);
51 /* ******************************************************************** */
54 int cw1200_start(struct ieee80211_hw
*dev
)
56 struct cw1200_common
*priv
= dev
->priv
;
59 cw1200_pm_stay_awake(&priv
->pm_state
, HZ
);
61 mutex_lock(&priv
->conf_mutex
);
64 WSM_EDCA_SET(&priv
->edca
, 0, 0x0002, 0x0003, 0x0007, 47, 0xc8, false);
65 WSM_EDCA_SET(&priv
->edca
, 1, 0x0002, 0x0007, 0x000f, 94, 0xc8, false);
66 WSM_EDCA_SET(&priv
->edca
, 2, 0x0003, 0x000f, 0x03ff, 0, 0xc8, false);
67 WSM_EDCA_SET(&priv
->edca
, 3, 0x0007, 0x000f, 0x03ff, 0, 0xc8, false);
68 ret
= wsm_set_edca_params(priv
, &priv
->edca
);
72 ret
= cw1200_set_uapsd_param(priv
, &priv
->edca
);
76 priv
->setbssparams_done
= false;
78 memcpy(priv
->mac_addr
, dev
->wiphy
->perm_addr
, ETH_ALEN
);
79 priv
->mode
= NL80211_IFTYPE_MONITOR
;
80 priv
->wep_default_key_id
= -1;
82 priv
->cqm_beacon_loss_count
= 10;
84 ret
= cw1200_setup_mac(priv
);
89 mutex_unlock(&priv
->conf_mutex
);
93 void cw1200_stop(struct ieee80211_hw
*dev
, bool suspend
)
95 struct cw1200_common
*priv
= dev
->priv
;
101 while (down_trylock(&priv
->scan
.lock
)) {
102 /* Scan is in progress. Force it to stop. */
103 priv
->scan
.req
= NULL
;
106 up(&priv
->scan
.lock
);
108 cancel_delayed_work_sync(&priv
->scan
.probe_work
);
109 cancel_delayed_work_sync(&priv
->scan
.timeout
);
110 cancel_delayed_work_sync(&priv
->clear_recent_scan_work
);
111 cancel_delayed_work_sync(&priv
->join_timeout
);
112 cw1200_cqm_bssloss_sm(priv
, 0, 0, 0);
113 cancel_work_sync(&priv
->unjoin_work
);
114 cancel_delayed_work_sync(&priv
->link_id_gc_work
);
115 flush_workqueue(priv
->workqueue
);
116 del_timer_sync(&priv
->mcast_timeout
);
117 mutex_lock(&priv
->conf_mutex
);
118 priv
->mode
= NL80211_IFTYPE_UNSPECIFIED
;
119 priv
->listening
= false;
121 spin_lock(&priv
->event_queue_lock
);
122 list_splice_init(&priv
->event_queue
, &list
);
123 spin_unlock(&priv
->event_queue_lock
);
124 __cw1200_free_event_queue(&list
);
127 priv
->join_status
= CW1200_JOIN_STATUS_PASSIVE
;
128 priv
->join_pending
= false;
130 for (i
= 0; i
< 4; i
++)
131 cw1200_queue_clear(&priv
->tx_queue
[i
]);
132 mutex_unlock(&priv
->conf_mutex
);
133 tx_policy_clean(priv
);
136 if (atomic_xchg(&priv
->tx_lock
, 1) != 1)
137 pr_debug("[STA] TX is force-unlocked due to stop request.\n");
140 atomic_xchg(&priv
->tx_lock
, 0); /* for recovery to work */
143 static int cw1200_bssloss_mitigation
= 1;
144 module_param(cw1200_bssloss_mitigation
, int, 0644);
145 MODULE_PARM_DESC(cw1200_bssloss_mitigation
, "BSS Loss mitigation. 0 == disabled, 1 == enabled (default)");
148 void __cw1200_cqm_bssloss_sm(struct cw1200_common
*priv
,
149 int init
, int good
, int bad
)
153 priv
->delayed_link_loss
= 0;
154 cancel_work_sync(&priv
->bss_params_work
);
156 pr_debug("[STA] CQM BSSLOSS_SM: state: %d init %d good %d bad: %d txlock: %d uj: %d\n",
157 priv
->bss_loss_state
,
159 atomic_read(&priv
->tx_lock
),
160 priv
->delayed_unjoin
);
162 /* If we have a pending unjoin */
163 if (priv
->delayed_unjoin
)
167 queue_delayed_work(priv
->workqueue
,
168 &priv
->bss_loss_work
,
170 priv
->bss_loss_state
= 0;
172 /* Skip the confimration procedure in P2P case */
173 if (!priv
->vif
->p2p
&& !atomic_read(&priv
->tx_lock
))
176 cancel_delayed_work_sync(&priv
->bss_loss_work
);
177 priv
->bss_loss_state
= 0;
178 queue_work(priv
->workqueue
, &priv
->bss_params_work
);
180 /* XXX Should we just keep going until we time out? */
181 if (priv
->bss_loss_state
< 3)
184 cancel_delayed_work_sync(&priv
->bss_loss_work
);
185 priv
->bss_loss_state
= 0;
188 /* Bypass mitigation if it's disabled */
189 if (!cw1200_bssloss_mitigation
)
192 /* Spit out a NULL packet to our AP if necessary */
196 priv
->bss_loss_state
++;
198 skb
= ieee80211_nullfunc_get(priv
->hw
, priv
->vif
, -1, false);
201 cw1200_tx(priv
->hw
, NULL
, skb
);
205 int cw1200_add_interface(struct ieee80211_hw
*dev
,
206 struct ieee80211_vif
*vif
)
209 struct cw1200_common
*priv
= dev
->priv
;
210 /* __le32 auto_calibration_mode = __cpu_to_le32(1); */
212 vif
->driver_flags
|= IEEE80211_VIF_BEACON_FILTER
|
213 IEEE80211_VIF_SUPPORTS_UAPSD
|
214 IEEE80211_VIF_SUPPORTS_CQM_RSSI
;
216 mutex_lock(&priv
->conf_mutex
);
218 if (priv
->mode
!= NL80211_IFTYPE_MONITOR
) {
219 mutex_unlock(&priv
->conf_mutex
);
224 case NL80211_IFTYPE_STATION
:
225 case NL80211_IFTYPE_ADHOC
:
226 case NL80211_IFTYPE_MESH_POINT
:
227 case NL80211_IFTYPE_AP
:
228 priv
->mode
= vif
->type
;
231 mutex_unlock(&priv
->conf_mutex
);
236 memcpy(priv
->mac_addr
, vif
->addr
, ETH_ALEN
);
237 ret
= cw1200_setup_mac(priv
);
238 /* Enable auto-calibration */
239 /* Exception in subsequent channel switch; disabled.
240 * wsm_write_mib(priv, WSM_MIB_ID_SET_AUTO_CALIBRATION_MODE,
241 * &auto_calibration_mode, sizeof(auto_calibration_mode));
244 mutex_unlock(&priv
->conf_mutex
);
248 void cw1200_remove_interface(struct ieee80211_hw
*dev
,
249 struct ieee80211_vif
*vif
)
251 struct cw1200_common
*priv
= dev
->priv
;
252 struct wsm_reset reset
= {
253 .reset_statistics
= true,
257 mutex_lock(&priv
->conf_mutex
);
258 switch (priv
->join_status
) {
259 case CW1200_JOIN_STATUS_JOINING
:
260 case CW1200_JOIN_STATUS_PRE_STA
:
261 case CW1200_JOIN_STATUS_STA
:
262 case CW1200_JOIN_STATUS_IBSS
:
264 if (queue_work(priv
->workqueue
, &priv
->unjoin_work
) <= 0)
267 case CW1200_JOIN_STATUS_AP
:
268 for (i
= 0; priv
->link_id_map
; ++i
) {
269 if (priv
->link_id_map
& BIT(i
)) {
271 wsm_reset(priv
, &reset
);
272 priv
->link_id_map
&= ~BIT(i
);
275 memset(priv
->link_id_db
, 0, sizeof(priv
->link_id_db
));
276 priv
->sta_asleep_mask
= 0;
277 priv
->enable_beacon
= false;
278 priv
->tx_multicast
= false;
279 priv
->aid0_bit_set
= false;
280 priv
->buffered_multicasts
= false;
281 priv
->pspoll_mask
= 0;
283 wsm_reset(priv
, &reset
);
285 case CW1200_JOIN_STATUS_MONITOR
:
286 cw1200_update_listening(priv
, false);
292 priv
->mode
= NL80211_IFTYPE_MONITOR
;
293 eth_zero_addr(priv
->mac_addr
);
294 memset(&priv
->p2p_ps_modeinfo
, 0, sizeof(priv
->p2p_ps_modeinfo
));
295 cw1200_free_keys(priv
);
296 cw1200_setup_mac(priv
);
297 priv
->listening
= false;
298 priv
->join_status
= CW1200_JOIN_STATUS_PASSIVE
;
299 if (!__cw1200_flush(priv
, true))
302 mutex_unlock(&priv
->conf_mutex
);
305 int cw1200_change_interface(struct ieee80211_hw
*dev
,
306 struct ieee80211_vif
*vif
,
307 enum nl80211_iftype new_type
,
311 pr_debug("change_interface new: %d (%d), old: %d (%d)\n", new_type
,
312 p2p
, vif
->type
, vif
->p2p
);
314 if (new_type
!= vif
->type
|| vif
->p2p
!= p2p
) {
315 cw1200_remove_interface(dev
, vif
);
316 vif
->type
= new_type
;
318 ret
= cw1200_add_interface(dev
, vif
);
324 int cw1200_config(struct ieee80211_hw
*dev
, u32 changed
)
327 struct cw1200_common
*priv
= dev
->priv
;
328 struct ieee80211_conf
*conf
= &dev
->conf
;
330 pr_debug("CONFIG CHANGED: %08x\n", changed
);
332 down(&priv
->scan
.lock
);
333 mutex_lock(&priv
->conf_mutex
);
334 /* TODO: IEEE80211_CONF_CHANGE_QOS */
335 /* TODO: IEEE80211_CONF_CHANGE_LISTEN_INTERVAL */
337 if (changed
& IEEE80211_CONF_CHANGE_POWER
) {
338 priv
->output_power
= conf
->power_level
;
339 pr_debug("[STA] TX power: %d\n", priv
->output_power
);
340 wsm_set_output_power(priv
, priv
->output_power
* 10);
343 if ((changed
& IEEE80211_CONF_CHANGE_CHANNEL
) &&
344 (priv
->channel
!= conf
->chandef
.chan
)) {
345 struct ieee80211_channel
*ch
= conf
->chandef
.chan
;
346 struct wsm_switch_channel channel
= {
347 .channel_number
= ch
->hw_value
,
349 pr_debug("[STA] Freq %d (wsm ch: %d).\n",
350 ch
->center_freq
, ch
->hw_value
);
352 /* __cw1200_flush() implicitly locks tx, if successful */
353 if (!__cw1200_flush(priv
, false)) {
354 if (!wsm_switch_channel(priv
, &channel
)) {
355 ret
= wait_event_timeout(priv
->channel_switch_done
,
356 !priv
->channel_switch_in_progress
,
359 /* Already unlocks if successful */
366 /* Unlock if switch channel fails */
372 if (changed
& IEEE80211_CONF_CHANGE_PS
) {
373 if (!(conf
->flags
& IEEE80211_CONF_PS
))
374 priv
->powersave_mode
.mode
= WSM_PSM_ACTIVE
;
375 else if (conf
->dynamic_ps_timeout
<= 0)
376 priv
->powersave_mode
.mode
= WSM_PSM_PS
;
378 priv
->powersave_mode
.mode
= WSM_PSM_FAST_PS
;
380 /* Firmware requires that value for this 1-byte field must
381 * be specified in units of 500us. Values above the 128ms
382 * threshold are not supported.
384 if (conf
->dynamic_ps_timeout
>= 0x80)
385 priv
->powersave_mode
.fast_psm_idle_period
= 0xFF;
387 priv
->powersave_mode
.fast_psm_idle_period
=
388 conf
->dynamic_ps_timeout
<< 1;
390 if (priv
->join_status
== CW1200_JOIN_STATUS_STA
&&
391 priv
->bss_params
.aid
)
392 cw1200_set_pm(priv
, &priv
->powersave_mode
);
395 if (changed
& IEEE80211_CONF_CHANGE_MONITOR
) {
396 /* TBD: It looks like it's transparent
397 * there's a monitor interface present -- use this
398 * to determine for example whether to calculate
399 * timestamps for packets or not, do not use instead
404 if (changed
& IEEE80211_CONF_CHANGE_IDLE
) {
405 struct wsm_operational_mode mode
= {
406 .power_mode
= cw1200_power_mode
,
407 .disable_more_flag_usage
= true,
411 /* Disable p2p-dev mode forced by TX request */
412 if ((priv
->join_status
== CW1200_JOIN_STATUS_MONITOR
) &&
413 (conf
->flags
& IEEE80211_CONF_IDLE
) &&
415 cw1200_disable_listening(priv
);
416 priv
->join_status
= CW1200_JOIN_STATUS_PASSIVE
;
418 wsm_set_operational_mode(priv
, &mode
);
422 if (changed
& IEEE80211_CONF_CHANGE_RETRY_LIMITS
) {
423 pr_debug("[STA] Retry limits: %d (long), %d (short).\n",
424 conf
->long_frame_max_tx_count
,
425 conf
->short_frame_max_tx_count
);
426 spin_lock_bh(&priv
->tx_policy_cache
.lock
);
427 priv
->long_frame_max_tx_count
= conf
->long_frame_max_tx_count
;
428 priv
->short_frame_max_tx_count
=
429 (conf
->short_frame_max_tx_count
< 0x0F) ?
430 conf
->short_frame_max_tx_count
: 0x0F;
431 priv
->hw
->max_rate_tries
= priv
->short_frame_max_tx_count
;
432 spin_unlock_bh(&priv
->tx_policy_cache
.lock
);
434 mutex_unlock(&priv
->conf_mutex
);
435 up(&priv
->scan
.lock
);
439 void cw1200_update_filtering(struct cw1200_common
*priv
)
442 bool bssid_filtering
= !priv
->rx_filter
.bssid
;
443 bool is_p2p
= priv
->vif
&& priv
->vif
->p2p
;
444 bool is_sta
= priv
->vif
&& NL80211_IFTYPE_STATION
== priv
->vif
->type
;
446 static struct wsm_beacon_filter_control bf_ctrl
;
447 static struct wsm_mib_beacon_filter_table bf_tbl
= {
448 .entry
[0].ie_id
= WLAN_EID_VENDOR_SPECIFIC
,
449 .entry
[0].flags
= WSM_BEACON_FILTER_IE_HAS_CHANGED
|
450 WSM_BEACON_FILTER_IE_NO_LONGER_PRESENT
|
451 WSM_BEACON_FILTER_IE_HAS_APPEARED
,
452 .entry
[0].oui
[0] = 0x50,
453 .entry
[0].oui
[1] = 0x6F,
454 .entry
[0].oui
[2] = 0x9A,
455 .entry
[1].ie_id
= WLAN_EID_HT_OPERATION
,
456 .entry
[1].flags
= WSM_BEACON_FILTER_IE_HAS_CHANGED
|
457 WSM_BEACON_FILTER_IE_NO_LONGER_PRESENT
|
458 WSM_BEACON_FILTER_IE_HAS_APPEARED
,
459 .entry
[2].ie_id
= WLAN_EID_ERP_INFO
,
460 .entry
[2].flags
= WSM_BEACON_FILTER_IE_HAS_CHANGED
|
461 WSM_BEACON_FILTER_IE_NO_LONGER_PRESENT
|
462 WSM_BEACON_FILTER_IE_HAS_APPEARED
,
465 if (priv
->join_status
== CW1200_JOIN_STATUS_PASSIVE
)
467 else if (priv
->join_status
== CW1200_JOIN_STATUS_MONITOR
)
468 bssid_filtering
= false;
470 if (priv
->disable_beacon_filter
) {
472 bf_ctrl
.bcn_count
= 1;
473 bf_tbl
.num
= __cpu_to_le32(0);
474 } else if (is_p2p
|| !is_sta
) {
475 bf_ctrl
.enabled
= WSM_BEACON_FILTER_ENABLE
|
476 WSM_BEACON_FILTER_AUTO_ERP
;
477 bf_ctrl
.bcn_count
= 0;
478 bf_tbl
.num
= __cpu_to_le32(2);
480 bf_ctrl
.enabled
= WSM_BEACON_FILTER_ENABLE
;
481 bf_ctrl
.bcn_count
= 0;
482 bf_tbl
.num
= __cpu_to_le32(3);
485 /* When acting as p2p client being connected to p2p GO, in order to
486 * receive frames from a different p2p device, turn off bssid filter.
488 * WARNING: FW dependency!
489 * This can only be used with FW WSM371 and its successors.
490 * In that FW version even with bssid filter turned off,
491 * device will block most of the unwanted frames.
494 bssid_filtering
= false;
496 ret
= wsm_set_rx_filter(priv
, &priv
->rx_filter
);
498 ret
= wsm_set_beacon_filter_table(priv
, &bf_tbl
);
500 ret
= wsm_beacon_filter_control(priv
, &bf_ctrl
);
502 ret
= wsm_set_bssid_filtering(priv
, bssid_filtering
);
504 ret
= wsm_set_multicast_filter(priv
, &priv
->multicast_filter
);
506 wiphy_err(priv
->hw
->wiphy
,
507 "Update filtering failed: %d.\n", ret
);
511 void cw1200_update_filtering_work(struct work_struct
*work
)
513 struct cw1200_common
*priv
=
514 container_of(work
, struct cw1200_common
,
515 update_filtering_work
);
517 cw1200_update_filtering(priv
);
520 void cw1200_set_beacon_wakeup_period_work(struct work_struct
*work
)
522 struct cw1200_common
*priv
=
523 container_of(work
, struct cw1200_common
,
524 set_beacon_wakeup_period_work
);
526 wsm_set_beacon_wakeup_period(priv
,
527 priv
->beacon_int
* priv
->join_dtim_period
>
528 MAX_BEACON_SKIP_TIME_MS
? 1 :
529 priv
->join_dtim_period
, 0);
532 u64
cw1200_prepare_multicast(struct ieee80211_hw
*hw
,
533 struct netdev_hw_addr_list
*mc_list
)
535 static u8 broadcast_ipv6
[ETH_ALEN
] = {
536 0x33, 0x33, 0x00, 0x00, 0x00, 0x01
538 static u8 broadcast_ipv4
[ETH_ALEN
] = {
539 0x01, 0x00, 0x5e, 0x00, 0x00, 0x01
541 struct cw1200_common
*priv
= hw
->priv
;
542 struct netdev_hw_addr
*ha
;
545 /* Disable multicast filtering */
546 priv
->has_multicast_subscription
= false;
547 memset(&priv
->multicast_filter
, 0x00, sizeof(priv
->multicast_filter
));
549 if (netdev_hw_addr_list_count(mc_list
) > WSM_MAX_GRP_ADDRTABLE_ENTRIES
)
552 /* Enable if requested */
553 netdev_hw_addr_list_for_each(ha
, mc_list
) {
554 pr_debug("[STA] multicast: %pM\n", ha
->addr
);
555 memcpy(&priv
->multicast_filter
.macaddrs
[count
],
557 if (!ether_addr_equal(ha
->addr
, broadcast_ipv4
) &&
558 !ether_addr_equal(ha
->addr
, broadcast_ipv6
))
559 priv
->has_multicast_subscription
= true;
564 priv
->multicast_filter
.enable
= __cpu_to_le32(1);
565 priv
->multicast_filter
.num_addrs
= __cpu_to_le32(count
);
568 return netdev_hw_addr_list_count(mc_list
);
571 void cw1200_configure_filter(struct ieee80211_hw
*dev
,
572 unsigned int changed_flags
,
573 unsigned int *total_flags
,
576 struct cw1200_common
*priv
= dev
->priv
;
577 bool listening
= !!(*total_flags
&
579 FIF_BCN_PRBRESP_PROMISC
|
582 *total_flags
&= FIF_OTHER_BSS
|
584 FIF_BCN_PRBRESP_PROMISC
|
587 down(&priv
->scan
.lock
);
588 mutex_lock(&priv
->conf_mutex
);
590 priv
->rx_filter
.promiscuous
= 0;
591 priv
->rx_filter
.bssid
= (*total_flags
& (FIF_OTHER_BSS
|
592 FIF_PROBE_REQ
)) ? 1 : 0;
593 priv
->rx_filter
.fcs
= (*total_flags
& FIF_FCSFAIL
) ? 1 : 0;
594 priv
->disable_beacon_filter
= !(*total_flags
&
595 (FIF_BCN_PRBRESP_PROMISC
|
597 if (priv
->listening
!= listening
) {
598 priv
->listening
= listening
;
600 cw1200_update_listening(priv
, listening
);
603 cw1200_update_filtering(priv
);
604 mutex_unlock(&priv
->conf_mutex
);
605 up(&priv
->scan
.lock
);
608 int cw1200_conf_tx(struct ieee80211_hw
*dev
, struct ieee80211_vif
*vif
,
609 unsigned int link_id
, u16 queue
,
610 const struct ieee80211_tx_queue_params
*params
)
612 struct cw1200_common
*priv
= dev
->priv
;
614 /* To prevent re-applying PM request OID again and again*/
615 bool old_uapsd_flags
;
617 mutex_lock(&priv
->conf_mutex
);
619 if (queue
< dev
->queues
) {
620 old_uapsd_flags
= le16_to_cpu(priv
->uapsd_info
.uapsd_flags
);
622 WSM_TX_QUEUE_SET(&priv
->tx_queue_params
, queue
, 0, 0, 0);
623 ret
= wsm_set_tx_queue_params(priv
,
624 &priv
->tx_queue_params
.params
[queue
], queue
);
630 WSM_EDCA_SET(&priv
->edca
, queue
, params
->aifs
,
631 params
->cw_min
, params
->cw_max
,
634 ret
= wsm_set_edca_params(priv
, &priv
->edca
);
640 if (priv
->mode
== NL80211_IFTYPE_STATION
) {
641 ret
= cw1200_set_uapsd_param(priv
, &priv
->edca
);
642 if (!ret
&& priv
->setbssparams_done
&&
643 (priv
->join_status
== CW1200_JOIN_STATUS_STA
) &&
644 (old_uapsd_flags
!= le16_to_cpu(priv
->uapsd_info
.uapsd_flags
)))
645 ret
= cw1200_set_pm(priv
, &priv
->powersave_mode
);
652 mutex_unlock(&priv
->conf_mutex
);
656 int cw1200_get_stats(struct ieee80211_hw
*dev
,
657 struct ieee80211_low_level_stats
*stats
)
659 struct cw1200_common
*priv
= dev
->priv
;
661 memcpy(stats
, &priv
->stats
, sizeof(*stats
));
665 int cw1200_set_pm(struct cw1200_common
*priv
, const struct wsm_set_pm
*arg
)
667 struct wsm_set_pm pm
= *arg
;
669 if (priv
->uapsd_info
.uapsd_flags
!= 0)
670 pm
.mode
&= ~WSM_PSM_FAST_PS_FLAG
;
672 if (memcmp(&pm
, &priv
->firmware_ps_mode
,
673 sizeof(struct wsm_set_pm
))) {
674 priv
->firmware_ps_mode
= pm
;
675 return wsm_set_pm(priv
, &pm
);
681 int cw1200_set_key(struct ieee80211_hw
*dev
, enum set_key_cmd cmd
,
682 struct ieee80211_vif
*vif
, struct ieee80211_sta
*sta
,
683 struct ieee80211_key_conf
*key
)
685 int ret
= -EOPNOTSUPP
;
686 struct cw1200_common
*priv
= dev
->priv
;
687 struct ieee80211_key_seq seq
;
689 mutex_lock(&priv
->conf_mutex
);
691 if (cmd
== SET_KEY
) {
692 u8
*peer_addr
= NULL
;
693 int pairwise
= (key
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
) ?
695 int idx
= cw1200_alloc_key(priv
);
696 struct wsm_add_key
*wsm_key
= &priv
->keys
[idx
];
704 peer_addr
= sta
->addr
;
706 key
->flags
|= IEEE80211_KEY_FLAG_PUT_IV_SPACE
|
707 IEEE80211_KEY_FLAG_RESERVE_TAILROOM
;
709 switch (key
->cipher
) {
710 case WLAN_CIPHER_SUITE_WEP40
:
711 case WLAN_CIPHER_SUITE_WEP104
:
712 if (key
->keylen
> 16) {
713 cw1200_free_key(priv
, idx
);
719 wsm_key
->type
= WSM_KEY_TYPE_WEP_PAIRWISE
;
720 memcpy(wsm_key
->wep_pairwise
.peer
,
721 peer_addr
, ETH_ALEN
);
722 memcpy(wsm_key
->wep_pairwise
.keydata
,
723 &key
->key
[0], key
->keylen
);
724 wsm_key
->wep_pairwise
.keylen
= key
->keylen
;
726 wsm_key
->type
= WSM_KEY_TYPE_WEP_DEFAULT
;
727 memcpy(wsm_key
->wep_group
.keydata
,
728 &key
->key
[0], key
->keylen
);
729 wsm_key
->wep_group
.keylen
= key
->keylen
;
730 wsm_key
->wep_group
.keyid
= key
->keyidx
;
733 case WLAN_CIPHER_SUITE_TKIP
:
734 ieee80211_get_key_rx_seq(key
, 0, &seq
);
736 wsm_key
->type
= WSM_KEY_TYPE_TKIP_PAIRWISE
;
737 memcpy(wsm_key
->tkip_pairwise
.peer
,
738 peer_addr
, ETH_ALEN
);
739 memcpy(wsm_key
->tkip_pairwise
.keydata
,
741 memcpy(wsm_key
->tkip_pairwise
.tx_mic_key
,
743 memcpy(wsm_key
->tkip_pairwise
.rx_mic_key
,
747 (priv
->mode
== NL80211_IFTYPE_AP
) ?
749 wsm_key
->type
= WSM_KEY_TYPE_TKIP_GROUP
;
750 memcpy(wsm_key
->tkip_group
.keydata
,
752 memcpy(wsm_key
->tkip_group
.rx_mic_key
,
753 &key
->key
[mic_offset
], 8);
755 wsm_key
->tkip_group
.rx_seqnum
[0] = seq
.tkip
.iv16
& 0xff;
756 wsm_key
->tkip_group
.rx_seqnum
[1] = (seq
.tkip
.iv16
>> 8) & 0xff;
757 wsm_key
->tkip_group
.rx_seqnum
[2] = seq
.tkip
.iv32
& 0xff;
758 wsm_key
->tkip_group
.rx_seqnum
[3] = (seq
.tkip
.iv32
>> 8) & 0xff;
759 wsm_key
->tkip_group
.rx_seqnum
[4] = (seq
.tkip
.iv32
>> 16) & 0xff;
760 wsm_key
->tkip_group
.rx_seqnum
[5] = (seq
.tkip
.iv32
>> 24) & 0xff;
761 wsm_key
->tkip_group
.rx_seqnum
[6] = 0;
762 wsm_key
->tkip_group
.rx_seqnum
[7] = 0;
764 wsm_key
->tkip_group
.keyid
= key
->keyidx
;
767 case WLAN_CIPHER_SUITE_CCMP
:
768 ieee80211_get_key_rx_seq(key
, 0, &seq
);
770 wsm_key
->type
= WSM_KEY_TYPE_AES_PAIRWISE
;
771 memcpy(wsm_key
->aes_pairwise
.peer
,
772 peer_addr
, ETH_ALEN
);
773 memcpy(wsm_key
->aes_pairwise
.keydata
,
776 wsm_key
->type
= WSM_KEY_TYPE_AES_GROUP
;
777 memcpy(wsm_key
->aes_group
.keydata
,
780 wsm_key
->aes_group
.rx_seqnum
[0] = seq
.ccmp
.pn
[5];
781 wsm_key
->aes_group
.rx_seqnum
[1] = seq
.ccmp
.pn
[4];
782 wsm_key
->aes_group
.rx_seqnum
[2] = seq
.ccmp
.pn
[3];
783 wsm_key
->aes_group
.rx_seqnum
[3] = seq
.ccmp
.pn
[2];
784 wsm_key
->aes_group
.rx_seqnum
[4] = seq
.ccmp
.pn
[1];
785 wsm_key
->aes_group
.rx_seqnum
[5] = seq
.ccmp
.pn
[0];
786 wsm_key
->aes_group
.rx_seqnum
[6] = 0;
787 wsm_key
->aes_group
.rx_seqnum
[7] = 0;
788 wsm_key
->aes_group
.keyid
= key
->keyidx
;
791 case WLAN_CIPHER_SUITE_SMS4
:
793 wsm_key
->type
= WSM_KEY_TYPE_WAPI_PAIRWISE
;
794 memcpy(wsm_key
->wapi_pairwise
.peer
,
795 peer_addr
, ETH_ALEN
);
796 memcpy(wsm_key
->wapi_pairwise
.keydata
,
798 memcpy(wsm_key
->wapi_pairwise
.mic_key
,
800 wsm_key
->wapi_pairwise
.keyid
= key
->keyidx
;
802 wsm_key
->type
= WSM_KEY_TYPE_WAPI_GROUP
;
803 memcpy(wsm_key
->wapi_group
.keydata
,
805 memcpy(wsm_key
->wapi_group
.mic_key
,
807 wsm_key
->wapi_group
.keyid
= key
->keyidx
;
811 pr_warn("Unhandled key type %d\n", key
->cipher
);
812 cw1200_free_key(priv
, idx
);
816 ret
= wsm_add_key(priv
, wsm_key
);
818 key
->hw_key_idx
= idx
;
820 cw1200_free_key(priv
, idx
);
821 } else if (cmd
== DISABLE_KEY
) {
822 struct wsm_remove_key wsm_key
= {
823 .index
= key
->hw_key_idx
,
826 if (wsm_key
.index
> WSM_KEY_MAX_INDEX
) {
831 cw1200_free_key(priv
, wsm_key
.index
);
832 ret
= wsm_remove_key(priv
, &wsm_key
);
834 pr_warn("Unhandled key command %d\n", cmd
);
838 mutex_unlock(&priv
->conf_mutex
);
842 void cw1200_wep_key_work(struct work_struct
*work
)
844 struct cw1200_common
*priv
=
845 container_of(work
, struct cw1200_common
, wep_key_work
);
846 u8 queue_id
= cw1200_queue_get_queue_id(priv
->pending_frame_id
);
847 struct cw1200_queue
*queue
= &priv
->tx_queue
[queue_id
];
848 __le32 wep_default_key_id
= __cpu_to_le32(
849 priv
->wep_default_key_id
);
851 pr_debug("[STA] Setting default WEP key: %d\n",
852 priv
->wep_default_key_id
);
854 wsm_write_mib(priv
, WSM_MIB_ID_DOT11_WEP_DEFAULT_KEY_ID
,
855 &wep_default_key_id
, sizeof(wep_default_key_id
));
856 cw1200_queue_requeue(queue
, priv
->pending_frame_id
);
860 int cw1200_set_rts_threshold(struct ieee80211_hw
*hw
, u32 value
)
864 struct cw1200_common
*priv
= hw
->priv
;
866 if (priv
->mode
== NL80211_IFTYPE_UNSPECIFIED
)
869 if (value
!= (u32
) -1)
870 val32
= __cpu_to_le32(value
);
872 val32
= 0; /* disabled */
874 if (priv
->rts_threshold
== value
)
877 pr_debug("[STA] Setting RTS threshold: %d\n",
878 priv
->rts_threshold
);
880 /* mutex_lock(&priv->conf_mutex); */
881 ret
= wsm_write_mib(priv
, WSM_MIB_ID_DOT11_RTS_THRESHOLD
,
882 &val32
, sizeof(val32
));
884 priv
->rts_threshold
= value
;
885 /* mutex_unlock(&priv->conf_mutex); */
891 /* If successful, LOCKS the TX queue! */
892 static int __cw1200_flush(struct cw1200_common
*priv
, bool drop
)
897 /* TODO: correct flush handling is required when dev_stop.
898 * Temporary workaround: 2s
901 for (i
= 0; i
< 4; ++i
)
902 cw1200_queue_clear(&priv
->tx_queue
[i
]);
904 ret
= wait_event_timeout(
905 priv
->tx_queue_stats
.wait_link_id_empty
,
906 cw1200_queue_stats_is_empty(
907 &priv
->tx_queue_stats
, -1),
911 if (!drop
&& ret
<= 0) {
919 if (!cw1200_queue_stats_is_empty(&priv
->tx_queue_stats
, -1)) {
920 /* Highly unlikely: WSM requeued frames. */
929 void cw1200_flush(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
,
930 u32 queues
, bool drop
)
932 struct cw1200_common
*priv
= hw
->priv
;
934 switch (priv
->mode
) {
935 case NL80211_IFTYPE_MONITOR
:
938 case NL80211_IFTYPE_AP
:
939 if (!priv
->enable_beacon
)
944 if (!__cw1200_flush(priv
, drop
))
950 /* ******************************************************************** */
953 void cw1200_free_event_queue(struct cw1200_common
*priv
)
957 spin_lock(&priv
->event_queue_lock
);
958 list_splice_init(&priv
->event_queue
, &list
);
959 spin_unlock(&priv
->event_queue_lock
);
961 __cw1200_free_event_queue(&list
);
964 void cw1200_event_handler(struct work_struct
*work
)
966 struct cw1200_common
*priv
=
967 container_of(work
, struct cw1200_common
, event_handler
);
968 struct cw1200_wsm_event
*event
;
971 spin_lock(&priv
->event_queue_lock
);
972 list_splice_init(&priv
->event_queue
, &list
);
973 spin_unlock(&priv
->event_queue_lock
);
975 list_for_each_entry(event
, &list
, link
) {
976 switch (event
->evt
.id
) {
977 case WSM_EVENT_ERROR
:
978 pr_err("Unhandled WSM Error from LMAC\n");
980 case WSM_EVENT_BSS_LOST
:
981 pr_debug("[CQM] BSS lost.\n");
982 cancel_work_sync(&priv
->unjoin_work
);
983 if (!down_trylock(&priv
->scan
.lock
)) {
984 cw1200_cqm_bssloss_sm(priv
, 1, 0, 0);
985 up(&priv
->scan
.lock
);
987 /* Scan is in progress. Delay reporting.
988 * Scan complete will trigger bss_loss_work
990 priv
->delayed_link_loss
= 1;
991 /* Also start a watchdog. */
992 queue_delayed_work(priv
->workqueue
,
993 &priv
->bss_loss_work
, 5*HZ
);
996 case WSM_EVENT_BSS_REGAINED
:
997 pr_debug("[CQM] BSS regained.\n");
998 cw1200_cqm_bssloss_sm(priv
, 0, 0, 0);
999 cancel_work_sync(&priv
->unjoin_work
);
1001 case WSM_EVENT_RADAR_DETECTED
:
1002 wiphy_info(priv
->hw
->wiphy
, "radar pulse detected\n");
1004 case WSM_EVENT_RCPI_RSSI
:
1006 /* RSSI: signed Q8.0, RCPI: unsigned Q7.1
1007 * RSSI = RCPI / 2 - 110
1009 int rcpi_rssi
= (int)(event
->evt
.data
& 0xFF);
1011 if (priv
->cqm_use_rssi
)
1012 rcpi_rssi
= (s8
)rcpi_rssi
;
1014 rcpi_rssi
= rcpi_rssi
/ 2 - 110;
1016 cqm_evt
= (rcpi_rssi
<= priv
->cqm_rssi_thold
) ?
1017 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW
:
1018 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH
;
1019 pr_debug("[CQM] RSSI event: %d.\n", rcpi_rssi
);
1020 ieee80211_cqm_rssi_notify(priv
->vif
, cqm_evt
, rcpi_rssi
,
1024 case WSM_EVENT_BT_INACTIVE
:
1025 pr_warn("Unhandled BT INACTIVE from LMAC\n");
1027 case WSM_EVENT_BT_ACTIVE
:
1028 pr_warn("Unhandled BT ACTIVE from LMAC\n");
1032 __cw1200_free_event_queue(&list
);
1035 void cw1200_bss_loss_work(struct work_struct
*work
)
1037 struct cw1200_common
*priv
=
1038 container_of(work
, struct cw1200_common
, bss_loss_work
.work
);
1040 pr_debug("[CQM] Reporting connection loss.\n");
1042 if (queue_work(priv
->workqueue
, &priv
->unjoin_work
) <= 0)
1043 wsm_unlock_tx(priv
);
1046 void cw1200_bss_params_work(struct work_struct
*work
)
1048 struct cw1200_common
*priv
=
1049 container_of(work
, struct cw1200_common
, bss_params_work
);
1050 mutex_lock(&priv
->conf_mutex
);
1052 priv
->bss_params
.reset_beacon_loss
= 1;
1053 wsm_set_bss_params(priv
, &priv
->bss_params
);
1054 priv
->bss_params
.reset_beacon_loss
= 0;
1056 mutex_unlock(&priv
->conf_mutex
);
1059 /* ******************************************************************** */
1062 /* This function is called to Parse the SDD file
1063 * to extract listen_interval and PTA related information
1064 * sdd is a TLV: u8 id, u8 len, u8 data[]
1066 static int cw1200_parse_sdd_file(struct cw1200_common
*priv
)
1068 const u8
*p
= priv
->sdd
->data
;
1071 while (p
+ 2 <= priv
->sdd
->data
+ priv
->sdd
->size
) {
1072 if (p
+ p
[1] + 2 > priv
->sdd
->data
+ priv
->sdd
->size
) {
1073 pr_warn("Malformed sdd structure\n");
1077 case SDD_PTA_CFG_ELT_ID
: {
1080 pr_warn("SDD_PTA_CFG_ELT_ID malformed\n");
1084 v
= le16_to_cpu(*((__le16
*)(p
+ 2)));
1085 if (!v
) /* non-zero means this is enabled */
1088 v
= le16_to_cpu(*((__le16
*)(p
+ 4)));
1089 priv
->conf_listen_interval
= (v
>> 7) & 0x1F;
1090 pr_debug("PTA found; Listen Interval %d\n",
1091 priv
->conf_listen_interval
);
1094 case SDD_REFERENCE_FREQUENCY_ELT_ID
: {
1095 u16 clk
= le16_to_cpu(*((__le16
*)(p
+ 2)));
1096 if (clk
!= priv
->hw_refclk
)
1097 pr_warn("SDD file doesn't match configured refclk (%d vs %d)\n",
1098 clk
, priv
->hw_refclk
);
1107 if (!priv
->bt_present
) {
1108 pr_debug("PTA element NOT found.\n");
1109 priv
->conf_listen_interval
= 0;
1114 int cw1200_setup_mac(struct cw1200_common
*priv
)
1118 /* NOTE: There is a bug in FW: it reports signal
1119 * as RSSI if RSSI subscription is enabled.
1120 * It's not enough to set WSM_RCPI_RSSI_USE_RSSI.
1122 * NOTE2: RSSI based reports have been switched to RCPI, since
1123 * FW has a bug and RSSI reported values are not stable,
1124 * what can lead to signal level oscilations in user-end applications
1126 struct wsm_rcpi_rssi_threshold threshold
= {
1127 .rssiRcpiMode
= WSM_RCPI_RSSI_THRESHOLD_ENABLE
|
1128 WSM_RCPI_RSSI_DONT_USE_UPPER
|
1129 WSM_RCPI_RSSI_DONT_USE_LOWER
,
1130 .rollingAverageCount
= 16,
1133 struct wsm_configuration cfg
= {
1134 .dot11StationId
= &priv
->mac_addr
[0],
1137 /* Remember the decission here to make sure, we will handle
1138 * the RCPI/RSSI value correctly on WSM_EVENT_RCPI_RSS
1140 if (threshold
.rssiRcpiMode
& WSM_RCPI_RSSI_USE_RSSI
)
1141 priv
->cqm_use_rssi
= true;
1144 ret
= request_firmware(&priv
->sdd
, priv
->sdd_path
, priv
->pdev
);
1146 pr_err("Can't load sdd file %s.\n", priv
->sdd_path
);
1149 cw1200_parse_sdd_file(priv
);
1152 cfg
.dpdData
= priv
->sdd
->data
;
1153 cfg
.dpdData_size
= priv
->sdd
->size
;
1154 ret
= wsm_configuration(priv
, &cfg
);
1158 /* Configure RSSI/SCPI reporting as RSSI. */
1159 wsm_set_rcpi_rssi_threshold(priv
, &threshold
);
1164 static void cw1200_join_complete(struct cw1200_common
*priv
)
1166 pr_debug("[STA] Join complete (%d)\n", priv
->join_complete_status
);
1168 priv
->join_pending
= false;
1169 if (priv
->join_complete_status
) {
1170 priv
->join_status
= CW1200_JOIN_STATUS_PASSIVE
;
1171 cw1200_update_listening(priv
, priv
->listening
);
1172 cw1200_do_unjoin(priv
);
1173 ieee80211_connection_loss(priv
->vif
);
1175 if (priv
->mode
== NL80211_IFTYPE_ADHOC
)
1176 priv
->join_status
= CW1200_JOIN_STATUS_IBSS
;
1178 priv
->join_status
= CW1200_JOIN_STATUS_PRE_STA
;
1180 wsm_unlock_tx(priv
); /* Clearing the lock held before do_join() */
1183 void cw1200_join_complete_work(struct work_struct
*work
)
1185 struct cw1200_common
*priv
=
1186 container_of(work
, struct cw1200_common
, join_complete_work
);
1187 mutex_lock(&priv
->conf_mutex
);
1188 cw1200_join_complete(priv
);
1189 mutex_unlock(&priv
->conf_mutex
);
1192 void cw1200_join_complete_cb(struct cw1200_common
*priv
,
1193 struct wsm_join_complete
*arg
)
1195 pr_debug("[STA] cw1200_join_complete_cb called, status=%d.\n",
1198 if (cancel_delayed_work(&priv
->join_timeout
)) {
1199 priv
->join_complete_status
= arg
->status
;
1200 queue_work(priv
->workqueue
, &priv
->join_complete_work
);
1204 /* MUST be called with tx_lock held! It will be unlocked for us. */
1205 static void cw1200_do_join(struct cw1200_common
*priv
)
1208 struct ieee80211_bss_conf
*conf
= &priv
->vif
->bss_conf
;
1209 struct cfg80211_bss
*bss
= NULL
;
1210 struct wsm_protected_mgmt_policy mgmt_policy
;
1211 struct wsm_join join
= {
1212 .mode
= priv
->vif
->cfg
.ibss_joined
?
1213 WSM_JOIN_MODE_IBSS
: WSM_JOIN_MODE_BSS
,
1214 .preamble_type
= WSM_JOIN_PREAMBLE_LONG
,
1215 .probe_for_join
= 1,
1217 .basic_rate_set
= cw1200_rate_mask_to_wsm(priv
,
1220 if (delayed_work_pending(&priv
->join_timeout
)) {
1221 pr_warn("[STA] - Join request already pending, skipping..\n");
1222 wsm_unlock_tx(priv
);
1226 if (priv
->join_status
)
1227 cw1200_do_unjoin(priv
);
1229 bssid
= priv
->vif
->bss_conf
.bssid
;
1231 bss
= cfg80211_get_bss(priv
->hw
->wiphy
, priv
->channel
, bssid
, NULL
, 0,
1232 IEEE80211_BSS_TYPE_ANY
, IEEE80211_PRIVACY_ANY
);
1234 if (!bss
&& !priv
->vif
->cfg
.ibss_joined
) {
1235 wsm_unlock_tx(priv
);
1239 mutex_lock(&priv
->conf_mutex
);
1241 /* Under the conf lock: check scan status and
1242 * bail out if it is in progress.
1244 if (atomic_read(&priv
->scan
.in_progress
)) {
1245 wsm_unlock_tx(priv
);
1249 priv
->join_pending
= true;
1251 /* Sanity check basic rates */
1252 if (!join
.basic_rate_set
)
1253 join
.basic_rate_set
= 7;
1255 /* Sanity check beacon interval */
1256 if (!priv
->beacon_int
)
1257 priv
->beacon_int
= 1;
1259 join
.beacon_interval
= priv
->beacon_int
;
1261 /* BT Coex related changes */
1262 if (priv
->bt_present
) {
1263 if (((priv
->conf_listen_interval
* 100) %
1264 priv
->beacon_int
) == 0)
1265 priv
->listen_interval
=
1266 ((priv
->conf_listen_interval
* 100) /
1269 priv
->listen_interval
=
1270 ((priv
->conf_listen_interval
* 100) /
1271 priv
->beacon_int
+ 1);
1274 if (priv
->hw
->conf
.ps_dtim_period
)
1275 priv
->join_dtim_period
= priv
->hw
->conf
.ps_dtim_period
;
1276 join
.dtim_period
= priv
->join_dtim_period
;
1278 join
.channel_number
= priv
->channel
->hw_value
;
1279 join
.band
= (priv
->channel
->band
== NL80211_BAND_5GHZ
) ?
1280 WSM_PHY_BAND_5G
: WSM_PHY_BAND_2_4G
;
1282 memcpy(join
.bssid
, bssid
, sizeof(join
.bssid
));
1284 pr_debug("[STA] Join BSSID: %pM DTIM: %d, interval: %d\n",
1286 join
.dtim_period
, priv
->beacon_int
);
1288 if (!priv
->vif
->cfg
.ibss_joined
) {
1291 ssidie
= ieee80211_bss_get_ie(bss
, WLAN_EID_SSID
);
1293 join
.ssid_len
= ssidie
[1];
1294 memcpy(join
.ssid
, &ssidie
[2], join
.ssid_len
);
1299 if (priv
->vif
->p2p
) {
1300 join
.flags
|= WSM_JOIN_FLAGS_P2P_GO
;
1301 join
.basic_rate_set
=
1302 cw1200_rate_mask_to_wsm(priv
, 0xFF0);
1305 /* Enable asynchronous join calls */
1306 if (!priv
->vif
->cfg
.ibss_joined
) {
1307 join
.flags
|= WSM_JOIN_FLAGS_FORCE
;
1308 join
.flags
|= WSM_JOIN_FLAGS_FORCE_WITH_COMPLETE_IND
;
1313 /* Stay Awake for Join and Auth Timeouts and a bit more */
1314 cw1200_pm_stay_awake(&priv
->pm_state
,
1315 CW1200_JOIN_TIMEOUT
+ CW1200_AUTH_TIMEOUT
);
1317 cw1200_update_listening(priv
, false);
1319 /* Turn on Block ACKs */
1320 wsm_set_block_ack_policy(priv
, priv
->ba_tx_tid_mask
,
1321 priv
->ba_rx_tid_mask
);
1323 /* Set up timeout */
1324 if (join
.flags
& WSM_JOIN_FLAGS_FORCE_WITH_COMPLETE_IND
) {
1325 priv
->join_status
= CW1200_JOIN_STATUS_JOINING
;
1326 queue_delayed_work(priv
->workqueue
,
1327 &priv
->join_timeout
,
1328 CW1200_JOIN_TIMEOUT
);
1331 /* 802.11w protected mgmt frames */
1332 mgmt_policy
.protectedMgmtEnable
= 0;
1333 mgmt_policy
.unprotectedMgmtFramesAllowed
= 1;
1334 mgmt_policy
.encryptionForAuthFrame
= 1;
1335 wsm_set_protected_mgmt_policy(priv
, &mgmt_policy
);
1337 /* Perform actual join */
1338 if (wsm_join(priv
, &join
)) {
1339 pr_err("[STA] cw1200_join_work: wsm_join failed!\n");
1340 cancel_delayed_work_sync(&priv
->join_timeout
);
1341 cw1200_update_listening(priv
, priv
->listening
);
1342 /* Tx lock still held, unjoin will clear it. */
1343 if (queue_work(priv
->workqueue
, &priv
->unjoin_work
) <= 0)
1344 wsm_unlock_tx(priv
);
1346 if (!(join
.flags
& WSM_JOIN_FLAGS_FORCE_WITH_COMPLETE_IND
))
1347 cw1200_join_complete(priv
); /* Will clear tx_lock */
1350 cw1200_upload_keys(priv
);
1352 /* Due to beacon filtering it is possible that the
1353 * AP's beacon is not known for the mac80211 stack.
1354 * Disable filtering temporary to make sure the stack
1355 * receives at least one
1357 priv
->disable_beacon_filter
= true;
1359 cw1200_update_filtering(priv
);
1362 mutex_unlock(&priv
->conf_mutex
);
1364 cfg80211_put_bss(priv
->hw
->wiphy
, bss
);
1367 void cw1200_join_timeout(struct work_struct
*work
)
1369 struct cw1200_common
*priv
=
1370 container_of(work
, struct cw1200_common
, join_timeout
.work
);
1371 pr_debug("[WSM] Join timed out.\n");
1373 if (queue_work(priv
->workqueue
, &priv
->unjoin_work
) <= 0)
1374 wsm_unlock_tx(priv
);
1377 static void cw1200_do_unjoin(struct cw1200_common
*priv
)
1379 struct wsm_reset reset
= {
1380 .reset_statistics
= true,
1383 cancel_delayed_work_sync(&priv
->join_timeout
);
1385 mutex_lock(&priv
->conf_mutex
);
1386 priv
->join_pending
= false;
1388 if (atomic_read(&priv
->scan
.in_progress
)) {
1389 if (priv
->delayed_unjoin
)
1390 wiphy_dbg(priv
->hw
->wiphy
, "Delayed unjoin is already scheduled.\n");
1392 priv
->delayed_unjoin
= true;
1396 priv
->delayed_link_loss
= false;
1398 if (!priv
->join_status
)
1401 if (priv
->join_status
== CW1200_JOIN_STATUS_AP
)
1404 cancel_work_sync(&priv
->update_filtering_work
);
1405 cancel_work_sync(&priv
->set_beacon_wakeup_period_work
);
1406 priv
->join_status
= CW1200_JOIN_STATUS_PASSIVE
;
1408 /* Unjoin is a reset. */
1410 wsm_keep_alive_period(priv
, 0);
1411 wsm_reset(priv
, &reset
);
1412 wsm_set_output_power(priv
, priv
->output_power
* 10);
1413 priv
->join_dtim_period
= 0;
1414 cw1200_setup_mac(priv
);
1415 cw1200_free_event_queue(priv
);
1416 cancel_work_sync(&priv
->event_handler
);
1417 cw1200_update_listening(priv
, priv
->listening
);
1418 cw1200_cqm_bssloss_sm(priv
, 0, 0, 0);
1420 /* Disable Block ACKs */
1421 wsm_set_block_ack_policy(priv
, 0, 0);
1423 priv
->disable_beacon_filter
= false;
1424 cw1200_update_filtering(priv
);
1425 memset(&priv
->association_mode
, 0,
1426 sizeof(priv
->association_mode
));
1427 memset(&priv
->bss_params
, 0, sizeof(priv
->bss_params
));
1428 priv
->setbssparams_done
= false;
1429 memset(&priv
->firmware_ps_mode
, 0,
1430 sizeof(priv
->firmware_ps_mode
));
1432 pr_debug("[STA] Unjoin completed.\n");
1435 mutex_unlock(&priv
->conf_mutex
);
1438 void cw1200_unjoin_work(struct work_struct
*work
)
1440 struct cw1200_common
*priv
=
1441 container_of(work
, struct cw1200_common
, unjoin_work
);
1443 cw1200_do_unjoin(priv
);
1445 /* Tell the stack we're dead */
1446 ieee80211_connection_loss(priv
->vif
);
1448 wsm_unlock_tx(priv
);
1451 int cw1200_enable_listening(struct cw1200_common
*priv
)
1453 struct wsm_start start
= {
1454 .mode
= WSM_START_MODE_P2P_DEV
,
1455 .band
= WSM_PHY_BAND_2_4G
,
1456 .beacon_interval
= 100,
1459 .basic_rate_set
= 0x0F,
1462 if (priv
->channel
) {
1463 start
.band
= priv
->channel
->band
== NL80211_BAND_5GHZ
?
1464 WSM_PHY_BAND_5G
: WSM_PHY_BAND_2_4G
;
1465 start
.channel_number
= priv
->channel
->hw_value
;
1467 start
.band
= WSM_PHY_BAND_2_4G
;
1468 start
.channel_number
= 1;
1471 return wsm_start(priv
, &start
);
1474 int cw1200_disable_listening(struct cw1200_common
*priv
)
1477 struct wsm_reset reset
= {
1478 .reset_statistics
= true,
1480 ret
= wsm_reset(priv
, &reset
);
1484 void cw1200_update_listening(struct cw1200_common
*priv
, bool enabled
)
1487 if (priv
->join_status
== CW1200_JOIN_STATUS_PASSIVE
) {
1488 if (!cw1200_enable_listening(priv
))
1489 priv
->join_status
= CW1200_JOIN_STATUS_MONITOR
;
1490 wsm_set_probe_responder(priv
, true);
1493 if (priv
->join_status
== CW1200_JOIN_STATUS_MONITOR
) {
1494 if (!cw1200_disable_listening(priv
))
1495 priv
->join_status
= CW1200_JOIN_STATUS_PASSIVE
;
1496 wsm_set_probe_responder(priv
, false);
1501 int cw1200_set_uapsd_param(struct cw1200_common
*priv
,
1502 const struct wsm_edca_params
*arg
)
1505 u16 uapsd_flags
= 0;
1507 /* Here's the mapping AC [queue, bit]
1508 * VO [0,3], VI [1, 2], BE [2, 1], BK [3, 0]
1511 if (arg
->uapsd_enable
[0])
1512 uapsd_flags
|= 1 << 3;
1514 if (arg
->uapsd_enable
[1])
1515 uapsd_flags
|= 1 << 2;
1517 if (arg
->uapsd_enable
[2])
1518 uapsd_flags
|= 1 << 1;
1520 if (arg
->uapsd_enable
[3])
1523 /* Currently pseudo U-APSD operation is not supported, so setting
1524 * MinAutoTriggerInterval, MaxAutoTriggerInterval and
1525 * AutoTriggerStep to 0
1528 priv
->uapsd_info
.uapsd_flags
= cpu_to_le16(uapsd_flags
);
1529 priv
->uapsd_info
.min_auto_trigger_interval
= 0;
1530 priv
->uapsd_info
.max_auto_trigger_interval
= 0;
1531 priv
->uapsd_info
.auto_trigger_step
= 0;
1533 ret
= wsm_set_uapsd_info(priv
, &priv
->uapsd_info
);
1537 /* ******************************************************************** */
1540 int cw1200_sta_add(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
,
1541 struct ieee80211_sta
*sta
)
1543 struct cw1200_common
*priv
= hw
->priv
;
1544 struct cw1200_sta_priv
*sta_priv
=
1545 (struct cw1200_sta_priv
*)&sta
->drv_priv
;
1546 struct cw1200_link_entry
*entry
;
1547 struct sk_buff
*skb
;
1549 if (priv
->mode
!= NL80211_IFTYPE_AP
)
1552 sta_priv
->link_id
= cw1200_find_link_id(priv
, sta
->addr
);
1553 if (WARN_ON(!sta_priv
->link_id
)) {
1554 wiphy_info(priv
->hw
->wiphy
,
1555 "[AP] No more link IDs available.\n");
1559 entry
= &priv
->link_id_db
[sta_priv
->link_id
- 1];
1560 spin_lock_bh(&priv
->ps_state_lock
);
1561 if ((sta
->uapsd_queues
& IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK
) ==
1562 IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK
)
1563 priv
->sta_asleep_mask
|= BIT(sta_priv
->link_id
);
1564 entry
->status
= CW1200_LINK_HARD
;
1565 while ((skb
= skb_dequeue(&entry
->rx_queue
)))
1566 ieee80211_rx_irqsafe(priv
->hw
, skb
);
1567 spin_unlock_bh(&priv
->ps_state_lock
);
1571 int cw1200_sta_remove(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
,
1572 struct ieee80211_sta
*sta
)
1574 struct cw1200_common
*priv
= hw
->priv
;
1575 struct cw1200_sta_priv
*sta_priv
=
1576 (struct cw1200_sta_priv
*)&sta
->drv_priv
;
1577 struct cw1200_link_entry
*entry
;
1579 if (priv
->mode
!= NL80211_IFTYPE_AP
|| !sta_priv
->link_id
)
1582 entry
= &priv
->link_id_db
[sta_priv
->link_id
- 1];
1583 spin_lock_bh(&priv
->ps_state_lock
);
1584 entry
->status
= CW1200_LINK_RESERVE
;
1585 entry
->timestamp
= jiffies
;
1586 wsm_lock_tx_async(priv
);
1587 if (queue_work(priv
->workqueue
, &priv
->link_id_work
) <= 0)
1588 wsm_unlock_tx(priv
);
1589 spin_unlock_bh(&priv
->ps_state_lock
);
1590 flush_workqueue(priv
->workqueue
);
1594 static void __cw1200_sta_notify(struct ieee80211_hw
*dev
,
1595 struct ieee80211_vif
*vif
,
1596 enum sta_notify_cmd notify_cmd
,
1599 struct cw1200_common
*priv
= dev
->priv
;
1602 /* Zero link id means "for all link IDs" */
1605 else if (WARN_ON_ONCE(notify_cmd
!= STA_NOTIFY_AWAKE
))
1608 bit
= priv
->link_id_map
;
1609 prev
= priv
->sta_asleep_mask
& bit
;
1611 switch (notify_cmd
) {
1612 case STA_NOTIFY_SLEEP
:
1614 if (priv
->buffered_multicasts
&&
1615 !priv
->sta_asleep_mask
)
1616 queue_work(priv
->workqueue
,
1617 &priv
->multicast_start_work
);
1618 priv
->sta_asleep_mask
|= bit
;
1621 case STA_NOTIFY_AWAKE
:
1623 priv
->sta_asleep_mask
&= ~bit
;
1624 priv
->pspoll_mask
&= ~bit
;
1625 if (priv
->tx_multicast
&& link_id
&&
1626 !priv
->sta_asleep_mask
)
1627 queue_work(priv
->workqueue
,
1628 &priv
->multicast_stop_work
);
1629 cw1200_bh_wakeup(priv
);
1635 void cw1200_sta_notify(struct ieee80211_hw
*dev
,
1636 struct ieee80211_vif
*vif
,
1637 enum sta_notify_cmd notify_cmd
,
1638 struct ieee80211_sta
*sta
)
1640 struct cw1200_common
*priv
= dev
->priv
;
1641 struct cw1200_sta_priv
*sta_priv
=
1642 (struct cw1200_sta_priv
*)&sta
->drv_priv
;
1644 spin_lock_bh(&priv
->ps_state_lock
);
1645 __cw1200_sta_notify(dev
, vif
, notify_cmd
, sta_priv
->link_id
);
1646 spin_unlock_bh(&priv
->ps_state_lock
);
1649 static void cw1200_ps_notify(struct cw1200_common
*priv
,
1650 int link_id
, bool ps
)
1652 if (link_id
> CW1200_MAX_STA_IN_AP_MODE
)
1655 pr_debug("%s for LinkId: %d. STAs asleep: %.8X\n",
1656 ps
? "Stop" : "Start",
1657 link_id
, priv
->sta_asleep_mask
);
1659 __cw1200_sta_notify(priv
->hw
, priv
->vif
,
1660 ps
? STA_NOTIFY_SLEEP
: STA_NOTIFY_AWAKE
, link_id
);
1663 static int cw1200_set_tim_impl(struct cw1200_common
*priv
, bool aid0_bit_set
)
1665 struct sk_buff
*skb
;
1666 struct wsm_update_ie update_ie
= {
1667 .what
= WSM_UPDATE_IE_BEACON
,
1670 u16 tim_offset
, tim_length
;
1672 pr_debug("[AP] mcast: %s.\n", aid0_bit_set
? "ena" : "dis");
1674 skb
= ieee80211_beacon_get_tim(priv
->hw
, priv
->vif
,
1675 &tim_offset
, &tim_length
, 0);
1677 if (!__cw1200_flush(priv
, true))
1678 wsm_unlock_tx(priv
);
1682 if (tim_offset
&& tim_length
>= 6) {
1683 /* Ignore DTIM count from mac80211:
1684 * firmware handles DTIM internally.
1686 skb
->data
[tim_offset
+ 2] = 0;
1688 /* Set/reset aid0 bit */
1690 skb
->data
[tim_offset
+ 4] |= 1;
1692 skb
->data
[tim_offset
+ 4] &= ~1;
1695 update_ie
.ies
= &skb
->data
[tim_offset
];
1696 update_ie
.length
= tim_length
;
1697 wsm_update_ie(priv
, &update_ie
);
1704 void cw1200_set_tim_work(struct work_struct
*work
)
1706 struct cw1200_common
*priv
=
1707 container_of(work
, struct cw1200_common
, set_tim_work
);
1708 (void)cw1200_set_tim_impl(priv
, priv
->aid0_bit_set
);
1711 int cw1200_set_tim(struct ieee80211_hw
*dev
, struct ieee80211_sta
*sta
,
1714 struct cw1200_common
*priv
= dev
->priv
;
1715 queue_work(priv
->workqueue
, &priv
->set_tim_work
);
1719 void cw1200_set_cts_work(struct work_struct
*work
)
1721 struct cw1200_common
*priv
=
1722 container_of(work
, struct cw1200_common
, set_cts_work
);
1724 u8 erp_ie
[3] = {WLAN_EID_ERP_INFO
, 0x1, 0};
1725 struct wsm_update_ie update_ie
= {
1726 .what
= WSM_UPDATE_IE_BEACON
,
1732 __le32 use_cts_prot
;
1733 mutex_lock(&priv
->conf_mutex
);
1734 erp_info
= priv
->erp_info
;
1735 mutex_unlock(&priv
->conf_mutex
);
1737 erp_info
& WLAN_ERP_USE_PROTECTION
?
1738 __cpu_to_le32(1) : 0;
1740 erp_ie
[ERP_INFO_BYTE_OFFSET
] = erp_info
;
1742 pr_debug("[STA] ERP information 0x%x\n", erp_info
);
1744 wsm_write_mib(priv
, WSM_MIB_ID_NON_ERP_PROTECTION
,
1745 &use_cts_prot
, sizeof(use_cts_prot
));
1746 wsm_update_ie(priv
, &update_ie
);
1751 static int cw1200_set_btcoexinfo(struct cw1200_common
*priv
)
1753 struct wsm_override_internal_txrate arg
;
1756 if (priv
->mode
== NL80211_IFTYPE_STATION
) {
1757 /* Plumb PSPOLL and NULL template */
1758 cw1200_upload_pspoll(priv
);
1759 cw1200_upload_null(priv
);
1760 cw1200_upload_qosnull(priv
);
1765 memset(&arg
, 0, sizeof(struct wsm_override_internal_txrate
));
1767 if (!priv
->vif
->p2p
) {
1769 if (priv
->bss_params
.operational_rate_set
& ~0xF) {
1770 pr_debug("[STA] STA has ERP rates\n");
1772 arg
.internalTxRate
= (__ffs(
1773 priv
->bss_params
.operational_rate_set
& ~0xF));
1775 pr_debug("[STA] STA has non ERP rates\n");
1777 arg
.internalTxRate
= (__ffs(le32_to_cpu(priv
->association_mode
.basic_rate_set
)));
1779 arg
.nonErpInternalTxRate
= (__ffs(le32_to_cpu(priv
->association_mode
.basic_rate_set
)));
1782 arg
.internalTxRate
= (__ffs(priv
->bss_params
.operational_rate_set
& ~0xF));
1783 arg
.nonErpInternalTxRate
= (__ffs(priv
->bss_params
.operational_rate_set
& ~0xF));
1786 pr_debug("[STA] BTCOEX_INFO MODE %d, internalTxRate : %x, nonErpInternalTxRate: %x\n",
1789 arg
.nonErpInternalTxRate
);
1791 ret
= wsm_write_mib(priv
, WSM_MIB_ID_OVERRIDE_INTERNAL_TX_RATE
,
1797 void cw1200_bss_info_changed(struct ieee80211_hw
*dev
,
1798 struct ieee80211_vif
*vif
,
1799 struct ieee80211_bss_conf
*info
,
1802 struct cw1200_common
*priv
= dev
->priv
;
1803 bool do_join
= false;
1805 mutex_lock(&priv
->conf_mutex
);
1807 pr_debug("BSS CHANGED: %llx\n", changed
);
1809 /* TODO: BSS_CHANGED_QOS */
1810 /* TODO: BSS_CHANGED_TXPOWER */
1812 if (changed
& BSS_CHANGED_ARP_FILTER
) {
1813 struct wsm_mib_arp_ipv4_filter filter
= {0};
1816 pr_debug("[STA] BSS_CHANGED_ARP_FILTER cnt: %d\n",
1817 vif
->cfg
.arp_addr_cnt
);
1819 /* Currently only one IP address is supported by firmware.
1820 * In case of more IPs arp filtering will be disabled.
1822 if (vif
->cfg
.arp_addr_cnt
> 0 &&
1823 vif
->cfg
.arp_addr_cnt
<= WSM_MAX_ARP_IP_ADDRTABLE_ENTRIES
) {
1824 for (i
= 0; i
< vif
->cfg
.arp_addr_cnt
; i
++) {
1825 filter
.ipv4addrs
[i
] = vif
->cfg
.arp_addr_list
[i
];
1826 pr_debug("[STA] addr[%d]: 0x%X\n",
1827 i
, filter
.ipv4addrs
[i
]);
1829 filter
.enable
= __cpu_to_le32(1);
1832 pr_debug("[STA] arp ip filter enable: %d\n",
1833 __le32_to_cpu(filter
.enable
));
1835 wsm_set_arp_ipv4_filter(priv
, &filter
);
1839 (BSS_CHANGED_BEACON
|
1840 BSS_CHANGED_AP_PROBE_RESP
|
1843 BSS_CHANGED_IBSS
)) {
1844 pr_debug("BSS_CHANGED_BEACON\n");
1845 priv
->beacon_int
= info
->beacon_int
;
1846 cw1200_update_beaconing(priv
);
1847 cw1200_upload_beacon(priv
);
1850 if (changed
& BSS_CHANGED_BEACON_ENABLED
) {
1851 pr_debug("BSS_CHANGED_BEACON_ENABLED (%d)\n", info
->enable_beacon
);
1853 if (priv
->enable_beacon
!= info
->enable_beacon
) {
1854 cw1200_enable_beaconing(priv
, info
->enable_beacon
);
1855 priv
->enable_beacon
= info
->enable_beacon
;
1859 if (changed
& BSS_CHANGED_BEACON_INT
) {
1860 pr_debug("CHANGED_BEACON_INT\n");
1861 if (vif
->cfg
.ibss_joined
)
1863 else if (priv
->join_status
== CW1200_JOIN_STATUS_AP
)
1864 cw1200_update_beaconing(priv
);
1867 /* assoc/disassoc, or maybe AID changed */
1868 if (changed
& BSS_CHANGED_ASSOC
) {
1870 priv
->wep_default_key_id
= -1;
1871 wsm_unlock_tx(priv
);
1874 if (changed
& BSS_CHANGED_BSSID
) {
1875 pr_debug("BSS_CHANGED_BSSID\n");
1880 (BSS_CHANGED_ASSOC
|
1883 BSS_CHANGED_BASIC_RATES
|
1885 pr_debug("BSS_CHANGED_ASSOC\n");
1886 if (vif
->cfg
.assoc
) {
1887 if (priv
->join_status
< CW1200_JOIN_STATUS_PRE_STA
) {
1888 ieee80211_connection_loss(vif
);
1889 mutex_unlock(&priv
->conf_mutex
);
1891 } else if (priv
->join_status
== CW1200_JOIN_STATUS_PRE_STA
) {
1892 priv
->join_status
= CW1200_JOIN_STATUS_STA
;
1898 if (vif
->cfg
.assoc
|| vif
->cfg
.ibss_joined
) {
1899 struct ieee80211_sta
*sta
= NULL
;
1902 if (info
->dtim_period
)
1903 priv
->join_dtim_period
= info
->dtim_period
;
1904 priv
->beacon_int
= info
->beacon_int
;
1908 if (info
->bssid
&& !vif
->cfg
.ibss_joined
)
1909 sta
= ieee80211_find_sta(vif
, info
->bssid
);
1911 priv
->ht_info
.ht_cap
= sta
->deflink
.ht_cap
;
1912 priv
->bss_params
.operational_rate_set
=
1913 cw1200_rate_mask_to_wsm(priv
,
1914 sta
->deflink
.supp_rates
[priv
->channel
->band
]);
1915 priv
->ht_info
.channel_type
= cfg80211_get_chandef_type(&dev
->conf
.chandef
);
1916 priv
->ht_info
.operation_mode
= info
->ht_operation_mode
;
1918 memset(&priv
->ht_info
, 0,
1919 sizeof(priv
->ht_info
));
1920 priv
->bss_params
.operational_rate_set
= -1;
1924 /* Non Greenfield stations present */
1925 if (priv
->ht_info
.operation_mode
&
1926 IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT
)
1927 htprot
|= cpu_to_le32(WSM_NON_GREENFIELD_STA_PRESENT
);
1929 /* Set HT protection method */
1930 htprot
|= cpu_to_le32((priv
->ht_info
.operation_mode
& IEEE80211_HT_OP_MODE_PROTECTION
) << 2);
1933 * STBC_param.dual_cts
1934 * STBC_param.LSIG_TXOP_FILL
1937 wsm_write_mib(priv
, WSM_MIB_ID_SET_HT_PROTECTION
,
1938 &htprot
, sizeof(htprot
));
1940 priv
->association_mode
.greenfield
=
1941 cw1200_ht_greenfield(&priv
->ht_info
);
1942 priv
->association_mode
.flags
=
1943 WSM_ASSOCIATION_MODE_SNOOP_ASSOC_FRAMES
|
1944 WSM_ASSOCIATION_MODE_USE_PREAMBLE_TYPE
|
1945 WSM_ASSOCIATION_MODE_USE_HT_MODE
|
1946 WSM_ASSOCIATION_MODE_USE_BASIC_RATE_SET
|
1947 WSM_ASSOCIATION_MODE_USE_MPDU_START_SPACING
;
1948 priv
->association_mode
.preamble
=
1949 info
->use_short_preamble
?
1950 WSM_JOIN_PREAMBLE_SHORT
:
1951 WSM_JOIN_PREAMBLE_LONG
;
1952 priv
->association_mode
.basic_rate_set
= __cpu_to_le32(
1953 cw1200_rate_mask_to_wsm(priv
,
1954 info
->basic_rates
));
1955 priv
->association_mode
.mpdu_start_spacing
=
1956 cw1200_ht_ampdu_density(&priv
->ht_info
);
1958 cw1200_cqm_bssloss_sm(priv
, 0, 0, 0);
1959 cancel_work_sync(&priv
->unjoin_work
);
1961 priv
->bss_params
.beacon_lost_count
= priv
->cqm_beacon_loss_count
;
1962 priv
->bss_params
.aid
= vif
->cfg
.aid
;
1964 if (priv
->join_dtim_period
< 1)
1965 priv
->join_dtim_period
= 1;
1967 pr_debug("[STA] DTIM %d, interval: %d\n",
1968 priv
->join_dtim_period
, priv
->beacon_int
);
1969 pr_debug("[STA] Preamble: %d, Greenfield: %d, Aid: %d, Rates: 0x%.8X, Basic: 0x%.8X\n",
1970 priv
->association_mode
.preamble
,
1971 priv
->association_mode
.greenfield
,
1972 priv
->bss_params
.aid
,
1973 priv
->bss_params
.operational_rate_set
,
1974 priv
->association_mode
.basic_rate_set
);
1975 wsm_set_association_mode(priv
, &priv
->association_mode
);
1977 if (!vif
->cfg
.ibss_joined
) {
1978 wsm_keep_alive_period(priv
, 30 /* sec */);
1979 wsm_set_bss_params(priv
, &priv
->bss_params
);
1980 priv
->setbssparams_done
= true;
1981 cw1200_set_beacon_wakeup_period_work(&priv
->set_beacon_wakeup_period_work
);
1982 cw1200_set_pm(priv
, &priv
->powersave_mode
);
1984 if (priv
->vif
->p2p
) {
1985 pr_debug("[STA] Setting p2p powersave configuration.\n");
1986 wsm_set_p2p_ps_modeinfo(priv
,
1987 &priv
->p2p_ps_modeinfo
);
1989 if (priv
->bt_present
)
1990 cw1200_set_btcoexinfo(priv
);
1992 memset(&priv
->association_mode
, 0,
1993 sizeof(priv
->association_mode
));
1994 memset(&priv
->bss_params
, 0, sizeof(priv
->bss_params
));
1998 /* ERP Protection */
1999 if (changed
& (BSS_CHANGED_ASSOC
|
2000 BSS_CHANGED_ERP_CTS_PROT
|
2001 BSS_CHANGED_ERP_PREAMBLE
)) {
2002 u32 prev_erp_info
= priv
->erp_info
;
2003 if (info
->use_cts_prot
)
2004 priv
->erp_info
|= WLAN_ERP_USE_PROTECTION
;
2005 else if (!(prev_erp_info
& WLAN_ERP_NON_ERP_PRESENT
))
2006 priv
->erp_info
&= ~WLAN_ERP_USE_PROTECTION
;
2008 if (info
->use_short_preamble
)
2009 priv
->erp_info
|= WLAN_ERP_BARKER_PREAMBLE
;
2011 priv
->erp_info
&= ~WLAN_ERP_BARKER_PREAMBLE
;
2013 pr_debug("[STA] ERP Protection: %x\n", priv
->erp_info
);
2015 if (prev_erp_info
!= priv
->erp_info
)
2016 queue_work(priv
->workqueue
, &priv
->set_cts_work
);
2020 if (changed
& (BSS_CHANGED_ASSOC
| BSS_CHANGED_ERP_SLOT
)) {
2021 __le32 slot_time
= info
->use_short_slot
?
2022 __cpu_to_le32(9) : __cpu_to_le32(20);
2023 pr_debug("[STA] Slot time: %d us.\n",
2024 __le32_to_cpu(slot_time
));
2025 wsm_write_mib(priv
, WSM_MIB_ID_DOT11_SLOT_TIME
,
2026 &slot_time
, sizeof(slot_time
));
2029 if (changed
& (BSS_CHANGED_ASSOC
| BSS_CHANGED_CQM
)) {
2030 struct wsm_rcpi_rssi_threshold threshold
= {
2031 .rollingAverageCount
= 8,
2033 pr_debug("[CQM] RSSI threshold subscribe: %d +- %d\n",
2034 info
->cqm_rssi_thold
, info
->cqm_rssi_hyst
);
2035 priv
->cqm_rssi_thold
= info
->cqm_rssi_thold
;
2036 priv
->cqm_rssi_hyst
= info
->cqm_rssi_hyst
;
2038 if (info
->cqm_rssi_thold
|| info
->cqm_rssi_hyst
) {
2039 /* RSSI subscription enabled */
2040 /* TODO: It's not a correct way of setting threshold.
2041 * Upper and lower must be set equal here and adjusted
2042 * in callback. However current implementation is much
2043 * more relaible and stable.
2046 /* RSSI: signed Q8.0, RCPI: unsigned Q7.1
2047 * RSSI = RCPI / 2 - 110
2049 if (priv
->cqm_use_rssi
) {
2050 threshold
.upperThreshold
=
2051 info
->cqm_rssi_thold
+ info
->cqm_rssi_hyst
;
2052 threshold
.lowerThreshold
=
2053 info
->cqm_rssi_thold
;
2054 threshold
.rssiRcpiMode
|= WSM_RCPI_RSSI_USE_RSSI
;
2056 threshold
.upperThreshold
= (info
->cqm_rssi_thold
+ info
->cqm_rssi_hyst
+ 110) * 2;
2057 threshold
.lowerThreshold
= (info
->cqm_rssi_thold
+ 110) * 2;
2059 threshold
.rssiRcpiMode
|= WSM_RCPI_RSSI_THRESHOLD_ENABLE
;
2061 /* There is a bug in FW, see sta.c. We have to enable
2062 * dummy subscription to get correct RSSI values.
2064 threshold
.rssiRcpiMode
|=
2065 WSM_RCPI_RSSI_THRESHOLD_ENABLE
|
2066 WSM_RCPI_RSSI_DONT_USE_UPPER
|
2067 WSM_RCPI_RSSI_DONT_USE_LOWER
;
2068 if (priv
->cqm_use_rssi
)
2069 threshold
.rssiRcpiMode
|= WSM_RCPI_RSSI_USE_RSSI
;
2071 wsm_set_rcpi_rssi_threshold(priv
, &threshold
);
2073 mutex_unlock(&priv
->conf_mutex
);
2077 cw1200_do_join(priv
); /* Will unlock it for us */
2081 void cw1200_multicast_start_work(struct work_struct
*work
)
2083 struct cw1200_common
*priv
=
2084 container_of(work
, struct cw1200_common
, multicast_start_work
);
2085 long tmo
= priv
->join_dtim_period
*
2086 (priv
->beacon_int
+ 20) * HZ
/ 1024;
2088 cancel_work_sync(&priv
->multicast_stop_work
);
2090 if (!priv
->aid0_bit_set
) {
2092 cw1200_set_tim_impl(priv
, true);
2093 priv
->aid0_bit_set
= true;
2094 mod_timer(&priv
->mcast_timeout
, jiffies
+ tmo
);
2095 wsm_unlock_tx(priv
);
2099 void cw1200_multicast_stop_work(struct work_struct
*work
)
2101 struct cw1200_common
*priv
=
2102 container_of(work
, struct cw1200_common
, multicast_stop_work
);
2104 if (priv
->aid0_bit_set
) {
2105 del_timer_sync(&priv
->mcast_timeout
);
2107 priv
->aid0_bit_set
= false;
2108 cw1200_set_tim_impl(priv
, false);
2109 wsm_unlock_tx(priv
);
2113 void cw1200_mcast_timeout(struct timer_list
*t
)
2115 struct cw1200_common
*priv
= from_timer(priv
, t
, mcast_timeout
);
2117 wiphy_warn(priv
->hw
->wiphy
,
2118 "Multicast delivery timeout.\n");
2119 spin_lock_bh(&priv
->ps_state_lock
);
2120 priv
->tx_multicast
= priv
->aid0_bit_set
&&
2121 priv
->buffered_multicasts
;
2122 if (priv
->tx_multicast
)
2123 cw1200_bh_wakeup(priv
);
2124 spin_unlock_bh(&priv
->ps_state_lock
);
2127 int cw1200_ampdu_action(struct ieee80211_hw
*hw
,
2128 struct ieee80211_vif
*vif
,
2129 struct ieee80211_ampdu_params
*params
)
2131 /* Aggregation is implemented fully in firmware,
2132 * including block ack negotiation. Do not allow
2133 * mac80211 stack to do anything: it interferes with
2137 /* Note that we still need this function stubbed. */
2141 /* ******************************************************************** */
2143 void cw1200_suspend_resume(struct cw1200_common
*priv
,
2144 struct wsm_suspend_resume
*arg
)
2146 pr_debug("[AP] %s: %s\n",
2147 arg
->stop
? "stop" : "start",
2148 arg
->multicast
? "broadcast" : "unicast");
2150 if (arg
->multicast
) {
2151 bool cancel_tmo
= false;
2152 spin_lock_bh(&priv
->ps_state_lock
);
2154 priv
->tx_multicast
= false;
2156 /* Firmware sends this indication every DTIM if there
2157 * is a STA in powersave connected. There is no reason
2158 * to suspend, following wakeup will consume much more
2159 * power than it could be saved.
2161 cw1200_pm_stay_awake(&priv
->pm_state
,
2162 priv
->join_dtim_period
*
2163 (priv
->beacon_int
+ 20) * HZ
/ 1024);
2164 priv
->tx_multicast
= (priv
->aid0_bit_set
&&
2165 priv
->buffered_multicasts
);
2166 if (priv
->tx_multicast
) {
2168 cw1200_bh_wakeup(priv
);
2171 spin_unlock_bh(&priv
->ps_state_lock
);
2173 del_timer_sync(&priv
->mcast_timeout
);
2175 spin_lock_bh(&priv
->ps_state_lock
);
2176 cw1200_ps_notify(priv
, arg
->link_id
, arg
->stop
);
2177 spin_unlock_bh(&priv
->ps_state_lock
);
2179 cw1200_bh_wakeup(priv
);
2184 /* ******************************************************************** */
2187 static int cw1200_upload_beacon(struct cw1200_common
*priv
)
2190 struct ieee80211_mgmt
*mgmt
;
2191 struct wsm_template_frame frame
= {
2192 .frame_type
= WSM_FRAME_TYPE_BEACON
,
2198 if (priv
->mode
== NL80211_IFTYPE_STATION
||
2199 priv
->mode
== NL80211_IFTYPE_MONITOR
||
2200 priv
->mode
== NL80211_IFTYPE_UNSPECIFIED
)
2204 frame
.rate
= WSM_TRANSMIT_RATE_6
;
2206 frame
.skb
= ieee80211_beacon_get_tim(priv
->hw
, priv
->vif
,
2207 &tim_offset
, &tim_len
, 0);
2211 ret
= wsm_set_template_frame(priv
, &frame
);
2216 /* TODO: Distill probe resp; remove TIM
2217 * and any other beacon-specific IEs
2219 mgmt
= (void *)frame
.skb
->data
;
2220 mgmt
->frame_control
=
2221 __cpu_to_le16(IEEE80211_FTYPE_MGMT
|
2222 IEEE80211_STYPE_PROBE_RESP
);
2224 frame
.frame_type
= WSM_FRAME_TYPE_PROBE_RESPONSE
;
2225 if (priv
->vif
->p2p
) {
2226 ret
= wsm_set_probe_responder(priv
, true);
2228 ret
= wsm_set_template_frame(priv
, &frame
);
2229 wsm_set_probe_responder(priv
, false);
2233 dev_kfree_skb(frame
.skb
);
2238 static int cw1200_upload_pspoll(struct cw1200_common
*priv
)
2241 struct wsm_template_frame frame
= {
2242 .frame_type
= WSM_FRAME_TYPE_PS_POLL
,
2247 frame
.skb
= ieee80211_pspoll_get(priv
->hw
, priv
->vif
);
2251 ret
= wsm_set_template_frame(priv
, &frame
);
2253 dev_kfree_skb(frame
.skb
);
2258 static int cw1200_upload_null(struct cw1200_common
*priv
)
2261 struct wsm_template_frame frame
= {
2262 .frame_type
= WSM_FRAME_TYPE_NULL
,
2266 frame
.skb
= ieee80211_nullfunc_get(priv
->hw
, priv
->vif
,-1, false);
2270 ret
= wsm_set_template_frame(priv
, &frame
);
2272 dev_kfree_skb(frame
.skb
);
2277 static int cw1200_upload_qosnull(struct cw1200_common
*priv
)
2279 /* TODO: This needs to be implemented
2281 struct wsm_template_frame frame = {
2282 .frame_type = WSM_FRAME_TYPE_QOS_NULL,
2286 frame.skb = ieee80211_qosnullfunc_get(priv->hw, priv->vif);
2290 ret = wsm_set_template_frame(priv, &frame);
2292 dev_kfree_skb(frame.skb);
2298 static int cw1200_enable_beaconing(struct cw1200_common
*priv
,
2301 struct wsm_beacon_transmit transmit
= {
2302 .enable_beaconing
= enable
,
2305 return wsm_beacon_transmit(priv
, &transmit
);
2308 static int cw1200_start_ap(struct cw1200_common
*priv
)
2311 struct ieee80211_bss_conf
*conf
= &priv
->vif
->bss_conf
;
2312 struct wsm_start start
= {
2313 .mode
= priv
->vif
->p2p
?
2314 WSM_START_MODE_P2P_GO
: WSM_START_MODE_AP
,
2315 .band
= (priv
->channel
->band
== NL80211_BAND_5GHZ
) ?
2316 WSM_PHY_BAND_5G
: WSM_PHY_BAND_2_4G
,
2317 .channel_number
= priv
->channel
->hw_value
,
2318 .beacon_interval
= conf
->beacon_int
,
2319 .dtim_period
= conf
->dtim_period
,
2320 .preamble
= conf
->use_short_preamble
?
2321 WSM_JOIN_PREAMBLE_SHORT
:
2322 WSM_JOIN_PREAMBLE_LONG
,
2324 .basic_rate_set
= cw1200_rate_mask_to_wsm(priv
,
2327 struct wsm_operational_mode mode
= {
2328 .power_mode
= cw1200_power_mode
,
2329 .disable_more_flag_usage
= true,
2332 memset(start
.ssid
, 0, sizeof(start
.ssid
));
2333 if (!conf
->hidden_ssid
) {
2334 start
.ssid_len
= priv
->vif
->cfg
.ssid_len
;
2335 memcpy(start
.ssid
, priv
->vif
->cfg
.ssid
, start
.ssid_len
);
2338 priv
->beacon_int
= conf
->beacon_int
;
2339 priv
->join_dtim_period
= conf
->dtim_period
;
2341 memset(&priv
->link_id_db
, 0, sizeof(priv
->link_id_db
));
2343 pr_debug("[AP] ch: %d(%d), bcn: %d(%d), brt: 0x%.8X, ssid: %.*s.\n",
2344 start
.channel_number
, start
.band
,
2345 start
.beacon_interval
, start
.dtim_period
,
2346 start
.basic_rate_set
,
2347 start
.ssid_len
, start
.ssid
);
2348 ret
= wsm_start(priv
, &start
);
2350 ret
= cw1200_upload_keys(priv
);
2351 if (!ret
&& priv
->vif
->p2p
) {
2352 pr_debug("[AP] Setting p2p powersave configuration.\n");
2353 wsm_set_p2p_ps_modeinfo(priv
, &priv
->p2p_ps_modeinfo
);
2356 wsm_set_block_ack_policy(priv
, 0, 0);
2357 priv
->join_status
= CW1200_JOIN_STATUS_AP
;
2358 cw1200_update_filtering(priv
);
2360 wsm_set_operational_mode(priv
, &mode
);
2364 static int cw1200_update_beaconing(struct cw1200_common
*priv
)
2366 struct ieee80211_bss_conf
*conf
= &priv
->vif
->bss_conf
;
2367 struct wsm_reset reset
= {
2369 .reset_statistics
= true,
2372 if (priv
->mode
== NL80211_IFTYPE_AP
) {
2373 /* TODO: check if changed channel, band */
2374 if (priv
->join_status
!= CW1200_JOIN_STATUS_AP
||
2375 priv
->beacon_int
!= conf
->beacon_int
) {
2376 pr_debug("ap restarting\n");
2378 if (priv
->join_status
!= CW1200_JOIN_STATUS_PASSIVE
)
2379 wsm_reset(priv
, &reset
);
2380 priv
->join_status
= CW1200_JOIN_STATUS_PASSIVE
;
2381 cw1200_start_ap(priv
);
2382 wsm_unlock_tx(priv
);
2384 pr_debug("ap started join_status: %d\n",