blob: b29a86a26c13a20ca643ca7a8ff16bcad74beb1a [file] [log] [blame]
Kalle Valo5e3dd152013-06-12 20:52:10 +03001/*
2 * Copyright (c) 2005-2011 Atheros Communications Inc.
3 * Copyright (c) 2011-2013 Qualcomm Atheros, Inc.
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#include "core.h"
19#include "txrx.h"
20#include "htt.h"
21#include "mac.h"
22#include "debug.h"
23
24static void ath10k_report_offchan_tx(struct ath10k *ar, struct sk_buff *skb)
25{
Michal Kaziore0813d32015-11-18 06:59:18 +010026 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
27
28 if (likely(!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN)))
29 return;
30
31 if (ath10k_mac_tx_frm_has_freq(ar))
Kalle Valo5e3dd152013-06-12 20:52:10 +030032 return;
33
34 /* If the original wait_for_completion() timed out before
35 * {data,mgmt}_tx_completed() was called then we could complete
36 * offchan_tx_completed for a different skb. Prevent this by using
37 * offchan_tx_skb. */
38 spin_lock_bh(&ar->data_lock);
39 if (ar->offchan_tx_skb != skb) {
Michal Kazior7aa7a722014-08-25 12:09:38 +020040 ath10k_warn(ar, "completed old offchannel frame\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +030041 goto out;
42 }
43
44 complete(&ar->offchan_tx_completed);
45 ar->offchan_tx_skb = NULL; /* just for sanity */
46
Michal Kazior7aa7a722014-08-25 12:09:38 +020047 ath10k_dbg(ar, ATH10K_DBG_HTT, "completed offchannel skb %p\n", skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +030048out:
49 spin_unlock_bh(&ar->data_lock);
50}
51
Rajkumar Manoharancac08552016-03-09 20:25:46 +053052int ath10k_txrx_tx_unref(struct ath10k_htt *htt,
53 const struct htt_tx_done *tx_done)
Kalle Valo5e3dd152013-06-12 20:52:10 +030054{
Michal Kazior7aa7a722014-08-25 12:09:38 +020055 struct ath10k *ar = htt->ar;
56 struct device *dev = ar->dev;
Kalle Valo5e3dd152013-06-12 20:52:10 +030057 struct ieee80211_tx_info *info;
Michal Kazior3cc0fef2016-03-06 16:14:41 +020058 struct ieee80211_txq *txq;
Michal Kazior1f8bb152013-09-18 14:43:22 +020059 struct ath10k_skb_cb *skb_cb;
Michal Kazior3cc0fef2016-03-06 16:14:41 +020060 struct ath10k_txq *artxq;
Michal Kazior1f8bb152013-09-18 14:43:22 +020061 struct sk_buff *msdu;
Kalle Valo5e3dd152013-06-12 20:52:10 +030062
Sujith Manoharan55314fc2015-04-01 22:53:21 +030063 ath10k_dbg(ar, ATH10K_DBG_HTT,
Rajkumar Manoharan59465fe2016-03-22 17:22:11 +053064 "htt tx completion msdu_id %u status %d\n",
65 tx_done->msdu_id, tx_done->status);
Kalle Valo5e3dd152013-06-12 20:52:10 +030066
Michal Kazior0a89f8a2013-09-18 14:43:20 +020067 if (tx_done->msdu_id >= htt->max_num_pending_tx) {
Michal Kazior7aa7a722014-08-25 12:09:38 +020068 ath10k_warn(ar, "warning: msdu_id %d too big, ignoring\n",
Michal Kazior0a89f8a2013-09-18 14:43:20 +020069 tx_done->msdu_id);
Rajkumar Manoharancac08552016-03-09 20:25:46 +053070 return -EINVAL;
Michal Kazior0a89f8a2013-09-18 14:43:20 +020071 }
72
Qi Zhou005fb162015-07-22 16:38:24 -040073 spin_lock_bh(&htt->tx_lock);
Michal Kazior89d6d832015-01-24 12:14:51 +020074 msdu = idr_find(&htt->pending_tx, tx_done->msdu_id);
75 if (!msdu) {
76 ath10k_warn(ar, "received tx completion for invalid msdu_id: %d\n",
77 tx_done->msdu_id);
Qi Zhou005fb162015-07-22 16:38:24 -040078 spin_unlock_bh(&htt->tx_lock);
Rajkumar Manoharancac08552016-03-09 20:25:46 +053079 return -ENOENT;
Michal Kazior89d6d832015-01-24 12:14:51 +020080 }
Vivek Natarajan7b7da0a2015-08-31 16:34:55 +053081
Michal Kaziord668dba2015-11-18 06:59:21 +010082 skb_cb = ATH10K_SKB_CB(msdu);
Michal Kazior3cc0fef2016-03-06 16:14:41 +020083 txq = skb_cb->txq;
Vivek Natarajan7b7da0a2015-08-31 16:34:55 +053084
Bob Copelanda66cd732016-06-29 19:29:25 +030085 if (txq) {
86 artxq = (void *)txq->drv_priv;
Michal Kazior3cc0fef2016-03-06 16:14:41 +020087 artxq->num_fw_queued--;
Bob Copelanda66cd732016-06-29 19:29:25 +030088 }
Michal Kazior3cc0fef2016-03-06 16:14:41 +020089
Qi Zhou005fb162015-07-22 16:38:24 -040090 ath10k_htt_tx_free_msdu_id(htt, tx_done->msdu_id);
Rajkumar Manoharancac08552016-03-09 20:25:46 +053091 ath10k_htt_tx_dec_pending(htt);
Qi Zhou005fb162015-07-22 16:38:24 -040092 if (htt->num_pending_tx == 0)
93 wake_up(&htt->empty_tx_wq);
94 spin_unlock_bh(&htt->tx_lock);
Michal Kazior89d6d832015-01-24 12:14:51 +020095
Michal Kazior767d34f2014-02-27 18:50:03 +020096 dma_unmap_single(dev, skb_cb->paddr, msdu->len, DMA_TO_DEVICE);
Kalle Valo5e3dd152013-06-12 20:52:10 +030097
98 ath10k_report_offchan_tx(htt->ar, msdu);
99
100 info = IEEE80211_SKB_CB(msdu);
Michal Kazior6d33a9a2013-11-26 14:57:40 +0100101 memset(&info->status, 0, sizeof(info->status));
Rajkumar Manoharand1e50f42014-10-03 08:02:54 +0300102 trace_ath10k_txrx_tx_unref(ar, tx_done->msdu_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300103
Rajkumar Manoharan59465fe2016-03-22 17:22:11 +0530104 if (tx_done->status == HTT_TX_COMPL_STATE_DISCARD) {
Kalle Valo5e3dd152013-06-12 20:52:10 +0300105 ieee80211_free_txskb(htt->ar->hw, msdu);
Rajkumar Manoharancac08552016-03-09 20:25:46 +0530106 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300107 }
108
109 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK))
110 info->flags |= IEEE80211_TX_STAT_ACK;
111
Rajkumar Manoharan59465fe2016-03-22 17:22:11 +0530112 if (tx_done->status == HTT_TX_COMPL_STATE_NOACK)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300113 info->flags &= ~IEEE80211_TX_STAT_ACK;
114
Rajkumar Manoharan59465fe2016-03-22 17:22:11 +0530115 if ((tx_done->status == HTT_TX_COMPL_STATE_ACK) &&
116 (info->flags & IEEE80211_TX_CTL_NO_ACK))
Sujith Manoharan55314fc2015-04-01 22:53:21 +0300117 info->flags |= IEEE80211_TX_STAT_NOACK_TRANSMITTED;
118
Kalle Valo5e3dd152013-06-12 20:52:10 +0300119 ieee80211_tx_status(htt->ar->hw, msdu);
120 /* we do not own the msdu anymore */
Michal Kazior7a0adc82016-05-23 23:12:45 +0300121
122 ath10k_mac_tx_push_pending(ar);
123
Rajkumar Manoharancac08552016-03-09 20:25:46 +0530124 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300125}
126
Kalle Valo5e3dd152013-06-12 20:52:10 +0300127struct ath10k_peer *ath10k_peer_find(struct ath10k *ar, int vdev_id,
128 const u8 *addr)
129{
130 struct ath10k_peer *peer;
131
132 lockdep_assert_held(&ar->data_lock);
133
134 list_for_each_entry(peer, &ar->peers, list) {
135 if (peer->vdev_id != vdev_id)
136 continue;
Kalle Valoc178da52016-04-13 14:13:49 +0300137 if (!ether_addr_equal(peer->addr, addr))
Kalle Valo5e3dd152013-06-12 20:52:10 +0300138 continue;
139
140 return peer;
141 }
142
143 return NULL;
144}
145
Michal Kazioraa5b4fb2014-07-23 12:20:33 +0200146struct ath10k_peer *ath10k_peer_find_by_id(struct ath10k *ar, int peer_id)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300147{
148 struct ath10k_peer *peer;
149
150 lockdep_assert_held(&ar->data_lock);
151
152 list_for_each_entry(peer, &ar->peers, list)
153 if (test_bit(peer_id, peer->peer_ids))
154 return peer;
155
156 return NULL;
157}
158
159static int ath10k_wait_for_peer_common(struct ath10k *ar, int vdev_id,
160 const u8 *addr, bool expect_mapped)
161{
Nicholas Mc Guire71c47df2015-06-15 14:46:43 +0300162 long time_left;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300163
Nicholas Mc Guire71c47df2015-06-15 14:46:43 +0300164 time_left = wait_event_timeout(ar->peer_mapping_wq, ({
Kalle Valo5e3dd152013-06-12 20:52:10 +0300165 bool mapped;
166
167 spin_lock_bh(&ar->data_lock);
168 mapped = !!ath10k_peer_find(ar, vdev_id, addr);
169 spin_unlock_bh(&ar->data_lock);
170
Michal Kazior7962b0d2014-10-28 10:34:38 +0100171 (mapped == expect_mapped ||
172 test_bit(ATH10K_FLAG_CRASH_FLUSH, &ar->dev_flags));
Kalle Valo14e105c2016-04-13 14:13:21 +0300173 }), 3 * HZ);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300174
Nicholas Mc Guire71c47df2015-06-15 14:46:43 +0300175 if (time_left == 0)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300176 return -ETIMEDOUT;
177
178 return 0;
179}
180
181int ath10k_wait_for_peer_created(struct ath10k *ar, int vdev_id, const u8 *addr)
182{
183 return ath10k_wait_for_peer_common(ar, vdev_id, addr, true);
184}
185
186int ath10k_wait_for_peer_deleted(struct ath10k *ar, int vdev_id, const u8 *addr)
187{
188 return ath10k_wait_for_peer_common(ar, vdev_id, addr, false);
189}
190
191void ath10k_peer_map_event(struct ath10k_htt *htt,
192 struct htt_peer_map_event *ev)
193{
194 struct ath10k *ar = htt->ar;
195 struct ath10k_peer *peer;
196
Dan Carpenterde72a202016-04-11 11:15:20 +0300197 if (ev->peer_id >= ATH10K_MAX_NUM_PEER_IDS) {
198 ath10k_warn(ar,
199 "received htt peer map event with idx out of bounds: %hu\n",
200 ev->peer_id);
201 return;
202 }
203
Kalle Valo5e3dd152013-06-12 20:52:10 +0300204 spin_lock_bh(&ar->data_lock);
205 peer = ath10k_peer_find(ar, ev->vdev_id, ev->addr);
206 if (!peer) {
207 peer = kzalloc(sizeof(*peer), GFP_ATOMIC);
208 if (!peer)
209 goto exit;
210
211 peer->vdev_id = ev->vdev_id;
Kalle Valob25f32c2014-09-14 12:50:49 +0300212 ether_addr_copy(peer->addr, ev->addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300213 list_add(&peer->list, &ar->peers);
214 wake_up(&ar->peer_mapping_wq);
215 }
216
Michal Kazior7aa7a722014-08-25 12:09:38 +0200217 ath10k_dbg(ar, ATH10K_DBG_HTT, "htt peer map vdev %d peer %pM id %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +0300218 ev->vdev_id, ev->addr, ev->peer_id);
219
Ben Greearc5ace872016-06-30 15:23:58 +0300220 WARN_ON(ar->peer_map[ev->peer_id] && (ar->peer_map[ev->peer_id] != peer));
Michal Kazior69427262016-03-06 16:14:30 +0200221 ar->peer_map[ev->peer_id] = peer;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300222 set_bit(ev->peer_id, peer->peer_ids);
223exit:
224 spin_unlock_bh(&ar->data_lock);
225}
226
227void ath10k_peer_unmap_event(struct ath10k_htt *htt,
228 struct htt_peer_unmap_event *ev)
229{
230 struct ath10k *ar = htt->ar;
231 struct ath10k_peer *peer;
232
Dan Carpenterde72a202016-04-11 11:15:20 +0300233 if (ev->peer_id >= ATH10K_MAX_NUM_PEER_IDS) {
234 ath10k_warn(ar,
235 "received htt peer unmap event with idx out of bounds: %hu\n",
236 ev->peer_id);
237 return;
238 }
239
Kalle Valo5e3dd152013-06-12 20:52:10 +0300240 spin_lock_bh(&ar->data_lock);
241 peer = ath10k_peer_find_by_id(ar, ev->peer_id);
242 if (!peer) {
Michal Kazior7aa7a722014-08-25 12:09:38 +0200243 ath10k_warn(ar, "peer-unmap-event: unknown peer id %d\n",
Ben Greear9ba4c782014-02-25 09:29:57 +0200244 ev->peer_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300245 goto exit;
246 }
247
Michal Kazior7aa7a722014-08-25 12:09:38 +0200248 ath10k_dbg(ar, ATH10K_DBG_HTT, "htt peer unmap vdev %d peer %pM id %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +0300249 peer->vdev_id, peer->addr, ev->peer_id);
250
Michal Kazior69427262016-03-06 16:14:30 +0200251 ar->peer_map[ev->peer_id] = NULL;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300252 clear_bit(ev->peer_id, peer->peer_ids);
253
254 if (bitmap_empty(peer->peer_ids, ATH10K_MAX_NUM_PEER_IDS)) {
255 list_del(&peer->list);
256 kfree(peer);
257 wake_up(&ar->peer_mapping_wq);
258 }
259
260exit:
261 spin_unlock_bh(&ar->data_lock);
262}