blob: 20b7a446a9f8f85ee6f1d76bacedcc8df1d3d02b [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 <linux/etherdevice.h>
19#include "htt.h"
20#include "mac.h"
21#include "hif.h"
22#include "txrx.h"
23#include "debug.h"
24
25void __ath10k_htt_tx_dec_pending(struct ath10k_htt *htt)
26{
27 htt->num_pending_tx--;
28 if (htt->num_pending_tx == htt->max_num_pending_tx - 1)
29 ieee80211_wake_queues(htt->ar->hw);
30}
31
32static void ath10k_htt_tx_dec_pending(struct ath10k_htt *htt)
33{
34 spin_lock_bh(&htt->tx_lock);
35 __ath10k_htt_tx_dec_pending(htt);
36 spin_unlock_bh(&htt->tx_lock);
37}
38
39static int ath10k_htt_tx_inc_pending(struct ath10k_htt *htt)
40{
41 int ret = 0;
42
43 spin_lock_bh(&htt->tx_lock);
44
45 if (htt->num_pending_tx >= htt->max_num_pending_tx) {
46 ret = -EBUSY;
47 goto exit;
48 }
49
50 htt->num_pending_tx++;
51 if (htt->num_pending_tx == htt->max_num_pending_tx)
52 ieee80211_stop_queues(htt->ar->hw);
53
54exit:
55 spin_unlock_bh(&htt->tx_lock);
56 return ret;
57}
58
59int ath10k_htt_tx_alloc_msdu_id(struct ath10k_htt *htt)
60{
61 int msdu_id;
62
63 lockdep_assert_held(&htt->tx_lock);
64
65 msdu_id = find_first_zero_bit(htt->used_msdu_ids,
66 htt->max_num_pending_tx);
67 if (msdu_id == htt->max_num_pending_tx)
68 return -ENOBUFS;
69
70 ath10k_dbg(ATH10K_DBG_HTT, "htt tx alloc msdu_id %d\n", msdu_id);
71 __set_bit(msdu_id, htt->used_msdu_ids);
72 return msdu_id;
73}
74
75void ath10k_htt_tx_free_msdu_id(struct ath10k_htt *htt, u16 msdu_id)
76{
77 lockdep_assert_held(&htt->tx_lock);
78
79 if (!test_bit(msdu_id, htt->used_msdu_ids))
80 ath10k_warn("trying to free unallocated msdu_id %d\n", msdu_id);
81
82 ath10k_dbg(ATH10K_DBG_HTT, "htt tx free msdu_id %hu\n", msdu_id);
83 __clear_bit(msdu_id, htt->used_msdu_ids);
84}
85
86int ath10k_htt_tx_attach(struct ath10k_htt *htt)
87{
Kalle Valo5e3dd152013-06-12 20:52:10 +030088 spin_lock_init(&htt->tx_lock);
89 init_waitqueue_head(&htt->empty_tx_wq);
90
Michal Kazior60f85be2013-10-16 16:46:24 +030091 if (test_bit(ATH10K_FW_FEATURE_WMI_10X, htt->ar->fw_features))
92 htt->max_num_pending_tx = TARGET_10X_NUM_MSDU_DESC;
93 else
94 htt->max_num_pending_tx = TARGET_NUM_MSDU_DESC;
Kalle Valo5e3dd152013-06-12 20:52:10 +030095
Kalle Valoaad0b652013-09-08 17:56:02 +030096 ath10k_dbg(ATH10K_DBG_BOOT, "htt tx max num pending tx %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +030097 htt->max_num_pending_tx);
98
99 htt->pending_tx = kzalloc(sizeof(*htt->pending_tx) *
100 htt->max_num_pending_tx, GFP_KERNEL);
101 if (!htt->pending_tx)
102 return -ENOMEM;
103
104 htt->used_msdu_ids = kzalloc(sizeof(unsigned long) *
105 BITS_TO_LONGS(htt->max_num_pending_tx),
106 GFP_KERNEL);
107 if (!htt->used_msdu_ids) {
108 kfree(htt->pending_tx);
109 return -ENOMEM;
110 }
111
Michal Kaziora16942e2014-02-27 18:50:04 +0200112 htt->tx_pool = dma_pool_create("ath10k htt tx pool", htt->ar->dev,
113 sizeof(struct ath10k_htt_txbuf), 4, 0);
114 if (!htt->tx_pool) {
115 kfree(htt->used_msdu_ids);
116 kfree(htt->pending_tx);
117 return -ENOMEM;
118 }
119
Kalle Valo5e3dd152013-06-12 20:52:10 +0300120 return 0;
121}
122
123static void ath10k_htt_tx_cleanup_pending(struct ath10k_htt *htt)
124{
Michal Kazior0a89f8a2013-09-18 14:43:20 +0200125 struct htt_tx_done tx_done = {0};
Kalle Valo5e3dd152013-06-12 20:52:10 +0300126 int msdu_id;
127
128 /* No locks needed. Called after communication with the device has
129 * been stopped. */
130
131 for (msdu_id = 0; msdu_id < htt->max_num_pending_tx; msdu_id++) {
132 if (!test_bit(msdu_id, htt->used_msdu_ids))
133 continue;
134
Kalle Valo5e3dd152013-06-12 20:52:10 +0300135 ath10k_dbg(ATH10K_DBG_HTT, "force cleanup msdu_id %hu\n",
136 msdu_id);
137
Michal Kazior0a89f8a2013-09-18 14:43:20 +0200138 tx_done.discard = 1;
139 tx_done.msdu_id = msdu_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300140
Michal Kazior0a89f8a2013-09-18 14:43:20 +0200141 ath10k_txrx_tx_unref(htt, &tx_done);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300142 }
143}
144
145void ath10k_htt_tx_detach(struct ath10k_htt *htt)
146{
147 ath10k_htt_tx_cleanup_pending(htt);
148 kfree(htt->pending_tx);
149 kfree(htt->used_msdu_ids);
Michal Kaziora16942e2014-02-27 18:50:04 +0200150 dma_pool_destroy(htt->tx_pool);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300151 return;
152}
153
154void ath10k_htt_htc_tx_complete(struct ath10k *ar, struct sk_buff *skb)
155{
Michal Kazior0a89f8a2013-09-18 14:43:20 +0200156 dev_kfree_skb_any(skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300157}
158
159int ath10k_htt_h2t_ver_req_msg(struct ath10k_htt *htt)
160{
161 struct sk_buff *skb;
162 struct htt_cmd *cmd;
163 int len = 0;
164 int ret;
165
166 len += sizeof(cmd->hdr);
167 len += sizeof(cmd->ver_req);
168
169 skb = ath10k_htc_alloc_skb(len);
170 if (!skb)
171 return -ENOMEM;
172
173 skb_put(skb, len);
174 cmd = (struct htt_cmd *)skb->data;
175 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_VERSION_REQ;
176
Michal Kaziorcd003fa2013-07-05 16:15:13 +0300177 ret = ath10k_htc_send(&htt->ar->htc, htt->eid, skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300178 if (ret) {
179 dev_kfree_skb_any(skb);
180 return ret;
181 }
182
183 return 0;
184}
185
Kalle Valoa3d135e2013-09-03 11:44:10 +0300186int ath10k_htt_h2t_stats_req(struct ath10k_htt *htt, u8 mask, u64 cookie)
187{
188 struct htt_stats_req *req;
189 struct sk_buff *skb;
190 struct htt_cmd *cmd;
191 int len = 0, ret;
192
193 len += sizeof(cmd->hdr);
194 len += sizeof(cmd->stats_req);
195
196 skb = ath10k_htc_alloc_skb(len);
197 if (!skb)
198 return -ENOMEM;
199
200 skb_put(skb, len);
201 cmd = (struct htt_cmd *)skb->data;
202 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_STATS_REQ;
203
204 req = &cmd->stats_req;
205
206 memset(req, 0, sizeof(*req));
207
208 /* currently we support only max 8 bit masks so no need to worry
209 * about endian support */
210 req->upload_types[0] = mask;
211 req->reset_types[0] = mask;
212 req->stat_type = HTT_STATS_REQ_CFG_STAT_TYPE_INVALID;
213 req->cookie_lsb = cpu_to_le32(cookie & 0xffffffff);
214 req->cookie_msb = cpu_to_le32((cookie & 0xffffffff00000000ULL) >> 32);
215
Kalle Valoa3d135e2013-09-03 11:44:10 +0300216 ret = ath10k_htc_send(&htt->ar->htc, htt->eid, skb);
217 if (ret) {
218 ath10k_warn("failed to send htt type stats request: %d", ret);
219 dev_kfree_skb_any(skb);
220 return ret;
221 }
222
223 return 0;
224}
225
Kalle Valo5e3dd152013-06-12 20:52:10 +0300226int ath10k_htt_send_rx_ring_cfg_ll(struct ath10k_htt *htt)
227{
228 struct sk_buff *skb;
229 struct htt_cmd *cmd;
230 struct htt_rx_ring_setup_ring *ring;
231 const int num_rx_ring = 1;
232 u16 flags;
233 u32 fw_idx;
234 int len;
235 int ret;
236
237 /*
238 * the HW expects the buffer to be an integral number of 4-byte
239 * "words"
240 */
241 BUILD_BUG_ON(!IS_ALIGNED(HTT_RX_BUF_SIZE, 4));
242 BUILD_BUG_ON((HTT_RX_BUF_SIZE & HTT_MAX_CACHE_LINE_SIZE_MASK) != 0);
243
244 len = sizeof(cmd->hdr) + sizeof(cmd->rx_setup.hdr)
245 + (sizeof(*ring) * num_rx_ring);
246 skb = ath10k_htc_alloc_skb(len);
247 if (!skb)
248 return -ENOMEM;
249
250 skb_put(skb, len);
251
252 cmd = (struct htt_cmd *)skb->data;
253 ring = &cmd->rx_setup.rings[0];
254
255 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_RX_RING_CFG;
256 cmd->rx_setup.hdr.num_rings = 1;
257
258 /* FIXME: do we need all of this? */
259 flags = 0;
260 flags |= HTT_RX_RING_FLAGS_MAC80211_HDR;
261 flags |= HTT_RX_RING_FLAGS_MSDU_PAYLOAD;
262 flags |= HTT_RX_RING_FLAGS_PPDU_START;
263 flags |= HTT_RX_RING_FLAGS_PPDU_END;
264 flags |= HTT_RX_RING_FLAGS_MPDU_START;
265 flags |= HTT_RX_RING_FLAGS_MPDU_END;
266 flags |= HTT_RX_RING_FLAGS_MSDU_START;
267 flags |= HTT_RX_RING_FLAGS_MSDU_END;
268 flags |= HTT_RX_RING_FLAGS_RX_ATTENTION;
269 flags |= HTT_RX_RING_FLAGS_FRAG_INFO;
270 flags |= HTT_RX_RING_FLAGS_UNICAST_RX;
271 flags |= HTT_RX_RING_FLAGS_MULTICAST_RX;
272 flags |= HTT_RX_RING_FLAGS_CTRL_RX;
273 flags |= HTT_RX_RING_FLAGS_MGMT_RX;
274 flags |= HTT_RX_RING_FLAGS_NULL_RX;
275 flags |= HTT_RX_RING_FLAGS_PHY_DATA_RX;
276
277 fw_idx = __le32_to_cpu(*htt->rx_ring.alloc_idx.vaddr);
278
279 ring->fw_idx_shadow_reg_paddr =
280 __cpu_to_le32(htt->rx_ring.alloc_idx.paddr);
281 ring->rx_ring_base_paddr = __cpu_to_le32(htt->rx_ring.base_paddr);
282 ring->rx_ring_len = __cpu_to_le16(htt->rx_ring.size);
283 ring->rx_ring_bufsize = __cpu_to_le16(HTT_RX_BUF_SIZE);
284 ring->flags = __cpu_to_le16(flags);
285 ring->fw_idx_init_val = __cpu_to_le16(fw_idx);
286
287#define desc_offset(x) (offsetof(struct htt_rx_desc, x) / 4)
288
289 ring->mac80211_hdr_offset = __cpu_to_le16(desc_offset(rx_hdr_status));
290 ring->msdu_payload_offset = __cpu_to_le16(desc_offset(msdu_payload));
291 ring->ppdu_start_offset = __cpu_to_le16(desc_offset(ppdu_start));
292 ring->ppdu_end_offset = __cpu_to_le16(desc_offset(ppdu_end));
293 ring->mpdu_start_offset = __cpu_to_le16(desc_offset(mpdu_start));
294 ring->mpdu_end_offset = __cpu_to_le16(desc_offset(mpdu_end));
295 ring->msdu_start_offset = __cpu_to_le16(desc_offset(msdu_start));
296 ring->msdu_end_offset = __cpu_to_le16(desc_offset(msdu_end));
297 ring->rx_attention_offset = __cpu_to_le16(desc_offset(attention));
298 ring->frag_info_offset = __cpu_to_le16(desc_offset(frag_info));
299
300#undef desc_offset
301
Michal Kaziorcd003fa2013-07-05 16:15:13 +0300302 ret = ath10k_htc_send(&htt->ar->htc, htt->eid, skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300303 if (ret) {
304 dev_kfree_skb_any(skb);
305 return ret;
306 }
307
308 return 0;
309}
310
311int ath10k_htt_mgmt_tx(struct ath10k_htt *htt, struct sk_buff *msdu)
312{
313 struct device *dev = htt->ar->dev;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300314 struct sk_buff *txdesc = NULL;
315 struct htt_cmd *cmd;
Michal Kazior1f8bb152013-09-18 14:43:22 +0200316 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(msdu);
Bartosz Markowski5e00d312013-09-26 17:47:12 +0200317 u8 vdev_id = skb_cb->vdev_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300318 int len = 0;
319 int msdu_id = -1;
320 int res;
321
322
323 res = ath10k_htt_tx_inc_pending(htt);
324 if (res)
Michal Kazior2f3773b2013-09-18 14:43:21 +0200325 goto err;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300326
327 len += sizeof(cmd->hdr);
328 len += sizeof(cmd->mgmt_tx);
329
Kalle Valo5e3dd152013-06-12 20:52:10 +0300330 spin_lock_bh(&htt->tx_lock);
Michal Kazior2f3773b2013-09-18 14:43:21 +0200331 res = ath10k_htt_tx_alloc_msdu_id(htt);
332 if (res < 0) {
Kalle Valo5e3dd152013-06-12 20:52:10 +0300333 spin_unlock_bh(&htt->tx_lock);
Michal Kazior2f3773b2013-09-18 14:43:21 +0200334 goto err_tx_dec;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300335 }
Michal Kazior2f3773b2013-09-18 14:43:21 +0200336 msdu_id = res;
Michal Kazior0a89f8a2013-09-18 14:43:20 +0200337 htt->pending_tx[msdu_id] = msdu;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300338 spin_unlock_bh(&htt->tx_lock);
339
Michal Kazior2f3773b2013-09-18 14:43:21 +0200340 txdesc = ath10k_htc_alloc_skb(len);
341 if (!txdesc) {
342 res = -ENOMEM;
343 goto err_free_msdu_id;
344 }
345
Michal Kazior767d34f2014-02-27 18:50:03 +0200346 skb_cb->paddr = dma_map_single(dev, msdu->data, msdu->len,
347 DMA_TO_DEVICE);
348 res = dma_mapping_error(dev, skb_cb->paddr);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300349 if (res)
Michal Kazior2f3773b2013-09-18 14:43:21 +0200350 goto err_free_txdesc;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300351
352 skb_put(txdesc, len);
353 cmd = (struct htt_cmd *)txdesc->data;
354 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_MGMT_TX;
355 cmd->mgmt_tx.msdu_paddr = __cpu_to_le32(ATH10K_SKB_CB(msdu)->paddr);
356 cmd->mgmt_tx.len = __cpu_to_le32(msdu->len);
357 cmd->mgmt_tx.desc_id = __cpu_to_le32(msdu_id);
358 cmd->mgmt_tx.vdev_id = __cpu_to_le32(vdev_id);
359 memcpy(cmd->mgmt_tx.hdr, msdu->data,
360 min_t(int, msdu->len, HTT_MGMT_FRM_HDR_DOWNLOAD_LEN));
361
Michal Kaziora16942e2014-02-27 18:50:04 +0200362 skb_cb->htt.txbuf = NULL;
Michal Kazior1f8bb152013-09-18 14:43:22 +0200363
Michal Kaziorcd003fa2013-07-05 16:15:13 +0300364 res = ath10k_htc_send(&htt->ar->htc, htt->eid, txdesc);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300365 if (res)
Michal Kazior2f3773b2013-09-18 14:43:21 +0200366 goto err_unmap_msdu;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300367
368 return 0;
369
Michal Kazior2f3773b2013-09-18 14:43:21 +0200370err_unmap_msdu:
Michal Kazior767d34f2014-02-27 18:50:03 +0200371 dma_unmap_single(dev, skb_cb->paddr, msdu->len, DMA_TO_DEVICE);
Michal Kazior2f3773b2013-09-18 14:43:21 +0200372err_free_txdesc:
373 dev_kfree_skb_any(txdesc);
374err_free_msdu_id:
375 spin_lock_bh(&htt->tx_lock);
376 htt->pending_tx[msdu_id] = NULL;
377 ath10k_htt_tx_free_msdu_id(htt, msdu_id);
378 spin_unlock_bh(&htt->tx_lock);
379err_tx_dec:
Kalle Valo5e3dd152013-06-12 20:52:10 +0300380 ath10k_htt_tx_dec_pending(htt);
Michal Kazior2f3773b2013-09-18 14:43:21 +0200381err:
Kalle Valo5e3dd152013-06-12 20:52:10 +0300382 return res;
383}
384
385int ath10k_htt_tx(struct ath10k_htt *htt, struct sk_buff *msdu)
386{
387 struct device *dev = htt->ar->dev;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300388 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)msdu->data;
Michal Kazior1f8bb152013-09-18 14:43:22 +0200389 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(msdu);
Michal Kaziora16942e2014-02-27 18:50:04 +0200390 struct ath10k_hif_sg_item sg_items[2];
391 struct htt_data_tx_desc_frag *frags;
392 u8 vdev_id = skb_cb->vdev_id;
393 u8 tid = skb_cb->htt.tid;
394 int prefetch_len;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300395 int res;
Michal Kaziora16942e2014-02-27 18:50:04 +0200396 u8 flags0 = 0;
397 u16 msdu_id, flags1 = 0;
398 dma_addr_t paddr;
399 u32 frags_paddr;
400 bool use_frags;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300401
402 res = ath10k_htt_tx_inc_pending(htt);
403 if (res)
Michal Kazior2f3773b2013-09-18 14:43:21 +0200404 goto err;
405
406 spin_lock_bh(&htt->tx_lock);
407 res = ath10k_htt_tx_alloc_msdu_id(htt);
408 if (res < 0) {
409 spin_unlock_bh(&htt->tx_lock);
410 goto err_tx_dec;
411 }
412 msdu_id = res;
413 htt->pending_tx[msdu_id] = msdu;
414 spin_unlock_bh(&htt->tx_lock);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300415
416 prefetch_len = min(htt->prefetch_len, msdu->len);
417 prefetch_len = roundup(prefetch_len, 4);
418
Michal Kazior961d4c32013-08-09 10:13:34 +0200419 /* Since HTT 3.0 there is no separate mgmt tx command. However in case
420 * of mgmt tx using TX_FRM there is not tx fragment list. Instead of tx
421 * fragment list host driver specifies directly frame pointer. */
Michal Kazior2f3773b2013-09-18 14:43:21 +0200422 use_frags = htt->target_version_major < 3 ||
423 !ieee80211_is_mgmt(hdr->frame_control);
424
Michal Kaziora16942e2014-02-27 18:50:04 +0200425 skb_cb->htt.txbuf = dma_pool_alloc(htt->tx_pool, GFP_ATOMIC,
426 &paddr);
427 if (!skb_cb->htt.txbuf)
428 goto err_free_msdu_id;
429 skb_cb->htt.txbuf_paddr = paddr;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300430
Michal Kazior767d34f2014-02-27 18:50:03 +0200431 skb_cb->paddr = dma_map_single(dev, msdu->data, msdu->len,
432 DMA_TO_DEVICE);
433 res = dma_mapping_error(dev, skb_cb->paddr);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300434 if (res)
Michal Kaziora16942e2014-02-27 18:50:04 +0200435 goto err_free_txbuf;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300436
Michal Kaziora16942e2014-02-27 18:50:04 +0200437 if (likely(use_frags)) {
438 frags = skb_cb->htt.txbuf->frags;
Michal Kazior1f8bb152013-09-18 14:43:22 +0200439
Michal Kaziora16942e2014-02-27 18:50:04 +0200440 frags[0].paddr = __cpu_to_le32(skb_cb->paddr);
441 frags[0].len = __cpu_to_le32(msdu->len);
442 frags[1].paddr = 0;
443 frags[1].len = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300444
Michal Kazior2f3773b2013-09-18 14:43:21 +0200445 flags0 |= SM(ATH10K_HW_TXRX_NATIVE_WIFI,
Michal Kazior961d4c32013-08-09 10:13:34 +0200446 HTT_DATA_TX_DESC_FLAGS0_PKT_TYPE);
Michal Kaziora16942e2014-02-27 18:50:04 +0200447
448 frags_paddr = skb_cb->htt.txbuf_paddr;
449 } else {
Michal Kazior2f3773b2013-09-18 14:43:21 +0200450 flags0 |= SM(ATH10K_HW_TXRX_MGMT,
Michal Kazior961d4c32013-08-09 10:13:34 +0200451 HTT_DATA_TX_DESC_FLAGS0_PKT_TYPE);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300452
Michal Kaziora16942e2014-02-27 18:50:04 +0200453 frags_paddr = skb_cb->paddr;
454 }
455
456 /* Normally all commands go through HTC which manages tx credits for
457 * each endpoint and notifies when tx is completed.
458 *
459 * HTT endpoint is creditless so there's no need to care about HTC
460 * flags. In that case it is trivial to fill the HTC header here.
461 *
462 * MSDU transmission is considered completed upon HTT event. This
463 * implies no relevant resources can be freed until after the event is
464 * received. That's why HTC tx completion handler itself is ignored by
465 * setting NULL to transfer_context for all sg items.
466 *
467 * There is simply no point in pushing HTT TX_FRM through HTC tx path
468 * as it's a waste of resources. By bypassing HTC it is possible to
469 * avoid extra memory allocations, compress data structures and thus
470 * improve performance. */
471
472 skb_cb->htt.txbuf->htc_hdr.eid = htt->eid;
473 skb_cb->htt.txbuf->htc_hdr.len = __cpu_to_le16(
474 sizeof(skb_cb->htt.txbuf->cmd_hdr) +
475 sizeof(skb_cb->htt.txbuf->cmd_tx) +
476 prefetch_len);
477 skb_cb->htt.txbuf->htc_hdr.flags = 0;
478
479 if (!ieee80211_has_protected(hdr->frame_control))
480 flags0 |= HTT_DATA_TX_DESC_FLAGS0_NO_ENCRYPT;
481
482 flags0 |= HTT_DATA_TX_DESC_FLAGS0_MAC_HDR_PRESENT;
483
Kalle Valo5e3dd152013-06-12 20:52:10 +0300484 flags1 |= SM((u16)vdev_id, HTT_DATA_TX_DESC_FLAGS1_VDEV_ID);
485 flags1 |= SM((u16)tid, HTT_DATA_TX_DESC_FLAGS1_EXT_TID);
Michal Kazior7c199992013-07-31 10:47:57 +0200486 flags1 |= HTT_DATA_TX_DESC_FLAGS1_CKSUM_L3_OFFLOAD;
487 flags1 |= HTT_DATA_TX_DESC_FLAGS1_CKSUM_L4_OFFLOAD;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300488
Michal Kaziora16942e2014-02-27 18:50:04 +0200489 skb_cb->htt.txbuf->cmd_hdr.msg_type = HTT_H2T_MSG_TYPE_TX_FRM;
490 skb_cb->htt.txbuf->cmd_tx.flags0 = flags0;
491 skb_cb->htt.txbuf->cmd_tx.flags1 = __cpu_to_le16(flags1);
492 skb_cb->htt.txbuf->cmd_tx.len = __cpu_to_le16(msdu->len);
493 skb_cb->htt.txbuf->cmd_tx.id = __cpu_to_le16(msdu_id);
494 skb_cb->htt.txbuf->cmd_tx.frags_paddr = __cpu_to_le32(frags_paddr);
495 skb_cb->htt.txbuf->cmd_tx.peerid = __cpu_to_le32(HTT_INVALID_PEERID);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300496
Michal Kaziora16942e2014-02-27 18:50:04 +0200497 ath10k_dbg(ATH10K_DBG_HTT,
498 "htt tx flags0 %hhu flags1 %hu len %d id %hu frags_paddr %08x, msdu_paddr %08x vdev %hhu tid %hhu\n",
499 flags0, flags1, msdu->len, msdu_id, frags_paddr,
500 (u32)skb_cb->paddr, vdev_id, tid);
501 ath10k_dbg_dump(ATH10K_DBG_HTT_DUMP, NULL, "htt tx msdu: ",
502 msdu->data, msdu->len);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300503
Michal Kaziora16942e2014-02-27 18:50:04 +0200504 sg_items[0].transfer_id = 0;
505 sg_items[0].transfer_context = NULL;
506 sg_items[0].vaddr = &skb_cb->htt.txbuf->htc_hdr;
507 sg_items[0].paddr = skb_cb->htt.txbuf_paddr +
508 sizeof(skb_cb->htt.txbuf->frags);
509 sg_items[0].len = sizeof(skb_cb->htt.txbuf->htc_hdr) +
510 sizeof(skb_cb->htt.txbuf->cmd_hdr) +
511 sizeof(skb_cb->htt.txbuf->cmd_tx);
512
513 sg_items[1].transfer_id = 0;
514 sg_items[1].transfer_context = NULL;
515 sg_items[1].vaddr = msdu->data;
516 sg_items[1].paddr = skb_cb->paddr;
517 sg_items[1].len = prefetch_len;
518
519 res = ath10k_hif_tx_sg(htt->ar,
520 htt->ar->htc.endpoint[htt->eid].ul_pipe_id,
521 sg_items, ARRAY_SIZE(sg_items));
Kalle Valo5e3dd152013-06-12 20:52:10 +0300522 if (res)
Michal Kazior1f8bb152013-09-18 14:43:22 +0200523 goto err_unmap_msdu;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300524
525 return 0;
Michal Kazior2f3773b2013-09-18 14:43:21 +0200526
Michal Kazior2f3773b2013-09-18 14:43:21 +0200527err_unmap_msdu:
Michal Kazior767d34f2014-02-27 18:50:03 +0200528 dma_unmap_single(dev, skb_cb->paddr, msdu->len, DMA_TO_DEVICE);
Michal Kaziora16942e2014-02-27 18:50:04 +0200529err_free_txbuf:
530 dma_pool_free(htt->tx_pool,
531 skb_cb->htt.txbuf,
532 skb_cb->htt.txbuf_paddr);
Michal Kazior2f3773b2013-09-18 14:43:21 +0200533err_free_msdu_id:
534 spin_lock_bh(&htt->tx_lock);
535 htt->pending_tx[msdu_id] = NULL;
536 ath10k_htt_tx_free_msdu_id(htt, msdu_id);
537 spin_unlock_bh(&htt->tx_lock);
538err_tx_dec:
539 ath10k_htt_tx_dec_pending(htt);
540err:
Kalle Valo5e3dd152013-06-12 20:52:10 +0300541 return res;
542}