2 * Atheros CARL9170 driver
4 * mac80211 interaction code
6 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
7 * Copyright 2009, 2010, Christian Lamparter <chunkeey@googlemail.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; see the file COPYING. If not, see
21 * http://www.gnu.org/licenses/.
23 * This file incorporates work covered by the following copyright and
25 * Copyright (c) 2007-2008 Atheros Communications, Inc.
27 * Permission to use, copy, modify, and/or distribute this software for any
28 * purpose with or without fee is hereby granted, provided that the above
29 * copyright notice and this permission notice appear in all copies.
31 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
32 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
33 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
34 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
35 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
36 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
37 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
40 #include <linux/init.h>
41 #include <linux/slab.h>
42 #include <linux/module.h>
43 #include <linux/etherdevice.h>
44 #include <linux/random.h>
45 #include <net/mac80211.h>
46 #include <net/cfg80211.h>
51 static bool modparam_nohwcrypt
;
52 module_param_named(nohwcrypt
, modparam_nohwcrypt
, bool, S_IRUGO
);
53 MODULE_PARM_DESC(nohwcrypt
, "Disable hardware crypto offload.");
56 module_param_named(noht
, modparam_noht
, int, S_IRUGO
);
57 MODULE_PARM_DESC(noht
, "Disable MPDU aggregation.");
59 #define RATE(_bitrate, _hw_rate, _txpidx, _flags) { \
60 .bitrate = (_bitrate), \
62 .hw_value = (_hw_rate) | (_txpidx) << 4, \
65 struct ieee80211_rate __carl9170_ratetable
[] = {
67 RATE(20, 1, 1, IEEE80211_RATE_SHORT_PREAMBLE
),
68 RATE(55, 2, 2, IEEE80211_RATE_SHORT_PREAMBLE
),
69 RATE(110, 3, 3, IEEE80211_RATE_SHORT_PREAMBLE
),
81 #define carl9170_g_ratetable (__carl9170_ratetable + 0)
82 #define carl9170_g_ratetable_size 12
83 #define carl9170_a_ratetable (__carl9170_ratetable + 4)
84 #define carl9170_a_ratetable_size 8
87 * NB: The hw_value is used as an index into the carl9170_phy_freq_params
88 * array in phy.c so that we don't have to do frequency lookups!
90 #define CHAN(_freq, _idx) { \
91 .center_freq = (_freq), \
93 .max_power = 18, /* XXX */ \
96 static struct ieee80211_channel carl9170_2ghz_chantable
[] = {
113 static struct ieee80211_channel carl9170_5ghz_chantable
[] = {
152 #define CARL9170_HT_CAP \
154 .ht_supported = true, \
155 .cap = IEEE80211_HT_CAP_MAX_AMSDU | \
156 IEEE80211_HT_CAP_SUP_WIDTH_20_40 | \
157 IEEE80211_HT_CAP_SGI_40 | \
158 IEEE80211_HT_CAP_DSSSCCK40 | \
159 IEEE80211_HT_CAP_SM_PS, \
160 .ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K, \
161 .ampdu_density = IEEE80211_HT_MPDU_DENSITY_8, \
163 .rx_mask = { 0xff, 0xff, 0, 0, 0x1, 0, 0, 0, 0, 0, }, \
164 .rx_highest = cpu_to_le16(300), \
165 .tx_params = IEEE80211_HT_MCS_TX_DEFINED, \
169 static struct ieee80211_supported_band carl9170_band_2GHz
= {
170 .channels
= carl9170_2ghz_chantable
,
171 .n_channels
= ARRAY_SIZE(carl9170_2ghz_chantable
),
172 .bitrates
= carl9170_g_ratetable
,
173 .n_bitrates
= carl9170_g_ratetable_size
,
174 .ht_cap
= CARL9170_HT_CAP
,
177 static struct ieee80211_supported_band carl9170_band_5GHz
= {
178 .channels
= carl9170_5ghz_chantable
,
179 .n_channels
= ARRAY_SIZE(carl9170_5ghz_chantable
),
180 .bitrates
= carl9170_a_ratetable
,
181 .n_bitrates
= carl9170_a_ratetable_size
,
182 .ht_cap
= CARL9170_HT_CAP
,
185 static void carl9170_ampdu_gc(struct ar9170
*ar
)
187 struct carl9170_sta_tid
*tid_info
;
191 list_for_each_entry_rcu(tid_info
, &ar
->tx_ampdu_list
, list
) {
192 spin_lock_bh(&ar
->tx_ampdu_list_lock
);
193 if (tid_info
->state
== CARL9170_TID_STATE_SHUTDOWN
) {
194 tid_info
->state
= CARL9170_TID_STATE_KILLED
;
195 list_del_rcu(&tid_info
->list
);
196 ar
->tx_ampdu_list_len
--;
197 list_add_tail(&tid_info
->tmp_list
, &tid_gc
);
199 spin_unlock_bh(&ar
->tx_ampdu_list_lock
);
202 rcu_assign_pointer(ar
->tx_ampdu_iter
, tid_info
);
207 while (!list_empty(&tid_gc
)) {
209 tid_info
= list_first_entry(&tid_gc
, struct carl9170_sta_tid
,
212 while ((skb
= __skb_dequeue(&tid_info
->queue
)))
213 carl9170_tx_status(ar
, skb
, false);
215 list_del_init(&tid_info
->tmp_list
);
220 static void carl9170_flush(struct ar9170
*ar
, bool drop_queued
)
226 * We can only drop frames which have not been uploaded
230 for (i
= 0; i
< ar
->hw
->queues
; i
++) {
233 while ((skb
= skb_dequeue(&ar
->tx_pending
[i
]))) {
234 struct ieee80211_tx_info
*info
;
236 info
= IEEE80211_SKB_CB(skb
);
237 if (info
->flags
& IEEE80211_TX_CTL_AMPDU
)
238 atomic_dec(&ar
->tx_ampdu_upload
);
240 carl9170_tx_status(ar
, skb
, false);
245 /* Wait for all other outstanding frames to timeout. */
246 if (atomic_read(&ar
->tx_total_queued
))
247 WARN_ON(wait_for_completion_timeout(&ar
->tx_flush
, HZ
) == 0);
250 static void carl9170_flush_ba(struct ar9170
*ar
)
252 struct sk_buff_head free
;
253 struct carl9170_sta_tid
*tid_info
;
256 __skb_queue_head_init(&free
);
259 spin_lock_bh(&ar
->tx_ampdu_list_lock
);
260 list_for_each_entry_rcu(tid_info
, &ar
->tx_ampdu_list
, list
) {
261 if (tid_info
->state
> CARL9170_TID_STATE_SUSPEND
) {
262 tid_info
->state
= CARL9170_TID_STATE_SUSPEND
;
264 spin_lock(&tid_info
->lock
);
265 while ((skb
= __skb_dequeue(&tid_info
->queue
)))
266 __skb_queue_tail(&free
, skb
);
267 spin_unlock(&tid_info
->lock
);
270 spin_unlock_bh(&ar
->tx_ampdu_list_lock
);
273 while ((skb
= __skb_dequeue(&free
)))
274 carl9170_tx_status(ar
, skb
, false);
277 static void carl9170_zap_queues(struct ar9170
*ar
)
279 struct carl9170_vif_info
*cvif
;
282 carl9170_ampdu_gc(ar
);
284 carl9170_flush_ba(ar
);
285 carl9170_flush(ar
, true);
287 for (i
= 0; i
< ar
->hw
->queues
; i
++) {
288 spin_lock_bh(&ar
->tx_status
[i
].lock
);
289 while (!skb_queue_empty(&ar
->tx_status
[i
])) {
292 skb
= skb_peek(&ar
->tx_status
[i
]);
293 carl9170_tx_get_skb(skb
);
294 spin_unlock_bh(&ar
->tx_status
[i
].lock
);
295 carl9170_tx_drop(ar
, skb
);
296 spin_lock_bh(&ar
->tx_status
[i
].lock
);
297 carl9170_tx_put_skb(skb
);
299 spin_unlock_bh(&ar
->tx_status
[i
].lock
);
302 BUILD_BUG_ON(CARL9170_NUM_TX_LIMIT_SOFT
< 1);
303 BUILD_BUG_ON(CARL9170_NUM_TX_LIMIT_HARD
< CARL9170_NUM_TX_LIMIT_SOFT
);
304 BUILD_BUG_ON(CARL9170_NUM_TX_LIMIT_HARD
>= CARL9170_BAW_BITS
);
306 /* reinitialize queues statistics */
307 memset(&ar
->tx_stats
, 0, sizeof(ar
->tx_stats
));
308 for (i
= 0; i
< ar
->hw
->queues
; i
++)
309 ar
->tx_stats
[i
].limit
= CARL9170_NUM_TX_LIMIT_HARD
;
311 for (i
= 0; i
< DIV_ROUND_UP(ar
->fw
.mem_blocks
, BITS_PER_LONG
); i
++)
312 ar
->mem_bitmap
[i
] = 0;
315 list_for_each_entry_rcu(cvif
, &ar
->vif_list
, list
) {
316 spin_lock_bh(&ar
->beacon_lock
);
317 dev_kfree_skb_any(cvif
->beacon
);
319 spin_unlock_bh(&ar
->beacon_lock
);
323 atomic_set(&ar
->tx_ampdu_upload
, 0);
324 atomic_set(&ar
->tx_ampdu_scheduler
, 0);
325 atomic_set(&ar
->tx_total_pending
, 0);
326 atomic_set(&ar
->tx_total_queued
, 0);
327 atomic_set(&ar
->mem_free_blocks
, ar
->fw
.mem_blocks
);
330 #define CARL9170_FILL_QUEUE(queue, ai_fs, cwmin, cwmax, _txop) \
332 queue.aifs = ai_fs; \
333 queue.cw_min = cwmin; \
334 queue.cw_max = cwmax; \
335 queue.txop = _txop; \
338 static int carl9170_op_start(struct ieee80211_hw
*hw
)
340 struct ar9170
*ar
= hw
->priv
;
343 mutex_lock(&ar
->mutex
);
345 carl9170_zap_queues(ar
);
347 /* reset QoS defaults */
348 CARL9170_FILL_QUEUE(ar
->edcf
[AR9170_TXQ_VO
], 2, 3, 7, 47);
349 CARL9170_FILL_QUEUE(ar
->edcf
[AR9170_TXQ_VI
], 2, 7, 15, 94);
350 CARL9170_FILL_QUEUE(ar
->edcf
[AR9170_TXQ_BE
], 3, 15, 1023, 0);
351 CARL9170_FILL_QUEUE(ar
->edcf
[AR9170_TXQ_BK
], 7, 15, 1023, 0);
352 CARL9170_FILL_QUEUE(ar
->edcf
[AR9170_TXQ_SPECIAL
], 2, 3, 7, 0);
354 ar
->current_factor
= ar
->current_density
= -1;
355 /* "The first key is unique." */
357 ar
->filter_state
= 0;
358 ar
->ps
.last_action
= jiffies
;
359 ar
->ps
.last_slept
= jiffies
;
360 ar
->erp_mode
= CARL9170_ERP_AUTO
;
362 /* Set "disable hw crypto offload" whenever the module parameter
363 * nohwcrypt is true or if the firmware does not support it.
365 ar
->disable_offload
= modparam_nohwcrypt
|
366 ar
->fw
.disable_offload_fw
;
367 ar
->rx_software_decryption
= ar
->disable_offload
;
369 for (i
= 0; i
< ar
->hw
->queues
; i
++) {
370 ar
->queue_stop_timeout
[i
] = jiffies
;
371 ar
->max_queue_stop_timeout
[i
] = 0;
374 atomic_set(&ar
->mem_allocs
, 0);
376 err
= carl9170_usb_open(ar
);
380 err
= carl9170_init_mac(ar
);
384 err
= carl9170_set_qos(ar
);
388 if (ar
->fw
.rx_filter
) {
389 err
= carl9170_rx_filter(ar
, CARL9170_RX_FILTER_OTHER_RA
|
390 CARL9170_RX_FILTER_CTL_OTHER
| CARL9170_RX_FILTER_BAD
);
395 err
= carl9170_write_reg(ar
, AR9170_MAC_REG_DMA_TRIGGER
,
396 AR9170_DMA_TRIGGER_RXQ
);
400 /* Clear key-cache */
401 for (i
= 0; i
< AR9170_CAM_MAX_USER
+ 4; i
++) {
402 err
= carl9170_upload_key(ar
, i
, NULL
, AR9170_ENC_ALG_NONE
,
407 err
= carl9170_upload_key(ar
, i
, NULL
, AR9170_ENC_ALG_NONE
,
412 if (i
< AR9170_CAM_MAX_USER
) {
413 err
= carl9170_disable_key(ar
, i
);
419 carl9170_set_state_when(ar
, CARL9170_IDLE
, CARL9170_STARTED
);
421 ieee80211_queue_delayed_work(ar
->hw
, &ar
->stat_work
,
422 round_jiffies(msecs_to_jiffies(CARL9170_STAT_WORK
)));
424 ieee80211_wake_queues(ar
->hw
);
428 mutex_unlock(&ar
->mutex
);
432 static void carl9170_cancel_worker(struct ar9170
*ar
)
434 cancel_delayed_work_sync(&ar
->stat_work
);
435 cancel_delayed_work_sync(&ar
->tx_janitor
);
436 #ifdef CONFIG_CARL9170_LEDS
437 cancel_delayed_work_sync(&ar
->led_work
);
438 #endif /* CONFIG_CARL9170_LEDS */
439 cancel_work_sync(&ar
->ps_work
);
440 cancel_work_sync(&ar
->ping_work
);
441 cancel_work_sync(&ar
->ampdu_work
);
444 static void carl9170_op_stop(struct ieee80211_hw
*hw
)
446 struct ar9170
*ar
= hw
->priv
;
448 carl9170_set_state_when(ar
, CARL9170_STARTED
, CARL9170_IDLE
);
450 ieee80211_stop_queues(ar
->hw
);
452 mutex_lock(&ar
->mutex
);
453 if (IS_ACCEPTING_CMD(ar
)) {
454 RCU_INIT_POINTER(ar
->beacon_iter
, NULL
);
456 carl9170_led_set_state(ar
, 0);
459 carl9170_write_reg(ar
, AR9170_MAC_REG_DMA_TRIGGER
, 0);
460 carl9170_usb_stop(ar
);
463 carl9170_zap_queues(ar
);
464 mutex_unlock(&ar
->mutex
);
466 carl9170_cancel_worker(ar
);
469 static void carl9170_restart_work(struct work_struct
*work
)
471 struct ar9170
*ar
= container_of(work
, struct ar9170
,
476 ar
->filter_state
= 0;
477 carl9170_cancel_worker(ar
);
479 mutex_lock(&ar
->mutex
);
480 if (!ar
->force_usb_reset
) {
481 err
= carl9170_usb_restart(ar
);
482 if (net_ratelimit()) {
484 dev_err(&ar
->udev
->dev
, "Failed to restart device (%d).\n", err
);
486 dev_info(&ar
->udev
->dev
, "device restarted successfully.\n");
489 carl9170_zap_queues(ar
);
490 mutex_unlock(&ar
->mutex
);
492 if (!err
&& !ar
->force_usb_reset
) {
493 ar
->restart_counter
++;
494 atomic_set(&ar
->pending_restarts
, 0);
496 ieee80211_restart_hw(ar
->hw
);
499 * The reset was unsuccessful and the device seems to
500 * be dead. But there's still one option: a low-level
501 * usb subsystem reset...
504 carl9170_usb_reset(ar
);
508 void carl9170_restart(struct ar9170
*ar
, const enum carl9170_restart_reasons r
)
510 carl9170_set_state_when(ar
, CARL9170_STARTED
, CARL9170_IDLE
);
513 * Sometimes, an error can trigger several different reset events.
514 * By ignoring these *surplus* reset events, the device won't be
515 * killed again, right after it has recovered.
517 if (atomic_inc_return(&ar
->pending_restarts
) > 1) {
518 dev_dbg(&ar
->udev
->dev
, "ignoring restart (%d)\n", r
);
522 ieee80211_stop_queues(ar
->hw
);
524 dev_err(&ar
->udev
->dev
, "restart device (%d)\n", r
);
526 if (!WARN_ON(r
== CARL9170_RR_NO_REASON
) ||
527 !WARN_ON(r
>= __CARL9170_RR_LAST
))
533 if (!IS_ACCEPTING_CMD(ar
) || ar
->needs_full_reset
)
534 ar
->force_usb_reset
= true;
536 ieee80211_queue_work(ar
->hw
, &ar
->restart_work
);
539 * At this point, the device instance might have vanished/disabled.
540 * So, don't put any code which access the ar9170 struct
541 * without proper protection.
545 static void carl9170_ping_work(struct work_struct
*work
)
547 struct ar9170
*ar
= container_of(work
, struct ar9170
, ping_work
);
553 mutex_lock(&ar
->mutex
);
554 err
= carl9170_echo_test(ar
, 0xdeadbeef);
556 carl9170_restart(ar
, CARL9170_RR_UNRESPONSIVE_DEVICE
);
557 mutex_unlock(&ar
->mutex
);
560 static int carl9170_init_interface(struct ar9170
*ar
,
561 struct ieee80211_vif
*vif
)
563 struct ath_common
*common
= &ar
->common
;
567 WARN_ON_ONCE(IS_STARTED(ar
));
571 memcpy(common
->macaddr
, vif
->addr
, ETH_ALEN
);
573 /* We have to fall back to software crypto, whenever
574 * the user choose to participates in an IBSS. HW
575 * offload for IBSS RSN is not supported by this driver.
577 * NOTE: If the previous main interface has already
578 * disabled hw crypto offload, we have to keep this
579 * previous disable_offload setting as it was.
580 * Altough ideally, we should notify mac80211 and tell
581 * it to forget about any HW crypto offload for now.
583 ar
->disable_offload
|= ((vif
->type
!= NL80211_IFTYPE_STATION
) &&
584 (vif
->type
!= NL80211_IFTYPE_AP
));
586 /* While the driver supports HW offload in a single
587 * P2P client configuration, it doesn't support HW
588 * offload in the favourit, concurrent P2P GO+CLIENT
589 * configuration. Hence, HW offload will always be
592 ar
->disable_offload
|= vif
->p2p
;
594 ar
->rx_software_decryption
= ar
->disable_offload
;
596 err
= carl9170_set_operating_mode(ar
);
600 static int carl9170_op_add_interface(struct ieee80211_hw
*hw
,
601 struct ieee80211_vif
*vif
)
603 struct carl9170_vif_info
*vif_priv
= (void *) vif
->drv_priv
;
604 struct ieee80211_vif
*main_vif
, *old_main
= NULL
;
605 struct ar9170
*ar
= hw
->priv
;
606 int vif_id
= -1, err
= 0;
608 mutex_lock(&ar
->mutex
);
610 if (vif_priv
->active
) {
612 * Skip the interface structure initialization,
613 * if the vif survived the _restart call.
615 vif_id
= vif_priv
->id
;
616 vif_priv
->enable_beacon
= false;
618 spin_lock_bh(&ar
->beacon_lock
);
619 dev_kfree_skb_any(vif_priv
->beacon
);
620 vif_priv
->beacon
= NULL
;
621 spin_unlock_bh(&ar
->beacon_lock
);
626 /* Because the AR9170 HW's MAC doesn't provide full support for
627 * multiple, independent interfaces [of different operation modes].
628 * We have to select ONE main interface [main mode of HW], but we
629 * can have multiple slaves [AKA: entry in the ACK-table].
631 * The first (from HEAD/TOP) interface in the ar->vif_list is
632 * always the main intf. All following intfs in this list
633 * are considered to be slave intfs.
635 main_vif
= carl9170_get_main_vif(ar
);
638 switch (main_vif
->type
) {
639 case NL80211_IFTYPE_STATION
:
640 if (vif
->type
== NL80211_IFTYPE_STATION
)
643 /* P2P GO [master] use-case
644 * Because the P2P GO station is selected dynamically
645 * by all participating peers of a WIFI Direct network,
646 * the driver has be able to change the main interface
647 * operating mode on the fly.
649 if (main_vif
->p2p
&& vif
->p2p
&&
650 vif
->type
== NL80211_IFTYPE_AP
) {
660 case NL80211_IFTYPE_MESH_POINT
:
661 case NL80211_IFTYPE_AP
:
662 if ((vif
->type
== NL80211_IFTYPE_STATION
) ||
663 (vif
->type
== NL80211_IFTYPE_WDS
) ||
664 (vif
->type
== NL80211_IFTYPE_AP
) ||
665 (vif
->type
== NL80211_IFTYPE_MESH_POINT
))
678 vif_id
= bitmap_find_free_region(&ar
->vif_bitmap
, ar
->fw
.vif_num
, 0);
687 BUG_ON(ar
->vif_priv
[vif_id
].id
!= vif_id
);
689 vif_priv
->active
= true;
690 vif_priv
->id
= vif_id
;
691 vif_priv
->enable_beacon
= false;
694 /* We end up in here, if the main interface is being replaced.
695 * Put the new main interface at the HEAD of the list and the
696 * previous inteface will automatically become second in line.
698 list_add_rcu(&vif_priv
->list
, &ar
->vif_list
);
700 /* Add new inteface. If the list is empty, it will become the
701 * main inteface, otherwise it will be slave.
703 list_add_tail_rcu(&vif_priv
->list
, &ar
->vif_list
);
705 rcu_assign_pointer(ar
->vif_priv
[vif_id
].vif
, vif
);
708 main_vif
= carl9170_get_main_vif(ar
);
710 if (main_vif
== vif
) {
711 rcu_assign_pointer(ar
->beacon_iter
, vif_priv
);
715 struct carl9170_vif_info
*old_main_priv
=
716 (void *) old_main
->drv_priv
;
717 /* downgrade old main intf to slave intf.
718 * NOTE: We are no longer under rcu_read_lock.
719 * But we are still holding ar->mutex, so the
720 * vif data [id, addr] is safe.
722 err
= carl9170_mod_virtual_mac(ar
, old_main_priv
->id
,
728 err
= carl9170_init_interface(ar
, vif
);
733 err
= carl9170_mod_virtual_mac(ar
, vif_id
, vif
->addr
);
739 if (ar
->fw
.tx_seq_table
) {
740 err
= carl9170_write_reg(ar
, ar
->fw
.tx_seq_table
+ vif_id
* 4,
747 if (err
&& (vif_id
>= 0)) {
748 vif_priv
->active
= false;
749 bitmap_release_region(&ar
->vif_bitmap
, vif_id
, 0);
751 RCU_INIT_POINTER(ar
->vif_priv
[vif_id
].vif
, NULL
);
752 list_del_rcu(&vif_priv
->list
);
753 mutex_unlock(&ar
->mutex
);
757 ar
->ps
.off_override
|= PS_OFF_VIF
;
759 mutex_unlock(&ar
->mutex
);
765 static void carl9170_op_remove_interface(struct ieee80211_hw
*hw
,
766 struct ieee80211_vif
*vif
)
768 struct carl9170_vif_info
*vif_priv
= (void *) vif
->drv_priv
;
769 struct ieee80211_vif
*main_vif
;
770 struct ar9170
*ar
= hw
->priv
;
773 mutex_lock(&ar
->mutex
);
775 if (WARN_ON_ONCE(!vif_priv
->active
))
781 main_vif
= carl9170_get_main_vif(ar
);
785 vif_priv
->active
= false;
786 WARN_ON(vif_priv
->enable_beacon
);
787 vif_priv
->enable_beacon
= false;
788 list_del_rcu(&vif_priv
->list
);
789 RCU_INIT_POINTER(ar
->vif_priv
[id
].vif
, NULL
);
791 if (vif
== main_vif
) {
795 WARN_ON(carl9170_init_interface(ar
,
796 carl9170_get_main_vif(ar
)));
798 carl9170_set_operating_mode(ar
);
803 WARN_ON(carl9170_mod_virtual_mac(ar
, id
, NULL
));
806 carl9170_update_beacon(ar
, false);
807 carl9170_flush_cab(ar
, id
);
809 spin_lock_bh(&ar
->beacon_lock
);
810 dev_kfree_skb_any(vif_priv
->beacon
);
811 vif_priv
->beacon
= NULL
;
812 spin_unlock_bh(&ar
->beacon_lock
);
814 bitmap_release_region(&ar
->vif_bitmap
, id
, 0);
816 carl9170_set_beacon_timers(ar
);
819 ar
->ps
.off_override
&= ~PS_OFF_VIF
;
822 mutex_unlock(&ar
->mutex
);
827 void carl9170_ps_check(struct ar9170
*ar
)
829 ieee80211_queue_work(ar
->hw
, &ar
->ps_work
);
832 /* caller must hold ar->mutex */
833 static int carl9170_ps_update(struct ar9170
*ar
)
838 if (!ar
->ps
.off_override
)
839 ps
= (ar
->hw
->conf
.flags
& IEEE80211_CONF_PS
);
841 if (ps
!= ar
->ps
.state
) {
842 err
= carl9170_powersave(ar
, ps
);
846 if (ar
->ps
.state
&& !ps
) {
847 ar
->ps
.sleep_ms
= jiffies_to_msecs(jiffies
-
852 ar
->ps
.last_slept
= jiffies
;
854 ar
->ps
.last_action
= jiffies
;
861 static void carl9170_ps_work(struct work_struct
*work
)
863 struct ar9170
*ar
= container_of(work
, struct ar9170
,
865 mutex_lock(&ar
->mutex
);
867 WARN_ON_ONCE(carl9170_ps_update(ar
) != 0);
868 mutex_unlock(&ar
->mutex
);
871 static int carl9170_update_survey(struct ar9170
*ar
, bool flush
, bool noise
)
876 err
= carl9170_get_noisefloor(ar
);
881 if (ar
->fw
.hw_counters
) {
882 err
= carl9170_collect_tally(ar
);
888 memset(&ar
->tally
, 0, sizeof(ar
->tally
));
893 static void carl9170_stat_work(struct work_struct
*work
)
895 struct ar9170
*ar
= container_of(work
, struct ar9170
, stat_work
.work
);
898 mutex_lock(&ar
->mutex
);
899 err
= carl9170_update_survey(ar
, false, true);
900 mutex_unlock(&ar
->mutex
);
905 ieee80211_queue_delayed_work(ar
->hw
, &ar
->stat_work
,
906 round_jiffies(msecs_to_jiffies(CARL9170_STAT_WORK
)));
909 static int carl9170_op_config(struct ieee80211_hw
*hw
, u32 changed
)
911 struct ar9170
*ar
= hw
->priv
;
914 mutex_lock(&ar
->mutex
);
915 if (changed
& IEEE80211_CONF_CHANGE_LISTEN_INTERVAL
) {
920 if (changed
& IEEE80211_CONF_CHANGE_PS
) {
921 err
= carl9170_ps_update(ar
);
926 if (changed
& IEEE80211_CONF_CHANGE_SMPS
) {
931 if (changed
& IEEE80211_CONF_CHANGE_CHANNEL
) {
932 enum nl80211_channel_type channel_type
=
933 cfg80211_get_chandef_type(&hw
->conf
.chandef
);
935 /* adjust slot time for 5 GHz */
936 err
= carl9170_set_slot_time(ar
);
940 err
= carl9170_update_survey(ar
, true, false);
944 err
= carl9170_set_channel(ar
, hw
->conf
.chandef
.chan
,
949 err
= carl9170_update_survey(ar
, false, true);
953 err
= carl9170_set_dyn_sifs_ack(ar
);
957 err
= carl9170_set_rts_cts_rate(ar
);
962 if (changed
& IEEE80211_CONF_CHANGE_POWER
) {
963 err
= carl9170_set_mac_tpc(ar
, ar
->hw
->conf
.chandef
.chan
);
969 mutex_unlock(&ar
->mutex
);
973 static u64
carl9170_op_prepare_multicast(struct ieee80211_hw
*hw
,
974 struct netdev_hw_addr_list
*mc_list
)
976 struct netdev_hw_addr
*ha
;
979 /* always get broadcast frames */
980 mchash
= 1ULL << (0xff >> 2);
982 netdev_hw_addr_list_for_each(ha
, mc_list
)
983 mchash
|= 1ULL << (ha
->addr
[5] >> 2);
988 static void carl9170_op_configure_filter(struct ieee80211_hw
*hw
,
989 unsigned int changed_flags
,
990 unsigned int *new_flags
,
993 struct ar9170
*ar
= hw
->priv
;
995 /* mask supported flags */
996 *new_flags
&= FIF_ALLMULTI
| ar
->rx_filter_caps
;
998 if (!IS_ACCEPTING_CMD(ar
))
1001 mutex_lock(&ar
->mutex
);
1003 ar
->filter_state
= *new_flags
;
1005 * We can support more by setting the sniffer bit and
1006 * then checking the error flags, later.
1009 if (*new_flags
& FIF_ALLMULTI
)
1012 if (multicast
!= ar
->cur_mc_hash
)
1013 WARN_ON(carl9170_update_multicast(ar
, multicast
));
1015 if (changed_flags
& (FIF_OTHER_BSS
| FIF_PROMISC_IN_BSS
)) {
1016 ar
->sniffer_enabled
= !!(*new_flags
&
1017 (FIF_OTHER_BSS
| FIF_PROMISC_IN_BSS
));
1019 WARN_ON(carl9170_set_operating_mode(ar
));
1022 if (ar
->fw
.rx_filter
&& changed_flags
& ar
->rx_filter_caps
) {
1025 if (!ar
->fw
.ba_filter
)
1026 rx_filter
|= CARL9170_RX_FILTER_CTL_OTHER
;
1028 if (!(*new_flags
& (FIF_FCSFAIL
| FIF_PLCPFAIL
)))
1029 rx_filter
|= CARL9170_RX_FILTER_BAD
;
1031 if (!(*new_flags
& FIF_CONTROL
))
1032 rx_filter
|= CARL9170_RX_FILTER_CTL_OTHER
;
1034 if (!(*new_flags
& FIF_PSPOLL
))
1035 rx_filter
|= CARL9170_RX_FILTER_CTL_PSPOLL
;
1037 if (!(*new_flags
& (FIF_OTHER_BSS
| FIF_PROMISC_IN_BSS
))) {
1038 rx_filter
|= CARL9170_RX_FILTER_OTHER_RA
;
1039 rx_filter
|= CARL9170_RX_FILTER_DECRY_FAIL
;
1042 WARN_ON(carl9170_rx_filter(ar
, rx_filter
));
1045 mutex_unlock(&ar
->mutex
);
1049 static void carl9170_op_bss_info_changed(struct ieee80211_hw
*hw
,
1050 struct ieee80211_vif
*vif
,
1051 struct ieee80211_bss_conf
*bss_conf
,
1054 struct ar9170
*ar
= hw
->priv
;
1055 struct ath_common
*common
= &ar
->common
;
1057 struct carl9170_vif_info
*vif_priv
;
1058 struct ieee80211_vif
*main_vif
;
1060 mutex_lock(&ar
->mutex
);
1061 vif_priv
= (void *) vif
->drv_priv
;
1062 main_vif
= carl9170_get_main_vif(ar
);
1063 if (WARN_ON(!main_vif
))
1066 if (changed
& BSS_CHANGED_BEACON_ENABLED
) {
1067 struct carl9170_vif_info
*iter
;
1070 vif_priv
->enable_beacon
= bss_conf
->enable_beacon
;
1072 list_for_each_entry_rcu(iter
, &ar
->vif_list
, list
) {
1073 if (iter
->active
&& iter
->enable_beacon
)
1079 ar
->beacon_enabled
= i
;
1082 if (changed
& BSS_CHANGED_BEACON
) {
1083 err
= carl9170_update_beacon(ar
, false);
1088 if (changed
& (BSS_CHANGED_BEACON_ENABLED
| BSS_CHANGED_BEACON
|
1089 BSS_CHANGED_BEACON_INT
)) {
1091 if (main_vif
!= vif
) {
1092 bss_conf
->beacon_int
= main_vif
->bss_conf
.beacon_int
;
1093 bss_conf
->dtim_period
= main_vif
->bss_conf
.dtim_period
;
1097 * Therefore a hard limit for the broadcast traffic should
1098 * prevent false alarms.
1100 if (vif
->type
!= NL80211_IFTYPE_STATION
&&
1101 (bss_conf
->beacon_int
* bss_conf
->dtim_period
>=
1102 (CARL9170_QUEUE_STUCK_TIMEOUT
/ 2))) {
1107 err
= carl9170_set_beacon_timers(ar
);
1112 if (changed
& BSS_CHANGED_HT
) {
1119 if (main_vif
!= vif
)
1123 * The following settings can only be changed by the
1127 if (changed
& BSS_CHANGED_BSSID
) {
1128 memcpy(common
->curbssid
, bss_conf
->bssid
, ETH_ALEN
);
1129 err
= carl9170_set_operating_mode(ar
);
1134 if (changed
& BSS_CHANGED_ASSOC
) {
1135 ar
->common
.curaid
= bss_conf
->aid
;
1136 err
= carl9170_set_beacon_timers(ar
);
1141 if (changed
& BSS_CHANGED_ERP_SLOT
) {
1142 err
= carl9170_set_slot_time(ar
);
1147 if (changed
& BSS_CHANGED_BASIC_RATES
) {
1148 err
= carl9170_set_mac_rates(ar
);
1154 WARN_ON_ONCE(err
&& IS_STARTED(ar
));
1155 mutex_unlock(&ar
->mutex
);
1158 static u64
carl9170_op_get_tsf(struct ieee80211_hw
*hw
,
1159 struct ieee80211_vif
*vif
)
1161 struct ar9170
*ar
= hw
->priv
;
1162 struct carl9170_tsf_rsp tsf
;
1165 mutex_lock(&ar
->mutex
);
1166 err
= carl9170_exec_cmd(ar
, CARL9170_CMD_READ_TSF
,
1167 0, NULL
, sizeof(tsf
), &tsf
);
1168 mutex_unlock(&ar
->mutex
);
1172 return le64_to_cpu(tsf
.tsf_64
);
1175 static int carl9170_op_set_key(struct ieee80211_hw
*hw
, enum set_key_cmd cmd
,
1176 struct ieee80211_vif
*vif
,
1177 struct ieee80211_sta
*sta
,
1178 struct ieee80211_key_conf
*key
)
1180 struct ar9170
*ar
= hw
->priv
;
1184 if (ar
->disable_offload
|| !vif
)
1187 /* Fall back to software encryption whenever the driver is connected
1188 * to more than one network.
1190 * This is very unfortunate, because some machines cannot handle
1191 * the high througput speed in 802.11n networks.
1194 if (!is_main_vif(ar
, vif
)) {
1195 mutex_lock(&ar
->mutex
);
1200 * While the hardware supports *catch-all* key, for offloading
1201 * group-key en-/de-cryption. The way of how the hardware
1202 * decides which keyId maps to which key, remains a mystery...
1204 if ((vif
->type
!= NL80211_IFTYPE_STATION
&&
1205 vif
->type
!= NL80211_IFTYPE_ADHOC
) &&
1206 !(key
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
))
1209 switch (key
->cipher
) {
1210 case WLAN_CIPHER_SUITE_WEP40
:
1211 ktype
= AR9170_ENC_ALG_WEP64
;
1213 case WLAN_CIPHER_SUITE_WEP104
:
1214 ktype
= AR9170_ENC_ALG_WEP128
;
1216 case WLAN_CIPHER_SUITE_TKIP
:
1217 ktype
= AR9170_ENC_ALG_TKIP
;
1219 case WLAN_CIPHER_SUITE_CCMP
:
1220 ktype
= AR9170_ENC_ALG_AESCCMP
;
1221 key
->flags
|= IEEE80211_KEY_FLAG_SW_MGMT_TX
;
1227 mutex_lock(&ar
->mutex
);
1228 if (cmd
== SET_KEY
) {
1229 if (!IS_STARTED(ar
)) {
1234 if (!(key
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
)) {
1237 i
= 64 + key
->keyidx
;
1239 for (i
= 0; i
< 64; i
++)
1240 if (!(ar
->usedkeys
& BIT(i
)))
1246 key
->hw_key_idx
= i
;
1248 err
= carl9170_upload_key(ar
, i
, sta
? sta
->addr
: NULL
,
1250 min_t(u8
, 16, key
->keylen
));
1254 if (key
->cipher
== WLAN_CIPHER_SUITE_TKIP
) {
1255 err
= carl9170_upload_key(ar
, i
, sta
? sta
->addr
:
1262 * hardware is not capable generating MMIC
1263 * of fragmented frames!
1265 key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_MMIC
;
1269 ar
->usedkeys
|= BIT(i
);
1271 key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_IV
;
1273 if (!IS_STARTED(ar
)) {
1274 /* The device is gone... together with the key ;-) */
1279 if (key
->hw_key_idx
< 64) {
1280 ar
->usedkeys
&= ~BIT(key
->hw_key_idx
);
1282 err
= carl9170_upload_key(ar
, key
->hw_key_idx
, NULL
,
1283 AR9170_ENC_ALG_NONE
, 0,
1288 if (key
->cipher
== WLAN_CIPHER_SUITE_TKIP
) {
1289 err
= carl9170_upload_key(ar
, key
->hw_key_idx
,
1291 AR9170_ENC_ALG_NONE
,
1299 err
= carl9170_disable_key(ar
, key
->hw_key_idx
);
1305 mutex_unlock(&ar
->mutex
);
1309 if (!ar
->rx_software_decryption
) {
1310 ar
->rx_software_decryption
= true;
1311 carl9170_set_operating_mode(ar
);
1313 mutex_unlock(&ar
->mutex
);
1317 static int carl9170_op_sta_add(struct ieee80211_hw
*hw
,
1318 struct ieee80211_vif
*vif
,
1319 struct ieee80211_sta
*sta
)
1321 struct carl9170_sta_info
*sta_info
= (void *) sta
->drv_priv
;
1324 atomic_set(&sta_info
->pending_frames
, 0);
1326 if (sta
->ht_cap
.ht_supported
) {
1327 if (sta
->ht_cap
.ampdu_density
> 6) {
1329 * HW does support 16us AMPDU density.
1330 * No HT-Xmit for station.
1336 for (i
= 0; i
< ARRAY_SIZE(sta_info
->agg
); i
++)
1337 RCU_INIT_POINTER(sta_info
->agg
[i
], NULL
);
1339 sta_info
->ampdu_max_len
= 1 << (3 + sta
->ht_cap
.ampdu_factor
);
1340 sta_info
->ht_sta
= true;
1346 static int carl9170_op_sta_remove(struct ieee80211_hw
*hw
,
1347 struct ieee80211_vif
*vif
,
1348 struct ieee80211_sta
*sta
)
1350 struct ar9170
*ar
= hw
->priv
;
1351 struct carl9170_sta_info
*sta_info
= (void *) sta
->drv_priv
;
1353 bool cleanup
= false;
1355 if (sta
->ht_cap
.ht_supported
) {
1357 sta_info
->ht_sta
= false;
1360 for (i
= 0; i
< ARRAY_SIZE(sta_info
->agg
); i
++) {
1361 struct carl9170_sta_tid
*tid_info
;
1363 tid_info
= rcu_dereference(sta_info
->agg
[i
]);
1364 RCU_INIT_POINTER(sta_info
->agg
[i
], NULL
);
1369 spin_lock_bh(&ar
->tx_ampdu_list_lock
);
1370 if (tid_info
->state
> CARL9170_TID_STATE_SHUTDOWN
)
1371 tid_info
->state
= CARL9170_TID_STATE_SHUTDOWN
;
1372 spin_unlock_bh(&ar
->tx_ampdu_list_lock
);
1378 carl9170_ampdu_gc(ar
);
1384 static int carl9170_op_conf_tx(struct ieee80211_hw
*hw
,
1385 struct ieee80211_vif
*vif
, u16 queue
,
1386 const struct ieee80211_tx_queue_params
*param
)
1388 struct ar9170
*ar
= hw
->priv
;
1391 mutex_lock(&ar
->mutex
);
1392 if (queue
< ar
->hw
->queues
) {
1393 memcpy(&ar
->edcf
[ar9170_qmap
[queue
]], param
, sizeof(*param
));
1394 ret
= carl9170_set_qos(ar
);
1399 mutex_unlock(&ar
->mutex
);
1403 static void carl9170_ampdu_work(struct work_struct
*work
)
1405 struct ar9170
*ar
= container_of(work
, struct ar9170
,
1408 if (!IS_STARTED(ar
))
1411 mutex_lock(&ar
->mutex
);
1412 carl9170_ampdu_gc(ar
);
1413 mutex_unlock(&ar
->mutex
);
1416 static int carl9170_op_ampdu_action(struct ieee80211_hw
*hw
,
1417 struct ieee80211_vif
*vif
,
1418 enum ieee80211_ampdu_mlme_action action
,
1419 struct ieee80211_sta
*sta
,
1420 u16 tid
, u16
*ssn
, u8 buf_size
)
1422 struct ar9170
*ar
= hw
->priv
;
1423 struct carl9170_sta_info
*sta_info
= (void *) sta
->drv_priv
;
1424 struct carl9170_sta_tid
*tid_info
;
1430 case IEEE80211_AMPDU_TX_START
:
1431 if (!sta_info
->ht_sta
)
1435 if (rcu_dereference(sta_info
->agg
[tid
])) {
1440 tid_info
= kzalloc(sizeof(struct carl9170_sta_tid
),
1447 tid_info
->hsn
= tid_info
->bsn
= tid_info
->snx
= (*ssn
);
1448 tid_info
->state
= CARL9170_TID_STATE_PROGRESS
;
1449 tid_info
->tid
= tid
;
1450 tid_info
->max
= sta_info
->ampdu_max_len
;
1451 tid_info
->sta
= sta
;
1452 tid_info
->vif
= vif
;
1454 INIT_LIST_HEAD(&tid_info
->list
);
1455 INIT_LIST_HEAD(&tid_info
->tmp_list
);
1456 skb_queue_head_init(&tid_info
->queue
);
1457 spin_lock_init(&tid_info
->lock
);
1459 spin_lock_bh(&ar
->tx_ampdu_list_lock
);
1460 ar
->tx_ampdu_list_len
++;
1461 list_add_tail_rcu(&tid_info
->list
, &ar
->tx_ampdu_list
);
1462 rcu_assign_pointer(sta_info
->agg
[tid
], tid_info
);
1463 spin_unlock_bh(&ar
->tx_ampdu_list_lock
);
1466 ieee80211_start_tx_ba_cb_irqsafe(vif
, sta
->addr
, tid
);
1469 case IEEE80211_AMPDU_TX_STOP_CONT
:
1470 case IEEE80211_AMPDU_TX_STOP_FLUSH
:
1471 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT
:
1473 tid_info
= rcu_dereference(sta_info
->agg
[tid
]);
1475 spin_lock_bh(&ar
->tx_ampdu_list_lock
);
1476 if (tid_info
->state
> CARL9170_TID_STATE_SHUTDOWN
)
1477 tid_info
->state
= CARL9170_TID_STATE_SHUTDOWN
;
1478 spin_unlock_bh(&ar
->tx_ampdu_list_lock
);
1481 RCU_INIT_POINTER(sta_info
->agg
[tid
], NULL
);
1484 ieee80211_stop_tx_ba_cb_irqsafe(vif
, sta
->addr
, tid
);
1485 ieee80211_queue_work(ar
->hw
, &ar
->ampdu_work
);
1488 case IEEE80211_AMPDU_TX_OPERATIONAL
:
1490 tid_info
= rcu_dereference(sta_info
->agg
[tid
]);
1492 sta_info
->stats
[tid
].clear
= true;
1493 sta_info
->stats
[tid
].req
= false;
1496 bitmap_zero(tid_info
->bitmap
, CARL9170_BAW_SIZE
);
1497 tid_info
->state
= CARL9170_TID_STATE_IDLE
;
1501 if (WARN_ON_ONCE(!tid_info
))
1506 case IEEE80211_AMPDU_RX_START
:
1507 case IEEE80211_AMPDU_RX_STOP
:
1508 /* Handled by hardware */
1518 #ifdef CONFIG_CARL9170_WPC
1519 static int carl9170_register_wps_button(struct ar9170
*ar
)
1521 struct input_dev
*input
;
1524 if (!(ar
->features
& CARL9170_WPS_BUTTON
))
1527 input
= input_allocate_device();
1531 snprintf(ar
->wps
.name
, sizeof(ar
->wps
.name
), "%s WPS Button",
1532 wiphy_name(ar
->hw
->wiphy
));
1534 snprintf(ar
->wps
.phys
, sizeof(ar
->wps
.phys
),
1535 "ieee80211/%s/input0", wiphy_name(ar
->hw
->wiphy
));
1537 input
->name
= ar
->wps
.name
;
1538 input
->phys
= ar
->wps
.phys
;
1539 input
->id
.bustype
= BUS_USB
;
1540 input
->dev
.parent
= &ar
->hw
->wiphy
->dev
;
1542 input_set_capability(input
, EV_KEY
, KEY_WPS_BUTTON
);
1544 err
= input_register_device(input
);
1546 input_free_device(input
);
1550 ar
->wps
.pbc
= input
;
1553 #endif /* CONFIG_CARL9170_WPC */
1555 #ifdef CONFIG_CARL9170_HWRNG
1556 static int carl9170_rng_get(struct ar9170
*ar
)
1559 #define RW (CARL9170_MAX_CMD_PAYLOAD_LEN / sizeof(u32))
1560 #define RB (CARL9170_MAX_CMD_PAYLOAD_LEN)
1562 static const __le32 rng_load
[RW
] = {
1563 [0 ... (RW
- 1)] = cpu_to_le32(AR9170_RAND_REG_NUM
)};
1567 unsigned int i
, off
= 0, transfer
, count
;
1570 BUILD_BUG_ON(RB
> CARL9170_MAX_CMD_PAYLOAD_LEN
);
1572 if (!IS_ACCEPTING_CMD(ar
) || !ar
->rng
.initialized
)
1575 count
= ARRAY_SIZE(ar
->rng
.cache
);
1577 err
= carl9170_exec_cmd(ar
, CARL9170_CMD_RREG
,
1578 RB
, (u8
*) rng_load
,
1583 transfer
= min_t(unsigned int, count
, RW
);
1584 for (i
= 0; i
< transfer
; i
++)
1585 ar
->rng
.cache
[off
+ i
] = buf
[i
];
1591 ar
->rng
.cache_idx
= 0;
1598 static int carl9170_rng_read(struct hwrng
*rng
, u32
*data
)
1600 struct ar9170
*ar
= (struct ar9170
*)rng
->priv
;
1603 mutex_lock(&ar
->mutex
);
1604 if (ar
->rng
.cache_idx
>= ARRAY_SIZE(ar
->rng
.cache
)) {
1605 ret
= carl9170_rng_get(ar
);
1607 mutex_unlock(&ar
->mutex
);
1612 *data
= ar
->rng
.cache
[ar
->rng
.cache_idx
++];
1613 mutex_unlock(&ar
->mutex
);
1618 static void carl9170_unregister_hwrng(struct ar9170
*ar
)
1620 if (ar
->rng
.initialized
) {
1621 hwrng_unregister(&ar
->rng
.rng
);
1622 ar
->rng
.initialized
= false;
1626 static int carl9170_register_hwrng(struct ar9170
*ar
)
1630 snprintf(ar
->rng
.name
, ARRAY_SIZE(ar
->rng
.name
),
1631 "%s_%s", KBUILD_MODNAME
, wiphy_name(ar
->hw
->wiphy
));
1632 ar
->rng
.rng
.name
= ar
->rng
.name
;
1633 ar
->rng
.rng
.data_read
= carl9170_rng_read
;
1634 ar
->rng
.rng
.priv
= (unsigned long)ar
;
1636 if (WARN_ON(ar
->rng
.initialized
))
1639 err
= hwrng_register(&ar
->rng
.rng
);
1641 dev_err(&ar
->udev
->dev
, "Failed to register the random "
1642 "number generator (%d)\n", err
);
1646 ar
->rng
.initialized
= true;
1648 err
= carl9170_rng_get(ar
);
1650 carl9170_unregister_hwrng(ar
);
1656 #endif /* CONFIG_CARL9170_HWRNG */
1658 static int carl9170_op_get_survey(struct ieee80211_hw
*hw
, int idx
,
1659 struct survey_info
*survey
)
1661 struct ar9170
*ar
= hw
->priv
;
1662 struct ieee80211_channel
*chan
;
1663 struct ieee80211_supported_band
*band
;
1670 if (idx
== chan
->hw_value
) {
1671 mutex_lock(&ar
->mutex
);
1672 err
= carl9170_update_survey(ar
, false, true);
1673 mutex_unlock(&ar
->mutex
);
1678 for (b
= 0; b
< IEEE80211_NUM_BANDS
; b
++) {
1679 band
= ar
->hw
->wiphy
->bands
[b
];
1684 for (i
= 0; i
< band
->n_channels
; i
++) {
1685 if (band
->channels
[i
].hw_value
== idx
) {
1686 chan
= &band
->channels
[i
];
1694 memcpy(survey
, &ar
->survey
[idx
], sizeof(*survey
));
1696 survey
->channel
= chan
;
1697 survey
->filled
= SURVEY_INFO_NOISE_DBM
;
1699 if (ar
->channel
== chan
)
1700 survey
->filled
|= SURVEY_INFO_IN_USE
;
1702 if (ar
->fw
.hw_counters
) {
1703 survey
->filled
|= SURVEY_INFO_CHANNEL_TIME
|
1704 SURVEY_INFO_CHANNEL_TIME_BUSY
|
1705 SURVEY_INFO_CHANNEL_TIME_TX
;
1711 static void carl9170_op_flush(struct ieee80211_hw
*hw
, u32 queues
, bool drop
)
1713 struct ar9170
*ar
= hw
->priv
;
1716 mutex_lock(&ar
->mutex
);
1717 for_each_set_bit(vid
, &ar
->vif_bitmap
, ar
->fw
.vif_num
)
1718 carl9170_flush_cab(ar
, vid
);
1720 carl9170_flush(ar
, drop
);
1721 mutex_unlock(&ar
->mutex
);
1724 static int carl9170_op_get_stats(struct ieee80211_hw
*hw
,
1725 struct ieee80211_low_level_stats
*stats
)
1727 struct ar9170
*ar
= hw
->priv
;
1729 memset(stats
, 0, sizeof(*stats
));
1730 stats
->dot11ACKFailureCount
= ar
->tx_ack_failures
;
1731 stats
->dot11FCSErrorCount
= ar
->tx_fcs_errors
;
1735 static void carl9170_op_sta_notify(struct ieee80211_hw
*hw
,
1736 struct ieee80211_vif
*vif
,
1737 enum sta_notify_cmd cmd
,
1738 struct ieee80211_sta
*sta
)
1740 struct carl9170_sta_info
*sta_info
= (void *) sta
->drv_priv
;
1743 case STA_NOTIFY_SLEEP
:
1744 sta_info
->sleeping
= true;
1745 if (atomic_read(&sta_info
->pending_frames
))
1746 ieee80211_sta_block_awake(hw
, sta
, true);
1749 case STA_NOTIFY_AWAKE
:
1750 sta_info
->sleeping
= false;
1755 static bool carl9170_tx_frames_pending(struct ieee80211_hw
*hw
)
1757 struct ar9170
*ar
= hw
->priv
;
1759 return !!atomic_read(&ar
->tx_total_queued
);
1762 static const struct ieee80211_ops carl9170_ops
= {
1763 .start
= carl9170_op_start
,
1764 .stop
= carl9170_op_stop
,
1765 .tx
= carl9170_op_tx
,
1766 .flush
= carl9170_op_flush
,
1767 .add_interface
= carl9170_op_add_interface
,
1768 .remove_interface
= carl9170_op_remove_interface
,
1769 .config
= carl9170_op_config
,
1770 .prepare_multicast
= carl9170_op_prepare_multicast
,
1771 .configure_filter
= carl9170_op_configure_filter
,
1772 .conf_tx
= carl9170_op_conf_tx
,
1773 .bss_info_changed
= carl9170_op_bss_info_changed
,
1774 .get_tsf
= carl9170_op_get_tsf
,
1775 .set_key
= carl9170_op_set_key
,
1776 .sta_add
= carl9170_op_sta_add
,
1777 .sta_remove
= carl9170_op_sta_remove
,
1778 .sta_notify
= carl9170_op_sta_notify
,
1779 .get_survey
= carl9170_op_get_survey
,
1780 .get_stats
= carl9170_op_get_stats
,
1781 .ampdu_action
= carl9170_op_ampdu_action
,
1782 .tx_frames_pending
= carl9170_tx_frames_pending
,
1785 void *carl9170_alloc(size_t priv_size
)
1787 struct ieee80211_hw
*hw
;
1789 struct sk_buff
*skb
;
1793 * this buffer is used for rx stream reconstruction.
1794 * Under heavy load this device (or the transport layer?)
1795 * tends to split the streams into separate rx descriptors.
1798 skb
= __dev_alloc_skb(AR9170_RX_STREAM_MAX_SIZE
, GFP_KERNEL
);
1802 hw
= ieee80211_alloc_hw(priv_size
, &carl9170_ops
);
1808 ar
->rx_failover
= skb
;
1810 memset(&ar
->rx_plcp
, 0, sizeof(struct ar9170_rx_head
));
1811 ar
->rx_has_plcp
= false;
1814 * Here's a hidden pitfall!
1816 * All 4 AC queues work perfectly well under _legacy_ operation.
1817 * However as soon as aggregation is enabled, the traffic flow
1818 * gets very bumpy. Therefore we have to _switch_ to a
1819 * software AC with a single HW queue.
1821 hw
->queues
= __AR9170_NUM_TXQ
;
1823 mutex_init(&ar
->mutex
);
1824 spin_lock_init(&ar
->beacon_lock
);
1825 spin_lock_init(&ar
->cmd_lock
);
1826 spin_lock_init(&ar
->tx_stats_lock
);
1827 spin_lock_init(&ar
->tx_ampdu_list_lock
);
1828 spin_lock_init(&ar
->mem_lock
);
1829 spin_lock_init(&ar
->state_lock
);
1830 atomic_set(&ar
->pending_restarts
, 0);
1832 for (i
= 0; i
< ar
->hw
->queues
; i
++) {
1833 skb_queue_head_init(&ar
->tx_status
[i
]);
1834 skb_queue_head_init(&ar
->tx_pending
[i
]);
1836 INIT_LIST_HEAD(&ar
->bar_list
[i
]);
1837 spin_lock_init(&ar
->bar_list_lock
[i
]);
1839 INIT_WORK(&ar
->ps_work
, carl9170_ps_work
);
1840 INIT_WORK(&ar
->ping_work
, carl9170_ping_work
);
1841 INIT_WORK(&ar
->restart_work
, carl9170_restart_work
);
1842 INIT_WORK(&ar
->ampdu_work
, carl9170_ampdu_work
);
1843 INIT_DELAYED_WORK(&ar
->stat_work
, carl9170_stat_work
);
1844 INIT_DELAYED_WORK(&ar
->tx_janitor
, carl9170_tx_janitor
);
1845 INIT_LIST_HEAD(&ar
->tx_ampdu_list
);
1846 rcu_assign_pointer(ar
->tx_ampdu_iter
,
1847 (struct carl9170_sta_tid
*) &ar
->tx_ampdu_list
);
1849 bitmap_zero(&ar
->vif_bitmap
, ar
->fw
.vif_num
);
1850 INIT_LIST_HEAD(&ar
->vif_list
);
1851 init_completion(&ar
->tx_flush
);
1853 /* firmware decides which modes we support */
1854 hw
->wiphy
->interface_modes
= 0;
1856 hw
->flags
|= IEEE80211_HW_RX_INCLUDES_FCS
|
1857 IEEE80211_HW_MFP_CAPABLE
|
1858 IEEE80211_HW_REPORTS_TX_ACK_STATUS
|
1859 IEEE80211_HW_SUPPORTS_PS
|
1860 IEEE80211_HW_PS_NULLFUNC_STACK
|
1861 IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC
|
1862 IEEE80211_HW_SUPPORTS_RC_TABLE
|
1863 IEEE80211_HW_SIGNAL_DBM
|
1864 IEEE80211_HW_SUPPORTS_HT_CCK_RATES
;
1866 if (!modparam_noht
) {
1868 * see the comment above, why we allow the user
1869 * to disable HT by a module parameter.
1871 hw
->flags
|= IEEE80211_HW_AMPDU_AGGREGATION
;
1874 hw
->extra_tx_headroom
= sizeof(struct _carl9170_tx_superframe
);
1875 hw
->sta_data_size
= sizeof(struct carl9170_sta_info
);
1876 hw
->vif_data_size
= sizeof(struct carl9170_vif_info
);
1878 hw
->max_rates
= CARL9170_TX_MAX_RATES
;
1879 hw
->max_rate_tries
= CARL9170_TX_USER_RATE_TRIES
;
1881 for (i
= 0; i
< ARRAY_SIZE(ar
->noise
); i
++)
1882 ar
->noise
[i
] = -95; /* ATH_DEFAULT_NOISE_FLOOR */
1888 return ERR_PTR(-ENOMEM
);
1891 static int carl9170_read_eeprom(struct ar9170
*ar
)
1893 #define RW 8 /* number of words to read at once */
1894 #define RB (sizeof(u32) * RW)
1895 u8
*eeprom
= (void *)&ar
->eeprom
;
1899 BUILD_BUG_ON(sizeof(ar
->eeprom
) & 3);
1901 BUILD_BUG_ON(RB
> CARL9170_MAX_CMD_LEN
- 4);
1903 /* don't want to handle trailing remains */
1904 BUILD_BUG_ON(sizeof(ar
->eeprom
) % RB
);
1907 for (i
= 0; i
< sizeof(ar
->eeprom
) / RB
; i
++) {
1908 for (j
= 0; j
< RW
; j
++)
1909 offsets
[j
] = cpu_to_le32(AR9170_EEPROM_START
+
1912 err
= carl9170_exec_cmd(ar
, CARL9170_CMD_RREG
,
1913 RB
, (u8
*) &offsets
,
1914 RB
, eeprom
+ RB
* i
);
1924 static int carl9170_parse_eeprom(struct ar9170
*ar
)
1926 struct ath_regulatory
*regulatory
= &ar
->common
.regulatory
;
1927 unsigned int rx_streams
, tx_streams
, tx_params
= 0;
1931 if (ar
->eeprom
.length
== cpu_to_le16(0xffff))
1934 rx_streams
= hweight8(ar
->eeprom
.rx_mask
);
1935 tx_streams
= hweight8(ar
->eeprom
.tx_mask
);
1937 if (rx_streams
!= tx_streams
) {
1938 tx_params
= IEEE80211_HT_MCS_TX_RX_DIFF
;
1940 WARN_ON(!(tx_streams
>= 1 && tx_streams
<=
1941 IEEE80211_HT_MCS_TX_MAX_STREAMS
));
1943 tx_params
= (tx_streams
- 1) <<
1944 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT
;
1946 carl9170_band_2GHz
.ht_cap
.mcs
.tx_params
|= tx_params
;
1947 carl9170_band_5GHz
.ht_cap
.mcs
.tx_params
|= tx_params
;
1950 if (ar
->eeprom
.operating_flags
& AR9170_OPFLAG_2GHZ
) {
1951 ar
->hw
->wiphy
->bands
[IEEE80211_BAND_2GHZ
] =
1952 &carl9170_band_2GHz
;
1953 chans
+= carl9170_band_2GHz
.n_channels
;
1956 if (ar
->eeprom
.operating_flags
& AR9170_OPFLAG_5GHZ
) {
1957 ar
->hw
->wiphy
->bands
[IEEE80211_BAND_5GHZ
] =
1958 &carl9170_band_5GHz
;
1959 chans
+= carl9170_band_5GHz
.n_channels
;
1966 ar
->survey
= kzalloc(sizeof(struct survey_info
) * chans
, GFP_KERNEL
);
1969 ar
->num_channels
= chans
;
1972 * I measured this, a bandswitch takes roughly
1973 * 135 ms and a frequency switch about 80.
1975 * FIXME: measure these values again once EEPROM settings
1976 * are used, that will influence them!
1979 ar
->hw
->channel_change_time
= 135 * 1000;
1981 ar
->hw
->channel_change_time
= 80 * 1000;
1983 regulatory
->current_rd
= le16_to_cpu(ar
->eeprom
.reg_domain
[0]);
1985 /* second part of wiphy init */
1986 SET_IEEE80211_PERM_ADDR(ar
->hw
, ar
->eeprom
.mac_address
);
1991 static void carl9170_reg_notifier(struct wiphy
*wiphy
,
1992 struct regulatory_request
*request
)
1994 struct ieee80211_hw
*hw
= wiphy_to_ieee80211_hw(wiphy
);
1995 struct ar9170
*ar
= hw
->priv
;
1997 ath_reg_notifier_apply(wiphy
, request
, &ar
->common
.regulatory
);
2000 int carl9170_register(struct ar9170
*ar
)
2002 struct ath_regulatory
*regulatory
= &ar
->common
.regulatory
;
2005 if (WARN_ON(ar
->mem_bitmap
))
2008 ar
->mem_bitmap
= kzalloc(roundup(ar
->fw
.mem_blocks
, BITS_PER_LONG
) *
2009 sizeof(unsigned long), GFP_KERNEL
);
2011 if (!ar
->mem_bitmap
)
2014 /* try to read EEPROM, init MAC addr */
2015 err
= carl9170_read_eeprom(ar
);
2019 err
= carl9170_parse_eeprom(ar
);
2023 err
= ath_regd_init(regulatory
, ar
->hw
->wiphy
,
2024 carl9170_reg_notifier
);
2028 if (modparam_noht
) {
2029 carl9170_band_2GHz
.ht_cap
.ht_supported
= false;
2030 carl9170_band_5GHz
.ht_cap
.ht_supported
= false;
2033 for (i
= 0; i
< ar
->fw
.vif_num
; i
++) {
2034 ar
->vif_priv
[i
].id
= i
;
2035 ar
->vif_priv
[i
].vif
= NULL
;
2038 err
= ieee80211_register_hw(ar
->hw
);
2042 /* mac80211 interface is now registered */
2043 ar
->registered
= true;
2045 if (!ath_is_world_regd(regulatory
))
2046 regulatory_hint(ar
->hw
->wiphy
, regulatory
->alpha2
);
2048 #ifdef CONFIG_CARL9170_DEBUGFS
2049 carl9170_debugfs_register(ar
);
2050 #endif /* CONFIG_CARL9170_DEBUGFS */
2052 err
= carl9170_led_init(ar
);
2056 #ifdef CONFIG_CARL9170_LEDS
2057 err
= carl9170_led_register(ar
);
2060 #endif /* CONFIG_CARL9170_LEDS */
2062 #ifdef CONFIG_CARL9170_WPC
2063 err
= carl9170_register_wps_button(ar
);
2066 #endif /* CONFIG_CARL9170_WPC */
2068 #ifdef CONFIG_CARL9170_HWRNG
2069 err
= carl9170_register_hwrng(ar
);
2072 #endif /* CONFIG_CARL9170_HWRNG */
2074 dev_info(&ar
->udev
->dev
, "Atheros AR9170 is registered as '%s'\n",
2075 wiphy_name(ar
->hw
->wiphy
));
2080 carl9170_unregister(ar
);
2084 void carl9170_unregister(struct ar9170
*ar
)
2086 if (!ar
->registered
)
2089 ar
->registered
= false;
2091 #ifdef CONFIG_CARL9170_LEDS
2092 carl9170_led_unregister(ar
);
2093 #endif /* CONFIG_CARL9170_LEDS */
2095 #ifdef CONFIG_CARL9170_DEBUGFS
2096 carl9170_debugfs_unregister(ar
);
2097 #endif /* CONFIG_CARL9170_DEBUGFS */
2099 #ifdef CONFIG_CARL9170_WPC
2101 input_unregister_device(ar
->wps
.pbc
);
2104 #endif /* CONFIG_CARL9170_WPC */
2106 #ifdef CONFIG_CARL9170_HWRNG
2107 carl9170_unregister_hwrng(ar
);
2108 #endif /* CONFIG_CARL9170_HWRNG */
2110 carl9170_cancel_worker(ar
);
2111 cancel_work_sync(&ar
->restart_work
);
2113 ieee80211_unregister_hw(ar
->hw
);
2116 void carl9170_free(struct ar9170
*ar
)
2118 WARN_ON(ar
->registered
);
2119 WARN_ON(IS_INITIALIZED(ar
));
2121 kfree_skb(ar
->rx_failover
);
2122 ar
->rx_failover
= NULL
;
2124 kfree(ar
->mem_bitmap
);
2125 ar
->mem_bitmap
= NULL
;
2130 mutex_destroy(&ar
->mutex
);
2132 ieee80211_free_hw(ar
->hw
);