2 * Atheros AR9170 driver
4 * mac80211 interaction code
6 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
7 * Copyright 2009, Christian Lamparter <chunkeey@web.de>
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 <net/mac80211.h>
49 static int modparam_nohwcrypt
;
50 module_param_named(nohwcrypt
, modparam_nohwcrypt
, bool, S_IRUGO
);
51 MODULE_PARM_DESC(nohwcrypt
, "Disable hardware encryption.");
53 static int modparam_ht
;
54 module_param_named(ht
, modparam_ht
, bool, S_IRUGO
);
55 MODULE_PARM_DESC(ht
, "enable MPDU aggregation.");
57 #define RATE(_bitrate, _hw_rate, _txpidx, _flags) { \
58 .bitrate = (_bitrate), \
60 .hw_value = (_hw_rate) | (_txpidx) << 4, \
63 static struct ieee80211_rate __ar9170_ratetable
[] = {
65 RATE(20, 1, 1, IEEE80211_RATE_SHORT_PREAMBLE
),
66 RATE(55, 2, 2, IEEE80211_RATE_SHORT_PREAMBLE
),
67 RATE(110, 3, 3, IEEE80211_RATE_SHORT_PREAMBLE
),
79 #define ar9170_g_ratetable (__ar9170_ratetable + 0)
80 #define ar9170_g_ratetable_size 12
81 #define ar9170_a_ratetable (__ar9170_ratetable + 4)
82 #define ar9170_a_ratetable_size 8
85 * NB: The hw_value is used as an index into the ar9170_phy_freq_params
86 * array in phy.c so that we don't have to do frequency lookups!
88 #define CHAN(_freq, _idx) { \
89 .center_freq = (_freq), \
91 .max_power = 18, /* XXX */ \
94 static struct ieee80211_channel ar9170_2ghz_chantable
[] = {
111 static struct ieee80211_channel ar9170_5ghz_chantable
[] = {
150 #define AR9170_HT_CAP \
152 .ht_supported = true, \
153 .cap = IEEE80211_HT_CAP_MAX_AMSDU | \
154 IEEE80211_HT_CAP_SUP_WIDTH_20_40 | \
155 IEEE80211_HT_CAP_SGI_40 | \
156 IEEE80211_HT_CAP_GRN_FLD | \
157 IEEE80211_HT_CAP_DSSSCCK40 | \
158 IEEE80211_HT_CAP_SM_PS, \
160 .ampdu_density = 6, \
162 .rx_mask = { 0xff, 0xff, 0, 0, 0x1, 0, 0, 0, 0, 0, }, \
163 .rx_highest = cpu_to_le16(300), \
164 .tx_params = IEEE80211_HT_MCS_TX_DEFINED, \
168 static struct ieee80211_supported_band ar9170_band_2GHz
= {
169 .channels
= ar9170_2ghz_chantable
,
170 .n_channels
= ARRAY_SIZE(ar9170_2ghz_chantable
),
171 .bitrates
= ar9170_g_ratetable
,
172 .n_bitrates
= ar9170_g_ratetable_size
,
173 .ht_cap
= AR9170_HT_CAP
,
176 static struct ieee80211_supported_band ar9170_band_5GHz
= {
177 .channels
= ar9170_5ghz_chantable
,
178 .n_channels
= ARRAY_SIZE(ar9170_5ghz_chantable
),
179 .bitrates
= ar9170_a_ratetable
,
180 .n_bitrates
= ar9170_a_ratetable_size
,
181 .ht_cap
= AR9170_HT_CAP
,
184 static void ar9170_tx(struct ar9170
*ar
);
185 static bool ar9170_tx_ampdu(struct ar9170
*ar
);
187 static inline u16
ar9170_get_seq_h(struct ieee80211_hdr
*hdr
)
189 return le16_to_cpu(hdr
->seq_ctrl
) >> 4;
192 static inline u16
ar9170_get_seq(struct sk_buff
*skb
)
194 struct ar9170_tx_control
*txc
= (void *) skb
->data
;
195 return ar9170_get_seq_h((void *) txc
->frame_data
);
198 static inline u16
ar9170_get_tid_h(struct ieee80211_hdr
*hdr
)
200 return (ieee80211_get_qos_ctl(hdr
))[0] & IEEE80211_QOS_CTL_TID_MASK
;
203 static inline u16
ar9170_get_tid(struct sk_buff
*skb
)
205 struct ar9170_tx_control
*txc
= (void *) skb
->data
;
206 return ar9170_get_tid_h((struct ieee80211_hdr
*) txc
->frame_data
);
209 #define GET_NEXT_SEQ(seq) ((seq + 1) & 0x0fff)
210 #define GET_NEXT_SEQ_FROM_SKB(skb) (GET_NEXT_SEQ(ar9170_get_seq(skb)))
212 #if (defined AR9170_QUEUE_DEBUG) || (defined AR9170_TXAGG_DEBUG)
213 static void ar9170_print_txheader(struct ar9170
*ar
, struct sk_buff
*skb
)
215 struct ar9170_tx_control
*txc
= (void *) skb
->data
;
216 struct ieee80211_tx_info
*txinfo
= IEEE80211_SKB_CB(skb
);
217 struct ar9170_tx_info
*arinfo
= (void *) txinfo
->rate_driver_data
;
218 struct ieee80211_hdr
*hdr
= (void *) txc
->frame_data
;
220 printk(KERN_DEBUG
"%s: => FRAME [skb:%p, q:%d, DA:[%pM] s:%d "
221 "mac_ctrl:%04x, phy_ctrl:%08x, timeout:[%d ms]]\n",
222 wiphy_name(ar
->hw
->wiphy
), skb
, skb_get_queue_mapping(skb
),
223 ieee80211_get_DA(hdr
), ar9170_get_seq_h(hdr
),
224 le16_to_cpu(txc
->mac_control
), le32_to_cpu(txc
->phy_control
),
225 jiffies_to_msecs(arinfo
->timeout
- jiffies
));
228 static void __ar9170_dump_txqueue(struct ar9170
*ar
,
229 struct sk_buff_head
*queue
)
234 printk(KERN_DEBUG
"---[ cut here ]---\n");
235 printk(KERN_DEBUG
"%s: %d entries in queue.\n",
236 wiphy_name(ar
->hw
->wiphy
), skb_queue_len(queue
));
238 skb_queue_walk(queue
, skb
) {
239 printk(KERN_DEBUG
"index:%d => \n", i
++);
240 ar9170_print_txheader(ar
, skb
);
242 if (i
!= skb_queue_len(queue
))
243 printk(KERN_DEBUG
"WARNING: queue frame counter "
244 "mismatch %d != %d\n", skb_queue_len(queue
), i
);
245 printk(KERN_DEBUG
"---[ end ]---\n");
247 #endif /* AR9170_QUEUE_DEBUG || AR9170_TXAGG_DEBUG */
249 #ifdef AR9170_QUEUE_DEBUG
250 static void ar9170_dump_txqueue(struct ar9170
*ar
,
251 struct sk_buff_head
*queue
)
255 spin_lock_irqsave(&queue
->lock
, flags
);
256 __ar9170_dump_txqueue(ar
, queue
);
257 spin_unlock_irqrestore(&queue
->lock
, flags
);
259 #endif /* AR9170_QUEUE_DEBUG */
261 #ifdef AR9170_QUEUE_STOP_DEBUG
262 static void __ar9170_dump_txstats(struct ar9170
*ar
)
266 printk(KERN_DEBUG
"%s: QoS queue stats\n",
267 wiphy_name(ar
->hw
->wiphy
));
269 for (i
= 0; i
< __AR9170_NUM_TXQ
; i
++)
270 printk(KERN_DEBUG
"%s: queue:%d limit:%d len:%d waitack:%d "
271 " stopped:%d\n", wiphy_name(ar
->hw
->wiphy
), i
,
272 ar
->tx_stats
[i
].limit
, ar
->tx_stats
[i
].len
,
273 skb_queue_len(&ar
->tx_status
[i
]),
274 ieee80211_queue_stopped(ar
->hw
, i
));
276 #endif /* AR9170_QUEUE_STOP_DEBUG */
278 #ifdef AR9170_TXAGG_DEBUG
279 static void ar9170_dump_tx_status_ampdu(struct ar9170
*ar
)
283 spin_lock_irqsave(&ar
->tx_status_ampdu
.lock
, flags
);
284 printk(KERN_DEBUG
"%s: A-MPDU tx_status queue => \n",
285 wiphy_name(ar
->hw
->wiphy
));
286 __ar9170_dump_txqueue(ar
, &ar
->tx_status_ampdu
);
287 spin_unlock_irqrestore(&ar
->tx_status_ampdu
.lock
, flags
);
290 #endif /* AR9170_TXAGG_DEBUG */
292 /* caller must guarantee exclusive access for _bin_ queue. */
293 static void ar9170_recycle_expired(struct ar9170
*ar
,
294 struct sk_buff_head
*queue
,
295 struct sk_buff_head
*bin
)
297 struct sk_buff
*skb
, *old
= NULL
;
300 spin_lock_irqsave(&queue
->lock
, flags
);
301 while ((skb
= skb_peek(queue
))) {
302 struct ieee80211_tx_info
*txinfo
;
303 struct ar9170_tx_info
*arinfo
;
305 txinfo
= IEEE80211_SKB_CB(skb
);
306 arinfo
= (void *) txinfo
->rate_driver_data
;
308 if (time_is_before_jiffies(arinfo
->timeout
)) {
309 #ifdef AR9170_QUEUE_DEBUG
310 printk(KERN_DEBUG
"%s: [%ld > %ld] frame expired => "
311 "recycle \n", wiphy_name(ar
->hw
->wiphy
),
312 jiffies
, arinfo
->timeout
);
313 ar9170_print_txheader(ar
, skb
);
314 #endif /* AR9170_QUEUE_DEBUG */
315 __skb_unlink(skb
, queue
);
316 __skb_queue_tail(bin
, skb
);
321 if (unlikely(old
== skb
)) {
322 /* bail out - queue is shot. */
329 spin_unlock_irqrestore(&queue
->lock
, flags
);
332 static void ar9170_tx_status(struct ar9170
*ar
, struct sk_buff
*skb
,
335 struct ieee80211_tx_info
*txinfo
;
336 unsigned int retries
= 0;
338 txinfo
= IEEE80211_SKB_CB(skb
);
339 ieee80211_tx_info_clear_status(txinfo
);
342 case AR9170_TX_STATUS_RETRY
:
344 case AR9170_TX_STATUS_COMPLETE
:
345 txinfo
->flags
|= IEEE80211_TX_STAT_ACK
;
348 case AR9170_TX_STATUS_FAILED
:
349 retries
= ar
->hw
->conf
.long_frame_max_tx_count
;
353 printk(KERN_ERR
"%s: invalid tx_status response (%x).\n",
354 wiphy_name(ar
->hw
->wiphy
), tx_status
);
358 txinfo
->status
.rates
[0].count
= retries
+ 1;
359 skb_pull(skb
, sizeof(struct ar9170_tx_control
));
360 ieee80211_tx_status_irqsafe(ar
->hw
, skb
);
363 static void ar9170_tx_fake_ampdu_status(struct ar9170
*ar
)
365 struct sk_buff_head success
;
368 unsigned long queue_bitmap
= 0;
370 skb_queue_head_init(&success
);
372 while (skb_queue_len(&ar
->tx_status_ampdu
) > AR9170_NUM_TX_STATUS
)
373 __skb_queue_tail(&success
, skb_dequeue(&ar
->tx_status_ampdu
));
375 ar9170_recycle_expired(ar
, &ar
->tx_status_ampdu
, &success
);
377 #ifdef AR9170_TXAGG_DEBUG
378 printk(KERN_DEBUG
"%s: collected %d A-MPDU frames.\n",
379 wiphy_name(ar
->hw
->wiphy
), skb_queue_len(&success
));
380 __ar9170_dump_txqueue(ar
, &success
);
381 #endif /* AR9170_TXAGG_DEBUG */
383 while ((skb
= __skb_dequeue(&success
))) {
384 struct ieee80211_tx_info
*txinfo
;
386 queue_bitmap
|= BIT(skb_get_queue_mapping(skb
));
388 txinfo
= IEEE80211_SKB_CB(skb
);
389 ieee80211_tx_info_clear_status(txinfo
);
391 txinfo
->flags
|= IEEE80211_TX_STAT_ACK
;
392 txinfo
->status
.rates
[0].count
= 1;
394 skb_pull(skb
, sizeof(struct ar9170_tx_control
));
395 ieee80211_tx_status_irqsafe(ar
->hw
, skb
);
398 for_each_set_bit(i
, &queue_bitmap
, BITS_PER_BYTE
) {
399 #ifdef AR9170_QUEUE_STOP_DEBUG
400 printk(KERN_DEBUG
"%s: wake queue %d\n",
401 wiphy_name(ar
->hw
->wiphy
), i
);
402 __ar9170_dump_txstats(ar
);
403 #endif /* AR9170_QUEUE_STOP_DEBUG */
404 ieee80211_wake_queue(ar
->hw
, i
);
411 static void ar9170_tx_ampdu_callback(struct ar9170
*ar
, struct sk_buff
*skb
)
413 struct ieee80211_tx_info
*txinfo
= IEEE80211_SKB_CB(skb
);
414 struct ar9170_tx_info
*arinfo
= (void *) txinfo
->rate_driver_data
;
416 arinfo
->timeout
= jiffies
+
417 msecs_to_jiffies(AR9170_BA_TIMEOUT
);
419 skb_queue_tail(&ar
->tx_status_ampdu
, skb
);
420 ar9170_tx_fake_ampdu_status(ar
);
422 if (atomic_dec_and_test(&ar
->tx_ampdu_pending
) &&
423 !list_empty(&ar
->tx_ampdu_list
))
427 void ar9170_tx_callback(struct ar9170
*ar
, struct sk_buff
*skb
)
429 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
430 struct ar9170_tx_info
*arinfo
= (void *) info
->rate_driver_data
;
431 unsigned int queue
= skb_get_queue_mapping(skb
);
434 spin_lock_irqsave(&ar
->tx_stats_lock
, flags
);
435 ar
->tx_stats
[queue
].len
--;
437 if (ar
->tx_stats
[queue
].len
< AR9170_NUM_TX_LIMIT_SOFT
) {
438 #ifdef AR9170_QUEUE_STOP_DEBUG
439 printk(KERN_DEBUG
"%s: wake queue %d\n",
440 wiphy_name(ar
->hw
->wiphy
), queue
);
441 __ar9170_dump_txstats(ar
);
442 #endif /* AR9170_QUEUE_STOP_DEBUG */
443 ieee80211_wake_queue(ar
->hw
, queue
);
445 spin_unlock_irqrestore(&ar
->tx_stats_lock
, flags
);
447 if (info
->flags
& IEEE80211_TX_CTL_NO_ACK
) {
448 ar9170_tx_status(ar
, skb
, AR9170_TX_STATUS_FAILED
);
450 if (info
->flags
& IEEE80211_TX_CTL_AMPDU
) {
451 ar9170_tx_ampdu_callback(ar
, skb
);
453 arinfo
->timeout
= jiffies
+
454 msecs_to_jiffies(AR9170_TX_TIMEOUT
);
456 skb_queue_tail(&ar
->tx_status
[queue
], skb
);
460 if (!ar
->tx_stats
[queue
].len
&&
461 !skb_queue_empty(&ar
->tx_pending
[queue
])) {
466 static struct sk_buff
*ar9170_get_queued_skb(struct ar9170
*ar
,
468 struct sk_buff_head
*queue
,
475 * Unfortunately, the firmware does not tell to which (queued) frame
476 * this transmission status report belongs to.
478 * So we have to make risky guesses - with the scarce information
479 * the firmware provided (-> destination MAC, and phy_control) -
480 * and hope that we picked the right one...
483 spin_lock_irqsave(&queue
->lock
, flags
);
484 skb_queue_walk(queue
, skb
) {
485 struct ar9170_tx_control
*txc
= (void *) skb
->data
;
486 struct ieee80211_hdr
*hdr
= (void *) txc
->frame_data
;
489 if (mac
&& compare_ether_addr(ieee80211_get_DA(hdr
), mac
)) {
490 #ifdef AR9170_QUEUE_DEBUG
491 printk(KERN_DEBUG
"%s: skip frame => DA %pM != %pM\n",
492 wiphy_name(ar
->hw
->wiphy
), mac
,
493 ieee80211_get_DA(hdr
));
494 ar9170_print_txheader(ar
, skb
);
495 #endif /* AR9170_QUEUE_DEBUG */
499 r
= (le32_to_cpu(txc
->phy_control
) & AR9170_TX_PHY_MCS_MASK
) >>
500 AR9170_TX_PHY_MCS_SHIFT
;
502 if ((rate
!= AR9170_TX_INVALID_RATE
) && (r
!= rate
)) {
503 #ifdef AR9170_QUEUE_DEBUG
504 printk(KERN_DEBUG
"%s: skip frame => rate %d != %d\n",
505 wiphy_name(ar
->hw
->wiphy
), rate
, r
);
506 ar9170_print_txheader(ar
, skb
);
507 #endif /* AR9170_QUEUE_DEBUG */
511 __skb_unlink(skb
, queue
);
512 spin_unlock_irqrestore(&queue
->lock
, flags
);
516 #ifdef AR9170_QUEUE_DEBUG
517 printk(KERN_ERR
"%s: ESS:[%pM] does not have any "
518 "outstanding frames in queue.\n",
519 wiphy_name(ar
->hw
->wiphy
), mac
);
520 __ar9170_dump_txqueue(ar
, queue
);
521 #endif /* AR9170_QUEUE_DEBUG */
522 spin_unlock_irqrestore(&queue
->lock
, flags
);
527 static void ar9170_handle_block_ack(struct ar9170
*ar
, u16 count
, u16 r
)
530 struct ieee80211_tx_info
*txinfo
;
533 skb
= ar9170_get_queued_skb(ar
, NULL
, &ar
->tx_status_ampdu
, r
);
537 txinfo
= IEEE80211_SKB_CB(skb
);
538 ieee80211_tx_info_clear_status(txinfo
);
540 /* FIXME: maybe more ? */
541 txinfo
->status
.rates
[0].count
= 1;
543 skb_pull(skb
, sizeof(struct ar9170_tx_control
));
544 ieee80211_tx_status_irqsafe(ar
->hw
, skb
);
548 #ifdef AR9170_TXAGG_DEBUG
550 printk(KERN_DEBUG
"%s: got %d more failed mpdus, but no more "
551 "suitable frames left in tx_status queue.\n",
552 wiphy_name(ar
->hw
->wiphy
), count
);
554 ar9170_dump_tx_status_ampdu(ar
);
556 #endif /* AR9170_TXAGG_DEBUG */
560 * This worker tries to keeps an maintain tx_status queues.
561 * So we can guarantee that incoming tx_status reports are
562 * actually for a pending frame.
565 static void ar9170_tx_janitor(struct work_struct
*work
)
567 struct ar9170
*ar
= container_of(work
, struct ar9170
,
569 struct sk_buff_head waste
;
571 bool resched
= false;
573 if (unlikely(!IS_STARTED(ar
)))
576 skb_queue_head_init(&waste
);
578 for (i
= 0; i
< __AR9170_NUM_TXQ
; i
++) {
579 #ifdef AR9170_QUEUE_DEBUG
580 printk(KERN_DEBUG
"%s: garbage collector scans queue:%d\n",
581 wiphy_name(ar
->hw
->wiphy
), i
);
582 ar9170_dump_txqueue(ar
, &ar
->tx_pending
[i
]);
583 ar9170_dump_txqueue(ar
, &ar
->tx_status
[i
]);
584 #endif /* AR9170_QUEUE_DEBUG */
586 ar9170_recycle_expired(ar
, &ar
->tx_status
[i
], &waste
);
587 ar9170_recycle_expired(ar
, &ar
->tx_pending
[i
], &waste
);
588 skb_queue_purge(&waste
);
590 if (!skb_queue_empty(&ar
->tx_status
[i
]) ||
591 !skb_queue_empty(&ar
->tx_pending
[i
]))
595 ar9170_tx_fake_ampdu_status(ar
);
600 ieee80211_queue_delayed_work(ar
->hw
,
602 msecs_to_jiffies(AR9170_JANITOR_DELAY
));
605 void ar9170_handle_command_response(struct ar9170
*ar
, void *buf
, u32 len
)
607 struct ar9170_cmd_response
*cmd
= (void *) buf
;
609 if ((cmd
->type
& 0xc0) != 0xc0) {
610 ar
->callback_cmd(ar
, len
, buf
);
614 /* hardware event handlers */
618 * TX status notification:
619 * bytes: 0c c1 XX YY M1 M2 M3 M4 M5 M6 R4 R3 R2 R1 S2 S1
623 * M1-M6 is the MAC address
624 * R1-R4 is the transmit rate
625 * S1-S2 is the transmit status
629 u32 phy
= le32_to_cpu(cmd
->tx_status
.rate
);
630 u32 q
= (phy
& AR9170_TX_PHY_QOS_MASK
) >>
631 AR9170_TX_PHY_QOS_SHIFT
;
632 #ifdef AR9170_QUEUE_DEBUG
633 printk(KERN_DEBUG
"%s: recv tx_status for %pM, p:%08x, q:%d\n",
634 wiphy_name(ar
->hw
->wiphy
), cmd
->tx_status
.dst
, phy
, q
);
635 #endif /* AR9170_QUEUE_DEBUG */
637 skb
= ar9170_get_queued_skb(ar
, cmd
->tx_status
.dst
,
639 AR9170_TX_INVALID_RATE
);
643 ar9170_tx_status(ar
, skb
, le16_to_cpu(cmd
->tx_status
.status
));
651 if (ar
->vif
&& ar
->vif
->type
== NL80211_IFTYPE_AP
)
652 ieee80211_queue_work(ar
->hw
, &ar
->beacon_work
);
657 * (IBSS) beacon send notification
658 * bytes: 04 c2 XX YY B4 B3 B2 B1
662 * B1-B4 "should" be the number of send out beacons.
667 /* End of Atim Window */
671 /* BlockACK bitmap */
675 /* BlockACK events */
676 ar9170_handle_block_ack(ar
,
677 le16_to_cpu(cmd
->ba_fail_cnt
.failed
),
678 le16_to_cpu(cmd
->ba_fail_cnt
.rate
));
679 ar9170_tx_fake_ampdu_status(ar
);
683 /* Watchdog Interrupt */
687 /* retransmission issue / SIFS/EIFS collision ?! */
692 printk(KERN_DEBUG
"ar9170 FW: %.*s\n", len
- 4, (char *)buf
+ 4);
699 printk(KERN_DEBUG
"ar9170 FW: u8: %#.2x\n",
703 printk(KERN_DEBUG
"ar9170 FW: u8: %#.4x\n",
704 le16_to_cpup((__le16
*)((char *)buf
+ 4)));
707 printk(KERN_DEBUG
"ar9170 FW: u8: %#.8x\n",
708 le32_to_cpup((__le32
*)((char *)buf
+ 4)));
711 printk(KERN_DEBUG
"ar9170 FW: u8: %#.16lx\n",
712 (unsigned long)le64_to_cpup(
713 (__le64
*)((char *)buf
+ 4)));
718 print_hex_dump_bytes("ar9170 FW:", DUMP_PREFIX_NONE
,
719 (char *)buf
+ 4, len
- 4);
723 printk(KERN_INFO
"received unhandled event %x\n", cmd
->type
);
724 print_hex_dump_bytes("dump:", DUMP_PREFIX_NONE
, buf
, len
);
729 static void ar9170_rx_reset_rx_mpdu(struct ar9170
*ar
)
731 memset(&ar
->rx_mpdu
.plcp
, 0, sizeof(struct ar9170_rx_head
));
732 ar
->rx_mpdu
.has_plcp
= false;
735 int ar9170_nag_limiter(struct ar9170
*ar
)
740 * we expect all sorts of errors in promiscuous mode.
741 * don't bother with it, it's OK!
743 if (ar
->sniffer_enabled
)
747 * only go for frequent errors! The hardware tends to
748 * do some stupid thing once in a while under load, in
749 * noisy environments or just for fun!
751 if (time_before(jiffies
, ar
->bad_hw_nagger
) && net_ratelimit())
752 print_message
= true;
754 print_message
= false;
756 /* reset threshold for "once in a while" */
757 ar
->bad_hw_nagger
= jiffies
+ HZ
/ 4;
758 return print_message
;
761 static int ar9170_rx_mac_status(struct ar9170
*ar
,
762 struct ar9170_rx_head
*head
,
763 struct ar9170_rx_macstatus
*mac
,
764 struct ieee80211_rx_status
*status
)
768 BUILD_BUG_ON(sizeof(struct ar9170_rx_head
) != 12);
769 BUILD_BUG_ON(sizeof(struct ar9170_rx_macstatus
) != 4);
772 if (error
& AR9170_RX_ERROR_MMIC
) {
773 status
->flag
|= RX_FLAG_MMIC_ERROR
;
774 error
&= ~AR9170_RX_ERROR_MMIC
;
777 if (error
& AR9170_RX_ERROR_PLCP
) {
778 status
->flag
|= RX_FLAG_FAILED_PLCP_CRC
;
779 error
&= ~AR9170_RX_ERROR_PLCP
;
781 if (!(ar
->filter_state
& FIF_PLCPFAIL
))
785 if (error
& AR9170_RX_ERROR_FCS
) {
786 status
->flag
|= RX_FLAG_FAILED_FCS_CRC
;
787 error
&= ~AR9170_RX_ERROR_FCS
;
789 if (!(ar
->filter_state
& FIF_FCSFAIL
))
793 decrypt
= ar9170_get_decrypt_type(mac
);
794 if (!(decrypt
& AR9170_RX_ENC_SOFTWARE
) &&
795 decrypt
!= AR9170_ENC_ALG_NONE
)
796 status
->flag
|= RX_FLAG_DECRYPTED
;
798 /* ignore wrong RA errors */
799 error
&= ~AR9170_RX_ERROR_WRONG_RA
;
801 if (error
& AR9170_RX_ERROR_DECRYPT
) {
802 error
&= ~AR9170_RX_ERROR_DECRYPT
;
804 * Rx decryption is done in place,
805 * the original data is lost anyway.
811 /* drop any other error frames */
812 if (unlikely(error
)) {
813 /* TODO: update netdevice's RX dropped/errors statistics */
815 if (ar9170_nag_limiter(ar
))
816 printk(KERN_DEBUG
"%s: received frame with "
817 "suspicious error code (%#x).\n",
818 wiphy_name(ar
->hw
->wiphy
), error
);
823 status
->band
= ar
->channel
->band
;
824 status
->freq
= ar
->channel
->center_freq
;
826 switch (mac
->status
& AR9170_RX_STATUS_MODULATION_MASK
) {
827 case AR9170_RX_STATUS_MODULATION_CCK
:
828 if (mac
->status
& AR9170_RX_STATUS_SHORT_PREAMBLE
)
829 status
->flag
|= RX_FLAG_SHORTPRE
;
830 switch (head
->plcp
[0]) {
832 status
->rate_idx
= 0;
835 status
->rate_idx
= 1;
838 status
->rate_idx
= 2;
841 status
->rate_idx
= 3;
844 if (ar9170_nag_limiter(ar
))
845 printk(KERN_ERR
"%s: invalid plcp cck rate "
846 "(%x).\n", wiphy_name(ar
->hw
->wiphy
),
852 case AR9170_RX_STATUS_MODULATION_DUPOFDM
:
853 case AR9170_RX_STATUS_MODULATION_OFDM
:
854 switch (head
->plcp
[0] & 0xf) {
856 status
->rate_idx
= 0;
859 status
->rate_idx
= 1;
862 status
->rate_idx
= 2;
865 status
->rate_idx
= 3;
868 status
->rate_idx
= 4;
871 status
->rate_idx
= 5;
874 status
->rate_idx
= 6;
877 status
->rate_idx
= 7;
880 if (ar9170_nag_limiter(ar
))
881 printk(KERN_ERR
"%s: invalid plcp ofdm rate "
882 "(%x).\n", wiphy_name(ar
->hw
->wiphy
),
886 if (status
->band
== IEEE80211_BAND_2GHZ
)
887 status
->rate_idx
+= 4;
890 case AR9170_RX_STATUS_MODULATION_HT
:
891 if (head
->plcp
[3] & 0x80)
892 status
->flag
|= RX_FLAG_40MHZ
;
893 if (head
->plcp
[6] & 0x80)
894 status
->flag
|= RX_FLAG_SHORT_GI
;
896 status
->rate_idx
= clamp(0, 75, head
->plcp
[6] & 0x7f);
897 status
->flag
|= RX_FLAG_HT
;
901 if (ar9170_nag_limiter(ar
))
902 printk(KERN_ERR
"%s: invalid modulation\n",
903 wiphy_name(ar
->hw
->wiphy
));
910 static void ar9170_rx_phy_status(struct ar9170
*ar
,
911 struct ar9170_rx_phystatus
*phy
,
912 struct ieee80211_rx_status
*status
)
916 BUILD_BUG_ON(sizeof(struct ar9170_rx_phystatus
) != 20);
918 for (i
= 0; i
< 3; i
++)
919 if (phy
->rssi
[i
] != 0x80)
920 status
->antenna
|= BIT(i
);
922 /* post-process RSSI */
923 for (i
= 0; i
< 7; i
++)
924 if (phy
->rssi
[i
] & 0x80)
925 phy
->rssi
[i
] = ((phy
->rssi
[i
] & 0x7f) + 1) & 0x7f;
927 /* TODO: we could do something with phy_errors */
928 status
->signal
= ar
->noise
[0] + phy
->rssi_combined
;
929 status
->noise
= ar
->noise
[0];
932 static struct sk_buff
*ar9170_rx_copy_data(u8
*buf
, int len
)
936 struct ieee80211_hdr
*hdr
= (void *) buf
;
938 if (ieee80211_is_data_qos(hdr
->frame_control
)) {
939 u8
*qc
= ieee80211_get_qos_ctl(hdr
);
940 reserved
+= NET_IP_ALIGN
;
942 if (*qc
& IEEE80211_QOS_CONTROL_A_MSDU_PRESENT
)
943 reserved
+= NET_IP_ALIGN
;
946 if (ieee80211_has_a4(hdr
->frame_control
))
947 reserved
+= NET_IP_ALIGN
;
949 reserved
= 32 + (reserved
& NET_IP_ALIGN
);
951 skb
= dev_alloc_skb(len
+ reserved
);
953 skb_reserve(skb
, reserved
);
954 memcpy(skb_put(skb
, len
), buf
, len
);
961 * If the frame alignment is right (or the kernel has
962 * CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS), and there
963 * is only a single MPDU in the USB frame, then we could
964 * submit to mac80211 the SKB directly. However, since
965 * there may be multiple packets in one SKB in stream
966 * mode, and we need to observe the proper ordering,
967 * this is non-trivial.
970 static void ar9170_handle_mpdu(struct ar9170
*ar
, u8
*buf
, int len
)
972 struct ar9170_rx_head
*head
;
973 struct ar9170_rx_macstatus
*mac
;
974 struct ar9170_rx_phystatus
*phy
= NULL
;
975 struct ieee80211_rx_status status
;
979 if (unlikely(!IS_STARTED(ar
) || len
< (sizeof(*mac
))))
983 mpdu_len
= len
- sizeof(*mac
);
985 mac
= (void *)(buf
+ mpdu_len
);
986 if (unlikely(mac
->error
& AR9170_RX_ERROR_FATAL
)) {
987 /* this frame is too damaged and can't be used - drop it */
992 switch (mac
->status
& AR9170_RX_STATUS_MPDU_MASK
) {
993 case AR9170_RX_STATUS_MPDU_FIRST
:
994 /* first mpdu packet has the plcp header */
995 if (likely(mpdu_len
>= sizeof(struct ar9170_rx_head
))) {
997 memcpy(&ar
->rx_mpdu
.plcp
, (void *) buf
,
998 sizeof(struct ar9170_rx_head
));
1000 mpdu_len
-= sizeof(struct ar9170_rx_head
);
1001 buf
+= sizeof(struct ar9170_rx_head
);
1002 ar
->rx_mpdu
.has_plcp
= true;
1004 if (ar9170_nag_limiter(ar
))
1005 printk(KERN_ERR
"%s: plcp info is clipped.\n",
1006 wiphy_name(ar
->hw
->wiphy
));
1011 case AR9170_RX_STATUS_MPDU_LAST
:
1012 /* last mpdu has a extra tail with phy status information */
1014 if (likely(mpdu_len
>= sizeof(struct ar9170_rx_phystatus
))) {
1015 mpdu_len
-= sizeof(struct ar9170_rx_phystatus
);
1016 phy
= (void *)(buf
+ mpdu_len
);
1018 if (ar9170_nag_limiter(ar
))
1019 printk(KERN_ERR
"%s: frame tail is clipped.\n",
1020 wiphy_name(ar
->hw
->wiphy
));
1024 case AR9170_RX_STATUS_MPDU_MIDDLE
:
1025 /* middle mpdus are just data */
1026 if (unlikely(!ar
->rx_mpdu
.has_plcp
)) {
1027 if (!ar9170_nag_limiter(ar
))
1030 printk(KERN_ERR
"%s: rx stream did not start "
1031 "with a first_mpdu frame tag.\n",
1032 wiphy_name(ar
->hw
->wiphy
));
1037 head
= &ar
->rx_mpdu
.plcp
;
1040 case AR9170_RX_STATUS_MPDU_SINGLE
:
1041 /* single mpdu - has plcp (head) and phy status (tail) */
1042 head
= (void *) buf
;
1044 mpdu_len
-= sizeof(struct ar9170_rx_head
);
1045 mpdu_len
-= sizeof(struct ar9170_rx_phystatus
);
1047 buf
+= sizeof(struct ar9170_rx_head
);
1048 phy
= (void *)(buf
+ mpdu_len
);
1056 if (unlikely(mpdu_len
< FCS_LEN
))
1059 memset(&status
, 0, sizeof(status
));
1060 if (unlikely(ar9170_rx_mac_status(ar
, head
, mac
, &status
)))
1064 ar9170_rx_phy_status(ar
, phy
, &status
);
1066 skb
= ar9170_rx_copy_data(buf
, mpdu_len
);
1068 memcpy(IEEE80211_SKB_RXCB(skb
), &status
, sizeof(status
));
1069 ieee80211_rx_irqsafe(ar
->hw
, skb
);
1073 void ar9170_rx(struct ar9170
*ar
, struct sk_buff
*skb
)
1075 unsigned int i
, tlen
, resplen
, wlen
= 0, clen
= 0;
1082 clen
= tbuf
[1] << 8 | tbuf
[0];
1083 wlen
= ALIGN(clen
, 4);
1085 /* check if this is stream has a valid tag.*/
1086 if (tbuf
[2] != 0 || tbuf
[3] != 0x4e) {
1088 * TODO: handle the highly unlikely event that the
1089 * corrupted stream has the TAG at the right position.
1092 /* check if the frame can be repaired. */
1093 if (!ar
->rx_failover_missing
) {
1094 /* this is no "short read". */
1095 if (ar9170_nag_limiter(ar
)) {
1096 printk(KERN_ERR
"%s: missing tag!\n",
1097 wiphy_name(ar
->hw
->wiphy
));
1103 if (ar
->rx_failover_missing
> tlen
) {
1104 if (ar9170_nag_limiter(ar
)) {
1105 printk(KERN_ERR
"%s: possible multi "
1106 "stream corruption!\n",
1107 wiphy_name(ar
->hw
->wiphy
));
1113 memcpy(skb_put(ar
->rx_failover
, tlen
), tbuf
, tlen
);
1114 ar
->rx_failover_missing
-= tlen
;
1116 if (ar
->rx_failover_missing
<= 0) {
1118 * nested ar9170_rx call!
1119 * termination is guranteed, even when the
1120 * combined frame also have a element with
1124 ar
->rx_failover_missing
= 0;
1125 ar9170_rx(ar
, ar
->rx_failover
);
1127 skb_reset_tail_pointer(ar
->rx_failover
);
1128 skb_trim(ar
->rx_failover
, 0);
1134 /* check if stream is clipped */
1135 if (wlen
> tlen
- 4) {
1136 if (ar
->rx_failover_missing
) {
1137 /* TODO: handle double stream corruption. */
1138 if (ar9170_nag_limiter(ar
)) {
1139 printk(KERN_ERR
"%s: double rx stream "
1141 wiphy_name(ar
->hw
->wiphy
));
1148 * save incomplete data set.
1149 * the firmware will resend the missing bits when
1150 * the rx - descriptor comes round again.
1153 memcpy(skb_put(ar
->rx_failover
, tlen
), tbuf
, tlen
);
1154 ar
->rx_failover_missing
= clen
- tlen
;
1164 /* weird thing, but this is the same in the original driver */
1165 while (resplen
> 2 && i
< 12 &&
1166 respbuf
[0] == 0xff && respbuf
[1] == 0xff) {
1175 /* found the 6 * 0xffff marker? */
1177 ar9170_handle_command_response(ar
, respbuf
, resplen
);
1179 ar9170_handle_mpdu(ar
, respbuf
, clen
);
1183 if (net_ratelimit())
1184 printk(KERN_ERR
"%s: %d bytes of unprocessed "
1185 "data left in rx stream!\n",
1186 wiphy_name(ar
->hw
->wiphy
), tlen
);
1194 printk(KERN_ERR
"%s: damaged RX stream data [want:%d, "
1195 "data:%d, rx:%d, pending:%d ]\n",
1196 wiphy_name(ar
->hw
->wiphy
), clen
, wlen
, tlen
,
1197 ar
->rx_failover_missing
);
1199 if (ar
->rx_failover_missing
)
1200 print_hex_dump_bytes("rxbuf:", DUMP_PREFIX_OFFSET
,
1201 ar
->rx_failover
->data
,
1202 ar
->rx_failover
->len
);
1204 print_hex_dump_bytes("stream:", DUMP_PREFIX_OFFSET
,
1205 skb
->data
, skb
->len
);
1207 printk(KERN_ERR
"%s: please check your hardware and cables, if "
1208 "you see this message frequently.\n",
1209 wiphy_name(ar
->hw
->wiphy
));
1212 if (ar
->rx_failover_missing
) {
1213 skb_reset_tail_pointer(ar
->rx_failover
);
1214 skb_trim(ar
->rx_failover
, 0);
1215 ar
->rx_failover_missing
= 0;
1219 #define AR9170_FILL_QUEUE(queue, ai_fs, cwmin, cwmax, _txop) \
1221 queue.aifs = ai_fs; \
1222 queue.cw_min = cwmin; \
1223 queue.cw_max = cwmax; \
1224 queue.txop = _txop; \
1227 static int ar9170_op_start(struct ieee80211_hw
*hw
)
1229 struct ar9170
*ar
= hw
->priv
;
1232 mutex_lock(&ar
->mutex
);
1234 /* reinitialize queues statistics */
1235 memset(&ar
->tx_stats
, 0, sizeof(ar
->tx_stats
));
1236 for (i
= 0; i
< __AR9170_NUM_TXQ
; i
++)
1237 ar
->tx_stats
[i
].limit
= AR9170_TXQ_DEPTH
;
1239 /* reset QoS defaults */
1240 AR9170_FILL_QUEUE(ar
->edcf
[0], 3, 15, 1023, 0); /* BEST EFFORT*/
1241 AR9170_FILL_QUEUE(ar
->edcf
[1], 7, 15, 1023, 0); /* BACKGROUND */
1242 AR9170_FILL_QUEUE(ar
->edcf
[2], 2, 7, 15, 94); /* VIDEO */
1243 AR9170_FILL_QUEUE(ar
->edcf
[3], 2, 3, 7, 47); /* VOICE */
1244 AR9170_FILL_QUEUE(ar
->edcf
[4], 2, 3, 7, 0); /* SPECIAL */
1246 /* set sane AMPDU defaults */
1247 ar
->global_ampdu_density
= 6;
1248 ar
->global_ampdu_factor
= 3;
1250 atomic_set(&ar
->tx_ampdu_pending
, 0);
1251 ar
->bad_hw_nagger
= jiffies
;
1257 err
= ar9170_init_mac(ar
);
1261 err
= ar9170_set_qos(ar
);
1265 err
= ar9170_init_phy(ar
, IEEE80211_BAND_2GHZ
);
1269 err
= ar9170_init_rf(ar
);
1274 err
= ar9170_write_reg(ar
, 0x1c3d30, 0x100);
1278 ar
->state
= AR9170_STARTED
;
1281 mutex_unlock(&ar
->mutex
);
1285 static void ar9170_op_stop(struct ieee80211_hw
*hw
)
1287 struct ar9170
*ar
= hw
->priv
;
1291 ar
->state
= AR9170_IDLE
;
1293 cancel_delayed_work_sync(&ar
->tx_janitor
);
1294 #ifdef CONFIG_AR9170_LEDS
1295 cancel_delayed_work_sync(&ar
->led_work
);
1297 cancel_work_sync(&ar
->beacon_work
);
1299 mutex_lock(&ar
->mutex
);
1301 if (IS_ACCEPTING_CMD(ar
)) {
1302 ar9170_set_leds_state(ar
, 0);
1305 ar9170_write_reg(ar
, 0x1c3d30, 0);
1309 for (i
= 0; i
< __AR9170_NUM_TXQ
; i
++) {
1310 skb_queue_purge(&ar
->tx_pending
[i
]);
1311 skb_queue_purge(&ar
->tx_status
[i
]);
1313 skb_queue_purge(&ar
->tx_status_ampdu
);
1315 mutex_unlock(&ar
->mutex
);
1318 static void ar9170_tx_indicate_immba(struct ar9170
*ar
, struct sk_buff
*skb
)
1320 struct ar9170_tx_control
*txc
= (void *) skb
->data
;
1322 txc
->mac_control
|= cpu_to_le16(AR9170_TX_MAC_IMM_AMPDU
);
1325 static void ar9170_tx_copy_phy(struct ar9170
*ar
, struct sk_buff
*dst
,
1326 struct sk_buff
*src
)
1328 struct ar9170_tx_control
*dst_txc
, *src_txc
;
1329 struct ieee80211_tx_info
*dst_info
, *src_info
;
1330 struct ar9170_tx_info
*dst_arinfo
, *src_arinfo
;
1332 src_txc
= (void *) src
->data
;
1333 src_info
= IEEE80211_SKB_CB(src
);
1334 src_arinfo
= (void *) src_info
->rate_driver_data
;
1336 dst_txc
= (void *) dst
->data
;
1337 dst_info
= IEEE80211_SKB_CB(dst
);
1338 dst_arinfo
= (void *) dst_info
->rate_driver_data
;
1340 dst_txc
->phy_control
= src_txc
->phy_control
;
1342 /* same MCS for the whole aggregate */
1343 memcpy(dst_info
->driver_rates
, src_info
->driver_rates
,
1344 sizeof(dst_info
->driver_rates
));
1347 static int ar9170_tx_prepare(struct ar9170
*ar
, struct sk_buff
*skb
)
1349 struct ieee80211_hdr
*hdr
;
1350 struct ar9170_tx_control
*txc
;
1351 struct ieee80211_tx_info
*info
;
1352 struct ieee80211_tx_rate
*txrate
;
1353 struct ar9170_tx_info
*arinfo
;
1354 unsigned int queue
= skb_get_queue_mapping(skb
);
1358 BUILD_BUG_ON(sizeof(*arinfo
) > sizeof(info
->rate_driver_data
));
1360 hdr
= (void *)skb
->data
;
1361 info
= IEEE80211_SKB_CB(skb
);
1364 txc
= (void *)skb_push(skb
, sizeof(*txc
));
1366 if (info
->control
.hw_key
) {
1367 icv
= info
->control
.hw_key
->icv_len
;
1369 switch (info
->control
.hw_key
->alg
) {
1371 keytype
= AR9170_TX_MAC_ENCR_RC4
;
1374 keytype
= AR9170_TX_MAC_ENCR_RC4
;
1377 keytype
= AR9170_TX_MAC_ENCR_AES
;
1386 txc
->length
= cpu_to_le16(len
+ icv
+ 4);
1388 txc
->mac_control
= cpu_to_le16(AR9170_TX_MAC_HW_DURATION
|
1389 AR9170_TX_MAC_BACKOFF
);
1390 txc
->mac_control
|= cpu_to_le16(ar9170_qos_hwmap
[queue
] <<
1391 AR9170_TX_MAC_QOS_SHIFT
);
1392 txc
->mac_control
|= cpu_to_le16(keytype
);
1393 txc
->phy_control
= cpu_to_le32(0);
1395 if (info
->flags
& IEEE80211_TX_CTL_NO_ACK
)
1396 txc
->mac_control
|= cpu_to_le16(AR9170_TX_MAC_NO_ACK
);
1398 txrate
= &info
->control
.rates
[0];
1399 if (txrate
->flags
& IEEE80211_TX_RC_USE_CTS_PROTECT
)
1400 txc
->mac_control
|= cpu_to_le16(AR9170_TX_MAC_PROT_CTS
);
1401 else if (txrate
->flags
& IEEE80211_TX_RC_USE_RTS_CTS
)
1402 txc
->mac_control
|= cpu_to_le16(AR9170_TX_MAC_PROT_RTS
);
1404 arinfo
= (void *)info
->rate_driver_data
;
1405 arinfo
->timeout
= jiffies
+ msecs_to_jiffies(AR9170_QUEUE_TIMEOUT
);
1407 if (!(info
->flags
& IEEE80211_TX_CTL_NO_ACK
) &&
1408 (is_valid_ether_addr(ieee80211_get_DA(hdr
)))) {
1411 * Putting the QoS queue bits into an unexplored territory is
1412 * certainly not elegant.
1414 * In my defense: This idea provides a reasonable way to
1415 * smuggle valuable information to the tx_status callback.
1416 * Also, the idea behind this bit-abuse came straight from
1417 * the original driver code.
1421 cpu_to_le32(queue
<< AR9170_TX_PHY_QOS_SHIFT
);
1423 if (info
->flags
& IEEE80211_TX_CTL_AMPDU
) {
1424 if (unlikely(!info
->control
.sta
))
1427 txc
->mac_control
|= cpu_to_le16(AR9170_TX_MAC_AGGR
);
1429 txc
->mac_control
|= cpu_to_le16(AR9170_TX_MAC_RATE_PROBE
);
1436 skb_pull(skb
, sizeof(*txc
));
1440 static void ar9170_tx_prepare_phy(struct ar9170
*ar
, struct sk_buff
*skb
)
1442 struct ar9170_tx_control
*txc
;
1443 struct ieee80211_tx_info
*info
;
1444 struct ieee80211_rate
*rate
= NULL
;
1445 struct ieee80211_tx_rate
*txrate
;
1448 txc
= (void *) skb
->data
;
1449 info
= IEEE80211_SKB_CB(skb
);
1450 txrate
= &info
->control
.rates
[0];
1452 if (txrate
->flags
& IEEE80211_TX_RC_GREEN_FIELD
)
1453 txc
->phy_control
|= cpu_to_le32(AR9170_TX_PHY_GREENFIELD
);
1455 if (txrate
->flags
& IEEE80211_TX_RC_USE_SHORT_PREAMBLE
)
1456 txc
->phy_control
|= cpu_to_le32(AR9170_TX_PHY_SHORT_PREAMBLE
);
1458 if (txrate
->flags
& IEEE80211_TX_RC_40_MHZ_WIDTH
)
1459 txc
->phy_control
|= cpu_to_le32(AR9170_TX_PHY_BW_40MHZ
);
1460 /* this works because 40 MHz is 2 and dup is 3 */
1461 if (txrate
->flags
& IEEE80211_TX_RC_DUP_DATA
)
1462 txc
->phy_control
|= cpu_to_le32(AR9170_TX_PHY_BW_40MHZ_DUP
);
1464 if (txrate
->flags
& IEEE80211_TX_RC_SHORT_GI
)
1465 txc
->phy_control
|= cpu_to_le32(AR9170_TX_PHY_SHORT_GI
);
1467 if (txrate
->flags
& IEEE80211_TX_RC_MCS
) {
1468 u32 r
= txrate
->idx
;
1471 /* heavy clip control */
1472 txc
->phy_control
|= cpu_to_le32((r
& 0x7) << 7);
1474 r
<<= AR9170_TX_PHY_MCS_SHIFT
;
1475 BUG_ON(r
& ~AR9170_TX_PHY_MCS_MASK
);
1477 txc
->phy_control
|= cpu_to_le32(r
& AR9170_TX_PHY_MCS_MASK
);
1478 txc
->phy_control
|= cpu_to_le32(AR9170_TX_PHY_MOD_HT
);
1480 if (txrate
->flags
& IEEE80211_TX_RC_40_MHZ_WIDTH
) {
1481 if (info
->band
== IEEE80211_BAND_5GHZ
)
1482 txpower
= ar
->power_5G_ht40
;
1484 txpower
= ar
->power_2G_ht40
;
1486 if (info
->band
== IEEE80211_BAND_5GHZ
)
1487 txpower
= ar
->power_5G_ht20
;
1489 txpower
= ar
->power_2G_ht20
;
1492 power
= txpower
[(txrate
->idx
) & 7];
1497 u8 idx
= txrate
->idx
;
1499 if (info
->band
!= IEEE80211_BAND_2GHZ
) {
1501 txpower
= ar
->power_5G_leg
;
1502 mod
= AR9170_TX_PHY_MOD_OFDM
;
1505 txpower
= ar
->power_2G_cck
;
1506 mod
= AR9170_TX_PHY_MOD_CCK
;
1508 mod
= AR9170_TX_PHY_MOD_OFDM
;
1509 txpower
= ar
->power_2G_ofdm
;
1513 rate
= &__ar9170_ratetable
[idx
];
1515 phyrate
= rate
->hw_value
& 0xF;
1516 power
= txpower
[(rate
->hw_value
& 0x30) >> 4];
1517 phyrate
<<= AR9170_TX_PHY_MCS_SHIFT
;
1519 txc
->phy_control
|= cpu_to_le32(mod
);
1520 txc
->phy_control
|= cpu_to_le32(phyrate
);
1523 power
<<= AR9170_TX_PHY_TX_PWR_SHIFT
;
1524 power
&= AR9170_TX_PHY_TX_PWR_MASK
;
1525 txc
->phy_control
|= cpu_to_le32(power
);
1528 if (ar
->eeprom
.tx_mask
== 1) {
1529 chains
= AR9170_TX_PHY_TXCHAIN_1
;
1531 chains
= AR9170_TX_PHY_TXCHAIN_2
;
1533 /* >= 36M legacy OFDM - use only one chain */
1534 if (rate
&& rate
->bitrate
>= 360)
1535 chains
= AR9170_TX_PHY_TXCHAIN_1
;
1537 txc
->phy_control
|= cpu_to_le32(chains
<< AR9170_TX_PHY_TXCHAIN_SHIFT
);
1540 static bool ar9170_tx_ampdu(struct ar9170
*ar
)
1542 struct sk_buff_head agg
;
1543 struct ar9170_sta_tid
*tid_info
= NULL
, *tmp
;
1544 struct sk_buff
*skb
, *first
= NULL
;
1545 unsigned long flags
, f2
;
1547 u16 seq
, queue
, tmpssn
;
1550 skb_queue_head_init(&agg
);
1552 spin_lock_irqsave(&ar
->tx_ampdu_list_lock
, flags
);
1553 if (list_empty(&ar
->tx_ampdu_list
)) {
1554 #ifdef AR9170_TXAGG_DEBUG
1555 printk(KERN_DEBUG
"%s: aggregation list is empty.\n",
1556 wiphy_name(ar
->hw
->wiphy
));
1557 #endif /* AR9170_TXAGG_DEBUG */
1561 list_for_each_entry_safe(tid_info
, tmp
, &ar
->tx_ampdu_list
, list
) {
1562 if (tid_info
->state
!= AR9170_TID_STATE_COMPLETE
) {
1563 #ifdef AR9170_TXAGG_DEBUG
1564 printk(KERN_DEBUG
"%s: dangling aggregation entry!\n",
1565 wiphy_name(ar
->hw
->wiphy
));
1566 #endif /* AR9170_TXAGG_DEBUG */
1571 #ifdef AR9170_TXAGG_DEBUG
1572 printk(KERN_DEBUG
"%s: enough frames aggregated.\n",
1573 wiphy_name(ar
->hw
->wiphy
));
1574 #endif /* AR9170_TXAGG_DEBUG */
1578 queue
= TID_TO_WME_AC(tid_info
->tid
);
1580 if (skb_queue_len(&ar
->tx_pending
[queue
]) >=
1581 AR9170_NUM_TX_AGG_MAX
) {
1582 #ifdef AR9170_TXAGG_DEBUG
1583 printk(KERN_DEBUG
"%s: queue %d full.\n",
1584 wiphy_name(ar
->hw
->wiphy
), queue
);
1585 #endif /* AR9170_TXAGG_DEBUG */
1589 list_del_init(&tid_info
->list
);
1591 spin_lock_irqsave(&tid_info
->queue
.lock
, f2
);
1592 tmpssn
= seq
= tid_info
->ssn
;
1593 first
= skb_peek(&tid_info
->queue
);
1596 tmpssn
= ar9170_get_seq(first
);
1598 if (unlikely(tmpssn
!= seq
)) {
1599 #ifdef AR9170_TXAGG_DEBUG
1600 printk(KERN_DEBUG
"%s: ssn mismatch [%d != %d]\n.",
1601 wiphy_name(ar
->hw
->wiphy
), seq
, tmpssn
);
1602 #endif /* AR9170_TXAGG_DEBUG */
1603 tid_info
->ssn
= tmpssn
;
1606 #ifdef AR9170_TXAGG_DEBUG
1607 printk(KERN_DEBUG
"%s: generate A-MPDU for tid:%d ssn:%d with "
1608 "%d queued frames.\n", wiphy_name(ar
->hw
->wiphy
),
1609 tid_info
->tid
, tid_info
->ssn
,
1610 skb_queue_len(&tid_info
->queue
));
1611 __ar9170_dump_txqueue(ar
, &tid_info
->queue
);
1612 #endif /* AR9170_TXAGG_DEBUG */
1614 while ((skb
= skb_peek(&tid_info
->queue
))) {
1615 if (unlikely(ar9170_get_seq(skb
) != seq
))
1618 __skb_unlink(skb
, &tid_info
->queue
);
1619 tid_info
->ssn
= seq
= GET_NEXT_SEQ(seq
);
1621 if (unlikely(skb_get_queue_mapping(skb
) != queue
)) {
1622 #ifdef AR9170_TXAGG_DEBUG
1623 printk(KERN_DEBUG
"%s: tid:%d(q:%d) queue:%d "
1624 "!match.\n", wiphy_name(ar
->hw
->wiphy
),
1626 TID_TO_WME_AC(tid_info
->tid
),
1627 skb_get_queue_mapping(skb
));
1628 #endif /* AR9170_TXAGG_DEBUG */
1629 dev_kfree_skb_any(skb
);
1633 if (unlikely(first
== skb
)) {
1634 ar9170_tx_prepare_phy(ar
, skb
);
1635 __skb_queue_tail(&agg
, skb
);
1638 ar9170_tx_copy_phy(ar
, skb
, first
);
1639 __skb_queue_tail(&agg
, skb
);
1642 if (unlikely(skb_queue_len(&agg
) ==
1643 AR9170_NUM_TX_AGG_MAX
))
1647 if (skb_queue_empty(&tid_info
->queue
))
1648 tid_info
->active
= false;
1650 list_add_tail(&tid_info
->list
,
1651 &ar
->tx_ampdu_list
);
1653 spin_unlock_irqrestore(&tid_info
->queue
.lock
, f2
);
1655 if (unlikely(skb_queue_empty(&agg
))) {
1656 #ifdef AR9170_TXAGG_DEBUG
1657 printk(KERN_DEBUG
"%s: queued empty list!\n",
1658 wiphy_name(ar
->hw
->wiphy
));
1659 #endif /* AR9170_TXAGG_DEBUG */
1664 * tell the FW/HW that this is the last frame,
1665 * that way it will wait for the immediate block ack.
1667 ar9170_tx_indicate_immba(ar
, skb_peek_tail(&agg
));
1669 #ifdef AR9170_TXAGG_DEBUG
1670 printk(KERN_DEBUG
"%s: generated A-MPDU looks like this:\n",
1671 wiphy_name(ar
->hw
->wiphy
));
1672 __ar9170_dump_txqueue(ar
, &agg
);
1673 #endif /* AR9170_TXAGG_DEBUG */
1675 spin_unlock_irqrestore(&ar
->tx_ampdu_list_lock
, flags
);
1677 spin_lock_irqsave(&ar
->tx_pending
[queue
].lock
, flags
);
1678 skb_queue_splice_tail_init(&agg
, &ar
->tx_pending
[queue
]);
1679 spin_unlock_irqrestore(&ar
->tx_pending
[queue
].lock
, flags
);
1682 spin_lock_irqsave(&ar
->tx_ampdu_list_lock
, flags
);
1686 spin_unlock_irqrestore(&ar
->tx_ampdu_list_lock
, flags
);
1687 __skb_queue_purge(&agg
);
1692 static void ar9170_tx(struct ar9170
*ar
)
1694 struct sk_buff
*skb
;
1695 unsigned long flags
;
1696 struct ieee80211_tx_info
*info
;
1697 struct ar9170_tx_info
*arinfo
;
1698 unsigned int i
, frames
, frames_failed
, remaining_space
;
1700 bool schedule_garbagecollector
= false;
1702 BUILD_BUG_ON(sizeof(*arinfo
) > sizeof(info
->rate_driver_data
));
1704 if (unlikely(!IS_STARTED(ar
)))
1707 remaining_space
= AR9170_TX_MAX_PENDING
;
1709 for (i
= 0; i
< __AR9170_NUM_TXQ
; i
++) {
1710 spin_lock_irqsave(&ar
->tx_stats_lock
, flags
);
1711 frames
= min(ar
->tx_stats
[i
].limit
- ar
->tx_stats
[i
].len
,
1712 skb_queue_len(&ar
->tx_pending
[i
]));
1714 if (remaining_space
< frames
) {
1715 #ifdef AR9170_QUEUE_DEBUG
1716 printk(KERN_DEBUG
"%s: tx quota reached queue:%d, "
1717 "remaining slots:%d, needed:%d\n",
1718 wiphy_name(ar
->hw
->wiphy
), i
, remaining_space
,
1720 #endif /* AR9170_QUEUE_DEBUG */
1721 frames
= remaining_space
;
1724 ar
->tx_stats
[i
].len
+= frames
;
1725 ar
->tx_stats
[i
].count
+= frames
;
1726 if (ar
->tx_stats
[i
].len
>= ar
->tx_stats
[i
].limit
) {
1727 #ifdef AR9170_QUEUE_DEBUG
1728 printk(KERN_DEBUG
"%s: queue %d full\n",
1729 wiphy_name(ar
->hw
->wiphy
), i
);
1731 printk(KERN_DEBUG
"%s: stuck frames: ===> \n",
1732 wiphy_name(ar
->hw
->wiphy
));
1733 ar9170_dump_txqueue(ar
, &ar
->tx_pending
[i
]);
1734 ar9170_dump_txqueue(ar
, &ar
->tx_status
[i
]);
1735 #endif /* AR9170_QUEUE_DEBUG */
1737 #ifdef AR9170_QUEUE_STOP_DEBUG
1738 printk(KERN_DEBUG
"%s: stop queue %d\n",
1739 wiphy_name(ar
->hw
->wiphy
), i
);
1740 __ar9170_dump_txstats(ar
);
1741 #endif /* AR9170_QUEUE_STOP_DEBUG */
1742 ieee80211_stop_queue(ar
->hw
, i
);
1745 spin_unlock_irqrestore(&ar
->tx_stats_lock
, flags
);
1752 skb
= skb_dequeue(&ar
->tx_pending
[i
]);
1753 if (unlikely(!skb
)) {
1754 frames_failed
+= frames
;
1759 info
= IEEE80211_SKB_CB(skb
);
1760 arinfo
= (void *) info
->rate_driver_data
;
1762 /* TODO: cancel stuck frames */
1763 arinfo
->timeout
= jiffies
+
1764 msecs_to_jiffies(AR9170_TX_TIMEOUT
);
1766 if (info
->flags
& IEEE80211_TX_CTL_AMPDU
)
1767 atomic_inc(&ar
->tx_ampdu_pending
);
1769 #ifdef AR9170_QUEUE_DEBUG
1770 printk(KERN_DEBUG
"%s: send frame q:%d =>\n",
1771 wiphy_name(ar
->hw
->wiphy
), i
);
1772 ar9170_print_txheader(ar
, skb
);
1773 #endif /* AR9170_QUEUE_DEBUG */
1775 err
= ar
->tx(ar
, skb
);
1776 if (unlikely(err
)) {
1777 if (info
->flags
& IEEE80211_TX_CTL_AMPDU
)
1778 atomic_dec(&ar
->tx_ampdu_pending
);
1781 dev_kfree_skb_any(skb
);
1784 schedule_garbagecollector
= true;
1790 #ifdef AR9170_QUEUE_DEBUG
1791 printk(KERN_DEBUG
"%s: ar9170_tx report for queue %d\n",
1792 wiphy_name(ar
->hw
->wiphy
), i
);
1794 printk(KERN_DEBUG
"%s: unprocessed pending frames left:\n",
1795 wiphy_name(ar
->hw
->wiphy
));
1796 ar9170_dump_txqueue(ar
, &ar
->tx_pending
[i
]);
1797 #endif /* AR9170_QUEUE_DEBUG */
1799 if (unlikely(frames_failed
)) {
1800 #ifdef AR9170_QUEUE_DEBUG
1801 printk(KERN_DEBUG
"%s: frames failed %d =>\n",
1802 wiphy_name(ar
->hw
->wiphy
), frames_failed
);
1803 #endif /* AR9170_QUEUE_DEBUG */
1805 spin_lock_irqsave(&ar
->tx_stats_lock
, flags
);
1806 ar
->tx_stats
[i
].len
-= frames_failed
;
1807 ar
->tx_stats
[i
].count
-= frames_failed
;
1808 #ifdef AR9170_QUEUE_STOP_DEBUG
1809 printk(KERN_DEBUG
"%s: wake queue %d\n",
1810 wiphy_name(ar
->hw
->wiphy
), i
);
1811 __ar9170_dump_txstats(ar
);
1812 #endif /* AR9170_QUEUE_STOP_DEBUG */
1813 ieee80211_wake_queue(ar
->hw
, i
);
1814 spin_unlock_irqrestore(&ar
->tx_stats_lock
, flags
);
1818 if (!schedule_garbagecollector
)
1821 ieee80211_queue_delayed_work(ar
->hw
,
1823 msecs_to_jiffies(AR9170_JANITOR_DELAY
));
1826 static bool ar9170_tx_ampdu_queue(struct ar9170
*ar
, struct sk_buff
*skb
)
1828 struct ieee80211_tx_info
*txinfo
;
1829 struct ar9170_sta_info
*sta_info
;
1830 struct ar9170_sta_tid
*agg
;
1831 struct sk_buff
*iter
;
1832 unsigned long flags
, f2
;
1835 bool run
= false, queue
= false;
1837 tid
= ar9170_get_tid(skb
);
1838 seq
= ar9170_get_seq(skb
);
1839 txinfo
= IEEE80211_SKB_CB(skb
);
1840 sta_info
= (void *) txinfo
->control
.sta
->drv_priv
;
1841 agg
= &sta_info
->agg
[tid
];
1842 max
= sta_info
->ampdu_max_len
;
1844 spin_lock_irqsave(&ar
->tx_ampdu_list_lock
, flags
);
1846 if (unlikely(agg
->state
!= AR9170_TID_STATE_COMPLETE
)) {
1847 #ifdef AR9170_TXAGG_DEBUG
1848 printk(KERN_DEBUG
"%s: BlockACK session not fully initialized "
1849 "for ESS:%pM tid:%d state:%d.\n",
1850 wiphy_name(ar
->hw
->wiphy
), agg
->addr
, agg
->tid
,
1852 #endif /* AR9170_TXAGG_DEBUG */
1862 /* check if seq is within the BA window */
1863 if (unlikely(!BAW_WITHIN(agg
->ssn
, max
, seq
))) {
1864 #ifdef AR9170_TXAGG_DEBUG
1865 printk(KERN_DEBUG
"%s: frame with tid:%d seq:%d does not "
1866 "fit into BA window (%d - %d)\n",
1867 wiphy_name(ar
->hw
->wiphy
), tid
, seq
, agg
->ssn
,
1868 (agg
->ssn
+ max
) & 0xfff);
1869 #endif /* AR9170_TXAGG_DEBUG */
1873 spin_lock_irqsave(&agg
->queue
.lock
, f2
);
1875 skb_queue_reverse_walk(&agg
->queue
, iter
) {
1876 qseq
= ar9170_get_seq(iter
);
1878 if (GET_NEXT_SEQ(qseq
) == seq
) {
1879 __skb_queue_after(&agg
->queue
, iter
, skb
);
1884 __skb_queue_head(&agg
->queue
, skb
);
1887 spin_unlock_irqrestore(&agg
->queue
.lock
, f2
);
1889 #ifdef AR9170_TXAGG_DEBUG
1890 printk(KERN_DEBUG
"%s: new aggregate %p queued.\n",
1891 wiphy_name(ar
->hw
->wiphy
), skb
);
1892 __ar9170_dump_txqueue(ar
, &agg
->queue
);
1893 #endif /* AR9170_TXAGG_DEBUG */
1895 if (skb_queue_len(&agg
->queue
) >= AR9170_NUM_TX_AGG_MAX
)
1899 list_add_tail(&agg
->list
, &ar
->tx_ampdu_list
);
1901 spin_unlock_irqrestore(&ar
->tx_ampdu_list_lock
, flags
);
1905 spin_unlock_irqrestore(&ar
->tx_ampdu_list_lock
, flags
);
1906 dev_kfree_skb_irq(skb
);
1910 int ar9170_op_tx(struct ieee80211_hw
*hw
, struct sk_buff
*skb
)
1912 struct ar9170
*ar
= hw
->priv
;
1913 struct ieee80211_tx_info
*info
;
1915 if (unlikely(!IS_STARTED(ar
)))
1918 if (unlikely(ar9170_tx_prepare(ar
, skb
)))
1921 info
= IEEE80211_SKB_CB(skb
);
1922 if (info
->flags
& IEEE80211_TX_CTL_AMPDU
) {
1923 bool run
= ar9170_tx_ampdu_queue(ar
, skb
);
1925 if (run
|| !atomic_read(&ar
->tx_ampdu_pending
))
1926 ar9170_tx_ampdu(ar
);
1928 unsigned int queue
= skb_get_queue_mapping(skb
);
1930 ar9170_tx_prepare_phy(ar
, skb
);
1931 skb_queue_tail(&ar
->tx_pending
[queue
], skb
);
1935 return NETDEV_TX_OK
;
1938 dev_kfree_skb_any(skb
);
1939 return NETDEV_TX_OK
;
1942 static int ar9170_op_add_interface(struct ieee80211_hw
*hw
,
1943 struct ieee80211_vif
*vif
)
1945 struct ar9170
*ar
= hw
->priv
;
1946 struct ath_common
*common
= &ar
->common
;
1949 mutex_lock(&ar
->mutex
);
1957 memcpy(common
->macaddr
, vif
->addr
, ETH_ALEN
);
1959 if (modparam_nohwcrypt
|| (ar
->vif
->type
!= NL80211_IFTYPE_STATION
)) {
1960 ar
->rx_software_decryption
= true;
1961 ar
->disable_offload
= true;
1965 err
= ar9170_update_frame_filter(ar
, AR9170_MAC_REG_FTF_DEFAULTS
);
1969 err
= ar9170_set_operating_mode(ar
);
1972 mutex_unlock(&ar
->mutex
);
1976 static void ar9170_op_remove_interface(struct ieee80211_hw
*hw
,
1977 struct ieee80211_vif
*vif
)
1979 struct ar9170
*ar
= hw
->priv
;
1981 mutex_lock(&ar
->mutex
);
1983 ar9170_update_frame_filter(ar
, 0);
1984 ar9170_set_beacon_timers(ar
);
1985 dev_kfree_skb(ar
->beacon
);
1987 ar
->sniffer_enabled
= false;
1988 ar
->rx_software_decryption
= false;
1989 ar9170_set_operating_mode(ar
);
1990 mutex_unlock(&ar
->mutex
);
1993 static int ar9170_op_config(struct ieee80211_hw
*hw
, u32 changed
)
1995 struct ar9170
*ar
= hw
->priv
;
1998 mutex_lock(&ar
->mutex
);
2000 if (changed
& IEEE80211_CONF_CHANGE_LISTEN_INTERVAL
) {
2005 if (changed
& IEEE80211_CONF_CHANGE_PS
) {
2010 if (changed
& IEEE80211_CONF_CHANGE_POWER
) {
2015 if (changed
& IEEE80211_CONF_CHANGE_RETRY_LIMITS
) {
2017 * is it long_frame_max_tx_count or short_frame_max_tx_count?
2020 err
= ar9170_set_hwretry_limit(ar
,
2021 ar
->hw
->conf
.long_frame_max_tx_count
);
2026 if (changed
& IEEE80211_CONF_CHANGE_CHANNEL
) {
2028 /* adjust slot time for 5 GHz */
2029 err
= ar9170_set_slot_time(ar
);
2033 err
= ar9170_set_dyn_sifs_ack(ar
);
2037 err
= ar9170_set_channel(ar
, hw
->conf
.channel
,
2039 nl80211_to_ar9170(hw
->conf
.channel_type
));
2045 mutex_unlock(&ar
->mutex
);
2049 static u64
ar9170_op_prepare_multicast(struct ieee80211_hw
*hw
, int mc_count
,
2050 struct dev_addr_list
*mclist
)
2055 /* always get broadcast frames */
2056 mchash
= 1ULL << (0xff >> 2);
2058 for (i
= 0; i
< mc_count
; i
++) {
2059 if (WARN_ON(!mclist
))
2061 mchash
|= 1ULL << (mclist
->dmi_addr
[5] >> 2);
2062 mclist
= mclist
->next
;
2068 static void ar9170_op_configure_filter(struct ieee80211_hw
*hw
,
2069 unsigned int changed_flags
,
2070 unsigned int *new_flags
,
2073 struct ar9170
*ar
= hw
->priv
;
2075 if (unlikely(!IS_ACCEPTING_CMD(ar
)))
2078 mutex_lock(&ar
->mutex
);
2080 /* mask supported flags */
2081 *new_flags
&= FIF_ALLMULTI
| FIF_CONTROL
| FIF_BCN_PRBRESP_PROMISC
|
2082 FIF_PROMISC_IN_BSS
| FIF_FCSFAIL
| FIF_PLCPFAIL
;
2083 ar
->filter_state
= *new_flags
;
2085 * We can support more by setting the sniffer bit and
2086 * then checking the error flags, later.
2089 if (changed_flags
& FIF_ALLMULTI
&& *new_flags
& FIF_ALLMULTI
)
2092 if (multicast
!= ar
->cur_mc_hash
)
2093 ar9170_update_multicast(ar
, multicast
);
2095 if (changed_flags
& FIF_CONTROL
) {
2096 u32 filter
= AR9170_MAC_REG_FTF_PSPOLL
|
2097 AR9170_MAC_REG_FTF_RTS
|
2098 AR9170_MAC_REG_FTF_CTS
|
2099 AR9170_MAC_REG_FTF_ACK
|
2100 AR9170_MAC_REG_FTF_CFE
|
2101 AR9170_MAC_REG_FTF_CFE_ACK
;
2103 if (*new_flags
& FIF_CONTROL
)
2104 filter
|= ar
->cur_filter
;
2106 filter
&= (~ar
->cur_filter
);
2108 ar9170_update_frame_filter(ar
, filter
);
2111 if (changed_flags
& FIF_PROMISC_IN_BSS
) {
2112 ar
->sniffer_enabled
= ((*new_flags
) & FIF_PROMISC_IN_BSS
) != 0;
2113 ar9170_set_operating_mode(ar
);
2116 mutex_unlock(&ar
->mutex
);
2120 static void ar9170_op_bss_info_changed(struct ieee80211_hw
*hw
,
2121 struct ieee80211_vif
*vif
,
2122 struct ieee80211_bss_conf
*bss_conf
,
2125 struct ar9170
*ar
= hw
->priv
;
2126 struct ath_common
*common
= &ar
->common
;
2129 mutex_lock(&ar
->mutex
);
2131 if (changed
& BSS_CHANGED_BSSID
) {
2132 memcpy(common
->curbssid
, bss_conf
->bssid
, ETH_ALEN
);
2133 err
= ar9170_set_operating_mode(ar
);
2138 if (changed
& BSS_CHANGED_BEACON_ENABLED
)
2139 ar
->enable_beacon
= bss_conf
->enable_beacon
;
2141 if (changed
& BSS_CHANGED_BEACON
) {
2142 err
= ar9170_update_beacon(ar
);
2147 if (changed
& (BSS_CHANGED_BEACON_ENABLED
| BSS_CHANGED_BEACON
|
2148 BSS_CHANGED_BEACON_INT
)) {
2149 err
= ar9170_set_beacon_timers(ar
);
2154 if (changed
& BSS_CHANGED_ASSOC
) {
2155 #ifndef CONFIG_AR9170_LEDS
2156 /* enable assoc LED. */
2157 err
= ar9170_set_leds_state(ar
, bss_conf
->assoc
? 2 : 0);
2158 #endif /* CONFIG_AR9170_LEDS */
2161 if (changed
& BSS_CHANGED_HT
) {
2166 if (changed
& BSS_CHANGED_ERP_SLOT
) {
2167 err
= ar9170_set_slot_time(ar
);
2172 if (changed
& BSS_CHANGED_BASIC_RATES
) {
2173 err
= ar9170_set_basic_rates(ar
);
2179 mutex_unlock(&ar
->mutex
);
2182 static u64
ar9170_op_get_tsf(struct ieee80211_hw
*hw
)
2184 struct ar9170
*ar
= hw
->priv
;
2188 static const u32 addr
[NR
] = { AR9170_MAC_REG_TSF_H
,
2189 AR9170_MAC_REG_TSF_L
,
2190 AR9170_MAC_REG_TSF_H
};
2194 mutex_lock(&ar
->mutex
);
2196 while (loops
++ < 10) {
2197 err
= ar9170_read_mreg(ar
, NR
, addr
, val
);
2198 if (err
|| val
[0] == val
[2])
2202 mutex_unlock(&ar
->mutex
);
2207 tsf
= (tsf
<< 32) | val
[1];
2212 static int ar9170_set_key(struct ieee80211_hw
*hw
, enum set_key_cmd cmd
,
2213 struct ieee80211_vif
*vif
, struct ieee80211_sta
*sta
,
2214 struct ieee80211_key_conf
*key
)
2216 struct ar9170
*ar
= hw
->priv
;
2220 if ((!ar
->vif
) || (ar
->disable_offload
))
2225 if (key
->keylen
== WLAN_KEY_LEN_WEP40
)
2226 ktype
= AR9170_ENC_ALG_WEP64
;
2228 ktype
= AR9170_ENC_ALG_WEP128
;
2231 ktype
= AR9170_ENC_ALG_TKIP
;
2234 ktype
= AR9170_ENC_ALG_AESCCMP
;
2240 mutex_lock(&ar
->mutex
);
2241 if (cmd
== SET_KEY
) {
2242 if (unlikely(!IS_STARTED(ar
))) {
2247 /* group keys need all-zeroes address */
2248 if (!(key
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
))
2251 if (key
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
) {
2252 for (i
= 0; i
< 64; i
++)
2253 if (!(ar
->usedkeys
& BIT(i
)))
2256 ar
->rx_software_decryption
= true;
2257 ar9170_set_operating_mode(ar
);
2262 i
= 64 + key
->keyidx
;
2265 key
->hw_key_idx
= i
;
2267 err
= ar9170_upload_key(ar
, i
, sta
? sta
->addr
: NULL
, ktype
, 0,
2268 key
->key
, min_t(u8
, 16, key
->keylen
));
2272 if (key
->alg
== ALG_TKIP
) {
2273 err
= ar9170_upload_key(ar
, i
, sta
? sta
->addr
: NULL
,
2274 ktype
, 1, key
->key
+ 16, 16);
2279 * hardware is not capable generating the MMIC
2280 * for fragmented frames!
2282 key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_MMIC
;
2286 ar
->usedkeys
|= BIT(i
);
2288 key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_IV
;
2290 if (unlikely(!IS_STARTED(ar
))) {
2291 /* The device is gone... together with the key ;-) */
2296 err
= ar9170_disable_key(ar
, key
->hw_key_idx
);
2300 if (key
->hw_key_idx
< 64) {
2301 ar
->usedkeys
&= ~BIT(key
->hw_key_idx
);
2303 err
= ar9170_upload_key(ar
, key
->hw_key_idx
, NULL
,
2304 AR9170_ENC_ALG_NONE
, 0,
2309 if (key
->alg
== ALG_TKIP
) {
2310 err
= ar9170_upload_key(ar
, key
->hw_key_idx
,
2312 AR9170_ENC_ALG_NONE
, 1,
2321 ar9170_regwrite_begin(ar
);
2322 ar9170_regwrite(AR9170_MAC_REG_ROLL_CALL_TBL_L
, ar
->usedkeys
);
2323 ar9170_regwrite(AR9170_MAC_REG_ROLL_CALL_TBL_H
, ar
->usedkeys
>> 32);
2324 ar9170_regwrite_finish();
2325 err
= ar9170_regwrite_result();
2328 mutex_unlock(&ar
->mutex
);
2333 static int ar9170_sta_add(struct ieee80211_hw
*hw
,
2334 struct ieee80211_vif
*vif
,
2335 struct ieee80211_sta
*sta
)
2337 struct ar9170
*ar
= hw
->priv
;
2338 struct ar9170_sta_info
*sta_info
= (void *) sta
->drv_priv
;
2341 memset(sta_info
, 0, sizeof(*sta_info
));
2343 if (!sta
->ht_cap
.ht_supported
)
2346 if (sta
->ht_cap
.ampdu_density
> ar
->global_ampdu_density
)
2347 ar
->global_ampdu_density
= sta
->ht_cap
.ampdu_density
;
2349 if (sta
->ht_cap
.ampdu_factor
< ar
->global_ampdu_factor
)
2350 ar
->global_ampdu_factor
= sta
->ht_cap
.ampdu_factor
;
2352 for (i
= 0; i
< AR9170_NUM_TID
; i
++) {
2353 sta_info
->agg
[i
].state
= AR9170_TID_STATE_SHUTDOWN
;
2354 sta_info
->agg
[i
].active
= false;
2355 sta_info
->agg
[i
].ssn
= 0;
2356 sta_info
->agg
[i
].tid
= i
;
2357 INIT_LIST_HEAD(&sta_info
->agg
[i
].list
);
2358 skb_queue_head_init(&sta_info
->agg
[i
].queue
);
2361 sta_info
->ampdu_max_len
= 1 << (3 + sta
->ht_cap
.ampdu_factor
);
2366 static int ar9170_sta_remove(struct ieee80211_hw
*hw
,
2367 struct ieee80211_vif
*vif
,
2368 struct ieee80211_sta
*sta
)
2370 struct ar9170_sta_info
*sta_info
= (void *) sta
->drv_priv
;
2373 if (!sta
->ht_cap
.ht_supported
)
2376 for (i
= 0; i
< AR9170_NUM_TID
; i
++) {
2377 sta_info
->agg
[i
].state
= AR9170_TID_STATE_INVALID
;
2378 skb_queue_purge(&sta_info
->agg
[i
].queue
);
2384 static int ar9170_get_stats(struct ieee80211_hw
*hw
,
2385 struct ieee80211_low_level_stats
*stats
)
2387 struct ar9170
*ar
= hw
->priv
;
2391 mutex_lock(&ar
->mutex
);
2392 err
= ar9170_read_reg(ar
, AR9170_MAC_REG_TX_RETRY
, &val
);
2393 ar
->stats
.dot11ACKFailureCount
+= val
;
2395 memcpy(stats
, &ar
->stats
, sizeof(*stats
));
2396 mutex_unlock(&ar
->mutex
);
2401 static int ar9170_conf_tx(struct ieee80211_hw
*hw
, u16 queue
,
2402 const struct ieee80211_tx_queue_params
*param
)
2404 struct ar9170
*ar
= hw
->priv
;
2407 mutex_lock(&ar
->mutex
);
2408 if (queue
< __AR9170_NUM_TXQ
) {
2409 memcpy(&ar
->edcf
[ar9170_qos_hwmap
[queue
]],
2410 param
, sizeof(*param
));
2412 ret
= ar9170_set_qos(ar
);
2417 mutex_unlock(&ar
->mutex
);
2421 static int ar9170_ampdu_action(struct ieee80211_hw
*hw
,
2422 struct ieee80211_vif
*vif
,
2423 enum ieee80211_ampdu_mlme_action action
,
2424 struct ieee80211_sta
*sta
, u16 tid
, u16
*ssn
)
2426 struct ar9170
*ar
= hw
->priv
;
2427 struct ar9170_sta_info
*sta_info
= (void *) sta
->drv_priv
;
2428 struct ar9170_sta_tid
*tid_info
= &sta_info
->agg
[tid
];
2429 unsigned long flags
;
2435 case IEEE80211_AMPDU_TX_START
:
2436 spin_lock_irqsave(&ar
->tx_ampdu_list_lock
, flags
);
2437 if (tid_info
->state
!= AR9170_TID_STATE_SHUTDOWN
||
2438 !list_empty(&tid_info
->list
)) {
2439 spin_unlock_irqrestore(&ar
->tx_ampdu_list_lock
, flags
);
2440 #ifdef AR9170_TXAGG_DEBUG
2441 printk(KERN_INFO
"%s: A-MPDU [ESS:[%pM] tid:[%d]] "
2442 "is in a very bad state!\n",
2443 wiphy_name(hw
->wiphy
), sta
->addr
, tid
);
2444 #endif /* AR9170_TXAGG_DEBUG */
2448 *ssn
= tid_info
->ssn
;
2449 tid_info
->state
= AR9170_TID_STATE_PROGRESS
;
2450 tid_info
->active
= false;
2451 spin_unlock_irqrestore(&ar
->tx_ampdu_list_lock
, flags
);
2452 ieee80211_start_tx_ba_cb_irqsafe(vif
, sta
->addr
, tid
);
2455 case IEEE80211_AMPDU_TX_STOP
:
2456 spin_lock_irqsave(&ar
->tx_ampdu_list_lock
, flags
);
2457 tid_info
->state
= AR9170_TID_STATE_SHUTDOWN
;
2458 list_del_init(&tid_info
->list
);
2459 tid_info
->active
= false;
2460 skb_queue_purge(&tid_info
->queue
);
2461 spin_unlock_irqrestore(&ar
->tx_ampdu_list_lock
, flags
);
2462 ieee80211_stop_tx_ba_cb_irqsafe(vif
, sta
->addr
, tid
);
2465 case IEEE80211_AMPDU_TX_OPERATIONAL
:
2466 #ifdef AR9170_TXAGG_DEBUG
2467 printk(KERN_INFO
"%s: A-MPDU for %pM [tid:%d] Operational.\n",
2468 wiphy_name(hw
->wiphy
), sta
->addr
, tid
);
2469 #endif /* AR9170_TXAGG_DEBUG */
2470 spin_lock_irqsave(&ar
->tx_ampdu_list_lock
, flags
);
2471 sta_info
->agg
[tid
].state
= AR9170_TID_STATE_COMPLETE
;
2472 spin_unlock_irqrestore(&ar
->tx_ampdu_list_lock
, flags
);
2475 case IEEE80211_AMPDU_RX_START
:
2476 case IEEE80211_AMPDU_RX_STOP
:
2477 /* Handled by firmware */
2487 static const struct ieee80211_ops ar9170_ops
= {
2488 .start
= ar9170_op_start
,
2489 .stop
= ar9170_op_stop
,
2491 .add_interface
= ar9170_op_add_interface
,
2492 .remove_interface
= ar9170_op_remove_interface
,
2493 .config
= ar9170_op_config
,
2494 .prepare_multicast
= ar9170_op_prepare_multicast
,
2495 .configure_filter
= ar9170_op_configure_filter
,
2496 .conf_tx
= ar9170_conf_tx
,
2497 .bss_info_changed
= ar9170_op_bss_info_changed
,
2498 .get_tsf
= ar9170_op_get_tsf
,
2499 .set_key
= ar9170_set_key
,
2500 .sta_add
= ar9170_sta_add
,
2501 .sta_remove
= ar9170_sta_remove
,
2502 .get_stats
= ar9170_get_stats
,
2503 .ampdu_action
= ar9170_ampdu_action
,
2506 void *ar9170_alloc(size_t priv_size
)
2508 struct ieee80211_hw
*hw
;
2510 struct sk_buff
*skb
;
2514 * this buffer is used for rx stream reconstruction.
2515 * Under heavy load this device (or the transport layer?)
2516 * tends to split the streams into separate rx descriptors.
2519 skb
= __dev_alloc_skb(AR9170_RX_STREAM_MAX_SIZE
, GFP_KERNEL
);
2523 hw
= ieee80211_alloc_hw(priv_size
, &ar9170_ops
);
2529 ar
->rx_failover
= skb
;
2531 mutex_init(&ar
->mutex
);
2532 spin_lock_init(&ar
->cmdlock
);
2533 spin_lock_init(&ar
->tx_stats_lock
);
2534 spin_lock_init(&ar
->tx_ampdu_list_lock
);
2535 skb_queue_head_init(&ar
->tx_status_ampdu
);
2536 for (i
= 0; i
< __AR9170_NUM_TXQ
; i
++) {
2537 skb_queue_head_init(&ar
->tx_status
[i
]);
2538 skb_queue_head_init(&ar
->tx_pending
[i
]);
2540 ar9170_rx_reset_rx_mpdu(ar
);
2541 INIT_WORK(&ar
->beacon_work
, ar9170_new_beacon
);
2542 INIT_DELAYED_WORK(&ar
->tx_janitor
, ar9170_tx_janitor
);
2543 INIT_LIST_HEAD(&ar
->tx_ampdu_list
);
2545 /* all hw supports 2.4 GHz, so set channel to 1 by default */
2546 ar
->channel
= &ar9170_2ghz_chantable
[0];
2548 /* first part of wiphy init */
2549 ar
->hw
->wiphy
->interface_modes
= BIT(NL80211_IFTYPE_STATION
) |
2550 BIT(NL80211_IFTYPE_WDS
) |
2551 BIT(NL80211_IFTYPE_ADHOC
);
2552 ar
->hw
->flags
|= IEEE80211_HW_RX_INCLUDES_FCS
|
2553 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING
|
2554 IEEE80211_HW_SIGNAL_DBM
|
2555 IEEE80211_HW_NOISE_DBM
;
2558 ar
->hw
->flags
|= IEEE80211_HW_AMPDU_AGGREGATION
;
2560 ar9170_band_2GHz
.ht_cap
.ht_supported
= false;
2561 ar9170_band_5GHz
.ht_cap
.ht_supported
= false;
2564 ar
->hw
->queues
= __AR9170_NUM_TXQ
;
2565 ar
->hw
->extra_tx_headroom
= 8;
2566 ar
->hw
->sta_data_size
= sizeof(struct ar9170_sta_info
);
2568 ar
->hw
->max_rates
= 1;
2569 ar
->hw
->max_rate_tries
= 3;
2571 for (i
= 0; i
< ARRAY_SIZE(ar
->noise
); i
++)
2572 ar
->noise
[i
] = -95; /* ATH_DEFAULT_NOISE_FLOOR */
2578 return ERR_PTR(-ENOMEM
);
2581 static int ar9170_read_eeprom(struct ar9170
*ar
)
2583 #define RW 8 /* number of words to read at once */
2584 #define RB (sizeof(u32) * RW)
2585 struct ath_regulatory
*regulatory
= &ar
->common
.regulatory
;
2586 u8
*eeprom
= (void *)&ar
->eeprom
;
2587 u8
*addr
= ar
->eeprom
.mac_address
;
2589 unsigned int rx_streams
, tx_streams
, tx_params
= 0;
2590 int i
, j
, err
, bands
= 0;
2592 BUILD_BUG_ON(sizeof(ar
->eeprom
) & 3);
2594 BUILD_BUG_ON(RB
> AR9170_MAX_CMD_LEN
- 4);
2596 /* don't want to handle trailing remains */
2597 BUILD_BUG_ON(sizeof(ar
->eeprom
) % RB
);
2600 for (i
= 0; i
< sizeof(ar
->eeprom
)/RB
; i
++) {
2601 for (j
= 0; j
< RW
; j
++)
2602 offsets
[j
] = cpu_to_le32(AR9170_EEPROM_START
+
2605 err
= ar
->exec_cmd(ar
, AR9170_CMD_RREG
,
2606 RB
, (u8
*) &offsets
,
2607 RB
, eeprom
+ RB
* i
);
2615 if (ar
->eeprom
.length
== cpu_to_le16(0xFFFF))
2618 if (ar
->eeprom
.operating_flags
& AR9170_OPFLAG_2GHZ
) {
2619 ar
->hw
->wiphy
->bands
[IEEE80211_BAND_2GHZ
] = &ar9170_band_2GHz
;
2622 if (ar
->eeprom
.operating_flags
& AR9170_OPFLAG_5GHZ
) {
2623 ar
->hw
->wiphy
->bands
[IEEE80211_BAND_5GHZ
] = &ar9170_band_5GHz
;
2627 rx_streams
= hweight8(ar
->eeprom
.rx_mask
);
2628 tx_streams
= hweight8(ar
->eeprom
.tx_mask
);
2630 if (rx_streams
!= tx_streams
)
2631 tx_params
= IEEE80211_HT_MCS_TX_RX_DIFF
;
2633 if (tx_streams
>= 1 && tx_streams
<= IEEE80211_HT_MCS_TX_MAX_STREAMS
)
2634 tx_params
= (tx_streams
- 1) <<
2635 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT
;
2637 ar9170_band_2GHz
.ht_cap
.mcs
.tx_params
|= tx_params
;
2638 ar9170_band_5GHz
.ht_cap
.mcs
.tx_params
|= tx_params
;
2641 * I measured this, a bandswitch takes roughly
2642 * 135 ms and a frequency switch about 80.
2644 * FIXME: measure these values again once EEPROM settings
2645 * are used, that will influence them!
2648 ar
->hw
->channel_change_time
= 135 * 1000;
2650 ar
->hw
->channel_change_time
= 80 * 1000;
2652 regulatory
->current_rd
= le16_to_cpu(ar
->eeprom
.reg_domain
[0]);
2653 regulatory
->current_rd_ext
= le16_to_cpu(ar
->eeprom
.reg_domain
[1]);
2655 /* second part of wiphy init */
2656 SET_IEEE80211_PERM_ADDR(ar
->hw
, addr
);
2658 return bands
? 0 : -EINVAL
;
2661 static int ar9170_reg_notifier(struct wiphy
*wiphy
,
2662 struct regulatory_request
*request
)
2664 struct ieee80211_hw
*hw
= wiphy_to_ieee80211_hw(wiphy
);
2665 struct ar9170
*ar
= hw
->priv
;
2667 return ath_reg_notifier_apply(wiphy
, request
, &ar
->common
.regulatory
);
2670 int ar9170_register(struct ar9170
*ar
, struct device
*pdev
)
2672 struct ath_regulatory
*regulatory
= &ar
->common
.regulatory
;
2675 /* try to read EEPROM, init MAC addr */
2676 err
= ar9170_read_eeprom(ar
);
2680 err
= ath_regd_init(regulatory
, ar
->hw
->wiphy
,
2681 ar9170_reg_notifier
);
2685 err
= ieee80211_register_hw(ar
->hw
);
2689 if (!ath_is_world_regd(regulatory
))
2690 regulatory_hint(ar
->hw
->wiphy
, regulatory
->alpha2
);
2692 err
= ar9170_init_leds(ar
);
2696 #ifdef CONFIG_AR9170_LEDS
2697 err
= ar9170_register_leds(ar
);
2700 #endif /* CONFIG_AR9170_LEDS */
2702 dev_info(pdev
, "Atheros AR9170 is registered as '%s'\n",
2703 wiphy_name(ar
->hw
->wiphy
));
2705 ar
->registered
= true;
2709 ieee80211_unregister_hw(ar
->hw
);
2715 void ar9170_unregister(struct ar9170
*ar
)
2717 if (ar
->registered
) {
2718 #ifdef CONFIG_AR9170_LEDS
2719 ar9170_unregister_leds(ar
);
2720 #endif /* CONFIG_AR9170_LEDS */
2722 ieee80211_unregister_hw(ar
->hw
);
2725 kfree_skb(ar
->rx_failover
);
2726 mutex_destroy(&ar
->mutex
);