blob: c95a3985209da177d04b4c0b9c026f694c8beffe [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);
Ben Greear479398b2013-11-04 09:19:34 -0800325 if (ret) {
326 ath10k_warn("Failed to create wmi peer: %i\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300327 return ret;
Ben Greear479398b2013-11-04 09:19:34 -0800328 }
Kalle Valo5e3dd152013-06-12 20:52:10 +0300329
330 ret = ath10k_wait_for_peer_created(ar, vdev_id, addr);
Ben Greear479398b2013-11-04 09:19:34 -0800331 if (ret) {
332 ath10k_warn("Failed to wait for created wmi peer: %i\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300333 return ret;
Ben Greear479398b2013-11-04 09:19:34 -0800334 }
Kalle Valo5e3dd152013-06-12 20:52:10 +0300335
336 return 0;
337}
338
Michal Kazior424121c2013-07-22 14:13:31 +0200339static int ath10k_mac_set_rts(struct ath10k_vif *arvif, u32 value)
340{
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200341 struct ath10k *ar = arvif->ar;
342 u32 vdev_param;
343
Michal Kazior424121c2013-07-22 14:13:31 +0200344 if (value != 0xFFFFFFFF)
345 value = min_t(u32, arvif->ar->hw->wiphy->rts_threshold,
346 ATH10K_RTS_MAX);
347
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200348 vdev_param = ar->wmi.vdev_param->rts_threshold;
349 return ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param, value);
Michal Kazior424121c2013-07-22 14:13:31 +0200350}
351
352static int ath10k_mac_set_frag(struct ath10k_vif *arvif, u32 value)
353{
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200354 struct ath10k *ar = arvif->ar;
355 u32 vdev_param;
356
Michal Kazior424121c2013-07-22 14:13:31 +0200357 if (value != 0xFFFFFFFF)
358 value = clamp_t(u32, arvif->ar->hw->wiphy->frag_threshold,
359 ATH10K_FRAGMT_THRESHOLD_MIN,
360 ATH10K_FRAGMT_THRESHOLD_MAX);
361
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200362 vdev_param = ar->wmi.vdev_param->fragmentation_threshold;
363 return ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param, value);
Michal Kazior424121c2013-07-22 14:13:31 +0200364}
365
Kalle Valo5e3dd152013-06-12 20:52:10 +0300366static int ath10k_peer_delete(struct ath10k *ar, u32 vdev_id, const u8 *addr)
367{
368 int ret;
369
370 lockdep_assert_held(&ar->conf_mutex);
371
372 ret = ath10k_wmi_peer_delete(ar, vdev_id, addr);
373 if (ret)
374 return ret;
375
376 ret = ath10k_wait_for_peer_deleted(ar, vdev_id, addr);
377 if (ret)
378 return ret;
379
380 return 0;
381}
382
383static void ath10k_peer_cleanup(struct ath10k *ar, u32 vdev_id)
384{
385 struct ath10k_peer *peer, *tmp;
386
387 lockdep_assert_held(&ar->conf_mutex);
388
389 spin_lock_bh(&ar->data_lock);
390 list_for_each_entry_safe(peer, tmp, &ar->peers, list) {
391 if (peer->vdev_id != vdev_id)
392 continue;
393
394 ath10k_warn("removing stale peer %pM from vdev_id %d\n",
395 peer->addr, vdev_id);
396
397 list_del(&peer->list);
398 kfree(peer);
399 }
400 spin_unlock_bh(&ar->data_lock);
401}
402
Michal Kaziora96d7742013-07-16 09:38:56 +0200403static void ath10k_peer_cleanup_all(struct ath10k *ar)
404{
405 struct ath10k_peer *peer, *tmp;
406
407 lockdep_assert_held(&ar->conf_mutex);
408
409 spin_lock_bh(&ar->data_lock);
410 list_for_each_entry_safe(peer, tmp, &ar->peers, list) {
411 list_del(&peer->list);
412 kfree(peer);
413 }
414 spin_unlock_bh(&ar->data_lock);
415}
416
Kalle Valo5e3dd152013-06-12 20:52:10 +0300417/************************/
418/* Interface management */
419/************************/
420
421static inline int ath10k_vdev_setup_sync(struct ath10k *ar)
422{
423 int ret;
424
Michal Kazior548db542013-07-05 16:15:15 +0300425 lockdep_assert_held(&ar->conf_mutex);
426
Kalle Valo5e3dd152013-06-12 20:52:10 +0300427 ret = wait_for_completion_timeout(&ar->vdev_setup_done,
428 ATH10K_VDEV_SETUP_TIMEOUT_HZ);
429 if (ret == 0)
430 return -ETIMEDOUT;
431
432 return 0;
433}
434
435static int ath10k_vdev_start(struct ath10k_vif *arvif)
436{
437 struct ath10k *ar = arvif->ar;
438 struct ieee80211_conf *conf = &ar->hw->conf;
439 struct ieee80211_channel *channel = conf->chandef.chan;
440 struct wmi_vdev_start_request_arg arg = {};
441 int ret = 0;
442
443 lockdep_assert_held(&ar->conf_mutex);
444
445 INIT_COMPLETION(ar->vdev_setup_done);
446
447 arg.vdev_id = arvif->vdev_id;
448 arg.dtim_period = arvif->dtim_period;
449 arg.bcn_intval = arvif->beacon_interval;
450
451 arg.channel.freq = channel->center_freq;
452
453 arg.channel.band_center_freq1 = conf->chandef.center_freq1;
454
455 arg.channel.mode = chan_to_phymode(&conf->chandef);
456
Michal Kazior89c5c842013-10-23 04:02:13 -0700457 arg.channel.min_power = 0;
Michal Kazior02256932013-10-23 04:02:14 -0700458 arg.channel.max_power = channel->max_power * 2;
459 arg.channel.max_reg_power = channel->max_reg_power * 2;
460 arg.channel.max_antenna_gain = channel->max_antenna_gain * 2;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300461
462 if (arvif->vdev_type == WMI_VDEV_TYPE_AP) {
463 arg.ssid = arvif->u.ap.ssid;
464 arg.ssid_len = arvif->u.ap.ssid_len;
465 arg.hidden_ssid = arvif->u.ap.hidden_ssid;
466 } else if (arvif->vdev_type == WMI_VDEV_TYPE_IBSS) {
467 arg.ssid = arvif->vif->bss_conf.ssid;
468 arg.ssid_len = arvif->vif->bss_conf.ssid_len;
469 }
470
Kalle Valo38a1d472013-09-08 17:56:14 +0300471 ath10k_dbg(ATH10K_DBG_MAC,
472 "mac vdev %d start center_freq %d phymode %s\n",
473 arg.vdev_id, arg.channel.freq,
474 ath10k_wmi_phymode_str(arg.channel.mode));
475
Kalle Valo5e3dd152013-06-12 20:52:10 +0300476 ret = ath10k_wmi_vdev_start(ar, &arg);
477 if (ret) {
478 ath10k_warn("WMI vdev start failed: ret %d\n", ret);
479 return ret;
480 }
481
482 ret = ath10k_vdev_setup_sync(ar);
483 if (ret) {
484 ath10k_warn("vdev setup failed %d\n", ret);
485 return ret;
486 }
487
488 return ret;
489}
490
491static int ath10k_vdev_stop(struct ath10k_vif *arvif)
492{
493 struct ath10k *ar = arvif->ar;
494 int ret;
495
496 lockdep_assert_held(&ar->conf_mutex);
497
498 INIT_COMPLETION(ar->vdev_setup_done);
499
500 ret = ath10k_wmi_vdev_stop(ar, arvif->vdev_id);
501 if (ret) {
502 ath10k_warn("WMI vdev stop failed: ret %d\n", ret);
503 return ret;
504 }
505
506 ret = ath10k_vdev_setup_sync(ar);
507 if (ret) {
508 ath10k_warn("vdev setup failed %d\n", ret);
509 return ret;
510 }
511
512 return ret;
513}
514
515static int ath10k_monitor_start(struct ath10k *ar, int vdev_id)
516{
517 struct ieee80211_channel *channel = ar->hw->conf.chandef.chan;
518 struct wmi_vdev_start_request_arg arg = {};
Kalle Valo5e3dd152013-06-12 20:52:10 +0300519 int ret = 0;
520
521 lockdep_assert_held(&ar->conf_mutex);
522
Michal Kazior0ed00ee2013-10-16 16:45:48 +0300523 if (!ar->monitor_present) {
524 ath10k_warn("mac montor stop -- monitor is not present\n");
525 return -EINVAL;
526 }
527
Kalle Valo5e3dd152013-06-12 20:52:10 +0300528 arg.vdev_id = vdev_id;
529 arg.channel.freq = channel->center_freq;
530 arg.channel.band_center_freq1 = ar->hw->conf.chandef.center_freq1;
531
532 /* TODO setup this dynamically, what in case we
533 don't have any vifs? */
534 arg.channel.mode = chan_to_phymode(&ar->hw->conf.chandef);
535
Michal Kazior89c5c842013-10-23 04:02:13 -0700536 arg.channel.min_power = 0;
Michal Kazior02256932013-10-23 04:02:14 -0700537 arg.channel.max_power = channel->max_power * 2;
538 arg.channel.max_reg_power = channel->max_reg_power * 2;
539 arg.channel.max_antenna_gain = channel->max_antenna_gain * 2;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300540
541 ret = ath10k_wmi_vdev_start(ar, &arg);
542 if (ret) {
543 ath10k_warn("Monitor vdev start failed: ret %d\n", ret);
544 return ret;
545 }
546
547 ret = ath10k_vdev_setup_sync(ar);
548 if (ret) {
549 ath10k_warn("Monitor vdev setup failed %d\n", ret);
550 return ret;
551 }
552
553 ret = ath10k_wmi_vdev_up(ar, vdev_id, 0, ar->mac_addr);
554 if (ret) {
555 ath10k_warn("Monitor vdev up failed: %d\n", ret);
556 goto vdev_stop;
557 }
558
559 ar->monitor_vdev_id = vdev_id;
560 ar->monitor_enabled = true;
561
562 return 0;
563
564vdev_stop:
565 ret = ath10k_wmi_vdev_stop(ar, ar->monitor_vdev_id);
566 if (ret)
567 ath10k_warn("Monitor vdev stop failed: %d\n", ret);
568
569 return ret;
570}
571
572static int ath10k_monitor_stop(struct ath10k *ar)
573{
574 int ret = 0;
575
576 lockdep_assert_held(&ar->conf_mutex);
577
Michal Kazior0ed00ee2013-10-16 16:45:48 +0300578 if (!ar->monitor_present) {
579 ath10k_warn("mac montor stop -- monitor is not present\n");
580 return -EINVAL;
581 }
582
583 if (!ar->monitor_enabled) {
584 ath10k_warn("mac montor stop -- monitor is not enabled\n");
585 return -EINVAL;
586 }
587
Marek Puzyniak52fa0192013-09-24 14:06:24 +0200588 ret = ath10k_wmi_vdev_down(ar, ar->monitor_vdev_id);
589 if (ret)
590 ath10k_warn("Monitor vdev down failed: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300591
592 ret = ath10k_wmi_vdev_stop(ar, ar->monitor_vdev_id);
593 if (ret)
594 ath10k_warn("Monitor vdev stop failed: %d\n", ret);
595
596 ret = ath10k_vdev_setup_sync(ar);
597 if (ret)
598 ath10k_warn("Monitor_down sync failed: %d\n", ret);
599
600 ar->monitor_enabled = false;
601 return ret;
602}
603
604static int ath10k_monitor_create(struct ath10k *ar)
605{
606 int bit, ret = 0;
607
608 lockdep_assert_held(&ar->conf_mutex);
609
610 if (ar->monitor_present) {
611 ath10k_warn("Monitor mode already enabled\n");
612 return 0;
613 }
614
615 bit = ffs(ar->free_vdev_map);
616 if (bit == 0) {
617 ath10k_warn("No free VDEV slots\n");
618 return -ENOMEM;
619 }
620
621 ar->monitor_vdev_id = bit - 1;
622 ar->free_vdev_map &= ~(1 << ar->monitor_vdev_id);
623
624 ret = ath10k_wmi_vdev_create(ar, ar->monitor_vdev_id,
625 WMI_VDEV_TYPE_MONITOR,
626 0, ar->mac_addr);
627 if (ret) {
628 ath10k_warn("WMI vdev monitor create failed: ret %d\n", ret);
629 goto vdev_fail;
630 }
631
Kalle Valo60c3daa2013-09-08 17:56:07 +0300632 ath10k_dbg(ATH10K_DBG_MAC, "mac monitor vdev %d created\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +0300633 ar->monitor_vdev_id);
634
635 ar->monitor_present = true;
636 return 0;
637
638vdev_fail:
639 /*
640 * Restore the ID to the global map.
641 */
642 ar->free_vdev_map |= 1 << (ar->monitor_vdev_id);
643 return ret;
644}
645
646static int ath10k_monitor_destroy(struct ath10k *ar)
647{
648 int ret = 0;
649
650 lockdep_assert_held(&ar->conf_mutex);
651
652 if (!ar->monitor_present)
653 return 0;
654
655 ret = ath10k_wmi_vdev_delete(ar, ar->monitor_vdev_id);
656 if (ret) {
657 ath10k_warn("WMI vdev monitor delete failed: %d\n", ret);
658 return ret;
659 }
660
661 ar->free_vdev_map |= 1 << (ar->monitor_vdev_id);
662 ar->monitor_present = false;
663
Kalle Valo60c3daa2013-09-08 17:56:07 +0300664 ath10k_dbg(ATH10K_DBG_MAC, "mac monitor vdev %d deleted\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +0300665 ar->monitor_vdev_id);
666 return ret;
667}
668
669static void ath10k_control_beaconing(struct ath10k_vif *arvif,
670 struct ieee80211_bss_conf *info)
671{
672 int ret = 0;
673
Michal Kazior548db542013-07-05 16:15:15 +0300674 lockdep_assert_held(&arvif->ar->conf_mutex);
675
Kalle Valo5e3dd152013-06-12 20:52:10 +0300676 if (!info->enable_beacon) {
677 ath10k_vdev_stop(arvif);
678 return;
679 }
680
681 arvif->tx_seq_no = 0x1000;
682
683 ret = ath10k_vdev_start(arvif);
684 if (ret)
685 return;
686
687 ret = ath10k_wmi_vdev_up(arvif->ar, arvif->vdev_id, 0, info->bssid);
688 if (ret) {
689 ath10k_warn("Failed to bring up VDEV: %d\n",
690 arvif->vdev_id);
691 return;
692 }
Kalle Valo60c3daa2013-09-08 17:56:07 +0300693 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d up\n", arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300694}
695
696static void ath10k_control_ibss(struct ath10k_vif *arvif,
697 struct ieee80211_bss_conf *info,
698 const u8 self_peer[ETH_ALEN])
699{
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200700 u32 vdev_param;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300701 int ret = 0;
702
Michal Kazior548db542013-07-05 16:15:15 +0300703 lockdep_assert_held(&arvif->ar->conf_mutex);
704
Kalle Valo5e3dd152013-06-12 20:52:10 +0300705 if (!info->ibss_joined) {
706 ret = ath10k_peer_delete(arvif->ar, arvif->vdev_id, self_peer);
707 if (ret)
708 ath10k_warn("Failed to delete IBSS self peer:%pM for VDEV:%d ret:%d\n",
709 self_peer, arvif->vdev_id, ret);
710
711 if (is_zero_ether_addr(arvif->u.ibss.bssid))
712 return;
713
714 ret = ath10k_peer_delete(arvif->ar, arvif->vdev_id,
715 arvif->u.ibss.bssid);
716 if (ret) {
717 ath10k_warn("Failed to delete IBSS BSSID peer:%pM for VDEV:%d ret:%d\n",
718 arvif->u.ibss.bssid, arvif->vdev_id, ret);
719 return;
720 }
721
722 memset(arvif->u.ibss.bssid, 0, ETH_ALEN);
723
724 return;
725 }
726
727 ret = ath10k_peer_create(arvif->ar, arvif->vdev_id, self_peer);
728 if (ret) {
729 ath10k_warn("Failed to create IBSS self peer:%pM for VDEV:%d ret:%d\n",
730 self_peer, arvif->vdev_id, ret);
731 return;
732 }
733
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200734 vdev_param = arvif->ar->wmi.vdev_param->atim_window;
735 ret = ath10k_wmi_vdev_set_param(arvif->ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +0300736 ATH10K_DEFAULT_ATIM);
737 if (ret)
738 ath10k_warn("Failed to set IBSS ATIM for VDEV:%d ret:%d\n",
739 arvif->vdev_id, ret);
740}
741
742/*
743 * Review this when mac80211 gains per-interface powersave support.
744 */
Michal Kaziorad088bf2013-10-16 15:44:46 +0300745static int ath10k_mac_vif_setup_ps(struct ath10k_vif *arvif)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300746{
Michal Kaziorad088bf2013-10-16 15:44:46 +0300747 struct ath10k *ar = arvif->ar;
748 struct ieee80211_conf *conf = &ar->hw->conf;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300749 enum wmi_sta_powersave_param param;
750 enum wmi_sta_ps_mode psmode;
751 int ret;
752
Michal Kazior548db542013-07-05 16:15:15 +0300753 lockdep_assert_held(&arvif->ar->conf_mutex);
754
Michal Kaziorad088bf2013-10-16 15:44:46 +0300755 if (arvif->vif->type != NL80211_IFTYPE_STATION)
756 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300757
758 if (conf->flags & IEEE80211_CONF_PS) {
759 psmode = WMI_STA_PS_MODE_ENABLED;
760 param = WMI_STA_PS_PARAM_INACTIVITY_TIME;
761
Michal Kaziorad088bf2013-10-16 15:44:46 +0300762 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id, param,
Kalle Valo5e3dd152013-06-12 20:52:10 +0300763 conf->dynamic_ps_timeout);
764 if (ret) {
765 ath10k_warn("Failed to set inactivity time for VDEV: %d\n",
766 arvif->vdev_id);
Michal Kaziorad088bf2013-10-16 15:44:46 +0300767 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300768 }
Kalle Valo5e3dd152013-06-12 20:52:10 +0300769 } else {
770 psmode = WMI_STA_PS_MODE_DISABLED;
771 }
772
Kalle Valo60c3daa2013-09-08 17:56:07 +0300773 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d psmode %s\n",
774 arvif->vdev_id, psmode ? "enable" : "disable");
775
Michal Kaziorad088bf2013-10-16 15:44:46 +0300776 ret = ath10k_wmi_set_psmode(ar, arvif->vdev_id, psmode);
777 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +0300778 ath10k_warn("Failed to set PS Mode: %d for VDEV: %d\n",
779 psmode, arvif->vdev_id);
Michal Kaziorad088bf2013-10-16 15:44:46 +0300780 return ret;
781 }
782
783 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300784}
785
786/**********************/
787/* Station management */
788/**********************/
789
790static void ath10k_peer_assoc_h_basic(struct ath10k *ar,
791 struct ath10k_vif *arvif,
792 struct ieee80211_sta *sta,
793 struct ieee80211_bss_conf *bss_conf,
794 struct wmi_peer_assoc_complete_arg *arg)
795{
Michal Kazior548db542013-07-05 16:15:15 +0300796 lockdep_assert_held(&ar->conf_mutex);
797
Kalle Valo5e3dd152013-06-12 20:52:10 +0300798 memcpy(arg->addr, sta->addr, ETH_ALEN);
799 arg->vdev_id = arvif->vdev_id;
800 arg->peer_aid = sta->aid;
801 arg->peer_flags |= WMI_PEER_AUTH;
802
803 if (arvif->vdev_type == WMI_VDEV_TYPE_STA)
804 /*
805 * Seems FW have problems with Power Save in STA
806 * mode when we setup this parameter to high (eg. 5).
807 * Often we see that FW don't send NULL (with clean P flags)
808 * frame even there is info about buffered frames in beacons.
809 * Sometimes we have to wait more than 10 seconds before FW
810 * will wakeup. Often sending one ping from AP to our device
811 * just fail (more than 50%).
812 *
813 * Seems setting this FW parameter to 1 couse FW
814 * will check every beacon and will wakup immediately
815 * after detection buffered data.
816 */
817 arg->peer_listen_intval = 1;
818 else
819 arg->peer_listen_intval = ar->hw->conf.listen_interval;
820
821 arg->peer_num_spatial_streams = 1;
822
823 /*
824 * The assoc capabilities are available only in managed mode.
825 */
826 if (arvif->vdev_type == WMI_VDEV_TYPE_STA && bss_conf)
827 arg->peer_caps = bss_conf->assoc_capability;
828}
829
830static void ath10k_peer_assoc_h_crypto(struct ath10k *ar,
831 struct ath10k_vif *arvif,
832 struct wmi_peer_assoc_complete_arg *arg)
833{
834 struct ieee80211_vif *vif = arvif->vif;
835 struct ieee80211_bss_conf *info = &vif->bss_conf;
836 struct cfg80211_bss *bss;
837 const u8 *rsnie = NULL;
838 const u8 *wpaie = NULL;
839
Michal Kazior548db542013-07-05 16:15:15 +0300840 lockdep_assert_held(&ar->conf_mutex);
841
Kalle Valo5e3dd152013-06-12 20:52:10 +0300842 bss = cfg80211_get_bss(ar->hw->wiphy, ar->hw->conf.chandef.chan,
843 info->bssid, NULL, 0, 0, 0);
844 if (bss) {
845 const struct cfg80211_bss_ies *ies;
846
847 rcu_read_lock();
848 rsnie = ieee80211_bss_get_ie(bss, WLAN_EID_RSN);
849
850 ies = rcu_dereference(bss->ies);
851
852 wpaie = cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT,
853 WLAN_OUI_TYPE_MICROSOFT_WPA,
854 ies->data,
855 ies->len);
856 rcu_read_unlock();
857 cfg80211_put_bss(ar->hw->wiphy, bss);
858 }
859
860 /* FIXME: base on RSN IE/WPA IE is a correct idea? */
861 if (rsnie || wpaie) {
862 ath10k_dbg(ATH10K_DBG_WMI, "%s: rsn ie found\n", __func__);
863 arg->peer_flags |= WMI_PEER_NEED_PTK_4_WAY;
864 }
865
866 if (wpaie) {
867 ath10k_dbg(ATH10K_DBG_WMI, "%s: wpa ie found\n", __func__);
868 arg->peer_flags |= WMI_PEER_NEED_GTK_2_WAY;
869 }
870}
871
872static void ath10k_peer_assoc_h_rates(struct ath10k *ar,
873 struct ieee80211_sta *sta,
874 struct wmi_peer_assoc_complete_arg *arg)
875{
876 struct wmi_rate_set_arg *rateset = &arg->peer_legacy_rates;
877 const struct ieee80211_supported_band *sband;
878 const struct ieee80211_rate *rates;
879 u32 ratemask;
880 int i;
881
Michal Kazior548db542013-07-05 16:15:15 +0300882 lockdep_assert_held(&ar->conf_mutex);
883
Kalle Valo5e3dd152013-06-12 20:52:10 +0300884 sband = ar->hw->wiphy->bands[ar->hw->conf.chandef.chan->band];
885 ratemask = sta->supp_rates[ar->hw->conf.chandef.chan->band];
886 rates = sband->bitrates;
887
888 rateset->num_rates = 0;
889
890 for (i = 0; i < 32; i++, ratemask >>= 1, rates++) {
891 if (!(ratemask & 1))
892 continue;
893
894 rateset->rates[rateset->num_rates] = rates->hw_value;
895 rateset->num_rates++;
896 }
897}
898
899static void ath10k_peer_assoc_h_ht(struct ath10k *ar,
900 struct ieee80211_sta *sta,
901 struct wmi_peer_assoc_complete_arg *arg)
902{
903 const struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
904 int smps;
905 int i, n;
906
Michal Kazior548db542013-07-05 16:15:15 +0300907 lockdep_assert_held(&ar->conf_mutex);
908
Kalle Valo5e3dd152013-06-12 20:52:10 +0300909 if (!ht_cap->ht_supported)
910 return;
911
912 arg->peer_flags |= WMI_PEER_HT;
913 arg->peer_max_mpdu = (1 << (IEEE80211_HT_MAX_AMPDU_FACTOR +
914 ht_cap->ampdu_factor)) - 1;
915
916 arg->peer_mpdu_density =
917 ath10k_parse_mpdudensity(ht_cap->ampdu_density);
918
919 arg->peer_ht_caps = ht_cap->cap;
920 arg->peer_rate_caps |= WMI_RC_HT_FLAG;
921
922 if (ht_cap->cap & IEEE80211_HT_CAP_LDPC_CODING)
923 arg->peer_flags |= WMI_PEER_LDPC;
924
925 if (sta->bandwidth >= IEEE80211_STA_RX_BW_40) {
926 arg->peer_flags |= WMI_PEER_40MHZ;
927 arg->peer_rate_caps |= WMI_RC_CW40_FLAG;
928 }
929
930 if (ht_cap->cap & IEEE80211_HT_CAP_SGI_20)
931 arg->peer_rate_caps |= WMI_RC_SGI_FLAG;
932
933 if (ht_cap->cap & IEEE80211_HT_CAP_SGI_40)
934 arg->peer_rate_caps |= WMI_RC_SGI_FLAG;
935
936 if (ht_cap->cap & IEEE80211_HT_CAP_TX_STBC) {
937 arg->peer_rate_caps |= WMI_RC_TX_STBC_FLAG;
938 arg->peer_flags |= WMI_PEER_STBC;
939 }
940
941 if (ht_cap->cap & IEEE80211_HT_CAP_RX_STBC) {
942 u32 stbc;
943 stbc = ht_cap->cap & IEEE80211_HT_CAP_RX_STBC;
944 stbc = stbc >> IEEE80211_HT_CAP_RX_STBC_SHIFT;
945 stbc = stbc << WMI_RC_RX_STBC_FLAG_S;
946 arg->peer_rate_caps |= stbc;
947 arg->peer_flags |= WMI_PEER_STBC;
948 }
949
950 smps = ht_cap->cap & IEEE80211_HT_CAP_SM_PS;
951 smps >>= IEEE80211_HT_CAP_SM_PS_SHIFT;
952
953 if (smps == WLAN_HT_CAP_SM_PS_STATIC) {
954 arg->peer_flags |= WMI_PEER_SPATIAL_MUX;
955 arg->peer_flags |= WMI_PEER_STATIC_MIMOPS;
956 } else if (smps == WLAN_HT_CAP_SM_PS_DYNAMIC) {
957 arg->peer_flags |= WMI_PEER_SPATIAL_MUX;
958 arg->peer_flags |= WMI_PEER_DYN_MIMOPS;
959 }
960
961 if (ht_cap->mcs.rx_mask[1] && ht_cap->mcs.rx_mask[2])
962 arg->peer_rate_caps |= WMI_RC_TS_FLAG;
963 else if (ht_cap->mcs.rx_mask[1])
964 arg->peer_rate_caps |= WMI_RC_DS_FLAG;
965
966 for (i = 0, n = 0; i < IEEE80211_HT_MCS_MASK_LEN*8; i++)
967 if (ht_cap->mcs.rx_mask[i/8] & (1 << i%8))
968 arg->peer_ht_rates.rates[n++] = i;
969
970 arg->peer_ht_rates.num_rates = n;
971 arg->peer_num_spatial_streams = max((n+7) / 8, 1);
972
Kalle Valo60c3daa2013-09-08 17:56:07 +0300973 ath10k_dbg(ATH10K_DBG_MAC, "mac ht peer %pM mcs cnt %d nss %d\n",
974 arg->addr,
Kalle Valo5e3dd152013-06-12 20:52:10 +0300975 arg->peer_ht_rates.num_rates,
976 arg->peer_num_spatial_streams);
977}
978
979static void ath10k_peer_assoc_h_qos_ap(struct ath10k *ar,
980 struct ath10k_vif *arvif,
981 struct ieee80211_sta *sta,
982 struct ieee80211_bss_conf *bss_conf,
983 struct wmi_peer_assoc_complete_arg *arg)
984{
985 u32 uapsd = 0;
986 u32 max_sp = 0;
987
Michal Kazior548db542013-07-05 16:15:15 +0300988 lockdep_assert_held(&ar->conf_mutex);
989
Kalle Valo5e3dd152013-06-12 20:52:10 +0300990 if (sta->wme)
991 arg->peer_flags |= WMI_PEER_QOS;
992
993 if (sta->wme && sta->uapsd_queues) {
Kalle Valo60c3daa2013-09-08 17:56:07 +0300994 ath10k_dbg(ATH10K_DBG_MAC, "mac uapsd_queues 0x%x max_sp %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +0300995 sta->uapsd_queues, sta->max_sp);
996
997 arg->peer_flags |= WMI_PEER_APSD;
Janusz Dziedzicc69029b2013-08-07 12:10:49 +0200998 arg->peer_rate_caps |= WMI_RC_UAPSD_FLAG;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300999
1000 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1001 uapsd |= WMI_AP_PS_UAPSD_AC3_DELIVERY_EN |
1002 WMI_AP_PS_UAPSD_AC3_TRIGGER_EN;
1003 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1004 uapsd |= WMI_AP_PS_UAPSD_AC2_DELIVERY_EN |
1005 WMI_AP_PS_UAPSD_AC2_TRIGGER_EN;
1006 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1007 uapsd |= WMI_AP_PS_UAPSD_AC1_DELIVERY_EN |
1008 WMI_AP_PS_UAPSD_AC1_TRIGGER_EN;
1009 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1010 uapsd |= WMI_AP_PS_UAPSD_AC0_DELIVERY_EN |
1011 WMI_AP_PS_UAPSD_AC0_TRIGGER_EN;
1012
1013
1014 if (sta->max_sp < MAX_WMI_AP_PS_PEER_PARAM_MAX_SP)
1015 max_sp = sta->max_sp;
1016
1017 ath10k_wmi_set_ap_ps_param(ar, arvif->vdev_id,
1018 sta->addr,
1019 WMI_AP_PS_PEER_PARAM_UAPSD,
1020 uapsd);
1021
1022 ath10k_wmi_set_ap_ps_param(ar, arvif->vdev_id,
1023 sta->addr,
1024 WMI_AP_PS_PEER_PARAM_MAX_SP,
1025 max_sp);
1026
1027 /* TODO setup this based on STA listen interval and
1028 beacon interval. Currently we don't know
1029 sta->listen_interval - mac80211 patch required.
1030 Currently use 10 seconds */
1031 ath10k_wmi_set_ap_ps_param(ar, arvif->vdev_id,
1032 sta->addr,
1033 WMI_AP_PS_PEER_PARAM_AGEOUT_TIME,
1034 10);
1035 }
1036}
1037
1038static void ath10k_peer_assoc_h_qos_sta(struct ath10k *ar,
1039 struct ath10k_vif *arvif,
1040 struct ieee80211_sta *sta,
1041 struct ieee80211_bss_conf *bss_conf,
1042 struct wmi_peer_assoc_complete_arg *arg)
1043{
1044 if (bss_conf->qos)
1045 arg->peer_flags |= WMI_PEER_QOS;
1046}
1047
1048static void ath10k_peer_assoc_h_vht(struct ath10k *ar,
1049 struct ieee80211_sta *sta,
1050 struct wmi_peer_assoc_complete_arg *arg)
1051{
1052 const struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap;
Sujith Manoharana24b88b2013-10-07 19:51:57 -07001053 u8 ampdu_factor;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001054
1055 if (!vht_cap->vht_supported)
1056 return;
1057
1058 arg->peer_flags |= WMI_PEER_VHT;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001059 arg->peer_vht_caps = vht_cap->cap;
1060
Sujith Manoharana24b88b2013-10-07 19:51:57 -07001061
1062 ampdu_factor = (vht_cap->cap &
1063 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK) >>
1064 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT;
1065
1066 /* Workaround: Some Netgear/Linksys 11ac APs set Rx A-MPDU factor to
1067 * zero in VHT IE. Using it would result in degraded throughput.
1068 * arg->peer_max_mpdu at this point contains HT max_mpdu so keep
1069 * it if VHT max_mpdu is smaller. */
1070 arg->peer_max_mpdu = max(arg->peer_max_mpdu,
1071 (1U << (IEEE80211_HT_MAX_AMPDU_FACTOR +
1072 ampdu_factor)) - 1);
1073
Kalle Valo5e3dd152013-06-12 20:52:10 +03001074 if (sta->bandwidth == IEEE80211_STA_RX_BW_80)
1075 arg->peer_flags |= WMI_PEER_80MHZ;
1076
1077 arg->peer_vht_rates.rx_max_rate =
1078 __le16_to_cpu(vht_cap->vht_mcs.rx_highest);
1079 arg->peer_vht_rates.rx_mcs_set =
1080 __le16_to_cpu(vht_cap->vht_mcs.rx_mcs_map);
1081 arg->peer_vht_rates.tx_max_rate =
1082 __le16_to_cpu(vht_cap->vht_mcs.tx_highest);
1083 arg->peer_vht_rates.tx_mcs_set =
1084 __le16_to_cpu(vht_cap->vht_mcs.tx_mcs_map);
1085
Kalle Valo60c3daa2013-09-08 17:56:07 +03001086 ath10k_dbg(ATH10K_DBG_MAC, "mac vht peer %pM max_mpdu %d flags 0x%x\n",
1087 sta->addr, arg->peer_max_mpdu, arg->peer_flags);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001088}
1089
1090static void ath10k_peer_assoc_h_qos(struct ath10k *ar,
1091 struct ath10k_vif *arvif,
1092 struct ieee80211_sta *sta,
1093 struct ieee80211_bss_conf *bss_conf,
1094 struct wmi_peer_assoc_complete_arg *arg)
1095{
1096 switch (arvif->vdev_type) {
1097 case WMI_VDEV_TYPE_AP:
1098 ath10k_peer_assoc_h_qos_ap(ar, arvif, sta, bss_conf, arg);
1099 break;
1100 case WMI_VDEV_TYPE_STA:
1101 ath10k_peer_assoc_h_qos_sta(ar, arvif, sta, bss_conf, arg);
1102 break;
1103 default:
1104 break;
1105 }
1106}
1107
1108static void ath10k_peer_assoc_h_phymode(struct ath10k *ar,
1109 struct ath10k_vif *arvif,
1110 struct ieee80211_sta *sta,
1111 struct wmi_peer_assoc_complete_arg *arg)
1112{
1113 enum wmi_phy_mode phymode = MODE_UNKNOWN;
1114
Kalle Valo5e3dd152013-06-12 20:52:10 +03001115 switch (ar->hw->conf.chandef.chan->band) {
1116 case IEEE80211_BAND_2GHZ:
1117 if (sta->ht_cap.ht_supported) {
1118 if (sta->bandwidth == IEEE80211_STA_RX_BW_40)
1119 phymode = MODE_11NG_HT40;
1120 else
1121 phymode = MODE_11NG_HT20;
1122 } else {
1123 phymode = MODE_11G;
1124 }
1125
1126 break;
1127 case IEEE80211_BAND_5GHZ:
Sujith Manoharan7cc45e92013-09-08 18:19:55 +03001128 /*
1129 * Check VHT first.
1130 */
1131 if (sta->vht_cap.vht_supported) {
1132 if (sta->bandwidth == IEEE80211_STA_RX_BW_80)
1133 phymode = MODE_11AC_VHT80;
1134 else if (sta->bandwidth == IEEE80211_STA_RX_BW_40)
1135 phymode = MODE_11AC_VHT40;
1136 else if (sta->bandwidth == IEEE80211_STA_RX_BW_20)
1137 phymode = MODE_11AC_VHT20;
1138 } else if (sta->ht_cap.ht_supported) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001139 if (sta->bandwidth == IEEE80211_STA_RX_BW_40)
1140 phymode = MODE_11NA_HT40;
1141 else
1142 phymode = MODE_11NA_HT20;
1143 } else {
1144 phymode = MODE_11A;
1145 }
1146
1147 break;
1148 default:
1149 break;
1150 }
1151
Kalle Valo38a1d472013-09-08 17:56:14 +03001152 ath10k_dbg(ATH10K_DBG_MAC, "mac peer %pM phymode %s\n",
1153 sta->addr, ath10k_wmi_phymode_str(phymode));
Kalle Valo60c3daa2013-09-08 17:56:07 +03001154
Kalle Valo5e3dd152013-06-12 20:52:10 +03001155 arg->peer_phymode = phymode;
1156 WARN_ON(phymode == MODE_UNKNOWN);
1157}
1158
Kalle Valob9ada652013-10-16 15:44:46 +03001159static int ath10k_peer_assoc_prepare(struct ath10k *ar,
1160 struct ath10k_vif *arvif,
1161 struct ieee80211_sta *sta,
1162 struct ieee80211_bss_conf *bss_conf,
1163 struct wmi_peer_assoc_complete_arg *arg)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001164{
Michal Kazior548db542013-07-05 16:15:15 +03001165 lockdep_assert_held(&ar->conf_mutex);
1166
Kalle Valob9ada652013-10-16 15:44:46 +03001167 memset(arg, 0, sizeof(*arg));
Kalle Valo5e3dd152013-06-12 20:52:10 +03001168
Kalle Valob9ada652013-10-16 15:44:46 +03001169 ath10k_peer_assoc_h_basic(ar, arvif, sta, bss_conf, arg);
1170 ath10k_peer_assoc_h_crypto(ar, arvif, arg);
1171 ath10k_peer_assoc_h_rates(ar, sta, arg);
1172 ath10k_peer_assoc_h_ht(ar, sta, arg);
1173 ath10k_peer_assoc_h_vht(ar, sta, arg);
1174 ath10k_peer_assoc_h_qos(ar, arvif, sta, bss_conf, arg);
1175 ath10k_peer_assoc_h_phymode(ar, arvif, sta, arg);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001176
Kalle Valob9ada652013-10-16 15:44:46 +03001177 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001178}
1179
1180/* can be called only in mac80211 callbacks due to `key_count` usage */
1181static void ath10k_bss_assoc(struct ieee80211_hw *hw,
1182 struct ieee80211_vif *vif,
1183 struct ieee80211_bss_conf *bss_conf)
1184{
1185 struct ath10k *ar = hw->priv;
1186 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
Kalle Valob9ada652013-10-16 15:44:46 +03001187 struct wmi_peer_assoc_complete_arg peer_arg;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001188 struct ieee80211_sta *ap_sta;
1189 int ret;
1190
Michal Kazior548db542013-07-05 16:15:15 +03001191 lockdep_assert_held(&ar->conf_mutex);
1192
Kalle Valo5e3dd152013-06-12 20:52:10 +03001193 rcu_read_lock();
1194
1195 ap_sta = ieee80211_find_sta(vif, bss_conf->bssid);
1196 if (!ap_sta) {
1197 ath10k_warn("Failed to find station entry for %pM\n",
1198 bss_conf->bssid);
1199 rcu_read_unlock();
1200 return;
1201 }
1202
Kalle Valob9ada652013-10-16 15:44:46 +03001203 ret = ath10k_peer_assoc_prepare(ar, arvif, ap_sta,
1204 bss_conf, &peer_arg);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001205 if (ret) {
Kalle Valob9ada652013-10-16 15:44:46 +03001206 ath10k_warn("Peer assoc prepare failed for %pM\n: %d",
1207 bss_conf->bssid, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001208 rcu_read_unlock();
1209 return;
1210 }
1211
1212 rcu_read_unlock();
1213
Kalle Valob9ada652013-10-16 15:44:46 +03001214 ret = ath10k_wmi_peer_assoc(ar, &peer_arg);
1215 if (ret) {
1216 ath10k_warn("Peer assoc failed for %pM\n: %d",
1217 bss_conf->bssid, ret);
1218 return;
1219 }
1220
Kalle Valo60c3daa2013-09-08 17:56:07 +03001221 ath10k_dbg(ATH10K_DBG_MAC,
1222 "mac vdev %d up (associated) bssid %pM aid %d\n",
1223 arvif->vdev_id, bss_conf->bssid, bss_conf->aid);
1224
Kalle Valo5e3dd152013-06-12 20:52:10 +03001225 ret = ath10k_wmi_vdev_up(ar, arvif->vdev_id, bss_conf->aid,
1226 bss_conf->bssid);
1227 if (ret)
1228 ath10k_warn("VDEV: %d up failed: ret %d\n",
1229 arvif->vdev_id, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001230}
1231
1232/*
1233 * FIXME: flush TIDs
1234 */
1235static void ath10k_bss_disassoc(struct ieee80211_hw *hw,
1236 struct ieee80211_vif *vif)
1237{
1238 struct ath10k *ar = hw->priv;
1239 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
1240 int ret;
1241
Michal Kazior548db542013-07-05 16:15:15 +03001242 lockdep_assert_held(&ar->conf_mutex);
1243
Kalle Valo5e3dd152013-06-12 20:52:10 +03001244 /*
1245 * For some reason, calling VDEV-DOWN before VDEV-STOP
1246 * makes the FW to send frames via HTT after disassociation.
1247 * No idea why this happens, even though VDEV-DOWN is supposed
1248 * to be analogous to link down, so just stop the VDEV.
1249 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03001250 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d stop (disassociated\n",
1251 arvif->vdev_id);
1252
1253 /* FIXME: check return value */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001254 ret = ath10k_vdev_stop(arvif);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001255
1256 /*
1257 * If we don't call VDEV-DOWN after VDEV-STOP FW will remain active and
1258 * report beacons from previously associated network through HTT.
1259 * This in turn would spam mac80211 WARN_ON if we bring down all
1260 * interfaces as it expects there is no rx when no interface is
1261 * running.
1262 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03001263 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d down\n", arvif->vdev_id);
1264
1265 /* FIXME: why don't we print error if wmi call fails? */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001266 ret = ath10k_wmi_vdev_down(ar, arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001267
Michal Kaziorcc4827b2013-10-16 15:44:45 +03001268 arvif->def_wep_key_idx = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001269}
1270
1271static int ath10k_station_assoc(struct ath10k *ar, struct ath10k_vif *arvif,
1272 struct ieee80211_sta *sta)
1273{
Kalle Valob9ada652013-10-16 15:44:46 +03001274 struct wmi_peer_assoc_complete_arg peer_arg;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001275 int ret = 0;
1276
Michal Kazior548db542013-07-05 16:15:15 +03001277 lockdep_assert_held(&ar->conf_mutex);
1278
Kalle Valob9ada652013-10-16 15:44:46 +03001279 ret = ath10k_peer_assoc_prepare(ar, arvif, sta, NULL, &peer_arg);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001280 if (ret) {
Kalle Valob9ada652013-10-16 15:44:46 +03001281 ath10k_warn("WMI peer assoc prepare failed for %pM\n",
1282 sta->addr);
1283 return ret;
1284 }
1285
1286 ret = ath10k_wmi_peer_assoc(ar, &peer_arg);
1287 if (ret) {
1288 ath10k_warn("Peer assoc failed for STA %pM\n: %d",
1289 sta->addr, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001290 return ret;
1291 }
1292
1293 ret = ath10k_install_peer_wep_keys(arvif, sta->addr);
1294 if (ret) {
1295 ath10k_warn("could not install peer wep keys (%d)\n", ret);
1296 return ret;
1297 }
1298
1299 return ret;
1300}
1301
1302static int ath10k_station_disassoc(struct ath10k *ar, struct ath10k_vif *arvif,
1303 struct ieee80211_sta *sta)
1304{
1305 int ret = 0;
1306
Michal Kazior548db542013-07-05 16:15:15 +03001307 lockdep_assert_held(&ar->conf_mutex);
1308
Kalle Valo5e3dd152013-06-12 20:52:10 +03001309 ret = ath10k_clear_peer_keys(arvif, sta->addr);
1310 if (ret) {
1311 ath10k_warn("could not clear all peer wep keys (%d)\n", ret);
1312 return ret;
1313 }
1314
1315 return ret;
1316}
1317
1318/**************/
1319/* Regulatory */
1320/**************/
1321
1322static int ath10k_update_channel_list(struct ath10k *ar)
1323{
1324 struct ieee80211_hw *hw = ar->hw;
1325 struct ieee80211_supported_band **bands;
1326 enum ieee80211_band band;
1327 struct ieee80211_channel *channel;
1328 struct wmi_scan_chan_list_arg arg = {0};
1329 struct wmi_channel_arg *ch;
1330 bool passive;
1331 int len;
1332 int ret;
1333 int i;
1334
Michal Kazior548db542013-07-05 16:15:15 +03001335 lockdep_assert_held(&ar->conf_mutex);
1336
Kalle Valo5e3dd152013-06-12 20:52:10 +03001337 bands = hw->wiphy->bands;
1338 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1339 if (!bands[band])
1340 continue;
1341
1342 for (i = 0; i < bands[band]->n_channels; i++) {
1343 if (bands[band]->channels[i].flags &
1344 IEEE80211_CHAN_DISABLED)
1345 continue;
1346
1347 arg.n_channels++;
1348 }
1349 }
1350
1351 len = sizeof(struct wmi_channel_arg) * arg.n_channels;
1352 arg.channels = kzalloc(len, GFP_KERNEL);
1353 if (!arg.channels)
1354 return -ENOMEM;
1355
1356 ch = arg.channels;
1357 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1358 if (!bands[band])
1359 continue;
1360
1361 for (i = 0; i < bands[band]->n_channels; i++) {
1362 channel = &bands[band]->channels[i];
1363
1364 if (channel->flags & IEEE80211_CHAN_DISABLED)
1365 continue;
1366
1367 ch->allow_ht = true;
1368
1369 /* FIXME: when should we really allow VHT? */
1370 ch->allow_vht = true;
1371
1372 ch->allow_ibss =
1373 !(channel->flags & IEEE80211_CHAN_NO_IBSS);
1374
1375 ch->ht40plus =
1376 !(channel->flags & IEEE80211_CHAN_NO_HT40PLUS);
1377
1378 passive = channel->flags & IEEE80211_CHAN_PASSIVE_SCAN;
1379 ch->passive = passive;
1380
1381 ch->freq = channel->center_freq;
Michal Kazior89c5c842013-10-23 04:02:13 -07001382 ch->min_power = 0;
Michal Kazior02256932013-10-23 04:02:14 -07001383 ch->max_power = channel->max_power * 2;
1384 ch->max_reg_power = channel->max_reg_power * 2;
1385 ch->max_antenna_gain = channel->max_antenna_gain * 2;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001386 ch->reg_class_id = 0; /* FIXME */
1387
1388 /* FIXME: why use only legacy modes, why not any
1389 * HT/VHT modes? Would that even make any
1390 * difference? */
1391 if (channel->band == IEEE80211_BAND_2GHZ)
1392 ch->mode = MODE_11G;
1393 else
1394 ch->mode = MODE_11A;
1395
1396 if (WARN_ON_ONCE(ch->mode == MODE_UNKNOWN))
1397 continue;
1398
1399 ath10k_dbg(ATH10K_DBG_WMI,
Kalle Valo60c3daa2013-09-08 17:56:07 +03001400 "mac channel [%zd/%d] freq %d maxpower %d regpower %d antenna %d mode %d\n",
1401 ch - arg.channels, arg.n_channels,
Kalle Valo5e3dd152013-06-12 20:52:10 +03001402 ch->freq, ch->max_power, ch->max_reg_power,
1403 ch->max_antenna_gain, ch->mode);
1404
1405 ch++;
1406 }
1407 }
1408
1409 ret = ath10k_wmi_scan_chan_list(ar, &arg);
1410 kfree(arg.channels);
1411
1412 return ret;
1413}
1414
Michal Kaziorf7843d72013-07-16 09:38:52 +02001415static void ath10k_regd_update(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001416{
Kalle Valo5e3dd152013-06-12 20:52:10 +03001417 struct reg_dmn_pair_mapping *regpair;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001418 int ret;
1419
Michal Kaziorf7843d72013-07-16 09:38:52 +02001420 lockdep_assert_held(&ar->conf_mutex);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001421
1422 ret = ath10k_update_channel_list(ar);
1423 if (ret)
1424 ath10k_warn("could not update channel list (%d)\n", ret);
1425
1426 regpair = ar->ath_common.regulatory.regpair;
Michal Kaziorf7843d72013-07-16 09:38:52 +02001427
Kalle Valo5e3dd152013-06-12 20:52:10 +03001428 /* Target allows setting up per-band regdomain but ath_common provides
1429 * a combined one only */
1430 ret = ath10k_wmi_pdev_set_regdomain(ar,
1431 regpair->regDmnEnum,
1432 regpair->regDmnEnum, /* 2ghz */
1433 regpair->regDmnEnum, /* 5ghz */
1434 regpair->reg_2ghz_ctl,
1435 regpair->reg_5ghz_ctl);
1436 if (ret)
1437 ath10k_warn("could not set pdev regdomain (%d)\n", ret);
Michal Kaziorf7843d72013-07-16 09:38:52 +02001438}
Michal Kazior548db542013-07-05 16:15:15 +03001439
Michal Kaziorf7843d72013-07-16 09:38:52 +02001440static void ath10k_reg_notifier(struct wiphy *wiphy,
1441 struct regulatory_request *request)
1442{
1443 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
1444 struct ath10k *ar = hw->priv;
Janusz Dziedzic9702c682013-11-20 09:59:41 +02001445 bool result;
Michal Kaziorf7843d72013-07-16 09:38:52 +02001446
1447 ath_reg_notifier_apply(wiphy, request, &ar->ath_common.regulatory);
1448
Janusz Dziedzic9702c682013-11-20 09:59:41 +02001449 if (config_enabled(CONFIG_ATH10K_DFS_CERTIFIED) && ar->dfs_detector) {
1450 ath10k_dbg(ATH10K_DBG_REGULATORY, "dfs region 0x%x\n",
1451 request->dfs_region);
1452 result = ar->dfs_detector->set_dfs_domain(ar->dfs_detector,
1453 request->dfs_region);
1454 if (!result)
1455 ath10k_warn("dfs region 0x%X not supported, will trigger radar for every pulse\n",
1456 request->dfs_region);
1457 }
1458
Michal Kaziorf7843d72013-07-16 09:38:52 +02001459 mutex_lock(&ar->conf_mutex);
1460 if (ar->state == ATH10K_STATE_ON)
1461 ath10k_regd_update(ar);
Michal Kazior548db542013-07-05 16:15:15 +03001462 mutex_unlock(&ar->conf_mutex);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001463}
1464
1465/***************/
1466/* TX handlers */
1467/***************/
1468
Michal Kazior42c3aa62013-10-02 11:03:38 +02001469static u8 ath10k_tx_h_get_tid(struct ieee80211_hdr *hdr)
1470{
1471 if (ieee80211_is_mgmt(hdr->frame_control))
1472 return HTT_DATA_TX_EXT_TID_MGMT;
1473
1474 if (!ieee80211_is_data_qos(hdr->frame_control))
1475 return HTT_DATA_TX_EXT_TID_NON_QOS_MCAST_BCAST;
1476
1477 if (!is_unicast_ether_addr(ieee80211_get_DA(hdr)))
1478 return HTT_DATA_TX_EXT_TID_NON_QOS_MCAST_BCAST;
1479
1480 return ieee80211_get_qos_ctl(hdr)[0] & IEEE80211_QOS_CTL_TID_MASK;
1481}
1482
Michal Kaziorddb6ad72013-10-02 11:03:39 +02001483static u8 ath10k_tx_h_get_vdev_id(struct ath10k *ar,
1484 struct ieee80211_tx_info *info)
1485{
1486 if (info->control.vif)
1487 return ath10k_vif_to_arvif(info->control.vif)->vdev_id;
1488
1489 if (ar->monitor_enabled)
1490 return ar->monitor_vdev_id;
1491
1492 ath10k_warn("could not resolve vdev id\n");
1493 return 0;
1494}
1495
Kalle Valo5e3dd152013-06-12 20:52:10 +03001496/*
1497 * Frames sent to the FW have to be in "Native Wifi" format.
1498 * Strip the QoS field from the 802.11 header.
1499 */
1500static void ath10k_tx_h_qos_workaround(struct ieee80211_hw *hw,
1501 struct ieee80211_tx_control *control,
1502 struct sk_buff *skb)
1503{
1504 struct ieee80211_hdr *hdr = (void *)skb->data;
1505 u8 *qos_ctl;
1506
1507 if (!ieee80211_is_data_qos(hdr->frame_control))
1508 return;
1509
1510 qos_ctl = ieee80211_get_qos_ctl(hdr);
Michal Kaziorba0ccd72013-07-22 14:25:28 +02001511 memmove(skb->data + IEEE80211_QOS_CTL_LEN,
1512 skb->data, (void *)qos_ctl - (void *)skb->data);
1513 skb_pull(skb, IEEE80211_QOS_CTL_LEN);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001514}
1515
Michal Kaziorcc4827b2013-10-16 15:44:45 +03001516static void ath10k_tx_wep_key_work(struct work_struct *work)
1517{
1518 struct ath10k_vif *arvif = container_of(work, struct ath10k_vif,
1519 wep_key_work);
1520 int ret, keyidx = arvif->def_wep_key_newidx;
1521
1522 if (arvif->def_wep_key_idx == keyidx)
1523 return;
1524
1525 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d set keyidx %d\n",
1526 arvif->vdev_id, keyidx);
1527
1528 ret = ath10k_wmi_vdev_set_param(arvif->ar,
1529 arvif->vdev_id,
1530 arvif->ar->wmi.vdev_param->def_keyid,
1531 keyidx);
1532 if (ret) {
1533 ath10k_warn("could not update wep keyidx (%d)\n", ret);
1534 return;
1535 }
1536
1537 arvif->def_wep_key_idx = keyidx;
1538}
1539
Kalle Valo5e3dd152013-06-12 20:52:10 +03001540static void ath10k_tx_h_update_wep_key(struct sk_buff *skb)
1541{
1542 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1543 struct ieee80211_vif *vif = info->control.vif;
1544 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
1545 struct ath10k *ar = arvif->ar;
1546 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1547 struct ieee80211_key_conf *key = info->control.hw_key;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001548
Kalle Valo5e3dd152013-06-12 20:52:10 +03001549 if (!ieee80211_has_protected(hdr->frame_control))
1550 return;
1551
1552 if (!key)
1553 return;
1554
1555 if (key->cipher != WLAN_CIPHER_SUITE_WEP40 &&
1556 key->cipher != WLAN_CIPHER_SUITE_WEP104)
1557 return;
1558
Michal Kaziorcc4827b2013-10-16 15:44:45 +03001559 if (key->keyidx == arvif->def_wep_key_idx)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001560 return;
1561
Michal Kaziorcc4827b2013-10-16 15:44:45 +03001562 /* FIXME: Most likely a few frames will be TXed with an old key. Simply
1563 * queueing frames until key index is updated is not an option because
1564 * sk_buff may need more processing to be done, e.g. offchannel */
1565 arvif->def_wep_key_newidx = key->keyidx;
1566 ieee80211_queue_work(ar->hw, &arvif->wep_key_work);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001567}
1568
1569static void ath10k_tx_h_add_p2p_noa_ie(struct ath10k *ar, struct sk_buff *skb)
1570{
1571 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1572 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1573 struct ieee80211_vif *vif = info->control.vif;
1574 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
1575
1576 /* This is case only for P2P_GO */
1577 if (arvif->vdev_type != WMI_VDEV_TYPE_AP ||
1578 arvif->vdev_subtype != WMI_VDEV_SUBTYPE_P2P_GO)
1579 return;
1580
1581 if (unlikely(ieee80211_is_probe_resp(hdr->frame_control))) {
1582 spin_lock_bh(&ar->data_lock);
1583 if (arvif->u.ap.noa_data)
1584 if (!pskb_expand_head(skb, 0, arvif->u.ap.noa_len,
1585 GFP_ATOMIC))
1586 memcpy(skb_put(skb, arvif->u.ap.noa_len),
1587 arvif->u.ap.noa_data,
1588 arvif->u.ap.noa_len);
1589 spin_unlock_bh(&ar->data_lock);
1590 }
1591}
1592
1593static void ath10k_tx_htt(struct ath10k *ar, struct sk_buff *skb)
1594{
1595 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001596 int ret = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001597
Michal Kazior961d4c32013-08-09 10:13:34 +02001598 if (ar->htt.target_version_major >= 3) {
1599 /* Since HTT 3.0 there is no separate mgmt tx command */
1600 ret = ath10k_htt_tx(&ar->htt, skb);
1601 goto exit;
1602 }
1603
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001604 if (ieee80211_is_mgmt(hdr->frame_control)) {
1605 if (test_bit(ATH10K_FW_FEATURE_HAS_WMI_MGMT_TX,
1606 ar->fw_features)) {
1607 if (skb_queue_len(&ar->wmi_mgmt_tx_queue) >=
1608 ATH10K_MAX_NUM_MGMT_PENDING) {
1609 ath10k_warn("wmi mgmt_tx queue limit reached\n");
1610 ret = -EBUSY;
1611 goto exit;
1612 }
1613
1614 skb_queue_tail(&ar->wmi_mgmt_tx_queue, skb);
1615 ieee80211_queue_work(ar->hw, &ar->wmi_mgmt_tx_work);
1616 } else {
1617 ret = ath10k_htt_mgmt_tx(&ar->htt, skb);
1618 }
1619 } else if (!test_bit(ATH10K_FW_FEATURE_HAS_WMI_MGMT_TX,
1620 ar->fw_features) &&
1621 ieee80211_is_nullfunc(hdr->frame_control)) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001622 /* FW does not report tx status properly for NullFunc frames
1623 * unless they are sent through mgmt tx path. mac80211 sends
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001624 * those frames when it detects link/beacon loss and depends
1625 * on the tx status to be correct. */
Michal Kazioredb82362013-07-05 16:15:14 +03001626 ret = ath10k_htt_mgmt_tx(&ar->htt, skb);
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001627 } else {
Michal Kazioredb82362013-07-05 16:15:14 +03001628 ret = ath10k_htt_tx(&ar->htt, skb);
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001629 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03001630
Michal Kazior961d4c32013-08-09 10:13:34 +02001631exit:
Kalle Valo5e3dd152013-06-12 20:52:10 +03001632 if (ret) {
1633 ath10k_warn("tx failed (%d). dropping packet.\n", ret);
1634 ieee80211_free_txskb(ar->hw, skb);
1635 }
1636}
1637
1638void ath10k_offchan_tx_purge(struct ath10k *ar)
1639{
1640 struct sk_buff *skb;
1641
1642 for (;;) {
1643 skb = skb_dequeue(&ar->offchan_tx_queue);
1644 if (!skb)
1645 break;
1646
1647 ieee80211_free_txskb(ar->hw, skb);
1648 }
1649}
1650
1651void ath10k_offchan_tx_work(struct work_struct *work)
1652{
1653 struct ath10k *ar = container_of(work, struct ath10k, offchan_tx_work);
1654 struct ath10k_peer *peer;
1655 struct ieee80211_hdr *hdr;
1656 struct sk_buff *skb;
1657 const u8 *peer_addr;
1658 int vdev_id;
1659 int ret;
1660
1661 /* FW requirement: We must create a peer before FW will send out
1662 * an offchannel frame. Otherwise the frame will be stuck and
1663 * never transmitted. We delete the peer upon tx completion.
1664 * It is unlikely that a peer for offchannel tx will already be
1665 * present. However it may be in some rare cases so account for that.
1666 * Otherwise we might remove a legitimate peer and break stuff. */
1667
1668 for (;;) {
1669 skb = skb_dequeue(&ar->offchan_tx_queue);
1670 if (!skb)
1671 break;
1672
1673 mutex_lock(&ar->conf_mutex);
1674
Kalle Valo60c3daa2013-09-08 17:56:07 +03001675 ath10k_dbg(ATH10K_DBG_MAC, "mac offchannel skb %p\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03001676 skb);
1677
1678 hdr = (struct ieee80211_hdr *)skb->data;
1679 peer_addr = ieee80211_get_DA(hdr);
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001680 vdev_id = ATH10K_SKB_CB(skb)->vdev_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001681
1682 spin_lock_bh(&ar->data_lock);
1683 peer = ath10k_peer_find(ar, vdev_id, peer_addr);
1684 spin_unlock_bh(&ar->data_lock);
1685
1686 if (peer)
Kalle Valo60c3daa2013-09-08 17:56:07 +03001687 /* FIXME: should this use ath10k_warn()? */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001688 ath10k_dbg(ATH10K_DBG_MAC, "peer %pM on vdev %d already present\n",
1689 peer_addr, vdev_id);
1690
1691 if (!peer) {
1692 ret = ath10k_peer_create(ar, vdev_id, peer_addr);
1693 if (ret)
1694 ath10k_warn("peer %pM on vdev %d not created (%d)\n",
1695 peer_addr, vdev_id, ret);
1696 }
1697
1698 spin_lock_bh(&ar->data_lock);
1699 INIT_COMPLETION(ar->offchan_tx_completed);
1700 ar->offchan_tx_skb = skb;
1701 spin_unlock_bh(&ar->data_lock);
1702
1703 ath10k_tx_htt(ar, skb);
1704
1705 ret = wait_for_completion_timeout(&ar->offchan_tx_completed,
1706 3 * HZ);
1707 if (ret <= 0)
1708 ath10k_warn("timed out waiting for offchannel skb %p\n",
1709 skb);
1710
1711 if (!peer) {
1712 ret = ath10k_peer_delete(ar, vdev_id, peer_addr);
1713 if (ret)
1714 ath10k_warn("peer %pM on vdev %d not deleted (%d)\n",
1715 peer_addr, vdev_id, ret);
1716 }
1717
1718 mutex_unlock(&ar->conf_mutex);
1719 }
1720}
1721
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001722void ath10k_mgmt_over_wmi_tx_purge(struct ath10k *ar)
1723{
1724 struct sk_buff *skb;
1725
1726 for (;;) {
1727 skb = skb_dequeue(&ar->wmi_mgmt_tx_queue);
1728 if (!skb)
1729 break;
1730
1731 ieee80211_free_txskb(ar->hw, skb);
1732 }
1733}
1734
1735void ath10k_mgmt_over_wmi_tx_work(struct work_struct *work)
1736{
1737 struct ath10k *ar = container_of(work, struct ath10k, wmi_mgmt_tx_work);
1738 struct sk_buff *skb;
1739 int ret;
1740
1741 for (;;) {
1742 skb = skb_dequeue(&ar->wmi_mgmt_tx_queue);
1743 if (!skb)
1744 break;
1745
1746 ret = ath10k_wmi_mgmt_tx(ar, skb);
Michal Kazior5fb5e412013-10-28 07:18:13 +01001747 if (ret) {
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001748 ath10k_warn("wmi mgmt_tx failed (%d)\n", ret);
Michal Kazior5fb5e412013-10-28 07:18:13 +01001749 ieee80211_free_txskb(ar->hw, skb);
1750 }
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001751 }
1752}
1753
Kalle Valo5e3dd152013-06-12 20:52:10 +03001754/************/
1755/* Scanning */
1756/************/
1757
1758/*
1759 * This gets called if we dont get a heart-beat during scan.
1760 * This may indicate the FW has hung and we need to abort the
1761 * scan manually to prevent cancel_hw_scan() from deadlocking
1762 */
1763void ath10k_reset_scan(unsigned long ptr)
1764{
1765 struct ath10k *ar = (struct ath10k *)ptr;
1766
1767 spin_lock_bh(&ar->data_lock);
1768 if (!ar->scan.in_progress) {
1769 spin_unlock_bh(&ar->data_lock);
1770 return;
1771 }
1772
1773 ath10k_warn("scan timeout. resetting. fw issue?\n");
1774
1775 if (ar->scan.is_roc)
1776 ieee80211_remain_on_channel_expired(ar->hw);
1777 else
1778 ieee80211_scan_completed(ar->hw, 1 /* aborted */);
1779
1780 ar->scan.in_progress = false;
1781 complete_all(&ar->scan.completed);
1782 spin_unlock_bh(&ar->data_lock);
1783}
1784
1785static int ath10k_abort_scan(struct ath10k *ar)
1786{
1787 struct wmi_stop_scan_arg arg = {
1788 .req_id = 1, /* FIXME */
1789 .req_type = WMI_SCAN_STOP_ONE,
1790 .u.scan_id = ATH10K_SCAN_ID,
1791 };
1792 int ret;
1793
1794 lockdep_assert_held(&ar->conf_mutex);
1795
1796 del_timer_sync(&ar->scan.timeout);
1797
1798 spin_lock_bh(&ar->data_lock);
1799 if (!ar->scan.in_progress) {
1800 spin_unlock_bh(&ar->data_lock);
1801 return 0;
1802 }
1803
1804 ar->scan.aborting = true;
1805 spin_unlock_bh(&ar->data_lock);
1806
1807 ret = ath10k_wmi_stop_scan(ar, &arg);
1808 if (ret) {
1809 ath10k_warn("could not submit wmi stop scan (%d)\n", ret);
Michal Kazioradb8c9b2013-07-05 16:15:16 +03001810 spin_lock_bh(&ar->data_lock);
1811 ar->scan.in_progress = false;
1812 ath10k_offchan_tx_purge(ar);
1813 spin_unlock_bh(&ar->data_lock);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001814 return -EIO;
1815 }
1816
Kalle Valo5e3dd152013-06-12 20:52:10 +03001817 ret = wait_for_completion_timeout(&ar->scan.completed, 3*HZ);
1818 if (ret == 0)
1819 ath10k_warn("timed out while waiting for scan to stop\n");
1820
1821 /* scan completion may be done right after we timeout here, so let's
1822 * check the in_progress and tell mac80211 scan is completed. if we
1823 * don't do that and FW fails to send us scan completion indication
1824 * then userspace won't be able to scan anymore */
1825 ret = 0;
1826
1827 spin_lock_bh(&ar->data_lock);
1828 if (ar->scan.in_progress) {
1829 ath10k_warn("could not stop scan. its still in progress\n");
1830 ar->scan.in_progress = false;
1831 ath10k_offchan_tx_purge(ar);
1832 ret = -ETIMEDOUT;
1833 }
1834 spin_unlock_bh(&ar->data_lock);
1835
1836 return ret;
1837}
1838
1839static int ath10k_start_scan(struct ath10k *ar,
1840 const struct wmi_start_scan_arg *arg)
1841{
1842 int ret;
1843
1844 lockdep_assert_held(&ar->conf_mutex);
1845
1846 ret = ath10k_wmi_start_scan(ar, arg);
1847 if (ret)
1848 return ret;
1849
Kalle Valo5e3dd152013-06-12 20:52:10 +03001850 ret = wait_for_completion_timeout(&ar->scan.started, 1*HZ);
1851 if (ret == 0) {
1852 ath10k_abort_scan(ar);
1853 return ret;
1854 }
1855
1856 /* the scan can complete earlier, before we even
1857 * start the timer. in that case the timer handler
1858 * checks ar->scan.in_progress and bails out if its
1859 * false. Add a 200ms margin to account event/command
1860 * processing. */
1861 mod_timer(&ar->scan.timeout, jiffies +
1862 msecs_to_jiffies(arg->max_scan_time+200));
1863 return 0;
1864}
1865
1866/**********************/
1867/* mac80211 callbacks */
1868/**********************/
1869
1870static void ath10k_tx(struct ieee80211_hw *hw,
1871 struct ieee80211_tx_control *control,
1872 struct sk_buff *skb)
1873{
1874 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1875 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1876 struct ath10k *ar = hw->priv;
Michal Kaziorddb6ad72013-10-02 11:03:39 +02001877 u8 tid, vdev_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001878
1879 /* We should disable CCK RATE due to P2P */
1880 if (info->flags & IEEE80211_TX_CTL_NO_CCK_RATE)
1881 ath10k_dbg(ATH10K_DBG_MAC, "IEEE80211_TX_CTL_NO_CCK_RATE\n");
1882
1883 /* we must calculate tid before we apply qos workaround
1884 * as we'd lose the qos control field */
Michal Kazior42c3aa62013-10-02 11:03:38 +02001885 tid = ath10k_tx_h_get_tid(hdr);
Michal Kaziorddb6ad72013-10-02 11:03:39 +02001886 vdev_id = ath10k_tx_h_get_vdev_id(ar, info);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001887
Michal Kaziorcf84bd42013-07-16 11:04:54 +02001888 /* it makes no sense to process injected frames like that */
1889 if (info->control.vif &&
1890 info->control.vif->type != NL80211_IFTYPE_MONITOR) {
1891 ath10k_tx_h_qos_workaround(hw, control, skb);
1892 ath10k_tx_h_update_wep_key(skb);
1893 ath10k_tx_h_add_p2p_noa_ie(ar, skb);
1894 ath10k_tx_h_seq_no(skb);
1895 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03001896
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001897 ATH10K_SKB_CB(skb)->vdev_id = vdev_id;
Michal Kazior27bb1782013-09-18 14:43:19 +02001898 ATH10K_SKB_CB(skb)->htt.is_offchan = false;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001899 ATH10K_SKB_CB(skb)->htt.tid = tid;
1900
1901 if (info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) {
1902 spin_lock_bh(&ar->data_lock);
1903 ATH10K_SKB_CB(skb)->htt.is_offchan = true;
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001904 ATH10K_SKB_CB(skb)->vdev_id = ar->scan.vdev_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001905 spin_unlock_bh(&ar->data_lock);
1906
1907 ath10k_dbg(ATH10K_DBG_MAC, "queued offchannel skb %p\n", skb);
1908
1909 skb_queue_tail(&ar->offchan_tx_queue, skb);
1910 ieee80211_queue_work(hw, &ar->offchan_tx_work);
1911 return;
1912 }
1913
1914 ath10k_tx_htt(ar, skb);
1915}
1916
1917/*
1918 * Initialize various parameters with default vaules.
1919 */
Michal Kazioraffd3212013-07-16 09:54:35 +02001920void ath10k_halt(struct ath10k *ar)
Michal Kazior818bdd12013-07-16 09:38:57 +02001921{
1922 lockdep_assert_held(&ar->conf_mutex);
1923
1924 del_timer_sync(&ar->scan.timeout);
1925 ath10k_offchan_tx_purge(ar);
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001926 ath10k_mgmt_over_wmi_tx_purge(ar);
Michal Kazior818bdd12013-07-16 09:38:57 +02001927 ath10k_peer_cleanup_all(ar);
1928 ath10k_core_stop(ar);
1929 ath10k_hif_power_down(ar);
1930
1931 spin_lock_bh(&ar->data_lock);
1932 if (ar->scan.in_progress) {
1933 del_timer(&ar->scan.timeout);
1934 ar->scan.in_progress = false;
1935 ieee80211_scan_completed(ar->hw, true);
1936 }
1937 spin_unlock_bh(&ar->data_lock);
1938}
1939
Kalle Valo5e3dd152013-06-12 20:52:10 +03001940static int ath10k_start(struct ieee80211_hw *hw)
1941{
1942 struct ath10k *ar = hw->priv;
Michal Kazior818bdd12013-07-16 09:38:57 +02001943 int ret = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001944
Michal Kazior548db542013-07-05 16:15:15 +03001945 mutex_lock(&ar->conf_mutex);
1946
Michal Kazioraffd3212013-07-16 09:54:35 +02001947 if (ar->state != ATH10K_STATE_OFF &&
1948 ar->state != ATH10K_STATE_RESTARTING) {
Michal Kazior818bdd12013-07-16 09:38:57 +02001949 ret = -EINVAL;
1950 goto exit;
1951 }
1952
1953 ret = ath10k_hif_power_up(ar);
1954 if (ret) {
1955 ath10k_err("could not init hif (%d)\n", ret);
1956 ar->state = ATH10K_STATE_OFF;
1957 goto exit;
1958 }
1959
1960 ret = ath10k_core_start(ar);
1961 if (ret) {
1962 ath10k_err("could not init core (%d)\n", ret);
1963 ath10k_hif_power_down(ar);
1964 ar->state = ATH10K_STATE_OFF;
1965 goto exit;
1966 }
1967
Michal Kazioraffd3212013-07-16 09:54:35 +02001968 if (ar->state == ATH10K_STATE_OFF)
1969 ar->state = ATH10K_STATE_ON;
1970 else if (ar->state == ATH10K_STATE_RESTARTING)
1971 ar->state = ATH10K_STATE_RESTARTED;
1972
Bartosz Markowski226a3392013-09-26 17:47:16 +02001973 ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->pmf_qos, 1);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001974 if (ret)
1975 ath10k_warn("could not enable WMI_PDEV_PARAM_PMF_QOS (%d)\n",
1976 ret);
1977
Michal Kaziorc4dd0d02013-11-13 11:05:10 +01001978 ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->dynamic_bw, 1);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001979 if (ret)
1980 ath10k_warn("could not init WMI_PDEV_PARAM_DYNAMIC_BW (%d)\n",
1981 ret);
1982
Michal Kaziorf7843d72013-07-16 09:38:52 +02001983 ath10k_regd_update(ar);
1984
Michal Kazior818bdd12013-07-16 09:38:57 +02001985exit:
Michal Kazior548db542013-07-05 16:15:15 +03001986 mutex_unlock(&ar->conf_mutex);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001987 return 0;
1988}
1989
1990static void ath10k_stop(struct ieee80211_hw *hw)
1991{
1992 struct ath10k *ar = hw->priv;
1993
Michal Kazior548db542013-07-05 16:15:15 +03001994 mutex_lock(&ar->conf_mutex);
Michal Kazioraffd3212013-07-16 09:54:35 +02001995 if (ar->state == ATH10K_STATE_ON ||
1996 ar->state == ATH10K_STATE_RESTARTED ||
1997 ar->state == ATH10K_STATE_WEDGED)
Michal Kazior818bdd12013-07-16 09:38:57 +02001998 ath10k_halt(ar);
Michal Kaziora96d7742013-07-16 09:38:56 +02001999
Michal Kaziorf7843d72013-07-16 09:38:52 +02002000 ar->state = ATH10K_STATE_OFF;
Michal Kazior548db542013-07-05 16:15:15 +03002001 mutex_unlock(&ar->conf_mutex);
2002
Bartosz Markowski5e00d312013-09-26 17:47:12 +02002003 ath10k_mgmt_over_wmi_tx_purge(ar);
2004
Michal Kazior548db542013-07-05 16:15:15 +03002005 cancel_work_sync(&ar->offchan_tx_work);
Bartosz Markowski5e00d312013-09-26 17:47:12 +02002006 cancel_work_sync(&ar->wmi_mgmt_tx_work);
Michal Kazioraffd3212013-07-16 09:54:35 +02002007 cancel_work_sync(&ar->restart_work);
2008}
2009
Michal Kaziorad088bf2013-10-16 15:44:46 +03002010static int ath10k_config_ps(struct ath10k *ar)
Michal Kazioraffd3212013-07-16 09:54:35 +02002011{
Michal Kaziorad088bf2013-10-16 15:44:46 +03002012 struct ath10k_vif *arvif;
2013 int ret = 0;
Michal Kazioraffd3212013-07-16 09:54:35 +02002014
2015 lockdep_assert_held(&ar->conf_mutex);
2016
Michal Kaziorad088bf2013-10-16 15:44:46 +03002017 list_for_each_entry(arvif, &ar->arvifs, list) {
2018 ret = ath10k_mac_vif_setup_ps(arvif);
2019 if (ret) {
2020 ath10k_warn("could not setup powersave (%d)\n", ret);
2021 break;
2022 }
2023 }
Michal Kazioraffd3212013-07-16 09:54:35 +02002024
Michal Kaziorad088bf2013-10-16 15:44:46 +03002025 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002026}
2027
2028static int ath10k_config(struct ieee80211_hw *hw, u32 changed)
2029{
Kalle Valo5e3dd152013-06-12 20:52:10 +03002030 struct ath10k *ar = hw->priv;
2031 struct ieee80211_conf *conf = &hw->conf;
2032 int ret = 0;
Michal Kazior5474efe2013-10-23 04:02:15 -07002033 u32 param;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002034
2035 mutex_lock(&ar->conf_mutex);
2036
2037 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03002038 ath10k_dbg(ATH10K_DBG_MAC, "mac config channel %d mhz\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03002039 conf->chandef.chan->center_freq);
2040 spin_lock_bh(&ar->data_lock);
2041 ar->rx_channel = conf->chandef.chan;
2042 spin_unlock_bh(&ar->data_lock);
2043 }
2044
Michal Kazior5474efe2013-10-23 04:02:15 -07002045 if (changed & IEEE80211_CONF_CHANGE_POWER) {
2046 ath10k_dbg(ATH10K_DBG_MAC, "mac config power %d\n",
2047 hw->conf.power_level);
2048
2049 param = ar->wmi.pdev_param->txpower_limit2g;
2050 ret = ath10k_wmi_pdev_set_param(ar, param,
2051 hw->conf.power_level * 2);
2052 if (ret)
2053 ath10k_warn("mac failed to set 2g txpower %d (%d)\n",
2054 hw->conf.power_level, ret);
2055
2056 param = ar->wmi.pdev_param->txpower_limit5g;
2057 ret = ath10k_wmi_pdev_set_param(ar, param,
2058 hw->conf.power_level * 2);
2059 if (ret)
2060 ath10k_warn("mac failed to set 5g txpower %d (%d)\n",
2061 hw->conf.power_level, ret);
2062 }
2063
Michal Kazioraffd3212013-07-16 09:54:35 +02002064 if (changed & IEEE80211_CONF_CHANGE_PS)
2065 ath10k_config_ps(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002066
2067 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
2068 if (conf->flags & IEEE80211_CONF_MONITOR)
2069 ret = ath10k_monitor_create(ar);
2070 else
2071 ret = ath10k_monitor_destroy(ar);
2072 }
2073
2074 mutex_unlock(&ar->conf_mutex);
2075 return ret;
2076}
2077
2078/*
2079 * TODO:
2080 * Figure out how to handle WMI_VDEV_SUBTYPE_P2P_DEVICE,
2081 * because we will send mgmt frames without CCK. This requirement
2082 * for P2P_FIND/GO_NEG should be handled by checking CCK flag
2083 * in the TX packet.
2084 */
2085static int ath10k_add_interface(struct ieee80211_hw *hw,
2086 struct ieee80211_vif *vif)
2087{
2088 struct ath10k *ar = hw->priv;
2089 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2090 enum wmi_sta_powersave_param param;
2091 int ret = 0;
Michal Kazior424121c2013-07-22 14:13:31 +02002092 u32 value;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002093 int bit;
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002094 u32 vdev_param;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002095
2096 mutex_lock(&ar->conf_mutex);
2097
Michal Kazior0dbd09e2013-07-31 10:55:14 +02002098 memset(arvif, 0, sizeof(*arvif));
2099
Kalle Valo5e3dd152013-06-12 20:52:10 +03002100 arvif->ar = ar;
2101 arvif->vif = vif;
2102
Michal Kaziorcc4827b2013-10-16 15:44:45 +03002103 INIT_WORK(&arvif->wep_key_work, ath10k_tx_wep_key_work);
Ben Greeare63b33f2013-10-22 14:54:14 -07002104 INIT_LIST_HEAD(&arvif->list);
Michal Kaziorcc4827b2013-10-16 15:44:45 +03002105
Kalle Valo5e3dd152013-06-12 20:52:10 +03002106 if ((vif->type == NL80211_IFTYPE_MONITOR) && ar->monitor_present) {
2107 ath10k_warn("Only one monitor interface allowed\n");
2108 ret = -EBUSY;
Michal Kazior9dad14a2013-10-16 15:44:45 +03002109 goto err;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002110 }
2111
2112 bit = ffs(ar->free_vdev_map);
2113 if (bit == 0) {
2114 ret = -EBUSY;
Michal Kazior9dad14a2013-10-16 15:44:45 +03002115 goto err;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002116 }
2117
2118 arvif->vdev_id = bit - 1;
2119 arvif->vdev_subtype = WMI_VDEV_SUBTYPE_NONE;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002120
2121 if (ar->p2p)
2122 arvif->vdev_subtype = WMI_VDEV_SUBTYPE_P2P_DEVICE;
2123
2124 switch (vif->type) {
2125 case NL80211_IFTYPE_UNSPECIFIED:
2126 case NL80211_IFTYPE_STATION:
2127 arvif->vdev_type = WMI_VDEV_TYPE_STA;
2128 if (vif->p2p)
2129 arvif->vdev_subtype = WMI_VDEV_SUBTYPE_P2P_CLIENT;
2130 break;
2131 case NL80211_IFTYPE_ADHOC:
2132 arvif->vdev_type = WMI_VDEV_TYPE_IBSS;
2133 break;
2134 case NL80211_IFTYPE_AP:
2135 arvif->vdev_type = WMI_VDEV_TYPE_AP;
2136
2137 if (vif->p2p)
2138 arvif->vdev_subtype = WMI_VDEV_SUBTYPE_P2P_GO;
2139 break;
2140 case NL80211_IFTYPE_MONITOR:
2141 arvif->vdev_type = WMI_VDEV_TYPE_MONITOR;
2142 break;
2143 default:
2144 WARN_ON(1);
2145 break;
2146 }
2147
Kalle Valo60c3daa2013-09-08 17:56:07 +03002148 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev create %d (add interface) type %d subtype %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03002149 arvif->vdev_id, arvif->vdev_type, arvif->vdev_subtype);
2150
2151 ret = ath10k_wmi_vdev_create(ar, arvif->vdev_id, arvif->vdev_type,
2152 arvif->vdev_subtype, vif->addr);
2153 if (ret) {
2154 ath10k_warn("WMI vdev create failed: ret %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002155 goto err;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002156 }
2157
Michal Kazior9dad14a2013-10-16 15:44:45 +03002158 ar->free_vdev_map &= ~BIT(arvif->vdev_id);
Michal Kazior05791192013-10-16 15:44:45 +03002159 list_add(&arvif->list, &ar->arvifs);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002160
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002161 vdev_param = ar->wmi.vdev_param->def_keyid;
2162 ret = ath10k_wmi_vdev_set_param(ar, 0, vdev_param,
Michal Kaziorcc4827b2013-10-16 15:44:45 +03002163 arvif->def_wep_key_idx);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002164 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002165 ath10k_warn("Failed to set default keyid: %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002166 goto err_vdev_delete;
2167 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002168
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002169 vdev_param = ar->wmi.vdev_param->tx_encap_type;
2170 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002171 ATH10K_HW_TXRX_NATIVE_WIFI);
Bartosz Markowskiebc9abd2013-10-15 09:26:20 +02002172 /* 10.X firmware does not support this VDEV parameter. Do not warn */
Michal Kazior9dad14a2013-10-16 15:44:45 +03002173 if (ret && ret != -EOPNOTSUPP) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002174 ath10k_warn("Failed to set TX encap: %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002175 goto err_vdev_delete;
2176 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002177
2178 if (arvif->vdev_type == WMI_VDEV_TYPE_AP) {
2179 ret = ath10k_peer_create(ar, arvif->vdev_id, vif->addr);
2180 if (ret) {
2181 ath10k_warn("Failed to create peer for AP: %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002182 goto err_vdev_delete;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002183 }
2184 }
2185
2186 if (arvif->vdev_type == WMI_VDEV_TYPE_STA) {
2187 param = WMI_STA_PS_PARAM_RX_WAKE_POLICY;
2188 value = WMI_STA_PS_RX_WAKE_POLICY_WAKE;
2189 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2190 param, value);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002191 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002192 ath10k_warn("Failed to set RX wake policy: %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002193 goto err_peer_delete;
2194 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002195
2196 param = WMI_STA_PS_PARAM_TX_WAKE_THRESHOLD;
2197 value = WMI_STA_PS_TX_WAKE_THRESHOLD_ALWAYS;
2198 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2199 param, value);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002200 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002201 ath10k_warn("Failed to set TX wake thresh: %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002202 goto err_peer_delete;
2203 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002204
2205 param = WMI_STA_PS_PARAM_PSPOLL_COUNT;
2206 value = WMI_STA_PS_PSPOLL_COUNT_NO_MAX;
2207 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2208 param, value);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002209 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002210 ath10k_warn("Failed to set PSPOLL count: %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002211 goto err_peer_delete;
2212 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002213 }
2214
Michal Kazior424121c2013-07-22 14:13:31 +02002215 ret = ath10k_mac_set_rts(arvif, ar->hw->wiphy->rts_threshold);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002216 if (ret) {
Michal Kazior679c54a2013-07-05 16:15:04 +03002217 ath10k_warn("failed to set rts threshold for vdev %d (%d)\n",
2218 arvif->vdev_id, ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002219 goto err_peer_delete;
2220 }
Michal Kazior679c54a2013-07-05 16:15:04 +03002221
Michal Kazior424121c2013-07-22 14:13:31 +02002222 ret = ath10k_mac_set_frag(arvif, ar->hw->wiphy->frag_threshold);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002223 if (ret) {
Michal Kazior679c54a2013-07-05 16:15:04 +03002224 ath10k_warn("failed to set frag threshold for vdev %d (%d)\n",
2225 arvif->vdev_id, ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002226 goto err_peer_delete;
2227 }
Michal Kazior679c54a2013-07-05 16:15:04 +03002228
Kalle Valo5e3dd152013-06-12 20:52:10 +03002229 if (arvif->vdev_type == WMI_VDEV_TYPE_MONITOR)
2230 ar->monitor_present = true;
2231
Kalle Valo5e3dd152013-06-12 20:52:10 +03002232 mutex_unlock(&ar->conf_mutex);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002233 return 0;
2234
2235err_peer_delete:
2236 if (arvif->vdev_type == WMI_VDEV_TYPE_AP)
2237 ath10k_wmi_peer_delete(ar, arvif->vdev_id, vif->addr);
2238
2239err_vdev_delete:
2240 ath10k_wmi_vdev_delete(ar, arvif->vdev_id);
2241 ar->free_vdev_map &= ~BIT(arvif->vdev_id);
Michal Kazior05791192013-10-16 15:44:45 +03002242 list_del(&arvif->list);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002243
2244err:
2245 mutex_unlock(&ar->conf_mutex);
2246
Kalle Valo5e3dd152013-06-12 20:52:10 +03002247 return ret;
2248}
2249
2250static void ath10k_remove_interface(struct ieee80211_hw *hw,
2251 struct ieee80211_vif *vif)
2252{
2253 struct ath10k *ar = hw->priv;
2254 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2255 int ret;
2256
2257 mutex_lock(&ar->conf_mutex);
2258
Michal Kaziorcc4827b2013-10-16 15:44:45 +03002259 cancel_work_sync(&arvif->wep_key_work);
2260
Michal Kaziored543882013-09-13 14:16:56 +02002261 spin_lock_bh(&ar->data_lock);
2262 if (arvif->beacon) {
2263 dev_kfree_skb_any(arvif->beacon);
2264 arvif->beacon = NULL;
2265 }
2266 spin_unlock_bh(&ar->data_lock);
2267
Kalle Valo5e3dd152013-06-12 20:52:10 +03002268 ar->free_vdev_map |= 1 << (arvif->vdev_id);
Michal Kazior05791192013-10-16 15:44:45 +03002269 list_del(&arvif->list);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002270
2271 if (arvif->vdev_type == WMI_VDEV_TYPE_AP) {
2272 ret = ath10k_peer_delete(arvif->ar, arvif->vdev_id, vif->addr);
2273 if (ret)
2274 ath10k_warn("Failed to remove peer for AP: %d\n", ret);
2275
2276 kfree(arvif->u.ap.noa_data);
2277 }
2278
Kalle Valo60c3daa2013-09-08 17:56:07 +03002279 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev delete %d (remove interface)\n",
2280 arvif->vdev_id);
2281
Kalle Valo5e3dd152013-06-12 20:52:10 +03002282 ret = ath10k_wmi_vdev_delete(ar, arvif->vdev_id);
2283 if (ret)
2284 ath10k_warn("WMI vdev delete failed: %d\n", ret);
2285
2286 if (arvif->vdev_type == WMI_VDEV_TYPE_MONITOR)
2287 ar->monitor_present = false;
2288
2289 ath10k_peer_cleanup(ar, arvif->vdev_id);
2290
2291 mutex_unlock(&ar->conf_mutex);
2292}
2293
2294/*
2295 * FIXME: Has to be verified.
2296 */
2297#define SUPPORTED_FILTERS \
2298 (FIF_PROMISC_IN_BSS | \
2299 FIF_ALLMULTI | \
2300 FIF_CONTROL | \
2301 FIF_PSPOLL | \
2302 FIF_OTHER_BSS | \
2303 FIF_BCN_PRBRESP_PROMISC | \
2304 FIF_PROBE_REQ | \
2305 FIF_FCSFAIL)
2306
2307static void ath10k_configure_filter(struct ieee80211_hw *hw,
2308 unsigned int changed_flags,
2309 unsigned int *total_flags,
2310 u64 multicast)
2311{
2312 struct ath10k *ar = hw->priv;
2313 int ret;
2314
2315 mutex_lock(&ar->conf_mutex);
2316
2317 changed_flags &= SUPPORTED_FILTERS;
2318 *total_flags &= SUPPORTED_FILTERS;
2319 ar->filter_flags = *total_flags;
2320
Michal Kaziorafd09222013-10-16 16:45:41 +03002321 /* Monitor must not be started if it wasn't created first.
2322 * Promiscuous mode may be started on a non-monitor interface - in
2323 * such case the monitor vdev is not created so starting the
2324 * monitor makes no sense. Since ath10k uses no special RX filters
2325 * (only BSS filter in STA mode) there's no need for any special
2326 * action here. */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002327 if ((ar->filter_flags & FIF_PROMISC_IN_BSS) &&
Michal Kaziorafd09222013-10-16 16:45:41 +03002328 !ar->monitor_enabled && ar->monitor_present) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03002329 ath10k_dbg(ATH10K_DBG_MAC, "mac monitor %d start\n",
2330 ar->monitor_vdev_id);
2331
Kalle Valo5e3dd152013-06-12 20:52:10 +03002332 ret = ath10k_monitor_start(ar, ar->monitor_vdev_id);
2333 if (ret)
2334 ath10k_warn("Unable to start monitor mode\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002335 } else if (!(ar->filter_flags & FIF_PROMISC_IN_BSS) &&
Michal Kaziorafd09222013-10-16 16:45:41 +03002336 ar->monitor_enabled && ar->monitor_present) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03002337 ath10k_dbg(ATH10K_DBG_MAC, "mac monitor %d stop\n",
2338 ar->monitor_vdev_id);
2339
Kalle Valo5e3dd152013-06-12 20:52:10 +03002340 ret = ath10k_monitor_stop(ar);
2341 if (ret)
2342 ath10k_warn("Unable to stop monitor mode\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002343 }
2344
2345 mutex_unlock(&ar->conf_mutex);
2346}
2347
2348static void ath10k_bss_info_changed(struct ieee80211_hw *hw,
2349 struct ieee80211_vif *vif,
2350 struct ieee80211_bss_conf *info,
2351 u32 changed)
2352{
2353 struct ath10k *ar = hw->priv;
2354 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2355 int ret = 0;
Bartosz Markowski226a3392013-09-26 17:47:16 +02002356 u32 vdev_param, pdev_param;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002357
2358 mutex_lock(&ar->conf_mutex);
2359
2360 if (changed & BSS_CHANGED_IBSS)
2361 ath10k_control_ibss(arvif, info, vif->addr);
2362
2363 if (changed & BSS_CHANGED_BEACON_INT) {
2364 arvif->beacon_interval = info->beacon_int;
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002365 vdev_param = ar->wmi.vdev_param->beacon_interval;
2366 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002367 arvif->beacon_interval);
Kalle Valo60c3daa2013-09-08 17:56:07 +03002368 ath10k_dbg(ATH10K_DBG_MAC,
2369 "mac vdev %d beacon_interval %d\n",
2370 arvif->vdev_id, arvif->beacon_interval);
2371
Kalle Valo5e3dd152013-06-12 20:52:10 +03002372 if (ret)
2373 ath10k_warn("Failed to set beacon interval for VDEV: %d\n",
2374 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002375 }
2376
2377 if (changed & BSS_CHANGED_BEACON) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03002378 ath10k_dbg(ATH10K_DBG_MAC,
2379 "vdev %d set beacon tx mode to staggered\n",
2380 arvif->vdev_id);
2381
Bartosz Markowski226a3392013-09-26 17:47:16 +02002382 pdev_param = ar->wmi.pdev_param->beacon_tx_mode;
2383 ret = ath10k_wmi_pdev_set_param(ar, pdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002384 WMI_BEACON_STAGGERED_MODE);
2385 if (ret)
2386 ath10k_warn("Failed to set beacon mode for VDEV: %d\n",
2387 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002388 }
2389
John W. Linvilleb70727e2013-06-13 13:34:29 -04002390 if (changed & BSS_CHANGED_BEACON_INFO) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002391 arvif->dtim_period = info->dtim_period;
2392
Kalle Valo60c3daa2013-09-08 17:56:07 +03002393 ath10k_dbg(ATH10K_DBG_MAC,
2394 "mac vdev %d dtim_period %d\n",
2395 arvif->vdev_id, arvif->dtim_period);
2396
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002397 vdev_param = ar->wmi.vdev_param->dtim_period;
2398 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002399 arvif->dtim_period);
2400 if (ret)
2401 ath10k_warn("Failed to set dtim period for VDEV: %d\n",
2402 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002403 }
2404
2405 if (changed & BSS_CHANGED_SSID &&
2406 vif->type == NL80211_IFTYPE_AP) {
2407 arvif->u.ap.ssid_len = info->ssid_len;
2408 if (info->ssid_len)
2409 memcpy(arvif->u.ap.ssid, info->ssid, info->ssid_len);
2410 arvif->u.ap.hidden_ssid = info->hidden_ssid;
2411 }
2412
2413 if (changed & BSS_CHANGED_BSSID) {
2414 if (!is_zero_ether_addr(info->bssid)) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03002415 ath10k_dbg(ATH10K_DBG_MAC,
2416 "mac vdev %d create peer %pM\n",
2417 arvif->vdev_id, info->bssid);
2418
Kalle Valo5e3dd152013-06-12 20:52:10 +03002419 ret = ath10k_peer_create(ar, arvif->vdev_id,
2420 info->bssid);
2421 if (ret)
Ben Greear479398b2013-11-04 09:19:34 -08002422 ath10k_warn("Failed to add peer %pM for vdev %d when changin bssid: %i\n",
2423 info->bssid, arvif->vdev_id, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002424
2425 if (vif->type == NL80211_IFTYPE_STATION) {
2426 /*
2427 * this is never erased as we it for crypto key
2428 * clearing; this is FW requirement
2429 */
2430 memcpy(arvif->u.sta.bssid, info->bssid,
2431 ETH_ALEN);
2432
Kalle Valo60c3daa2013-09-08 17:56:07 +03002433 ath10k_dbg(ATH10K_DBG_MAC,
2434 "mac vdev %d start %pM\n",
2435 arvif->vdev_id, info->bssid);
2436
2437 /* FIXME: check return value */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002438 ret = ath10k_vdev_start(arvif);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002439 }
2440
2441 /*
2442 * Mac80211 does not keep IBSS bssid when leaving IBSS,
2443 * so driver need to store it. It is needed when leaving
2444 * IBSS in order to remove BSSID peer.
2445 */
2446 if (vif->type == NL80211_IFTYPE_ADHOC)
2447 memcpy(arvif->u.ibss.bssid, info->bssid,
2448 ETH_ALEN);
2449 }
2450 }
2451
2452 if (changed & BSS_CHANGED_BEACON_ENABLED)
2453 ath10k_control_beaconing(arvif, info);
2454
2455 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
2456 u32 cts_prot;
2457 if (info->use_cts_prot)
2458 cts_prot = 1;
2459 else
2460 cts_prot = 0;
2461
Kalle Valo60c3daa2013-09-08 17:56:07 +03002462 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d cts_prot %d\n",
2463 arvif->vdev_id, cts_prot);
2464
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002465 vdev_param = ar->wmi.vdev_param->enable_rtscts;
2466 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002467 cts_prot);
2468 if (ret)
2469 ath10k_warn("Failed to set CTS prot for VDEV: %d\n",
2470 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002471 }
2472
2473 if (changed & BSS_CHANGED_ERP_SLOT) {
2474 u32 slottime;
2475 if (info->use_short_slot)
2476 slottime = WMI_VDEV_SLOT_TIME_SHORT; /* 9us */
2477
2478 else
2479 slottime = WMI_VDEV_SLOT_TIME_LONG; /* 20us */
2480
Kalle Valo60c3daa2013-09-08 17:56:07 +03002481 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d slot_time %d\n",
2482 arvif->vdev_id, slottime);
2483
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002484 vdev_param = ar->wmi.vdev_param->slot_time;
2485 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002486 slottime);
2487 if (ret)
2488 ath10k_warn("Failed to set erp slot for VDEV: %d\n",
2489 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002490 }
2491
2492 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
2493 u32 preamble;
2494 if (info->use_short_preamble)
2495 preamble = WMI_VDEV_PREAMBLE_SHORT;
2496 else
2497 preamble = WMI_VDEV_PREAMBLE_LONG;
2498
Kalle Valo60c3daa2013-09-08 17:56:07 +03002499 ath10k_dbg(ATH10K_DBG_MAC,
2500 "mac vdev %d preamble %dn",
2501 arvif->vdev_id, preamble);
2502
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002503 vdev_param = ar->wmi.vdev_param->preamble;
2504 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002505 preamble);
2506 if (ret)
2507 ath10k_warn("Failed to set preamble for VDEV: %d\n",
2508 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002509 }
2510
2511 if (changed & BSS_CHANGED_ASSOC) {
2512 if (info->assoc)
2513 ath10k_bss_assoc(hw, vif, info);
2514 }
2515
2516 mutex_unlock(&ar->conf_mutex);
2517}
2518
2519static int ath10k_hw_scan(struct ieee80211_hw *hw,
2520 struct ieee80211_vif *vif,
2521 struct cfg80211_scan_request *req)
2522{
2523 struct ath10k *ar = hw->priv;
2524 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2525 struct wmi_start_scan_arg arg;
2526 int ret = 0;
2527 int i;
2528
2529 mutex_lock(&ar->conf_mutex);
2530
2531 spin_lock_bh(&ar->data_lock);
2532 if (ar->scan.in_progress) {
2533 spin_unlock_bh(&ar->data_lock);
2534 ret = -EBUSY;
2535 goto exit;
2536 }
2537
2538 INIT_COMPLETION(ar->scan.started);
2539 INIT_COMPLETION(ar->scan.completed);
2540 ar->scan.in_progress = true;
2541 ar->scan.aborting = false;
2542 ar->scan.is_roc = false;
2543 ar->scan.vdev_id = arvif->vdev_id;
2544 spin_unlock_bh(&ar->data_lock);
2545
2546 memset(&arg, 0, sizeof(arg));
2547 ath10k_wmi_start_scan_init(ar, &arg);
2548 arg.vdev_id = arvif->vdev_id;
2549 arg.scan_id = ATH10K_SCAN_ID;
2550
2551 if (!req->no_cck)
2552 arg.scan_ctrl_flags |= WMI_SCAN_ADD_CCK_RATES;
2553
2554 if (req->ie_len) {
2555 arg.ie_len = req->ie_len;
2556 memcpy(arg.ie, req->ie, arg.ie_len);
2557 }
2558
2559 if (req->n_ssids) {
2560 arg.n_ssids = req->n_ssids;
2561 for (i = 0; i < arg.n_ssids; i++) {
2562 arg.ssids[i].len = req->ssids[i].ssid_len;
2563 arg.ssids[i].ssid = req->ssids[i].ssid;
2564 }
Michal Kaziordcd4a562013-07-31 10:55:12 +02002565 } else {
2566 arg.scan_ctrl_flags |= WMI_SCAN_FLAG_PASSIVE;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002567 }
2568
2569 if (req->n_channels) {
2570 arg.n_channels = req->n_channels;
2571 for (i = 0; i < arg.n_channels; i++)
2572 arg.channels[i] = req->channels[i]->center_freq;
2573 }
2574
2575 ret = ath10k_start_scan(ar, &arg);
2576 if (ret) {
2577 ath10k_warn("could not start hw scan (%d)\n", ret);
2578 spin_lock_bh(&ar->data_lock);
2579 ar->scan.in_progress = false;
2580 spin_unlock_bh(&ar->data_lock);
2581 }
2582
2583exit:
2584 mutex_unlock(&ar->conf_mutex);
2585 return ret;
2586}
2587
2588static void ath10k_cancel_hw_scan(struct ieee80211_hw *hw,
2589 struct ieee80211_vif *vif)
2590{
2591 struct ath10k *ar = hw->priv;
2592 int ret;
2593
2594 mutex_lock(&ar->conf_mutex);
2595 ret = ath10k_abort_scan(ar);
2596 if (ret) {
2597 ath10k_warn("couldn't abort scan (%d). forcefully sending scan completion to mac80211\n",
2598 ret);
2599 ieee80211_scan_completed(hw, 1 /* aborted */);
2600 }
2601 mutex_unlock(&ar->conf_mutex);
2602}
2603
2604static int ath10k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
2605 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
2606 struct ieee80211_key_conf *key)
2607{
2608 struct ath10k *ar = hw->priv;
2609 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2610 struct ath10k_peer *peer;
2611 const u8 *peer_addr;
2612 bool is_wep = key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
2613 key->cipher == WLAN_CIPHER_SUITE_WEP104;
2614 int ret = 0;
2615
2616 if (key->keyidx > WMI_MAX_KEY_INDEX)
2617 return -ENOSPC;
2618
2619 mutex_lock(&ar->conf_mutex);
2620
2621 if (sta)
2622 peer_addr = sta->addr;
2623 else if (arvif->vdev_type == WMI_VDEV_TYPE_STA)
2624 peer_addr = vif->bss_conf.bssid;
2625 else
2626 peer_addr = vif->addr;
2627
2628 key->hw_key_idx = key->keyidx;
2629
2630 /* the peer should not disappear in mid-way (unless FW goes awry) since
2631 * we already hold conf_mutex. we just make sure its there now. */
2632 spin_lock_bh(&ar->data_lock);
2633 peer = ath10k_peer_find(ar, arvif->vdev_id, peer_addr);
2634 spin_unlock_bh(&ar->data_lock);
2635
2636 if (!peer) {
2637 if (cmd == SET_KEY) {
2638 ath10k_warn("cannot install key for non-existent peer %pM\n",
2639 peer_addr);
2640 ret = -EOPNOTSUPP;
2641 goto exit;
2642 } else {
2643 /* if the peer doesn't exist there is no key to disable
2644 * anymore */
2645 goto exit;
2646 }
2647 }
2648
2649 if (is_wep) {
2650 if (cmd == SET_KEY)
2651 arvif->wep_keys[key->keyidx] = key;
2652 else
2653 arvif->wep_keys[key->keyidx] = NULL;
2654
2655 if (cmd == DISABLE_KEY)
2656 ath10k_clear_vdev_key(arvif, key);
2657 }
2658
2659 ret = ath10k_install_key(arvif, key, cmd, peer_addr);
2660 if (ret) {
2661 ath10k_warn("ath10k_install_key failed (%d)\n", ret);
2662 goto exit;
2663 }
2664
2665 spin_lock_bh(&ar->data_lock);
2666 peer = ath10k_peer_find(ar, arvif->vdev_id, peer_addr);
2667 if (peer && cmd == SET_KEY)
2668 peer->keys[key->keyidx] = key;
2669 else if (peer && cmd == DISABLE_KEY)
2670 peer->keys[key->keyidx] = NULL;
2671 else if (peer == NULL)
2672 /* impossible unless FW goes crazy */
2673 ath10k_warn("peer %pM disappeared!\n", peer_addr);
2674 spin_unlock_bh(&ar->data_lock);
2675
2676exit:
2677 mutex_unlock(&ar->conf_mutex);
2678 return ret;
2679}
2680
2681static int ath10k_sta_state(struct ieee80211_hw *hw,
2682 struct ieee80211_vif *vif,
2683 struct ieee80211_sta *sta,
2684 enum ieee80211_sta_state old_state,
2685 enum ieee80211_sta_state new_state)
2686{
2687 struct ath10k *ar = hw->priv;
2688 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2689 int ret = 0;
2690
2691 mutex_lock(&ar->conf_mutex);
2692
2693 if (old_state == IEEE80211_STA_NOTEXIST &&
2694 new_state == IEEE80211_STA_NONE &&
2695 vif->type != NL80211_IFTYPE_STATION) {
2696 /*
2697 * New station addition.
2698 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03002699 ath10k_dbg(ATH10K_DBG_MAC,
2700 "mac vdev %d peer create %pM (new sta)\n",
2701 arvif->vdev_id, sta->addr);
2702
Kalle Valo5e3dd152013-06-12 20:52:10 +03002703 ret = ath10k_peer_create(ar, arvif->vdev_id, sta->addr);
2704 if (ret)
Ben Greear479398b2013-11-04 09:19:34 -08002705 ath10k_warn("Failed to add peer %pM for vdev %d when adding a new sta: %i\n",
2706 sta->addr, arvif->vdev_id, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002707 } else if ((old_state == IEEE80211_STA_NONE &&
2708 new_state == IEEE80211_STA_NOTEXIST)) {
2709 /*
2710 * Existing station deletion.
2711 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03002712 ath10k_dbg(ATH10K_DBG_MAC,
2713 "mac vdev %d peer delete %pM (sta gone)\n",
2714 arvif->vdev_id, sta->addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002715 ret = ath10k_peer_delete(ar, arvif->vdev_id, sta->addr);
2716 if (ret)
2717 ath10k_warn("Failed to delete peer: %pM for VDEV: %d\n",
2718 sta->addr, arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002719
2720 if (vif->type == NL80211_IFTYPE_STATION)
2721 ath10k_bss_disassoc(hw, vif);
2722 } else if (old_state == IEEE80211_STA_AUTH &&
2723 new_state == IEEE80211_STA_ASSOC &&
2724 (vif->type == NL80211_IFTYPE_AP ||
2725 vif->type == NL80211_IFTYPE_ADHOC)) {
2726 /*
2727 * New association.
2728 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03002729 ath10k_dbg(ATH10K_DBG_MAC, "mac sta %pM associated\n",
2730 sta->addr);
2731
Kalle Valo5e3dd152013-06-12 20:52:10 +03002732 ret = ath10k_station_assoc(ar, arvif, sta);
2733 if (ret)
2734 ath10k_warn("Failed to associate station: %pM\n",
2735 sta->addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002736 } else if (old_state == IEEE80211_STA_ASSOC &&
2737 new_state == IEEE80211_STA_AUTH &&
2738 (vif->type == NL80211_IFTYPE_AP ||
2739 vif->type == NL80211_IFTYPE_ADHOC)) {
2740 /*
2741 * Disassociation.
2742 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03002743 ath10k_dbg(ATH10K_DBG_MAC, "mac sta %pM disassociated\n",
2744 sta->addr);
2745
Kalle Valo5e3dd152013-06-12 20:52:10 +03002746 ret = ath10k_station_disassoc(ar, arvif, sta);
2747 if (ret)
2748 ath10k_warn("Failed to disassociate station: %pM\n",
2749 sta->addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002750 }
2751
2752 mutex_unlock(&ar->conf_mutex);
2753 return ret;
2754}
2755
2756static int ath10k_conf_tx_uapsd(struct ath10k *ar, struct ieee80211_vif *vif,
2757 u16 ac, bool enable)
2758{
2759 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2760 u32 value = 0;
2761 int ret = 0;
2762
Michal Kazior548db542013-07-05 16:15:15 +03002763 lockdep_assert_held(&ar->conf_mutex);
2764
Kalle Valo5e3dd152013-06-12 20:52:10 +03002765 if (arvif->vdev_type != WMI_VDEV_TYPE_STA)
2766 return 0;
2767
2768 switch (ac) {
2769 case IEEE80211_AC_VO:
2770 value = WMI_STA_PS_UAPSD_AC3_DELIVERY_EN |
2771 WMI_STA_PS_UAPSD_AC3_TRIGGER_EN;
2772 break;
2773 case IEEE80211_AC_VI:
2774 value = WMI_STA_PS_UAPSD_AC2_DELIVERY_EN |
2775 WMI_STA_PS_UAPSD_AC2_TRIGGER_EN;
2776 break;
2777 case IEEE80211_AC_BE:
2778 value = WMI_STA_PS_UAPSD_AC1_DELIVERY_EN |
2779 WMI_STA_PS_UAPSD_AC1_TRIGGER_EN;
2780 break;
2781 case IEEE80211_AC_BK:
2782 value = WMI_STA_PS_UAPSD_AC0_DELIVERY_EN |
2783 WMI_STA_PS_UAPSD_AC0_TRIGGER_EN;
2784 break;
2785 }
2786
2787 if (enable)
2788 arvif->u.sta.uapsd |= value;
2789 else
2790 arvif->u.sta.uapsd &= ~value;
2791
2792 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2793 WMI_STA_PS_PARAM_UAPSD,
2794 arvif->u.sta.uapsd);
2795 if (ret) {
2796 ath10k_warn("could not set uapsd params %d\n", ret);
2797 goto exit;
2798 }
2799
2800 if (arvif->u.sta.uapsd)
2801 value = WMI_STA_PS_RX_WAKE_POLICY_POLL_UAPSD;
2802 else
2803 value = WMI_STA_PS_RX_WAKE_POLICY_WAKE;
2804
2805 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2806 WMI_STA_PS_PARAM_RX_WAKE_POLICY,
2807 value);
2808 if (ret)
2809 ath10k_warn("could not set rx wake param %d\n", ret);
2810
2811exit:
2812 return ret;
2813}
2814
2815static int ath10k_conf_tx(struct ieee80211_hw *hw,
2816 struct ieee80211_vif *vif, u16 ac,
2817 const struct ieee80211_tx_queue_params *params)
2818{
2819 struct ath10k *ar = hw->priv;
2820 struct wmi_wmm_params_arg *p = NULL;
2821 int ret;
2822
2823 mutex_lock(&ar->conf_mutex);
2824
2825 switch (ac) {
2826 case IEEE80211_AC_VO:
2827 p = &ar->wmm_params.ac_vo;
2828 break;
2829 case IEEE80211_AC_VI:
2830 p = &ar->wmm_params.ac_vi;
2831 break;
2832 case IEEE80211_AC_BE:
2833 p = &ar->wmm_params.ac_be;
2834 break;
2835 case IEEE80211_AC_BK:
2836 p = &ar->wmm_params.ac_bk;
2837 break;
2838 }
2839
2840 if (WARN_ON(!p)) {
2841 ret = -EINVAL;
2842 goto exit;
2843 }
2844
2845 p->cwmin = params->cw_min;
2846 p->cwmax = params->cw_max;
2847 p->aifs = params->aifs;
2848
2849 /*
2850 * The channel time duration programmed in the HW is in absolute
2851 * microseconds, while mac80211 gives the txop in units of
2852 * 32 microseconds.
2853 */
2854 p->txop = params->txop * 32;
2855
2856 /* FIXME: FW accepts wmm params per hw, not per vif */
2857 ret = ath10k_wmi_pdev_set_wmm_params(ar, &ar->wmm_params);
2858 if (ret) {
2859 ath10k_warn("could not set wmm params %d\n", ret);
2860 goto exit;
2861 }
2862
2863 ret = ath10k_conf_tx_uapsd(ar, vif, ac, params->uapsd);
2864 if (ret)
2865 ath10k_warn("could not set sta uapsd %d\n", ret);
2866
2867exit:
2868 mutex_unlock(&ar->conf_mutex);
2869 return ret;
2870}
2871
2872#define ATH10K_ROC_TIMEOUT_HZ (2*HZ)
2873
2874static int ath10k_remain_on_channel(struct ieee80211_hw *hw,
2875 struct ieee80211_vif *vif,
2876 struct ieee80211_channel *chan,
2877 int duration,
2878 enum ieee80211_roc_type type)
2879{
2880 struct ath10k *ar = hw->priv;
2881 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2882 struct wmi_start_scan_arg arg;
2883 int ret;
2884
2885 mutex_lock(&ar->conf_mutex);
2886
2887 spin_lock_bh(&ar->data_lock);
2888 if (ar->scan.in_progress) {
2889 spin_unlock_bh(&ar->data_lock);
2890 ret = -EBUSY;
2891 goto exit;
2892 }
2893
2894 INIT_COMPLETION(ar->scan.started);
2895 INIT_COMPLETION(ar->scan.completed);
2896 INIT_COMPLETION(ar->scan.on_channel);
2897 ar->scan.in_progress = true;
2898 ar->scan.aborting = false;
2899 ar->scan.is_roc = true;
2900 ar->scan.vdev_id = arvif->vdev_id;
2901 ar->scan.roc_freq = chan->center_freq;
2902 spin_unlock_bh(&ar->data_lock);
2903
2904 memset(&arg, 0, sizeof(arg));
2905 ath10k_wmi_start_scan_init(ar, &arg);
2906 arg.vdev_id = arvif->vdev_id;
2907 arg.scan_id = ATH10K_SCAN_ID;
2908 arg.n_channels = 1;
2909 arg.channels[0] = chan->center_freq;
2910 arg.dwell_time_active = duration;
2911 arg.dwell_time_passive = duration;
2912 arg.max_scan_time = 2 * duration;
2913 arg.scan_ctrl_flags |= WMI_SCAN_FLAG_PASSIVE;
2914 arg.scan_ctrl_flags |= WMI_SCAN_FILTER_PROBE_REQ;
2915
2916 ret = ath10k_start_scan(ar, &arg);
2917 if (ret) {
2918 ath10k_warn("could not start roc scan (%d)\n", ret);
2919 spin_lock_bh(&ar->data_lock);
2920 ar->scan.in_progress = false;
2921 spin_unlock_bh(&ar->data_lock);
2922 goto exit;
2923 }
2924
2925 ret = wait_for_completion_timeout(&ar->scan.on_channel, 3*HZ);
2926 if (ret == 0) {
2927 ath10k_warn("could not switch to channel for roc scan\n");
2928 ath10k_abort_scan(ar);
2929 ret = -ETIMEDOUT;
2930 goto exit;
2931 }
2932
2933 ret = 0;
2934exit:
2935 mutex_unlock(&ar->conf_mutex);
2936 return ret;
2937}
2938
2939static int ath10k_cancel_remain_on_channel(struct ieee80211_hw *hw)
2940{
2941 struct ath10k *ar = hw->priv;
2942
2943 mutex_lock(&ar->conf_mutex);
2944 ath10k_abort_scan(ar);
2945 mutex_unlock(&ar->conf_mutex);
2946
2947 return 0;
2948}
2949
2950/*
2951 * Both RTS and Fragmentation threshold are interface-specific
2952 * in ath10k, but device-specific in mac80211.
2953 */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002954
2955static int ath10k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
2956{
Kalle Valo5e3dd152013-06-12 20:52:10 +03002957 struct ath10k *ar = hw->priv;
Michal Kaziorad088bf2013-10-16 15:44:46 +03002958 struct ath10k_vif *arvif;
2959 int ret = 0;
Michal Kazior548db542013-07-05 16:15:15 +03002960
Michal Kaziorad088bf2013-10-16 15:44:46 +03002961 mutex_lock(&ar->conf_mutex);
2962 list_for_each_entry(arvif, &ar->arvifs, list) {
2963 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d rts threshold %d\n",
2964 arvif->vdev_id, value);
Kalle Valo60c3daa2013-09-08 17:56:07 +03002965
Michal Kaziorad088bf2013-10-16 15:44:46 +03002966 ret = ath10k_mac_set_rts(arvif, value);
2967 if (ret) {
2968 ath10k_warn("could not set rts threshold for vdev %d (%d)\n",
2969 arvif->vdev_id, ret);
2970 break;
2971 }
2972 }
2973 mutex_unlock(&ar->conf_mutex);
2974
2975 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002976}
2977
2978static int ath10k_set_frag_threshold(struct ieee80211_hw *hw, u32 value)
2979{
Kalle Valo5e3dd152013-06-12 20:52:10 +03002980 struct ath10k *ar = hw->priv;
Michal Kaziorad088bf2013-10-16 15:44:46 +03002981 struct ath10k_vif *arvif;
2982 int ret = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002983
Kalle Valo5e3dd152013-06-12 20:52:10 +03002984 mutex_lock(&ar->conf_mutex);
Michal Kaziorad088bf2013-10-16 15:44:46 +03002985 list_for_each_entry(arvif, &ar->arvifs, list) {
2986 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d fragmentation threshold %d\n",
2987 arvif->vdev_id, value);
2988
2989 ret = ath10k_mac_set_rts(arvif, value);
2990 if (ret) {
2991 ath10k_warn("could not set fragmentation threshold for vdev %d (%d)\n",
2992 arvif->vdev_id, ret);
2993 break;
2994 }
2995 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002996 mutex_unlock(&ar->conf_mutex);
2997
Michal Kaziorad088bf2013-10-16 15:44:46 +03002998 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002999}
3000
3001static void ath10k_flush(struct ieee80211_hw *hw, u32 queues, bool drop)
3002{
3003 struct ath10k *ar = hw->priv;
Michal Kazioraffd3212013-07-16 09:54:35 +02003004 bool skip;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003005 int ret;
3006
3007 /* mac80211 doesn't care if we really xmit queued frames or not
3008 * we'll collect those frames either way if we stop/delete vdevs */
3009 if (drop)
3010 return;
3011
Michal Kazior548db542013-07-05 16:15:15 +03003012 mutex_lock(&ar->conf_mutex);
3013
Michal Kazioraffd3212013-07-16 09:54:35 +02003014 if (ar->state == ATH10K_STATE_WEDGED)
3015 goto skip;
3016
Michal Kazioredb82362013-07-05 16:15:14 +03003017 ret = wait_event_timeout(ar->htt.empty_tx_wq, ({
Kalle Valo5e3dd152013-06-12 20:52:10 +03003018 bool empty;
Michal Kazioraffd3212013-07-16 09:54:35 +02003019
Michal Kazioredb82362013-07-05 16:15:14 +03003020 spin_lock_bh(&ar->htt.tx_lock);
Michal Kazior0945baf2013-09-18 14:43:18 +02003021 empty = (ar->htt.num_pending_tx == 0);
Michal Kazioredb82362013-07-05 16:15:14 +03003022 spin_unlock_bh(&ar->htt.tx_lock);
Michal Kazioraffd3212013-07-16 09:54:35 +02003023
3024 skip = (ar->state == ATH10K_STATE_WEDGED);
3025
3026 (empty || skip);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003027 }), ATH10K_FLUSH_TIMEOUT_HZ);
Michal Kazioraffd3212013-07-16 09:54:35 +02003028
3029 if (ret <= 0 || skip)
Kalle Valo5e3dd152013-06-12 20:52:10 +03003030 ath10k_warn("tx not flushed\n");
Michal Kazior548db542013-07-05 16:15:15 +03003031
Michal Kazioraffd3212013-07-16 09:54:35 +02003032skip:
Michal Kazior548db542013-07-05 16:15:15 +03003033 mutex_unlock(&ar->conf_mutex);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003034}
3035
3036/* TODO: Implement this function properly
3037 * For now it is needed to reply to Probe Requests in IBSS mode.
3038 * Propably we need this information from FW.
3039 */
3040static int ath10k_tx_last_beacon(struct ieee80211_hw *hw)
3041{
3042 return 1;
3043}
3044
Michal Kazior8cd13ca2013-07-16 09:38:54 +02003045#ifdef CONFIG_PM
3046static int ath10k_suspend(struct ieee80211_hw *hw,
3047 struct cfg80211_wowlan *wowlan)
3048{
3049 struct ath10k *ar = hw->priv;
3050 int ret;
3051
3052 ar->is_target_paused = false;
3053
3054 ret = ath10k_wmi_pdev_suspend_target(ar);
3055 if (ret) {
3056 ath10k_warn("could not suspend target (%d)\n", ret);
3057 return 1;
3058 }
3059
3060 ret = wait_event_interruptible_timeout(ar->event_queue,
3061 ar->is_target_paused == true,
3062 1 * HZ);
3063 if (ret < 0) {
3064 ath10k_warn("suspend interrupted (%d)\n", ret);
3065 goto resume;
3066 } else if (ret == 0) {
3067 ath10k_warn("suspend timed out - target pause event never came\n");
3068 goto resume;
3069 }
3070
3071 ret = ath10k_hif_suspend(ar);
3072 if (ret) {
3073 ath10k_warn("could not suspend hif (%d)\n", ret);
3074 goto resume;
3075 }
3076
3077 return 0;
3078resume:
3079 ret = ath10k_wmi_pdev_resume_target(ar);
3080 if (ret)
3081 ath10k_warn("could not resume target (%d)\n", ret);
3082 return 1;
3083}
3084
3085static int ath10k_resume(struct ieee80211_hw *hw)
3086{
3087 struct ath10k *ar = hw->priv;
3088 int ret;
3089
3090 ret = ath10k_hif_resume(ar);
3091 if (ret) {
3092 ath10k_warn("could not resume hif (%d)\n", ret);
3093 return 1;
3094 }
3095
3096 ret = ath10k_wmi_pdev_resume_target(ar);
3097 if (ret) {
3098 ath10k_warn("could not resume target (%d)\n", ret);
3099 return 1;
3100 }
3101
3102 return 0;
3103}
3104#endif
3105
Michal Kazioraffd3212013-07-16 09:54:35 +02003106static void ath10k_restart_complete(struct ieee80211_hw *hw)
3107{
3108 struct ath10k *ar = hw->priv;
3109
3110 mutex_lock(&ar->conf_mutex);
3111
3112 /* If device failed to restart it will be in a different state, e.g.
3113 * ATH10K_STATE_WEDGED */
3114 if (ar->state == ATH10K_STATE_RESTARTED) {
3115 ath10k_info("device successfully recovered\n");
3116 ar->state = ATH10K_STATE_ON;
3117 }
3118
3119 mutex_unlock(&ar->conf_mutex);
3120}
3121
Michal Kazior2e1dea42013-07-31 10:32:40 +02003122static int ath10k_get_survey(struct ieee80211_hw *hw, int idx,
3123 struct survey_info *survey)
3124{
3125 struct ath10k *ar = hw->priv;
3126 struct ieee80211_supported_band *sband;
3127 struct survey_info *ar_survey = &ar->survey[idx];
3128 int ret = 0;
3129
3130 mutex_lock(&ar->conf_mutex);
3131
3132 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
3133 if (sband && idx >= sband->n_channels) {
3134 idx -= sband->n_channels;
3135 sband = NULL;
3136 }
3137
3138 if (!sband)
3139 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
3140
3141 if (!sband || idx >= sband->n_channels) {
3142 ret = -ENOENT;
3143 goto exit;
3144 }
3145
3146 spin_lock_bh(&ar->data_lock);
3147 memcpy(survey, ar_survey, sizeof(*survey));
3148 spin_unlock_bh(&ar->data_lock);
3149
3150 survey->channel = &sband->channels[idx];
3151
3152exit:
3153 mutex_unlock(&ar->conf_mutex);
3154 return ret;
3155}
3156
Kalle Valo5e3dd152013-06-12 20:52:10 +03003157static const struct ieee80211_ops ath10k_ops = {
3158 .tx = ath10k_tx,
3159 .start = ath10k_start,
3160 .stop = ath10k_stop,
3161 .config = ath10k_config,
3162 .add_interface = ath10k_add_interface,
3163 .remove_interface = ath10k_remove_interface,
3164 .configure_filter = ath10k_configure_filter,
3165 .bss_info_changed = ath10k_bss_info_changed,
3166 .hw_scan = ath10k_hw_scan,
3167 .cancel_hw_scan = ath10k_cancel_hw_scan,
3168 .set_key = ath10k_set_key,
3169 .sta_state = ath10k_sta_state,
3170 .conf_tx = ath10k_conf_tx,
3171 .remain_on_channel = ath10k_remain_on_channel,
3172 .cancel_remain_on_channel = ath10k_cancel_remain_on_channel,
3173 .set_rts_threshold = ath10k_set_rts_threshold,
3174 .set_frag_threshold = ath10k_set_frag_threshold,
3175 .flush = ath10k_flush,
3176 .tx_last_beacon = ath10k_tx_last_beacon,
Michal Kazioraffd3212013-07-16 09:54:35 +02003177 .restart_complete = ath10k_restart_complete,
Michal Kazior2e1dea42013-07-31 10:32:40 +02003178 .get_survey = ath10k_get_survey,
Michal Kazior8cd13ca2013-07-16 09:38:54 +02003179#ifdef CONFIG_PM
3180 .suspend = ath10k_suspend,
3181 .resume = ath10k_resume,
3182#endif
Kalle Valo5e3dd152013-06-12 20:52:10 +03003183};
3184
3185#define RATETAB_ENT(_rate, _rateid, _flags) { \
3186 .bitrate = (_rate), \
3187 .flags = (_flags), \
3188 .hw_value = (_rateid), \
3189}
3190
3191#define CHAN2G(_channel, _freq, _flags) { \
3192 .band = IEEE80211_BAND_2GHZ, \
3193 .hw_value = (_channel), \
3194 .center_freq = (_freq), \
3195 .flags = (_flags), \
3196 .max_antenna_gain = 0, \
3197 .max_power = 30, \
3198}
3199
3200#define CHAN5G(_channel, _freq, _flags) { \
3201 .band = IEEE80211_BAND_5GHZ, \
3202 .hw_value = (_channel), \
3203 .center_freq = (_freq), \
3204 .flags = (_flags), \
3205 .max_antenna_gain = 0, \
3206 .max_power = 30, \
3207}
3208
3209static const struct ieee80211_channel ath10k_2ghz_channels[] = {
3210 CHAN2G(1, 2412, 0),
3211 CHAN2G(2, 2417, 0),
3212 CHAN2G(3, 2422, 0),
3213 CHAN2G(4, 2427, 0),
3214 CHAN2G(5, 2432, 0),
3215 CHAN2G(6, 2437, 0),
3216 CHAN2G(7, 2442, 0),
3217 CHAN2G(8, 2447, 0),
3218 CHAN2G(9, 2452, 0),
3219 CHAN2G(10, 2457, 0),
3220 CHAN2G(11, 2462, 0),
3221 CHAN2G(12, 2467, 0),
3222 CHAN2G(13, 2472, 0),
3223 CHAN2G(14, 2484, 0),
3224};
3225
3226static const struct ieee80211_channel ath10k_5ghz_channels[] = {
Michal Kazior429ff562013-06-26 08:54:54 +02003227 CHAN5G(36, 5180, 0),
3228 CHAN5G(40, 5200, 0),
3229 CHAN5G(44, 5220, 0),
3230 CHAN5G(48, 5240, 0),
3231 CHAN5G(52, 5260, 0),
3232 CHAN5G(56, 5280, 0),
3233 CHAN5G(60, 5300, 0),
3234 CHAN5G(64, 5320, 0),
3235 CHAN5G(100, 5500, 0),
3236 CHAN5G(104, 5520, 0),
3237 CHAN5G(108, 5540, 0),
3238 CHAN5G(112, 5560, 0),
3239 CHAN5G(116, 5580, 0),
3240 CHAN5G(120, 5600, 0),
3241 CHAN5G(124, 5620, 0),
3242 CHAN5G(128, 5640, 0),
3243 CHAN5G(132, 5660, 0),
3244 CHAN5G(136, 5680, 0),
3245 CHAN5G(140, 5700, 0),
3246 CHAN5G(149, 5745, 0),
3247 CHAN5G(153, 5765, 0),
3248 CHAN5G(157, 5785, 0),
3249 CHAN5G(161, 5805, 0),
3250 CHAN5G(165, 5825, 0),
Kalle Valo5e3dd152013-06-12 20:52:10 +03003251};
3252
3253static struct ieee80211_rate ath10k_rates[] = {
3254 /* CCK */
3255 RATETAB_ENT(10, 0x82, 0),
3256 RATETAB_ENT(20, 0x84, 0),
3257 RATETAB_ENT(55, 0x8b, 0),
3258 RATETAB_ENT(110, 0x96, 0),
3259 /* OFDM */
3260 RATETAB_ENT(60, 0x0c, 0),
3261 RATETAB_ENT(90, 0x12, 0),
3262 RATETAB_ENT(120, 0x18, 0),
3263 RATETAB_ENT(180, 0x24, 0),
3264 RATETAB_ENT(240, 0x30, 0),
3265 RATETAB_ENT(360, 0x48, 0),
3266 RATETAB_ENT(480, 0x60, 0),
3267 RATETAB_ENT(540, 0x6c, 0),
3268};
3269
3270#define ath10k_a_rates (ath10k_rates + 4)
3271#define ath10k_a_rates_size (ARRAY_SIZE(ath10k_rates) - 4)
3272#define ath10k_g_rates (ath10k_rates + 0)
3273#define ath10k_g_rates_size (ARRAY_SIZE(ath10k_rates))
3274
3275struct ath10k *ath10k_mac_create(void)
3276{
3277 struct ieee80211_hw *hw;
3278 struct ath10k *ar;
3279
3280 hw = ieee80211_alloc_hw(sizeof(struct ath10k), &ath10k_ops);
3281 if (!hw)
3282 return NULL;
3283
3284 ar = hw->priv;
3285 ar->hw = hw;
3286
3287 return ar;
3288}
3289
3290void ath10k_mac_destroy(struct ath10k *ar)
3291{
3292 ieee80211_free_hw(ar->hw);
3293}
3294
3295static const struct ieee80211_iface_limit ath10k_if_limits[] = {
3296 {
3297 .max = 8,
3298 .types = BIT(NL80211_IFTYPE_STATION)
3299 | BIT(NL80211_IFTYPE_P2P_CLIENT)
Michal Kaziord531cb82013-07-31 10:55:13 +02003300 },
3301 {
3302 .max = 3,
3303 .types = BIT(NL80211_IFTYPE_P2P_GO)
3304 },
3305 {
3306 .max = 7,
3307 .types = BIT(NL80211_IFTYPE_AP)
3308 },
Kalle Valo5e3dd152013-06-12 20:52:10 +03003309};
3310
3311static const struct ieee80211_iface_combination ath10k_if_comb = {
3312 .limits = ath10k_if_limits,
3313 .n_limits = ARRAY_SIZE(ath10k_if_limits),
3314 .max_interfaces = 8,
3315 .num_different_channels = 1,
3316 .beacon_int_infra_match = true,
3317};
3318
3319static struct ieee80211_sta_vht_cap ath10k_create_vht_cap(struct ath10k *ar)
3320{
3321 struct ieee80211_sta_vht_cap vht_cap = {0};
3322 u16 mcs_map;
Michal Kazior8865bee42013-07-24 12:36:46 +02003323 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003324
3325 vht_cap.vht_supported = 1;
3326 vht_cap.cap = ar->vht_cap_info;
3327
Michal Kazior8865bee42013-07-24 12:36:46 +02003328 mcs_map = 0;
3329 for (i = 0; i < 8; i++) {
3330 if (i < ar->num_rf_chains)
3331 mcs_map |= IEEE80211_VHT_MCS_SUPPORT_0_9 << (i*2);
3332 else
3333 mcs_map |= IEEE80211_VHT_MCS_NOT_SUPPORTED << (i*2);
3334 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03003335
3336 vht_cap.vht_mcs.rx_mcs_map = cpu_to_le16(mcs_map);
3337 vht_cap.vht_mcs.tx_mcs_map = cpu_to_le16(mcs_map);
3338
3339 return vht_cap;
3340}
3341
3342static struct ieee80211_sta_ht_cap ath10k_get_ht_cap(struct ath10k *ar)
3343{
3344 int i;
3345 struct ieee80211_sta_ht_cap ht_cap = {0};
3346
3347 if (!(ar->ht_cap_info & WMI_HT_CAP_ENABLED))
3348 return ht_cap;
3349
3350 ht_cap.ht_supported = 1;
3351 ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
3352 ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_8;
3353 ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
3354 ht_cap.cap |= IEEE80211_HT_CAP_DSSSCCK40;
3355 ht_cap.cap |= WLAN_HT_CAP_SM_PS_STATIC << IEEE80211_HT_CAP_SM_PS_SHIFT;
3356
3357 if (ar->ht_cap_info & WMI_HT_CAP_HT20_SGI)
3358 ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
3359
3360 if (ar->ht_cap_info & WMI_HT_CAP_HT40_SGI)
3361 ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
3362
3363 if (ar->ht_cap_info & WMI_HT_CAP_DYNAMIC_SMPS) {
3364 u32 smps;
3365
3366 smps = WLAN_HT_CAP_SM_PS_DYNAMIC;
3367 smps <<= IEEE80211_HT_CAP_SM_PS_SHIFT;
3368
3369 ht_cap.cap |= smps;
3370 }
3371
3372 if (ar->ht_cap_info & WMI_HT_CAP_TX_STBC)
3373 ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
3374
3375 if (ar->ht_cap_info & WMI_HT_CAP_RX_STBC) {
3376 u32 stbc;
3377
3378 stbc = ar->ht_cap_info;
3379 stbc &= WMI_HT_CAP_RX_STBC;
3380 stbc >>= WMI_HT_CAP_RX_STBC_MASK_SHIFT;
3381 stbc <<= IEEE80211_HT_CAP_RX_STBC_SHIFT;
3382 stbc &= IEEE80211_HT_CAP_RX_STBC;
3383
3384 ht_cap.cap |= stbc;
3385 }
3386
3387 if (ar->ht_cap_info & WMI_HT_CAP_LDPC)
3388 ht_cap.cap |= IEEE80211_HT_CAP_LDPC_CODING;
3389
3390 if (ar->ht_cap_info & WMI_HT_CAP_L_SIG_TXOP_PROT)
3391 ht_cap.cap |= IEEE80211_HT_CAP_LSIG_TXOP_PROT;
3392
3393 /* max AMSDU is implicitly taken from vht_cap_info */
3394 if (ar->vht_cap_info & WMI_VHT_CAP_MAX_MPDU_LEN_MASK)
3395 ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
3396
Michal Kazior8865bee42013-07-24 12:36:46 +02003397 for (i = 0; i < ar->num_rf_chains; i++)
Kalle Valo5e3dd152013-06-12 20:52:10 +03003398 ht_cap.mcs.rx_mask[i] = 0xFF;
3399
3400 ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_DEFINED;
3401
3402 return ht_cap;
3403}
3404
3405
3406static void ath10k_get_arvif_iter(void *data, u8 *mac,
3407 struct ieee80211_vif *vif)
3408{
3409 struct ath10k_vif_iter *arvif_iter = data;
3410 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
3411
3412 if (arvif->vdev_id == arvif_iter->vdev_id)
3413 arvif_iter->arvif = arvif;
3414}
3415
3416struct ath10k_vif *ath10k_get_arvif(struct ath10k *ar, u32 vdev_id)
3417{
3418 struct ath10k_vif_iter arvif_iter;
3419 u32 flags;
3420
3421 memset(&arvif_iter, 0, sizeof(struct ath10k_vif_iter));
3422 arvif_iter.vdev_id = vdev_id;
3423
3424 flags = IEEE80211_IFACE_ITER_RESUME_ALL;
3425 ieee80211_iterate_active_interfaces_atomic(ar->hw,
3426 flags,
3427 ath10k_get_arvif_iter,
3428 &arvif_iter);
3429 if (!arvif_iter.arvif) {
3430 ath10k_warn("No VIF found for VDEV: %d\n", vdev_id);
3431 return NULL;
3432 }
3433
3434 return arvif_iter.arvif;
3435}
3436
3437int ath10k_mac_register(struct ath10k *ar)
3438{
3439 struct ieee80211_supported_band *band;
3440 struct ieee80211_sta_vht_cap vht_cap;
3441 struct ieee80211_sta_ht_cap ht_cap;
3442 void *channels;
3443 int ret;
3444
3445 SET_IEEE80211_PERM_ADDR(ar->hw, ar->mac_addr);
3446
3447 SET_IEEE80211_DEV(ar->hw, ar->dev);
3448
3449 ht_cap = ath10k_get_ht_cap(ar);
3450 vht_cap = ath10k_create_vht_cap(ar);
3451
3452 if (ar->phy_capability & WHAL_WLAN_11G_CAPABILITY) {
3453 channels = kmemdup(ath10k_2ghz_channels,
3454 sizeof(ath10k_2ghz_channels),
3455 GFP_KERNEL);
Michal Kaziord6015b22013-07-22 14:13:30 +02003456 if (!channels) {
3457 ret = -ENOMEM;
3458 goto err_free;
3459 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03003460
3461 band = &ar->mac.sbands[IEEE80211_BAND_2GHZ];
3462 band->n_channels = ARRAY_SIZE(ath10k_2ghz_channels);
3463 band->channels = channels;
3464 band->n_bitrates = ath10k_g_rates_size;
3465 band->bitrates = ath10k_g_rates;
3466 band->ht_cap = ht_cap;
3467
3468 /* vht is not supported in 2.4 GHz */
3469
3470 ar->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = band;
3471 }
3472
3473 if (ar->phy_capability & WHAL_WLAN_11A_CAPABILITY) {
3474 channels = kmemdup(ath10k_5ghz_channels,
3475 sizeof(ath10k_5ghz_channels),
3476 GFP_KERNEL);
3477 if (!channels) {
Michal Kaziord6015b22013-07-22 14:13:30 +02003478 ret = -ENOMEM;
3479 goto err_free;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003480 }
3481
3482 band = &ar->mac.sbands[IEEE80211_BAND_5GHZ];
3483 band->n_channels = ARRAY_SIZE(ath10k_5ghz_channels);
3484 band->channels = channels;
3485 band->n_bitrates = ath10k_a_rates_size;
3486 band->bitrates = ath10k_a_rates;
3487 band->ht_cap = ht_cap;
3488 band->vht_cap = vht_cap;
3489 ar->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = band;
3490 }
3491
3492 ar->hw->wiphy->interface_modes =
3493 BIT(NL80211_IFTYPE_STATION) |
3494 BIT(NL80211_IFTYPE_ADHOC) |
3495 BIT(NL80211_IFTYPE_AP) |
3496 BIT(NL80211_IFTYPE_P2P_CLIENT) |
3497 BIT(NL80211_IFTYPE_P2P_GO);
3498
3499 ar->hw->flags = IEEE80211_HW_SIGNAL_DBM |
3500 IEEE80211_HW_SUPPORTS_PS |
3501 IEEE80211_HW_SUPPORTS_DYNAMIC_PS |
3502 IEEE80211_HW_SUPPORTS_UAPSD |
3503 IEEE80211_HW_MFP_CAPABLE |
3504 IEEE80211_HW_REPORTS_TX_ACK_STATUS |
3505 IEEE80211_HW_HAS_RATE_CONTROL |
3506 IEEE80211_HW_SUPPORTS_STATIC_SMPS |
3507 IEEE80211_HW_WANT_MONITOR_VIF |
3508 IEEE80211_HW_AP_LINK_PS;
3509
Michal Kazior1f8bb152013-09-18 14:43:22 +02003510 /* MSDU can have HTT TX fragment pushed in front. The additional 4
3511 * bytes is used for padding/alignment if necessary. */
3512 ar->hw->extra_tx_headroom += sizeof(struct htt_data_tx_desc_frag)*2 + 4;
3513
Kalle Valo5e3dd152013-06-12 20:52:10 +03003514 if (ar->ht_cap_info & WMI_HT_CAP_DYNAMIC_SMPS)
3515 ar->hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS;
3516
3517 if (ar->ht_cap_info & WMI_HT_CAP_ENABLED) {
3518 ar->hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
3519 ar->hw->flags |= IEEE80211_HW_TX_AMPDU_SETUP_IN_HW;
3520 }
3521
3522 ar->hw->wiphy->max_scan_ssids = WLAN_SCAN_PARAMS_MAX_SSID;
3523 ar->hw->wiphy->max_scan_ie_len = WLAN_SCAN_PARAMS_MAX_IE_LEN;
3524
3525 ar->hw->vif_data_size = sizeof(struct ath10k_vif);
3526
3527 ar->hw->channel_change_time = 5000;
3528 ar->hw->max_listen_interval = ATH10K_MAX_HW_LISTEN_INTERVAL;
3529
3530 ar->hw->wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
3531 ar->hw->wiphy->max_remain_on_channel_duration = 5000;
3532
3533 ar->hw->wiphy->flags |= WIPHY_FLAG_AP_UAPSD;
3534 /*
3535 * on LL hardware queues are managed entirely by the FW
3536 * so we only advertise to mac we can do the queues thing
3537 */
3538 ar->hw->queues = 4;
3539
3540 ar->hw->wiphy->iface_combinations = &ath10k_if_comb;
3541 ar->hw->wiphy->n_iface_combinations = 1;
3542
Michal Kazior7c199992013-07-31 10:47:57 +02003543 ar->hw->netdev_features = NETIF_F_HW_CSUM;
3544
Janusz Dziedzic9702c682013-11-20 09:59:41 +02003545 if (config_enabled(CONFIG_ATH10K_DFS_CERTIFIED)) {
3546 /* Init ath dfs pattern detector */
3547 ar->ath_common.debug_mask = ATH_DBG_DFS;
3548 ar->dfs_detector = dfs_pattern_detector_init(&ar->ath_common,
3549 NL80211_DFS_UNSET);
3550
3551 if (!ar->dfs_detector)
3552 ath10k_warn("dfs pattern detector init failed\n");
3553 }
3554
Kalle Valo5e3dd152013-06-12 20:52:10 +03003555 ret = ath_regd_init(&ar->ath_common.regulatory, ar->hw->wiphy,
3556 ath10k_reg_notifier);
3557 if (ret) {
3558 ath10k_err("Regulatory initialization failed\n");
Michal Kaziord6015b22013-07-22 14:13:30 +02003559 goto err_free;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003560 }
3561
3562 ret = ieee80211_register_hw(ar->hw);
3563 if (ret) {
3564 ath10k_err("ieee80211 registration failed: %d\n", ret);
Michal Kaziord6015b22013-07-22 14:13:30 +02003565 goto err_free;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003566 }
3567
3568 if (!ath_is_world_regd(&ar->ath_common.regulatory)) {
3569 ret = regulatory_hint(ar->hw->wiphy,
3570 ar->ath_common.regulatory.alpha2);
3571 if (ret)
Michal Kaziord6015b22013-07-22 14:13:30 +02003572 goto err_unregister;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003573 }
3574
3575 return 0;
Michal Kaziord6015b22013-07-22 14:13:30 +02003576
3577err_unregister:
Kalle Valo5e3dd152013-06-12 20:52:10 +03003578 ieee80211_unregister_hw(ar->hw);
Michal Kaziord6015b22013-07-22 14:13:30 +02003579err_free:
3580 kfree(ar->mac.sbands[IEEE80211_BAND_2GHZ].channels);
3581 kfree(ar->mac.sbands[IEEE80211_BAND_5GHZ].channels);
3582
Kalle Valo5e3dd152013-06-12 20:52:10 +03003583 return ret;
3584}
3585
3586void ath10k_mac_unregister(struct ath10k *ar)
3587{
3588 ieee80211_unregister_hw(ar->hw);
3589
Janusz Dziedzic9702c682013-11-20 09:59:41 +02003590 if (config_enabled(CONFIG_ATH10K_DFS_CERTIFIED) && ar->dfs_detector)
3591 ar->dfs_detector->exit(ar->dfs_detector);
3592
Kalle Valo5e3dd152013-06-12 20:52:10 +03003593 kfree(ar->mac.sbands[IEEE80211_BAND_2GHZ].channels);
3594 kfree(ar->mac.sbands[IEEE80211_BAND_5GHZ].channels);
3595
3596 SET_IEEE80211_DEV(ar->hw, NULL);
3597}