ath9k_htc: Allow upto two simultaneous interfaces
[pandora-kernel.git] / drivers / net / wireless / ath / ath9k / htc_drv_txrx.c
1 /*
2  * Copyright (c) 2010 Atheros Communications Inc.
3  *
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.
7  *
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.
15  */
16
17 #include "htc.h"
18
19 /******/
20 /* TX */
21 /******/
22
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,
28 };
29
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)
39
40 int get_hw_qnum(u16 queue, int *hwq_map)
41 {
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];
53         }
54 }
55
56 int ath_htc_txq_update(struct ath9k_htc_priv *priv, int qnum,
57                        struct ath9k_tx_queue_info *qinfo)
58 {
59         struct ath_hw *ah = priv->ah;
60         int error = 0;
61         struct ath9k_tx_queue_info qi;
62
63         ath9k_hw_get_txq_props(ah, qnum, &qi);
64
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;
70
71         if (!ath9k_hw_set_txq_props(ah, qnum, &qi)) {
72                 ath_err(ath9k_hw_common(ah),
73                         "Unable to update hardware queue %u!\n", qnum);
74                 error = -EIO;
75         } else {
76                 ath9k_hw_resettxqueue(ah, qnum);
77         }
78
79         return error;
80 }
81
82 int ath9k_htc_tx_start(struct ath9k_htc_priv *priv, struct sk_buff *skb)
83 {
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 ieee80211_vif *vif = tx_info->control.vif;
88         struct ath9k_htc_sta *ista;
89         struct ath9k_htc_vif *avp;
90         struct ath9k_htc_tx_ctl tx_ctl;
91         enum htc_endpoint_id epid;
92         u16 qnum;
93         __le16 fc;
94         u8 *tx_fhdr;
95         u8 sta_idx, vif_idx;
96
97         hdr = (struct ieee80211_hdr *) skb->data;
98         fc = hdr->frame_control;
99
100         /*
101          * Find out on which interface this packet has to be
102          * sent out.
103          */
104         if (vif) {
105                 avp = (struct ath9k_htc_vif *) vif->drv_priv;
106                 vif_idx = avp->index;
107         } else {
108                 if (!priv->ah->is_monitoring) {
109                         ath_dbg(ath9k_hw_common(priv->ah), ATH_DBG_XMIT,
110                                 "VIF is null, but no monitor interface !\n");
111                         return -EINVAL;
112                 }
113
114                 vif_idx = priv->mon_vif_idx;
115         }
116
117         /*
118          * Find out which station this packet is destined for.
119          */
120         if (sta) {
121                 ista = (struct ath9k_htc_sta *) sta->drv_priv;
122                 sta_idx = ista->index;
123         } else {
124                 sta_idx = priv->vif_sta_pos[vif_idx];
125         }
126
127         memset(&tx_ctl, 0, sizeof(struct ath9k_htc_tx_ctl));
128
129         if (ieee80211_is_data(fc)) {
130                 struct tx_frame_hdr tx_hdr;
131                 u32 flags = 0;
132                 u8 *qc;
133
134                 memset(&tx_hdr, 0, sizeof(struct tx_frame_hdr));
135
136                 tx_hdr.node_idx = sta_idx;
137                 tx_hdr.vif_idx = vif_idx;
138
139                 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) {
140                         tx_ctl.type = ATH9K_HTC_AMPDU;
141                         tx_hdr.data_type = ATH9K_HTC_AMPDU;
142                 } else {
143                         tx_ctl.type = ATH9K_HTC_NORMAL;
144                         tx_hdr.data_type = ATH9K_HTC_NORMAL;
145                 }
146
147                 if (ieee80211_is_data_qos(fc)) {
148                         qc = ieee80211_get_qos_ctl(hdr);
149                         tx_hdr.tidno = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
150                 }
151
152                 /* Check for RTS protection */
153                 if (priv->hw->wiphy->rts_threshold != (u32) -1)
154                         if (skb->len > priv->hw->wiphy->rts_threshold)
155                                 flags |= ATH9K_HTC_TX_RTSCTS;
156
157                 /* CTS-to-self */
158                 if (!(flags & ATH9K_HTC_TX_RTSCTS) &&
159                     (priv->op_flags & OP_PROTECT_ENABLE))
160                         flags |= ATH9K_HTC_TX_CTSONLY;
161
162                 tx_hdr.flags = cpu_to_be32(flags);
163                 tx_hdr.key_type = ath9k_cmn_get_hw_crypto_keytype(skb);
164                 if (tx_hdr.key_type == ATH9K_KEY_TYPE_CLEAR)
165                         tx_hdr.keyix = (u8) ATH9K_TXKEYIX_INVALID;
166                 else
167                         tx_hdr.keyix = tx_info->control.hw_key->hw_key_idx;
168
169                 tx_fhdr = skb_push(skb, sizeof(tx_hdr));
170                 memcpy(tx_fhdr, (u8 *) &tx_hdr, sizeof(tx_hdr));
171
172                 qnum = skb_get_queue_mapping(skb);
173
174                 switch (qnum) {
175                 case 0:
176                         TX_QSTAT_INC(WME_AC_VO);
177                         epid = priv->data_vo_ep;
178                         break;
179                 case 1:
180                         TX_QSTAT_INC(WME_AC_VI);
181                         epid = priv->data_vi_ep;
182                         break;
183                 case 2:
184                         TX_QSTAT_INC(WME_AC_BE);
185                         epid = priv->data_be_ep;
186                         break;
187                 case 3:
188                 default:
189                         TX_QSTAT_INC(WME_AC_BK);
190                         epid = priv->data_bk_ep;
191                         break;
192                 }
193         } else {
194                 struct tx_mgmt_hdr mgmt_hdr;
195
196                 memset(&mgmt_hdr, 0, sizeof(struct tx_mgmt_hdr));
197
198                 tx_ctl.type = ATH9K_HTC_NORMAL;
199
200                 mgmt_hdr.node_idx = sta_idx;
201                 mgmt_hdr.vif_idx = vif_idx;
202                 mgmt_hdr.tidno = 0;
203                 mgmt_hdr.flags = 0;
204
205                 mgmt_hdr.key_type = ath9k_cmn_get_hw_crypto_keytype(skb);
206                 if (mgmt_hdr.key_type == ATH9K_KEY_TYPE_CLEAR)
207                         mgmt_hdr.keyix = (u8) ATH9K_TXKEYIX_INVALID;
208                 else
209                         mgmt_hdr.keyix = tx_info->control.hw_key->hw_key_idx;
210
211                 tx_fhdr = skb_push(skb, sizeof(mgmt_hdr));
212                 memcpy(tx_fhdr, (u8 *) &mgmt_hdr, sizeof(mgmt_hdr));
213                 epid = priv->mgmt_ep;
214         }
215
216         return htc_send(priv->htc, skb, epid, &tx_ctl);
217 }
218
219 static bool ath9k_htc_check_tx_aggr(struct ath9k_htc_priv *priv,
220                                     struct ath9k_htc_sta *ista, u8 tid)
221 {
222         bool ret = false;
223
224         spin_lock_bh(&priv->tx_lock);
225         if ((tid < ATH9K_HTC_MAX_TID) && (ista->tid_state[tid] == AGGR_STOP))
226                 ret = true;
227         spin_unlock_bh(&priv->tx_lock);
228
229         return ret;
230 }
231
232 void ath9k_tx_tasklet(unsigned long data)
233 {
234         struct ath9k_htc_priv *priv = (struct ath9k_htc_priv *)data;
235         struct ieee80211_sta *sta;
236         struct ieee80211_hdr *hdr;
237         struct ieee80211_tx_info *tx_info;
238         struct sk_buff *skb = NULL;
239         __le16 fc;
240
241         while ((skb = skb_dequeue(&priv->tx_queue)) != NULL) {
242
243                 hdr = (struct ieee80211_hdr *) skb->data;
244                 fc = hdr->frame_control;
245                 tx_info = IEEE80211_SKB_CB(skb);
246
247                 memset(&tx_info->status, 0, sizeof(tx_info->status));
248
249                 rcu_read_lock();
250
251                 sta = ieee80211_find_sta(priv->vif, hdr->addr1);
252                 if (!sta) {
253                         rcu_read_unlock();
254                         ieee80211_tx_status(priv->hw, skb);
255                         continue;
256                 }
257
258                 /* Check if we need to start aggregation */
259
260                 if (sta && conf_is_ht(&priv->hw->conf) &&
261                     !(skb->protocol == cpu_to_be16(ETH_P_PAE))) {
262                         if (ieee80211_is_data_qos(fc)) {
263                                 u8 *qc, tid;
264                                 struct ath9k_htc_sta *ista;
265
266                                 qc = ieee80211_get_qos_ctl(hdr);
267                                 tid = qc[0] & 0xf;
268                                 ista = (struct ath9k_htc_sta *)sta->drv_priv;
269
270                                 if (ath9k_htc_check_tx_aggr(priv, ista, tid)) {
271                                         ieee80211_start_tx_ba_session(sta, tid, 0);
272                                         spin_lock_bh(&priv->tx_lock);
273                                         ista->tid_state[tid] = AGGR_PROGRESS;
274                                         spin_unlock_bh(&priv->tx_lock);
275                                 }
276                         }
277                 }
278
279                 rcu_read_unlock();
280
281                 /* Send status to mac80211 */
282                 ieee80211_tx_status(priv->hw, skb);
283         }
284
285         /* Wake TX queues if needed */
286         spin_lock_bh(&priv->tx_lock);
287         if (priv->tx_queues_stop) {
288                 priv->tx_queues_stop = false;
289                 spin_unlock_bh(&priv->tx_lock);
290                 ath_dbg(ath9k_hw_common(priv->ah), ATH_DBG_XMIT,
291                         "Waking up TX queues\n");
292                 ieee80211_wake_queues(priv->hw);
293                 return;
294         }
295         spin_unlock_bh(&priv->tx_lock);
296 }
297
298 void ath9k_htc_txep(void *drv_priv, struct sk_buff *skb,
299                     enum htc_endpoint_id ep_id, bool txok)
300 {
301         struct ath9k_htc_priv *priv = (struct ath9k_htc_priv *) drv_priv;
302         struct ath_common *common = ath9k_hw_common(priv->ah);
303         struct ieee80211_tx_info *tx_info;
304
305         if (!skb)
306                 return;
307
308         if (ep_id == priv->mgmt_ep) {
309                 skb_pull(skb, sizeof(struct tx_mgmt_hdr));
310         } else if ((ep_id == priv->data_bk_ep) ||
311                    (ep_id == priv->data_be_ep) ||
312                    (ep_id == priv->data_vi_ep) ||
313                    (ep_id == priv->data_vo_ep)) {
314                 skb_pull(skb, sizeof(struct tx_frame_hdr));
315         } else {
316                 ath_err(common, "Unsupported TX EPID: %d\n", ep_id);
317                 dev_kfree_skb_any(skb);
318                 return;
319         }
320
321         tx_info = IEEE80211_SKB_CB(skb);
322
323         if (txok)
324                 tx_info->flags |= IEEE80211_TX_STAT_ACK;
325
326         skb_queue_tail(&priv->tx_queue, skb);
327         tasklet_schedule(&priv->tx_tasklet);
328 }
329
330 int ath9k_tx_init(struct ath9k_htc_priv *priv)
331 {
332         skb_queue_head_init(&priv->tx_queue);
333         return 0;
334 }
335
336 void ath9k_tx_cleanup(struct ath9k_htc_priv *priv)
337 {
338
339 }
340
341 bool ath9k_htc_txq_setup(struct ath9k_htc_priv *priv, int subtype)
342 {
343         struct ath_hw *ah = priv->ah;
344         struct ath_common *common = ath9k_hw_common(ah);
345         struct ath9k_tx_queue_info qi;
346         int qnum;
347
348         memset(&qi, 0, sizeof(qi));
349         ATH9K_HTC_INIT_TXQ(subtype);
350
351         qnum = ath9k_hw_setuptxqueue(priv->ah, ATH9K_TX_QUEUE_DATA, &qi);
352         if (qnum == -1)
353                 return false;
354
355         if (qnum >= ARRAY_SIZE(priv->hwq_map)) {
356                 ath_err(common, "qnum %u out of range, max %zu!\n",
357                         qnum, ARRAY_SIZE(priv->hwq_map));
358                 ath9k_hw_releasetxqueue(ah, qnum);
359                 return false;
360         }
361
362         priv->hwq_map[subtype] = qnum;
363         return true;
364 }
365
366 int ath9k_htc_cabq_setup(struct ath9k_htc_priv *priv)
367 {
368         struct ath9k_tx_queue_info qi;
369
370         memset(&qi, 0, sizeof(qi));
371         ATH9K_HTC_INIT_TXQ(0);
372
373         return ath9k_hw_setuptxqueue(priv->ah, ATH9K_TX_QUEUE_CAB, &qi);
374 }
375
376 /******/
377 /* RX */
378 /******/
379
380 /*
381  * Calculate the RX filter to be set in the HW.
382  */
383 u32 ath9k_htc_calcrxfilter(struct ath9k_htc_priv *priv)
384 {
385 #define RX_FILTER_PRESERVE (ATH9K_RX_FILTER_PHYERR | ATH9K_RX_FILTER_PHYRADAR)
386
387         struct ath_hw *ah = priv->ah;
388         u32 rfilt;
389
390         rfilt = (ath9k_hw_getrxfilter(ah) & RX_FILTER_PRESERVE)
391                 | ATH9K_RX_FILTER_UCAST | ATH9K_RX_FILTER_BCAST
392                 | ATH9K_RX_FILTER_MCAST;
393
394         if (priv->rxfilter & FIF_PROBE_REQ)
395                 rfilt |= ATH9K_RX_FILTER_PROBEREQ;
396
397         /*
398          * Set promiscuous mode when FIF_PROMISC_IN_BSS is enabled for station
399          * mode interface or when in monitor mode. AP mode does not need this
400          * since it receives all in-BSS frames anyway.
401          */
402         if (((ah->opmode != NL80211_IFTYPE_AP) &&
403              (priv->rxfilter & FIF_PROMISC_IN_BSS)) ||
404             (ah->opmode == NL80211_IFTYPE_MONITOR))
405                 rfilt |= ATH9K_RX_FILTER_PROM;
406
407         if (priv->rxfilter & FIF_CONTROL)
408                 rfilt |= ATH9K_RX_FILTER_CONTROL;
409
410         if ((ah->opmode == NL80211_IFTYPE_STATION) &&
411             !(priv->rxfilter & FIF_BCN_PRBRESP_PROMISC))
412                 rfilt |= ATH9K_RX_FILTER_MYBEACON;
413         else
414                 rfilt |= ATH9K_RX_FILTER_BEACON;
415
416         if (conf_is_ht(&priv->hw->conf))
417                 rfilt |= ATH9K_RX_FILTER_COMP_BAR;
418
419         return rfilt;
420
421 #undef RX_FILTER_PRESERVE
422 }
423
424 /*
425  * Recv initialization for opmode change.
426  */
427 static void ath9k_htc_opmode_init(struct ath9k_htc_priv *priv)
428 {
429         struct ath_hw *ah = priv->ah;
430         struct ath_common *common = ath9k_hw_common(ah);
431
432         u32 rfilt, mfilt[2];
433
434         /* configure rx filter */
435         rfilt = ath9k_htc_calcrxfilter(priv);
436         ath9k_hw_setrxfilter(ah, rfilt);
437
438         /* configure bssid mask */
439         ath_hw_setbssidmask(common);
440
441         /* configure operational mode */
442         ath9k_hw_setopmode(ah);
443
444         /* calculate and install multicast filter */
445         mfilt[0] = mfilt[1] = ~0;
446         ath9k_hw_setmcastfilter(ah, mfilt[0], mfilt[1]);
447 }
448
449 void ath9k_host_rx_init(struct ath9k_htc_priv *priv)
450 {
451         ath9k_hw_rxena(priv->ah);
452         ath9k_htc_opmode_init(priv);
453         ath9k_hw_startpcureceive(priv->ah, (priv->op_flags & OP_SCANNING));
454         priv->rx.last_rssi = ATH_RSSI_DUMMY_MARKER;
455 }
456
457 static void ath9k_process_rate(struct ieee80211_hw *hw,
458                                struct ieee80211_rx_status *rxs,
459                                u8 rx_rate, u8 rs_flags)
460 {
461         struct ieee80211_supported_band *sband;
462         enum ieee80211_band band;
463         unsigned int i = 0;
464
465         if (rx_rate & 0x80) {
466                 /* HT rate */
467                 rxs->flag |= RX_FLAG_HT;
468                 if (rs_flags & ATH9K_RX_2040)
469                         rxs->flag |= RX_FLAG_40MHZ;
470                 if (rs_flags & ATH9K_RX_GI)
471                         rxs->flag |= RX_FLAG_SHORT_GI;
472                 rxs->rate_idx = rx_rate & 0x7f;
473                 return;
474         }
475
476         band = hw->conf.channel->band;
477         sband = hw->wiphy->bands[band];
478
479         for (i = 0; i < sband->n_bitrates; i++) {
480                 if (sband->bitrates[i].hw_value == rx_rate) {
481                         rxs->rate_idx = i;
482                         return;
483                 }
484                 if (sband->bitrates[i].hw_value_short == rx_rate) {
485                         rxs->rate_idx = i;
486                         rxs->flag |= RX_FLAG_SHORTPRE;
487                         return;
488                 }
489         }
490
491 }
492
493 static bool ath9k_rx_prepare(struct ath9k_htc_priv *priv,
494                              struct ath9k_htc_rxbuf *rxbuf,
495                              struct ieee80211_rx_status *rx_status)
496
497 {
498         struct ieee80211_hdr *hdr;
499         struct ieee80211_hw *hw = priv->hw;
500         struct sk_buff *skb = rxbuf->skb;
501         struct ath_common *common = ath9k_hw_common(priv->ah);
502         struct ath_htc_rx_status *rxstatus;
503         int hdrlen, padpos, padsize;
504         int last_rssi = ATH_RSSI_DUMMY_MARKER;
505         __le16 fc;
506
507         if (skb->len <= HTC_RX_FRAME_HEADER_SIZE) {
508                 ath_err(common, "Corrupted RX frame, dropping\n");
509                 goto rx_next;
510         }
511
512         rxstatus = (struct ath_htc_rx_status *)skb->data;
513
514         if (be16_to_cpu(rxstatus->rs_datalen) -
515             (skb->len - HTC_RX_FRAME_HEADER_SIZE) != 0) {
516                 ath_err(common,
517                         "Corrupted RX data len, dropping (dlen: %d, skblen: %d)\n",
518                         rxstatus->rs_datalen, skb->len);
519                 goto rx_next;
520         }
521
522         /* Get the RX status information */
523         memcpy(&rxbuf->rxstatus, rxstatus, HTC_RX_FRAME_HEADER_SIZE);
524         skb_pull(skb, HTC_RX_FRAME_HEADER_SIZE);
525
526         hdr = (struct ieee80211_hdr *)skb->data;
527         fc = hdr->frame_control;
528         hdrlen = ieee80211_get_hdrlen_from_skb(skb);
529
530         padpos = ath9k_cmn_padpos(fc);
531
532         padsize = padpos & 3;
533         if (padsize && skb->len >= padpos+padsize+FCS_LEN) {
534                 memmove(skb->data + padsize, skb->data, padpos);
535                 skb_pull(skb, padsize);
536         }
537
538         memset(rx_status, 0, sizeof(struct ieee80211_rx_status));
539
540         if (rxbuf->rxstatus.rs_status != 0) {
541                 if (rxbuf->rxstatus.rs_status & ATH9K_RXERR_CRC)
542                         rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
543                 if (rxbuf->rxstatus.rs_status & ATH9K_RXERR_PHY)
544                         goto rx_next;
545
546                 if (rxbuf->rxstatus.rs_status & ATH9K_RXERR_DECRYPT) {
547                         /* FIXME */
548                 } else if (rxbuf->rxstatus.rs_status & ATH9K_RXERR_MIC) {
549                         if (ieee80211_is_ctl(fc))
550                                 /*
551                                  * Sometimes, we get invalid
552                                  * MIC failures on valid control frames.
553                                  * Remove these mic errors.
554                                  */
555                                 rxbuf->rxstatus.rs_status &= ~ATH9K_RXERR_MIC;
556                         else
557                                 rx_status->flag |= RX_FLAG_MMIC_ERROR;
558                 }
559
560                 /*
561                  * Reject error frames with the exception of
562                  * decryption and MIC failures. For monitor mode,
563                  * we also ignore the CRC error.
564                  */
565                 if (priv->ah->opmode == NL80211_IFTYPE_MONITOR) {
566                         if (rxbuf->rxstatus.rs_status &
567                             ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC |
568                               ATH9K_RXERR_CRC))
569                                 goto rx_next;
570                 } else {
571                         if (rxbuf->rxstatus.rs_status &
572                             ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC)) {
573                                 goto rx_next;
574                         }
575                 }
576         }
577
578         if (!(rxbuf->rxstatus.rs_status & ATH9K_RXERR_DECRYPT)) {
579                 u8 keyix;
580                 keyix = rxbuf->rxstatus.rs_keyix;
581                 if (keyix != ATH9K_RXKEYIX_INVALID) {
582                         rx_status->flag |= RX_FLAG_DECRYPTED;
583                 } else if (ieee80211_has_protected(fc) &&
584                            skb->len >= hdrlen + 4) {
585                         keyix = skb->data[hdrlen + 3] >> 6;
586                         if (test_bit(keyix, common->keymap))
587                                 rx_status->flag |= RX_FLAG_DECRYPTED;
588                 }
589         }
590
591         ath9k_process_rate(hw, rx_status, rxbuf->rxstatus.rs_rate,
592                            rxbuf->rxstatus.rs_flags);
593
594         if (priv->op_flags & OP_ASSOCIATED) {
595                 if (rxbuf->rxstatus.rs_rssi != ATH9K_RSSI_BAD &&
596                     !rxbuf->rxstatus.rs_moreaggr)
597                         ATH_RSSI_LPF(priv->rx.last_rssi,
598                                      rxbuf->rxstatus.rs_rssi);
599
600                 last_rssi = priv->rx.last_rssi;
601
602                 if (likely(last_rssi != ATH_RSSI_DUMMY_MARKER))
603                         rxbuf->rxstatus.rs_rssi = ATH_EP_RND(last_rssi,
604                                                              ATH_RSSI_EP_MULTIPLIER);
605
606                 if (rxbuf->rxstatus.rs_rssi < 0)
607                         rxbuf->rxstatus.rs_rssi = 0;
608
609                 if (ieee80211_is_beacon(fc))
610                         priv->ah->stats.avgbrssi = rxbuf->rxstatus.rs_rssi;
611         }
612
613         rx_status->mactime = be64_to_cpu(rxbuf->rxstatus.rs_tstamp);
614         rx_status->band = hw->conf.channel->band;
615         rx_status->freq = hw->conf.channel->center_freq;
616         rx_status->signal =  rxbuf->rxstatus.rs_rssi + ATH_DEFAULT_NOISE_FLOOR;
617         rx_status->antenna = rxbuf->rxstatus.rs_antenna;
618         rx_status->flag |= RX_FLAG_TSFT;
619
620         return true;
621
622 rx_next:
623         return false;
624 }
625
626 /*
627  * FIXME: Handle FLUSH later on.
628  */
629 void ath9k_rx_tasklet(unsigned long data)
630 {
631         struct ath9k_htc_priv *priv = (struct ath9k_htc_priv *)data;
632         struct ath9k_htc_rxbuf *rxbuf = NULL, *tmp_buf = NULL;
633         struct ieee80211_rx_status rx_status;
634         struct sk_buff *skb;
635         unsigned long flags;
636         struct ieee80211_hdr *hdr;
637
638         do {
639                 spin_lock_irqsave(&priv->rx.rxbuflock, flags);
640                 list_for_each_entry(tmp_buf, &priv->rx.rxbuf, list) {
641                         if (tmp_buf->in_process) {
642                                 rxbuf = tmp_buf;
643                                 break;
644                         }
645                 }
646
647                 if (rxbuf == NULL) {
648                         spin_unlock_irqrestore(&priv->rx.rxbuflock, flags);
649                         break;
650                 }
651
652                 if (!rxbuf->skb)
653                         goto requeue;
654
655                 if (!ath9k_rx_prepare(priv, rxbuf, &rx_status)) {
656                         dev_kfree_skb_any(rxbuf->skb);
657                         goto requeue;
658                 }
659
660                 memcpy(IEEE80211_SKB_RXCB(rxbuf->skb), &rx_status,
661                        sizeof(struct ieee80211_rx_status));
662                 skb = rxbuf->skb;
663                 hdr = (struct ieee80211_hdr *) skb->data;
664
665                 if (ieee80211_is_beacon(hdr->frame_control) && priv->ps_enabled)
666                                 ieee80211_queue_work(priv->hw, &priv->ps_work);
667
668                 spin_unlock_irqrestore(&priv->rx.rxbuflock, flags);
669
670                 ieee80211_rx(priv->hw, skb);
671
672                 spin_lock_irqsave(&priv->rx.rxbuflock, flags);
673 requeue:
674                 rxbuf->in_process = false;
675                 rxbuf->skb = NULL;
676                 list_move_tail(&rxbuf->list, &priv->rx.rxbuf);
677                 rxbuf = NULL;
678                 spin_unlock_irqrestore(&priv->rx.rxbuflock, flags);
679         } while (1);
680
681 }
682
683 void ath9k_htc_rxep(void *drv_priv, struct sk_buff *skb,
684                     enum htc_endpoint_id ep_id)
685 {
686         struct ath9k_htc_priv *priv = (struct ath9k_htc_priv *)drv_priv;
687         struct ath_hw *ah = priv->ah;
688         struct ath_common *common = ath9k_hw_common(ah);
689         struct ath9k_htc_rxbuf *rxbuf = NULL, *tmp_buf = NULL;
690
691         spin_lock(&priv->rx.rxbuflock);
692         list_for_each_entry(tmp_buf, &priv->rx.rxbuf, list) {
693                 if (!tmp_buf->in_process) {
694                         rxbuf = tmp_buf;
695                         break;
696                 }
697         }
698         spin_unlock(&priv->rx.rxbuflock);
699
700         if (rxbuf == NULL) {
701                 ath_dbg(common, ATH_DBG_ANY,
702                         "No free RX buffer\n");
703                 goto err;
704         }
705
706         spin_lock(&priv->rx.rxbuflock);
707         rxbuf->skb = skb;
708         rxbuf->in_process = true;
709         spin_unlock(&priv->rx.rxbuflock);
710
711         tasklet_schedule(&priv->rx_tasklet);
712         return;
713 err:
714         dev_kfree_skb_any(skb);
715 }
716
717 /* FIXME: Locking for cleanup/init */
718
719 void ath9k_rx_cleanup(struct ath9k_htc_priv *priv)
720 {
721         struct ath9k_htc_rxbuf *rxbuf, *tbuf;
722
723         list_for_each_entry_safe(rxbuf, tbuf, &priv->rx.rxbuf, list) {
724                 list_del(&rxbuf->list);
725                 if (rxbuf->skb)
726                         dev_kfree_skb_any(rxbuf->skb);
727                 kfree(rxbuf);
728         }
729 }
730
731 int ath9k_rx_init(struct ath9k_htc_priv *priv)
732 {
733         struct ath_hw *ah = priv->ah;
734         struct ath_common *common = ath9k_hw_common(ah);
735         struct ath9k_htc_rxbuf *rxbuf;
736         int i = 0;
737
738         INIT_LIST_HEAD(&priv->rx.rxbuf);
739         spin_lock_init(&priv->rx.rxbuflock);
740
741         for (i = 0; i < ATH9K_HTC_RXBUF; i++) {
742                 rxbuf = kzalloc(sizeof(struct ath9k_htc_rxbuf), GFP_KERNEL);
743                 if (rxbuf == NULL) {
744                         ath_err(common, "Unable to allocate RX buffers\n");
745                         goto err;
746                 }
747                 list_add_tail(&rxbuf->list, &priv->rx.rxbuf);
748         }
749
750         return 0;
751
752 err:
753         ath9k_rx_cleanup(priv);
754         return -ENOMEM;
755 }