blob: ce0f1db24731520bdcb1344490052de6b7780c8f [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
Wolfram Sang16735d02013-11-14 14:32:02 -080095 reinit_completion(&ar->install_key_done);
Kalle Valo5e3dd152013-06-12 20:52:10 +030096
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 }
Bartosz Markowski0e759f32014-01-02 14:38:33 +0100335 spin_lock_bh(&ar->data_lock);
336 ar->num_peers++;
337 spin_unlock_bh(&ar->data_lock);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300338
339 return 0;
340}
341
Michal Kazior424121c2013-07-22 14:13:31 +0200342static int ath10k_mac_set_rts(struct ath10k_vif *arvif, u32 value)
343{
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200344 struct ath10k *ar = arvif->ar;
345 u32 vdev_param;
346
Michal Kazior424121c2013-07-22 14:13:31 +0200347 if (value != 0xFFFFFFFF)
348 value = min_t(u32, arvif->ar->hw->wiphy->rts_threshold,
349 ATH10K_RTS_MAX);
350
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200351 vdev_param = ar->wmi.vdev_param->rts_threshold;
352 return ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param, value);
Michal Kazior424121c2013-07-22 14:13:31 +0200353}
354
355static int ath10k_mac_set_frag(struct ath10k_vif *arvif, u32 value)
356{
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200357 struct ath10k *ar = arvif->ar;
358 u32 vdev_param;
359
Michal Kazior424121c2013-07-22 14:13:31 +0200360 if (value != 0xFFFFFFFF)
361 value = clamp_t(u32, arvif->ar->hw->wiphy->frag_threshold,
362 ATH10K_FRAGMT_THRESHOLD_MIN,
363 ATH10K_FRAGMT_THRESHOLD_MAX);
364
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200365 vdev_param = ar->wmi.vdev_param->fragmentation_threshold;
366 return ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param, value);
Michal Kazior424121c2013-07-22 14:13:31 +0200367}
368
Kalle Valo5e3dd152013-06-12 20:52:10 +0300369static int ath10k_peer_delete(struct ath10k *ar, u32 vdev_id, const u8 *addr)
370{
371 int ret;
372
373 lockdep_assert_held(&ar->conf_mutex);
374
375 ret = ath10k_wmi_peer_delete(ar, vdev_id, addr);
376 if (ret)
377 return ret;
378
379 ret = ath10k_wait_for_peer_deleted(ar, vdev_id, addr);
380 if (ret)
381 return ret;
382
Bartosz Markowski0e759f32014-01-02 14:38:33 +0100383 spin_lock_bh(&ar->data_lock);
384 ar->num_peers--;
385 spin_unlock_bh(&ar->data_lock);
386
Kalle Valo5e3dd152013-06-12 20:52:10 +0300387 return 0;
388}
389
390static void ath10k_peer_cleanup(struct ath10k *ar, u32 vdev_id)
391{
392 struct ath10k_peer *peer, *tmp;
393
394 lockdep_assert_held(&ar->conf_mutex);
395
396 spin_lock_bh(&ar->data_lock);
397 list_for_each_entry_safe(peer, tmp, &ar->peers, list) {
398 if (peer->vdev_id != vdev_id)
399 continue;
400
401 ath10k_warn("removing stale peer %pM from vdev_id %d\n",
402 peer->addr, vdev_id);
403
404 list_del(&peer->list);
405 kfree(peer);
Bartosz Markowski0e759f32014-01-02 14:38:33 +0100406 ar->num_peers--;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300407 }
408 spin_unlock_bh(&ar->data_lock);
409}
410
Michal Kaziora96d7742013-07-16 09:38:56 +0200411static void ath10k_peer_cleanup_all(struct ath10k *ar)
412{
413 struct ath10k_peer *peer, *tmp;
414
415 lockdep_assert_held(&ar->conf_mutex);
416
417 spin_lock_bh(&ar->data_lock);
418 list_for_each_entry_safe(peer, tmp, &ar->peers, list) {
419 list_del(&peer->list);
420 kfree(peer);
421 }
Bartosz Markowski0e759f32014-01-02 14:38:33 +0100422 ar->num_peers = 0;
Michal Kaziora96d7742013-07-16 09:38:56 +0200423 spin_unlock_bh(&ar->data_lock);
424}
425
Kalle Valo5e3dd152013-06-12 20:52:10 +0300426/************************/
427/* Interface management */
428/************************/
429
430static inline int ath10k_vdev_setup_sync(struct ath10k *ar)
431{
432 int ret;
433
Michal Kazior548db542013-07-05 16:15:15 +0300434 lockdep_assert_held(&ar->conf_mutex);
435
Kalle Valo5e3dd152013-06-12 20:52:10 +0300436 ret = wait_for_completion_timeout(&ar->vdev_setup_done,
437 ATH10K_VDEV_SETUP_TIMEOUT_HZ);
438 if (ret == 0)
439 return -ETIMEDOUT;
440
441 return 0;
442}
443
444static int ath10k_vdev_start(struct ath10k_vif *arvif)
445{
446 struct ath10k *ar = arvif->ar;
447 struct ieee80211_conf *conf = &ar->hw->conf;
448 struct ieee80211_channel *channel = conf->chandef.chan;
449 struct wmi_vdev_start_request_arg arg = {};
450 int ret = 0;
451
452 lockdep_assert_held(&ar->conf_mutex);
453
Wolfram Sang16735d02013-11-14 14:32:02 -0800454 reinit_completion(&ar->vdev_setup_done);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300455
456 arg.vdev_id = arvif->vdev_id;
457 arg.dtim_period = arvif->dtim_period;
458 arg.bcn_intval = arvif->beacon_interval;
459
460 arg.channel.freq = channel->center_freq;
461
462 arg.channel.band_center_freq1 = conf->chandef.center_freq1;
463
464 arg.channel.mode = chan_to_phymode(&conf->chandef);
465
Michal Kazior89c5c842013-10-23 04:02:13 -0700466 arg.channel.min_power = 0;
Michal Kazior02256932013-10-23 04:02:14 -0700467 arg.channel.max_power = channel->max_power * 2;
468 arg.channel.max_reg_power = channel->max_reg_power * 2;
469 arg.channel.max_antenna_gain = channel->max_antenna_gain * 2;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300470
471 if (arvif->vdev_type == WMI_VDEV_TYPE_AP) {
472 arg.ssid = arvif->u.ap.ssid;
473 arg.ssid_len = arvif->u.ap.ssid_len;
474 arg.hidden_ssid = arvif->u.ap.hidden_ssid;
Marek Puzyniake8a50f82013-11-20 09:59:47 +0200475
476 /* For now allow DFS for AP mode */
477 arg.channel.chan_radar =
478 !!(channel->flags & IEEE80211_CHAN_RADAR);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300479 } else if (arvif->vdev_type == WMI_VDEV_TYPE_IBSS) {
480 arg.ssid = arvif->vif->bss_conf.ssid;
481 arg.ssid_len = arvif->vif->bss_conf.ssid_len;
482 }
483
Kalle Valo38a1d472013-09-08 17:56:14 +0300484 ath10k_dbg(ATH10K_DBG_MAC,
485 "mac vdev %d start center_freq %d phymode %s\n",
486 arg.vdev_id, arg.channel.freq,
487 ath10k_wmi_phymode_str(arg.channel.mode));
488
Kalle Valo5e3dd152013-06-12 20:52:10 +0300489 ret = ath10k_wmi_vdev_start(ar, &arg);
490 if (ret) {
491 ath10k_warn("WMI vdev start failed: ret %d\n", ret);
492 return ret;
493 }
494
495 ret = ath10k_vdev_setup_sync(ar);
496 if (ret) {
497 ath10k_warn("vdev setup failed %d\n", ret);
498 return ret;
499 }
500
501 return ret;
502}
503
504static int ath10k_vdev_stop(struct ath10k_vif *arvif)
505{
506 struct ath10k *ar = arvif->ar;
507 int ret;
508
509 lockdep_assert_held(&ar->conf_mutex);
510
Wolfram Sang16735d02013-11-14 14:32:02 -0800511 reinit_completion(&ar->vdev_setup_done);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300512
513 ret = ath10k_wmi_vdev_stop(ar, arvif->vdev_id);
514 if (ret) {
515 ath10k_warn("WMI vdev stop failed: ret %d\n", ret);
516 return ret;
517 }
518
519 ret = ath10k_vdev_setup_sync(ar);
520 if (ret) {
521 ath10k_warn("vdev setup failed %d\n", ret);
522 return ret;
523 }
524
525 return ret;
526}
527
528static int ath10k_monitor_start(struct ath10k *ar, int vdev_id)
529{
530 struct ieee80211_channel *channel = ar->hw->conf.chandef.chan;
531 struct wmi_vdev_start_request_arg arg = {};
Kalle Valo5e3dd152013-06-12 20:52:10 +0300532 int ret = 0;
533
534 lockdep_assert_held(&ar->conf_mutex);
535
Michal Kazior0ed00ee2013-10-16 16:45:48 +0300536 if (!ar->monitor_present) {
537 ath10k_warn("mac montor stop -- monitor is not present\n");
538 return -EINVAL;
539 }
540
Kalle Valo5e3dd152013-06-12 20:52:10 +0300541 arg.vdev_id = vdev_id;
542 arg.channel.freq = channel->center_freq;
543 arg.channel.band_center_freq1 = ar->hw->conf.chandef.center_freq1;
544
545 /* TODO setup this dynamically, what in case we
546 don't have any vifs? */
547 arg.channel.mode = chan_to_phymode(&ar->hw->conf.chandef);
Marek Puzyniake8a50f82013-11-20 09:59:47 +0200548 arg.channel.chan_radar =
549 !!(channel->flags & IEEE80211_CHAN_RADAR);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300550
Michal Kazior89c5c842013-10-23 04:02:13 -0700551 arg.channel.min_power = 0;
Michal Kazior02256932013-10-23 04:02:14 -0700552 arg.channel.max_power = channel->max_power * 2;
553 arg.channel.max_reg_power = channel->max_reg_power * 2;
554 arg.channel.max_antenna_gain = channel->max_antenna_gain * 2;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300555
556 ret = ath10k_wmi_vdev_start(ar, &arg);
557 if (ret) {
558 ath10k_warn("Monitor vdev start failed: ret %d\n", ret);
559 return ret;
560 }
561
562 ret = ath10k_vdev_setup_sync(ar);
563 if (ret) {
564 ath10k_warn("Monitor vdev setup failed %d\n", ret);
565 return ret;
566 }
567
568 ret = ath10k_wmi_vdev_up(ar, vdev_id, 0, ar->mac_addr);
569 if (ret) {
570 ath10k_warn("Monitor vdev up failed: %d\n", ret);
571 goto vdev_stop;
572 }
573
574 ar->monitor_vdev_id = vdev_id;
575 ar->monitor_enabled = true;
576
577 return 0;
578
579vdev_stop:
580 ret = ath10k_wmi_vdev_stop(ar, ar->monitor_vdev_id);
581 if (ret)
582 ath10k_warn("Monitor vdev stop failed: %d\n", ret);
583
584 return ret;
585}
586
587static int ath10k_monitor_stop(struct ath10k *ar)
588{
589 int ret = 0;
590
591 lockdep_assert_held(&ar->conf_mutex);
592
Michal Kazior0ed00ee2013-10-16 16:45:48 +0300593 if (!ar->monitor_present) {
594 ath10k_warn("mac montor stop -- monitor is not present\n");
595 return -EINVAL;
596 }
597
598 if (!ar->monitor_enabled) {
599 ath10k_warn("mac montor stop -- monitor is not enabled\n");
600 return -EINVAL;
601 }
602
Marek Puzyniak52fa0192013-09-24 14:06:24 +0200603 ret = ath10k_wmi_vdev_down(ar, ar->monitor_vdev_id);
604 if (ret)
605 ath10k_warn("Monitor vdev down failed: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300606
607 ret = ath10k_wmi_vdev_stop(ar, ar->monitor_vdev_id);
608 if (ret)
609 ath10k_warn("Monitor vdev stop failed: %d\n", ret);
610
611 ret = ath10k_vdev_setup_sync(ar);
612 if (ret)
613 ath10k_warn("Monitor_down sync failed: %d\n", ret);
614
615 ar->monitor_enabled = false;
616 return ret;
617}
618
619static int ath10k_monitor_create(struct ath10k *ar)
620{
621 int bit, ret = 0;
622
623 lockdep_assert_held(&ar->conf_mutex);
624
625 if (ar->monitor_present) {
626 ath10k_warn("Monitor mode already enabled\n");
627 return 0;
628 }
629
630 bit = ffs(ar->free_vdev_map);
631 if (bit == 0) {
632 ath10k_warn("No free VDEV slots\n");
633 return -ENOMEM;
634 }
635
636 ar->monitor_vdev_id = bit - 1;
637 ar->free_vdev_map &= ~(1 << ar->monitor_vdev_id);
638
639 ret = ath10k_wmi_vdev_create(ar, ar->monitor_vdev_id,
640 WMI_VDEV_TYPE_MONITOR,
641 0, ar->mac_addr);
642 if (ret) {
643 ath10k_warn("WMI vdev monitor create failed: ret %d\n", ret);
644 goto vdev_fail;
645 }
646
Kalle Valo60c3daa2013-09-08 17:56:07 +0300647 ath10k_dbg(ATH10K_DBG_MAC, "mac monitor vdev %d created\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +0300648 ar->monitor_vdev_id);
649
650 ar->monitor_present = true;
651 return 0;
652
653vdev_fail:
654 /*
655 * Restore the ID to the global map.
656 */
657 ar->free_vdev_map |= 1 << (ar->monitor_vdev_id);
658 return ret;
659}
660
661static int ath10k_monitor_destroy(struct ath10k *ar)
662{
663 int ret = 0;
664
665 lockdep_assert_held(&ar->conf_mutex);
666
667 if (!ar->monitor_present)
668 return 0;
669
670 ret = ath10k_wmi_vdev_delete(ar, ar->monitor_vdev_id);
671 if (ret) {
672 ath10k_warn("WMI vdev monitor delete failed: %d\n", ret);
673 return ret;
674 }
675
676 ar->free_vdev_map |= 1 << (ar->monitor_vdev_id);
677 ar->monitor_present = false;
678
Kalle Valo60c3daa2013-09-08 17:56:07 +0300679 ath10k_dbg(ATH10K_DBG_MAC, "mac monitor vdev %d deleted\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +0300680 ar->monitor_vdev_id);
681 return ret;
682}
683
Marek Puzyniake8a50f82013-11-20 09:59:47 +0200684static int ath10k_start_cac(struct ath10k *ar)
685{
686 int ret;
687
688 lockdep_assert_held(&ar->conf_mutex);
689
690 set_bit(ATH10K_CAC_RUNNING, &ar->dev_flags);
691
692 ret = ath10k_monitor_create(ar);
693 if (ret) {
694 clear_bit(ATH10K_CAC_RUNNING, &ar->dev_flags);
695 return ret;
696 }
697
698 ret = ath10k_monitor_start(ar, ar->monitor_vdev_id);
699 if (ret) {
700 clear_bit(ATH10K_CAC_RUNNING, &ar->dev_flags);
701 ath10k_monitor_destroy(ar);
702 return ret;
703 }
704
705 ath10k_dbg(ATH10K_DBG_MAC, "mac cac start monitor vdev %d\n",
706 ar->monitor_vdev_id);
707
708 return 0;
709}
710
711static int ath10k_stop_cac(struct ath10k *ar)
712{
713 lockdep_assert_held(&ar->conf_mutex);
714
715 /* CAC is not running - do nothing */
716 if (!test_bit(ATH10K_CAC_RUNNING, &ar->dev_flags))
717 return 0;
718
719 ath10k_monitor_stop(ar);
720 ath10k_monitor_destroy(ar);
721 clear_bit(ATH10K_CAC_RUNNING, &ar->dev_flags);
722
723 ath10k_dbg(ATH10K_DBG_MAC, "mac cac finished\n");
724
725 return 0;
726}
727
728static const char *ath10k_dfs_state(enum nl80211_dfs_state dfs_state)
729{
730 switch (dfs_state) {
731 case NL80211_DFS_USABLE:
732 return "USABLE";
733 case NL80211_DFS_UNAVAILABLE:
734 return "UNAVAILABLE";
735 case NL80211_DFS_AVAILABLE:
736 return "AVAILABLE";
737 default:
738 WARN_ON(1);
739 return "bug";
740 }
741}
742
743static void ath10k_config_radar_detection(struct ath10k *ar)
744{
745 struct ieee80211_channel *chan = ar->hw->conf.chandef.chan;
746 bool radar = ar->hw->conf.radar_enabled;
747 bool chan_radar = !!(chan->flags & IEEE80211_CHAN_RADAR);
748 enum nl80211_dfs_state dfs_state = chan->dfs_state;
749 int ret;
750
751 lockdep_assert_held(&ar->conf_mutex);
752
753 ath10k_dbg(ATH10K_DBG_MAC,
754 "mac radar config update: chan %dMHz radar %d chan radar %d chan state %s\n",
755 chan->center_freq, radar, chan_radar,
756 ath10k_dfs_state(dfs_state));
757
758 /*
759 * It's safe to call it even if CAC is not started.
760 * This call here guarantees changing channel, etc. will stop CAC.
761 */
762 ath10k_stop_cac(ar);
763
764 if (!radar)
765 return;
766
767 if (!chan_radar)
768 return;
769
770 if (dfs_state != NL80211_DFS_USABLE)
771 return;
772
773 ret = ath10k_start_cac(ar);
774 if (ret) {
775 /*
776 * Not possible to start CAC on current channel so starting
777 * radiation is not allowed, make this channel DFS_UNAVAILABLE
778 * by indicating that radar was detected.
779 */
780 ath10k_warn("failed to start CAC (%d)\n", ret);
781 ieee80211_radar_detected(ar->hw);
782 }
783}
784
Kalle Valo5e3dd152013-06-12 20:52:10 +0300785static void ath10k_control_beaconing(struct ath10k_vif *arvif,
786 struct ieee80211_bss_conf *info)
787{
788 int ret = 0;
789
Michal Kazior548db542013-07-05 16:15:15 +0300790 lockdep_assert_held(&arvif->ar->conf_mutex);
791
Kalle Valo5e3dd152013-06-12 20:52:10 +0300792 if (!info->enable_beacon) {
793 ath10k_vdev_stop(arvif);
794 return;
795 }
796
797 arvif->tx_seq_no = 0x1000;
798
799 ret = ath10k_vdev_start(arvif);
800 if (ret)
801 return;
802
803 ret = ath10k_wmi_vdev_up(arvif->ar, arvif->vdev_id, 0, info->bssid);
804 if (ret) {
805 ath10k_warn("Failed to bring up VDEV: %d\n",
806 arvif->vdev_id);
807 return;
808 }
Kalle Valo60c3daa2013-09-08 17:56:07 +0300809 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d up\n", arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300810}
811
812static void ath10k_control_ibss(struct ath10k_vif *arvif,
813 struct ieee80211_bss_conf *info,
814 const u8 self_peer[ETH_ALEN])
815{
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200816 u32 vdev_param;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300817 int ret = 0;
818
Michal Kazior548db542013-07-05 16:15:15 +0300819 lockdep_assert_held(&arvif->ar->conf_mutex);
820
Kalle Valo5e3dd152013-06-12 20:52:10 +0300821 if (!info->ibss_joined) {
822 ret = ath10k_peer_delete(arvif->ar, arvif->vdev_id, self_peer);
823 if (ret)
824 ath10k_warn("Failed to delete IBSS self peer:%pM for VDEV:%d ret:%d\n",
825 self_peer, arvif->vdev_id, ret);
826
827 if (is_zero_ether_addr(arvif->u.ibss.bssid))
828 return;
829
830 ret = ath10k_peer_delete(arvif->ar, arvif->vdev_id,
831 arvif->u.ibss.bssid);
832 if (ret) {
833 ath10k_warn("Failed to delete IBSS BSSID peer:%pM for VDEV:%d ret:%d\n",
834 arvif->u.ibss.bssid, arvif->vdev_id, ret);
835 return;
836 }
837
838 memset(arvif->u.ibss.bssid, 0, ETH_ALEN);
839
840 return;
841 }
842
843 ret = ath10k_peer_create(arvif->ar, arvif->vdev_id, self_peer);
844 if (ret) {
845 ath10k_warn("Failed to create IBSS self peer:%pM for VDEV:%d ret:%d\n",
846 self_peer, arvif->vdev_id, ret);
847 return;
848 }
849
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200850 vdev_param = arvif->ar->wmi.vdev_param->atim_window;
851 ret = ath10k_wmi_vdev_set_param(arvif->ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +0300852 ATH10K_DEFAULT_ATIM);
853 if (ret)
854 ath10k_warn("Failed to set IBSS ATIM for VDEV:%d ret:%d\n",
855 arvif->vdev_id, ret);
856}
857
858/*
859 * Review this when mac80211 gains per-interface powersave support.
860 */
Michal Kaziorad088bf2013-10-16 15:44:46 +0300861static int ath10k_mac_vif_setup_ps(struct ath10k_vif *arvif)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300862{
Michal Kaziorad088bf2013-10-16 15:44:46 +0300863 struct ath10k *ar = arvif->ar;
864 struct ieee80211_conf *conf = &ar->hw->conf;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300865 enum wmi_sta_powersave_param param;
866 enum wmi_sta_ps_mode psmode;
867 int ret;
868
Michal Kazior548db542013-07-05 16:15:15 +0300869 lockdep_assert_held(&arvif->ar->conf_mutex);
870
Michal Kaziorad088bf2013-10-16 15:44:46 +0300871 if (arvif->vif->type != NL80211_IFTYPE_STATION)
872 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300873
874 if (conf->flags & IEEE80211_CONF_PS) {
875 psmode = WMI_STA_PS_MODE_ENABLED;
876 param = WMI_STA_PS_PARAM_INACTIVITY_TIME;
877
Michal Kaziorad088bf2013-10-16 15:44:46 +0300878 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id, param,
Kalle Valo5e3dd152013-06-12 20:52:10 +0300879 conf->dynamic_ps_timeout);
880 if (ret) {
881 ath10k_warn("Failed to set inactivity time for VDEV: %d\n",
882 arvif->vdev_id);
Michal Kaziorad088bf2013-10-16 15:44:46 +0300883 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300884 }
Kalle Valo5e3dd152013-06-12 20:52:10 +0300885 } else {
886 psmode = WMI_STA_PS_MODE_DISABLED;
887 }
888
Kalle Valo60c3daa2013-09-08 17:56:07 +0300889 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d psmode %s\n",
890 arvif->vdev_id, psmode ? "enable" : "disable");
891
Michal Kaziorad088bf2013-10-16 15:44:46 +0300892 ret = ath10k_wmi_set_psmode(ar, arvif->vdev_id, psmode);
893 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +0300894 ath10k_warn("Failed to set PS Mode: %d for VDEV: %d\n",
895 psmode, arvif->vdev_id);
Michal Kaziorad088bf2013-10-16 15:44:46 +0300896 return ret;
897 }
898
899 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300900}
901
902/**********************/
903/* Station management */
904/**********************/
905
906static void ath10k_peer_assoc_h_basic(struct ath10k *ar,
907 struct ath10k_vif *arvif,
908 struct ieee80211_sta *sta,
909 struct ieee80211_bss_conf *bss_conf,
910 struct wmi_peer_assoc_complete_arg *arg)
911{
Michal Kazior548db542013-07-05 16:15:15 +0300912 lockdep_assert_held(&ar->conf_mutex);
913
Kalle Valo5e3dd152013-06-12 20:52:10 +0300914 memcpy(arg->addr, sta->addr, ETH_ALEN);
915 arg->vdev_id = arvif->vdev_id;
916 arg->peer_aid = sta->aid;
917 arg->peer_flags |= WMI_PEER_AUTH;
918
919 if (arvif->vdev_type == WMI_VDEV_TYPE_STA)
920 /*
921 * Seems FW have problems with Power Save in STA
922 * mode when we setup this parameter to high (eg. 5).
923 * Often we see that FW don't send NULL (with clean P flags)
924 * frame even there is info about buffered frames in beacons.
925 * Sometimes we have to wait more than 10 seconds before FW
926 * will wakeup. Often sending one ping from AP to our device
927 * just fail (more than 50%).
928 *
929 * Seems setting this FW parameter to 1 couse FW
930 * will check every beacon and will wakup immediately
931 * after detection buffered data.
932 */
933 arg->peer_listen_intval = 1;
934 else
935 arg->peer_listen_intval = ar->hw->conf.listen_interval;
936
937 arg->peer_num_spatial_streams = 1;
938
939 /*
940 * The assoc capabilities are available only in managed mode.
941 */
942 if (arvif->vdev_type == WMI_VDEV_TYPE_STA && bss_conf)
943 arg->peer_caps = bss_conf->assoc_capability;
944}
945
946static void ath10k_peer_assoc_h_crypto(struct ath10k *ar,
947 struct ath10k_vif *arvif,
948 struct wmi_peer_assoc_complete_arg *arg)
949{
950 struct ieee80211_vif *vif = arvif->vif;
951 struct ieee80211_bss_conf *info = &vif->bss_conf;
952 struct cfg80211_bss *bss;
953 const u8 *rsnie = NULL;
954 const u8 *wpaie = NULL;
955
Michal Kazior548db542013-07-05 16:15:15 +0300956 lockdep_assert_held(&ar->conf_mutex);
957
Kalle Valo5e3dd152013-06-12 20:52:10 +0300958 bss = cfg80211_get_bss(ar->hw->wiphy, ar->hw->conf.chandef.chan,
959 info->bssid, NULL, 0, 0, 0);
960 if (bss) {
961 const struct cfg80211_bss_ies *ies;
962
963 rcu_read_lock();
964 rsnie = ieee80211_bss_get_ie(bss, WLAN_EID_RSN);
965
966 ies = rcu_dereference(bss->ies);
967
968 wpaie = cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT,
969 WLAN_OUI_TYPE_MICROSOFT_WPA,
970 ies->data,
971 ies->len);
972 rcu_read_unlock();
973 cfg80211_put_bss(ar->hw->wiphy, bss);
974 }
975
976 /* FIXME: base on RSN IE/WPA IE is a correct idea? */
977 if (rsnie || wpaie) {
978 ath10k_dbg(ATH10K_DBG_WMI, "%s: rsn ie found\n", __func__);
979 arg->peer_flags |= WMI_PEER_NEED_PTK_4_WAY;
980 }
981
982 if (wpaie) {
983 ath10k_dbg(ATH10K_DBG_WMI, "%s: wpa ie found\n", __func__);
984 arg->peer_flags |= WMI_PEER_NEED_GTK_2_WAY;
985 }
986}
987
988static void ath10k_peer_assoc_h_rates(struct ath10k *ar,
989 struct ieee80211_sta *sta,
990 struct wmi_peer_assoc_complete_arg *arg)
991{
992 struct wmi_rate_set_arg *rateset = &arg->peer_legacy_rates;
993 const struct ieee80211_supported_band *sband;
994 const struct ieee80211_rate *rates;
995 u32 ratemask;
996 int i;
997
Michal Kazior548db542013-07-05 16:15:15 +0300998 lockdep_assert_held(&ar->conf_mutex);
999
Kalle Valo5e3dd152013-06-12 20:52:10 +03001000 sband = ar->hw->wiphy->bands[ar->hw->conf.chandef.chan->band];
1001 ratemask = sta->supp_rates[ar->hw->conf.chandef.chan->band];
1002 rates = sband->bitrates;
1003
1004 rateset->num_rates = 0;
1005
1006 for (i = 0; i < 32; i++, ratemask >>= 1, rates++) {
1007 if (!(ratemask & 1))
1008 continue;
1009
1010 rateset->rates[rateset->num_rates] = rates->hw_value;
1011 rateset->num_rates++;
1012 }
1013}
1014
1015static void ath10k_peer_assoc_h_ht(struct ath10k *ar,
1016 struct ieee80211_sta *sta,
1017 struct wmi_peer_assoc_complete_arg *arg)
1018{
1019 const struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
1020 int smps;
1021 int i, n;
1022
Michal Kazior548db542013-07-05 16:15:15 +03001023 lockdep_assert_held(&ar->conf_mutex);
1024
Kalle Valo5e3dd152013-06-12 20:52:10 +03001025 if (!ht_cap->ht_supported)
1026 return;
1027
1028 arg->peer_flags |= WMI_PEER_HT;
1029 arg->peer_max_mpdu = (1 << (IEEE80211_HT_MAX_AMPDU_FACTOR +
1030 ht_cap->ampdu_factor)) - 1;
1031
1032 arg->peer_mpdu_density =
1033 ath10k_parse_mpdudensity(ht_cap->ampdu_density);
1034
1035 arg->peer_ht_caps = ht_cap->cap;
1036 arg->peer_rate_caps |= WMI_RC_HT_FLAG;
1037
1038 if (ht_cap->cap & IEEE80211_HT_CAP_LDPC_CODING)
1039 arg->peer_flags |= WMI_PEER_LDPC;
1040
1041 if (sta->bandwidth >= IEEE80211_STA_RX_BW_40) {
1042 arg->peer_flags |= WMI_PEER_40MHZ;
1043 arg->peer_rate_caps |= WMI_RC_CW40_FLAG;
1044 }
1045
1046 if (ht_cap->cap & IEEE80211_HT_CAP_SGI_20)
1047 arg->peer_rate_caps |= WMI_RC_SGI_FLAG;
1048
1049 if (ht_cap->cap & IEEE80211_HT_CAP_SGI_40)
1050 arg->peer_rate_caps |= WMI_RC_SGI_FLAG;
1051
1052 if (ht_cap->cap & IEEE80211_HT_CAP_TX_STBC) {
1053 arg->peer_rate_caps |= WMI_RC_TX_STBC_FLAG;
1054 arg->peer_flags |= WMI_PEER_STBC;
1055 }
1056
1057 if (ht_cap->cap & IEEE80211_HT_CAP_RX_STBC) {
1058 u32 stbc;
1059 stbc = ht_cap->cap & IEEE80211_HT_CAP_RX_STBC;
1060 stbc = stbc >> IEEE80211_HT_CAP_RX_STBC_SHIFT;
1061 stbc = stbc << WMI_RC_RX_STBC_FLAG_S;
1062 arg->peer_rate_caps |= stbc;
1063 arg->peer_flags |= WMI_PEER_STBC;
1064 }
1065
1066 smps = ht_cap->cap & IEEE80211_HT_CAP_SM_PS;
1067 smps >>= IEEE80211_HT_CAP_SM_PS_SHIFT;
1068
1069 if (smps == WLAN_HT_CAP_SM_PS_STATIC) {
1070 arg->peer_flags |= WMI_PEER_SPATIAL_MUX;
1071 arg->peer_flags |= WMI_PEER_STATIC_MIMOPS;
1072 } else if (smps == WLAN_HT_CAP_SM_PS_DYNAMIC) {
1073 arg->peer_flags |= WMI_PEER_SPATIAL_MUX;
1074 arg->peer_flags |= WMI_PEER_DYN_MIMOPS;
1075 }
1076
1077 if (ht_cap->mcs.rx_mask[1] && ht_cap->mcs.rx_mask[2])
1078 arg->peer_rate_caps |= WMI_RC_TS_FLAG;
1079 else if (ht_cap->mcs.rx_mask[1])
1080 arg->peer_rate_caps |= WMI_RC_DS_FLAG;
1081
1082 for (i = 0, n = 0; i < IEEE80211_HT_MCS_MASK_LEN*8; i++)
1083 if (ht_cap->mcs.rx_mask[i/8] & (1 << i%8))
1084 arg->peer_ht_rates.rates[n++] = i;
1085
1086 arg->peer_ht_rates.num_rates = n;
1087 arg->peer_num_spatial_streams = max((n+7) / 8, 1);
1088
Kalle Valo60c3daa2013-09-08 17:56:07 +03001089 ath10k_dbg(ATH10K_DBG_MAC, "mac ht peer %pM mcs cnt %d nss %d\n",
1090 arg->addr,
Kalle Valo5e3dd152013-06-12 20:52:10 +03001091 arg->peer_ht_rates.num_rates,
1092 arg->peer_num_spatial_streams);
1093}
1094
1095static void ath10k_peer_assoc_h_qos_ap(struct ath10k *ar,
1096 struct ath10k_vif *arvif,
1097 struct ieee80211_sta *sta,
1098 struct ieee80211_bss_conf *bss_conf,
1099 struct wmi_peer_assoc_complete_arg *arg)
1100{
1101 u32 uapsd = 0;
1102 u32 max_sp = 0;
1103
Michal Kazior548db542013-07-05 16:15:15 +03001104 lockdep_assert_held(&ar->conf_mutex);
1105
Kalle Valo5e3dd152013-06-12 20:52:10 +03001106 if (sta->wme)
1107 arg->peer_flags |= WMI_PEER_QOS;
1108
1109 if (sta->wme && sta->uapsd_queues) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03001110 ath10k_dbg(ATH10K_DBG_MAC, "mac uapsd_queues 0x%x max_sp %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03001111 sta->uapsd_queues, sta->max_sp);
1112
1113 arg->peer_flags |= WMI_PEER_APSD;
Janusz Dziedzicc69029b2013-08-07 12:10:49 +02001114 arg->peer_rate_caps |= WMI_RC_UAPSD_FLAG;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001115
1116 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1117 uapsd |= WMI_AP_PS_UAPSD_AC3_DELIVERY_EN |
1118 WMI_AP_PS_UAPSD_AC3_TRIGGER_EN;
1119 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1120 uapsd |= WMI_AP_PS_UAPSD_AC2_DELIVERY_EN |
1121 WMI_AP_PS_UAPSD_AC2_TRIGGER_EN;
1122 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1123 uapsd |= WMI_AP_PS_UAPSD_AC1_DELIVERY_EN |
1124 WMI_AP_PS_UAPSD_AC1_TRIGGER_EN;
1125 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1126 uapsd |= WMI_AP_PS_UAPSD_AC0_DELIVERY_EN |
1127 WMI_AP_PS_UAPSD_AC0_TRIGGER_EN;
1128
1129
1130 if (sta->max_sp < MAX_WMI_AP_PS_PEER_PARAM_MAX_SP)
1131 max_sp = sta->max_sp;
1132
1133 ath10k_wmi_set_ap_ps_param(ar, arvif->vdev_id,
1134 sta->addr,
1135 WMI_AP_PS_PEER_PARAM_UAPSD,
1136 uapsd);
1137
1138 ath10k_wmi_set_ap_ps_param(ar, arvif->vdev_id,
1139 sta->addr,
1140 WMI_AP_PS_PEER_PARAM_MAX_SP,
1141 max_sp);
1142
1143 /* TODO setup this based on STA listen interval and
1144 beacon interval. Currently we don't know
1145 sta->listen_interval - mac80211 patch required.
1146 Currently use 10 seconds */
1147 ath10k_wmi_set_ap_ps_param(ar, arvif->vdev_id,
1148 sta->addr,
1149 WMI_AP_PS_PEER_PARAM_AGEOUT_TIME,
1150 10);
1151 }
1152}
1153
1154static void ath10k_peer_assoc_h_qos_sta(struct ath10k *ar,
1155 struct ath10k_vif *arvif,
1156 struct ieee80211_sta *sta,
1157 struct ieee80211_bss_conf *bss_conf,
1158 struct wmi_peer_assoc_complete_arg *arg)
1159{
1160 if (bss_conf->qos)
1161 arg->peer_flags |= WMI_PEER_QOS;
1162}
1163
1164static void ath10k_peer_assoc_h_vht(struct ath10k *ar,
1165 struct ieee80211_sta *sta,
1166 struct wmi_peer_assoc_complete_arg *arg)
1167{
1168 const struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap;
Sujith Manoharana24b88b2013-10-07 19:51:57 -07001169 u8 ampdu_factor;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001170
1171 if (!vht_cap->vht_supported)
1172 return;
1173
1174 arg->peer_flags |= WMI_PEER_VHT;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001175 arg->peer_vht_caps = vht_cap->cap;
1176
Sujith Manoharana24b88b2013-10-07 19:51:57 -07001177
1178 ampdu_factor = (vht_cap->cap &
1179 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK) >>
1180 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT;
1181
1182 /* Workaround: Some Netgear/Linksys 11ac APs set Rx A-MPDU factor to
1183 * zero in VHT IE. Using it would result in degraded throughput.
1184 * arg->peer_max_mpdu at this point contains HT max_mpdu so keep
1185 * it if VHT max_mpdu is smaller. */
1186 arg->peer_max_mpdu = max(arg->peer_max_mpdu,
1187 (1U << (IEEE80211_HT_MAX_AMPDU_FACTOR +
1188 ampdu_factor)) - 1);
1189
Kalle Valo5e3dd152013-06-12 20:52:10 +03001190 if (sta->bandwidth == IEEE80211_STA_RX_BW_80)
1191 arg->peer_flags |= WMI_PEER_80MHZ;
1192
1193 arg->peer_vht_rates.rx_max_rate =
1194 __le16_to_cpu(vht_cap->vht_mcs.rx_highest);
1195 arg->peer_vht_rates.rx_mcs_set =
1196 __le16_to_cpu(vht_cap->vht_mcs.rx_mcs_map);
1197 arg->peer_vht_rates.tx_max_rate =
1198 __le16_to_cpu(vht_cap->vht_mcs.tx_highest);
1199 arg->peer_vht_rates.tx_mcs_set =
1200 __le16_to_cpu(vht_cap->vht_mcs.tx_mcs_map);
1201
Kalle Valo60c3daa2013-09-08 17:56:07 +03001202 ath10k_dbg(ATH10K_DBG_MAC, "mac vht peer %pM max_mpdu %d flags 0x%x\n",
1203 sta->addr, arg->peer_max_mpdu, arg->peer_flags);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001204}
1205
1206static void ath10k_peer_assoc_h_qos(struct ath10k *ar,
1207 struct ath10k_vif *arvif,
1208 struct ieee80211_sta *sta,
1209 struct ieee80211_bss_conf *bss_conf,
1210 struct wmi_peer_assoc_complete_arg *arg)
1211{
1212 switch (arvif->vdev_type) {
1213 case WMI_VDEV_TYPE_AP:
1214 ath10k_peer_assoc_h_qos_ap(ar, arvif, sta, bss_conf, arg);
1215 break;
1216 case WMI_VDEV_TYPE_STA:
1217 ath10k_peer_assoc_h_qos_sta(ar, arvif, sta, bss_conf, arg);
1218 break;
1219 default:
1220 break;
1221 }
1222}
1223
1224static void ath10k_peer_assoc_h_phymode(struct ath10k *ar,
1225 struct ath10k_vif *arvif,
1226 struct ieee80211_sta *sta,
1227 struct wmi_peer_assoc_complete_arg *arg)
1228{
1229 enum wmi_phy_mode phymode = MODE_UNKNOWN;
1230
Kalle Valo5e3dd152013-06-12 20:52:10 +03001231 switch (ar->hw->conf.chandef.chan->band) {
1232 case IEEE80211_BAND_2GHZ:
1233 if (sta->ht_cap.ht_supported) {
1234 if (sta->bandwidth == IEEE80211_STA_RX_BW_40)
1235 phymode = MODE_11NG_HT40;
1236 else
1237 phymode = MODE_11NG_HT20;
1238 } else {
1239 phymode = MODE_11G;
1240 }
1241
1242 break;
1243 case IEEE80211_BAND_5GHZ:
Sujith Manoharan7cc45e92013-09-08 18:19:55 +03001244 /*
1245 * Check VHT first.
1246 */
1247 if (sta->vht_cap.vht_supported) {
1248 if (sta->bandwidth == IEEE80211_STA_RX_BW_80)
1249 phymode = MODE_11AC_VHT80;
1250 else if (sta->bandwidth == IEEE80211_STA_RX_BW_40)
1251 phymode = MODE_11AC_VHT40;
1252 else if (sta->bandwidth == IEEE80211_STA_RX_BW_20)
1253 phymode = MODE_11AC_VHT20;
1254 } else if (sta->ht_cap.ht_supported) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001255 if (sta->bandwidth == IEEE80211_STA_RX_BW_40)
1256 phymode = MODE_11NA_HT40;
1257 else
1258 phymode = MODE_11NA_HT20;
1259 } else {
1260 phymode = MODE_11A;
1261 }
1262
1263 break;
1264 default:
1265 break;
1266 }
1267
Kalle Valo38a1d472013-09-08 17:56:14 +03001268 ath10k_dbg(ATH10K_DBG_MAC, "mac peer %pM phymode %s\n",
1269 sta->addr, ath10k_wmi_phymode_str(phymode));
Kalle Valo60c3daa2013-09-08 17:56:07 +03001270
Kalle Valo5e3dd152013-06-12 20:52:10 +03001271 arg->peer_phymode = phymode;
1272 WARN_ON(phymode == MODE_UNKNOWN);
1273}
1274
Kalle Valob9ada652013-10-16 15:44:46 +03001275static int ath10k_peer_assoc_prepare(struct ath10k *ar,
1276 struct ath10k_vif *arvif,
1277 struct ieee80211_sta *sta,
1278 struct ieee80211_bss_conf *bss_conf,
1279 struct wmi_peer_assoc_complete_arg *arg)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001280{
Michal Kazior548db542013-07-05 16:15:15 +03001281 lockdep_assert_held(&ar->conf_mutex);
1282
Kalle Valob9ada652013-10-16 15:44:46 +03001283 memset(arg, 0, sizeof(*arg));
Kalle Valo5e3dd152013-06-12 20:52:10 +03001284
Kalle Valob9ada652013-10-16 15:44:46 +03001285 ath10k_peer_assoc_h_basic(ar, arvif, sta, bss_conf, arg);
1286 ath10k_peer_assoc_h_crypto(ar, arvif, arg);
1287 ath10k_peer_assoc_h_rates(ar, sta, arg);
1288 ath10k_peer_assoc_h_ht(ar, sta, arg);
1289 ath10k_peer_assoc_h_vht(ar, sta, arg);
1290 ath10k_peer_assoc_h_qos(ar, arvif, sta, bss_conf, arg);
1291 ath10k_peer_assoc_h_phymode(ar, arvif, sta, arg);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001292
Kalle Valob9ada652013-10-16 15:44:46 +03001293 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001294}
1295
1296/* can be called only in mac80211 callbacks due to `key_count` usage */
1297static void ath10k_bss_assoc(struct ieee80211_hw *hw,
1298 struct ieee80211_vif *vif,
1299 struct ieee80211_bss_conf *bss_conf)
1300{
1301 struct ath10k *ar = hw->priv;
1302 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
Kalle Valob9ada652013-10-16 15:44:46 +03001303 struct wmi_peer_assoc_complete_arg peer_arg;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001304 struct ieee80211_sta *ap_sta;
1305 int ret;
1306
Michal Kazior548db542013-07-05 16:15:15 +03001307 lockdep_assert_held(&ar->conf_mutex);
1308
Kalle Valo5e3dd152013-06-12 20:52:10 +03001309 rcu_read_lock();
1310
1311 ap_sta = ieee80211_find_sta(vif, bss_conf->bssid);
1312 if (!ap_sta) {
1313 ath10k_warn("Failed to find station entry for %pM\n",
1314 bss_conf->bssid);
1315 rcu_read_unlock();
1316 return;
1317 }
1318
Kalle Valob9ada652013-10-16 15:44:46 +03001319 ret = ath10k_peer_assoc_prepare(ar, arvif, ap_sta,
1320 bss_conf, &peer_arg);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001321 if (ret) {
Kalle Valob9ada652013-10-16 15:44:46 +03001322 ath10k_warn("Peer assoc prepare failed for %pM\n: %d",
1323 bss_conf->bssid, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001324 rcu_read_unlock();
1325 return;
1326 }
1327
1328 rcu_read_unlock();
1329
Kalle Valob9ada652013-10-16 15:44:46 +03001330 ret = ath10k_wmi_peer_assoc(ar, &peer_arg);
1331 if (ret) {
1332 ath10k_warn("Peer assoc failed for %pM\n: %d",
1333 bss_conf->bssid, ret);
1334 return;
1335 }
1336
Kalle Valo60c3daa2013-09-08 17:56:07 +03001337 ath10k_dbg(ATH10K_DBG_MAC,
1338 "mac vdev %d up (associated) bssid %pM aid %d\n",
1339 arvif->vdev_id, bss_conf->bssid, bss_conf->aid);
1340
Kalle Valo5e3dd152013-06-12 20:52:10 +03001341 ret = ath10k_wmi_vdev_up(ar, arvif->vdev_id, bss_conf->aid,
1342 bss_conf->bssid);
1343 if (ret)
1344 ath10k_warn("VDEV: %d up failed: ret %d\n",
1345 arvif->vdev_id, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001346}
1347
1348/*
1349 * FIXME: flush TIDs
1350 */
1351static void ath10k_bss_disassoc(struct ieee80211_hw *hw,
1352 struct ieee80211_vif *vif)
1353{
1354 struct ath10k *ar = hw->priv;
1355 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
1356 int ret;
1357
Michal Kazior548db542013-07-05 16:15:15 +03001358 lockdep_assert_held(&ar->conf_mutex);
1359
Kalle Valo5e3dd152013-06-12 20:52:10 +03001360 /*
1361 * For some reason, calling VDEV-DOWN before VDEV-STOP
1362 * makes the FW to send frames via HTT after disassociation.
1363 * No idea why this happens, even though VDEV-DOWN is supposed
1364 * to be analogous to link down, so just stop the VDEV.
1365 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03001366 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d stop (disassociated\n",
1367 arvif->vdev_id);
1368
1369 /* FIXME: check return value */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001370 ret = ath10k_vdev_stop(arvif);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001371
1372 /*
1373 * If we don't call VDEV-DOWN after VDEV-STOP FW will remain active and
1374 * report beacons from previously associated network through HTT.
1375 * This in turn would spam mac80211 WARN_ON if we bring down all
1376 * interfaces as it expects there is no rx when no interface is
1377 * running.
1378 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03001379 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d down\n", arvif->vdev_id);
1380
1381 /* FIXME: why don't we print error if wmi call fails? */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001382 ret = ath10k_wmi_vdev_down(ar, arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001383
Michal Kaziorcc4827b2013-10-16 15:44:45 +03001384 arvif->def_wep_key_idx = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001385}
1386
1387static int ath10k_station_assoc(struct ath10k *ar, struct ath10k_vif *arvif,
1388 struct ieee80211_sta *sta)
1389{
Kalle Valob9ada652013-10-16 15:44:46 +03001390 struct wmi_peer_assoc_complete_arg peer_arg;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001391 int ret = 0;
1392
Michal Kazior548db542013-07-05 16:15:15 +03001393 lockdep_assert_held(&ar->conf_mutex);
1394
Kalle Valob9ada652013-10-16 15:44:46 +03001395 ret = ath10k_peer_assoc_prepare(ar, arvif, sta, NULL, &peer_arg);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001396 if (ret) {
Kalle Valob9ada652013-10-16 15:44:46 +03001397 ath10k_warn("WMI peer assoc prepare failed for %pM\n",
1398 sta->addr);
1399 return ret;
1400 }
1401
1402 ret = ath10k_wmi_peer_assoc(ar, &peer_arg);
1403 if (ret) {
1404 ath10k_warn("Peer assoc failed for STA %pM\n: %d",
1405 sta->addr, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001406 return ret;
1407 }
1408
1409 ret = ath10k_install_peer_wep_keys(arvif, sta->addr);
1410 if (ret) {
1411 ath10k_warn("could not install peer wep keys (%d)\n", ret);
1412 return ret;
1413 }
1414
1415 return ret;
1416}
1417
1418static int ath10k_station_disassoc(struct ath10k *ar, struct ath10k_vif *arvif,
1419 struct ieee80211_sta *sta)
1420{
1421 int ret = 0;
1422
Michal Kazior548db542013-07-05 16:15:15 +03001423 lockdep_assert_held(&ar->conf_mutex);
1424
Kalle Valo5e3dd152013-06-12 20:52:10 +03001425 ret = ath10k_clear_peer_keys(arvif, sta->addr);
1426 if (ret) {
1427 ath10k_warn("could not clear all peer wep keys (%d)\n", ret);
1428 return ret;
1429 }
1430
1431 return ret;
1432}
1433
1434/**************/
1435/* Regulatory */
1436/**************/
1437
1438static int ath10k_update_channel_list(struct ath10k *ar)
1439{
1440 struct ieee80211_hw *hw = ar->hw;
1441 struct ieee80211_supported_band **bands;
1442 enum ieee80211_band band;
1443 struct ieee80211_channel *channel;
1444 struct wmi_scan_chan_list_arg arg = {0};
1445 struct wmi_channel_arg *ch;
1446 bool passive;
1447 int len;
1448 int ret;
1449 int i;
1450
Michal Kazior548db542013-07-05 16:15:15 +03001451 lockdep_assert_held(&ar->conf_mutex);
1452
Kalle Valo5e3dd152013-06-12 20:52:10 +03001453 bands = hw->wiphy->bands;
1454 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1455 if (!bands[band])
1456 continue;
1457
1458 for (i = 0; i < bands[band]->n_channels; i++) {
1459 if (bands[band]->channels[i].flags &
1460 IEEE80211_CHAN_DISABLED)
1461 continue;
1462
1463 arg.n_channels++;
1464 }
1465 }
1466
1467 len = sizeof(struct wmi_channel_arg) * arg.n_channels;
1468 arg.channels = kzalloc(len, GFP_KERNEL);
1469 if (!arg.channels)
1470 return -ENOMEM;
1471
1472 ch = arg.channels;
1473 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1474 if (!bands[band])
1475 continue;
1476
1477 for (i = 0; i < bands[band]->n_channels; i++) {
1478 channel = &bands[band]->channels[i];
1479
1480 if (channel->flags & IEEE80211_CHAN_DISABLED)
1481 continue;
1482
1483 ch->allow_ht = true;
1484
1485 /* FIXME: when should we really allow VHT? */
1486 ch->allow_vht = true;
1487
1488 ch->allow_ibss =
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +02001489 !(channel->flags & IEEE80211_CHAN_NO_IR);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001490
1491 ch->ht40plus =
1492 !(channel->flags & IEEE80211_CHAN_NO_HT40PLUS);
1493
Marek Puzyniake8a50f82013-11-20 09:59:47 +02001494 ch->chan_radar =
1495 !!(channel->flags & IEEE80211_CHAN_RADAR);
1496
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +02001497 passive = channel->flags & IEEE80211_CHAN_NO_IR;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001498 ch->passive = passive;
1499
1500 ch->freq = channel->center_freq;
Michal Kazior89c5c842013-10-23 04:02:13 -07001501 ch->min_power = 0;
Michal Kazior02256932013-10-23 04:02:14 -07001502 ch->max_power = channel->max_power * 2;
1503 ch->max_reg_power = channel->max_reg_power * 2;
1504 ch->max_antenna_gain = channel->max_antenna_gain * 2;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001505 ch->reg_class_id = 0; /* FIXME */
1506
1507 /* FIXME: why use only legacy modes, why not any
1508 * HT/VHT modes? Would that even make any
1509 * difference? */
1510 if (channel->band == IEEE80211_BAND_2GHZ)
1511 ch->mode = MODE_11G;
1512 else
1513 ch->mode = MODE_11A;
1514
1515 if (WARN_ON_ONCE(ch->mode == MODE_UNKNOWN))
1516 continue;
1517
1518 ath10k_dbg(ATH10K_DBG_WMI,
Kalle Valo60c3daa2013-09-08 17:56:07 +03001519 "mac channel [%zd/%d] freq %d maxpower %d regpower %d antenna %d mode %d\n",
1520 ch - arg.channels, arg.n_channels,
Kalle Valo5e3dd152013-06-12 20:52:10 +03001521 ch->freq, ch->max_power, ch->max_reg_power,
1522 ch->max_antenna_gain, ch->mode);
1523
1524 ch++;
1525 }
1526 }
1527
1528 ret = ath10k_wmi_scan_chan_list(ar, &arg);
1529 kfree(arg.channels);
1530
1531 return ret;
1532}
1533
Michal Kaziorf7843d72013-07-16 09:38:52 +02001534static void ath10k_regd_update(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001535{
Kalle Valo5e3dd152013-06-12 20:52:10 +03001536 struct reg_dmn_pair_mapping *regpair;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001537 int ret;
1538
Michal Kaziorf7843d72013-07-16 09:38:52 +02001539 lockdep_assert_held(&ar->conf_mutex);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001540
1541 ret = ath10k_update_channel_list(ar);
1542 if (ret)
1543 ath10k_warn("could not update channel list (%d)\n", ret);
1544
1545 regpair = ar->ath_common.regulatory.regpair;
Michal Kaziorf7843d72013-07-16 09:38:52 +02001546
Kalle Valo5e3dd152013-06-12 20:52:10 +03001547 /* Target allows setting up per-band regdomain but ath_common provides
1548 * a combined one only */
1549 ret = ath10k_wmi_pdev_set_regdomain(ar,
1550 regpair->regDmnEnum,
1551 regpair->regDmnEnum, /* 2ghz */
1552 regpair->regDmnEnum, /* 5ghz */
1553 regpair->reg_2ghz_ctl,
1554 regpair->reg_5ghz_ctl);
1555 if (ret)
1556 ath10k_warn("could not set pdev regdomain (%d)\n", ret);
Michal Kaziorf7843d72013-07-16 09:38:52 +02001557}
Michal Kazior548db542013-07-05 16:15:15 +03001558
Michal Kaziorf7843d72013-07-16 09:38:52 +02001559static void ath10k_reg_notifier(struct wiphy *wiphy,
1560 struct regulatory_request *request)
1561{
1562 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
1563 struct ath10k *ar = hw->priv;
Janusz Dziedzic9702c682013-11-20 09:59:41 +02001564 bool result;
Michal Kaziorf7843d72013-07-16 09:38:52 +02001565
1566 ath_reg_notifier_apply(wiphy, request, &ar->ath_common.regulatory);
1567
Janusz Dziedzic9702c682013-11-20 09:59:41 +02001568 if (config_enabled(CONFIG_ATH10K_DFS_CERTIFIED) && ar->dfs_detector) {
1569 ath10k_dbg(ATH10K_DBG_REGULATORY, "dfs region 0x%x\n",
1570 request->dfs_region);
1571 result = ar->dfs_detector->set_dfs_domain(ar->dfs_detector,
1572 request->dfs_region);
1573 if (!result)
1574 ath10k_warn("dfs region 0x%X not supported, will trigger radar for every pulse\n",
1575 request->dfs_region);
1576 }
1577
Michal Kaziorf7843d72013-07-16 09:38:52 +02001578 mutex_lock(&ar->conf_mutex);
1579 if (ar->state == ATH10K_STATE_ON)
1580 ath10k_regd_update(ar);
Michal Kazior548db542013-07-05 16:15:15 +03001581 mutex_unlock(&ar->conf_mutex);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001582}
1583
1584/***************/
1585/* TX handlers */
1586/***************/
1587
Michal Kazior42c3aa62013-10-02 11:03:38 +02001588static u8 ath10k_tx_h_get_tid(struct ieee80211_hdr *hdr)
1589{
1590 if (ieee80211_is_mgmt(hdr->frame_control))
1591 return HTT_DATA_TX_EXT_TID_MGMT;
1592
1593 if (!ieee80211_is_data_qos(hdr->frame_control))
1594 return HTT_DATA_TX_EXT_TID_NON_QOS_MCAST_BCAST;
1595
1596 if (!is_unicast_ether_addr(ieee80211_get_DA(hdr)))
1597 return HTT_DATA_TX_EXT_TID_NON_QOS_MCAST_BCAST;
1598
1599 return ieee80211_get_qos_ctl(hdr)[0] & IEEE80211_QOS_CTL_TID_MASK;
1600}
1601
Michal Kaziorddb6ad72013-10-02 11:03:39 +02001602static u8 ath10k_tx_h_get_vdev_id(struct ath10k *ar,
1603 struct ieee80211_tx_info *info)
1604{
1605 if (info->control.vif)
1606 return ath10k_vif_to_arvif(info->control.vif)->vdev_id;
1607
1608 if (ar->monitor_enabled)
1609 return ar->monitor_vdev_id;
1610
1611 ath10k_warn("could not resolve vdev id\n");
1612 return 0;
1613}
1614
Kalle Valo5e3dd152013-06-12 20:52:10 +03001615/*
1616 * Frames sent to the FW have to be in "Native Wifi" format.
1617 * Strip the QoS field from the 802.11 header.
1618 */
1619static void ath10k_tx_h_qos_workaround(struct ieee80211_hw *hw,
1620 struct ieee80211_tx_control *control,
1621 struct sk_buff *skb)
1622{
1623 struct ieee80211_hdr *hdr = (void *)skb->data;
1624 u8 *qos_ctl;
1625
1626 if (!ieee80211_is_data_qos(hdr->frame_control))
1627 return;
1628
1629 qos_ctl = ieee80211_get_qos_ctl(hdr);
Michal Kaziorba0ccd72013-07-22 14:25:28 +02001630 memmove(skb->data + IEEE80211_QOS_CTL_LEN,
1631 skb->data, (void *)qos_ctl - (void *)skb->data);
1632 skb_pull(skb, IEEE80211_QOS_CTL_LEN);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001633}
1634
Michal Kaziorcc4827b2013-10-16 15:44:45 +03001635static void ath10k_tx_wep_key_work(struct work_struct *work)
1636{
1637 struct ath10k_vif *arvif = container_of(work, struct ath10k_vif,
1638 wep_key_work);
1639 int ret, keyidx = arvif->def_wep_key_newidx;
1640
1641 if (arvif->def_wep_key_idx == keyidx)
1642 return;
1643
1644 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d set keyidx %d\n",
1645 arvif->vdev_id, keyidx);
1646
1647 ret = ath10k_wmi_vdev_set_param(arvif->ar,
1648 arvif->vdev_id,
1649 arvif->ar->wmi.vdev_param->def_keyid,
1650 keyidx);
1651 if (ret) {
1652 ath10k_warn("could not update wep keyidx (%d)\n", ret);
1653 return;
1654 }
1655
1656 arvif->def_wep_key_idx = keyidx;
1657}
1658
Kalle Valo5e3dd152013-06-12 20:52:10 +03001659static void ath10k_tx_h_update_wep_key(struct sk_buff *skb)
1660{
1661 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1662 struct ieee80211_vif *vif = info->control.vif;
1663 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
1664 struct ath10k *ar = arvif->ar;
1665 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1666 struct ieee80211_key_conf *key = info->control.hw_key;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001667
Kalle Valo5e3dd152013-06-12 20:52:10 +03001668 if (!ieee80211_has_protected(hdr->frame_control))
1669 return;
1670
1671 if (!key)
1672 return;
1673
1674 if (key->cipher != WLAN_CIPHER_SUITE_WEP40 &&
1675 key->cipher != WLAN_CIPHER_SUITE_WEP104)
1676 return;
1677
Michal Kaziorcc4827b2013-10-16 15:44:45 +03001678 if (key->keyidx == arvif->def_wep_key_idx)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001679 return;
1680
Michal Kaziorcc4827b2013-10-16 15:44:45 +03001681 /* FIXME: Most likely a few frames will be TXed with an old key. Simply
1682 * queueing frames until key index is updated is not an option because
1683 * sk_buff may need more processing to be done, e.g. offchannel */
1684 arvif->def_wep_key_newidx = key->keyidx;
1685 ieee80211_queue_work(ar->hw, &arvif->wep_key_work);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001686}
1687
1688static void ath10k_tx_h_add_p2p_noa_ie(struct ath10k *ar, struct sk_buff *skb)
1689{
1690 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1691 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1692 struct ieee80211_vif *vif = info->control.vif;
1693 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
1694
1695 /* This is case only for P2P_GO */
1696 if (arvif->vdev_type != WMI_VDEV_TYPE_AP ||
1697 arvif->vdev_subtype != WMI_VDEV_SUBTYPE_P2P_GO)
1698 return;
1699
1700 if (unlikely(ieee80211_is_probe_resp(hdr->frame_control))) {
1701 spin_lock_bh(&ar->data_lock);
1702 if (arvif->u.ap.noa_data)
1703 if (!pskb_expand_head(skb, 0, arvif->u.ap.noa_len,
1704 GFP_ATOMIC))
1705 memcpy(skb_put(skb, arvif->u.ap.noa_len),
1706 arvif->u.ap.noa_data,
1707 arvif->u.ap.noa_len);
1708 spin_unlock_bh(&ar->data_lock);
1709 }
1710}
1711
1712static void ath10k_tx_htt(struct ath10k *ar, struct sk_buff *skb)
1713{
1714 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001715 int ret = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001716
Michal Kazior961d4c32013-08-09 10:13:34 +02001717 if (ar->htt.target_version_major >= 3) {
1718 /* Since HTT 3.0 there is no separate mgmt tx command */
1719 ret = ath10k_htt_tx(&ar->htt, skb);
1720 goto exit;
1721 }
1722
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001723 if (ieee80211_is_mgmt(hdr->frame_control)) {
1724 if (test_bit(ATH10K_FW_FEATURE_HAS_WMI_MGMT_TX,
1725 ar->fw_features)) {
1726 if (skb_queue_len(&ar->wmi_mgmt_tx_queue) >=
1727 ATH10K_MAX_NUM_MGMT_PENDING) {
1728 ath10k_warn("wmi mgmt_tx queue limit reached\n");
1729 ret = -EBUSY;
1730 goto exit;
1731 }
1732
1733 skb_queue_tail(&ar->wmi_mgmt_tx_queue, skb);
1734 ieee80211_queue_work(ar->hw, &ar->wmi_mgmt_tx_work);
1735 } else {
1736 ret = ath10k_htt_mgmt_tx(&ar->htt, skb);
1737 }
1738 } else if (!test_bit(ATH10K_FW_FEATURE_HAS_WMI_MGMT_TX,
1739 ar->fw_features) &&
1740 ieee80211_is_nullfunc(hdr->frame_control)) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001741 /* FW does not report tx status properly for NullFunc frames
1742 * unless they are sent through mgmt tx path. mac80211 sends
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001743 * those frames when it detects link/beacon loss and depends
1744 * on the tx status to be correct. */
Michal Kazioredb82362013-07-05 16:15:14 +03001745 ret = ath10k_htt_mgmt_tx(&ar->htt, skb);
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001746 } else {
Michal Kazioredb82362013-07-05 16:15:14 +03001747 ret = ath10k_htt_tx(&ar->htt, skb);
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001748 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03001749
Michal Kazior961d4c32013-08-09 10:13:34 +02001750exit:
Kalle Valo5e3dd152013-06-12 20:52:10 +03001751 if (ret) {
1752 ath10k_warn("tx failed (%d). dropping packet.\n", ret);
1753 ieee80211_free_txskb(ar->hw, skb);
1754 }
1755}
1756
1757void ath10k_offchan_tx_purge(struct ath10k *ar)
1758{
1759 struct sk_buff *skb;
1760
1761 for (;;) {
1762 skb = skb_dequeue(&ar->offchan_tx_queue);
1763 if (!skb)
1764 break;
1765
1766 ieee80211_free_txskb(ar->hw, skb);
1767 }
1768}
1769
1770void ath10k_offchan_tx_work(struct work_struct *work)
1771{
1772 struct ath10k *ar = container_of(work, struct ath10k, offchan_tx_work);
1773 struct ath10k_peer *peer;
1774 struct ieee80211_hdr *hdr;
1775 struct sk_buff *skb;
1776 const u8 *peer_addr;
1777 int vdev_id;
1778 int ret;
1779
1780 /* FW requirement: We must create a peer before FW will send out
1781 * an offchannel frame. Otherwise the frame will be stuck and
1782 * never transmitted. We delete the peer upon tx completion.
1783 * It is unlikely that a peer for offchannel tx will already be
1784 * present. However it may be in some rare cases so account for that.
1785 * Otherwise we might remove a legitimate peer and break stuff. */
1786
1787 for (;;) {
1788 skb = skb_dequeue(&ar->offchan_tx_queue);
1789 if (!skb)
1790 break;
1791
1792 mutex_lock(&ar->conf_mutex);
1793
Kalle Valo60c3daa2013-09-08 17:56:07 +03001794 ath10k_dbg(ATH10K_DBG_MAC, "mac offchannel skb %p\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03001795 skb);
1796
1797 hdr = (struct ieee80211_hdr *)skb->data;
1798 peer_addr = ieee80211_get_DA(hdr);
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001799 vdev_id = ATH10K_SKB_CB(skb)->vdev_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001800
1801 spin_lock_bh(&ar->data_lock);
1802 peer = ath10k_peer_find(ar, vdev_id, peer_addr);
1803 spin_unlock_bh(&ar->data_lock);
1804
1805 if (peer)
Kalle Valo60c3daa2013-09-08 17:56:07 +03001806 /* FIXME: should this use ath10k_warn()? */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001807 ath10k_dbg(ATH10K_DBG_MAC, "peer %pM on vdev %d already present\n",
1808 peer_addr, vdev_id);
1809
1810 if (!peer) {
1811 ret = ath10k_peer_create(ar, vdev_id, peer_addr);
1812 if (ret)
1813 ath10k_warn("peer %pM on vdev %d not created (%d)\n",
1814 peer_addr, vdev_id, ret);
1815 }
1816
1817 spin_lock_bh(&ar->data_lock);
Wolfram Sang16735d02013-11-14 14:32:02 -08001818 reinit_completion(&ar->offchan_tx_completed);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001819 ar->offchan_tx_skb = skb;
1820 spin_unlock_bh(&ar->data_lock);
1821
1822 ath10k_tx_htt(ar, skb);
1823
1824 ret = wait_for_completion_timeout(&ar->offchan_tx_completed,
1825 3 * HZ);
1826 if (ret <= 0)
1827 ath10k_warn("timed out waiting for offchannel skb %p\n",
1828 skb);
1829
1830 if (!peer) {
1831 ret = ath10k_peer_delete(ar, vdev_id, peer_addr);
1832 if (ret)
1833 ath10k_warn("peer %pM on vdev %d not deleted (%d)\n",
1834 peer_addr, vdev_id, ret);
1835 }
1836
1837 mutex_unlock(&ar->conf_mutex);
1838 }
1839}
1840
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001841void ath10k_mgmt_over_wmi_tx_purge(struct ath10k *ar)
1842{
1843 struct sk_buff *skb;
1844
1845 for (;;) {
1846 skb = skb_dequeue(&ar->wmi_mgmt_tx_queue);
1847 if (!skb)
1848 break;
1849
1850 ieee80211_free_txskb(ar->hw, skb);
1851 }
1852}
1853
1854void ath10k_mgmt_over_wmi_tx_work(struct work_struct *work)
1855{
1856 struct ath10k *ar = container_of(work, struct ath10k, wmi_mgmt_tx_work);
1857 struct sk_buff *skb;
1858 int ret;
1859
1860 for (;;) {
1861 skb = skb_dequeue(&ar->wmi_mgmt_tx_queue);
1862 if (!skb)
1863 break;
1864
1865 ret = ath10k_wmi_mgmt_tx(ar, skb);
Michal Kazior5fb5e412013-10-28 07:18:13 +01001866 if (ret) {
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001867 ath10k_warn("wmi mgmt_tx failed (%d)\n", ret);
Michal Kazior5fb5e412013-10-28 07:18:13 +01001868 ieee80211_free_txskb(ar->hw, skb);
1869 }
Bartosz Markowski5e00d312013-09-26 17:47:12 +02001870 }
1871}
1872
Kalle Valo5e3dd152013-06-12 20:52:10 +03001873/************/
1874/* Scanning */
1875/************/
1876
1877/*
1878 * This gets called if we dont get a heart-beat during scan.
1879 * This may indicate the FW has hung and we need to abort the
1880 * scan manually to prevent cancel_hw_scan() from deadlocking
1881 */
1882void ath10k_reset_scan(unsigned long ptr)
1883{
1884 struct ath10k *ar = (struct ath10k *)ptr;
1885
1886 spin_lock_bh(&ar->data_lock);
1887 if (!ar->scan.in_progress) {
1888 spin_unlock_bh(&ar->data_lock);
1889 return;
1890 }
1891
1892 ath10k_warn("scan timeout. resetting. fw issue?\n");
1893
1894 if (ar->scan.is_roc)
1895 ieee80211_remain_on_channel_expired(ar->hw);
1896 else
1897 ieee80211_scan_completed(ar->hw, 1 /* aborted */);
1898
1899 ar->scan.in_progress = false;
1900 complete_all(&ar->scan.completed);
1901 spin_unlock_bh(&ar->data_lock);
1902}
1903
1904static int ath10k_abort_scan(struct ath10k *ar)
1905{
1906 struct wmi_stop_scan_arg arg = {
1907 .req_id = 1, /* FIXME */
1908 .req_type = WMI_SCAN_STOP_ONE,
1909 .u.scan_id = ATH10K_SCAN_ID,
1910 };
1911 int ret;
1912
1913 lockdep_assert_held(&ar->conf_mutex);
1914
1915 del_timer_sync(&ar->scan.timeout);
1916
1917 spin_lock_bh(&ar->data_lock);
1918 if (!ar->scan.in_progress) {
1919 spin_unlock_bh(&ar->data_lock);
1920 return 0;
1921 }
1922
1923 ar->scan.aborting = true;
1924 spin_unlock_bh(&ar->data_lock);
1925
1926 ret = ath10k_wmi_stop_scan(ar, &arg);
1927 if (ret) {
1928 ath10k_warn("could not submit wmi stop scan (%d)\n", ret);
Michal Kazioradb8c9b2013-07-05 16:15:16 +03001929 spin_lock_bh(&ar->data_lock);
1930 ar->scan.in_progress = false;
1931 ath10k_offchan_tx_purge(ar);
1932 spin_unlock_bh(&ar->data_lock);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001933 return -EIO;
1934 }
1935
Kalle Valo5e3dd152013-06-12 20:52:10 +03001936 ret = wait_for_completion_timeout(&ar->scan.completed, 3*HZ);
1937 if (ret == 0)
1938 ath10k_warn("timed out while waiting for scan to stop\n");
1939
1940 /* scan completion may be done right after we timeout here, so let's
1941 * check the in_progress and tell mac80211 scan is completed. if we
1942 * don't do that and FW fails to send us scan completion indication
1943 * then userspace won't be able to scan anymore */
1944 ret = 0;
1945
1946 spin_lock_bh(&ar->data_lock);
1947 if (ar->scan.in_progress) {
1948 ath10k_warn("could not stop scan. its still in progress\n");
1949 ar->scan.in_progress = false;
1950 ath10k_offchan_tx_purge(ar);
1951 ret = -ETIMEDOUT;
1952 }
1953 spin_unlock_bh(&ar->data_lock);
1954
1955 return ret;
1956}
1957
1958static int ath10k_start_scan(struct ath10k *ar,
1959 const struct wmi_start_scan_arg *arg)
1960{
1961 int ret;
1962
1963 lockdep_assert_held(&ar->conf_mutex);
1964
1965 ret = ath10k_wmi_start_scan(ar, arg);
1966 if (ret)
1967 return ret;
1968
Kalle Valo5e3dd152013-06-12 20:52:10 +03001969 ret = wait_for_completion_timeout(&ar->scan.started, 1*HZ);
1970 if (ret == 0) {
1971 ath10k_abort_scan(ar);
1972 return ret;
1973 }
1974
1975 /* the scan can complete earlier, before we even
1976 * start the timer. in that case the timer handler
1977 * checks ar->scan.in_progress and bails out if its
1978 * false. Add a 200ms margin to account event/command
1979 * processing. */
1980 mod_timer(&ar->scan.timeout, jiffies +
1981 msecs_to_jiffies(arg->max_scan_time+200));
1982 return 0;
1983}
1984
1985/**********************/
1986/* mac80211 callbacks */
1987/**********************/
1988
1989static void ath10k_tx(struct ieee80211_hw *hw,
1990 struct ieee80211_tx_control *control,
1991 struct sk_buff *skb)
1992{
1993 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1994 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1995 struct ath10k *ar = hw->priv;
Michal Kaziorddb6ad72013-10-02 11:03:39 +02001996 u8 tid, vdev_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001997
1998 /* We should disable CCK RATE due to P2P */
1999 if (info->flags & IEEE80211_TX_CTL_NO_CCK_RATE)
2000 ath10k_dbg(ATH10K_DBG_MAC, "IEEE80211_TX_CTL_NO_CCK_RATE\n");
2001
2002 /* we must calculate tid before we apply qos workaround
2003 * as we'd lose the qos control field */
Michal Kazior42c3aa62013-10-02 11:03:38 +02002004 tid = ath10k_tx_h_get_tid(hdr);
Michal Kaziorddb6ad72013-10-02 11:03:39 +02002005 vdev_id = ath10k_tx_h_get_vdev_id(ar, info);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002006
Michal Kaziorcf84bd42013-07-16 11:04:54 +02002007 /* it makes no sense to process injected frames like that */
2008 if (info->control.vif &&
2009 info->control.vif->type != NL80211_IFTYPE_MONITOR) {
2010 ath10k_tx_h_qos_workaround(hw, control, skb);
2011 ath10k_tx_h_update_wep_key(skb);
2012 ath10k_tx_h_add_p2p_noa_ie(ar, skb);
2013 ath10k_tx_h_seq_no(skb);
2014 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002015
Bartosz Markowski5e00d312013-09-26 17:47:12 +02002016 ATH10K_SKB_CB(skb)->vdev_id = vdev_id;
Michal Kazior27bb1782013-09-18 14:43:19 +02002017 ATH10K_SKB_CB(skb)->htt.is_offchan = false;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002018 ATH10K_SKB_CB(skb)->htt.tid = tid;
2019
2020 if (info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) {
2021 spin_lock_bh(&ar->data_lock);
2022 ATH10K_SKB_CB(skb)->htt.is_offchan = true;
Bartosz Markowski5e00d312013-09-26 17:47:12 +02002023 ATH10K_SKB_CB(skb)->vdev_id = ar->scan.vdev_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002024 spin_unlock_bh(&ar->data_lock);
2025
2026 ath10k_dbg(ATH10K_DBG_MAC, "queued offchannel skb %p\n", skb);
2027
2028 skb_queue_tail(&ar->offchan_tx_queue, skb);
2029 ieee80211_queue_work(hw, &ar->offchan_tx_work);
2030 return;
2031 }
2032
2033 ath10k_tx_htt(ar, skb);
2034}
2035
2036/*
2037 * Initialize various parameters with default vaules.
2038 */
Michal Kazioraffd3212013-07-16 09:54:35 +02002039void ath10k_halt(struct ath10k *ar)
Michal Kazior818bdd12013-07-16 09:38:57 +02002040{
2041 lockdep_assert_held(&ar->conf_mutex);
2042
Marek Puzyniake8a50f82013-11-20 09:59:47 +02002043 ath10k_stop_cac(ar);
Michal Kazior818bdd12013-07-16 09:38:57 +02002044 del_timer_sync(&ar->scan.timeout);
2045 ath10k_offchan_tx_purge(ar);
Bartosz Markowski5e00d312013-09-26 17:47:12 +02002046 ath10k_mgmt_over_wmi_tx_purge(ar);
Michal Kazior818bdd12013-07-16 09:38:57 +02002047 ath10k_peer_cleanup_all(ar);
2048 ath10k_core_stop(ar);
2049 ath10k_hif_power_down(ar);
2050
2051 spin_lock_bh(&ar->data_lock);
2052 if (ar->scan.in_progress) {
2053 del_timer(&ar->scan.timeout);
2054 ar->scan.in_progress = false;
2055 ieee80211_scan_completed(ar->hw, true);
2056 }
2057 spin_unlock_bh(&ar->data_lock);
2058}
2059
Kalle Valo5e3dd152013-06-12 20:52:10 +03002060static int ath10k_start(struct ieee80211_hw *hw)
2061{
2062 struct ath10k *ar = hw->priv;
Michal Kazior818bdd12013-07-16 09:38:57 +02002063 int ret = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002064
Michal Kazior548db542013-07-05 16:15:15 +03002065 mutex_lock(&ar->conf_mutex);
2066
Michal Kazioraffd3212013-07-16 09:54:35 +02002067 if (ar->state != ATH10K_STATE_OFF &&
2068 ar->state != ATH10K_STATE_RESTARTING) {
Michal Kazior818bdd12013-07-16 09:38:57 +02002069 ret = -EINVAL;
2070 goto exit;
2071 }
2072
2073 ret = ath10k_hif_power_up(ar);
2074 if (ret) {
2075 ath10k_err("could not init hif (%d)\n", ret);
2076 ar->state = ATH10K_STATE_OFF;
2077 goto exit;
2078 }
2079
2080 ret = ath10k_core_start(ar);
2081 if (ret) {
2082 ath10k_err("could not init core (%d)\n", ret);
2083 ath10k_hif_power_down(ar);
2084 ar->state = ATH10K_STATE_OFF;
2085 goto exit;
2086 }
2087
Michal Kazioraffd3212013-07-16 09:54:35 +02002088 if (ar->state == ATH10K_STATE_OFF)
2089 ar->state = ATH10K_STATE_ON;
2090 else if (ar->state == ATH10K_STATE_RESTARTING)
2091 ar->state = ATH10K_STATE_RESTARTED;
2092
Bartosz Markowski226a3392013-09-26 17:47:16 +02002093 ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->pmf_qos, 1);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002094 if (ret)
2095 ath10k_warn("could not enable WMI_PDEV_PARAM_PMF_QOS (%d)\n",
2096 ret);
2097
Michal Kaziorc4dd0d02013-11-13 11:05:10 +01002098 ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->dynamic_bw, 1);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002099 if (ret)
2100 ath10k_warn("could not init WMI_PDEV_PARAM_DYNAMIC_BW (%d)\n",
2101 ret);
2102
Michal Kaziorf7843d72013-07-16 09:38:52 +02002103 ath10k_regd_update(ar);
2104
Michal Kazior818bdd12013-07-16 09:38:57 +02002105exit:
Michal Kazior548db542013-07-05 16:15:15 +03002106 mutex_unlock(&ar->conf_mutex);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002107 return 0;
2108}
2109
2110static void ath10k_stop(struct ieee80211_hw *hw)
2111{
2112 struct ath10k *ar = hw->priv;
2113
Michal Kazior548db542013-07-05 16:15:15 +03002114 mutex_lock(&ar->conf_mutex);
Michal Kazioraffd3212013-07-16 09:54:35 +02002115 if (ar->state == ATH10K_STATE_ON ||
2116 ar->state == ATH10K_STATE_RESTARTED ||
2117 ar->state == ATH10K_STATE_WEDGED)
Michal Kazior818bdd12013-07-16 09:38:57 +02002118 ath10k_halt(ar);
Michal Kaziora96d7742013-07-16 09:38:56 +02002119
Michal Kaziorf7843d72013-07-16 09:38:52 +02002120 ar->state = ATH10K_STATE_OFF;
Michal Kazior548db542013-07-05 16:15:15 +03002121 mutex_unlock(&ar->conf_mutex);
2122
Bartosz Markowski5e00d312013-09-26 17:47:12 +02002123 ath10k_mgmt_over_wmi_tx_purge(ar);
2124
Michal Kazior548db542013-07-05 16:15:15 +03002125 cancel_work_sync(&ar->offchan_tx_work);
Bartosz Markowski5e00d312013-09-26 17:47:12 +02002126 cancel_work_sync(&ar->wmi_mgmt_tx_work);
Michal Kazioraffd3212013-07-16 09:54:35 +02002127 cancel_work_sync(&ar->restart_work);
2128}
2129
Michal Kaziorad088bf2013-10-16 15:44:46 +03002130static int ath10k_config_ps(struct ath10k *ar)
Michal Kazioraffd3212013-07-16 09:54:35 +02002131{
Michal Kaziorad088bf2013-10-16 15:44:46 +03002132 struct ath10k_vif *arvif;
2133 int ret = 0;
Michal Kazioraffd3212013-07-16 09:54:35 +02002134
2135 lockdep_assert_held(&ar->conf_mutex);
2136
Michal Kaziorad088bf2013-10-16 15:44:46 +03002137 list_for_each_entry(arvif, &ar->arvifs, list) {
2138 ret = ath10k_mac_vif_setup_ps(arvif);
2139 if (ret) {
2140 ath10k_warn("could not setup powersave (%d)\n", ret);
2141 break;
2142 }
2143 }
Michal Kazioraffd3212013-07-16 09:54:35 +02002144
Michal Kaziorad088bf2013-10-16 15:44:46 +03002145 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002146}
2147
2148static int ath10k_config(struct ieee80211_hw *hw, u32 changed)
2149{
Kalle Valo5e3dd152013-06-12 20:52:10 +03002150 struct ath10k *ar = hw->priv;
2151 struct ieee80211_conf *conf = &hw->conf;
2152 int ret = 0;
Michal Kazior5474efe2013-10-23 04:02:15 -07002153 u32 param;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002154
2155 mutex_lock(&ar->conf_mutex);
2156
2157 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
Marek Puzyniake8a50f82013-11-20 09:59:47 +02002158 ath10k_dbg(ATH10K_DBG_MAC,
2159 "mac config channel %d mhz flags 0x%x\n",
2160 conf->chandef.chan->center_freq,
2161 conf->chandef.chan->flags);
2162
Kalle Valo5e3dd152013-06-12 20:52:10 +03002163 spin_lock_bh(&ar->data_lock);
2164 ar->rx_channel = conf->chandef.chan;
2165 spin_unlock_bh(&ar->data_lock);
Marek Puzyniake8a50f82013-11-20 09:59:47 +02002166
2167 ath10k_config_radar_detection(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002168 }
2169
Michal Kazior5474efe2013-10-23 04:02:15 -07002170 if (changed & IEEE80211_CONF_CHANGE_POWER) {
2171 ath10k_dbg(ATH10K_DBG_MAC, "mac config power %d\n",
2172 hw->conf.power_level);
2173
2174 param = ar->wmi.pdev_param->txpower_limit2g;
2175 ret = ath10k_wmi_pdev_set_param(ar, param,
2176 hw->conf.power_level * 2);
2177 if (ret)
2178 ath10k_warn("mac failed to set 2g txpower %d (%d)\n",
2179 hw->conf.power_level, ret);
2180
2181 param = ar->wmi.pdev_param->txpower_limit5g;
2182 ret = ath10k_wmi_pdev_set_param(ar, param,
2183 hw->conf.power_level * 2);
2184 if (ret)
2185 ath10k_warn("mac failed to set 5g txpower %d (%d)\n",
2186 hw->conf.power_level, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002187 }
2188
Michal Kazioraffd3212013-07-16 09:54:35 +02002189 if (changed & IEEE80211_CONF_CHANGE_PS)
2190 ath10k_config_ps(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002191
2192 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
2193 if (conf->flags & IEEE80211_CONF_MONITOR)
2194 ret = ath10k_monitor_create(ar);
2195 else
2196 ret = ath10k_monitor_destroy(ar);
2197 }
2198
2199 mutex_unlock(&ar->conf_mutex);
2200 return ret;
2201}
2202
2203/*
2204 * TODO:
2205 * Figure out how to handle WMI_VDEV_SUBTYPE_P2P_DEVICE,
2206 * because we will send mgmt frames without CCK. This requirement
2207 * for P2P_FIND/GO_NEG should be handled by checking CCK flag
2208 * in the TX packet.
2209 */
2210static int ath10k_add_interface(struct ieee80211_hw *hw,
2211 struct ieee80211_vif *vif)
2212{
2213 struct ath10k *ar = hw->priv;
2214 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2215 enum wmi_sta_powersave_param param;
2216 int ret = 0;
Marek Puzyniakcdf07402013-12-30 09:07:51 +01002217 u32 value, param_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002218 int bit;
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002219 u32 vdev_param;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002220
2221 mutex_lock(&ar->conf_mutex);
2222
Michal Kazior0dbd09e2013-07-31 10:55:14 +02002223 memset(arvif, 0, sizeof(*arvif));
2224
Kalle Valo5e3dd152013-06-12 20:52:10 +03002225 arvif->ar = ar;
2226 arvif->vif = vif;
2227
Michal Kaziorcc4827b2013-10-16 15:44:45 +03002228 INIT_WORK(&arvif->wep_key_work, ath10k_tx_wep_key_work);
Ben Greeare63b33f2013-10-22 14:54:14 -07002229 INIT_LIST_HEAD(&arvif->list);
Michal Kaziorcc4827b2013-10-16 15:44:45 +03002230
Kalle Valo5e3dd152013-06-12 20:52:10 +03002231 if ((vif->type == NL80211_IFTYPE_MONITOR) && ar->monitor_present) {
2232 ath10k_warn("Only one monitor interface allowed\n");
2233 ret = -EBUSY;
Michal Kazior9dad14a2013-10-16 15:44:45 +03002234 goto err;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002235 }
2236
2237 bit = ffs(ar->free_vdev_map);
2238 if (bit == 0) {
2239 ret = -EBUSY;
Michal Kazior9dad14a2013-10-16 15:44:45 +03002240 goto err;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002241 }
2242
2243 arvif->vdev_id = bit - 1;
2244 arvif->vdev_subtype = WMI_VDEV_SUBTYPE_NONE;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002245
2246 if (ar->p2p)
2247 arvif->vdev_subtype = WMI_VDEV_SUBTYPE_P2P_DEVICE;
2248
2249 switch (vif->type) {
2250 case NL80211_IFTYPE_UNSPECIFIED:
2251 case NL80211_IFTYPE_STATION:
2252 arvif->vdev_type = WMI_VDEV_TYPE_STA;
2253 if (vif->p2p)
2254 arvif->vdev_subtype = WMI_VDEV_SUBTYPE_P2P_CLIENT;
2255 break;
2256 case NL80211_IFTYPE_ADHOC:
2257 arvif->vdev_type = WMI_VDEV_TYPE_IBSS;
2258 break;
2259 case NL80211_IFTYPE_AP:
2260 arvif->vdev_type = WMI_VDEV_TYPE_AP;
2261
2262 if (vif->p2p)
2263 arvif->vdev_subtype = WMI_VDEV_SUBTYPE_P2P_GO;
2264 break;
2265 case NL80211_IFTYPE_MONITOR:
2266 arvif->vdev_type = WMI_VDEV_TYPE_MONITOR;
2267 break;
2268 default:
2269 WARN_ON(1);
2270 break;
2271 }
2272
Kalle Valo60c3daa2013-09-08 17:56:07 +03002273 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev create %d (add interface) type %d subtype %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03002274 arvif->vdev_id, arvif->vdev_type, arvif->vdev_subtype);
2275
2276 ret = ath10k_wmi_vdev_create(ar, arvif->vdev_id, arvif->vdev_type,
2277 arvif->vdev_subtype, vif->addr);
2278 if (ret) {
2279 ath10k_warn("WMI vdev create failed: ret %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002280 goto err;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002281 }
2282
Michal Kazior9dad14a2013-10-16 15:44:45 +03002283 ar->free_vdev_map &= ~BIT(arvif->vdev_id);
Michal Kazior05791192013-10-16 15:44:45 +03002284 list_add(&arvif->list, &ar->arvifs);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002285
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002286 vdev_param = ar->wmi.vdev_param->def_keyid;
2287 ret = ath10k_wmi_vdev_set_param(ar, 0, vdev_param,
Michal Kaziorcc4827b2013-10-16 15:44:45 +03002288 arvif->def_wep_key_idx);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002289 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002290 ath10k_warn("Failed to set default keyid: %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002291 goto err_vdev_delete;
2292 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002293
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002294 vdev_param = ar->wmi.vdev_param->tx_encap_type;
2295 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002296 ATH10K_HW_TXRX_NATIVE_WIFI);
Bartosz Markowskiebc9abd2013-10-15 09:26:20 +02002297 /* 10.X firmware does not support this VDEV parameter. Do not warn */
Michal Kazior9dad14a2013-10-16 15:44:45 +03002298 if (ret && ret != -EOPNOTSUPP) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002299 ath10k_warn("Failed to set TX encap: %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002300 goto err_vdev_delete;
2301 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002302
2303 if (arvif->vdev_type == WMI_VDEV_TYPE_AP) {
2304 ret = ath10k_peer_create(ar, arvif->vdev_id, vif->addr);
2305 if (ret) {
2306 ath10k_warn("Failed to create peer for AP: %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002307 goto err_vdev_delete;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002308 }
Marek Puzyniakcdf07402013-12-30 09:07:51 +01002309
2310 param_id = ar->wmi.pdev_param->sta_kickout_th;
2311
2312 /* Disable STA KICKOUT functionality in FW */
2313 ret = ath10k_wmi_pdev_set_param(ar, param_id, 0);
2314 if (ret)
2315 ath10k_warn("Failed to disable STA KICKOUT\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002316 }
2317
2318 if (arvif->vdev_type == WMI_VDEV_TYPE_STA) {
2319 param = WMI_STA_PS_PARAM_RX_WAKE_POLICY;
2320 value = WMI_STA_PS_RX_WAKE_POLICY_WAKE;
2321 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2322 param, value);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002323 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002324 ath10k_warn("Failed to set RX wake policy: %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002325 goto err_peer_delete;
2326 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002327
2328 param = WMI_STA_PS_PARAM_TX_WAKE_THRESHOLD;
2329 value = WMI_STA_PS_TX_WAKE_THRESHOLD_ALWAYS;
2330 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2331 param, value);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002332 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002333 ath10k_warn("Failed to set TX wake thresh: %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002334 goto err_peer_delete;
2335 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002336
2337 param = WMI_STA_PS_PARAM_PSPOLL_COUNT;
2338 value = WMI_STA_PS_PSPOLL_COUNT_NO_MAX;
2339 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2340 param, value);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002341 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002342 ath10k_warn("Failed to set PSPOLL count: %d\n", ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002343 goto err_peer_delete;
2344 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002345 }
2346
Michal Kazior424121c2013-07-22 14:13:31 +02002347 ret = ath10k_mac_set_rts(arvif, ar->hw->wiphy->rts_threshold);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002348 if (ret) {
Michal Kazior679c54a2013-07-05 16:15:04 +03002349 ath10k_warn("failed to set rts threshold for vdev %d (%d)\n",
2350 arvif->vdev_id, ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002351 goto err_peer_delete;
2352 }
Michal Kazior679c54a2013-07-05 16:15:04 +03002353
Michal Kazior424121c2013-07-22 14:13:31 +02002354 ret = ath10k_mac_set_frag(arvif, ar->hw->wiphy->frag_threshold);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002355 if (ret) {
Michal Kazior679c54a2013-07-05 16:15:04 +03002356 ath10k_warn("failed to set frag threshold for vdev %d (%d)\n",
2357 arvif->vdev_id, ret);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002358 goto err_peer_delete;
2359 }
Michal Kazior679c54a2013-07-05 16:15:04 +03002360
Kalle Valo5e3dd152013-06-12 20:52:10 +03002361 if (arvif->vdev_type == WMI_VDEV_TYPE_MONITOR)
2362 ar->monitor_present = true;
2363
Kalle Valo5e3dd152013-06-12 20:52:10 +03002364 mutex_unlock(&ar->conf_mutex);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002365 return 0;
2366
2367err_peer_delete:
2368 if (arvif->vdev_type == WMI_VDEV_TYPE_AP)
2369 ath10k_wmi_peer_delete(ar, arvif->vdev_id, vif->addr);
2370
2371err_vdev_delete:
2372 ath10k_wmi_vdev_delete(ar, arvif->vdev_id);
2373 ar->free_vdev_map &= ~BIT(arvif->vdev_id);
Michal Kazior05791192013-10-16 15:44:45 +03002374 list_del(&arvif->list);
Michal Kazior9dad14a2013-10-16 15:44:45 +03002375
2376err:
2377 mutex_unlock(&ar->conf_mutex);
2378
Kalle Valo5e3dd152013-06-12 20:52:10 +03002379 return ret;
2380}
2381
2382static void ath10k_remove_interface(struct ieee80211_hw *hw,
2383 struct ieee80211_vif *vif)
2384{
2385 struct ath10k *ar = hw->priv;
2386 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2387 int ret;
2388
2389 mutex_lock(&ar->conf_mutex);
2390
Michal Kaziorcc4827b2013-10-16 15:44:45 +03002391 cancel_work_sync(&arvif->wep_key_work);
2392
Michal Kaziored543882013-09-13 14:16:56 +02002393 spin_lock_bh(&ar->data_lock);
2394 if (arvif->beacon) {
2395 dev_kfree_skb_any(arvif->beacon);
2396 arvif->beacon = NULL;
2397 }
2398 spin_unlock_bh(&ar->data_lock);
2399
Kalle Valo5e3dd152013-06-12 20:52:10 +03002400 ar->free_vdev_map |= 1 << (arvif->vdev_id);
Michal Kazior05791192013-10-16 15:44:45 +03002401 list_del(&arvif->list);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002402
2403 if (arvif->vdev_type == WMI_VDEV_TYPE_AP) {
2404 ret = ath10k_peer_delete(arvif->ar, arvif->vdev_id, vif->addr);
2405 if (ret)
2406 ath10k_warn("Failed to remove peer for AP: %d\n", ret);
2407
2408 kfree(arvif->u.ap.noa_data);
2409 }
2410
Kalle Valo60c3daa2013-09-08 17:56:07 +03002411 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev delete %d (remove interface)\n",
2412 arvif->vdev_id);
2413
Kalle Valo5e3dd152013-06-12 20:52:10 +03002414 ret = ath10k_wmi_vdev_delete(ar, arvif->vdev_id);
2415 if (ret)
2416 ath10k_warn("WMI vdev delete failed: %d\n", ret);
2417
2418 if (arvif->vdev_type == WMI_VDEV_TYPE_MONITOR)
2419 ar->monitor_present = false;
2420
2421 ath10k_peer_cleanup(ar, arvif->vdev_id);
2422
2423 mutex_unlock(&ar->conf_mutex);
2424}
2425
2426/*
2427 * FIXME: Has to be verified.
2428 */
2429#define SUPPORTED_FILTERS \
2430 (FIF_PROMISC_IN_BSS | \
2431 FIF_ALLMULTI | \
2432 FIF_CONTROL | \
2433 FIF_PSPOLL | \
2434 FIF_OTHER_BSS | \
2435 FIF_BCN_PRBRESP_PROMISC | \
2436 FIF_PROBE_REQ | \
2437 FIF_FCSFAIL)
2438
2439static void ath10k_configure_filter(struct ieee80211_hw *hw,
2440 unsigned int changed_flags,
2441 unsigned int *total_flags,
2442 u64 multicast)
2443{
2444 struct ath10k *ar = hw->priv;
2445 int ret;
2446
2447 mutex_lock(&ar->conf_mutex);
2448
2449 changed_flags &= SUPPORTED_FILTERS;
2450 *total_flags &= SUPPORTED_FILTERS;
2451 ar->filter_flags = *total_flags;
2452
Michal Kaziorafd09222013-10-16 16:45:41 +03002453 /* Monitor must not be started if it wasn't created first.
2454 * Promiscuous mode may be started on a non-monitor interface - in
2455 * such case the monitor vdev is not created so starting the
2456 * monitor makes no sense. Since ath10k uses no special RX filters
2457 * (only BSS filter in STA mode) there's no need for any special
2458 * action here. */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002459 if ((ar->filter_flags & FIF_PROMISC_IN_BSS) &&
Michal Kaziorafd09222013-10-16 16:45:41 +03002460 !ar->monitor_enabled && ar->monitor_present) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03002461 ath10k_dbg(ATH10K_DBG_MAC, "mac monitor %d start\n",
2462 ar->monitor_vdev_id);
2463
Kalle Valo5e3dd152013-06-12 20:52:10 +03002464 ret = ath10k_monitor_start(ar, ar->monitor_vdev_id);
2465 if (ret)
2466 ath10k_warn("Unable to start monitor mode\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002467 } else if (!(ar->filter_flags & FIF_PROMISC_IN_BSS) &&
Michal Kaziorafd09222013-10-16 16:45:41 +03002468 ar->monitor_enabled && ar->monitor_present) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03002469 ath10k_dbg(ATH10K_DBG_MAC, "mac monitor %d stop\n",
2470 ar->monitor_vdev_id);
2471
Kalle Valo5e3dd152013-06-12 20:52:10 +03002472 ret = ath10k_monitor_stop(ar);
2473 if (ret)
2474 ath10k_warn("Unable to stop monitor mode\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002475 }
2476
2477 mutex_unlock(&ar->conf_mutex);
2478}
2479
2480static void ath10k_bss_info_changed(struct ieee80211_hw *hw,
2481 struct ieee80211_vif *vif,
2482 struct ieee80211_bss_conf *info,
2483 u32 changed)
2484{
2485 struct ath10k *ar = hw->priv;
2486 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2487 int ret = 0;
Bartosz Markowski226a3392013-09-26 17:47:16 +02002488 u32 vdev_param, pdev_param;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002489
2490 mutex_lock(&ar->conf_mutex);
2491
2492 if (changed & BSS_CHANGED_IBSS)
2493 ath10k_control_ibss(arvif, info, vif->addr);
2494
2495 if (changed & BSS_CHANGED_BEACON_INT) {
2496 arvif->beacon_interval = info->beacon_int;
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002497 vdev_param = ar->wmi.vdev_param->beacon_interval;
2498 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002499 arvif->beacon_interval);
Kalle Valo60c3daa2013-09-08 17:56:07 +03002500 ath10k_dbg(ATH10K_DBG_MAC,
2501 "mac vdev %d beacon_interval %d\n",
2502 arvif->vdev_id, arvif->beacon_interval);
2503
Kalle Valo5e3dd152013-06-12 20:52:10 +03002504 if (ret)
2505 ath10k_warn("Failed to set beacon interval for VDEV: %d\n",
2506 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002507 }
2508
2509 if (changed & BSS_CHANGED_BEACON) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03002510 ath10k_dbg(ATH10K_DBG_MAC,
2511 "vdev %d set beacon tx mode to staggered\n",
2512 arvif->vdev_id);
2513
Bartosz Markowski226a3392013-09-26 17:47:16 +02002514 pdev_param = ar->wmi.pdev_param->beacon_tx_mode;
2515 ret = ath10k_wmi_pdev_set_param(ar, pdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002516 WMI_BEACON_STAGGERED_MODE);
2517 if (ret)
2518 ath10k_warn("Failed to set beacon mode for VDEV: %d\n",
2519 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002520 }
2521
John W. Linvilleb70727e2013-06-13 13:34:29 -04002522 if (changed & BSS_CHANGED_BEACON_INFO) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002523 arvif->dtim_period = info->dtim_period;
2524
Kalle Valo60c3daa2013-09-08 17:56:07 +03002525 ath10k_dbg(ATH10K_DBG_MAC,
2526 "mac vdev %d dtim_period %d\n",
2527 arvif->vdev_id, arvif->dtim_period);
2528
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002529 vdev_param = ar->wmi.vdev_param->dtim_period;
2530 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002531 arvif->dtim_period);
2532 if (ret)
2533 ath10k_warn("Failed to set dtim period for VDEV: %d\n",
2534 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002535 }
2536
2537 if (changed & BSS_CHANGED_SSID &&
2538 vif->type == NL80211_IFTYPE_AP) {
2539 arvif->u.ap.ssid_len = info->ssid_len;
2540 if (info->ssid_len)
2541 memcpy(arvif->u.ap.ssid, info->ssid, info->ssid_len);
2542 arvif->u.ap.hidden_ssid = info->hidden_ssid;
2543 }
2544
2545 if (changed & BSS_CHANGED_BSSID) {
2546 if (!is_zero_ether_addr(info->bssid)) {
Kalle Valo60c3daa2013-09-08 17:56:07 +03002547 ath10k_dbg(ATH10K_DBG_MAC,
2548 "mac vdev %d create peer %pM\n",
2549 arvif->vdev_id, info->bssid);
2550
Kalle Valo5e3dd152013-06-12 20:52:10 +03002551 ret = ath10k_peer_create(ar, arvif->vdev_id,
2552 info->bssid);
2553 if (ret)
Ben Greear479398b2013-11-04 09:19:34 -08002554 ath10k_warn("Failed to add peer %pM for vdev %d when changin bssid: %i\n",
2555 info->bssid, arvif->vdev_id, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002556
2557 if (vif->type == NL80211_IFTYPE_STATION) {
2558 /*
2559 * this is never erased as we it for crypto key
2560 * clearing; this is FW requirement
2561 */
2562 memcpy(arvif->u.sta.bssid, info->bssid,
2563 ETH_ALEN);
2564
Kalle Valo60c3daa2013-09-08 17:56:07 +03002565 ath10k_dbg(ATH10K_DBG_MAC,
2566 "mac vdev %d start %pM\n",
2567 arvif->vdev_id, info->bssid);
2568
2569 /* FIXME: check return value */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002570 ret = ath10k_vdev_start(arvif);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002571 }
2572
2573 /*
2574 * Mac80211 does not keep IBSS bssid when leaving IBSS,
2575 * so driver need to store it. It is needed when leaving
2576 * IBSS in order to remove BSSID peer.
2577 */
2578 if (vif->type == NL80211_IFTYPE_ADHOC)
2579 memcpy(arvif->u.ibss.bssid, info->bssid,
2580 ETH_ALEN);
2581 }
2582 }
2583
2584 if (changed & BSS_CHANGED_BEACON_ENABLED)
2585 ath10k_control_beaconing(arvif, info);
2586
2587 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
2588 u32 cts_prot;
2589 if (info->use_cts_prot)
2590 cts_prot = 1;
2591 else
2592 cts_prot = 0;
2593
Kalle Valo60c3daa2013-09-08 17:56:07 +03002594 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d cts_prot %d\n",
2595 arvif->vdev_id, cts_prot);
2596
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002597 vdev_param = ar->wmi.vdev_param->enable_rtscts;
2598 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002599 cts_prot);
2600 if (ret)
2601 ath10k_warn("Failed to set CTS prot for VDEV: %d\n",
2602 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002603 }
2604
2605 if (changed & BSS_CHANGED_ERP_SLOT) {
2606 u32 slottime;
2607 if (info->use_short_slot)
2608 slottime = WMI_VDEV_SLOT_TIME_SHORT; /* 9us */
2609
2610 else
2611 slottime = WMI_VDEV_SLOT_TIME_LONG; /* 20us */
2612
Kalle Valo60c3daa2013-09-08 17:56:07 +03002613 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d slot_time %d\n",
2614 arvif->vdev_id, slottime);
2615
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002616 vdev_param = ar->wmi.vdev_param->slot_time;
2617 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002618 slottime);
2619 if (ret)
2620 ath10k_warn("Failed to set erp slot for VDEV: %d\n",
2621 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002622 }
2623
2624 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
2625 u32 preamble;
2626 if (info->use_short_preamble)
2627 preamble = WMI_VDEV_PREAMBLE_SHORT;
2628 else
2629 preamble = WMI_VDEV_PREAMBLE_LONG;
2630
Kalle Valo60c3daa2013-09-08 17:56:07 +03002631 ath10k_dbg(ATH10K_DBG_MAC,
2632 "mac vdev %d preamble %dn",
2633 arvif->vdev_id, preamble);
2634
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02002635 vdev_param = ar->wmi.vdev_param->preamble;
2636 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002637 preamble);
2638 if (ret)
2639 ath10k_warn("Failed to set preamble for VDEV: %d\n",
2640 arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002641 }
2642
2643 if (changed & BSS_CHANGED_ASSOC) {
2644 if (info->assoc)
2645 ath10k_bss_assoc(hw, vif, info);
2646 }
2647
2648 mutex_unlock(&ar->conf_mutex);
2649}
2650
2651static int ath10k_hw_scan(struct ieee80211_hw *hw,
2652 struct ieee80211_vif *vif,
2653 struct cfg80211_scan_request *req)
2654{
2655 struct ath10k *ar = hw->priv;
2656 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2657 struct wmi_start_scan_arg arg;
2658 int ret = 0;
2659 int i;
2660
2661 mutex_lock(&ar->conf_mutex);
2662
2663 spin_lock_bh(&ar->data_lock);
2664 if (ar->scan.in_progress) {
2665 spin_unlock_bh(&ar->data_lock);
2666 ret = -EBUSY;
2667 goto exit;
2668 }
2669
Wolfram Sang16735d02013-11-14 14:32:02 -08002670 reinit_completion(&ar->scan.started);
2671 reinit_completion(&ar->scan.completed);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002672 ar->scan.in_progress = true;
2673 ar->scan.aborting = false;
2674 ar->scan.is_roc = false;
2675 ar->scan.vdev_id = arvif->vdev_id;
2676 spin_unlock_bh(&ar->data_lock);
2677
2678 memset(&arg, 0, sizeof(arg));
2679 ath10k_wmi_start_scan_init(ar, &arg);
2680 arg.vdev_id = arvif->vdev_id;
2681 arg.scan_id = ATH10K_SCAN_ID;
2682
2683 if (!req->no_cck)
2684 arg.scan_ctrl_flags |= WMI_SCAN_ADD_CCK_RATES;
2685
2686 if (req->ie_len) {
2687 arg.ie_len = req->ie_len;
2688 memcpy(arg.ie, req->ie, arg.ie_len);
2689 }
2690
2691 if (req->n_ssids) {
2692 arg.n_ssids = req->n_ssids;
2693 for (i = 0; i < arg.n_ssids; i++) {
2694 arg.ssids[i].len = req->ssids[i].ssid_len;
2695 arg.ssids[i].ssid = req->ssids[i].ssid;
2696 }
Michal Kaziordcd4a562013-07-31 10:55:12 +02002697 } else {
2698 arg.scan_ctrl_flags |= WMI_SCAN_FLAG_PASSIVE;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002699 }
2700
2701 if (req->n_channels) {
2702 arg.n_channels = req->n_channels;
2703 for (i = 0; i < arg.n_channels; i++)
2704 arg.channels[i] = req->channels[i]->center_freq;
2705 }
2706
2707 ret = ath10k_start_scan(ar, &arg);
2708 if (ret) {
2709 ath10k_warn("could not start hw scan (%d)\n", ret);
2710 spin_lock_bh(&ar->data_lock);
2711 ar->scan.in_progress = false;
2712 spin_unlock_bh(&ar->data_lock);
2713 }
2714
2715exit:
2716 mutex_unlock(&ar->conf_mutex);
2717 return ret;
2718}
2719
2720static void ath10k_cancel_hw_scan(struct ieee80211_hw *hw,
2721 struct ieee80211_vif *vif)
2722{
2723 struct ath10k *ar = hw->priv;
2724 int ret;
2725
2726 mutex_lock(&ar->conf_mutex);
2727 ret = ath10k_abort_scan(ar);
2728 if (ret) {
2729 ath10k_warn("couldn't abort scan (%d). forcefully sending scan completion to mac80211\n",
2730 ret);
2731 ieee80211_scan_completed(hw, 1 /* aborted */);
2732 }
2733 mutex_unlock(&ar->conf_mutex);
2734}
2735
Michal Kaziorcfb27d22013-12-02 09:06:36 +01002736static void ath10k_set_key_h_def_keyidx(struct ath10k *ar,
2737 struct ath10k_vif *arvif,
2738 enum set_key_cmd cmd,
2739 struct ieee80211_key_conf *key)
2740{
2741 u32 vdev_param = arvif->ar->wmi.vdev_param->def_keyid;
2742 int ret;
2743
2744 /* 10.1 firmware branch requires default key index to be set to group
2745 * key index after installing it. Otherwise FW/HW Txes corrupted
2746 * frames with multi-vif APs. This is not required for main firmware
2747 * branch (e.g. 636).
2748 *
2749 * FIXME: This has been tested only in AP. It remains unknown if this
2750 * is required for multi-vif STA interfaces on 10.1 */
2751
2752 if (arvif->vdev_type != WMI_VDEV_TYPE_AP)
2753 return;
2754
2755 if (key->cipher == WLAN_CIPHER_SUITE_WEP40)
2756 return;
2757
2758 if (key->cipher == WLAN_CIPHER_SUITE_WEP104)
2759 return;
2760
2761 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
2762 return;
2763
2764 if (cmd != SET_KEY)
2765 return;
2766
2767 ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
2768 key->keyidx);
2769 if (ret)
2770 ath10k_warn("failed to set group key as default key: %d\n",
2771 ret);
2772}
2773
Kalle Valo5e3dd152013-06-12 20:52:10 +03002774static int ath10k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
2775 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
2776 struct ieee80211_key_conf *key)
2777{
2778 struct ath10k *ar = hw->priv;
2779 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2780 struct ath10k_peer *peer;
2781 const u8 *peer_addr;
2782 bool is_wep = key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
2783 key->cipher == WLAN_CIPHER_SUITE_WEP104;
2784 int ret = 0;
2785
2786 if (key->keyidx > WMI_MAX_KEY_INDEX)
2787 return -ENOSPC;
2788
2789 mutex_lock(&ar->conf_mutex);
2790
2791 if (sta)
2792 peer_addr = sta->addr;
2793 else if (arvif->vdev_type == WMI_VDEV_TYPE_STA)
2794 peer_addr = vif->bss_conf.bssid;
2795 else
2796 peer_addr = vif->addr;
2797
2798 key->hw_key_idx = key->keyidx;
2799
2800 /* the peer should not disappear in mid-way (unless FW goes awry) since
2801 * we already hold conf_mutex. we just make sure its there now. */
2802 spin_lock_bh(&ar->data_lock);
2803 peer = ath10k_peer_find(ar, arvif->vdev_id, peer_addr);
2804 spin_unlock_bh(&ar->data_lock);
2805
2806 if (!peer) {
2807 if (cmd == SET_KEY) {
2808 ath10k_warn("cannot install key for non-existent peer %pM\n",
2809 peer_addr);
2810 ret = -EOPNOTSUPP;
2811 goto exit;
2812 } else {
2813 /* if the peer doesn't exist there is no key to disable
2814 * anymore */
2815 goto exit;
2816 }
2817 }
2818
2819 if (is_wep) {
2820 if (cmd == SET_KEY)
2821 arvif->wep_keys[key->keyidx] = key;
2822 else
2823 arvif->wep_keys[key->keyidx] = NULL;
2824
2825 if (cmd == DISABLE_KEY)
2826 ath10k_clear_vdev_key(arvif, key);
2827 }
2828
2829 ret = ath10k_install_key(arvif, key, cmd, peer_addr);
2830 if (ret) {
2831 ath10k_warn("ath10k_install_key failed (%d)\n", ret);
2832 goto exit;
2833 }
2834
Michal Kaziorcfb27d22013-12-02 09:06:36 +01002835 ath10k_set_key_h_def_keyidx(ar, arvif, cmd, key);
2836
Kalle Valo5e3dd152013-06-12 20:52:10 +03002837 spin_lock_bh(&ar->data_lock);
2838 peer = ath10k_peer_find(ar, arvif->vdev_id, peer_addr);
2839 if (peer && cmd == SET_KEY)
2840 peer->keys[key->keyidx] = key;
2841 else if (peer && cmd == DISABLE_KEY)
2842 peer->keys[key->keyidx] = NULL;
2843 else if (peer == NULL)
2844 /* impossible unless FW goes crazy */
2845 ath10k_warn("peer %pM disappeared!\n", peer_addr);
2846 spin_unlock_bh(&ar->data_lock);
2847
2848exit:
2849 mutex_unlock(&ar->conf_mutex);
2850 return ret;
2851}
2852
2853static int ath10k_sta_state(struct ieee80211_hw *hw,
2854 struct ieee80211_vif *vif,
2855 struct ieee80211_sta *sta,
2856 enum ieee80211_sta_state old_state,
2857 enum ieee80211_sta_state new_state)
2858{
2859 struct ath10k *ar = hw->priv;
2860 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
Bartosz Markowski0e759f32014-01-02 14:38:33 +01002861 int max_num_peers;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002862 int ret = 0;
2863
2864 mutex_lock(&ar->conf_mutex);
2865
2866 if (old_state == IEEE80211_STA_NOTEXIST &&
2867 new_state == IEEE80211_STA_NONE &&
2868 vif->type != NL80211_IFTYPE_STATION) {
2869 /*
2870 * New station addition.
2871 */
Bartosz Markowski0e759f32014-01-02 14:38:33 +01002872 if (test_bit(ATH10K_FW_FEATURE_WMI_10X, ar->fw_features))
2873 max_num_peers = TARGET_10X_NUM_PEERS_MAX - 1;
2874 else
2875 max_num_peers = TARGET_NUM_PEERS;
2876
2877 if (ar->num_peers >= max_num_peers) {
2878 ath10k_warn("Number of peers exceeded: peers number %d (max peers %d)\n",
2879 ar->num_peers, max_num_peers);
2880 ret = -ENOBUFS;
2881 goto exit;
2882 }
2883
Kalle Valo60c3daa2013-09-08 17:56:07 +03002884 ath10k_dbg(ATH10K_DBG_MAC,
Bartosz Markowski0e759f32014-01-02 14:38:33 +01002885 "mac vdev %d peer create %pM (new sta) num_peers %d\n",
2886 arvif->vdev_id, sta->addr, ar->num_peers);
Kalle Valo60c3daa2013-09-08 17:56:07 +03002887
Kalle Valo5e3dd152013-06-12 20:52:10 +03002888 ret = ath10k_peer_create(ar, arvif->vdev_id, sta->addr);
2889 if (ret)
Ben Greear479398b2013-11-04 09:19:34 -08002890 ath10k_warn("Failed to add peer %pM for vdev %d when adding a new sta: %i\n",
2891 sta->addr, arvif->vdev_id, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002892 } else if ((old_state == IEEE80211_STA_NONE &&
2893 new_state == IEEE80211_STA_NOTEXIST)) {
2894 /*
2895 * Existing station deletion.
2896 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03002897 ath10k_dbg(ATH10K_DBG_MAC,
2898 "mac vdev %d peer delete %pM (sta gone)\n",
2899 arvif->vdev_id, sta->addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002900 ret = ath10k_peer_delete(ar, arvif->vdev_id, sta->addr);
2901 if (ret)
2902 ath10k_warn("Failed to delete peer: %pM for VDEV: %d\n",
2903 sta->addr, arvif->vdev_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002904
2905 if (vif->type == NL80211_IFTYPE_STATION)
2906 ath10k_bss_disassoc(hw, vif);
2907 } else if (old_state == IEEE80211_STA_AUTH &&
2908 new_state == IEEE80211_STA_ASSOC &&
2909 (vif->type == NL80211_IFTYPE_AP ||
2910 vif->type == NL80211_IFTYPE_ADHOC)) {
2911 /*
2912 * New association.
2913 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03002914 ath10k_dbg(ATH10K_DBG_MAC, "mac sta %pM associated\n",
2915 sta->addr);
2916
Kalle Valo5e3dd152013-06-12 20:52:10 +03002917 ret = ath10k_station_assoc(ar, arvif, sta);
2918 if (ret)
2919 ath10k_warn("Failed to associate station: %pM\n",
2920 sta->addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002921 } else if (old_state == IEEE80211_STA_ASSOC &&
2922 new_state == IEEE80211_STA_AUTH &&
2923 (vif->type == NL80211_IFTYPE_AP ||
2924 vif->type == NL80211_IFTYPE_ADHOC)) {
2925 /*
2926 * Disassociation.
2927 */
Kalle Valo60c3daa2013-09-08 17:56:07 +03002928 ath10k_dbg(ATH10K_DBG_MAC, "mac sta %pM disassociated\n",
2929 sta->addr);
2930
Kalle Valo5e3dd152013-06-12 20:52:10 +03002931 ret = ath10k_station_disassoc(ar, arvif, sta);
2932 if (ret)
2933 ath10k_warn("Failed to disassociate station: %pM\n",
2934 sta->addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002935 }
Bartosz Markowski0e759f32014-01-02 14:38:33 +01002936exit:
Kalle Valo5e3dd152013-06-12 20:52:10 +03002937 mutex_unlock(&ar->conf_mutex);
2938 return ret;
2939}
2940
2941static int ath10k_conf_tx_uapsd(struct ath10k *ar, struct ieee80211_vif *vif,
2942 u16 ac, bool enable)
2943{
2944 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
2945 u32 value = 0;
2946 int ret = 0;
2947
Michal Kazior548db542013-07-05 16:15:15 +03002948 lockdep_assert_held(&ar->conf_mutex);
2949
Kalle Valo5e3dd152013-06-12 20:52:10 +03002950 if (arvif->vdev_type != WMI_VDEV_TYPE_STA)
2951 return 0;
2952
2953 switch (ac) {
2954 case IEEE80211_AC_VO:
2955 value = WMI_STA_PS_UAPSD_AC3_DELIVERY_EN |
2956 WMI_STA_PS_UAPSD_AC3_TRIGGER_EN;
2957 break;
2958 case IEEE80211_AC_VI:
2959 value = WMI_STA_PS_UAPSD_AC2_DELIVERY_EN |
2960 WMI_STA_PS_UAPSD_AC2_TRIGGER_EN;
2961 break;
2962 case IEEE80211_AC_BE:
2963 value = WMI_STA_PS_UAPSD_AC1_DELIVERY_EN |
2964 WMI_STA_PS_UAPSD_AC1_TRIGGER_EN;
2965 break;
2966 case IEEE80211_AC_BK:
2967 value = WMI_STA_PS_UAPSD_AC0_DELIVERY_EN |
2968 WMI_STA_PS_UAPSD_AC0_TRIGGER_EN;
2969 break;
2970 }
2971
2972 if (enable)
2973 arvif->u.sta.uapsd |= value;
2974 else
2975 arvif->u.sta.uapsd &= ~value;
2976
2977 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2978 WMI_STA_PS_PARAM_UAPSD,
2979 arvif->u.sta.uapsd);
2980 if (ret) {
2981 ath10k_warn("could not set uapsd params %d\n", ret);
2982 goto exit;
2983 }
2984
2985 if (arvif->u.sta.uapsd)
2986 value = WMI_STA_PS_RX_WAKE_POLICY_POLL_UAPSD;
2987 else
2988 value = WMI_STA_PS_RX_WAKE_POLICY_WAKE;
2989
2990 ret = ath10k_wmi_set_sta_ps_param(ar, arvif->vdev_id,
2991 WMI_STA_PS_PARAM_RX_WAKE_POLICY,
2992 value);
2993 if (ret)
2994 ath10k_warn("could not set rx wake param %d\n", ret);
2995
2996exit:
2997 return ret;
2998}
2999
3000static int ath10k_conf_tx(struct ieee80211_hw *hw,
3001 struct ieee80211_vif *vif, u16 ac,
3002 const struct ieee80211_tx_queue_params *params)
3003{
3004 struct ath10k *ar = hw->priv;
3005 struct wmi_wmm_params_arg *p = NULL;
3006 int ret;
3007
3008 mutex_lock(&ar->conf_mutex);
3009
3010 switch (ac) {
3011 case IEEE80211_AC_VO:
3012 p = &ar->wmm_params.ac_vo;
3013 break;
3014 case IEEE80211_AC_VI:
3015 p = &ar->wmm_params.ac_vi;
3016 break;
3017 case IEEE80211_AC_BE:
3018 p = &ar->wmm_params.ac_be;
3019 break;
3020 case IEEE80211_AC_BK:
3021 p = &ar->wmm_params.ac_bk;
3022 break;
3023 }
3024
3025 if (WARN_ON(!p)) {
3026 ret = -EINVAL;
3027 goto exit;
3028 }
3029
3030 p->cwmin = params->cw_min;
3031 p->cwmax = params->cw_max;
3032 p->aifs = params->aifs;
3033
3034 /*
3035 * The channel time duration programmed in the HW is in absolute
3036 * microseconds, while mac80211 gives the txop in units of
3037 * 32 microseconds.
3038 */
3039 p->txop = params->txop * 32;
3040
3041 /* FIXME: FW accepts wmm params per hw, not per vif */
3042 ret = ath10k_wmi_pdev_set_wmm_params(ar, &ar->wmm_params);
3043 if (ret) {
3044 ath10k_warn("could not set wmm params %d\n", ret);
3045 goto exit;
3046 }
3047
3048 ret = ath10k_conf_tx_uapsd(ar, vif, ac, params->uapsd);
3049 if (ret)
3050 ath10k_warn("could not set sta uapsd %d\n", ret);
3051
3052exit:
3053 mutex_unlock(&ar->conf_mutex);
3054 return ret;
3055}
3056
3057#define ATH10K_ROC_TIMEOUT_HZ (2*HZ)
3058
3059static int ath10k_remain_on_channel(struct ieee80211_hw *hw,
3060 struct ieee80211_vif *vif,
3061 struct ieee80211_channel *chan,
3062 int duration,
3063 enum ieee80211_roc_type type)
3064{
3065 struct ath10k *ar = hw->priv;
3066 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
3067 struct wmi_start_scan_arg arg;
3068 int ret;
3069
3070 mutex_lock(&ar->conf_mutex);
3071
3072 spin_lock_bh(&ar->data_lock);
3073 if (ar->scan.in_progress) {
3074 spin_unlock_bh(&ar->data_lock);
3075 ret = -EBUSY;
3076 goto exit;
3077 }
3078
Wolfram Sang16735d02013-11-14 14:32:02 -08003079 reinit_completion(&ar->scan.started);
3080 reinit_completion(&ar->scan.completed);
3081 reinit_completion(&ar->scan.on_channel);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003082 ar->scan.in_progress = true;
3083 ar->scan.aborting = false;
3084 ar->scan.is_roc = true;
3085 ar->scan.vdev_id = arvif->vdev_id;
3086 ar->scan.roc_freq = chan->center_freq;
3087 spin_unlock_bh(&ar->data_lock);
3088
3089 memset(&arg, 0, sizeof(arg));
3090 ath10k_wmi_start_scan_init(ar, &arg);
3091 arg.vdev_id = arvif->vdev_id;
3092 arg.scan_id = ATH10K_SCAN_ID;
3093 arg.n_channels = 1;
3094 arg.channels[0] = chan->center_freq;
3095 arg.dwell_time_active = duration;
3096 arg.dwell_time_passive = duration;
3097 arg.max_scan_time = 2 * duration;
3098 arg.scan_ctrl_flags |= WMI_SCAN_FLAG_PASSIVE;
3099 arg.scan_ctrl_flags |= WMI_SCAN_FILTER_PROBE_REQ;
3100
3101 ret = ath10k_start_scan(ar, &arg);
3102 if (ret) {
3103 ath10k_warn("could not start roc scan (%d)\n", ret);
3104 spin_lock_bh(&ar->data_lock);
3105 ar->scan.in_progress = false;
3106 spin_unlock_bh(&ar->data_lock);
3107 goto exit;
3108 }
3109
3110 ret = wait_for_completion_timeout(&ar->scan.on_channel, 3*HZ);
3111 if (ret == 0) {
3112 ath10k_warn("could not switch to channel for roc scan\n");
3113 ath10k_abort_scan(ar);
3114 ret = -ETIMEDOUT;
3115 goto exit;
3116 }
3117
3118 ret = 0;
3119exit:
3120 mutex_unlock(&ar->conf_mutex);
3121 return ret;
3122}
3123
3124static int ath10k_cancel_remain_on_channel(struct ieee80211_hw *hw)
3125{
3126 struct ath10k *ar = hw->priv;
3127
3128 mutex_lock(&ar->conf_mutex);
3129 ath10k_abort_scan(ar);
3130 mutex_unlock(&ar->conf_mutex);
3131
3132 return 0;
3133}
3134
3135/*
3136 * Both RTS and Fragmentation threshold are interface-specific
3137 * in ath10k, but device-specific in mac80211.
3138 */
Kalle Valo5e3dd152013-06-12 20:52:10 +03003139
3140static int ath10k_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
3141{
Kalle Valo5e3dd152013-06-12 20:52:10 +03003142 struct ath10k *ar = hw->priv;
Michal Kaziorad088bf2013-10-16 15:44:46 +03003143 struct ath10k_vif *arvif;
3144 int ret = 0;
Michal Kazior548db542013-07-05 16:15:15 +03003145
Michal Kaziorad088bf2013-10-16 15:44:46 +03003146 mutex_lock(&ar->conf_mutex);
3147 list_for_each_entry(arvif, &ar->arvifs, list) {
3148 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d rts threshold %d\n",
3149 arvif->vdev_id, value);
Kalle Valo60c3daa2013-09-08 17:56:07 +03003150
Michal Kaziorad088bf2013-10-16 15:44:46 +03003151 ret = ath10k_mac_set_rts(arvif, value);
3152 if (ret) {
3153 ath10k_warn("could not set rts threshold for vdev %d (%d)\n",
3154 arvif->vdev_id, ret);
3155 break;
3156 }
3157 }
3158 mutex_unlock(&ar->conf_mutex);
3159
3160 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003161}
3162
3163static int ath10k_set_frag_threshold(struct ieee80211_hw *hw, u32 value)
3164{
Kalle Valo5e3dd152013-06-12 20:52:10 +03003165 struct ath10k *ar = hw->priv;
Michal Kaziorad088bf2013-10-16 15:44:46 +03003166 struct ath10k_vif *arvif;
3167 int ret = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003168
Kalle Valo5e3dd152013-06-12 20:52:10 +03003169 mutex_lock(&ar->conf_mutex);
Michal Kaziorad088bf2013-10-16 15:44:46 +03003170 list_for_each_entry(arvif, &ar->arvifs, list) {
3171 ath10k_dbg(ATH10K_DBG_MAC, "mac vdev %d fragmentation threshold %d\n",
3172 arvif->vdev_id, value);
3173
3174 ret = ath10k_mac_set_rts(arvif, value);
3175 if (ret) {
3176 ath10k_warn("could not set fragmentation threshold for vdev %d (%d)\n",
3177 arvif->vdev_id, ret);
3178 break;
3179 }
3180 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03003181 mutex_unlock(&ar->conf_mutex);
3182
Michal Kaziorad088bf2013-10-16 15:44:46 +03003183 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003184}
3185
3186static void ath10k_flush(struct ieee80211_hw *hw, u32 queues, bool drop)
3187{
3188 struct ath10k *ar = hw->priv;
Michal Kazioraffd3212013-07-16 09:54:35 +02003189 bool skip;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003190 int ret;
3191
3192 /* mac80211 doesn't care if we really xmit queued frames or not
3193 * we'll collect those frames either way if we stop/delete vdevs */
3194 if (drop)
3195 return;
3196
Michal Kazior548db542013-07-05 16:15:15 +03003197 mutex_lock(&ar->conf_mutex);
3198
Michal Kazioraffd3212013-07-16 09:54:35 +02003199 if (ar->state == ATH10K_STATE_WEDGED)
3200 goto skip;
3201
Michal Kazioredb82362013-07-05 16:15:14 +03003202 ret = wait_event_timeout(ar->htt.empty_tx_wq, ({
Kalle Valo5e3dd152013-06-12 20:52:10 +03003203 bool empty;
Michal Kazioraffd3212013-07-16 09:54:35 +02003204
Michal Kazioredb82362013-07-05 16:15:14 +03003205 spin_lock_bh(&ar->htt.tx_lock);
Michal Kazior0945baf2013-09-18 14:43:18 +02003206 empty = (ar->htt.num_pending_tx == 0);
Michal Kazioredb82362013-07-05 16:15:14 +03003207 spin_unlock_bh(&ar->htt.tx_lock);
Michal Kazioraffd3212013-07-16 09:54:35 +02003208
3209 skip = (ar->state == ATH10K_STATE_WEDGED);
3210
3211 (empty || skip);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003212 }), ATH10K_FLUSH_TIMEOUT_HZ);
Michal Kazioraffd3212013-07-16 09:54:35 +02003213
3214 if (ret <= 0 || skip)
Kalle Valo5e3dd152013-06-12 20:52:10 +03003215 ath10k_warn("tx not flushed\n");
Michal Kazior548db542013-07-05 16:15:15 +03003216
Michal Kazioraffd3212013-07-16 09:54:35 +02003217skip:
Michal Kazior548db542013-07-05 16:15:15 +03003218 mutex_unlock(&ar->conf_mutex);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003219}
3220
3221/* TODO: Implement this function properly
3222 * For now it is needed to reply to Probe Requests in IBSS mode.
3223 * Propably we need this information from FW.
3224 */
3225static int ath10k_tx_last_beacon(struct ieee80211_hw *hw)
3226{
3227 return 1;
3228}
3229
Michal Kazior8cd13ca2013-07-16 09:38:54 +02003230#ifdef CONFIG_PM
3231static int ath10k_suspend(struct ieee80211_hw *hw,
3232 struct cfg80211_wowlan *wowlan)
3233{
3234 struct ath10k *ar = hw->priv;
3235 int ret;
3236
3237 ar->is_target_paused = false;
3238
3239 ret = ath10k_wmi_pdev_suspend_target(ar);
3240 if (ret) {
3241 ath10k_warn("could not suspend target (%d)\n", ret);
3242 return 1;
3243 }
3244
3245 ret = wait_event_interruptible_timeout(ar->event_queue,
3246 ar->is_target_paused == true,
3247 1 * HZ);
3248 if (ret < 0) {
3249 ath10k_warn("suspend interrupted (%d)\n", ret);
3250 goto resume;
3251 } else if (ret == 0) {
3252 ath10k_warn("suspend timed out - target pause event never came\n");
3253 goto resume;
3254 }
3255
3256 ret = ath10k_hif_suspend(ar);
3257 if (ret) {
3258 ath10k_warn("could not suspend hif (%d)\n", ret);
3259 goto resume;
3260 }
3261
3262 return 0;
3263resume:
3264 ret = ath10k_wmi_pdev_resume_target(ar);
3265 if (ret)
3266 ath10k_warn("could not resume target (%d)\n", ret);
3267 return 1;
3268}
3269
3270static int ath10k_resume(struct ieee80211_hw *hw)
3271{
3272 struct ath10k *ar = hw->priv;
3273 int ret;
3274
3275 ret = ath10k_hif_resume(ar);
3276 if (ret) {
3277 ath10k_warn("could not resume hif (%d)\n", ret);
3278 return 1;
3279 }
3280
3281 ret = ath10k_wmi_pdev_resume_target(ar);
3282 if (ret) {
3283 ath10k_warn("could not resume target (%d)\n", ret);
3284 return 1;
3285 }
3286
3287 return 0;
3288}
3289#endif
3290
Michal Kazioraffd3212013-07-16 09:54:35 +02003291static void ath10k_restart_complete(struct ieee80211_hw *hw)
3292{
3293 struct ath10k *ar = hw->priv;
3294
3295 mutex_lock(&ar->conf_mutex);
3296
3297 /* If device failed to restart it will be in a different state, e.g.
3298 * ATH10K_STATE_WEDGED */
3299 if (ar->state == ATH10K_STATE_RESTARTED) {
3300 ath10k_info("device successfully recovered\n");
3301 ar->state = ATH10K_STATE_ON;
3302 }
3303
3304 mutex_unlock(&ar->conf_mutex);
3305}
3306
Michal Kazior2e1dea42013-07-31 10:32:40 +02003307static int ath10k_get_survey(struct ieee80211_hw *hw, int idx,
3308 struct survey_info *survey)
3309{
3310 struct ath10k *ar = hw->priv;
3311 struct ieee80211_supported_band *sband;
3312 struct survey_info *ar_survey = &ar->survey[idx];
3313 int ret = 0;
3314
3315 mutex_lock(&ar->conf_mutex);
3316
3317 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
3318 if (sband && idx >= sband->n_channels) {
3319 idx -= sband->n_channels;
3320 sband = NULL;
3321 }
3322
3323 if (!sband)
3324 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
3325
3326 if (!sband || idx >= sband->n_channels) {
3327 ret = -ENOENT;
3328 goto exit;
3329 }
3330
3331 spin_lock_bh(&ar->data_lock);
3332 memcpy(survey, ar_survey, sizeof(*survey));
3333 spin_unlock_bh(&ar->data_lock);
3334
3335 survey->channel = &sband->channels[idx];
3336
3337exit:
3338 mutex_unlock(&ar->conf_mutex);
3339 return ret;
3340}
3341
Kalle Valo5e3dd152013-06-12 20:52:10 +03003342static const struct ieee80211_ops ath10k_ops = {
3343 .tx = ath10k_tx,
3344 .start = ath10k_start,
3345 .stop = ath10k_stop,
3346 .config = ath10k_config,
3347 .add_interface = ath10k_add_interface,
3348 .remove_interface = ath10k_remove_interface,
3349 .configure_filter = ath10k_configure_filter,
3350 .bss_info_changed = ath10k_bss_info_changed,
3351 .hw_scan = ath10k_hw_scan,
3352 .cancel_hw_scan = ath10k_cancel_hw_scan,
3353 .set_key = ath10k_set_key,
3354 .sta_state = ath10k_sta_state,
3355 .conf_tx = ath10k_conf_tx,
3356 .remain_on_channel = ath10k_remain_on_channel,
3357 .cancel_remain_on_channel = ath10k_cancel_remain_on_channel,
3358 .set_rts_threshold = ath10k_set_rts_threshold,
3359 .set_frag_threshold = ath10k_set_frag_threshold,
3360 .flush = ath10k_flush,
3361 .tx_last_beacon = ath10k_tx_last_beacon,
Michal Kazioraffd3212013-07-16 09:54:35 +02003362 .restart_complete = ath10k_restart_complete,
Michal Kazior2e1dea42013-07-31 10:32:40 +02003363 .get_survey = ath10k_get_survey,
Michal Kazior8cd13ca2013-07-16 09:38:54 +02003364#ifdef CONFIG_PM
3365 .suspend = ath10k_suspend,
3366 .resume = ath10k_resume,
3367#endif
Kalle Valo5e3dd152013-06-12 20:52:10 +03003368};
3369
3370#define RATETAB_ENT(_rate, _rateid, _flags) { \
3371 .bitrate = (_rate), \
3372 .flags = (_flags), \
3373 .hw_value = (_rateid), \
3374}
3375
3376#define CHAN2G(_channel, _freq, _flags) { \
3377 .band = IEEE80211_BAND_2GHZ, \
3378 .hw_value = (_channel), \
3379 .center_freq = (_freq), \
3380 .flags = (_flags), \
3381 .max_antenna_gain = 0, \
3382 .max_power = 30, \
3383}
3384
3385#define CHAN5G(_channel, _freq, _flags) { \
3386 .band = IEEE80211_BAND_5GHZ, \
3387 .hw_value = (_channel), \
3388 .center_freq = (_freq), \
3389 .flags = (_flags), \
3390 .max_antenna_gain = 0, \
3391 .max_power = 30, \
3392}
3393
3394static const struct ieee80211_channel ath10k_2ghz_channels[] = {
3395 CHAN2G(1, 2412, 0),
3396 CHAN2G(2, 2417, 0),
3397 CHAN2G(3, 2422, 0),
3398 CHAN2G(4, 2427, 0),
3399 CHAN2G(5, 2432, 0),
3400 CHAN2G(6, 2437, 0),
3401 CHAN2G(7, 2442, 0),
3402 CHAN2G(8, 2447, 0),
3403 CHAN2G(9, 2452, 0),
3404 CHAN2G(10, 2457, 0),
3405 CHAN2G(11, 2462, 0),
3406 CHAN2G(12, 2467, 0),
3407 CHAN2G(13, 2472, 0),
3408 CHAN2G(14, 2484, 0),
3409};
3410
3411static const struct ieee80211_channel ath10k_5ghz_channels[] = {
Michal Kazior429ff562013-06-26 08:54:54 +02003412 CHAN5G(36, 5180, 0),
3413 CHAN5G(40, 5200, 0),
3414 CHAN5G(44, 5220, 0),
3415 CHAN5G(48, 5240, 0),
3416 CHAN5G(52, 5260, 0),
3417 CHAN5G(56, 5280, 0),
3418 CHAN5G(60, 5300, 0),
3419 CHAN5G(64, 5320, 0),
3420 CHAN5G(100, 5500, 0),
3421 CHAN5G(104, 5520, 0),
3422 CHAN5G(108, 5540, 0),
3423 CHAN5G(112, 5560, 0),
3424 CHAN5G(116, 5580, 0),
3425 CHAN5G(120, 5600, 0),
3426 CHAN5G(124, 5620, 0),
3427 CHAN5G(128, 5640, 0),
3428 CHAN5G(132, 5660, 0),
3429 CHAN5G(136, 5680, 0),
3430 CHAN5G(140, 5700, 0),
3431 CHAN5G(149, 5745, 0),
3432 CHAN5G(153, 5765, 0),
3433 CHAN5G(157, 5785, 0),
3434 CHAN5G(161, 5805, 0),
3435 CHAN5G(165, 5825, 0),
Kalle Valo5e3dd152013-06-12 20:52:10 +03003436};
3437
3438static struct ieee80211_rate ath10k_rates[] = {
3439 /* CCK */
3440 RATETAB_ENT(10, 0x82, 0),
3441 RATETAB_ENT(20, 0x84, 0),
3442 RATETAB_ENT(55, 0x8b, 0),
3443 RATETAB_ENT(110, 0x96, 0),
3444 /* OFDM */
3445 RATETAB_ENT(60, 0x0c, 0),
3446 RATETAB_ENT(90, 0x12, 0),
3447 RATETAB_ENT(120, 0x18, 0),
3448 RATETAB_ENT(180, 0x24, 0),
3449 RATETAB_ENT(240, 0x30, 0),
3450 RATETAB_ENT(360, 0x48, 0),
3451 RATETAB_ENT(480, 0x60, 0),
3452 RATETAB_ENT(540, 0x6c, 0),
3453};
3454
3455#define ath10k_a_rates (ath10k_rates + 4)
3456#define ath10k_a_rates_size (ARRAY_SIZE(ath10k_rates) - 4)
3457#define ath10k_g_rates (ath10k_rates + 0)
3458#define ath10k_g_rates_size (ARRAY_SIZE(ath10k_rates))
3459
3460struct ath10k *ath10k_mac_create(void)
3461{
3462 struct ieee80211_hw *hw;
3463 struct ath10k *ar;
3464
3465 hw = ieee80211_alloc_hw(sizeof(struct ath10k), &ath10k_ops);
3466 if (!hw)
3467 return NULL;
3468
3469 ar = hw->priv;
3470 ar->hw = hw;
3471
3472 return ar;
3473}
3474
3475void ath10k_mac_destroy(struct ath10k *ar)
3476{
3477 ieee80211_free_hw(ar->hw);
3478}
3479
3480static const struct ieee80211_iface_limit ath10k_if_limits[] = {
3481 {
3482 .max = 8,
3483 .types = BIT(NL80211_IFTYPE_STATION)
3484 | BIT(NL80211_IFTYPE_P2P_CLIENT)
Michal Kaziord531cb82013-07-31 10:55:13 +02003485 },
3486 {
3487 .max = 3,
3488 .types = BIT(NL80211_IFTYPE_P2P_GO)
3489 },
3490 {
3491 .max = 7,
3492 .types = BIT(NL80211_IFTYPE_AP)
3493 },
Kalle Valo5e3dd152013-06-12 20:52:10 +03003494};
3495
Bartosz Markowskif2595092013-12-10 16:20:39 +01003496static const struct ieee80211_iface_limit ath10k_10x_if_limits[] = {
Marek Puzyniake8a50f82013-11-20 09:59:47 +02003497 {
3498 .max = 8,
3499 .types = BIT(NL80211_IFTYPE_AP)
3500 },
3501};
Marek Puzyniake8a50f82013-11-20 09:59:47 +02003502
3503static const struct ieee80211_iface_combination ath10k_if_comb[] = {
3504 {
3505 .limits = ath10k_if_limits,
3506 .n_limits = ARRAY_SIZE(ath10k_if_limits),
3507 .max_interfaces = 8,
3508 .num_different_channels = 1,
3509 .beacon_int_infra_match = true,
3510 },
Bartosz Markowskif2595092013-12-10 16:20:39 +01003511};
3512
3513static const struct ieee80211_iface_combination ath10k_10x_if_comb[] = {
Marek Puzyniake8a50f82013-11-20 09:59:47 +02003514 {
Bartosz Markowskif2595092013-12-10 16:20:39 +01003515 .limits = ath10k_10x_if_limits,
3516 .n_limits = ARRAY_SIZE(ath10k_10x_if_limits),
Marek Puzyniake8a50f82013-11-20 09:59:47 +02003517 .max_interfaces = 8,
3518 .num_different_channels = 1,
3519 .beacon_int_infra_match = true,
Bartosz Markowskif2595092013-12-10 16:20:39 +01003520#ifdef CONFIG_ATH10K_DFS_CERTIFIED
Marek Puzyniake8a50f82013-11-20 09:59:47 +02003521 .radar_detect_widths = BIT(NL80211_CHAN_WIDTH_20_NOHT) |
3522 BIT(NL80211_CHAN_WIDTH_20) |
3523 BIT(NL80211_CHAN_WIDTH_40) |
3524 BIT(NL80211_CHAN_WIDTH_80),
Marek Puzyniake8a50f82013-11-20 09:59:47 +02003525#endif
Bartosz Markowskif2595092013-12-10 16:20:39 +01003526 },
Kalle Valo5e3dd152013-06-12 20:52:10 +03003527};
3528
3529static struct ieee80211_sta_vht_cap ath10k_create_vht_cap(struct ath10k *ar)
3530{
3531 struct ieee80211_sta_vht_cap vht_cap = {0};
3532 u16 mcs_map;
Michal Kazior8865bee42013-07-24 12:36:46 +02003533 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003534
3535 vht_cap.vht_supported = 1;
3536 vht_cap.cap = ar->vht_cap_info;
3537
Michal Kazior8865bee42013-07-24 12:36:46 +02003538 mcs_map = 0;
3539 for (i = 0; i < 8; i++) {
3540 if (i < ar->num_rf_chains)
3541 mcs_map |= IEEE80211_VHT_MCS_SUPPORT_0_9 << (i*2);
3542 else
3543 mcs_map |= IEEE80211_VHT_MCS_NOT_SUPPORTED << (i*2);
3544 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03003545
3546 vht_cap.vht_mcs.rx_mcs_map = cpu_to_le16(mcs_map);
3547 vht_cap.vht_mcs.tx_mcs_map = cpu_to_le16(mcs_map);
3548
3549 return vht_cap;
3550}
3551
3552static struct ieee80211_sta_ht_cap ath10k_get_ht_cap(struct ath10k *ar)
3553{
3554 int i;
3555 struct ieee80211_sta_ht_cap ht_cap = {0};
3556
3557 if (!(ar->ht_cap_info & WMI_HT_CAP_ENABLED))
3558 return ht_cap;
3559
3560 ht_cap.ht_supported = 1;
3561 ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
3562 ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_8;
3563 ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
3564 ht_cap.cap |= IEEE80211_HT_CAP_DSSSCCK40;
3565 ht_cap.cap |= WLAN_HT_CAP_SM_PS_STATIC << IEEE80211_HT_CAP_SM_PS_SHIFT;
3566
3567 if (ar->ht_cap_info & WMI_HT_CAP_HT20_SGI)
3568 ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
3569
3570 if (ar->ht_cap_info & WMI_HT_CAP_HT40_SGI)
3571 ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
3572
3573 if (ar->ht_cap_info & WMI_HT_CAP_DYNAMIC_SMPS) {
3574 u32 smps;
3575
3576 smps = WLAN_HT_CAP_SM_PS_DYNAMIC;
3577 smps <<= IEEE80211_HT_CAP_SM_PS_SHIFT;
3578
3579 ht_cap.cap |= smps;
3580 }
3581
3582 if (ar->ht_cap_info & WMI_HT_CAP_TX_STBC)
3583 ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC;
3584
3585 if (ar->ht_cap_info & WMI_HT_CAP_RX_STBC) {
3586 u32 stbc;
3587
3588 stbc = ar->ht_cap_info;
3589 stbc &= WMI_HT_CAP_RX_STBC;
3590 stbc >>= WMI_HT_CAP_RX_STBC_MASK_SHIFT;
3591 stbc <<= IEEE80211_HT_CAP_RX_STBC_SHIFT;
3592 stbc &= IEEE80211_HT_CAP_RX_STBC;
3593
3594 ht_cap.cap |= stbc;
3595 }
3596
3597 if (ar->ht_cap_info & WMI_HT_CAP_LDPC)
3598 ht_cap.cap |= IEEE80211_HT_CAP_LDPC_CODING;
3599
3600 if (ar->ht_cap_info & WMI_HT_CAP_L_SIG_TXOP_PROT)
3601 ht_cap.cap |= IEEE80211_HT_CAP_LSIG_TXOP_PROT;
3602
3603 /* max AMSDU is implicitly taken from vht_cap_info */
3604 if (ar->vht_cap_info & WMI_VHT_CAP_MAX_MPDU_LEN_MASK)
3605 ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU;
3606
Michal Kazior8865bee42013-07-24 12:36:46 +02003607 for (i = 0; i < ar->num_rf_chains; i++)
Kalle Valo5e3dd152013-06-12 20:52:10 +03003608 ht_cap.mcs.rx_mask[i] = 0xFF;
3609
3610 ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_DEFINED;
3611
3612 return ht_cap;
3613}
3614
3615
3616static void ath10k_get_arvif_iter(void *data, u8 *mac,
3617 struct ieee80211_vif *vif)
3618{
3619 struct ath10k_vif_iter *arvif_iter = data;
3620 struct ath10k_vif *arvif = ath10k_vif_to_arvif(vif);
3621
3622 if (arvif->vdev_id == arvif_iter->vdev_id)
3623 arvif_iter->arvif = arvif;
3624}
3625
3626struct ath10k_vif *ath10k_get_arvif(struct ath10k *ar, u32 vdev_id)
3627{
3628 struct ath10k_vif_iter arvif_iter;
3629 u32 flags;
3630
3631 memset(&arvif_iter, 0, sizeof(struct ath10k_vif_iter));
3632 arvif_iter.vdev_id = vdev_id;
3633
3634 flags = IEEE80211_IFACE_ITER_RESUME_ALL;
3635 ieee80211_iterate_active_interfaces_atomic(ar->hw,
3636 flags,
3637 ath10k_get_arvif_iter,
3638 &arvif_iter);
3639 if (!arvif_iter.arvif) {
3640 ath10k_warn("No VIF found for VDEV: %d\n", vdev_id);
3641 return NULL;
3642 }
3643
3644 return arvif_iter.arvif;
3645}
3646
3647int ath10k_mac_register(struct ath10k *ar)
3648{
3649 struct ieee80211_supported_band *band;
3650 struct ieee80211_sta_vht_cap vht_cap;
3651 struct ieee80211_sta_ht_cap ht_cap;
3652 void *channels;
3653 int ret;
3654
3655 SET_IEEE80211_PERM_ADDR(ar->hw, ar->mac_addr);
3656
3657 SET_IEEE80211_DEV(ar->hw, ar->dev);
3658
3659 ht_cap = ath10k_get_ht_cap(ar);
3660 vht_cap = ath10k_create_vht_cap(ar);
3661
3662 if (ar->phy_capability & WHAL_WLAN_11G_CAPABILITY) {
3663 channels = kmemdup(ath10k_2ghz_channels,
3664 sizeof(ath10k_2ghz_channels),
3665 GFP_KERNEL);
Michal Kaziord6015b22013-07-22 14:13:30 +02003666 if (!channels) {
3667 ret = -ENOMEM;
3668 goto err_free;
3669 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03003670
3671 band = &ar->mac.sbands[IEEE80211_BAND_2GHZ];
3672 band->n_channels = ARRAY_SIZE(ath10k_2ghz_channels);
3673 band->channels = channels;
3674 band->n_bitrates = ath10k_g_rates_size;
3675 band->bitrates = ath10k_g_rates;
3676 band->ht_cap = ht_cap;
3677
3678 /* vht is not supported in 2.4 GHz */
3679
3680 ar->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = band;
3681 }
3682
3683 if (ar->phy_capability & WHAL_WLAN_11A_CAPABILITY) {
3684 channels = kmemdup(ath10k_5ghz_channels,
3685 sizeof(ath10k_5ghz_channels),
3686 GFP_KERNEL);
3687 if (!channels) {
Michal Kaziord6015b22013-07-22 14:13:30 +02003688 ret = -ENOMEM;
3689 goto err_free;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003690 }
3691
3692 band = &ar->mac.sbands[IEEE80211_BAND_5GHZ];
3693 band->n_channels = ARRAY_SIZE(ath10k_5ghz_channels);
3694 band->channels = channels;
3695 band->n_bitrates = ath10k_a_rates_size;
3696 band->bitrates = ath10k_a_rates;
3697 band->ht_cap = ht_cap;
3698 band->vht_cap = vht_cap;
3699 ar->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = band;
3700 }
3701
3702 ar->hw->wiphy->interface_modes =
3703 BIT(NL80211_IFTYPE_STATION) |
3704 BIT(NL80211_IFTYPE_ADHOC) |
Bartosz Markowskid3541812013-12-10 16:20:40 +01003705 BIT(NL80211_IFTYPE_AP);
3706
3707 if (!test_bit(ATH10K_FW_FEATURE_NO_P2P, ar->fw_features))
3708 ar->hw->wiphy->interface_modes |=
3709 BIT(NL80211_IFTYPE_P2P_CLIENT) |
3710 BIT(NL80211_IFTYPE_P2P_GO);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003711
3712 ar->hw->flags = IEEE80211_HW_SIGNAL_DBM |
3713 IEEE80211_HW_SUPPORTS_PS |
3714 IEEE80211_HW_SUPPORTS_DYNAMIC_PS |
3715 IEEE80211_HW_SUPPORTS_UAPSD |
3716 IEEE80211_HW_MFP_CAPABLE |
3717 IEEE80211_HW_REPORTS_TX_ACK_STATUS |
3718 IEEE80211_HW_HAS_RATE_CONTROL |
3719 IEEE80211_HW_SUPPORTS_STATIC_SMPS |
3720 IEEE80211_HW_WANT_MONITOR_VIF |
3721 IEEE80211_HW_AP_LINK_PS;
3722
Michal Kazior1f8bb152013-09-18 14:43:22 +02003723 /* MSDU can have HTT TX fragment pushed in front. The additional 4
3724 * bytes is used for padding/alignment if necessary. */
3725 ar->hw->extra_tx_headroom += sizeof(struct htt_data_tx_desc_frag)*2 + 4;
3726
Kalle Valo5e3dd152013-06-12 20:52:10 +03003727 if (ar->ht_cap_info & WMI_HT_CAP_DYNAMIC_SMPS)
3728 ar->hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS;
3729
3730 if (ar->ht_cap_info & WMI_HT_CAP_ENABLED) {
3731 ar->hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
3732 ar->hw->flags |= IEEE80211_HW_TX_AMPDU_SETUP_IN_HW;
3733 }
3734
3735 ar->hw->wiphy->max_scan_ssids = WLAN_SCAN_PARAMS_MAX_SSID;
3736 ar->hw->wiphy->max_scan_ie_len = WLAN_SCAN_PARAMS_MAX_IE_LEN;
3737
3738 ar->hw->vif_data_size = sizeof(struct ath10k_vif);
3739
3740 ar->hw->channel_change_time = 5000;
3741 ar->hw->max_listen_interval = ATH10K_MAX_HW_LISTEN_INTERVAL;
3742
3743 ar->hw->wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
3744 ar->hw->wiphy->max_remain_on_channel_duration = 5000;
3745
3746 ar->hw->wiphy->flags |= WIPHY_FLAG_AP_UAPSD;
3747 /*
3748 * on LL hardware queues are managed entirely by the FW
3749 * so we only advertise to mac we can do the queues thing
3750 */
3751 ar->hw->queues = 4;
3752
Bartosz Markowskif2595092013-12-10 16:20:39 +01003753 if (test_bit(ATH10K_FW_FEATURE_WMI_10X, ar->fw_features)) {
3754 ar->hw->wiphy->iface_combinations = ath10k_10x_if_comb;
3755 ar->hw->wiphy->n_iface_combinations =
3756 ARRAY_SIZE(ath10k_10x_if_comb);
3757 } else {
3758 ar->hw->wiphy->iface_combinations = ath10k_if_comb;
3759 ar->hw->wiphy->n_iface_combinations =
3760 ARRAY_SIZE(ath10k_if_comb);
3761 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03003762
Michal Kazior7c199992013-07-31 10:47:57 +02003763 ar->hw->netdev_features = NETIF_F_HW_CSUM;
3764
Janusz Dziedzic9702c682013-11-20 09:59:41 +02003765 if (config_enabled(CONFIG_ATH10K_DFS_CERTIFIED)) {
3766 /* Init ath dfs pattern detector */
3767 ar->ath_common.debug_mask = ATH_DBG_DFS;
3768 ar->dfs_detector = dfs_pattern_detector_init(&ar->ath_common,
3769 NL80211_DFS_UNSET);
3770
3771 if (!ar->dfs_detector)
3772 ath10k_warn("dfs pattern detector init failed\n");
3773 }
3774
Kalle Valo5e3dd152013-06-12 20:52:10 +03003775 ret = ath_regd_init(&ar->ath_common.regulatory, ar->hw->wiphy,
3776 ath10k_reg_notifier);
3777 if (ret) {
3778 ath10k_err("Regulatory initialization failed\n");
Michal Kaziord6015b22013-07-22 14:13:30 +02003779 goto err_free;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003780 }
3781
3782 ret = ieee80211_register_hw(ar->hw);
3783 if (ret) {
3784 ath10k_err("ieee80211 registration failed: %d\n", ret);
Michal Kaziord6015b22013-07-22 14:13:30 +02003785 goto err_free;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003786 }
3787
3788 if (!ath_is_world_regd(&ar->ath_common.regulatory)) {
3789 ret = regulatory_hint(ar->hw->wiphy,
3790 ar->ath_common.regulatory.alpha2);
3791 if (ret)
Michal Kaziord6015b22013-07-22 14:13:30 +02003792 goto err_unregister;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003793 }
3794
3795 return 0;
Michal Kaziord6015b22013-07-22 14:13:30 +02003796
3797err_unregister:
Kalle Valo5e3dd152013-06-12 20:52:10 +03003798 ieee80211_unregister_hw(ar->hw);
Michal Kaziord6015b22013-07-22 14:13:30 +02003799err_free:
3800 kfree(ar->mac.sbands[IEEE80211_BAND_2GHZ].channels);
3801 kfree(ar->mac.sbands[IEEE80211_BAND_5GHZ].channels);
3802
Kalle Valo5e3dd152013-06-12 20:52:10 +03003803 return ret;
3804}
3805
3806void ath10k_mac_unregister(struct ath10k *ar)
3807{
3808 ieee80211_unregister_hw(ar->hw);
3809
Janusz Dziedzic9702c682013-11-20 09:59:41 +02003810 if (config_enabled(CONFIG_ATH10K_DFS_CERTIFIED) && ar->dfs_detector)
3811 ar->dfs_detector->exit(ar->dfs_detector);
3812
Kalle Valo5e3dd152013-06-12 20:52:10 +03003813 kfree(ar->mac.sbands[IEEE80211_BAND_2GHZ].channels);
3814 kfree(ar->mac.sbands[IEEE80211_BAND_5GHZ].channels);
3815
3816 SET_IEEE80211_DEV(ar->hw, NULL);
3817}