blob: 8b9fb660519bfdffffec32b8bb328c1b358f033a [file] [log] [blame]
Kalle Valo5e3dd152013-06-12 20:52:10 +03001/*
2 * Copyright (c) 2005-2011 Atheros Communications Inc.
3 * Copyright (c) 2011-2013 Qualcomm Atheros, Inc.
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#include "mac.h"
19
20#include <net/mac80211.h>
21#include <linux/etherdevice.h>
22
Michal Kazior8cd13ca2013-07-16 09:38:54 +020023#include "hif.h"
Kalle Valo5e3dd152013-06-12 20:52:10 +030024#include "core.h"
25#include "debug.h"
26#include "wmi.h"
27#include "htt.h"
28#include "txrx.h"
29
30/**********/
31/* Crypto */
32/**********/
33
34static int ath10k_send_key(struct ath10k_vif *arvif,
35 struct ieee80211_key_conf *key,
36 enum set_key_cmd cmd,
37 const u8 *macaddr)
38{
39 struct wmi_vdev_install_key_arg arg = {
40 .vdev_id = arvif->vdev_id,
41 .key_idx = key->keyidx,
42 .key_len = key->keylen,
43 .key_data = key->key,
44 .macaddr = macaddr,
45 };
46
Michal Kazior548db542013-07-05 16:15:15 +030047 lockdep_assert_held(&arvif->ar->conf_mutex);
48
Kalle Valo5e3dd152013-06-12 20:52:10 +030049 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
50 arg.key_flags = WMI_KEY_PAIRWISE;
51 else
52 arg.key_flags = WMI_KEY_GROUP;
53
54 switch (key->cipher) {
55 case WLAN_CIPHER_SUITE_CCMP:
56 arg.key_cipher = WMI_CIPHER_AES_CCM;
57 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX;
58 break;
59 case WLAN_CIPHER_SUITE_TKIP:
Kalle Valo5e3dd152013-06-12 20:52:10 +030060 arg.key_cipher = WMI_CIPHER_TKIP;
61 arg.key_txmic_len = 8;
62 arg.key_rxmic_len = 8;
63 break;
64 case WLAN_CIPHER_SUITE_WEP40:
65 case WLAN_CIPHER_SUITE_WEP104:
66 arg.key_cipher = WMI_CIPHER_WEP;
67 /* AP/IBSS mode requires self-key to be groupwise
68 * Otherwise pairwise key must be set */
69 if (memcmp(macaddr, arvif->vif->addr, ETH_ALEN))
70 arg.key_flags = WMI_KEY_PAIRWISE;
71 break;
72 default:
73 ath10k_warn("cipher %d is not supported\n", key->cipher);
74 return -EOPNOTSUPP;
75 }
76
77 if (cmd == DISABLE_KEY) {
78 arg.key_cipher = WMI_CIPHER_NONE;
79 arg.key_data = NULL;
80 }
81
82 return ath10k_wmi_vdev_install_key(arvif->ar, &arg);
83}
84
85static int ath10k_install_key(struct ath10k_vif *arvif,
86 struct ieee80211_key_conf *key,
87 enum set_key_cmd cmd,
88 const u8 *macaddr)
89{
90 struct ath10k *ar = arvif->ar;
91 int ret;
92
Michal Kazior548db542013-07-05 16:15:15 +030093 lockdep_assert_held(&ar->conf_mutex);
94
Kalle Valo5e3dd152013-06-12 20:52:10 +030095 INIT_COMPLETION(ar->install_key_done);
96
97 ret = ath10k_send_key(arvif, key, cmd, macaddr);
98 if (ret)
99 return ret;
100
101 ret = wait_for_completion_timeout(&ar->install_key_done, 3*HZ);
102 if (ret == 0)
103 return -ETIMEDOUT;
104
105 return 0;
106}
107
108static int ath10k_install_peer_wep_keys(struct ath10k_vif *arvif,
109 const u8 *addr)
110{
111 struct ath10k *ar = arvif->ar;
112 struct ath10k_peer *peer;
113 int ret;
114 int i;
115
116 lockdep_assert_held(&ar->conf_mutex);
117
118 spin_lock_bh(&ar->data_lock);
119 peer = ath10k_peer_find(ar, arvif->vdev_id, addr);
120 spin_unlock_bh(&ar->data_lock);
121
122 if (!peer)
123 return -ENOENT;
124
125 for (i = 0; i < ARRAY_SIZE(arvif->wep_keys); i++) {
126 if (arvif->wep_keys[i] == NULL)
127 continue;
128
129 ret = ath10k_install_key(arvif, arvif->wep_keys[i], SET_KEY,
130 addr);
131 if (ret)
132 return ret;
133
134 peer->keys[i] = arvif->wep_keys[i];
135 }
136
137 return 0;
138}
139
140static int ath10k_clear_peer_keys(struct ath10k_vif *arvif,
141 const u8 *addr)
142{
143 struct ath10k *ar = arvif->ar;
144 struct ath10k_peer *peer;
145 int first_errno = 0;
146 int ret;
147 int i;
148
149 lockdep_assert_held(&ar->conf_mutex);
150
151 spin_lock_bh(&ar->data_lock);
152 peer = ath10k_peer_find(ar, arvif->vdev_id, addr);
153 spin_unlock_bh(&ar->data_lock);
154
155 if (!peer)
156 return -ENOENT;
157
158 for (i = 0; i < ARRAY_SIZE(peer->keys); i++) {
159 if (peer->keys[i] == NULL)
160 continue;
161
162 ret = ath10k_install_key(arvif, peer->keys[i],
163 DISABLE_KEY, addr);
164 if (ret && first_errno == 0)
165 first_errno = ret;
166
167 if (ret)
168 ath10k_warn("could not remove peer wep key %d (%d)\n",
169 i, ret);
170
171 peer->keys[i] = NULL;
172 }
173
174 return first_errno;
175}
176
177static int ath10k_clear_vdev_key(struct ath10k_vif *arvif,
178 struct ieee80211_key_conf *key)
179{
180 struct ath10k *ar = arvif->ar;
181 struct ath10k_peer *peer;
182 u8 addr[ETH_ALEN];
183 int first_errno = 0;
184 int ret;
185 int i;
186
187 lockdep_assert_held(&ar->conf_mutex);
188
189 for (;;) {
190 /* since ath10k_install_key we can't hold data_lock all the
191 * time, so we try to remove the keys incrementally */
192 spin_lock_bh(&ar->data_lock);
193 i = 0;
194 list_for_each_entry(peer, &ar->peers, list) {
195 for (i = 0; i < ARRAY_SIZE(peer->keys); i++) {
196 if (peer->keys[i] == key) {
197 memcpy(addr, peer->addr, ETH_ALEN);
198 peer->keys[i] = NULL;
199 break;
200 }
201 }
202
203 if (i < ARRAY_SIZE(peer->keys))
204 break;
205 }
206 spin_unlock_bh(&ar->data_lock);
207
208 if (i == ARRAY_SIZE(peer->keys))
209 break;
210
211 ret = ath10k_install_key(arvif, key, DISABLE_KEY, addr);
212 if (ret && first_errno == 0)
213 first_errno = ret;
214
215 if (ret)
216 ath10k_warn("could not remove key for %pM\n", addr);
217 }
218
219 return first_errno;
220}
221
222
223/*********************/
224/* General utilities */
225/*********************/
226
227static inline enum wmi_phy_mode
228chan_to_phymode(const struct cfg80211_chan_def *chandef)
229{
230 enum wmi_phy_mode phymode = MODE_UNKNOWN;
231
232 switch (chandef->chan->band) {
233 case IEEE80211_BAND_2GHZ:
234 switch (chandef->width) {
235 case NL80211_CHAN_WIDTH_20_NOHT:
236 phymode = MODE_11G;
237 break;
238 case NL80211_CHAN_WIDTH_20:
239 phymode = MODE_11NG_HT20;
240 break;
241 case NL80211_CHAN_WIDTH_40:
242 phymode = MODE_11NG_HT40;
243 break;
John W. Linville0f817ed2013-06-27 13:50:09 -0400244 case NL80211_CHAN_WIDTH_5:
245 case NL80211_CHAN_WIDTH_10:
Kalle Valo5e3dd152013-06-12 20:52:10 +0300246 case NL80211_CHAN_WIDTH_80:
247 case NL80211_CHAN_WIDTH_80P80:
248 case NL80211_CHAN_WIDTH_160:
249 phymode = MODE_UNKNOWN;
250 break;
251 }
252 break;
253 case IEEE80211_BAND_5GHZ:
254 switch (chandef->width) {
255 case NL80211_CHAN_WIDTH_20_NOHT:
256 phymode = MODE_11A;
257 break;
258 case NL80211_CHAN_WIDTH_20:
259 phymode = MODE_11NA_HT20;
260 break;
261 case NL80211_CHAN_WIDTH_40:
262 phymode = MODE_11NA_HT40;
263 break;
264 case NL80211_CHAN_WIDTH_80:
265 phymode = MODE_11AC_VHT80;
266 break;
John W. Linville0f817ed2013-06-27 13:50:09 -0400267 case NL80211_CHAN_WIDTH_5:
268 case NL80211_CHAN_WIDTH_10:
Kalle Valo5e3dd152013-06-12 20:52:10 +0300269 case NL80211_CHAN_WIDTH_80P80:
270 case NL80211_CHAN_WIDTH_160:
271 phymode = MODE_UNKNOWN;
272 break;
273 }
274 break;
275 default:
276 break;
277 }
278
279 WARN_ON(phymode == MODE_UNKNOWN);
280 return phymode;
281}
282
283static u8 ath10k_parse_mpdudensity(u8 mpdudensity)
284{
285/*
286 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
287 * 0 for no restriction
288 * 1 for 1/4 us
289 * 2 for 1/2 us
290 * 3 for 1 us
291 * 4 for 2 us
292 * 5 for 4 us
293 * 6 for 8 us
294 * 7 for 16 us
295 */
296 switch (mpdudensity) {
297 case 0:
298 return 0;
299 case 1:
300 case 2:
301 case 3:
302 /* Our lower layer calculations limit our precision to
303 1 microsecond */
304 return 1;
305 case 4:
306 return 2;
307 case 5:
308 return 4;
309 case 6:
310 return 8;
311 case 7:
312 return 16;
313 default:
314 return 0;
315 }
316}
317
318static int ath10k_peer_create(struct ath10k *ar, u32 vdev_id, const u8 *addr)
319{
320 int ret;
321
322 lockdep_assert_held(&ar->conf_mutex);
323
324 ret = ath10k_wmi_peer_create(ar, vdev_id, addr);
325 if (ret)
326 return ret;
327
328 ret = ath10k_wait_for_peer_created(ar, vdev_id, addr);
329 if (ret)
330 return ret;
331
332 return 0;
333}
334
Michal Kazior424121c2013-07-22 14:13:31 +0200335static int ath10k_mac_set_rts(struct ath10k_vif *arvif, u32 value)
336{
337 if (value != 0xFFFFFFFF)
338 value = min_t(u32, arvif->ar->hw->wiphy->rts_threshold,
339 ATH10K_RTS_MAX);
340
341 return ath10k_wmi_vdev_set_param(arvif->ar, arvif->vdev_id,
342 WMI_VDEV_PARAM_RTS_THRESHOLD,
343 value);
344}
345
346static int ath10k_mac_set_frag(struct ath10k_vif *arvif, u32 value)
347{
348 if (value != 0xFFFFFFFF)
349 value = clamp_t(u32, arvif->ar->hw->wiphy->frag_threshold,
350 ATH10K_FRAGMT_THRESHOLD_MIN,
351 ATH10K_FRAGMT_THRESHOLD_MAX);
352
353 return ath10k_wmi_vdev_set_param(arvif->ar, arvif->vdev_id,
354 WMI_VDEV_PARAM_FRAGMENTATION_THRESHOLD,
355 value);
356}
357
Kalle Valo5e3dd152013-06-12 20:52:10 +0300358static int ath10k_peer_delete(struct ath10k *ar, u32 vdev_id, const u8 *addr)
359{
360 int ret;
361
362 lockdep_assert_held(&ar->conf_mutex);
363
364 ret = ath10k_wmi_peer_delete(ar, vdev_id, addr);
365 if (ret)
366 return ret;
367
368 ret = ath10k_wait_for_peer_deleted(ar, vdev_id, addr);
369 if (ret)
370 return ret;
371
372 return 0;
373}
374
375static void ath10k_peer_cleanup(struct ath10k *ar, u32 vdev_id)
376{
377 struct ath10k_peer *peer, *tmp;
378
379 lockdep_assert_held(&ar->conf_mutex);
380
381 spin_lock_bh(&ar->data_lock);
382 list_for_each_entry_safe(peer, tmp, &ar->peers, list) {
383 if (peer->vdev_id != vdev_id)
384 continue;
385
386 ath10k_warn("removing stale peer %pM from vdev_id %d\n",
387 peer->addr, vdev_id);
388
389 list_del(&peer->list);
390 kfree(peer);
391 }
392 spin_unlock_bh(&ar->data_lock);
393}
394
Michal Kaziora96d7742013-07-16 09:38:56 +0200395static void ath10k_peer_cleanup_all(struct ath10k *ar)
396{
397 struct ath10k_peer *peer, *tmp;
398
399 lockdep_assert_held(&ar->conf_mutex);
400
401 spin_lock_bh(&ar->data_lock);
402 list_for_each_entry_safe(peer, tmp, &ar->peers, list) {
403 list_del(&peer->list);
404 kfree(peer);
405 }
406 spin_unlock_bh(&ar->data_lock);
407}
408
Kalle Valo5e3dd152013-06-12 20:52:10 +0300409/************************/
410/* Interface management */
411/************************/
412
413static inline int ath10k_vdev_setup_sync(struct ath10k *ar)
414{
415 int ret;
416
Michal Kazior548db542013-07-05 16:15:15 +0300417 lockdep_assert_held(&ar->conf_mutex);
418
Kalle Valo5e3dd152013-06-12 20:52:10 +0300419 ret = wait_for_completion_timeout(&ar->vdev_setup_done,
420 ATH10K_VDEV_SETUP_TIMEOUT_HZ);
421 if (ret == 0)
422 return -ETIMEDOUT;
423
424 return 0;
425}
426
427static int ath10k_vdev_start(struct ath10k_vif *arvif)
428{
429 struct ath10k *ar = arvif->ar;
430 struct ieee80211_conf *conf = &ar->hw->conf;
431 struct ieee80211_channel *channel = conf->chandef.chan;
432 struct wmi_vdev_start_request_arg arg = {};
433 int ret = 0;
434
435 lockdep_assert_held(&ar->conf_mutex);
436
437 INIT_COMPLETION(ar->vdev_setup_done);
438
439 arg.vdev_id = arvif->vdev_id;
440 arg.dtim_period = arvif->dtim_period;
441 arg.bcn_intval = arvif->beacon_interval;
442
443 arg.channel.freq = channel->center_freq;
444
445 arg.channel.band_center_freq1 = conf->chandef.center_freq1;
446
447 arg.channel.mode = chan_to_phymode(&conf->chandef);
448
449 arg.channel.min_power = channel->max_power * 3;
450 arg.channel.max_power = channel->max_power * 4;
451 arg.channel.max_reg_power = channel->max_reg_power * 4;
452 arg.channel.max_antenna_gain = channel->max_antenna_gain;
453
454 if (arvif->vdev_type == WMI_VDEV_TYPE_AP) {
455 arg.ssid = arvif->u.ap.ssid;
456 arg.ssid_len = arvif->u.ap.ssid_len;
457 arg.hidden_ssid = arvif->u.ap.hidden_ssid;
458 } else if (arvif->vdev_type == WMI_VDEV_TYPE_IBSS) {
459 arg.ssid = arvif->vif->bss_conf.ssid;
460 arg.ssid_len = arvif->vif->bss_conf.ssid_len;
461 }
462
Kalle Valo38a1d472013-09-08 17:56:14 +0300463 ath10k_dbg(ATH10K_DBG_MAC,
464 "mac vdev %d start center_freq %d phymode %s\n",
465 arg.vdev_id, arg.channel.freq,
466 ath10k_wmi_phymode_str(arg.channel.mode));
467
Kalle Valo5e3dd152013-06-12 20:52:10 +0300468 ret = ath10k_wmi_vdev_start(ar, &arg);
469 if (ret) {
470 ath10k_warn("WMI vdev start failed: ret %d\n", ret);
471 return ret;
472 }
473
474 ret = ath10k_vdev_setup_sync(ar);
475 if (ret) {
476 ath10k_warn("vdev setup failed %d\n", ret);
477 return ret;
478 }
479
480 return ret;
481}
482
483static int ath10k_vdev_stop(struct ath10k_vif *arvif)
484{
485 struct ath10k *ar = arvif->ar;
486 int ret;
487
488 lockdep_assert_held(&ar->conf_mutex);
489
490 INIT_COMPLETION(ar->vdev_setup_done);
491
492 ret = ath10k_wmi_vdev_stop(ar, arvif->vdev_id);
493 if (ret) {
494 ath10k_warn("WMI vdev stop failed: ret %d\n", ret);
495 return ret;
496 }
497
498 ret = ath10k_vdev_setup_sync(ar);
499 if (ret) {
500 ath10k_warn("vdev setup failed %d\n", ret);
501 return ret;
502 }
503
504 return ret;
505}
506
507static int ath10k_monitor_start(struct ath10k *ar, int vdev_id)
508{
509 struct ieee80211_channel *channel = ar->hw->conf.chandef.chan;
510 struct wmi_vdev_start_request_arg arg = {};
Kalle Valo5e3dd152013-06-12 20:52:10 +0300511 int ret = 0;
512
513 lockdep_assert_held(&ar->conf_mutex);
514
Kalle Valo5e3dd152013-06-12 20:52:10 +0300515 arg.vdev_id = vdev_id;
516 arg.channel.freq = channel->center_freq;
517 arg.channel.band_center_freq1 = ar->hw->conf.chandef.center_freq1;
518
519 /* TODO setup this dynamically, what in case we
520 don't have any vifs? */
521 arg.channel.mode = chan_to_phymode(&ar->hw->conf.chandef);
522
523 arg.channel.min_power = channel->max_power * 3;
524 arg.channel.max_power = channel->max_power * 4;
525 arg.channel.max_reg_power = channel->max_reg_power * 4;
526 arg.channel.max_antenna_gain = channel->max_antenna_gain;
527
528 ret = ath10k_wmi_vdev_start(ar, &arg);
529 if (ret) {
530 ath10k_warn("Monitor vdev start failed: ret %d\n", ret);
531 return ret;
532 }
533
534 ret = ath10k_vdev_setup_sync(ar);
535 if (ret) {
536 ath10k_warn("Monitor vdev setup failed %d\n", ret);
537 return ret;
538 }
539
540 ret = ath10k_wmi_vdev_up(ar, vdev_id, 0, ar->mac_addr);
541 if (ret) {
542 ath10k_warn("Monitor vdev up failed: %d\n", ret);
543 goto vdev_stop;
544 }
545
546 ar->monitor_vdev_id = vdev_id;
547 ar->monitor_enabled = true;
548
549 return 0;
550
551vdev_stop:
552 ret = ath10k_wmi_vdev_stop(ar, ar->monitor_vdev_id);
553 if (ret)
554 ath10k_warn("Monitor vdev stop failed: %d\n", ret);
555
556 return ret;
557}
558
559static int ath10k_monitor_stop(struct ath10k *ar)
560{
561 int ret = 0;
562
563 lockdep_assert_held(&ar->conf_mutex);
564
565 /* For some reasons, ath10k_wmi_vdev_down() here couse
566 * often ath10k_wmi_vdev_stop() to fail. Next we could
567 * not run monitor vdev and driver reload
568 * required. Don't see such problems we skip
569 * ath10k_wmi_vdev_down() here.
570 */
571
572 ret = ath10k_wmi_vdev_stop(ar, ar->monitor_vdev_id);
573 if (ret)
574 ath10k_warn("Monitor vdev stop failed: %d\n", ret);
575
576 ret = ath10k_vdev_setup_sync(ar);
577 if (ret)
578 ath10k_warn("Monitor_down sync failed: %d\n", ret);
579
580 ar->monitor_enabled = false;
581 return ret;
582}
583
584static int ath10k_monitor_create(struct ath10k *ar)
585{
586 int bit, ret = 0;
587
588 lockdep_assert_held(&ar->conf_mutex);
589
590 if (ar->monitor_present) {
591 ath10k_warn("Monitor mode already enabled\n");
592 return 0;
593 }
594
595 bit = ffs(ar->free_vdev_map);
596 if (bit == 0) {
597 ath10k_warn("No free VDEV slots\n");
598 return -ENOMEM;
599 }
600
601 ar->monitor_vdev_id = bit - 1;
602 ar->free_vdev_map &= ~(1 << ar->monitor_vdev_id);
603
604 ret = ath10k_wmi_vdev_create(ar, ar->monitor_vdev_id,
605 WMI_VDEV_TYPE_MONITOR,
606 0, ar->mac_addr);
607 if (ret) {
608 ath10k_warn("WMI vdev monitor create failed: ret %d\n", ret);
609 goto vdev_fail;
610 }
611
Kalle Valo60c3daa2013-09-08 17:56:07 +0300612 ath10k_dbg(ATH10K_DBG_MAC, "mac monitor vdev %d created\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +0300613 ar->monitor_vdev_id);
614
615 ar->monitor_present = true;
616 return 0;
617
618vdev_fail:
619 /*
620 * Restore the ID to the global map.
621 */
622 ar->free_vdev_map |= 1 << (ar->monitor_vdev_id);
623 return ret;
624}
625
626static int ath10k_monitor_destroy(struct ath10k *ar)
627{
628 int ret = 0;
629
630 lockdep_assert_held(&ar->conf_mutex);
631
632 if (!ar->monitor_present)
633 return 0;
634
635 ret = ath10k_wmi_vdev_delete(ar, ar->monitor_vdev_id);
636 if (ret) {
637 ath10k_warn("WMI vdev monitor delete failed: %d\n", ret);
638 return ret;
639 }
640
641 ar->free_vdev_map |= 1 << (ar->monitor_vdev_id);
642 ar->monitor_present = false;
643
Kalle Valo60c3daa2013-09-08 17:56:07 +0300644 ath10k_dbg(ATH10K_DBG_MAC, "mac monitor vdev %d deleted\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +0300645 ar->monitor_vdev_id);
646 return ret;
647}
648
649static void ath10k_control_beaconing(struct ath10k_vif *arvif,
650 struct ieee80211_bss_conf *info)
651{
652 int ret = 0;
653
Michal Kazior548db542013-07-05 16:15:15 +0300654 lockdep_assert_held(&arvif->ar->conf_mutex);
655
Kalle Valo5e3dd152013-06-12 20:52:10 +0300656 if (!info->enable_beacon) {
657 ath10k_vdev_stop(arvif);
658 return;
659 }
660
661 arvif->tx_seq_no = 0x1000;
662
663 ret = ath10k_vdev_start(arvif);
664 if (ret)
665 return;
666
667 ret = ath10k_wmi_vdev_up(arvif->ar, arvif->vdev_id, 0, info->bssid);
668 if (ret) {
669 ath10k_warn("Failed to bring up VDEV: %d\n",
670 arvif->vdev_id);
671 return;
672 }
Kalle Valo60c3daa2013-09-08 17:56:07 +0300673 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d up\n", arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300674}
675
676static void ath10k_control_ibss(struct ath10k_vif *arvif,
677 struct ieee80211_bss_conf *info,
678 const u8 self_peer[ETH_ALEN])
679{
680 int ret = 0;
681
Michal Kazior548db542013-07-05 16:15:15 +0300682 lockdep_assert_held(&arvif->ar->conf_mutex);
683
Kalle Valo5e3dd152013-06-12 20:52:10 +0300684 if (!info->ibss_joined) {
685 ret = ath10k_peer_delete(arvif->ar, arvif->vdev_id, self_peer);
686 if (ret)
687 ath10k_warn("Failed to delete IBSS self peer:%pM for VDEV:%d ret:%d\n",
688 self_peer, arvif->vdev_id, ret);
689
690 if (is_zero_ether_addr(arvif->u.ibss.bssid))
691 return;
692
693 ret = ath10k_peer_delete(arvif->ar, arvif->vdev_id,
694 arvif->u.ibss.bssid);
695 if (ret) {
696 ath10k_warn("Failed to delete IBSS BSSID peer:%pM for VDEV:%d ret:%d\n",
697 arvif->u.ibss.bssid, arvif->vdev_id, ret);
698 return;
699 }
700
701 memset(arvif->u.ibss.bssid, 0, ETH_ALEN);
702
703 return;
704 }
705
706 ret = ath10k_peer_create(arvif->ar, arvif->vdev_id, self_peer);
707 if (ret) {
708 ath10k_warn("Failed to create IBSS self peer:%pM for VDEV:%d ret:%d\n",
709 self_peer, arvif->vdev_id, ret);
710 return;
711 }
712
713 ret = ath10k_wmi_vdev_set_param(arvif->ar, arvif->vdev_id,
714 WMI_VDEV_PARAM_ATIM_WINDOW,
715 ATH10K_DEFAULT_ATIM);
716 if (ret)
717 ath10k_warn("Failed to set IBSS ATIM for VDEV:%d ret:%d\n",
718 arvif->vdev_id, ret);
719}
720
721/*
722 * Review this when mac80211 gains per-interface powersave support.
723 */
724static void ath10k_ps_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
725{
726 struct ath10k_generic_iter *ar_iter = data;
727 struct ieee80211_conf *conf = &ar_iter->ar->hw->conf;
728 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
729 enum wmi_sta_powersave_param param;
730 enum wmi_sta_ps_mode psmode;
731 int ret;
732
Michal Kazior548db542013-07-05 16:15:15 +0300733 lockdep_assert_held(&arvif->ar->conf_mutex);
734
Kalle Valo5e3dd152013-06-12 20:52:10 +0300735 if (vif->type != NL80211_IFTYPE_STATION)
736 return;
737
738 if (conf->flags & IEEE80211_CONF_PS) {
739 psmode = WMI_STA_PS_MODE_ENABLED;
740 param = WMI_STA_PS_PARAM_INACTIVITY_TIME;
741
742 ret = ath10k_wmi_set_sta_ps_param(ar_iter->ar,
743 arvif->vdev_id,
744 param,
745 conf->dynamic_ps_timeout);
746 if (ret) {
747 ath10k_warn("Failed to set inactivity time for VDEV: %d\n",
748 arvif->vdev_id);
749 return;
750 }
751
752 ar_iter->ret = ret;
753 } else {
754 psmode = WMI_STA_PS_MODE_DISABLED;
755 }
756
Kalle Valo60c3daa2013-09-08 17:56:07 +0300757 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d psmode %s\n",
758 arvif->vdev_id, psmode ? "enable" : "disable");
759
Kalle Valo5e3dd152013-06-12 20:52:10 +0300760 ar_iter->ret = ath10k_wmi_set_psmode(ar_iter->ar, arvif->vdev_id,
761 psmode);
762 if (ar_iter->ret)
763 ath10k_warn("Failed to set PS Mode: %d for VDEV: %d\n",
764 psmode, arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300765}
766
767/**********************/
768/* Station management */
769/**********************/
770
771static void ath10k_peer_assoc_h_basic(struct ath10k *ar,
772 struct ath10k_vif *arvif,
773 struct ieee80211_sta *sta,
774 struct ieee80211_bss_conf *bss_conf,
775 struct wmi_peer_assoc_complete_arg *arg)
776{
Michal Kazior548db542013-07-05 16:15:15 +0300777 lockdep_assert_held(&ar->conf_mutex);
778
Kalle Valo5e3dd152013-06-12 20:52:10 +0300779 memcpy(arg->addr, sta->addr, ETH_ALEN);
780 arg->vdev_id = arvif->vdev_id;
781 arg->peer_aid = sta->aid;
782 arg->peer_flags |= WMI_PEER_AUTH;
783
784 if (arvif->vdev_type == WMI_VDEV_TYPE_STA)
785 /*
786 * Seems FW have problems with Power Save in STA
787 * mode when we setup this parameter to high (eg. 5).
788 * Often we see that FW don't send NULL (with clean P flags)
789 * frame even there is info about buffered frames in beacons.
790 * Sometimes we have to wait more than 10 seconds before FW
791 * will wakeup. Often sending one ping from AP to our device
792 * just fail (more than 50%).
793 *
794 * Seems setting this FW parameter to 1 couse FW
795 * will check every beacon and will wakup immediately
796 * after detection buffered data.
797 */
798 arg->peer_listen_intval = 1;
799 else
800 arg->peer_listen_intval = ar->hw->conf.listen_interval;
801
802 arg->peer_num_spatial_streams = 1;
803
804 /*
805 * The assoc capabilities are available only in managed mode.
806 */
807 if (arvif->vdev_type == WMI_VDEV_TYPE_STA && bss_conf)
808 arg->peer_caps = bss_conf->assoc_capability;
809}
810
811static void ath10k_peer_assoc_h_crypto(struct ath10k *ar,
812 struct ath10k_vif *arvif,
813 struct wmi_peer_assoc_complete_arg *arg)
814{
815 struct ieee80211_vif *vif = arvif->vif;
816 struct ieee80211_bss_conf *info = &vif->bss_conf;
817 struct cfg80211_bss *bss;
818 const u8 *rsnie = NULL;
819 const u8 *wpaie = NULL;
820
Michal Kazior548db542013-07-05 16:15:15 +0300821 lockdep_assert_held(&ar->conf_mutex);
822
Kalle Valo5e3dd152013-06-12 20:52:10 +0300823 bss = cfg80211_get_bss(ar->hw->wiphy, ar->hw->conf.chandef.chan,
824 info->bssid, NULL, 0, 0, 0);
825 if (bss) {
826 const struct cfg80211_bss_ies *ies;
827
828 rcu_read_lock();
829 rsnie = ieee80211_bss_get_ie(bss, WLAN_EID_RSN);
830
831 ies = rcu_dereference(bss->ies);
832
833 wpaie = cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT,
834 WLAN_OUI_TYPE_MICROSOFT_WPA,
835 ies->data,
836 ies->len);
837 rcu_read_unlock();
838 cfg80211_put_bss(ar->hw->wiphy, bss);
839 }
840
841 /* FIXME: base on RSN IE/WPA IE is a correct idea? */
842 if (rsnie || wpaie) {
843 ath10k_dbg(ATH10K_DBG_WMI, "%s: rsn ie found\n", __func__);
844 arg->peer_flags |= WMI_PEER_NEED_PTK_4_WAY;
845 }
846
847 if (wpaie) {
848 ath10k_dbg(ATH10K_DBG_WMI, "%s: wpa ie found\n", __func__);
849 arg->peer_flags |= WMI_PEER_NEED_GTK_2_WAY;
850 }
851}
852
853static void ath10k_peer_assoc_h_rates(struct ath10k *ar,
854 struct ieee80211_sta *sta,
855 struct wmi_peer_assoc_complete_arg *arg)
856{
857 struct wmi_rate_set_arg *rateset = &arg->peer_legacy_rates;
858 const struct ieee80211_supported_band *sband;
859 const struct ieee80211_rate *rates;
860 u32 ratemask;
861 int i;
862
Michal Kazior548db542013-07-05 16:15:15 +0300863 lockdep_assert_held(&ar->conf_mutex);
864
Kalle Valo5e3dd152013-06-12 20:52:10 +0300865 sband = ar->hw->wiphy->bands[ar->hw->conf.chandef.chan->band];
866 ratemask = sta->supp_rates[ar->hw->conf.chandef.chan->band];
867 rates = sband->bitrates;
868
869 rateset->num_rates = 0;
870
871 for (i = 0; i < 32; i++, ratemask >>= 1, rates++) {
872 if (!(ratemask & 1))
873 continue;
874
875 rateset->rates[rateset->num_rates] = rates->hw_value;
876 rateset->num_rates++;
877 }
878}
879
880static void ath10k_peer_assoc_h_ht(struct ath10k *ar,
881 struct ieee80211_sta *sta,
882 struct wmi_peer_assoc_complete_arg *arg)
883{
884 const struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
885 int smps;
886 int i, n;
887
Michal Kazior548db542013-07-05 16:15:15 +0300888 lockdep_assert_held(&ar->conf_mutex);
889
Kalle Valo5e3dd152013-06-12 20:52:10 +0300890 if (!ht_cap->ht_supported)
891 return;
892
893 arg->peer_flags |= WMI_PEER_HT;
894 arg->peer_max_mpdu = (1 << (IEEE80211_HT_MAX_AMPDU_FACTOR +
895 ht_cap->ampdu_factor)) - 1;
896
897 arg->peer_mpdu_density =
898 ath10k_parse_mpdudensity(ht_cap->ampdu_density);
899
900 arg->peer_ht_caps = ht_cap->cap;
901 arg->peer_rate_caps |= WMI_RC_HT_FLAG;
902
903 if (ht_cap->cap & IEEE80211_HT_CAP_LDPC_CODING)
904 arg->peer_flags |= WMI_PEER_LDPC;
905
906 if (sta->bandwidth >= IEEE80211_STA_RX_BW_40) {
907 arg->peer_flags |= WMI_PEER_40MHZ;
908 arg->peer_rate_caps |= WMI_RC_CW40_FLAG;
909 }
910
911 if (ht_cap->cap & IEEE80211_HT_CAP_SGI_20)
912 arg->peer_rate_caps |= WMI_RC_SGI_FLAG;
913
914 if (ht_cap->cap & IEEE80211_HT_CAP_SGI_40)
915 arg->peer_rate_caps |= WMI_RC_SGI_FLAG;
916
917 if (ht_cap->cap & IEEE80211_HT_CAP_TX_STBC) {
918 arg->peer_rate_caps |= WMI_RC_TX_STBC_FLAG;
919 arg->peer_flags |= WMI_PEER_STBC;
920 }
921
922 if (ht_cap->cap & IEEE80211_HT_CAP_RX_STBC) {
923 u32 stbc;
924 stbc = ht_cap->cap & IEEE80211_HT_CAP_RX_STBC;
925 stbc = stbc >> IEEE80211_HT_CAP_RX_STBC_SHIFT;
926 stbc = stbc << WMI_RC_RX_STBC_FLAG_S;
927 arg->peer_rate_caps |= stbc;
928 arg->peer_flags |= WMI_PEER_STBC;
929 }
930
931 smps = ht_cap->cap & IEEE80211_HT_CAP_SM_PS;
932 smps >>= IEEE80211_HT_CAP_SM_PS_SHIFT;
933
934 if (smps == WLAN_HT_CAP_SM_PS_STATIC) {
935 arg->peer_flags |= WMI_PEER_SPATIAL_MUX;
936 arg->peer_flags |= WMI_PEER_STATIC_MIMOPS;
937 } else if (smps == WLAN_HT_CAP_SM_PS_DYNAMIC) {
938 arg->peer_flags |= WMI_PEER_SPATIAL_MUX;
939 arg->peer_flags |= WMI_PEER_DYN_MIMOPS;
940 }
941
942 if (ht_cap->mcs.rx_mask[1] && ht_cap->mcs.rx_mask[2])
943 arg->peer_rate_caps |= WMI_RC_TS_FLAG;
944 else if (ht_cap->mcs.rx_mask[1])
945 arg->peer_rate_caps |= WMI_RC_DS_FLAG;
946
947 for (i = 0, n = 0; i < IEEE80211_HT_MCS_MASK_LEN*8; i++)
948 if (ht_cap->mcs.rx_mask[i/8] & (1 << i%8))
949 arg->peer_ht_rates.rates[n++] = i;
950
951 arg->peer_ht_rates.num_rates = n;
952 arg->peer_num_spatial_streams = max((n+7) / 8, 1);
953
Kalle Valo60c3daa2013-09-08 17:56:07 +0300954 ath10k_dbg(ATH10K_DBG_MAC, "mac ht peer %pM mcs cnt %d nss %d\n",
955 arg->addr,
Kalle Valo5e3dd152013-06-12 20:52:10 +0300956 arg->peer_ht_rates.num_rates,
957 arg->peer_num_spatial_streams);
958}
959
960static void ath10k_peer_assoc_h_qos_ap(struct ath10k *ar,
961 struct ath10k_vif *arvif,
962 struct ieee80211_sta *sta,
963 struct ieee80211_bss_conf *bss_conf,
964 struct wmi_peer_assoc_complete_arg *arg)
965{
966 u32 uapsd = 0;
967 u32 max_sp = 0;
968
Michal Kazior548db542013-07-05 16:15:15 +0300969 lockdep_assert_held(&ar->conf_mutex);
970
Kalle Valo5e3dd152013-06-12 20:52:10 +0300971 if (sta->wme)
972 arg->peer_flags |= WMI_PEER_QOS;
973
974 if (sta->wme && sta->uapsd_queues) {
Kalle Valo60c3daa2013-09-08 17:56:07 +0300975 ath10k_dbg(ATH10K_DBG_MAC, "mac uapsd_queues 0x%x max_sp %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +0300976 sta->uapsd_queues, sta->max_sp);
977
978 arg->peer_flags |= WMI_PEER_APSD;
Janusz Dziedzicc69029b2013-08-07 12:10:49 +0200979 arg->peer_rate_caps |= WMI_RC_UAPSD_FLAG;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300980
981 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
982 uapsd |= WMI_AP_PS_UAPSD_AC3_DELIVERY_EN |
983 WMI_AP_PS_UAPSD_AC3_TRIGGER_EN;
984 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
985 uapsd |= WMI_AP_PS_UAPSD_AC2_DELIVERY_EN |
986 WMI_AP_PS_UAPSD_AC2_TRIGGER_EN;
987 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
988 uapsd |= WMI_AP_PS_UAPSD_AC1_DELIVERY_EN |
989 WMI_AP_PS_UAPSD_AC1_TRIGGER_EN;
990 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
991 uapsd |= WMI_AP_PS_UAPSD_AC0_DELIVERY_EN |
992 WMI_AP_PS_UAPSD_AC0_TRIGGER_EN;
993
994
995 if (sta->max_sp < MAX_WMI_AP_PS_PEER_PARAM_MAX_SP)
996 max_sp = sta->max_sp;
997
998 ath10k_wmi_set_ap_ps_param(ar, arvif->vdev_id,
999 sta->addr,
1000 WMI_AP_PS_PEER_PARAM_UAPSD,
1001 uapsd);
1002
1003 ath10k_wmi_set_ap_ps_param(ar, arvif->vdev_id,
1004 sta->addr,
1005 WMI_AP_PS_PEER_PARAM_MAX_SP,
1006 max_sp);
1007
1008 /* TODO setup this based on STA listen interval and
1009 beacon interval. Currently we don't know
1010 sta->listen_interval - mac80211 patch required.
1011 Currently use 10 seconds */
1012 ath10k_wmi_set_ap_ps_param(ar, arvif->vdev_id,
1013 sta->addr,
1014 WMI_AP_PS_PEER_PARAM_AGEOUT_TIME,
1015 10);
1016 }
1017}
1018
1019static void ath10k_peer_assoc_h_qos_sta(struct ath10k *ar,
1020 struct ath10k_vif *arvif,
1021 struct ieee80211_sta *sta,
1022 struct ieee80211_bss_conf *bss_conf,
1023 struct wmi_peer_assoc_complete_arg *arg)
1024{
1025 if (bss_conf->qos)
1026 arg->peer_flags |= WMI_PEER_QOS;
1027}
1028
1029static void ath10k_peer_assoc_h_vht(struct ath10k *ar,
1030 struct ieee80211_sta *sta,
1031 struct wmi_peer_assoc_complete_arg *arg)
1032{
1033 const struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap;
1034
1035 if (!vht_cap->vht_supported)
1036 return;
1037
1038 arg->peer_flags |= WMI_PEER_VHT;
1039
1040 arg->peer_vht_caps = vht_cap->cap;
1041
1042 if (sta->bandwidth == IEEE80211_STA_RX_BW_80)
1043 arg->peer_flags |= WMI_PEER_80MHZ;
1044
1045 arg->peer_vht_rates.rx_max_rate =
1046 __le16_to_cpu(vht_cap->vht_mcs.rx_highest);
1047 arg->peer_vht_rates.rx_mcs_set =
1048 __le16_to_cpu(vht_cap->vht_mcs.rx_mcs_map);
1049 arg->peer_vht_rates.tx_max_rate =
1050 __le16_to_cpu(vht_cap->vht_mcs.tx_highest);
1051 arg->peer_vht_rates.tx_mcs_set =
1052 __le16_to_cpu(vht_cap->vht_mcs.tx_mcs_map);
1053
Kalle Valo60c3daa2013-09-08 17:56:07 +03001054 ath10k_dbg(ATH10K_DBG_MAC, "mac vht peer %pM max_mpdu %d flags 0x%x\n",
1055 sta->addr, arg->peer_max_mpdu, arg->peer_flags);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001056}
1057
1058static void ath10k_peer_assoc_h_qos(struct ath10k *ar,
1059 struct ath10k_vif *arvif,
1060 struct ieee80211_sta *sta,
1061 struct ieee80211_bss_conf *bss_conf,
1062 struct wmi_peer_assoc_complete_arg *arg)
1063{
1064 switch (arvif->vdev_type) {
1065 case WMI_VDEV_TYPE_AP:
1066 ath10k_peer_assoc_h_qos_ap(ar, arvif, sta, bss_conf, arg);
1067 break;
1068 case WMI_VDEV_TYPE_STA:
1069 ath10k_peer_assoc_h_qos_sta(ar, arvif, sta, bss_conf, arg);
1070 break;
1071 default:
1072 break;
1073 }
1074}
1075
1076static void ath10k_peer_assoc_h_phymode(struct ath10k *ar,
1077 struct ath10k_vif *arvif,
1078 struct ieee80211_sta *sta,
1079 struct wmi_peer_assoc_complete_arg *arg)
1080{
1081 enum wmi_phy_mode phymode = MODE_UNKNOWN;
1082
Kalle Valo5e3dd152013-06-12 20:52:10 +03001083 switch (ar->hw->conf.chandef.chan->band) {
1084 case IEEE80211_BAND_2GHZ:
1085 if (sta->ht_cap.ht_supported) {
1086 if (sta->bandwidth == IEEE80211_STA_RX_BW_40)
1087 phymode = MODE_11NG_HT40;
1088 else
1089 phymode = MODE_11NG_HT20;
1090 } else {
1091 phymode = MODE_11G;
1092 }
1093
1094 break;
1095 case IEEE80211_BAND_5GHZ:
Sujith Manoharan7cc45e92013-09-08 18:19:55 +03001096 /*
1097 * Check VHT first.
1098 */
1099 if (sta->vht_cap.vht_supported) {
1100 if (sta->bandwidth == IEEE80211_STA_RX_BW_80)
1101 phymode = MODE_11AC_VHT80;
1102 else if (sta->bandwidth == IEEE80211_STA_RX_BW_40)
1103 phymode = MODE_11AC_VHT40;
1104 else if (sta->bandwidth == IEEE80211_STA_RX_BW_20)
1105 phymode = MODE_11AC_VHT20;
1106 } else if (sta->ht_cap.ht_supported) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001107 if (sta->bandwidth == IEEE80211_STA_RX_BW_40)
1108 phymode = MODE_11NA_HT40;
1109 else
1110 phymode = MODE_11NA_HT20;
1111 } else {
1112 phymode = MODE_11A;
1113 }
1114
1115 break;
1116 default:
1117 break;
1118 }
1119
Kalle Valo38a1d472013-09-08 17:56:14 +03001120 ath10k_dbg(ATH10K_DBG_MAC, "mac peer %pM phymode %s\n",
1121 sta->addr, ath10k_wmi_phymode_str(phymode));
Kalle Valo60c3daa2013-09-08 17:56:07 +03001122
Kalle Valo5e3dd152013-06-12 20:52:10 +03001123 arg->peer_phymode = phymode;
1124 WARN_ON(phymode == MODE_UNKNOWN);
1125}
1126
1127static int ath10k_peer_assoc(struct ath10k *ar,
1128 struct ath10k_vif *arvif,
1129 struct ieee80211_sta *sta,
1130 struct ieee80211_bss_conf *bss_conf)
1131{
1132 struct wmi_peer_assoc_complete_arg arg;
1133
Michal Kazior548db542013-07-05 16:15:15 +03001134 lockdep_assert_held(&ar->conf_mutex);
1135
Kalle Valo5e3dd152013-06-12 20:52:10 +03001136 memset(&arg, 0, sizeof(struct wmi_peer_assoc_complete_arg));
1137
1138 ath10k_peer_assoc_h_basic(ar, arvif, sta, bss_conf, &arg);
1139 ath10k_peer_assoc_h_crypto(ar, arvif, &arg);
1140 ath10k_peer_assoc_h_rates(ar, sta, &arg);
1141 ath10k_peer_assoc_h_ht(ar, sta, &arg);
1142 ath10k_peer_assoc_h_vht(ar, sta, &arg);
1143 ath10k_peer_assoc_h_qos(ar, arvif, sta, bss_conf, &arg);
1144 ath10k_peer_assoc_h_phymode(ar, arvif, sta, &arg);
1145
1146 return ath10k_wmi_peer_assoc(ar, &arg);
1147}
1148
1149/* can be called only in mac80211 callbacks due to `key_count` usage */
1150static void ath10k_bss_assoc(struct ieee80211_hw *hw,
1151 struct ieee80211_vif *vif,
1152 struct ieee80211_bss_conf *bss_conf)
1153{
1154 struct ath10k *ar = hw->priv;
1155 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
1156 struct ieee80211_sta *ap_sta;
1157 int ret;
1158
Michal Kazior548db542013-07-05 16:15:15 +03001159 lockdep_assert_held(&ar->conf_mutex);
1160
Kalle Valo5e3dd152013-06-12 20:52:10 +03001161 rcu_read_lock();
1162
1163 ap_sta = ieee80211_find_sta(vif, bss_conf->bssid);
1164 if (!ap_sta) {
1165 ath10k_warn("Failed to find station entry for %pM\n",
1166 bss_conf->bssid);
1167 rcu_read_unlock();
1168 return;
1169 }
1170
1171 ret = ath10k_peer_assoc(ar, arvif, ap_sta, bss_conf);
1172 if (ret) {
1173 ath10k_warn("Peer assoc failed for %pM\n", bss_conf->bssid);
1174 rcu_read_unlock();
1175 return;
1176 }
1177
1178 rcu_read_unlock();
1179
Kalle Valo60c3daa2013-09-08 17:56:07 +03001180 ath10k_dbg(ATH10K_DBG_MAC,
1181 "mac vdev %d up (associated) bssid %pM aid %d\n",
1182 arvif->vdev_id, bss_conf->bssid, bss_conf->aid);
1183
Kalle Valo5e3dd152013-06-12 20:52:10 +03001184 ret = ath10k_wmi_vdev_up(ar, arvif->vdev_id, bss_conf->aid,
1185 bss_conf->bssid);
1186 if (ret)
1187 ath10k_warn("VDEV: %d up failed: ret %d\n",
1188 arvif->vdev_id, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001189}
1190
1191/*
1192 * FIXME: flush TIDs
1193 */
1194static void ath10k_bss_disassoc(struct ieee80211_hw *hw,
1195 struct ieee80211_vif *vif)
1196{
1197 struct ath10k *ar = hw->priv;
1198 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
1199 int ret;
1200
Michal Kazior548db542013-07-05 16:15:15 +03001201 lockdep_assert_held(&ar->conf_mutex);
1202
Kalle Valo5e3dd152013-06-12 20:52:10 +03001203 /*
1204 * For some reason, calling VDEV-DOWN before VDEV-STOP
1205 * makes the FW to send frames via HTT after disassociation.
1206 * No idea why this happens, even though VDEV-DOWN is supposed
1207 * to be analogous to link down, so just stop the VDEV.
1208 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03001209 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d stop (disassociated\n",
1210 arvif->vdev_id);
1211
1212 /* FIXME: check return value */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001213 ret = ath10k_vdev_stop(arvif);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001214
1215 /*
1216 * If we don't call VDEV-DOWN after VDEV-STOP FW will remain active and
1217 * report beacons from previously associated network through HTT.
1218 * This in turn would spam mac80211 WARN_ON if we bring down all
1219 * interfaces as it expects there is no rx when no interface is
1220 * running.
1221 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03001222 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d down\n", arvif->vdev_id);
1223
1224 /* FIXME: why don't we print error if wmi call fails? */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001225 ret = ath10k_wmi_vdev_down(ar, arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001226
1227 ath10k_wmi_flush_tx(ar);
1228
1229 arvif->def_wep_key_index = 0;
1230}
1231
1232static int ath10k_station_assoc(struct ath10k *ar, struct ath10k_vif *arvif,
1233 struct ieee80211_sta *sta)
1234{
1235 int ret = 0;
1236
Michal Kazior548db542013-07-05 16:15:15 +03001237 lockdep_assert_held(&ar->conf_mutex);
1238
Kalle Valo5e3dd152013-06-12 20:52:10 +03001239 ret = ath10k_peer_assoc(ar, arvif, sta, NULL);
1240 if (ret) {
1241 ath10k_warn("WMI peer assoc failed for %pM\n", sta->addr);
1242 return ret;
1243 }
1244
1245 ret = ath10k_install_peer_wep_keys(arvif, sta->addr);
1246 if (ret) {
1247 ath10k_warn("could not install peer wep keys (%d)\n", ret);
1248 return ret;
1249 }
1250
1251 return ret;
1252}
1253
1254static int ath10k_station_disassoc(struct ath10k *ar, struct ath10k_vif *arvif,
1255 struct ieee80211_sta *sta)
1256{
1257 int ret = 0;
1258
Michal Kazior548db542013-07-05 16:15:15 +03001259 lockdep_assert_held(&ar->conf_mutex);
1260
Kalle Valo5e3dd152013-06-12 20:52:10 +03001261 ret = ath10k_clear_peer_keys(arvif, sta->addr);
1262 if (ret) {
1263 ath10k_warn("could not clear all peer wep keys (%d)\n", ret);
1264 return ret;
1265 }
1266
1267 return ret;
1268}
1269
1270/**************/
1271/* Regulatory */
1272/**************/
1273
1274static int ath10k_update_channel_list(struct ath10k *ar)
1275{
1276 struct ieee80211_hw *hw = ar->hw;
1277 struct ieee80211_supported_band **bands;
1278 enum ieee80211_band band;
1279 struct ieee80211_channel *channel;
1280 struct wmi_scan_chan_list_arg arg = {0};
1281 struct wmi_channel_arg *ch;
1282 bool passive;
1283 int len;
1284 int ret;
1285 int i;
1286
Michal Kazior548db542013-07-05 16:15:15 +03001287 lockdep_assert_held(&ar->conf_mutex);
1288
Kalle Valo5e3dd152013-06-12 20:52:10 +03001289 bands = hw->wiphy->bands;
1290 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1291 if (!bands[band])
1292 continue;
1293
1294 for (i = 0; i < bands[band]->n_channels; i++) {
1295 if (bands[band]->channels[i].flags &
1296 IEEE80211_CHAN_DISABLED)
1297 continue;
1298
1299 arg.n_channels++;
1300 }
1301 }
1302
1303 len = sizeof(struct wmi_channel_arg) * arg.n_channels;
1304 arg.channels = kzalloc(len, GFP_KERNEL);
1305 if (!arg.channels)
1306 return -ENOMEM;
1307
1308 ch = arg.channels;
1309 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1310 if (!bands[band])
1311 continue;
1312
1313 for (i = 0; i < bands[band]->n_channels; i++) {
1314 channel = &bands[band]->channels[i];
1315
1316 if (channel->flags & IEEE80211_CHAN_DISABLED)
1317 continue;
1318
1319 ch->allow_ht = true;
1320
1321 /* FIXME: when should we really allow VHT? */
1322 ch->allow_vht = true;
1323
1324 ch->allow_ibss =
1325 !(channel->flags & IEEE80211_CHAN_NO_IBSS);
1326
1327 ch->ht40plus =
1328 !(channel->flags & IEEE80211_CHAN_NO_HT40PLUS);
1329
1330 passive = channel->flags & IEEE80211_CHAN_PASSIVE_SCAN;
1331 ch->passive = passive;
1332
1333 ch->freq = channel->center_freq;
1334 ch->min_power = channel->max_power * 3;
1335 ch->max_power = channel->max_power * 4;
1336 ch->max_reg_power = channel->max_reg_power * 4;
1337 ch->max_antenna_gain = channel->max_antenna_gain;
1338 ch->reg_class_id = 0; /* FIXME */
1339
1340 /* FIXME: why use only legacy modes, why not any
1341 * HT/VHT modes? Would that even make any
1342 * difference? */
1343 if (channel->band == IEEE80211_BAND_2GHZ)
1344 ch->mode = MODE_11G;
1345 else
1346 ch->mode = MODE_11A;
1347
1348 if (WARN_ON_ONCE(ch->mode == MODE_UNKNOWN))
1349 continue;
1350
1351 ath10k_dbg(ATH10K_DBG_WMI,
Kalle Valo60c3daa2013-09-08 17:56:07 +03001352 "mac channel [%zd/%d] freq %d maxpower %d regpower %d antenna %d mode %d\n",
1353 ch - arg.channels, arg.n_channels,
Kalle Valo5e3dd152013-06-12 20:52:10 +03001354 ch->freq, ch->max_power, ch->max_reg_power,
1355 ch->max_antenna_gain, ch->mode);
1356
1357 ch++;
1358 }
1359 }
1360
1361 ret = ath10k_wmi_scan_chan_list(ar, &arg);
1362 kfree(arg.channels);
1363
1364 return ret;
1365}
1366
Michal Kaziorf7843d72013-07-16 09:38:52 +02001367static void ath10k_regd_update(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001368{
Kalle Valo5e3dd152013-06-12 20:52:10 +03001369 struct reg_dmn_pair_mapping *regpair;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001370 int ret;
1371
Michal Kaziorf7843d72013-07-16 09:38:52 +02001372 lockdep_assert_held(&ar->conf_mutex);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001373
1374 ret = ath10k_update_channel_list(ar);
1375 if (ret)
1376 ath10k_warn("could not update channel list (%d)\n", ret);
1377
1378 regpair = ar->ath_common.regulatory.regpair;
Michal Kaziorf7843d72013-07-16 09:38:52 +02001379
Kalle Valo5e3dd152013-06-12 20:52:10 +03001380 /* Target allows setting up per-band regdomain but ath_common provides
1381 * a combined one only */
1382 ret = ath10k_wmi_pdev_set_regdomain(ar,
1383 regpair->regDmnEnum,
1384 regpair->regDmnEnum, /* 2ghz */
1385 regpair->regDmnEnum, /* 5ghz */
1386 regpair->reg_2ghz_ctl,
1387 regpair->reg_5ghz_ctl);
1388 if (ret)
1389 ath10k_warn("could not set pdev regdomain (%d)\n", ret);
Michal Kaziorf7843d72013-07-16 09:38:52 +02001390}
Michal Kazior548db542013-07-05 16:15:15 +03001391
Michal Kaziorf7843d72013-07-16 09:38:52 +02001392static void ath10k_reg_notifier(struct wiphy *wiphy,
1393 struct regulatory_request *request)
1394{
1395 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
1396 struct ath10k *ar = hw->priv;
1397
1398 ath_reg_notifier_apply(wiphy, request, &ar->ath_common.regulatory);
1399
1400 mutex_lock(&ar->conf_mutex);
1401 if (ar->state == ATH10K_STATE_ON)
1402 ath10k_regd_update(ar);
Michal Kazior548db542013-07-05 16:15:15 +03001403 mutex_unlock(&ar->conf_mutex);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001404}
1405
1406/***************/
1407/* TX handlers */
1408/***************/
1409
1410/*
1411 * Frames sent to the FW have to be in "Native Wifi" format.
1412 * Strip the QoS field from the 802.11 header.
1413 */
1414static void ath10k_tx_h_qos_workaround(struct ieee80211_hw *hw,
1415 struct ieee80211_tx_control *control,
1416 struct sk_buff *skb)
1417{
1418 struct ieee80211_hdr *hdr = (void *)skb->data;
1419 u8 *qos_ctl;
1420
1421 if (!ieee80211_is_data_qos(hdr->frame_control))
1422 return;
1423
1424 qos_ctl = ieee80211_get_qos_ctl(hdr);
Michal Kaziorba0ccd72013-07-22 14:25:28 +02001425 memmove(skb->data + IEEE80211_QOS_CTL_LEN,
1426 skb->data, (void *)qos_ctl - (void *)skb->data);
1427 skb_pull(skb, IEEE80211_QOS_CTL_LEN);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001428}
1429
1430static void ath10k_tx_h_update_wep_key(struct sk_buff *skb)
1431{
1432 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1433 struct ieee80211_vif *vif = info->control.vif;
1434 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
1435 struct ath10k *ar = arvif->ar;
1436 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1437 struct ieee80211_key_conf *key = info->control.hw_key;
1438 int ret;
1439
Kalle Valo5e3dd152013-06-12 20:52:10 +03001440 if (!ieee80211_has_protected(hdr->frame_control))
1441 return;
1442
1443 if (!key)
1444 return;
1445
1446 if (key->cipher != WLAN_CIPHER_SUITE_WEP40 &&
1447 key->cipher != WLAN_CIPHER_SUITE_WEP104)
1448 return;
1449
1450 if (key->keyidx == arvif->def_wep_key_index)
1451 return;
1452
Kalle Valo60c3daa2013-09-08 17:56:07 +03001453 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d keyidx %d\n",
1454 arvif->vdev_id, key->keyidx);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001455
1456 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id,
1457 WMI_VDEV_PARAM_DEF_KEYID,
1458 key->keyidx);
1459 if (ret) {
1460 ath10k_warn("could not update wep keyidx (%d)\n", ret);
1461 return;
1462 }
1463
1464 arvif->def_wep_key_index = key->keyidx;
1465}
1466
1467static void ath10k_tx_h_add_p2p_noa_ie(struct ath10k *ar, struct sk_buff *skb)
1468{
1469 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1470 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1471 struct ieee80211_vif *vif = info->control.vif;
1472 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
1473
1474 /* This is case only for P2P_GO */
1475 if (arvif->vdev_type != WMI_VDEV_TYPE_AP ||
1476 arvif->vdev_subtype != WMI_VDEV_SUBTYPE_P2P_GO)
1477 return;
1478
1479 if (unlikely(ieee80211_is_probe_resp(hdr->frame_control))) {
1480 spin_lock_bh(&ar->data_lock);
1481 if (arvif->u.ap.noa_data)
1482 if (!pskb_expand_head(skb, 0, arvif->u.ap.noa_len,
1483 GFP_ATOMIC))
1484 memcpy(skb_put(skb, arvif->u.ap.noa_len),
1485 arvif->u.ap.noa_data,
1486 arvif->u.ap.noa_len);
1487 spin_unlock_bh(&ar->data_lock);
1488 }
1489}
1490
1491static void ath10k_tx_htt(struct ath10k *ar, struct sk_buff *skb)
1492{
1493 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1494 int ret;
1495
Michal Kazior961d4c32013-08-09 10:13:34 +02001496 if (ar->htt.target_version_major >= 3) {
1497 /* Since HTT 3.0 there is no separate mgmt tx command */
1498 ret = ath10k_htt_tx(&ar->htt, skb);
1499 goto exit;
1500 }
1501
Kalle Valo5e3dd152013-06-12 20:52:10 +03001502 if (ieee80211_is_mgmt(hdr->frame_control))
Michal Kazioredb82362013-07-05 16:15:14 +03001503 ret = ath10k_htt_mgmt_tx(&ar->htt, skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001504 else if (ieee80211_is_nullfunc(hdr->frame_control))
1505 /* FW does not report tx status properly for NullFunc frames
1506 * unless they are sent through mgmt tx path. mac80211 sends
1507 * those frames when it detects link/beacon loss and depends on
1508 * the tx status to be correct. */
Michal Kazioredb82362013-07-05 16:15:14 +03001509 ret = ath10k_htt_mgmt_tx(&ar->htt, skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001510 else
Michal Kazioredb82362013-07-05 16:15:14 +03001511 ret = ath10k_htt_tx(&ar->htt, skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001512
Michal Kazior961d4c32013-08-09 10:13:34 +02001513exit:
Kalle Valo5e3dd152013-06-12 20:52:10 +03001514 if (ret) {
1515 ath10k_warn("tx failed (%d). dropping packet.\n", ret);
1516 ieee80211_free_txskb(ar->hw, skb);
1517 }
1518}
1519
1520void ath10k_offchan_tx_purge(struct ath10k *ar)
1521{
1522 struct sk_buff *skb;
1523
1524 for (;;) {
1525 skb = skb_dequeue(&ar->offchan_tx_queue);
1526 if (!skb)
1527 break;
1528
1529 ieee80211_free_txskb(ar->hw, skb);
1530 }
1531}
1532
1533void ath10k_offchan_tx_work(struct work_struct *work)
1534{
1535 struct ath10k *ar = container_of(work, struct ath10k, offchan_tx_work);
1536 struct ath10k_peer *peer;
1537 struct ieee80211_hdr *hdr;
1538 struct sk_buff *skb;
1539 const u8 *peer_addr;
1540 int vdev_id;
1541 int ret;
1542
1543 /* FW requirement: We must create a peer before FW will send out
1544 * an offchannel frame. Otherwise the frame will be stuck and
1545 * never transmitted. We delete the peer upon tx completion.
1546 * It is unlikely that a peer for offchannel tx will already be
1547 * present. However it may be in some rare cases so account for that.
1548 * Otherwise we might remove a legitimate peer and break stuff. */
1549
1550 for (;;) {
1551 skb = skb_dequeue(&ar->offchan_tx_queue);
1552 if (!skb)
1553 break;
1554
1555 mutex_lock(&ar->conf_mutex);
1556
Kalle Valo60c3daa2013-09-08 17:56:07 +03001557 ath10k_dbg(ATH10K_DBG_MAC, "mac offchannel skb %p\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03001558 skb);
1559
1560 hdr = (struct ieee80211_hdr *)skb->data;
1561 peer_addr = ieee80211_get_DA(hdr);
1562 vdev_id = ATH10K_SKB_CB(skb)->htt.vdev_id;
1563
1564 spin_lock_bh(&ar->data_lock);
1565 peer = ath10k_peer_find(ar, vdev_id, peer_addr);
1566 spin_unlock_bh(&ar->data_lock);
1567
1568 if (peer)
Kalle Valo60c3daa2013-09-08 17:56:07 +03001569 /* FIXME: should this use ath10k_warn()? */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001570 ath10k_dbg(ATH10K_DBG_MAC, "peer %pM on vdev %d already present\n",
1571 peer_addr, vdev_id);
1572
1573 if (!peer) {
1574 ret = ath10k_peer_create(ar, vdev_id, peer_addr);
1575 if (ret)
1576 ath10k_warn("peer %pM on vdev %d not created (%d)\n",
1577 peer_addr, vdev_id, ret);
1578 }
1579
1580 spin_lock_bh(&ar->data_lock);
1581 INIT_COMPLETION(ar->offchan_tx_completed);
1582 ar->offchan_tx_skb = skb;
1583 spin_unlock_bh(&ar->data_lock);
1584
1585 ath10k_tx_htt(ar, skb);
1586
1587 ret = wait_for_completion_timeout(&ar->offchan_tx_completed,
1588 3 * HZ);
1589 if (ret <= 0)
1590 ath10k_warn("timed out waiting for offchannel skb %p\n",
1591 skb);
1592
1593 if (!peer) {
1594 ret = ath10k_peer_delete(ar, vdev_id, peer_addr);
1595 if (ret)
1596 ath10k_warn("peer %pM on vdev %d not deleted (%d)\n",
1597 peer_addr, vdev_id, ret);
1598 }
1599
1600 mutex_unlock(&ar->conf_mutex);
1601 }
1602}
1603
1604/************/
1605/* Scanning */
1606/************/
1607
1608/*
1609 * This gets called if we dont get a heart-beat during scan.
1610 * This may indicate the FW has hung and we need to abort the
1611 * scan manually to prevent cancel_hw_scan() from deadlocking
1612 */
1613void ath10k_reset_scan(unsigned long ptr)
1614{
1615 struct ath10k *ar = (struct ath10k *)ptr;
1616
1617 spin_lock_bh(&ar->data_lock);
1618 if (!ar->scan.in_progress) {
1619 spin_unlock_bh(&ar->data_lock);
1620 return;
1621 }
1622
1623 ath10k_warn("scan timeout. resetting. fw issue?\n");
1624
1625 if (ar->scan.is_roc)
1626 ieee80211_remain_on_channel_expired(ar->hw);
1627 else
1628 ieee80211_scan_completed(ar->hw, 1 /* aborted */);
1629
1630 ar->scan.in_progress = false;
1631 complete_all(&ar->scan.completed);
1632 spin_unlock_bh(&ar->data_lock);
1633}
1634
1635static int ath10k_abort_scan(struct ath10k *ar)
1636{
1637 struct wmi_stop_scan_arg arg = {
1638 .req_id = 1, /* FIXME */
1639 .req_type = WMI_SCAN_STOP_ONE,
1640 .u.scan_id = ATH10K_SCAN_ID,
1641 };
1642 int ret;
1643
1644 lockdep_assert_held(&ar->conf_mutex);
1645
1646 del_timer_sync(&ar->scan.timeout);
1647
1648 spin_lock_bh(&ar->data_lock);
1649 if (!ar->scan.in_progress) {
1650 spin_unlock_bh(&ar->data_lock);
1651 return 0;
1652 }
1653
1654 ar->scan.aborting = true;
1655 spin_unlock_bh(&ar->data_lock);
1656
1657 ret = ath10k_wmi_stop_scan(ar, &arg);
1658 if (ret) {
1659 ath10k_warn("could not submit wmi stop scan (%d)\n", ret);
Michal Kazioradb8c9b2013-07-05 16:15:16 +03001660 spin_lock_bh(&ar->data_lock);
1661 ar->scan.in_progress = false;
1662 ath10k_offchan_tx_purge(ar);
1663 spin_unlock_bh(&ar->data_lock);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001664 return -EIO;
1665 }
1666
1667 ath10k_wmi_flush_tx(ar);
1668
1669 ret = wait_for_completion_timeout(&ar->scan.completed, 3*HZ);
1670 if (ret == 0)
1671 ath10k_warn("timed out while waiting for scan to stop\n");
1672
1673 /* scan completion may be done right after we timeout here, so let's
1674 * check the in_progress and tell mac80211 scan is completed. if we
1675 * don't do that and FW fails to send us scan completion indication
1676 * then userspace won't be able to scan anymore */
1677 ret = 0;
1678
1679 spin_lock_bh(&ar->data_lock);
1680 if (ar->scan.in_progress) {
1681 ath10k_warn("could not stop scan. its still in progress\n");
1682 ar->scan.in_progress = false;
1683 ath10k_offchan_tx_purge(ar);
1684 ret = -ETIMEDOUT;
1685 }
1686 spin_unlock_bh(&ar->data_lock);
1687
1688 return ret;
1689}
1690
1691static int ath10k_start_scan(struct ath10k *ar,
1692 const struct wmi_start_scan_arg *arg)
1693{
1694 int ret;
1695
1696 lockdep_assert_held(&ar->conf_mutex);
1697
1698 ret = ath10k_wmi_start_scan(ar, arg);
1699 if (ret)
1700 return ret;
1701
1702 /* make sure we submit the command so the completion
1703 * timeout makes sense */
1704 ath10k_wmi_flush_tx(ar);
1705
1706 ret = wait_for_completion_timeout(&ar->scan.started, 1*HZ);
1707 if (ret == 0) {
1708 ath10k_abort_scan(ar);
1709 return ret;
1710 }
1711
1712 /* the scan can complete earlier, before we even
1713 * start the timer. in that case the timer handler
1714 * checks ar->scan.in_progress and bails out if its
1715 * false. Add a 200ms margin to account event/command
1716 * processing. */
1717 mod_timer(&ar->scan.timeout, jiffies +
1718 msecs_to_jiffies(arg->max_scan_time+200));
1719 return 0;
1720}
1721
1722/**********************/
1723/* mac80211 callbacks */
1724/**********************/
1725
1726static void ath10k_tx(struct ieee80211_hw *hw,
1727 struct ieee80211_tx_control *control,
1728 struct sk_buff *skb)
1729{
1730 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1731 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1732 struct ath10k *ar = hw->priv;
1733 struct ath10k_vif *arvif = NULL;
1734 u32 vdev_id = 0;
1735 u8 tid;
1736
1737 if (info->control.vif) {
1738 arvif = ath10k_vif_to_arvif(info->control.vif);
1739 vdev_id = arvif->vdev_id;
1740 } else if (ar->monitor_enabled) {
1741 vdev_id = ar->monitor_vdev_id;
1742 }
1743
1744 /* We should disable CCK RATE due to P2P */
1745 if (info->flags & IEEE80211_TX_CTL_NO_CCK_RATE)
1746 ath10k_dbg(ATH10K_DBG_MAC, "IEEE80211_TX_CTL_NO_CCK_RATE\n");
1747
1748 /* we must calculate tid before we apply qos workaround
1749 * as we'd lose the qos control field */
1750 tid = HTT_DATA_TX_EXT_TID_NON_QOS_MCAST_BCAST;
Michal Kazior961d4c32013-08-09 10:13:34 +02001751 if (ieee80211_is_mgmt(hdr->frame_control)) {
1752 tid = HTT_DATA_TX_EXT_TID_MGMT;
1753 } else if (ieee80211_is_data_qos(hdr->frame_control) &&
1754 is_unicast_ether_addr(ieee80211_get_DA(hdr))) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001755 u8 *qc = ieee80211_get_qos_ctl(hdr);
1756 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
1757 }
1758
Michal Kaziorcf84bd42013-07-16 11:04:54 +02001759 /* it makes no sense to process injected frames like that */
1760 if (info->control.vif &&
1761 info->control.vif->type != NL80211_IFTYPE_MONITOR) {
1762 ath10k_tx_h_qos_workaround(hw, control, skb);
1763 ath10k_tx_h_update_wep_key(skb);
1764 ath10k_tx_h_add_p2p_noa_ie(ar, skb);
1765 ath10k_tx_h_seq_no(skb);
1766 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03001767
1768 memset(ATH10K_SKB_CB(skb), 0, sizeof(*ATH10K_SKB_CB(skb)));
1769 ATH10K_SKB_CB(skb)->htt.vdev_id = vdev_id;
1770 ATH10K_SKB_CB(skb)->htt.tid = tid;
1771
1772 if (info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) {
1773 spin_lock_bh(&ar->data_lock);
1774 ATH10K_SKB_CB(skb)->htt.is_offchan = true;
1775 ATH10K_SKB_CB(skb)->htt.vdev_id = ar->scan.vdev_id;
1776 spin_unlock_bh(&ar->data_lock);
1777
1778 ath10k_dbg(ATH10K_DBG_MAC, "queued offchannel skb %p\n", skb);
1779
1780 skb_queue_tail(&ar->offchan_tx_queue, skb);
1781 ieee80211_queue_work(hw, &ar->offchan_tx_work);
1782 return;
1783 }
1784
1785 ath10k_tx_htt(ar, skb);
1786}
1787
1788/*
1789 * Initialize various parameters with default vaules.
1790 */
Michal Kazioraffd3212013-07-16 09:54:35 +02001791void ath10k_halt(struct ath10k *ar)
Michal Kazior818bdd12013-07-16 09:38:57 +02001792{
1793 lockdep_assert_held(&ar->conf_mutex);
1794
1795 del_timer_sync(&ar->scan.timeout);
1796 ath10k_offchan_tx_purge(ar);
1797 ath10k_peer_cleanup_all(ar);
1798 ath10k_core_stop(ar);
1799 ath10k_hif_power_down(ar);
1800
1801 spin_lock_bh(&ar->data_lock);
1802 if (ar->scan.in_progress) {
1803 del_timer(&ar->scan.timeout);
1804 ar->scan.in_progress = false;
1805 ieee80211_scan_completed(ar->hw, true);
1806 }
1807 spin_unlock_bh(&ar->data_lock);
1808}
1809
Kalle Valo5e3dd152013-06-12 20:52:10 +03001810static int ath10k_start(struct ieee80211_hw *hw)
1811{
1812 struct ath10k *ar = hw->priv;
Michal Kazior818bdd12013-07-16 09:38:57 +02001813 int ret = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001814
Michal Kazior548db542013-07-05 16:15:15 +03001815 mutex_lock(&ar->conf_mutex);
1816
Michal Kazioraffd3212013-07-16 09:54:35 +02001817 if (ar->state != ATH10K_STATE_OFF &&
1818 ar->state != ATH10K_STATE_RESTARTING) {
Michal Kazior818bdd12013-07-16 09:38:57 +02001819 ret = -EINVAL;
1820 goto exit;
1821 }
1822
1823 ret = ath10k_hif_power_up(ar);
1824 if (ret) {
1825 ath10k_err("could not init hif (%d)\n", ret);
1826 ar->state = ATH10K_STATE_OFF;
1827 goto exit;
1828 }
1829
1830 ret = ath10k_core_start(ar);
1831 if (ret) {
1832 ath10k_err("could not init core (%d)\n", ret);
1833 ath10k_hif_power_down(ar);
1834 ar->state = ATH10K_STATE_OFF;
1835 goto exit;
1836 }
1837
Michal Kazioraffd3212013-07-16 09:54:35 +02001838 if (ar->state == ATH10K_STATE_OFF)
1839 ar->state = ATH10K_STATE_ON;
1840 else if (ar->state == ATH10K_STATE_RESTARTING)
1841 ar->state = ATH10K_STATE_RESTARTED;
1842
Kalle Valo5e3dd152013-06-12 20:52:10 +03001843 ret = ath10k_wmi_pdev_set_param(ar, WMI_PDEV_PARAM_PMF_QOS, 1);
1844 if (ret)
1845 ath10k_warn("could not enable WMI_PDEV_PARAM_PMF_QOS (%d)\n",
1846 ret);
1847
1848 ret = ath10k_wmi_pdev_set_param(ar, WMI_PDEV_PARAM_DYNAMIC_BW, 0);
1849 if (ret)
1850 ath10k_warn("could not init WMI_PDEV_PARAM_DYNAMIC_BW (%d)\n",
1851 ret);
1852
Michal Kaziorf7843d72013-07-16 09:38:52 +02001853 ath10k_regd_update(ar);
1854
Michal Kazior818bdd12013-07-16 09:38:57 +02001855exit:
Michal Kazior548db542013-07-05 16:15:15 +03001856 mutex_unlock(&ar->conf_mutex);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001857 return 0;
1858}
1859
1860static void ath10k_stop(struct ieee80211_hw *hw)
1861{
1862 struct ath10k *ar = hw->priv;
1863
Michal Kazior548db542013-07-05 16:15:15 +03001864 mutex_lock(&ar->conf_mutex);
Michal Kazioraffd3212013-07-16 09:54:35 +02001865 if (ar->state == ATH10K_STATE_ON ||
1866 ar->state == ATH10K_STATE_RESTARTED ||
1867 ar->state == ATH10K_STATE_WEDGED)
Michal Kazior818bdd12013-07-16 09:38:57 +02001868 ath10k_halt(ar);
Michal Kaziora96d7742013-07-16 09:38:56 +02001869
Michal Kaziorf7843d72013-07-16 09:38:52 +02001870 ar->state = ATH10K_STATE_OFF;
Michal Kazior548db542013-07-05 16:15:15 +03001871 mutex_unlock(&ar->conf_mutex);
1872
1873 cancel_work_sync(&ar->offchan_tx_work);
Michal Kazioraffd3212013-07-16 09:54:35 +02001874 cancel_work_sync(&ar->restart_work);
1875}
1876
1877static void ath10k_config_ps(struct ath10k *ar)
1878{
1879 struct ath10k_generic_iter ar_iter;
1880
1881 lockdep_assert_held(&ar->conf_mutex);
1882
1883 /* During HW reconfiguration mac80211 reports all interfaces that were
1884 * running until reconfiguration was started. Since FW doesn't have any
1885 * vdevs at this point we must not iterate over this interface list.
1886 * This setting will be updated upon add_interface(). */
1887 if (ar->state == ATH10K_STATE_RESTARTED)
1888 return;
1889
1890 memset(&ar_iter, 0, sizeof(struct ath10k_generic_iter));
1891 ar_iter.ar = ar;
1892
1893 ieee80211_iterate_active_interfaces_atomic(
1894 ar->hw, IEEE80211_IFACE_ITER_NORMAL,
1895 ath10k_ps_iter, &ar_iter);
1896
1897 if (ar_iter.ret)
1898 ath10k_warn("failed to set ps config (%d)\n", ar_iter.ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001899}
1900
1901static int ath10k_config(struct ieee80211_hw *hw, u32 changed)
1902{
Kalle Valo5e3dd152013-06-12 20:52:10 +03001903 struct ath10k *ar = hw->priv;
1904 struct ieee80211_conf *conf = &hw->conf;
1905 int ret = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001906
1907 mutex_lock(&ar->conf_mutex);
1908
1909 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03001910 ath10k_dbg(ATH10K_DBG_MAC, "mac config channel %d mhz\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03001911 conf->chandef.chan->center_freq);
1912 spin_lock_bh(&ar->data_lock);
1913 ar->rx_channel = conf->chandef.chan;
1914 spin_unlock_bh(&ar->data_lock);
1915 }
1916
Michal Kazioraffd3212013-07-16 09:54:35 +02001917 if (changed & IEEE80211_CONF_CHANGE_PS)
1918 ath10k_config_ps(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001919
1920 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
1921 if (conf->flags & IEEE80211_CONF_MONITOR)
1922 ret = ath10k_monitor_create(ar);
1923 else
1924 ret = ath10k_monitor_destroy(ar);
1925 }
1926
Michal Kazioraffd3212013-07-16 09:54:35 +02001927 ath10k_wmi_flush_tx(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001928 mutex_unlock(&ar->conf_mutex);
1929 return ret;
1930}
1931
1932/*
1933 * TODO:
1934 * Figure out how to handle WMI_VDEV_SUBTYPE_P2P_DEVICE,
1935 * because we will send mgmt frames without CCK. This requirement
1936 * for P2P_FIND/GO_NEG should be handled by checking CCK flag
1937 * in the TX packet.
1938 */
1939static int ath10k_add_interface(struct ieee80211_hw *hw,
1940 struct ieee80211_vif *vif)
1941{
1942 struct ath10k *ar = hw->priv;
1943 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
1944 enum wmi_sta_powersave_param param;
1945 int ret = 0;
Michal Kazior424121c2013-07-22 14:13:31 +02001946 u32 value;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001947 int bit;
1948
1949 mutex_lock(&ar->conf_mutex);
1950
Michal Kazior0dbd09e2013-07-31 10:55:14 +02001951 memset(arvif, 0, sizeof(*arvif));
1952
Kalle Valo5e3dd152013-06-12 20:52:10 +03001953 arvif->ar = ar;
1954 arvif->vif = vif;
1955
1956 if ((vif->type == NL80211_IFTYPE_MONITOR) && ar->monitor_present) {
1957 ath10k_warn("Only one monitor interface allowed\n");
1958 ret = -EBUSY;
1959 goto exit;
1960 }
1961
1962 bit = ffs(ar->free_vdev_map);
1963 if (bit == 0) {
1964 ret = -EBUSY;
1965 goto exit;
1966 }
1967
1968 arvif->vdev_id = bit - 1;
1969 arvif->vdev_subtype = WMI_VDEV_SUBTYPE_NONE;
1970 ar->free_vdev_map &= ~(1 << arvif->vdev_id);
1971
1972 if (ar->p2p)
1973 arvif->vdev_subtype = WMI_VDEV_SUBTYPE_P2P_DEVICE;
1974
1975 switch (vif->type) {
1976 case NL80211_IFTYPE_UNSPECIFIED:
1977 case NL80211_IFTYPE_STATION:
1978 arvif->vdev_type = WMI_VDEV_TYPE_STA;
1979 if (vif->p2p)
1980 arvif->vdev_subtype = WMI_VDEV_SUBTYPE_P2P_CLIENT;
1981 break;
1982 case NL80211_IFTYPE_ADHOC:
1983 arvif->vdev_type = WMI_VDEV_TYPE_IBSS;
1984 break;
1985 case NL80211_IFTYPE_AP:
1986 arvif->vdev_type = WMI_VDEV_TYPE_AP;
1987
1988 if (vif->p2p)
1989 arvif->vdev_subtype = WMI_VDEV_SUBTYPE_P2P_GO;
1990 break;
1991 case NL80211_IFTYPE_MONITOR:
1992 arvif->vdev_type = WMI_VDEV_TYPE_MONITOR;
1993 break;
1994 default:
1995 WARN_ON(1);
1996 break;
1997 }
1998
Kalle Valo60c3daa2013-09-08 17:56:07 +03001999 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev create %d (add interface) type %d subtype %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03002000 arvif->vdev_id, arvif->vdev_type, arvif->vdev_subtype);
2001
2002 ret = ath10k_wmi_vdev_create(ar, arvif->vdev_id, arvif->vdev_type,
2003 arvif->vdev_subtype, vif->addr);
2004 if (ret) {
2005 ath10k_warn("WMI vdev create failed: ret %d\n", ret);
2006 goto exit;
2007 }
2008
2009 ret = ath10k_wmi_vdev_set_param(ar, 0, WMI_VDEV_PARAM_DEF_KEYID,
2010 arvif->def_wep_key_index);
2011 if (ret)
2012 ath10k_warn("Failed to set default keyid: %d\n", ret);
2013
2014 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id,
2015 WMI_VDEV_PARAM_TX_ENCAP_TYPE,
2016 ATH10K_HW_TXRX_NATIVE_WIFI);
2017 if (ret)
2018 ath10k_warn("Failed to set TX encap: %d\n", ret);
2019
2020 if (arvif->vdev_type == WMI_VDEV_TYPE_AP) {
2021 ret = ath10k_peer_create(ar, arvif->vdev_id, vif->addr);
2022 if (ret) {
2023 ath10k_warn("Failed to create peer for AP: %d\n", ret);
2024 goto exit;
2025 }
2026 }
2027
2028 if (arvif->vdev_type == WMI_VDEV_TYPE_STA) {
2029 param = WMI_STA_PS_PARAM_RX_WAKE_POLICY;
2030 value = WMI_STA_PS_RX_WAKE_POLICY_WAKE;
2031 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2032 param, value);
2033 if (ret)
2034 ath10k_warn("Failed to set RX wake policy: %d\n", ret);
2035
2036 param = WMI_STA_PS_PARAM_TX_WAKE_THRESHOLD;
2037 value = WMI_STA_PS_TX_WAKE_THRESHOLD_ALWAYS;
2038 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2039 param, value);
2040 if (ret)
2041 ath10k_warn("Failed to set TX wake thresh: %d\n", ret);
2042
2043 param = WMI_STA_PS_PARAM_PSPOLL_COUNT;
2044 value = WMI_STA_PS_PSPOLL_COUNT_NO_MAX;
2045 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2046 param, value);
2047 if (ret)
2048 ath10k_warn("Failed to set PSPOLL count: %d\n", ret);
2049 }
2050
Michal Kazior424121c2013-07-22 14:13:31 +02002051 ret = ath10k_mac_set_rts(arvif, ar->hw->wiphy->rts_threshold);
Michal Kazior679c54a2013-07-05 16:15:04 +03002052 if (ret)
2053 ath10k_warn("failed to set rts threshold for vdev %d (%d)\n",
2054 arvif->vdev_id, ret);
2055
Michal Kazior424121c2013-07-22 14:13:31 +02002056 ret = ath10k_mac_set_frag(arvif, ar->hw->wiphy->frag_threshold);
Michal Kazior679c54a2013-07-05 16:15:04 +03002057 if (ret)
2058 ath10k_warn("failed to set frag threshold for vdev %d (%d)\n",
2059 arvif->vdev_id, ret);
2060
Kalle Valo5e3dd152013-06-12 20:52:10 +03002061 if (arvif->vdev_type == WMI_VDEV_TYPE_MONITOR)
2062 ar->monitor_present = true;
2063
2064exit:
2065 mutex_unlock(&ar->conf_mutex);
2066 return ret;
2067}
2068
2069static void ath10k_remove_interface(struct ieee80211_hw *hw,
2070 struct ieee80211_vif *vif)
2071{
2072 struct ath10k *ar = hw->priv;
2073 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2074 int ret;
2075
2076 mutex_lock(&ar->conf_mutex);
2077
Kalle Valo5e3dd152013-06-12 20:52:10 +03002078 ar->free_vdev_map |= 1 << (arvif->vdev_id);
2079
2080 if (arvif->vdev_type == WMI_VDEV_TYPE_AP) {
2081 ret = ath10k_peer_delete(arvif->ar, arvif->vdev_id, vif->addr);
2082 if (ret)
2083 ath10k_warn("Failed to remove peer for AP: %d\n", ret);
2084
2085 kfree(arvif->u.ap.noa_data);
2086 }
2087
Kalle Valo60c3daa2013-09-08 17:56:07 +03002088 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev delete %d (remove interface)\n",
2089 arvif->vdev_id);
2090
Kalle Valo5e3dd152013-06-12 20:52:10 +03002091 ret = ath10k_wmi_vdev_delete(ar, arvif->vdev_id);
2092 if (ret)
2093 ath10k_warn("WMI vdev delete failed: %d\n", ret);
2094
2095 if (arvif->vdev_type == WMI_VDEV_TYPE_MONITOR)
2096 ar->monitor_present = false;
2097
2098 ath10k_peer_cleanup(ar, arvif->vdev_id);
2099
2100 mutex_unlock(&ar->conf_mutex);
2101}
2102
2103/*
2104 * FIXME: Has to be verified.
2105 */
2106#define SUPPORTED_FILTERS \
2107 (FIF_PROMISC_IN_BSS | \
2108 FIF_ALLMULTI | \
2109 FIF_CONTROL | \
2110 FIF_PSPOLL | \
2111 FIF_OTHER_BSS | \
2112 FIF_BCN_PRBRESP_PROMISC | \
2113 FIF_PROBE_REQ | \
2114 FIF_FCSFAIL)
2115
2116static void ath10k_configure_filter(struct ieee80211_hw *hw,
2117 unsigned int changed_flags,
2118 unsigned int *total_flags,
2119 u64 multicast)
2120{
2121 struct ath10k *ar = hw->priv;
2122 int ret;
2123
2124 mutex_lock(&ar->conf_mutex);
2125
2126 changed_flags &= SUPPORTED_FILTERS;
2127 *total_flags &= SUPPORTED_FILTERS;
2128 ar->filter_flags = *total_flags;
2129
2130 if ((ar->filter_flags & FIF_PROMISC_IN_BSS) &&
2131 !ar->monitor_enabled) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03002132 ath10k_dbg(ATH10K_DBG_MAC, "mac monitor %d start\n",
2133 ar->monitor_vdev_id);
2134
Kalle Valo5e3dd152013-06-12 20:52:10 +03002135 ret = ath10k_monitor_start(ar, ar->monitor_vdev_id);
2136 if (ret)
2137 ath10k_warn("Unable to start monitor mode\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002138 } else if (!(ar->filter_flags & FIF_PROMISC_IN_BSS) &&
2139 ar->monitor_enabled) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03002140 ath10k_dbg(ATH10K_DBG_MAC, "mac monitor %d stop\n",
2141 ar->monitor_vdev_id);
2142
Kalle Valo5e3dd152013-06-12 20:52:10 +03002143 ret = ath10k_monitor_stop(ar);
2144 if (ret)
2145 ath10k_warn("Unable to stop monitor mode\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002146 }
2147
2148 mutex_unlock(&ar->conf_mutex);
2149}
2150
2151static void ath10k_bss_info_changed(struct ieee80211_hw *hw,
2152 struct ieee80211_vif *vif,
2153 struct ieee80211_bss_conf *info,
2154 u32 changed)
2155{
2156 struct ath10k *ar = hw->priv;
2157 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2158 int ret = 0;
2159
2160 mutex_lock(&ar->conf_mutex);
2161
2162 if (changed & BSS_CHANGED_IBSS)
2163 ath10k_control_ibss(arvif, info, vif->addr);
2164
2165 if (changed & BSS_CHANGED_BEACON_INT) {
2166 arvif->beacon_interval = info->beacon_int;
2167 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id,
2168 WMI_VDEV_PARAM_BEACON_INTERVAL,
2169 arvif->beacon_interval);
Kalle Valo60c3daa2013-09-08 17:56:07 +03002170 ath10k_dbg(ATH10K_DBG_MAC,
2171 "mac vdev %d beacon_interval %d\n",
2172 arvif->vdev_id, arvif->beacon_interval);
2173
Kalle Valo5e3dd152013-06-12 20:52:10 +03002174 if (ret)
2175 ath10k_warn("Failed to set beacon interval for VDEV: %d\n",
2176 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002177 }
2178
2179 if (changed & BSS_CHANGED_BEACON) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03002180 ath10k_dbg(ATH10K_DBG_MAC,
2181 "vdev %d set beacon tx mode to staggered\n",
2182 arvif->vdev_id);
2183
Kalle Valo5e3dd152013-06-12 20:52:10 +03002184 ret = ath10k_wmi_pdev_set_param(ar,
2185 WMI_PDEV_PARAM_BEACON_TX_MODE,
2186 WMI_BEACON_STAGGERED_MODE);
2187 if (ret)
2188 ath10k_warn("Failed to set beacon mode for VDEV: %d\n",
2189 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002190 }
2191
John W. Linvilleb70727e2013-06-13 13:34:29 -04002192 if (changed & BSS_CHANGED_BEACON_INFO) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002193 arvif->dtim_period = info->dtim_period;
2194
Kalle Valo60c3daa2013-09-08 17:56:07 +03002195 ath10k_dbg(ATH10K_DBG_MAC,
2196 "mac vdev %d dtim_period %d\n",
2197 arvif->vdev_id, arvif->dtim_period);
2198
Kalle Valo5e3dd152013-06-12 20:52:10 +03002199 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id,
2200 WMI_VDEV_PARAM_DTIM_PERIOD,
2201 arvif->dtim_period);
2202 if (ret)
2203 ath10k_warn("Failed to set dtim period for VDEV: %d\n",
2204 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002205 }
2206
2207 if (changed & BSS_CHANGED_SSID &&
2208 vif->type == NL80211_IFTYPE_AP) {
2209 arvif->u.ap.ssid_len = info->ssid_len;
2210 if (info->ssid_len)
2211 memcpy(arvif->u.ap.ssid, info->ssid, info->ssid_len);
2212 arvif->u.ap.hidden_ssid = info->hidden_ssid;
2213 }
2214
2215 if (changed & BSS_CHANGED_BSSID) {
2216 if (!is_zero_ether_addr(info->bssid)) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03002217 ath10k_dbg(ATH10K_DBG_MAC,
2218 "mac vdev %d create peer %pM\n",
2219 arvif->vdev_id, info->bssid);
2220
Kalle Valo5e3dd152013-06-12 20:52:10 +03002221 ret = ath10k_peer_create(ar, arvif->vdev_id,
2222 info->bssid);
2223 if (ret)
2224 ath10k_warn("Failed to add peer: %pM for VDEV: %d\n",
2225 info->bssid, arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002226
2227 if (vif->type == NL80211_IFTYPE_STATION) {
2228 /*
2229 * this is never erased as we it for crypto key
2230 * clearing; this is FW requirement
2231 */
2232 memcpy(arvif->u.sta.bssid, info->bssid,
2233 ETH_ALEN);
2234
Kalle Valo60c3daa2013-09-08 17:56:07 +03002235 ath10k_dbg(ATH10K_DBG_MAC,
2236 "mac vdev %d start %pM\n",
2237 arvif->vdev_id, info->bssid);
2238
2239 /* FIXME: check return value */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002240 ret = ath10k_vdev_start(arvif);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002241 }
2242
2243 /*
2244 * Mac80211 does not keep IBSS bssid when leaving IBSS,
2245 * so driver need to store it. It is needed when leaving
2246 * IBSS in order to remove BSSID peer.
2247 */
2248 if (vif->type == NL80211_IFTYPE_ADHOC)
2249 memcpy(arvif->u.ibss.bssid, info->bssid,
2250 ETH_ALEN);
2251 }
2252 }
2253
2254 if (changed & BSS_CHANGED_BEACON_ENABLED)
2255 ath10k_control_beaconing(arvif, info);
2256
2257 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
2258 u32 cts_prot;
2259 if (info->use_cts_prot)
2260 cts_prot = 1;
2261 else
2262 cts_prot = 0;
2263
Kalle Valo60c3daa2013-09-08 17:56:07 +03002264 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d cts_prot %d\n",
2265 arvif->vdev_id, cts_prot);
2266
Kalle Valo5e3dd152013-06-12 20:52:10 +03002267 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id,
2268 WMI_VDEV_PARAM_ENABLE_RTSCTS,
2269 cts_prot);
2270 if (ret)
2271 ath10k_warn("Failed to set CTS prot for VDEV: %d\n",
2272 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002273 }
2274
2275 if (changed & BSS_CHANGED_ERP_SLOT) {
2276 u32 slottime;
2277 if (info->use_short_slot)
2278 slottime = WMI_VDEV_SLOT_TIME_SHORT; /* 9us */
2279
2280 else
2281 slottime = WMI_VDEV_SLOT_TIME_LONG; /* 20us */
2282
Kalle Valo60c3daa2013-09-08 17:56:07 +03002283 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d slot_time %d\n",
2284 arvif->vdev_id, slottime);
2285
Kalle Valo5e3dd152013-06-12 20:52:10 +03002286 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id,
2287 WMI_VDEV_PARAM_SLOT_TIME,
2288 slottime);
2289 if (ret)
2290 ath10k_warn("Failed to set erp slot for VDEV: %d\n",
2291 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002292 }
2293
2294 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
2295 u32 preamble;
2296 if (info->use_short_preamble)
2297 preamble = WMI_VDEV_PREAMBLE_SHORT;
2298 else
2299 preamble = WMI_VDEV_PREAMBLE_LONG;
2300
Kalle Valo60c3daa2013-09-08 17:56:07 +03002301 ath10k_dbg(ATH10K_DBG_MAC,
2302 "mac vdev %d preamble %dn",
2303 arvif->vdev_id, preamble);
2304
Kalle Valo5e3dd152013-06-12 20:52:10 +03002305 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id,
2306 WMI_VDEV_PARAM_PREAMBLE,
2307 preamble);
2308 if (ret)
2309 ath10k_warn("Failed to set preamble for VDEV: %d\n",
2310 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002311 }
2312
2313 if (changed & BSS_CHANGED_ASSOC) {
2314 if (info->assoc)
2315 ath10k_bss_assoc(hw, vif, info);
2316 }
2317
2318 mutex_unlock(&ar->conf_mutex);
2319}
2320
2321static int ath10k_hw_scan(struct ieee80211_hw *hw,
2322 struct ieee80211_vif *vif,
2323 struct cfg80211_scan_request *req)
2324{
2325 struct ath10k *ar = hw->priv;
2326 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2327 struct wmi_start_scan_arg arg;
2328 int ret = 0;
2329 int i;
2330
2331 mutex_lock(&ar->conf_mutex);
2332
2333 spin_lock_bh(&ar->data_lock);
2334 if (ar->scan.in_progress) {
2335 spin_unlock_bh(&ar->data_lock);
2336 ret = -EBUSY;
2337 goto exit;
2338 }
2339
2340 INIT_COMPLETION(ar->scan.started);
2341 INIT_COMPLETION(ar->scan.completed);
2342 ar->scan.in_progress = true;
2343 ar->scan.aborting = false;
2344 ar->scan.is_roc = false;
2345 ar->scan.vdev_id = arvif->vdev_id;
2346 spin_unlock_bh(&ar->data_lock);
2347
2348 memset(&arg, 0, sizeof(arg));
2349 ath10k_wmi_start_scan_init(ar, &arg);
2350 arg.vdev_id = arvif->vdev_id;
2351 arg.scan_id = ATH10K_SCAN_ID;
2352
2353 if (!req->no_cck)
2354 arg.scan_ctrl_flags |= WMI_SCAN_ADD_CCK_RATES;
2355
2356 if (req->ie_len) {
2357 arg.ie_len = req->ie_len;
2358 memcpy(arg.ie, req->ie, arg.ie_len);
2359 }
2360
2361 if (req->n_ssids) {
2362 arg.n_ssids = req->n_ssids;
2363 for (i = 0; i < arg.n_ssids; i++) {
2364 arg.ssids[i].len = req->ssids[i].ssid_len;
2365 arg.ssids[i].ssid = req->ssids[i].ssid;
2366 }
Michal Kaziordcd4a562013-07-31 10:55:12 +02002367 } else {
2368 arg.scan_ctrl_flags |= WMI_SCAN_FLAG_PASSIVE;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002369 }
2370
2371 if (req->n_channels) {
2372 arg.n_channels = req->n_channels;
2373 for (i = 0; i < arg.n_channels; i++)
2374 arg.channels[i] = req->channels[i]->center_freq;
2375 }
2376
2377 ret = ath10k_start_scan(ar, &arg);
2378 if (ret) {
2379 ath10k_warn("could not start hw scan (%d)\n", ret);
2380 spin_lock_bh(&ar->data_lock);
2381 ar->scan.in_progress = false;
2382 spin_unlock_bh(&ar->data_lock);
2383 }
2384
2385exit:
2386 mutex_unlock(&ar->conf_mutex);
2387 return ret;
2388}
2389
2390static void ath10k_cancel_hw_scan(struct ieee80211_hw *hw,
2391 struct ieee80211_vif *vif)
2392{
2393 struct ath10k *ar = hw->priv;
2394 int ret;
2395
2396 mutex_lock(&ar->conf_mutex);
2397 ret = ath10k_abort_scan(ar);
2398 if (ret) {
2399 ath10k_warn("couldn't abort scan (%d). forcefully sending scan completion to mac80211\n",
2400 ret);
2401 ieee80211_scan_completed(hw, 1 /* aborted */);
2402 }
2403 mutex_unlock(&ar->conf_mutex);
2404}
2405
2406static int ath10k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
2407 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
2408 struct ieee80211_key_conf *key)
2409{
2410 struct ath10k *ar = hw->priv;
2411 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2412 struct ath10k_peer *peer;
2413 const u8 *peer_addr;
2414 bool is_wep = key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
2415 key->cipher == WLAN_CIPHER_SUITE_WEP104;
2416 int ret = 0;
2417
2418 if (key->keyidx > WMI_MAX_KEY_INDEX)
2419 return -ENOSPC;
2420
2421 mutex_lock(&ar->conf_mutex);
2422
2423 if (sta)
2424 peer_addr = sta->addr;
2425 else if (arvif->vdev_type == WMI_VDEV_TYPE_STA)
2426 peer_addr = vif->bss_conf.bssid;
2427 else
2428 peer_addr = vif->addr;
2429
2430 key->hw_key_idx = key->keyidx;
2431
2432 /* the peer should not disappear in mid-way (unless FW goes awry) since
2433 * we already hold conf_mutex. we just make sure its there now. */
2434 spin_lock_bh(&ar->data_lock);
2435 peer = ath10k_peer_find(ar, arvif->vdev_id, peer_addr);
2436 spin_unlock_bh(&ar->data_lock);
2437
2438 if (!peer) {
2439 if (cmd == SET_KEY) {
2440 ath10k_warn("cannot install key for non-existent peer %pM\n",
2441 peer_addr);
2442 ret = -EOPNOTSUPP;
2443 goto exit;
2444 } else {
2445 /* if the peer doesn't exist there is no key to disable
2446 * anymore */
2447 goto exit;
2448 }
2449 }
2450
2451 if (is_wep) {
2452 if (cmd == SET_KEY)
2453 arvif->wep_keys[key->keyidx] = key;
2454 else
2455 arvif->wep_keys[key->keyidx] = NULL;
2456
2457 if (cmd == DISABLE_KEY)
2458 ath10k_clear_vdev_key(arvif, key);
2459 }
2460
2461 ret = ath10k_install_key(arvif, key, cmd, peer_addr);
2462 if (ret) {
2463 ath10k_warn("ath10k_install_key failed (%d)\n", ret);
2464 goto exit;
2465 }
2466
2467 spin_lock_bh(&ar->data_lock);
2468 peer = ath10k_peer_find(ar, arvif->vdev_id, peer_addr);
2469 if (peer && cmd == SET_KEY)
2470 peer->keys[key->keyidx] = key;
2471 else if (peer && cmd == DISABLE_KEY)
2472 peer->keys[key->keyidx] = NULL;
2473 else if (peer == NULL)
2474 /* impossible unless FW goes crazy */
2475 ath10k_warn("peer %pM disappeared!\n", peer_addr);
2476 spin_unlock_bh(&ar->data_lock);
2477
2478exit:
2479 mutex_unlock(&ar->conf_mutex);
2480 return ret;
2481}
2482
2483static int ath10k_sta_state(struct ieee80211_hw *hw,
2484 struct ieee80211_vif *vif,
2485 struct ieee80211_sta *sta,
2486 enum ieee80211_sta_state old_state,
2487 enum ieee80211_sta_state new_state)
2488{
2489 struct ath10k *ar = hw->priv;
2490 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2491 int ret = 0;
2492
2493 mutex_lock(&ar->conf_mutex);
2494
2495 if (old_state == IEEE80211_STA_NOTEXIST &&
2496 new_state == IEEE80211_STA_NONE &&
2497 vif->type != NL80211_IFTYPE_STATION) {
2498 /*
2499 * New station addition.
2500 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03002501 ath10k_dbg(ATH10K_DBG_MAC,
2502 "mac vdev %d peer create %pM (new sta)\n",
2503 arvif->vdev_id, sta->addr);
2504
Kalle Valo5e3dd152013-06-12 20:52:10 +03002505 ret = ath10k_peer_create(ar, arvif->vdev_id, sta->addr);
2506 if (ret)
2507 ath10k_warn("Failed to add peer: %pM for VDEV: %d\n",
2508 sta->addr, arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002509 } else if ((old_state == IEEE80211_STA_NONE &&
2510 new_state == IEEE80211_STA_NOTEXIST)) {
2511 /*
2512 * Existing station deletion.
2513 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03002514 ath10k_dbg(ATH10K_DBG_MAC,
2515 "mac vdev %d peer delete %pM (sta gone)\n",
2516 arvif->vdev_id, sta->addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002517 ret = ath10k_peer_delete(ar, arvif->vdev_id, sta->addr);
2518 if (ret)
2519 ath10k_warn("Failed to delete peer: %pM for VDEV: %d\n",
2520 sta->addr, arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002521
2522 if (vif->type == NL80211_IFTYPE_STATION)
2523 ath10k_bss_disassoc(hw, vif);
2524 } else if (old_state == IEEE80211_STA_AUTH &&
2525 new_state == IEEE80211_STA_ASSOC &&
2526 (vif->type == NL80211_IFTYPE_AP ||
2527 vif->type == NL80211_IFTYPE_ADHOC)) {
2528 /*
2529 * New association.
2530 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03002531 ath10k_dbg(ATH10K_DBG_MAC, "mac sta %pM associated\n",
2532 sta->addr);
2533
Kalle Valo5e3dd152013-06-12 20:52:10 +03002534 ret = ath10k_station_assoc(ar, arvif, sta);
2535 if (ret)
2536 ath10k_warn("Failed to associate station: %pM\n",
2537 sta->addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002538 } else if (old_state == IEEE80211_STA_ASSOC &&
2539 new_state == IEEE80211_STA_AUTH &&
2540 (vif->type == NL80211_IFTYPE_AP ||
2541 vif->type == NL80211_IFTYPE_ADHOC)) {
2542 /*
2543 * Disassociation.
2544 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03002545 ath10k_dbg(ATH10K_DBG_MAC, "mac sta %pM disassociated\n",
2546 sta->addr);
2547
Kalle Valo5e3dd152013-06-12 20:52:10 +03002548 ret = ath10k_station_disassoc(ar, arvif, sta);
2549 if (ret)
2550 ath10k_warn("Failed to disassociate station: %pM\n",
2551 sta->addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002552 }
2553
2554 mutex_unlock(&ar->conf_mutex);
2555 return ret;
2556}
2557
2558static int ath10k_conf_tx_uapsd(struct ath10k *ar, struct ieee80211_vif *vif,
2559 u16 ac, bool enable)
2560{
2561 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2562 u32 value = 0;
2563 int ret = 0;
2564
Michal Kazior548db542013-07-05 16:15:15 +03002565 lockdep_assert_held(&ar->conf_mutex);
2566
Kalle Valo5e3dd152013-06-12 20:52:10 +03002567 if (arvif->vdev_type != WMI_VDEV_TYPE_STA)
2568 return 0;
2569
2570 switch (ac) {
2571 case IEEE80211_AC_VO:
2572 value = WMI_STA_PS_UAPSD_AC3_DELIVERY_EN |
2573 WMI_STA_PS_UAPSD_AC3_TRIGGER_EN;
2574 break;
2575 case IEEE80211_AC_VI:
2576 value = WMI_STA_PS_UAPSD_AC2_DELIVERY_EN |
2577 WMI_STA_PS_UAPSD_AC2_TRIGGER_EN;
2578 break;
2579 case IEEE80211_AC_BE:
2580 value = WMI_STA_PS_UAPSD_AC1_DELIVERY_EN |
2581 WMI_STA_PS_UAPSD_AC1_TRIGGER_EN;
2582 break;
2583 case IEEE80211_AC_BK:
2584 value = WMI_STA_PS_UAPSD_AC0_DELIVERY_EN |
2585 WMI_STA_PS_UAPSD_AC0_TRIGGER_EN;
2586 break;
2587 }
2588
2589 if (enable)
2590 arvif->u.sta.uapsd |= value;
2591 else
2592 arvif->u.sta.uapsd &= ~value;
2593
2594 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2595 WMI_STA_PS_PARAM_UAPSD,
2596 arvif->u.sta.uapsd);
2597 if (ret) {
2598 ath10k_warn("could not set uapsd params %d\n", ret);
2599 goto exit;
2600 }
2601
2602 if (arvif->u.sta.uapsd)
2603 value = WMI_STA_PS_RX_WAKE_POLICY_POLL_UAPSD;
2604 else
2605 value = WMI_STA_PS_RX_WAKE_POLICY_WAKE;
2606
2607 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2608 WMI_STA_PS_PARAM_RX_WAKE_POLICY,
2609 value);
2610 if (ret)
2611 ath10k_warn("could not set rx wake param %d\n", ret);
2612
2613exit:
2614 return ret;
2615}
2616
2617static int ath10k_conf_tx(struct ieee80211_hw *hw,
2618 struct ieee80211_vif *vif, u16 ac,
2619 const struct ieee80211_tx_queue_params *params)
2620{
2621 struct ath10k *ar = hw->priv;
2622 struct wmi_wmm_params_arg *p = NULL;
2623 int ret;
2624
2625 mutex_lock(&ar->conf_mutex);
2626
2627 switch (ac) {
2628 case IEEE80211_AC_VO:
2629 p = &ar->wmm_params.ac_vo;
2630 break;
2631 case IEEE80211_AC_VI:
2632 p = &ar->wmm_params.ac_vi;
2633 break;
2634 case IEEE80211_AC_BE:
2635 p = &ar->wmm_params.ac_be;
2636 break;
2637 case IEEE80211_AC_BK:
2638 p = &ar->wmm_params.ac_bk;
2639 break;
2640 }
2641
2642 if (WARN_ON(!p)) {
2643 ret = -EINVAL;
2644 goto exit;
2645 }
2646
2647 p->cwmin = params->cw_min;
2648 p->cwmax = params->cw_max;
2649 p->aifs = params->aifs;
2650
2651 /*
2652 * The channel time duration programmed in the HW is in absolute
2653 * microseconds, while mac80211 gives the txop in units of
2654 * 32 microseconds.
2655 */
2656 p->txop = params->txop * 32;
2657
2658 /* FIXME: FW accepts wmm params per hw, not per vif */
2659 ret = ath10k_wmi_pdev_set_wmm_params(ar, &ar->wmm_params);
2660 if (ret) {
2661 ath10k_warn("could not set wmm params %d\n", ret);
2662 goto exit;
2663 }
2664
2665 ret = ath10k_conf_tx_uapsd(ar, vif, ac, params->uapsd);
2666 if (ret)
2667 ath10k_warn("could not set sta uapsd %d\n", ret);
2668
2669exit:
2670 mutex_unlock(&ar->conf_mutex);
2671 return ret;
2672}
2673
2674#define ATH10K_ROC_TIMEOUT_HZ (2*HZ)
2675
2676static int ath10k_remain_on_channel(struct ieee80211_hw *hw,
2677 struct ieee80211_vif *vif,
2678 struct ieee80211_channel *chan,
2679 int duration,
2680 enum ieee80211_roc_type type)
2681{
2682 struct ath10k *ar = hw->priv;
2683 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2684 struct wmi_start_scan_arg arg;
2685 int ret;
2686
2687 mutex_lock(&ar->conf_mutex);
2688
2689 spin_lock_bh(&ar->data_lock);
2690 if (ar->scan.in_progress) {
2691 spin_unlock_bh(&ar->data_lock);
2692 ret = -EBUSY;
2693 goto exit;
2694 }
2695
2696 INIT_COMPLETION(ar->scan.started);
2697 INIT_COMPLETION(ar->scan.completed);
2698 INIT_COMPLETION(ar->scan.on_channel);
2699 ar->scan.in_progress = true;
2700 ar->scan.aborting = false;
2701 ar->scan.is_roc = true;
2702 ar->scan.vdev_id = arvif->vdev_id;
2703 ar->scan.roc_freq = chan->center_freq;
2704 spin_unlock_bh(&ar->data_lock);
2705
2706 memset(&arg, 0, sizeof(arg));
2707 ath10k_wmi_start_scan_init(ar, &arg);
2708 arg.vdev_id = arvif->vdev_id;
2709 arg.scan_id = ATH10K_SCAN_ID;
2710 arg.n_channels = 1;
2711 arg.channels[0] = chan->center_freq;
2712 arg.dwell_time_active = duration;
2713 arg.dwell_time_passive = duration;
2714 arg.max_scan_time = 2 * duration;
2715 arg.scan_ctrl_flags |= WMI_SCAN_FLAG_PASSIVE;
2716 arg.scan_ctrl_flags |= WMI_SCAN_FILTER_PROBE_REQ;
2717
2718 ret = ath10k_start_scan(ar, &arg);
2719 if (ret) {
2720 ath10k_warn("could not start roc scan (%d)\n", ret);
2721 spin_lock_bh(&ar->data_lock);
2722 ar->scan.in_progress = false;
2723 spin_unlock_bh(&ar->data_lock);
2724 goto exit;
2725 }
2726
2727 ret = wait_for_completion_timeout(&ar->scan.on_channel, 3*HZ);
2728 if (ret == 0) {
2729 ath10k_warn("could not switch to channel for roc scan\n");
2730 ath10k_abort_scan(ar);
2731 ret = -ETIMEDOUT;
2732 goto exit;
2733 }
2734
2735 ret = 0;
2736exit:
2737 mutex_unlock(&ar->conf_mutex);
2738 return ret;
2739}
2740
2741static int ath10k_cancel_remain_on_channel(struct ieee80211_hw *hw)
2742{
2743 struct ath10k *ar = hw->priv;
2744
2745 mutex_lock(&ar->conf_mutex);
2746 ath10k_abort_scan(ar);
2747 mutex_unlock(&ar->conf_mutex);
2748
2749 return 0;
2750}
2751
2752/*
2753 * Both RTS and Fragmentation threshold are interface-specific
2754 * in ath10k, but device-specific in mac80211.
2755 */
2756static void ath10k_set_rts_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
2757{
2758 struct ath10k_generic_iter *ar_iter = data;
2759 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2760 u32 rts = ar_iter->ar->hw->wiphy->rts_threshold;
2761
Michal Kazior548db542013-07-05 16:15:15 +03002762 lockdep_assert_held(&arvif->ar->conf_mutex);
2763
Michal Kazioraffd3212013-07-16 09:54:35 +02002764 /* During HW reconfiguration mac80211 reports all interfaces that were
2765 * running until reconfiguration was started. Since FW doesn't have any
2766 * vdevs at this point we must not iterate over this interface list.
2767 * This setting will be updated upon add_interface(). */
2768 if (ar_iter->ar->state == ATH10K_STATE_RESTARTED)
2769 return;
2770
Kalle Valo60c3daa2013-09-08 17:56:07 +03002771 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d rts_threshold %d\n",
2772 arvif->vdev_id, rts);
2773
Michal Kazior424121c2013-07-22 14:13:31 +02002774 ar_iter->ret = ath10k_mac_set_rts(arvif, rts);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002775 if (ar_iter->ret)
2776 ath10k_warn("Failed to set RTS threshold for VDEV: %d\n",
2777 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002778}
2779
2780static int ath10k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
2781{
2782 struct ath10k_generic_iter ar_iter;
2783 struct ath10k *ar = hw->priv;
2784
2785 memset(&ar_iter, 0, sizeof(struct ath10k_generic_iter));
2786 ar_iter.ar = ar;
2787
2788 mutex_lock(&ar->conf_mutex);
Michal Kazior80c78c62013-07-05 16:15:03 +03002789 ieee80211_iterate_active_interfaces_atomic(
Michal Kazior671b96d2013-07-05 16:15:05 +03002790 hw, IEEE80211_IFACE_ITER_NORMAL,
Michal Kazior80c78c62013-07-05 16:15:03 +03002791 ath10k_set_rts_iter, &ar_iter);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002792 mutex_unlock(&ar->conf_mutex);
2793
2794 return ar_iter.ret;
2795}
2796
2797static void ath10k_set_frag_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
2798{
2799 struct ath10k_generic_iter *ar_iter = data;
2800 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2801 u32 frag = ar_iter->ar->hw->wiphy->frag_threshold;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002802
Michal Kazior548db542013-07-05 16:15:15 +03002803 lockdep_assert_held(&arvif->ar->conf_mutex);
2804
Michal Kazioraffd3212013-07-16 09:54:35 +02002805 /* During HW reconfiguration mac80211 reports all interfaces that were
2806 * running until reconfiguration was started. Since FW doesn't have any
2807 * vdevs at this point we must not iterate over this interface list.
2808 * This setting will be updated upon add_interface(). */
2809 if (ar_iter->ar->state == ATH10K_STATE_RESTARTED)
2810 return;
2811
Kalle Valo60c3daa2013-09-08 17:56:07 +03002812 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d fragmentation_threshold %d\n",
2813 arvif->vdev_id, frag);
2814
Michal Kazior424121c2013-07-22 14:13:31 +02002815 ar_iter->ret = ath10k_mac_set_frag(arvif, frag);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002816 if (ar_iter->ret)
2817 ath10k_warn("Failed to set frag threshold for VDEV: %d\n",
2818 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002819}
2820
2821static int ath10k_set_frag_threshold(struct ieee80211_hw *hw, u32 value)
2822{
2823 struct ath10k_generic_iter ar_iter;
2824 struct ath10k *ar = hw->priv;
2825
2826 memset(&ar_iter, 0, sizeof(struct ath10k_generic_iter));
2827 ar_iter.ar = ar;
2828
2829 mutex_lock(&ar->conf_mutex);
Michal Kazior80c78c62013-07-05 16:15:03 +03002830 ieee80211_iterate_active_interfaces_atomic(
Michal Kazior671b96d2013-07-05 16:15:05 +03002831 hw, IEEE80211_IFACE_ITER_NORMAL,
Michal Kazior80c78c62013-07-05 16:15:03 +03002832 ath10k_set_frag_iter, &ar_iter);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002833 mutex_unlock(&ar->conf_mutex);
2834
2835 return ar_iter.ret;
2836}
2837
2838static void ath10k_flush(struct ieee80211_hw *hw, u32 queues, bool drop)
2839{
2840 struct ath10k *ar = hw->priv;
Michal Kazioraffd3212013-07-16 09:54:35 +02002841 bool skip;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002842 int ret;
2843
2844 /* mac80211 doesn't care if we really xmit queued frames or not
2845 * we'll collect those frames either way if we stop/delete vdevs */
2846 if (drop)
2847 return;
2848
Michal Kazior548db542013-07-05 16:15:15 +03002849 mutex_lock(&ar->conf_mutex);
2850
Michal Kazioraffd3212013-07-16 09:54:35 +02002851 if (ar->state == ATH10K_STATE_WEDGED)
2852 goto skip;
2853
Michal Kazioredb82362013-07-05 16:15:14 +03002854 ret = wait_event_timeout(ar->htt.empty_tx_wq, ({
Kalle Valo5e3dd152013-06-12 20:52:10 +03002855 bool empty;
Michal Kazioraffd3212013-07-16 09:54:35 +02002856
Michal Kazioredb82362013-07-05 16:15:14 +03002857 spin_lock_bh(&ar->htt.tx_lock);
2858 empty = bitmap_empty(ar->htt.used_msdu_ids,
2859 ar->htt.max_num_pending_tx);
2860 spin_unlock_bh(&ar->htt.tx_lock);
Michal Kazioraffd3212013-07-16 09:54:35 +02002861
2862 skip = (ar->state == ATH10K_STATE_WEDGED);
2863
2864 (empty || skip);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002865 }), ATH10K_FLUSH_TIMEOUT_HZ);
Michal Kazioraffd3212013-07-16 09:54:35 +02002866
2867 if (ret <= 0 || skip)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002868 ath10k_warn("tx not flushed\n");
Michal Kazior548db542013-07-05 16:15:15 +03002869
Michal Kazioraffd3212013-07-16 09:54:35 +02002870skip:
Michal Kazior548db542013-07-05 16:15:15 +03002871 mutex_unlock(&ar->conf_mutex);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002872}
2873
2874/* TODO: Implement this function properly
2875 * For now it is needed to reply to Probe Requests in IBSS mode.
2876 * Propably we need this information from FW.
2877 */
2878static int ath10k_tx_last_beacon(struct ieee80211_hw *hw)
2879{
2880 return 1;
2881}
2882
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002883#ifdef CONFIG_PM
2884static int ath10k_suspend(struct ieee80211_hw *hw,
2885 struct cfg80211_wowlan *wowlan)
2886{
2887 struct ath10k *ar = hw->priv;
2888 int ret;
2889
2890 ar->is_target_paused = false;
2891
2892 ret = ath10k_wmi_pdev_suspend_target(ar);
2893 if (ret) {
2894 ath10k_warn("could not suspend target (%d)\n", ret);
2895 return 1;
2896 }
2897
2898 ret = wait_event_interruptible_timeout(ar->event_queue,
2899 ar->is_target_paused == true,
2900 1 * HZ);
2901 if (ret < 0) {
2902 ath10k_warn("suspend interrupted (%d)\n", ret);
2903 goto resume;
2904 } else if (ret == 0) {
2905 ath10k_warn("suspend timed out - target pause event never came\n");
2906 goto resume;
2907 }
2908
2909 ret = ath10k_hif_suspend(ar);
2910 if (ret) {
2911 ath10k_warn("could not suspend hif (%d)\n", ret);
2912 goto resume;
2913 }
2914
2915 return 0;
2916resume:
2917 ret = ath10k_wmi_pdev_resume_target(ar);
2918 if (ret)
2919 ath10k_warn("could not resume target (%d)\n", ret);
2920 return 1;
2921}
2922
2923static int ath10k_resume(struct ieee80211_hw *hw)
2924{
2925 struct ath10k *ar = hw->priv;
2926 int ret;
2927
2928 ret = ath10k_hif_resume(ar);
2929 if (ret) {
2930 ath10k_warn("could not resume hif (%d)\n", ret);
2931 return 1;
2932 }
2933
2934 ret = ath10k_wmi_pdev_resume_target(ar);
2935 if (ret) {
2936 ath10k_warn("could not resume target (%d)\n", ret);
2937 return 1;
2938 }
2939
2940 return 0;
2941}
2942#endif
2943
Michal Kazioraffd3212013-07-16 09:54:35 +02002944static void ath10k_restart_complete(struct ieee80211_hw *hw)
2945{
2946 struct ath10k *ar = hw->priv;
2947
2948 mutex_lock(&ar->conf_mutex);
2949
2950 /* If device failed to restart it will be in a different state, e.g.
2951 * ATH10K_STATE_WEDGED */
2952 if (ar->state == ATH10K_STATE_RESTARTED) {
2953 ath10k_info("device successfully recovered\n");
2954 ar->state = ATH10K_STATE_ON;
2955 }
2956
2957 mutex_unlock(&ar->conf_mutex);
2958}
2959
Michal Kazior2e1dea42013-07-31 10:32:40 +02002960static int ath10k_get_survey(struct ieee80211_hw *hw, int idx,
2961 struct survey_info *survey)
2962{
2963 struct ath10k *ar = hw->priv;
2964 struct ieee80211_supported_band *sband;
2965 struct survey_info *ar_survey = &ar->survey[idx];
2966 int ret = 0;
2967
2968 mutex_lock(&ar->conf_mutex);
2969
2970 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
2971 if (sband && idx >= sband->n_channels) {
2972 idx -= sband->n_channels;
2973 sband = NULL;
2974 }
2975
2976 if (!sband)
2977 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
2978
2979 if (!sband || idx >= sband->n_channels) {
2980 ret = -ENOENT;
2981 goto exit;
2982 }
2983
2984 spin_lock_bh(&ar->data_lock);
2985 memcpy(survey, ar_survey, sizeof(*survey));
2986 spin_unlock_bh(&ar->data_lock);
2987
2988 survey->channel = &sband->channels[idx];
2989
2990exit:
2991 mutex_unlock(&ar->conf_mutex);
2992 return ret;
2993}
2994
Kalle Valo5e3dd152013-06-12 20:52:10 +03002995static const struct ieee80211_ops ath10k_ops = {
2996 .tx = ath10k_tx,
2997 .start = ath10k_start,
2998 .stop = ath10k_stop,
2999 .config = ath10k_config,
3000 .add_interface = ath10k_add_interface,
3001 .remove_interface = ath10k_remove_interface,
3002 .configure_filter = ath10k_configure_filter,
3003 .bss_info_changed = ath10k_bss_info_changed,
3004 .hw_scan = ath10k_hw_scan,
3005 .cancel_hw_scan = ath10k_cancel_hw_scan,
3006 .set_key = ath10k_set_key,
3007 .sta_state = ath10k_sta_state,
3008 .conf_tx = ath10k_conf_tx,
3009 .remain_on_channel = ath10k_remain_on_channel,
3010 .cancel_remain_on_channel = ath10k_cancel_remain_on_channel,
3011 .set_rts_threshold = ath10k_set_rts_threshold,
3012 .set_frag_threshold = ath10k_set_frag_threshold,
3013 .flush = ath10k_flush,
3014 .tx_last_beacon = ath10k_tx_last_beacon,
Michal Kazioraffd3212013-07-16 09:54:35 +02003015 .restart_complete = ath10k_restart_complete,
Michal Kazior2e1dea42013-07-31 10:32:40 +02003016 .get_survey = ath10k_get_survey,
Michal Kazior8cd13ca2013-07-16 09:38:54 +02003017#ifdef CONFIG_PM
3018 .suspend = ath10k_suspend,
3019 .resume = ath10k_resume,
3020#endif
Kalle Valo5e3dd152013-06-12 20:52:10 +03003021};
3022
3023#define RATETAB_ENT(_rate, _rateid, _flags) { \
3024 .bitrate = (_rate), \
3025 .flags = (_flags), \
3026 .hw_value = (_rateid), \
3027}
3028
3029#define CHAN2G(_channel, _freq, _flags) { \
3030 .band = IEEE80211_BAND_2GHZ, \
3031 .hw_value = (_channel), \
3032 .center_freq = (_freq), \
3033 .flags = (_flags), \
3034 .max_antenna_gain = 0, \
3035 .max_power = 30, \
3036}
3037
3038#define CHAN5G(_channel, _freq, _flags) { \
3039 .band = IEEE80211_BAND_5GHZ, \
3040 .hw_value = (_channel), \
3041 .center_freq = (_freq), \
3042 .flags = (_flags), \
3043 .max_antenna_gain = 0, \
3044 .max_power = 30, \
3045}
3046
3047static const struct ieee80211_channel ath10k_2ghz_channels[] = {
3048 CHAN2G(1, 2412, 0),
3049 CHAN2G(2, 2417, 0),
3050 CHAN2G(3, 2422, 0),
3051 CHAN2G(4, 2427, 0),
3052 CHAN2G(5, 2432, 0),
3053 CHAN2G(6, 2437, 0),
3054 CHAN2G(7, 2442, 0),
3055 CHAN2G(8, 2447, 0),
3056 CHAN2G(9, 2452, 0),
3057 CHAN2G(10, 2457, 0),
3058 CHAN2G(11, 2462, 0),
3059 CHAN2G(12, 2467, 0),
3060 CHAN2G(13, 2472, 0),
3061 CHAN2G(14, 2484, 0),
3062};
3063
3064static const struct ieee80211_channel ath10k_5ghz_channels[] = {
Michal Kazior429ff562013-06-26 08:54:54 +02003065 CHAN5G(36, 5180, 0),
3066 CHAN5G(40, 5200, 0),
3067 CHAN5G(44, 5220, 0),
3068 CHAN5G(48, 5240, 0),
3069 CHAN5G(52, 5260, 0),
3070 CHAN5G(56, 5280, 0),
3071 CHAN5G(60, 5300, 0),
3072 CHAN5G(64, 5320, 0),
3073 CHAN5G(100, 5500, 0),
3074 CHAN5G(104, 5520, 0),
3075 CHAN5G(108, 5540, 0),
3076 CHAN5G(112, 5560, 0),
3077 CHAN5G(116, 5580, 0),
3078 CHAN5G(120, 5600, 0),
3079 CHAN5G(124, 5620, 0),
3080 CHAN5G(128, 5640, 0),
3081 CHAN5G(132, 5660, 0),
3082 CHAN5G(136, 5680, 0),
3083 CHAN5G(140, 5700, 0),
3084 CHAN5G(149, 5745, 0),
3085 CHAN5G(153, 5765, 0),
3086 CHAN5G(157, 5785, 0),
3087 CHAN5G(161, 5805, 0),
3088 CHAN5G(165, 5825, 0),
Kalle Valo5e3dd152013-06-12 20:52:10 +03003089};
3090
3091static struct ieee80211_rate ath10k_rates[] = {
3092 /* CCK */
3093 RATETAB_ENT(10, 0x82, 0),
3094 RATETAB_ENT(20, 0x84, 0),
3095 RATETAB_ENT(55, 0x8b, 0),
3096 RATETAB_ENT(110, 0x96, 0),
3097 /* OFDM */
3098 RATETAB_ENT(60, 0x0c, 0),
3099 RATETAB_ENT(90, 0x12, 0),
3100 RATETAB_ENT(120, 0x18, 0),
3101 RATETAB_ENT(180, 0x24, 0),
3102 RATETAB_ENT(240, 0x30, 0),
3103 RATETAB_ENT(360, 0x48, 0),
3104 RATETAB_ENT(480, 0x60, 0),
3105 RATETAB_ENT(540, 0x6c, 0),
3106};
3107
3108#define ath10k_a_rates (ath10k_rates + 4)
3109#define ath10k_a_rates_size (ARRAY_SIZE(ath10k_rates) - 4)
3110#define ath10k_g_rates (ath10k_rates + 0)
3111#define ath10k_g_rates_size (ARRAY_SIZE(ath10k_rates))
3112
3113struct ath10k *ath10k_mac_create(void)
3114{
3115 struct ieee80211_hw *hw;
3116 struct ath10k *ar;
3117
3118 hw = ieee80211_alloc_hw(sizeof(struct ath10k), &ath10k_ops);
3119 if (!hw)
3120 return NULL;
3121
3122 ar = hw->priv;
3123 ar->hw = hw;
3124
3125 return ar;
3126}
3127
3128void ath10k_mac_destroy(struct ath10k *ar)
3129{
3130 ieee80211_free_hw(ar->hw);
3131}
3132
3133static const struct ieee80211_iface_limit ath10k_if_limits[] = {
3134 {
3135 .max = 8,
3136 .types = BIT(NL80211_IFTYPE_STATION)
3137 | BIT(NL80211_IFTYPE_P2P_CLIENT)
Michal Kaziord531cb82013-07-31 10:55:13 +02003138 },
3139 {
3140 .max = 3,
3141 .types = BIT(NL80211_IFTYPE_P2P_GO)
3142 },
3143 {
3144 .max = 7,
3145 .types = BIT(NL80211_IFTYPE_AP)
3146 },
Kalle Valo5e3dd152013-06-12 20:52:10 +03003147};
3148
3149static const struct ieee80211_iface_combination ath10k_if_comb = {
3150 .limits = ath10k_if_limits,
3151 .n_limits = ARRAY_SIZE(ath10k_if_limits),
3152 .max_interfaces = 8,
3153 .num_different_channels = 1,
3154 .beacon_int_infra_match = true,
3155};
3156
3157static struct ieee80211_sta_vht_cap ath10k_create_vht_cap(struct ath10k *ar)
3158{
3159 struct ieee80211_sta_vht_cap vht_cap = {0};
3160 u16 mcs_map;
Michal Kazior8865bee42013-07-24 12:36:46 +02003161 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003162
3163 vht_cap.vht_supported = 1;
3164 vht_cap.cap = ar->vht_cap_info;
3165
Michal Kazior8865bee42013-07-24 12:36:46 +02003166 mcs_map = 0;
3167 for (i = 0; i < 8; i++) {
3168 if (i < ar->num_rf_chains)
3169 mcs_map |= IEEE80211_VHT_MCS_SUPPORT_0_9 << (i*2);
3170 else
3171 mcs_map |= IEEE80211_VHT_MCS_NOT_SUPPORTED << (i*2);
3172 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03003173
3174 vht_cap.vht_mcs.rx_mcs_map = cpu_to_le16(mcs_map);
3175 vht_cap.vht_mcs.tx_mcs_map = cpu_to_le16(mcs_map);
3176
3177 return vht_cap;
3178}
3179
3180static struct ieee80211_sta_ht_cap ath10k_get_ht_cap(struct ath10k *ar)
3181{
3182 int i;
3183 struct ieee80211_sta_ht_cap ht_cap = {0};
3184
3185 if (!(ar->ht_cap_info & WMI_HT_CAP_ENABLED))
3186 return ht_cap;
3187
3188 ht_cap.ht_supported = 1;
3189 ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
3190 ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_8;
3191 ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
3192 ht_cap.cap |= IEEE80211_HT_CAP_DSSSCCK40;
3193 ht_cap.cap |= WLAN_HT_CAP_SM_PS_STATIC << IEEE80211_HT_CAP_SM_PS_SHIFT;
3194
3195 if (ar->ht_cap_info & WMI_HT_CAP_HT20_SGI)
3196 ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
3197
3198 if (ar->ht_cap_info & WMI_HT_CAP_HT40_SGI)
3199 ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
3200
3201 if (ar->ht_cap_info & WMI_HT_CAP_DYNAMIC_SMPS) {
3202 u32 smps;
3203
3204 smps = WLAN_HT_CAP_SM_PS_DYNAMIC;
3205 smps <<= IEEE80211_HT_CAP_SM_PS_SHIFT;
3206
3207 ht_cap.cap |= smps;
3208 }
3209
3210 if (ar->ht_cap_info & WMI_HT_CAP_TX_STBC)
3211 ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
3212
3213 if (ar->ht_cap_info & WMI_HT_CAP_RX_STBC) {
3214 u32 stbc;
3215
3216 stbc = ar->ht_cap_info;
3217 stbc &= WMI_HT_CAP_RX_STBC;
3218 stbc >>= WMI_HT_CAP_RX_STBC_MASK_SHIFT;
3219 stbc <<= IEEE80211_HT_CAP_RX_STBC_SHIFT;
3220 stbc &= IEEE80211_HT_CAP_RX_STBC;
3221
3222 ht_cap.cap |= stbc;
3223 }
3224
3225 if (ar->ht_cap_info & WMI_HT_CAP_LDPC)
3226 ht_cap.cap |= IEEE80211_HT_CAP_LDPC_CODING;
3227
3228 if (ar->ht_cap_info & WMI_HT_CAP_L_SIG_TXOP_PROT)
3229 ht_cap.cap |= IEEE80211_HT_CAP_LSIG_TXOP_PROT;
3230
3231 /* max AMSDU is implicitly taken from vht_cap_info */
3232 if (ar->vht_cap_info & WMI_VHT_CAP_MAX_MPDU_LEN_MASK)
3233 ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
3234
Michal Kazior8865bee42013-07-24 12:36:46 +02003235 for (i = 0; i < ar->num_rf_chains; i++)
Kalle Valo5e3dd152013-06-12 20:52:10 +03003236 ht_cap.mcs.rx_mask[i] = 0xFF;
3237
3238 ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_DEFINED;
3239
3240 return ht_cap;
3241}
3242
3243
3244static void ath10k_get_arvif_iter(void *data, u8 *mac,
3245 struct ieee80211_vif *vif)
3246{
3247 struct ath10k_vif_iter *arvif_iter = data;
3248 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
3249
3250 if (arvif->vdev_id == arvif_iter->vdev_id)
3251 arvif_iter->arvif = arvif;
3252}
3253
3254struct ath10k_vif *ath10k_get_arvif(struct ath10k *ar, u32 vdev_id)
3255{
3256 struct ath10k_vif_iter arvif_iter;
3257 u32 flags;
3258
3259 memset(&arvif_iter, 0, sizeof(struct ath10k_vif_iter));
3260 arvif_iter.vdev_id = vdev_id;
3261
3262 flags = IEEE80211_IFACE_ITER_RESUME_ALL;
3263 ieee80211_iterate_active_interfaces_atomic(ar->hw,
3264 flags,
3265 ath10k_get_arvif_iter,
3266 &arvif_iter);
3267 if (!arvif_iter.arvif) {
3268 ath10k_warn("No VIF found for VDEV: %d\n", vdev_id);
3269 return NULL;
3270 }
3271
3272 return arvif_iter.arvif;
3273}
3274
3275int ath10k_mac_register(struct ath10k *ar)
3276{
3277 struct ieee80211_supported_band *band;
3278 struct ieee80211_sta_vht_cap vht_cap;
3279 struct ieee80211_sta_ht_cap ht_cap;
3280 void *channels;
3281 int ret;
3282
3283 SET_IEEE80211_PERM_ADDR(ar->hw, ar->mac_addr);
3284
3285 SET_IEEE80211_DEV(ar->hw, ar->dev);
3286
3287 ht_cap = ath10k_get_ht_cap(ar);
3288 vht_cap = ath10k_create_vht_cap(ar);
3289
3290 if (ar->phy_capability & WHAL_WLAN_11G_CAPABILITY) {
3291 channels = kmemdup(ath10k_2ghz_channels,
3292 sizeof(ath10k_2ghz_channels),
3293 GFP_KERNEL);
Michal Kaziord6015b22013-07-22 14:13:30 +02003294 if (!channels) {
3295 ret = -ENOMEM;
3296 goto err_free;
3297 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03003298
3299 band = &ar->mac.sbands[IEEE80211_BAND_2GHZ];
3300 band->n_channels = ARRAY_SIZE(ath10k_2ghz_channels);
3301 band->channels = channels;
3302 band->n_bitrates = ath10k_g_rates_size;
3303 band->bitrates = ath10k_g_rates;
3304 band->ht_cap = ht_cap;
3305
3306 /* vht is not supported in 2.4 GHz */
3307
3308 ar->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = band;
3309 }
3310
3311 if (ar->phy_capability & WHAL_WLAN_11A_CAPABILITY) {
3312 channels = kmemdup(ath10k_5ghz_channels,
3313 sizeof(ath10k_5ghz_channels),
3314 GFP_KERNEL);
3315 if (!channels) {
Michal Kaziord6015b22013-07-22 14:13:30 +02003316 ret = -ENOMEM;
3317 goto err_free;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003318 }
3319
3320 band = &ar->mac.sbands[IEEE80211_BAND_5GHZ];
3321 band->n_channels = ARRAY_SIZE(ath10k_5ghz_channels);
3322 band->channels = channels;
3323 band->n_bitrates = ath10k_a_rates_size;
3324 band->bitrates = ath10k_a_rates;
3325 band->ht_cap = ht_cap;
3326 band->vht_cap = vht_cap;
3327 ar->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = band;
3328 }
3329
3330 ar->hw->wiphy->interface_modes =
3331 BIT(NL80211_IFTYPE_STATION) |
3332 BIT(NL80211_IFTYPE_ADHOC) |
3333 BIT(NL80211_IFTYPE_AP) |
3334 BIT(NL80211_IFTYPE_P2P_CLIENT) |
3335 BIT(NL80211_IFTYPE_P2P_GO);
3336
3337 ar->hw->flags = IEEE80211_HW_SIGNAL_DBM |
3338 IEEE80211_HW_SUPPORTS_PS |
3339 IEEE80211_HW_SUPPORTS_DYNAMIC_PS |
3340 IEEE80211_HW_SUPPORTS_UAPSD |
3341 IEEE80211_HW_MFP_CAPABLE |
3342 IEEE80211_HW_REPORTS_TX_ACK_STATUS |
3343 IEEE80211_HW_HAS_RATE_CONTROL |
3344 IEEE80211_HW_SUPPORTS_STATIC_SMPS |
3345 IEEE80211_HW_WANT_MONITOR_VIF |
3346 IEEE80211_HW_AP_LINK_PS;
3347
3348 if (ar->ht_cap_info & WMI_HT_CAP_DYNAMIC_SMPS)
3349 ar->hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS;
3350
3351 if (ar->ht_cap_info & WMI_HT_CAP_ENABLED) {
3352 ar->hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
3353 ar->hw->flags |= IEEE80211_HW_TX_AMPDU_SETUP_IN_HW;
3354 }
3355
3356 ar->hw->wiphy->max_scan_ssids = WLAN_SCAN_PARAMS_MAX_SSID;
3357 ar->hw->wiphy->max_scan_ie_len = WLAN_SCAN_PARAMS_MAX_IE_LEN;
3358
3359 ar->hw->vif_data_size = sizeof(struct ath10k_vif);
3360
3361 ar->hw->channel_change_time = 5000;
3362 ar->hw->max_listen_interval = ATH10K_MAX_HW_LISTEN_INTERVAL;
3363
3364 ar->hw->wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
3365 ar->hw->wiphy->max_remain_on_channel_duration = 5000;
3366
3367 ar->hw->wiphy->flags |= WIPHY_FLAG_AP_UAPSD;
3368 /*
3369 * on LL hardware queues are managed entirely by the FW
3370 * so we only advertise to mac we can do the queues thing
3371 */
3372 ar->hw->queues = 4;
3373
3374 ar->hw->wiphy->iface_combinations = &ath10k_if_comb;
3375 ar->hw->wiphy->n_iface_combinations = 1;
3376
Michal Kazior7c199992013-07-31 10:47:57 +02003377 ar->hw->netdev_features = NETIF_F_HW_CSUM;
3378
Kalle Valo5e3dd152013-06-12 20:52:10 +03003379 ret = ath_regd_init(&ar->ath_common.regulatory, ar->hw->wiphy,
3380 ath10k_reg_notifier);
3381 if (ret) {
3382 ath10k_err("Regulatory initialization failed\n");
Michal Kaziord6015b22013-07-22 14:13:30 +02003383 goto err_free;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003384 }
3385
3386 ret = ieee80211_register_hw(ar->hw);
3387 if (ret) {
3388 ath10k_err("ieee80211 registration failed: %d\n", ret);
Michal Kaziord6015b22013-07-22 14:13:30 +02003389 goto err_free;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003390 }
3391
3392 if (!ath_is_world_regd(&ar->ath_common.regulatory)) {
3393 ret = regulatory_hint(ar->hw->wiphy,
3394 ar->ath_common.regulatory.alpha2);
3395 if (ret)
Michal Kaziord6015b22013-07-22 14:13:30 +02003396 goto err_unregister;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003397 }
3398
3399 return 0;
Michal Kaziord6015b22013-07-22 14:13:30 +02003400
3401err_unregister:
Kalle Valo5e3dd152013-06-12 20:52:10 +03003402 ieee80211_unregister_hw(ar->hw);
Michal Kaziord6015b22013-07-22 14:13:30 +02003403err_free:
3404 kfree(ar->mac.sbands[IEEE80211_BAND_2GHZ].channels);
3405 kfree(ar->mac.sbands[IEEE80211_BAND_5GHZ].channels);
3406
Kalle Valo5e3dd152013-06-12 20:52:10 +03003407 return ret;
3408}
3409
3410void ath10k_mac_unregister(struct ath10k *ar)
3411{
3412 ieee80211_unregister_hw(ar->hw);
3413
3414 kfree(ar->mac.sbands[IEEE80211_BAND_2GHZ].channels);
3415 kfree(ar->mac.sbands[IEEE80211_BAND_5GHZ].channels);
3416
3417 SET_IEEE80211_DEV(ar->hw, NULL);
3418}