ath9k: rework tx queue selection and fix queue stopping/waking
[linux-2.6.git] / drivers / net / wireless / ath / ath9k / htc_drv_txrx.c
blob5324ffd96ec76e18cbd951a1581cbacf041896d8
1 /*
2 * Copyright (c) 2010 Atheros Communications Inc.
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include "htc.h"
19 /******/
20 /* TX */
21 /******/
23 static const int subtype_txq_to_hwq[] = {
24 [WME_AC_BE] = ATH_TXQ_AC_BE,
25 [WME_AC_BK] = ATH_TXQ_AC_BK,
26 [WME_AC_VI] = ATH_TXQ_AC_VI,
27 [WME_AC_VO] = ATH_TXQ_AC_VO,
30 #define ATH9K_HTC_INIT_TXQ(subtype) do { \
31 qi.tqi_subtype = subtype_txq_to_hwq[subtype]; \
32 qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT; \
33 qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT; \
34 qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT; \
35 qi.tqi_physCompBuf = 0; \
36 qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE | \
37 TXQ_FLAG_TXDESCINT_ENABLE; \
38 } while (0)
40 int get_hw_qnum(u16 queue, int *hwq_map)
42 switch (queue) {
43 case 0:
44 return hwq_map[WME_AC_VO];
45 case 1:
46 return hwq_map[WME_AC_VI];
47 case 2:
48 return hwq_map[WME_AC_BE];
49 case 3:
50 return hwq_map[WME_AC_BK];
51 default:
52 return hwq_map[WME_AC_BE];
56 int ath_htc_txq_update(struct ath9k_htc_priv *priv, int qnum,
57 struct ath9k_tx_queue_info *qinfo)
59 struct ath_hw *ah = priv->ah;
60 int error = 0;
61 struct ath9k_tx_queue_info qi;
63 ath9k_hw_get_txq_props(ah, qnum, &qi);
65 qi.tqi_aifs = qinfo->tqi_aifs;
66 qi.tqi_cwmin = qinfo->tqi_cwmin / 2; /* XXX */
67 qi.tqi_cwmax = qinfo->tqi_cwmax;
68 qi.tqi_burstTime = qinfo->tqi_burstTime;
69 qi.tqi_readyTime = qinfo->tqi_readyTime;
71 if (!ath9k_hw_set_txq_props(ah, qnum, &qi)) {
72 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
73 "Unable to update hardware queue %u!\n", qnum);
74 error = -EIO;
75 } else {
76 ath9k_hw_resettxqueue(ah, qnum);
79 return error;
82 int ath9k_htc_tx_start(struct ath9k_htc_priv *priv, struct sk_buff *skb)
84 struct ieee80211_hdr *hdr;
85 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
86 struct ieee80211_sta *sta = tx_info->control.sta;
87 struct ath9k_htc_sta *ista;
88 struct ath9k_htc_tx_ctl tx_ctl;
89 enum htc_endpoint_id epid;
90 u16 qnum;
91 __le16 fc;
92 u8 *tx_fhdr;
93 u8 sta_idx, vif_idx;
95 hdr = (struct ieee80211_hdr *) skb->data;
96 fc = hdr->frame_control;
98 if (tx_info->control.vif &&
99 (struct ath9k_htc_vif *) tx_info->control.vif->drv_priv)
100 vif_idx = ((struct ath9k_htc_vif *)
101 tx_info->control.vif->drv_priv)->index;
102 else
103 vif_idx = priv->nvifs;
105 if (sta) {
106 ista = (struct ath9k_htc_sta *) sta->drv_priv;
107 sta_idx = ista->index;
108 } else {
109 sta_idx = 0;
112 memset(&tx_ctl, 0, sizeof(struct ath9k_htc_tx_ctl));
114 if (ieee80211_is_data(fc)) {
115 struct tx_frame_hdr tx_hdr;
116 u8 *qc;
118 memset(&tx_hdr, 0, sizeof(struct tx_frame_hdr));
120 tx_hdr.node_idx = sta_idx;
121 tx_hdr.vif_idx = vif_idx;
123 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) {
124 tx_ctl.type = ATH9K_HTC_AMPDU;
125 tx_hdr.data_type = ATH9K_HTC_AMPDU;
126 } else {
127 tx_ctl.type = ATH9K_HTC_NORMAL;
128 tx_hdr.data_type = ATH9K_HTC_NORMAL;
131 if (ieee80211_is_data(fc)) {
132 qc = ieee80211_get_qos_ctl(hdr);
133 tx_hdr.tidno = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
136 /* Check for RTS protection */
137 if (priv->hw->wiphy->rts_threshold != (u32) -1)
138 if (skb->len > priv->hw->wiphy->rts_threshold)
139 tx_hdr.flags |= ATH9K_HTC_TX_RTSCTS;
141 /* CTS-to-self */
142 if (!(tx_hdr.flags & ATH9K_HTC_TX_RTSCTS) &&
143 (priv->op_flags & OP_PROTECT_ENABLE))
144 tx_hdr.flags |= ATH9K_HTC_TX_CTSONLY;
146 tx_hdr.key_type = ath9k_cmn_get_hw_crypto_keytype(skb);
147 if (tx_hdr.key_type == ATH9K_KEY_TYPE_CLEAR)
148 tx_hdr.keyix = (u8) ATH9K_TXKEYIX_INVALID;
149 else
150 tx_hdr.keyix = tx_info->control.hw_key->hw_key_idx;
152 tx_fhdr = skb_push(skb, sizeof(tx_hdr));
153 memcpy(tx_fhdr, (u8 *) &tx_hdr, sizeof(tx_hdr));
155 qnum = skb_get_queue_mapping(skb);
157 switch (qnum) {
158 case 0:
159 TX_QSTAT_INC(WME_AC_VO);
160 epid = priv->data_vo_ep;
161 break;
162 case 1:
163 TX_QSTAT_INC(WME_AC_VI);
164 epid = priv->data_vi_ep;
165 break;
166 case 2:
167 TX_QSTAT_INC(WME_AC_BE);
168 epid = priv->data_be_ep;
169 break;
170 case 3:
171 default:
172 TX_QSTAT_INC(WME_AC_BK);
173 epid = priv->data_bk_ep;
174 break;
176 } else {
177 struct tx_mgmt_hdr mgmt_hdr;
179 memset(&mgmt_hdr, 0, sizeof(struct tx_mgmt_hdr));
181 tx_ctl.type = ATH9K_HTC_NORMAL;
183 mgmt_hdr.node_idx = sta_idx;
184 mgmt_hdr.vif_idx = vif_idx;
185 mgmt_hdr.tidno = 0;
186 mgmt_hdr.flags = 0;
188 mgmt_hdr.key_type = ath9k_cmn_get_hw_crypto_keytype(skb);
189 if (mgmt_hdr.key_type == ATH9K_KEY_TYPE_CLEAR)
190 mgmt_hdr.keyix = (u8) ATH9K_TXKEYIX_INVALID;
191 else
192 mgmt_hdr.keyix = tx_info->control.hw_key->hw_key_idx;
194 tx_fhdr = skb_push(skb, sizeof(mgmt_hdr));
195 memcpy(tx_fhdr, (u8 *) &mgmt_hdr, sizeof(mgmt_hdr));
196 epid = priv->mgmt_ep;
199 return htc_send(priv->htc, skb, epid, &tx_ctl);
202 static bool ath9k_htc_check_tx_aggr(struct ath9k_htc_priv *priv,
203 struct ath9k_htc_sta *ista, u8 tid)
205 bool ret = false;
207 spin_lock_bh(&priv->tx_lock);
208 if ((tid < ATH9K_HTC_MAX_TID) && (ista->tid_state[tid] == AGGR_STOP))
209 ret = true;
210 spin_unlock_bh(&priv->tx_lock);
212 return ret;
215 void ath9k_tx_tasklet(unsigned long data)
217 struct ath9k_htc_priv *priv = (struct ath9k_htc_priv *)data;
218 struct ieee80211_sta *sta;
219 struct ieee80211_hdr *hdr;
220 struct ieee80211_tx_info *tx_info;
221 struct sk_buff *skb = NULL;
222 __le16 fc;
224 while ((skb = skb_dequeue(&priv->tx_queue)) != NULL) {
226 hdr = (struct ieee80211_hdr *) skb->data;
227 fc = hdr->frame_control;
228 tx_info = IEEE80211_SKB_CB(skb);
230 memset(&tx_info->status, 0, sizeof(tx_info->status));
232 rcu_read_lock();
234 sta = ieee80211_find_sta(priv->vif, hdr->addr1);
235 if (!sta) {
236 rcu_read_unlock();
237 ieee80211_tx_status(priv->hw, skb);
238 continue;
241 /* Check if we need to start aggregation */
243 if (sta && conf_is_ht(&priv->hw->conf) &&
244 !(skb->protocol == cpu_to_be16(ETH_P_PAE))) {
245 if (ieee80211_is_data_qos(fc)) {
246 u8 *qc, tid;
247 struct ath9k_htc_sta *ista;
249 qc = ieee80211_get_qos_ctl(hdr);
250 tid = qc[0] & 0xf;
251 ista = (struct ath9k_htc_sta *)sta->drv_priv;
253 if (ath9k_htc_check_tx_aggr(priv, ista, tid)) {
254 ieee80211_start_tx_ba_session(sta, tid);
255 spin_lock_bh(&priv->tx_lock);
256 ista->tid_state[tid] = AGGR_PROGRESS;
257 spin_unlock_bh(&priv->tx_lock);
262 rcu_read_unlock();
264 /* Send status to mac80211 */
265 ieee80211_tx_status(priv->hw, skb);
268 /* Wake TX queues if needed */
269 spin_lock_bh(&priv->tx_lock);
270 if (priv->tx_queues_stop) {
271 priv->tx_queues_stop = false;
272 spin_unlock_bh(&priv->tx_lock);
273 ath_print(ath9k_hw_common(priv->ah), ATH_DBG_XMIT,
274 "Waking up TX queues\n");
275 ieee80211_wake_queues(priv->hw);
276 return;
278 spin_unlock_bh(&priv->tx_lock);
281 void ath9k_htc_txep(void *drv_priv, struct sk_buff *skb,
282 enum htc_endpoint_id ep_id, bool txok)
284 struct ath9k_htc_priv *priv = (struct ath9k_htc_priv *) drv_priv;
285 struct ath_common *common = ath9k_hw_common(priv->ah);
286 struct ieee80211_tx_info *tx_info;
288 if (!skb)
289 return;
291 if (ep_id == priv->mgmt_ep) {
292 skb_pull(skb, sizeof(struct tx_mgmt_hdr));
293 } else if ((ep_id == priv->data_bk_ep) ||
294 (ep_id == priv->data_be_ep) ||
295 (ep_id == priv->data_vi_ep) ||
296 (ep_id == priv->data_vo_ep)) {
297 skb_pull(skb, sizeof(struct tx_frame_hdr));
298 } else {
299 ath_print(common, ATH_DBG_FATAL,
300 "Unsupported TX EPID: %d\n", ep_id);
301 dev_kfree_skb_any(skb);
302 return;
305 tx_info = IEEE80211_SKB_CB(skb);
307 if (txok)
308 tx_info->flags |= IEEE80211_TX_STAT_ACK;
310 skb_queue_tail(&priv->tx_queue, skb);
311 tasklet_schedule(&priv->tx_tasklet);
314 int ath9k_tx_init(struct ath9k_htc_priv *priv)
316 skb_queue_head_init(&priv->tx_queue);
317 return 0;
320 void ath9k_tx_cleanup(struct ath9k_htc_priv *priv)
325 bool ath9k_htc_txq_setup(struct ath9k_htc_priv *priv, int subtype)
327 struct ath_hw *ah = priv->ah;
328 struct ath_common *common = ath9k_hw_common(ah);
329 struct ath9k_tx_queue_info qi;
330 int qnum;
332 memset(&qi, 0, sizeof(qi));
333 ATH9K_HTC_INIT_TXQ(subtype);
335 qnum = ath9k_hw_setuptxqueue(priv->ah, ATH9K_TX_QUEUE_DATA, &qi);
336 if (qnum == -1)
337 return false;
339 if (qnum >= ARRAY_SIZE(priv->hwq_map)) {
340 ath_print(common, ATH_DBG_FATAL,
341 "qnum %u out of range, max %u!\n",
342 qnum, (unsigned int)ARRAY_SIZE(priv->hwq_map));
343 ath9k_hw_releasetxqueue(ah, qnum);
344 return false;
347 priv->hwq_map[subtype] = qnum;
348 return true;
351 int ath9k_htc_cabq_setup(struct ath9k_htc_priv *priv)
353 struct ath9k_tx_queue_info qi;
355 memset(&qi, 0, sizeof(qi));
356 ATH9K_HTC_INIT_TXQ(0);
358 return ath9k_hw_setuptxqueue(priv->ah, ATH9K_TX_QUEUE_CAB, &qi);
361 /******/
362 /* RX */
363 /******/
366 * Calculate the RX filter to be set in the HW.
368 u32 ath9k_htc_calcrxfilter(struct ath9k_htc_priv *priv)
370 #define RX_FILTER_PRESERVE (ATH9K_RX_FILTER_PHYERR | ATH9K_RX_FILTER_PHYRADAR)
372 struct ath_hw *ah = priv->ah;
373 u32 rfilt;
375 rfilt = (ath9k_hw_getrxfilter(ah) & RX_FILTER_PRESERVE)
376 | ATH9K_RX_FILTER_UCAST | ATH9K_RX_FILTER_BCAST
377 | ATH9K_RX_FILTER_MCAST;
379 if (priv->rxfilter & FIF_PROBE_REQ)
380 rfilt |= ATH9K_RX_FILTER_PROBEREQ;
383 * Set promiscuous mode when FIF_PROMISC_IN_BSS is enabled for station
384 * mode interface or when in monitor mode. AP mode does not need this
385 * since it receives all in-BSS frames anyway.
387 if (((ah->opmode != NL80211_IFTYPE_AP) &&
388 (priv->rxfilter & FIF_PROMISC_IN_BSS)) ||
389 (ah->opmode == NL80211_IFTYPE_MONITOR))
390 rfilt |= ATH9K_RX_FILTER_PROM;
392 if (priv->rxfilter & FIF_CONTROL)
393 rfilt |= ATH9K_RX_FILTER_CONTROL;
395 if ((ah->opmode == NL80211_IFTYPE_STATION) &&
396 !(priv->rxfilter & FIF_BCN_PRBRESP_PROMISC))
397 rfilt |= ATH9K_RX_FILTER_MYBEACON;
398 else
399 rfilt |= ATH9K_RX_FILTER_BEACON;
401 if (conf_is_ht(&priv->hw->conf))
402 rfilt |= ATH9K_RX_FILTER_COMP_BAR;
404 return rfilt;
406 #undef RX_FILTER_PRESERVE
410 * Recv initialization for opmode change.
412 static void ath9k_htc_opmode_init(struct ath9k_htc_priv *priv)
414 struct ath_hw *ah = priv->ah;
415 struct ath_common *common = ath9k_hw_common(ah);
417 u32 rfilt, mfilt[2];
419 /* configure rx filter */
420 rfilt = ath9k_htc_calcrxfilter(priv);
421 ath9k_hw_setrxfilter(ah, rfilt);
423 /* configure bssid mask */
424 ath_hw_setbssidmask(common);
426 /* configure operational mode */
427 ath9k_hw_setopmode(ah);
429 /* calculate and install multicast filter */
430 mfilt[0] = mfilt[1] = ~0;
431 ath9k_hw_setmcastfilter(ah, mfilt[0], mfilt[1]);
434 void ath9k_host_rx_init(struct ath9k_htc_priv *priv)
436 ath9k_hw_rxena(priv->ah);
437 ath9k_htc_opmode_init(priv);
438 ath9k_hw_startpcureceive(priv->ah, (priv->op_flags & OP_SCANNING));
439 priv->rx.last_rssi = ATH_RSSI_DUMMY_MARKER;
442 static void ath9k_process_rate(struct ieee80211_hw *hw,
443 struct ieee80211_rx_status *rxs,
444 u8 rx_rate, u8 rs_flags)
446 struct ieee80211_supported_band *sband;
447 enum ieee80211_band band;
448 unsigned int i = 0;
450 if (rx_rate & 0x80) {
451 /* HT rate */
452 rxs->flag |= RX_FLAG_HT;
453 if (rs_flags & ATH9K_RX_2040)
454 rxs->flag |= RX_FLAG_40MHZ;
455 if (rs_flags & ATH9K_RX_GI)
456 rxs->flag |= RX_FLAG_SHORT_GI;
457 rxs->rate_idx = rx_rate & 0x7f;
458 return;
461 band = hw->conf.channel->band;
462 sband = hw->wiphy->bands[band];
464 for (i = 0; i < sband->n_bitrates; i++) {
465 if (sband->bitrates[i].hw_value == rx_rate) {
466 rxs->rate_idx = i;
467 return;
469 if (sband->bitrates[i].hw_value_short == rx_rate) {
470 rxs->rate_idx = i;
471 rxs->flag |= RX_FLAG_SHORTPRE;
472 return;
478 static bool ath9k_rx_prepare(struct ath9k_htc_priv *priv,
479 struct ath9k_htc_rxbuf *rxbuf,
480 struct ieee80211_rx_status *rx_status)
483 struct ieee80211_hdr *hdr;
484 struct ieee80211_hw *hw = priv->hw;
485 struct sk_buff *skb = rxbuf->skb;
486 struct ath_common *common = ath9k_hw_common(priv->ah);
487 struct ath_htc_rx_status *rxstatus;
488 int hdrlen, padpos, padsize;
489 int last_rssi = ATH_RSSI_DUMMY_MARKER;
490 __le16 fc;
492 if (skb->len <= HTC_RX_FRAME_HEADER_SIZE) {
493 ath_print(common, ATH_DBG_FATAL,
494 "Corrupted RX frame, dropping\n");
495 goto rx_next;
498 rxstatus = (struct ath_htc_rx_status *)skb->data;
500 if (be16_to_cpu(rxstatus->rs_datalen) -
501 (skb->len - HTC_RX_FRAME_HEADER_SIZE) != 0) {
502 ath_print(common, ATH_DBG_FATAL,
503 "Corrupted RX data len, dropping "
504 "(dlen: %d, skblen: %d)\n",
505 rxstatus->rs_datalen, skb->len);
506 goto rx_next;
509 /* Get the RX status information */
510 memcpy(&rxbuf->rxstatus, rxstatus, HTC_RX_FRAME_HEADER_SIZE);
511 skb_pull(skb, HTC_RX_FRAME_HEADER_SIZE);
513 hdr = (struct ieee80211_hdr *)skb->data;
514 fc = hdr->frame_control;
515 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
517 padpos = ath9k_cmn_padpos(fc);
519 padsize = padpos & 3;
520 if (padsize && skb->len >= padpos+padsize+FCS_LEN) {
521 memmove(skb->data + padsize, skb->data, padpos);
522 skb_pull(skb, padsize);
525 memset(rx_status, 0, sizeof(struct ieee80211_rx_status));
527 if (rxbuf->rxstatus.rs_status != 0) {
528 if (rxbuf->rxstatus.rs_status & ATH9K_RXERR_CRC)
529 rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
530 if (rxbuf->rxstatus.rs_status & ATH9K_RXERR_PHY)
531 goto rx_next;
533 if (rxbuf->rxstatus.rs_status & ATH9K_RXERR_DECRYPT) {
534 /* FIXME */
535 } else if (rxbuf->rxstatus.rs_status & ATH9K_RXERR_MIC) {
536 if (ieee80211_is_ctl(fc))
538 * Sometimes, we get invalid
539 * MIC failures on valid control frames.
540 * Remove these mic errors.
542 rxbuf->rxstatus.rs_status &= ~ATH9K_RXERR_MIC;
543 else
544 rx_status->flag |= RX_FLAG_MMIC_ERROR;
548 * Reject error frames with the exception of
549 * decryption and MIC failures. For monitor mode,
550 * we also ignore the CRC error.
552 if (priv->ah->opmode == NL80211_IFTYPE_MONITOR) {
553 if (rxbuf->rxstatus.rs_status &
554 ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC |
555 ATH9K_RXERR_CRC))
556 goto rx_next;
557 } else {
558 if (rxbuf->rxstatus.rs_status &
559 ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC)) {
560 goto rx_next;
565 if (!(rxbuf->rxstatus.rs_status & ATH9K_RXERR_DECRYPT)) {
566 u8 keyix;
567 keyix = rxbuf->rxstatus.rs_keyix;
568 if (keyix != ATH9K_RXKEYIX_INVALID) {
569 rx_status->flag |= RX_FLAG_DECRYPTED;
570 } else if (ieee80211_has_protected(fc) &&
571 skb->len >= hdrlen + 4) {
572 keyix = skb->data[hdrlen + 3] >> 6;
573 if (test_bit(keyix, common->keymap))
574 rx_status->flag |= RX_FLAG_DECRYPTED;
578 ath9k_process_rate(hw, rx_status, rxbuf->rxstatus.rs_rate,
579 rxbuf->rxstatus.rs_flags);
581 if (priv->op_flags & OP_ASSOCIATED) {
582 if (rxbuf->rxstatus.rs_rssi != ATH9K_RSSI_BAD &&
583 !rxbuf->rxstatus.rs_moreaggr)
584 ATH_RSSI_LPF(priv->rx.last_rssi,
585 rxbuf->rxstatus.rs_rssi);
587 last_rssi = priv->rx.last_rssi;
589 if (likely(last_rssi != ATH_RSSI_DUMMY_MARKER))
590 rxbuf->rxstatus.rs_rssi = ATH_EP_RND(last_rssi,
591 ATH_RSSI_EP_MULTIPLIER);
593 if (rxbuf->rxstatus.rs_rssi < 0)
594 rxbuf->rxstatus.rs_rssi = 0;
596 if (ieee80211_is_beacon(fc))
597 priv->ah->stats.avgbrssi = rxbuf->rxstatus.rs_rssi;
600 rx_status->mactime = be64_to_cpu(rxbuf->rxstatus.rs_tstamp);
601 rx_status->band = hw->conf.channel->band;
602 rx_status->freq = hw->conf.channel->center_freq;
603 rx_status->signal = rxbuf->rxstatus.rs_rssi + ATH_DEFAULT_NOISE_FLOOR;
604 rx_status->antenna = rxbuf->rxstatus.rs_antenna;
605 rx_status->flag |= RX_FLAG_TSFT;
607 return true;
609 rx_next:
610 return false;
614 * FIXME: Handle FLUSH later on.
616 void ath9k_rx_tasklet(unsigned long data)
618 struct ath9k_htc_priv *priv = (struct ath9k_htc_priv *)data;
619 struct ath9k_htc_rxbuf *rxbuf = NULL, *tmp_buf = NULL;
620 struct ieee80211_rx_status rx_status;
621 struct sk_buff *skb;
622 unsigned long flags;
623 struct ieee80211_hdr *hdr;
625 do {
626 spin_lock_irqsave(&priv->rx.rxbuflock, flags);
627 list_for_each_entry(tmp_buf, &priv->rx.rxbuf, list) {
628 if (tmp_buf->in_process) {
629 rxbuf = tmp_buf;
630 break;
634 if (rxbuf == NULL) {
635 spin_unlock_irqrestore(&priv->rx.rxbuflock, flags);
636 break;
639 if (!rxbuf->skb)
640 goto requeue;
642 if (!ath9k_rx_prepare(priv, rxbuf, &rx_status)) {
643 dev_kfree_skb_any(rxbuf->skb);
644 goto requeue;
647 memcpy(IEEE80211_SKB_RXCB(rxbuf->skb), &rx_status,
648 sizeof(struct ieee80211_rx_status));
649 skb = rxbuf->skb;
650 hdr = (struct ieee80211_hdr *) skb->data;
652 if (ieee80211_is_beacon(hdr->frame_control) && priv->ps_enabled)
653 ieee80211_queue_work(priv->hw, &priv->ps_work);
655 spin_unlock_irqrestore(&priv->rx.rxbuflock, flags);
657 ieee80211_rx(priv->hw, skb);
659 spin_lock_irqsave(&priv->rx.rxbuflock, flags);
660 requeue:
661 rxbuf->in_process = false;
662 rxbuf->skb = NULL;
663 list_move_tail(&rxbuf->list, &priv->rx.rxbuf);
664 rxbuf = NULL;
665 spin_unlock_irqrestore(&priv->rx.rxbuflock, flags);
666 } while (1);
670 void ath9k_htc_rxep(void *drv_priv, struct sk_buff *skb,
671 enum htc_endpoint_id ep_id)
673 struct ath9k_htc_priv *priv = (struct ath9k_htc_priv *)drv_priv;
674 struct ath_hw *ah = priv->ah;
675 struct ath_common *common = ath9k_hw_common(ah);
676 struct ath9k_htc_rxbuf *rxbuf = NULL, *tmp_buf = NULL;
678 spin_lock(&priv->rx.rxbuflock);
679 list_for_each_entry(tmp_buf, &priv->rx.rxbuf, list) {
680 if (!tmp_buf->in_process) {
681 rxbuf = tmp_buf;
682 break;
685 spin_unlock(&priv->rx.rxbuflock);
687 if (rxbuf == NULL) {
688 ath_print(common, ATH_DBG_ANY,
689 "No free RX buffer\n");
690 goto err;
693 spin_lock(&priv->rx.rxbuflock);
694 rxbuf->skb = skb;
695 rxbuf->in_process = true;
696 spin_unlock(&priv->rx.rxbuflock);
698 tasklet_schedule(&priv->rx_tasklet);
699 return;
700 err:
701 dev_kfree_skb_any(skb);
704 /* FIXME: Locking for cleanup/init */
706 void ath9k_rx_cleanup(struct ath9k_htc_priv *priv)
708 struct ath9k_htc_rxbuf *rxbuf, *tbuf;
710 list_for_each_entry_safe(rxbuf, tbuf, &priv->rx.rxbuf, list) {
711 list_del(&rxbuf->list);
712 if (rxbuf->skb)
713 dev_kfree_skb_any(rxbuf->skb);
714 kfree(rxbuf);
718 int ath9k_rx_init(struct ath9k_htc_priv *priv)
720 struct ath_hw *ah = priv->ah;
721 struct ath_common *common = ath9k_hw_common(ah);
722 struct ath9k_htc_rxbuf *rxbuf;
723 int i = 0;
725 INIT_LIST_HEAD(&priv->rx.rxbuf);
726 spin_lock_init(&priv->rx.rxbuflock);
728 for (i = 0; i < ATH9K_HTC_RXBUF; i++) {
729 rxbuf = kzalloc(sizeof(struct ath9k_htc_rxbuf), GFP_KERNEL);
730 if (rxbuf == NULL) {
731 ath_print(common, ATH_DBG_FATAL,
732 "Unable to allocate RX buffers\n");
733 goto err;
735 list_add_tail(&rxbuf->list, &priv->rx.rxbuf);
738 return 0;
740 err:
741 ath9k_rx_cleanup(priv);
742 return -ENOMEM;